@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Cinzel:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #070707;
  --black-soft:   #0e0e0e;
  --black-card:   #111111;
  --black-card2:  #161616;
  --gold:         #C9952A;
  --gold-light:   #E5B84A;
  --gold-dim:     rgba(201,149,42,0.10);
  --gold-border:  rgba(201,149,42,0.25);
  --gold-glow:    rgba(201,149,42,0.08);
  --navy:         #0F1F3D;
  --white:        #FFFFFF;
  --cream:        #EDE3CC;
  --gray:         #777777;
  --gray-light:   #AAAAAA;
  --nav-height:   84px;
  --max-width:    1160px;
  --pad:          72px;
  --section-pad:  110px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(7,7,7,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  z-index: 1000;
}

.nav-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-signin {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
}

.nav-signin:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 11px 26px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  transition: all 0.3s;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(7,7,7,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }

.mobile-menu .mobile-cta {
  margin-top: 12px;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-weight: 600;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-height) var(--pad) 0;
  background: var(--black);
}

#neural-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(15,31,61,0.6) 0%, transparent 70%),
    linear-gradient(to right, rgba(7,7,7,0.9) 35%, rgba(7,7,7,0.3) 100%);
}

.hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-copy { }

.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
}

.eyebrow-line {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease 0.15s both;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 48px;
  animation: fadeUp 0.9s ease 0.3s both;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.45s both;
  opacity: 0;
}

.trust-line {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 24px;
  animation: fadeUp 0.9s ease 0.6s both;
  opacity: 0;
}

/* Chat mockup */
.hero-chat {
  animation: fadeUp 0.9s ease 0.3s both;
  opacity: 0;
}

.chat-window {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  overflow: hidden;
}

.chat-chrome {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold-border);
}

.chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chat-chrome-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-left: 8px;
}

.chat-messages {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  background: #0a0a0a;
}

.chat-bubble {
  display: flex;
}

.chat-bubble.from-user { justify-content: flex-end; }
.chat-bubble.from-ai   { justify-content: flex-start; }

.bubble-text {
  max-width: 78%;
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--white);
}

.from-user .bubble-text {
  background: var(--navy);
  border: 1px solid rgba(15,31,61,0.8);
}

.from-ai .bubble-text {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  color: var(--cream);
}

.bubble-agent {
  font-family: 'Cinzel', serif;
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 6px;
}

.chat-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 12px 16px;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  width: fit-content;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: typingBounce 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }

.chat-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--gold-border);
  background: var(--black-card2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-footer-label {
  font-family: 'Cinzel', serif;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--gray);
  text-transform: uppercase;
}

.urgency-badge {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.35);
}

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* ═══════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btn-primary {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 38px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,149,42,0.25);
}

.btn-secondary {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 38px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   STATS BAR
═══════════════════════════════════ */
.stats-bar {
  background: var(--black-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 60px var(--pad);
}

.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item { position: relative; }

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-border);
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  display: block;
  line-height: 1.6;
}

.stat-source {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  color: rgba(119,119,119,0.5);
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════
   SECTIONS (shared)
═══════════════════════════════════ */
section {
  padding: var(--section-pad) var(--pad);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 15px;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.9;
}

.gold-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

/* ═══════════════════════════════════
   PROBLEM BAND
═══════════════════════════════════ */
.problem-band {
  background: var(--black-card);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 80px var(--pad);
}

.problem-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 64px;
  align-items: start;
}

.problem-stat-block {
  text-align: center;
  padding: 52px 40px;
  background: var(--navy);
  border: 1px solid rgba(15,31,61,0.9);
}

.problem-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.problem-stat-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.problem-stat-source {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.problem-divider {
  background: var(--gold-border);
  align-self: stretch;
  min-height: 80px;
}

.problem-copy { }

.problem-pains {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-pains li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,149,42,0.08);
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
}

.problem-pains li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: #ef4444;
  margin-top: 12px;
  flex-shrink: 0;
}

.roi-box {
  margin-top: 32px;
  padding: 28px 32px;
  border: 1px solid var(--gold-border);
  background: rgba(201,149,42,0.04);
}

.roi-box-label {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.roi-box p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.85;
}

.roi-box strong { color: var(--cream); font-weight: 400; }

/* ═══════════════════════════════════
   HOW IT WORKS (Steps)
═══════════════════════════════════ */
.product-section {
  padding: var(--section-pad) var(--pad);
  background: var(--black-soft);
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 64px;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold-border), var(--gold), var(--gold-border));
}

.step-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.35s, background 0.35s;
}

.step-card:hover {
  border-color: rgba(201,149,42,0.4);
  background: var(--black-card2);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(201,149,42,0.07);
  line-height: 1;
  position: absolute;
  top: 16px; right: 20px;
  user-select: none;
  transition: color 0.35s;
}

.step-card:hover .step-num { color: rgba(201,149,42,0.14); }

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.step-body {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.85;
}

/* ═══════════════════════════════════
   FEATURES GRID
═══════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid rgba(201,149,42,0.1);
  padding: 40px 36px;
  transition: border-color 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.45s ease;
}

.feature-card:hover::after { width: 100%; }
.feature-card:hover {
  border-color: rgba(201,149,42,0.3);
  background: var(--black-card2);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.feature-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.feature-card:hover .feature-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.feature-name {
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
}

/* ═══════════════════════════════════
   SECURITY GRID
═══════════════════════════════════ */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
}

.security-card {
  background: var(--black-card);
  border: 1px solid rgba(201,149,42,0.1);
  padding: 44px 40px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: border-color 0.35s;
}

.security-card:hover { border-color: var(--gold-border); }

.security-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.security-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.security-title {
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.security-body {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.85;
}

/* ═══════════════════════════════════
   PRICING BLOCK
═══════════════════════════════════ */
.pricing-block {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  padding: 52px 56px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 48px;
  margin-bottom: 28px;
}

.pricing-divider {
  background: var(--gold-border);
  align-self: stretch;
}

.plan-badge {
  font-family: 'Cinzel', serif;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  color: var(--black);
  text-transform: uppercase;
  background: var(--gold);
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 16px;
}

.plan-name {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.plan-price span {
  font-size: 18px;
  color: var(--gray-light);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.plan-tagline {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 13.5px;
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.plan-features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-top: 10px;
  flex-shrink: 0;
}

.plan-custom-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-note {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  padding-top: 28px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(201,149,42,0.12);
}

.pricing-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════
   FOUNDER BAND
═══════════════════════════════════ */
.founder-band {
  background: var(--navy);
  border-top: 1px solid rgba(201,149,42,0.2);
  border-bottom: 1px solid rgba(201,149,42,0.2);
  padding: 100px var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,149,42,0.06) 0%, transparent 70%);
}

.founder-band-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.founder-band .section-label { justify-content: center; }
.founder-band .section-label::before { display: none; }

.founder-band .section-title { text-align: center; max-width: none; }

.founder-band .section-body {
  margin: 0 auto 16px;
  max-width: 640px;
  text-align: center;
}

/* ═══════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════ */
.faq-section {
  padding: var(--section-pad) var(--pad);
  background: var(--black-soft);
}

.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
}

details.faq-item {
  border-bottom: 1px solid rgba(201,149,42,0.15);
}

details.faq-item:first-child {
  border-top: 1px solid rgba(201,149,42,0.15);
}

details.faq-item summary {
  list-style: none;
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  user-select: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.7;
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: all 0.3s;
}

.faq-icon::before { width: 8px; height: 1px; }
.faq-icon::after  { width: 1px; height: 8px; }

details[open] .faq-icon { border-color: var(--gold); background: var(--gold-dim); }
details[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  padding: 0 48px 24px 0;
  font-size: 14.5px;
  color: var(--gray-light);
  line-height: 1.9;
}

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #0e0c06 0%, #0a0a0a 40%, #0e0b05 100%);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 100px var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,149,42,0.06) 0%, transparent 70%);
}

.cta-band-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.cta-band .section-label { justify-content: center; }
.cta-band .section-label::before { display: none; }
.cta-band .section-title { text-align: center; }
.cta-band .section-body { margin: 0 auto 44px; text-align: center; }

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-height) + 80px) var(--pad) 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(201,149,42,0.05) 0%, transparent 70%),
    linear-gradient(to bottom, var(--black) 0%, var(--black-soft) 100%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,149,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,149,42,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero .section-label { margin-bottom: 20px; }

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 760px;
}

.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-sub {
  font-size: 15.5px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.85;
}

/* ═══════════════════════════════════
   CONTACT / ABOUT
═══════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.proof-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proof-point {
  padding: 28px 0 28px 28px;
  border-left: 2px solid var(--gold-border);
  border-bottom: 1px solid rgba(201,149,42,0.08);
  transition: border-left-color 0.3s;
}

.proof-point:first-child { border-top: 1px solid rgba(201,149,42,0.08); }
.proof-point:hover { border-left-color: var(--gold); }

.proof-point-title {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.proof-point-body {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.8;
}

.contact-email-label {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 0.25em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-email-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 8px;
  display: inline-block;
  transition: all 0.3s;
}

.contact-email-link:hover { color: var(--gold-light); border-color: var(--gold); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer.footer-v2 {
  background: var(--black);
  border-top: 1px solid var(--gold-border);
  padding: 72px var(--pad) 48px;
}

.footer-v2-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-v2-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,149,42,0.1);
  margin-bottom: 36px;
}

.footer-v2-top .footer-logo img { height: 48px; width: auto; display: block; }

.footer-vision {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
  max-width: 560px;
}

.footer-v2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-v2-copy {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.footer-v2-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-v2-links a {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-v2-links a:hover { color: var(--gold); }

.footer-v2-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-v2-email {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: color 0.3s;
}

.footer-v2-email:hover { color: var(--gold-light); }

/* ═══════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════
   CONTACT METHOD
═══════════════════════════════════ */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-method-value {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.contact-method-value:hover { border-color: var(--gold); }

/* ═══════════════════════════════════
   ANIMATIONS
═══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad: 36px; --section-pad: 80px; }

  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-chat { max-width: 500px; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }

  .problem-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .problem-divider { display: none; }

  .steps-row { grid-template-columns: 1fr; gap: 2px; }
  .step-connector { display: none; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr; }

  .pricing-plans { grid-template-columns: 1fr; gap: 40px; }
  .pricing-divider { display: none; }
  .pricing-block { padding: 40px 32px; }

  .two-col { grid-template-columns: 1fr; gap: 48px; }

  .footer-v2-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-v2-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  :root { --pad: 24px; }
  .hero-btns, .cta-btns, .pricing-btns { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-v2-links { gap: 20px; }
}
