/* ═══════════════════════════════════════════════════════
   HomePilotIQ — Homepage V2 Design System
   Premium tech feel: Apple · Stripe · OpenAI · Notion
═══════════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0F1F3D;
  --navy-light: #162444;
  --gold:       #C9A84C;
  --gold-light: #E2C06A;
  --gold-dim:   rgba(201,168,76,0.15);
  --white:      #FFFFFF;
  --off-white:  #F8F9FC;
  --gray-100:   #F1F3F8;
  --gray-300:   #C8CDD8;
  --gray-500:   #8892A4;
  --gray-700:   #4A5568;
  --green:      #22C55E;
  --green-dim:  rgba(34,197,94,0.15);
  --red:        #EF4444;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.16);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.28);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Layout helpers ── */
.v2-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared typography ── */
.v2-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.v2-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.v2-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
.v2-h2-light { color: var(--white); }

/* ── Scroll reveal ── */
.v2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.v2-reveal.visible { opacity: 1; transform: none; }
.v2-reveal-delay-1 { transition-delay: 0.12s; }
.v2-reveal-delay-2 { transition-delay: 0.24s; }
.v2-reveal-delay-3 { transition-delay: 0.36s; }

/* ── Buttons ── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
  white-space: nowrap;
}
.v2-btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.v2-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.v2-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.v2-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.v2-btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.v2-btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}
.v2-btn-sm  { padding: 10px 22px; font-size: 0.85rem; }
.v2-btn-md  { padding: 13px 28px; font-size: 0.9rem; }
.v2-btn-lg  { padding: 16px 36px; font-size: 1rem; }

/* ═══════════════════════════════════════════════════════
   PREVIEW BANNER
═══════════════════════════════════════════════════════ */
.v2-preview-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.v2-banner-left { display: flex; align-items: center; gap: 12px; }
.v2-banner-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.v2-banner-text { color: var(--gray-300); font-size: 0.82rem; }
.v2-banner-right { display: flex; gap: 10px; }
.v2-banner-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}
.v2-banner-btn-compare {
  background: var(--gold);
  color: var(--navy);
}
.v2-banner-btn-compare:hover { background: var(--gold-light); }
.v2-banner-btn-v1 {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.15);
}
.v2-banner-btn-v1:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}
.v2-nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.v2-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.v2-nav-logo { display: flex; align-items: center; gap: 10px; }
.v2-nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.v2-nav-logo-text span { color: var(--gold); }

.v2-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.v2-nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.v2-nav-links a:hover { color: var(--white); }

.v2-nav-cta { display: flex; align-items: center; gap: 12px; }
.v2-btn-nav-signin {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.v2-btn-nav-signin:hover { color: var(--white); }
.v2-btn-nav-primary {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 50px;
  transition: all 0.2s;
}
.v2-btn-nav-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.v2-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.v2-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile menu */
.v2-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.v2-mobile-menu.open { opacity: 1; pointer-events: all; }
.v2-mobile-menu a {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.2s;
}
.v2-mobile-menu a:hover { color: var(--gold); }
.v2-mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.v2-mobile-menu-close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.v2-hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Background elements */
.v2-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.v2-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.v2-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.v2-hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.v2-hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22,36,68,0.6) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.v2-hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  top: 40%; left: 30%;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.v2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Hero text */
.v2-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.v2-hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.v2-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.15rem, 6.2vw, 5.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.v2-hero-title-gold { color: var(--gold); }

.v2-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}

.v2-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.v2-hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.v2-hero-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.v2-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.v2-hero-trust-statement {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.01em;
}
.v2-trust-icon { color: var(--gold); font-size: 0.75rem; }

/* Hero showcase — NO browser chrome */
.v2-hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating pills */
.v2-float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 16px;
  z-index: 10;
  white-space: nowrap;
}
.v2-float-pill-1 {
  top: -16px;
  right: -16px;
  animation: floatPill 4s ease-in-out infinite;
}
.v2-float-pill-2 {
  bottom: 40px;
  left: -24px;
  animation: floatPill 5s ease-in-out infinite 0.8s;
}
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.v2-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.v2-pill-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.v2-pill-dot.gold  { background: var(--gold);  box-shadow: 0 0 8px var(--gold); }
.v2-pill-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.v2-pill-value { font-size: 0.82rem; font-weight: 700; color: var(--white); }

/* Hero card — premium app window, no browser chrome */
.v2-hero-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.3deg); }
}

.v2-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v2-hero-card-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.v2-hero-card-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.v2-hero-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}
.v2-hero-card-badge.buy {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}

.v2-hero-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0;
}
.v2-hero-metric {
  padding: 16px 14px;
  background: rgba(10,22,40,0.4);
  text-align: center;
}
.v2-hero-metric-val {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.v2-hero-metric-val.green { color: var(--green); }
.v2-hero-metric-val.gold  { color: var(--gold); }
.v2-hero-metric-val.white { color: var(--white); }
.v2-hero-metric-label { font-size: 0.68rem; color: rgba(255,255,255,0.45); }

.v2-hero-card-bars { padding: 16px 20px; }
.v2-hero-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.v2-hero-bar-row:last-child { margin-bottom: 0; }
.v2-hero-bar-name { font-size: 0.72rem; color: rgba(255,255,255,0.5); width: 80px; flex-shrink: 0; }
.v2-hero-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.v2-hero-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: barGrow 1.5s ease-out forwards;
  transform-origin: left;
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.v2-hero-bar-pct { font-size: 0.68rem; color: var(--gold); width: 28px; text-align: right; flex-shrink: 0; }

.v2-hero-card-ai {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(201,168,76,0.06);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.v2-hero-card-ai-icon { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 1px; }
.v2-hero-card-ai-text { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.v2-stats {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 48px 0;
}
.v2-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.v2-stat-item { text-align: center; }
.v2-stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.v2-stat-number span { color: var(--gold); font-size: 1.8rem; }
.v2-stat-label { font-size: 0.82rem; color: var(--gray-500); }

/* ═══════════════════════════════════════════════════════
   PRODUCT SHOWCASE — NO BROWSER CHROME
═══════════════════════════════════════════════════════ */
.v2-showcase-section {
  position: relative;
  background: var(--off-white);
  padding: 120px 0 140px;
  overflow: hidden;
}
.v2-showcase-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(10,22,40,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.v2-showcase-header {
  text-align: center;
  margin-bottom: 48px;
}
.v2-showcase-header .v2-label { justify-content: center; }
.v2-showcase-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.v2-showcase-title span { color: var(--gold); }
.v2-showcase-sub { font-size: 1rem; color: var(--gray-500); }

/* Tabs */
.v2-showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.v2-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
  transition: all 0.22s ease;
}
.v2-tab:hover { border-color: var(--gold); color: var(--navy); }
.v2-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Dashboard frame — premium app window */
.v2-showcase-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10,22,40,0.1);
}

.v2-dashboard {
  background: var(--navy);
  min-height: 420px;
}

/* App-style header bar (NOT a browser) */
.v2-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.v2-dashboard-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v2-dashboard-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.v2-dashboard-logo span { color: var(--gold); }
.v2-dashboard-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.15);
}
.v2-dashboard-title {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.v2-dashboard-header-right {}
.v2-dashboard-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 500;
}
.v2-dashboard-status-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* Panels */
.v2-panel { display: none; padding: 24px; }

.v2-panel-investor { grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.v2-panel-investor.active { display: grid; }

.v2-panel-buyer { grid-template-columns: 1fr 1fr; gap: 14px; }
.v2-panel-buyer.active { display: grid; }

.span2 { grid-column: span 2; }
.span3 { grid-column: span 3; }

/* Panel cards */
.v2-p-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: border-color 0.2s;
}
.v2-p-card:hover { border-color: rgba(201,168,76,0.25); }
.v2-p-card-tag { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.v2-p-card-value { font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.v2-p-card-value.green { color: var(--green); }
.v2-p-card-value.gold  { color: var(--gold); }
.v2-p-card-value.white { color: var(--white); }
.v2-p-card-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* Progress bars */
.v2-p-bars { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.v2-p-bar-row { display: flex; align-items: center; gap: 10px; }
.v2-p-bar-name { font-size: 0.72rem; color: rgba(255,255,255,0.5); width: 90px; flex-shrink: 0; }
.v2-p-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.v2-p-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  animation: barGrow 1.4s ease-out forwards;
  transform-origin: left;
}
.v2-p-bar-pct { font-size: 0.7rem; color: var(--gold); width: 36px; text-align: right; flex-shrink: 0; }

/* Score card */
.v2-p-score {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.v2-p-score-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.v2-p-score-value { font-size: 1.6rem; font-weight: 800; color: var(--green); }
.v2-p-score-desc { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.v2-p-score-badge {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

/* AI insight */
.v2-p-ai {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.v2-p-ai-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.v2-p-ai-text { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.v2-p-ai-text strong { color: var(--gold); }

/* Affordability ring */
.v2-p-ring-wrap { display: flex; align-items: center; gap: 20px; margin-top: 12px; }
.v2-p-ring { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.v2-p-ring svg { transform: rotate(-90deg); }
.v2-p-ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 6; }
.v2-p-ring-fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 201;
  stroke-dashoffset: 50;
  animation: ringFill 1.5s ease-out forwards;
}
@keyframes ringFill {
  from { stroke-dashoffset: 201; }
  to   { stroke-dashoffset: 50; }
}
.v2-p-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.v2-p-ring-title { font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.v2-p-ring-score { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.v2-p-ring-desc { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   PILLARS — GOLD NUMBERS
═══════════════════════════════════════════════════════ */
.v2-pillars {
  background: var(--white);
  padding: 120px 0;
}
.v2-pillars-header {
  text-align: center;
  margin-bottom: 72px;
}
.v2-pillars-header .v2-label { justify-content: center; }

.v2-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.v2-pillar { text-align: center; }

/* GOLD step numbers — brand accent */
.v2-pillar-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.9;
}

.v2-pillar-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.v2-pillar-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; max-width: 260px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   AUDIENCES — INVESTORS vs HOME BUYERS
═══════════════════════════════════════════════════════ */
.v2-audiences {
  background: var(--off-white);
  padding: 120px 0;
}
.v2-audiences-header {
  text-align: center;
  margin-bottom: 64px;
}
.v2-audiences-header .v2-label { justify-content: center; }

.v2-audiences-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.v2-audience-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.v2-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,22,40,0.15);
}
.v2-audience-card-gold {
  background: var(--navy);
  border-color: rgba(201,168,76,0.2);
}
.v2-audience-card-gold:hover { border-color: rgba(201,168,76,0.4); }

.v2-audience-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.v2-audience-tag.investor {
  background: rgba(10,22,40,0.08);
  color: var(--navy);
}
.v2-audience-tag.buyer {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

.v2-audience-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.v2-audience-card-gold .v2-audience-title { color: var(--white); }

.v2-audience-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}
.v2-audience-card-gold .v2-audience-desc { color: rgba(255,255,255,0.55); }

.v2-audience-list { display: flex; flex-direction: column; gap: 10px; }
.v2-audience-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.v2-audience-card-gold .v2-audience-list li { color: rgba(255,255,255,0.7); }
.v2-audience-check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════ */
.v2-features-section {
  background: var(--white);
  padding: 120px 0;
}
.v2-features-header {
  text-align: center;
  margin-bottom: 64px;
}
.v2-features-header .v2-label { justify-content: center; }

.v2-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-feature-card {
  background: var(--off-white);
  border: 1px solid rgba(10,22,40,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.v2-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
  background: var(--white);
}
.v2-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  margin-bottom: 20px;
  color: var(--gold);
  transition: all 0.2s;
}
.v2-feature-card:hover .v2-feature-icon {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.3);
}
.v2-feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.v2-feature-desc { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; }
.v2-feature-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--gold-dim);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   BUILT FOR (replaces fake testimonials)
═══════════════════════════════════════════════════════ */
.v2-builtfor {
  position: relative;
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
}
.v2-builtfor-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.v2-builtfor-header {
  text-align: center;
  margin-bottom: 64px;
}
.v2-builtfor-header .v2-label { justify-content: center; }

.v2-builtfor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.v2-builtfor-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}
.v2-builtfor-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.v2-builtfor-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 14px;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: all 0.2s;
}
.v2-builtfor-item:hover .v2-builtfor-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.35);
}
.v2-builtfor-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.v2-builtfor-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   FUTURE
═══════════════════════════════════════════════════════ */
.v2-future {
  position: relative;
  background: var(--off-white);
  padding: 120px 0;
  overflow: hidden;
}
.v2-future-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.v2-future-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v2-future-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.v2-future-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.v2-future-sub { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 32px; }
.v2-future-list { display: flex; flex-direction: column; gap: 12px; }
.v2-future-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.v2-future-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.v2-future-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v2-future-card {
  background: var(--white);
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}
.v2-future-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}
.v2-future-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 10px;
  margin-bottom: 14px;
  color: var(--gold);
  transition: all 0.2s;
}
.v2-future-card:hover .v2-future-card-icon {
  background: rgba(201,168,76,0.13);
  border-color: rgba(201,168,76,0.25);
}
.v2-future-card-title { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.v2-future-card-desc { font-size: 0.78rem; color: var(--gray-500); line-height: 1.55; margin-bottom: 12px; }
.v2-future-card-soon {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--gold-dim);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.v2-cta {
  position: relative;
  background: var(--navy);
  padding: 140px 0;
  overflow: hidden;
}
.v2-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.v2-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.v2-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.v2-cta-sub { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.v2-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.v2-cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.v2-footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 64px;
}
.v2-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.v2-footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.v2-footer-logo span { color: var(--gold); }
.v2-footer-tagline { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 28px; }
.v2-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.v2-footer-links a {
  font-size: 0.82rem;
  color: var(--gray-500);
  transition: color 0.2s;
}
.v2-footer-links a:hover { color: var(--gold); }
.v2-footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .v2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .v2-features-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-builtfor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .v2-hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .v2-hero-content { display: flex; flex-direction: column; align-items: center; }
  .v2-hero-sub { max-width: 100%; }
  .v2-hero-showcase { max-width: 480px; margin: 0 auto; }
  .v2-float-pill-1 { top: -12px; right: 0; }
  .v2-float-pill-2 { bottom: 20px; left: 0; }

  .v2-pillars-grid { grid-template-columns: 1fr; gap: 48px; }
  .v2-pillar { max-width: 400px; margin: 0 auto; }
  .v2-audiences-grid { grid-template-columns: 1fr; }
  .v2-future-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .v2-nav-links, .v2-nav-cta { display: none; }
  .v2-nav-hamburger { display: flex; }

  .v2-hero { padding: 100px 0 60px; }
  .v2-hero-title { font-size: clamp(2.35rem, 8.5vw, 3.45rem); }

  .v2-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .v2-stat-number { font-size: 2.2rem; }

  .v2-panel-investor { grid-template-columns: 1fr 1fr; }
  .v2-panel-investor .span3 { grid-column: span 2; }
  .v2-panel-investor .span2 { grid-column: span 2; }

  .v2-features-grid { grid-template-columns: 1fr; }
  .v2-builtfor-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-future-cards { grid-template-columns: 1fr; }

  .v2-audiences-grid { grid-template-columns: 1fr; }
  .v2-audience-card { padding: 32px 24px; }

  .v2-showcase-tabs { gap: 6px; }
  .v2-tab { padding: 8px 16px; font-size: 0.8rem; }

  .v2-hero-card-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .v2-hero-metric { padding: 12px 8px; }
  .v2-hero-metric-val { font-size: 0.95rem; }

  .v2-banner-right { display: none; }
}

@media (max-width: 480px) {
  .v2-stats-inner { grid-template-columns: 1fr 1fr; }
  .v2-builtfor-grid { grid-template-columns: 1fr 1fr; }
  .v2-panel-investor { grid-template-columns: 1fr; }
  .v2-panel-investor .span3,
  .v2-panel-investor .span2 { grid-column: span 1; }
  .v2-panel-buyer { grid-template-columns: 1fr; }
  .v2-panel-buyer .span2 { grid-column: span 1; }
  .v2-hero-actions { flex-direction: column; align-items: center; }
  .v2-cta-actions { flex-direction: column; align-items: center; }
  .v2-float-pill { display: none; }
}
