/* ============================================
   Fairway Capture — Design Tokens
   ============================================ */
:root{
  /* Brand colors, sampled from approved logo/brand identity */
  --green-deep: #14532D;      /* Fairway Green — headlines, primary surfaces */
  --green-deep-2: #0E3D21;    /* darker shade for depth/hover on deep green */
  --green: #1F7A43;           /* mid green — supporting */
  --green-bright: #22C55E;    /* Accent Green — CTAs, highlights */
  --green-bright-2: #16A34A;  /* accent hover */
  --gold: #D4AF7C;            /* Gold Accent — premium touches, dividers */
  --ink: #111827;             /* Charcoal — body text */
  --ink-soft: #4B5563;        /* secondary text */
  --ink-faint: #8A93A3;       /* tertiary text / captions */
  --paper: #F8FAF8;           /* Off White — page background */
  --paper-alt: #EEF2EE;       /* subtle tinted section background */
  --white: #FFFFFF;
  --border: rgba(17,24,39,0.10);
  --border-soft: rgba(17,24,39,0.06);
  --shadow-sm: 0 1px 2px rgba(17,24,39,0.06);
  --shadow-md: 0 8px 24px rgba(17,24,39,0.08);
  --shadow-lg: 0 20px 48px rgba(17,24,39,0.12);

  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --max: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

@media (prefers-color-scheme: dark){
  :root{ color-scheme: light; }
}

*, *::before, *::after{ box-sizing: border-box; overflow-anchor: none; }
html{ scroll-behavior: smooth; }
html, body{ padding:0; margin:0; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; line-height:1.08; letter-spacing:-0.01em; color: var(--green-deep); }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }
input, select{ font-family: inherit; }

:focus-visible{
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
}
.eyebrow::before{
  content:"";
  width:6px; height:6px;
  border-radius:50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

.section{ padding: 96px 0; }
.section--tight{ padding: 72px 0; }
@media (max-width: 720px){
  .section{ padding: 64px 0; }
  .section--tight{ padding: 52px 0; }
}

.section-head{
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head h2{
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 14px;
}
.section-head p{
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:0.6;
  border:0;
  margin:0;
}

/* ============================================
   Buttons
   ============================================ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--green-bright);
  color: #06210F;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 24px -8px rgba(34,197,94,0.55);
}
.btn-primary:hover{ background: var(--green-bright-2); box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 14px 30px -8px rgba(34,197,94,0.65); }
.btn-secondary{
  background: transparent;
  color: var(--green-deep);
  border-color: var(--border);
}
.btn-secondary:hover{ border-color: var(--green-deep); background: rgba(20,83,45,0.04); }
.btn-ghost-light{
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,0.16); }
.btn-block{ width:100%; }
.btn-lg{ padding: 16px 30px; font-size: 16px; }

/* ============================================
   Header / Nav
   ============================================ */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(248,250,248,0.86);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--border-soft);
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo{ display:flex; align-items:center; }
.nav-logo img{ height: 30px; width:auto; }
.nav-links{
  display:flex;
  align-items:center;
  gap: 32px;
}
.nav-links a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover{ color: var(--green-deep); }
.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{
  display:none;
  background:none; border:0;
  width:40px; height:40px;
  align-items:center; justify-content:center;
  border-radius: 8px;
}
.nav-toggle:hover{ background: var(--paper-alt); }
.nav-toggle svg{ width:22px; height:22px; }

@media (max-width: 880px){
  .nav-links{
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 28px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav-links.is-open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ padding: 12px 0; width:100%; border-bottom: 1px solid var(--border-soft); }
  .nav-cta .btn-secondary{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ============================================
   Hero
   ============================================ */
.hero{
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(34,197,94,0.10), transparent 60%),
    var(--paper);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(38px, 5.4vw, 64px);
  margin-top: 18px;
}
.hero-copy .accent{ color: var(--green-bright-2); }
.hero-copy p{
  margin-top: 22px;
  font-size: 18.5px;
  color: var(--ink-soft);
  max-width: 520px;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-note{
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-faint);
  display:flex;
  align-items:center;
  gap:8px;
}
.hero-note svg{ width:15px; height:15px; flex:none; color: var(--green-bright-2); }

.hero-visual{ position:relative; width:100%; }
.hero-field{
  position:relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin-left:auto;
  margin-right: 0;
}
.hero-field .field-grid{
  position:absolute; inset:0;
  display:grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 1fr);
  gap: 9%;
  padding: 6%;
}
.hero-field .dot{
  border-radius:50%;
  background: rgba(17,24,39,0.09);
}
.hero-field .dot.active{ background: var(--green-bright); opacity:0.9; }
.hero-field .dot.gold{ background: var(--gold); opacity:0.85; }
.hero-field .dot.deep{ background: var(--green-deep); opacity:0.55; }
.hero-card{
  position:absolute;
  z-index:2;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  width: 232px;
}
.hero-card--1{ top: 4%; left: -6%; }
.hero-card--2{ bottom: 6%; right: -4%; }
.hero-card .label{ font-family: var(--font-mono); font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-faint); }
.hero-card .msg{ font-size: 13.5px; color: var(--ink); margin-top:6px; line-height:1.45; }
.hero-card .tag{
  display:inline-block; margin-top:10px;
  font-size: 11px; font-weight:600;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(34,197,94,0.12); color: var(--green-deep);
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order:-1; max-width: 380px; margin: 0 auto; }
  .hero-field{ margin: 0 auto; max-width: 100%; }
  .hero-copy p{ max-width: none; }
}
@media (max-width: 560px){
  .hero-card{ width: 180px; padding: 12px 14px; }
  .hero-card .msg{ font-size:12.5px; }
}

/* ============================================
   Logo strip / specialization band
   ============================================ */
.specialty-strip{
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--white);
}
.specialty-row{
  display:flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items:center;
  justify-content:center;
  padding: 22px 0;
}
.specialty-row span{
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .01em;
}
.specialty-row .dot-sep{ color: var(--gold); }

/* ============================================
   Problem section
   ============================================ */
.problem-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.problem-card .num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .08em;
}
.problem-card h3{
  font-size: 17px;
  margin-top: 14px;
  color: var(--ink);
}
.problem-card p{
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 8px;
}
@media (max-width: 980px){ .problem-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .problem-grid{ grid-template-columns: 1fr; } }

.problem-callout{
  margin-top: 40px;
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--paper-alt);
  border: 1px solid var(--border-soft);
}
.problem-callout p{ font-size: 15.5px; color: var(--ink); }
.problem-callout strong{ color: var(--green-deep); }

/* ============================================
   Economic flow diagram
   ============================================ */
.flow-wrap{
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  position: relative;
  overflow:hidden;
}
.flow-wrap::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 300px at 10% 0%, rgba(255,255,255,0.06), transparent 60%);
}
.flow-inner{ position:relative; }
.flow-head{ max-width: 620px; }
.flow-head .eyebrow{ color: rgba(255,255,255,0.75); }
.flow-head .eyebrow::before{ background: var(--green-bright); box-shadow:0 0 0 3px rgba(34,197,94,0.28); }
.flow-head h2{ color: var(--white); margin-top:14px; font-size: clamp(24px,3.4vw,32px); }
.flow-head p{ color: rgba(255,255,255,0.72); margin-top:14px; font-size:15.5px; }

.flow-steps{
  margin-top: 44px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.flow-step{
  position: relative;
  padding: 0 18px;
  text-align:left;
}
.flow-step .chip{
  width: 44px; height:44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display:flex; align-items:center; justify-content:center;
  color: var(--green-bright);
  margin-bottom: 16px;
}
.flow-step .chip svg{ width:22px; height:22px; }
.flow-step h4{ color: var(--white); font-size:15.5px; font-weight:600; font-family: var(--font-body); }
.flow-step p{ color: rgba(255,255,255,0.62); font-size: 13.5px; margin-top:6px; }
.flow-arrow{
  position:absolute;
  top: 22px; right: -6px;
  width: 18px; height: 18px;
  color: rgba(255,255,255,0.3);
}
.flow-step:last-child .flow-arrow{ display:none; }

@media (max-width: 880px){
  .flow-steps{ grid-template-columns: 1fr; gap: 28px; }
  .flow-step{ padding: 0; }
  .flow-arrow{ display:none; }
}

/* ============================================
   Visual proof gallery
   ============================================ */
.proof-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.proof-card.span-2{ grid-column: span 2; }
.proof-tag{
  position:absolute;
  margin: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(17,24,39,0.85);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 999px;
}
.proof-media{
  position: relative;
  background: var(--paper-alt);
  padding: 26px;
  min-height: 190px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.proof-body{ padding: 18px 20px 22px; }
.proof-body h3{ font-size: 15.5px; color: var(--ink); font-family: var(--font-body); font-weight:600; }
.proof-body p{ font-size: 13.5px; color: var(--ink-soft); margin-top:6px; }

@media (max-width: 980px){
  .proof-grid{ grid-template-columns: 1fr 1fr; }
  .proof-card.span-2{ grid-column: span 2; }
}
@media (max-width: 640px){
  .proof-grid{ grid-template-columns: 1fr; }
  .proof-card.span-2{ grid-column: span 1; }
}

/* message compare mockup */
.compare-row{ display:flex; flex-direction:column; gap:10px; width:100%; }
.msg-bubble{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--ink);
  max-width: 100%;
}
.msg-bubble.bad{ border-color: rgba(220,38,38,0.25); background: rgba(220,38,38,0.04); }
.msg-bubble.good{ border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.06); }
.msg-bubble .who{ font-family: var(--font-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:.06em; color: var(--ink-faint); display:block; margin-bottom:4px; }

/* segmented mini grid */
.mini-grid{
  display:grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  width: 100%;
  max-width: 240px;
}
.mini-grid .dot{ width:100%; aspect-ratio:1; border-radius:50%; background: rgba(17,24,39,0.1); }
.mini-grid .dot.a{ background: var(--green-bright); }
.mini-grid .dot.b{ background: var(--gold); }
.mini-grid .dot.c{ background: var(--green-deep); }

/* lifecycle mini diagram */
.lifecycle-mini{ display:flex; align-items:center; gap: 8px; width:100%; justify-content:center; flex-wrap:wrap; }
.lifecycle-mini .node{
  width: 54px; height:54px; border-radius:50%;
  background: var(--white); border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size: 18px;
}
.lifecycle-mini .node.on{ border-color: var(--green-bright); background: rgba(34,197,94,0.08); }
.lifecycle-mini svg.arrow{ width:18px; height:18px; color: var(--ink-faint); flex:none; }

/* snapshot mockup */
.snap-mock{
  width:100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.snap-mock .row{ display:flex; justify-content:space-between; align-items:center; padding: 7px 0; border-bottom: 1px dashed var(--border); font-size:12.5px; }
.snap-mock .row:last-child{ border-bottom:0; }
.snap-mock .row .k{ color: var(--ink-soft); }
.snap-mock .row .v{ font-family: var(--font-mono); font-weight:600; color: var(--green-deep); }

/* ============================================
   1,000 golfers section
   ============================================ */
.thousand{ background: var(--white); }
.thousand-wrap{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items:center;
}
.thousand-visual{ position:relative; }
.golfer-grid{
  display:grid;
  grid-template-columns: repeat(25, 1fr);
  gap: 4px;
}
.golfer-grid .dot{
  width:100%; aspect-ratio:1; border-radius:50%;
  background: rgba(17,24,39,0.08);
  transition: transform .2s ease;
}
.golfer-grid .dot:hover{ transform: scale(1.5); }
.golfer-grid .dot.regular{ background: var(--green-bright); }
.golfer-grid .dot.inactive{ background: rgba(17,24,39,0.14); }
.golfer-grid .dot.league{ background: var(--gold); }
.golfer-grid .dot.membership{ background: var(--green-deep); }
.golfer-grid .dot.event{ background: var(--ink); }
.golfer-grid .dot.first{ background: rgba(34,197,94,0.35); }

.legend{
  margin-top: 20px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px 18px;
}
.legend-item{ display:flex; align-items:center; gap:8px; font-size:13px; color: var(--ink-soft); }
.legend-swatch{ width:11px; height:11px; border-radius:50%; flex:none; }

.thousand-copy .stat-line{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  letter-spacing: .04em;
}
.thousand-copy h2{ font-size: clamp(26px,3.6vw,36px); margin-top:12px; }
.thousand-copy > p{ margin-top:16px; color: var(--ink-soft); font-size:16px; }

.compare-block{
  margin-top: 26px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.compare-generic{
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(220,38,38,0.05);
  border: 1px solid rgba(220,38,38,0.18);
  font-size: 13.5px;
  color: var(--ink);
}
.compare-generic .who{ font-family: var(--font-mono); font-size:10.5px; text-transform:uppercase; color: #B91C1C; display:block; margin-bottom:3px; letter-spacing:.06em; }
.compare-specific{
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.22);
  font-size: 13.5px;
  color: var(--ink);
}
.compare-specific .who{ font-family: var(--font-mono); font-size:10.5px; text-transform:uppercase; color: var(--green-deep); display:block; margin-bottom:3px; letter-spacing:.06em; }

.thousand-land{
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--green-bright);
  background: var(--paper-alt);
  border-radius: 0 10px 10px 0;
}
.thousand-land p{ font-size: 16px; color: var(--ink); font-weight:500; }

@media (max-width: 980px){
  .thousand-wrap{ grid-template-columns: 1fr; }
  .golfer-grid{ grid-template-columns: repeat(20,1fr); }
}
@media (max-width: 560px){
  .golfer-grid{ grid-template-columns: repeat(14,1fr); }
}

/* ============================================
   How it works
   ============================================ */
.steps-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}
.step-card{
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  position:relative;
}
.step-card .step-num{
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--paper-alt);
  -webkit-text-stroke: 1.5px var(--gold);
  line-height:1;
}
.step-card h3{ font-size:17px; margin-top:16px; color: var(--ink); }
.step-card p{ font-size:14px; color: var(--ink-soft); margin-top:8px; }
@media (max-width: 980px){ .steps-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .steps-grid{ grid-template-columns: 1fr; } }

/* ============================================
   Built for indoor golf
   ============================================ */
.specialize{
  background: var(--paper-alt);
}
.specialize-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.spec-item{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.spec-item .ico{
  flex:none;
  width:36px; height:36px;
  border-radius:10px;
  background: rgba(34,197,94,0.1);
  color: var(--green-deep);
  display:flex; align-items:center; justify-content:center;
}
.spec-item .ico svg{ width:18px; height:18px; }
.spec-item h4{ font-size:14.5px; font-weight:600; color: var(--ink); font-family: var(--font-body); }
.spec-item p{ font-size:13px; color: var(--ink-soft); margin-top:4px; }
@media (max-width: 880px){ .specialize-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .specialize-grid{ grid-template-columns: 1fr; } }

/* ============================================
   Who it's for
   ============================================ */
.fit-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fit-card{
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.fit-card.yes{ background: var(--white); border-color: rgba(34,197,94,0.3); }
.fit-card.no{ background: var(--white); }
.fit-card h3{ font-size:19px; display:flex; align-items:center; gap:10px; }
.fit-card h3 svg{ width:20px; height:20px; }
.fit-card.yes h3{ color: var(--green-deep); }
.fit-card.no h3{ color: var(--ink-soft); }
.fit-card ul{ margin-top:18px; display:flex; flex-direction:column; gap:12px; }
.fit-card li{ font-size:14.5px; color: var(--ink-soft); display:flex; gap:10px; align-items:flex-start; }
.fit-card li svg{ flex:none; width:16px; height:16px; margin-top:3px; }
.fit-card.yes li svg{ color: var(--green-bright-2); }
.fit-card.no li svg{ color: var(--ink-faint); }

.fit-note{
  margin-top: 28px;
  text-align:center;
  font-size: 15.5px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 640px;
  margin-left:auto; margin-right:auto;
}
.fit-note strong{ color: var(--ink); font-style:normal; }

@media (max-width: 780px){ .fit-grid{ grid-template-columns: 1fr; } }

/* ============================================
   Revenue Snapshot / Form
   ============================================ */
.snapshot{
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  overflow:hidden;
}
.snapshot::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(700px 400px at 90% 10%, rgba(212,175,124,0.12), transparent 60%),
              radial-gradient(700px 400px at 5% 100%, rgba(34,197,94,0.14), transparent 60%);
  pointer-events:none;
}
.snapshot-wrap{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items:flex-start;
}
.snapshot-copy .eyebrow{ color: rgba(255,255,255,0.75); }
.snapshot-copy .eyebrow::before{ background: var(--gold); box-shadow:0 0 0 3px rgba(212,175,124,0.28); }
.snapshot-copy h2{ color: var(--white); margin-top:14px; font-size: clamp(28px,4vw,38px); }
.snapshot-copy p{ color: rgba(255,255,255,0.75); margin-top:16px; font-size:16.5px; max-width:480px; }

.snapshot-list{ margin-top:26px; display:flex; flex-direction:column; gap:12px; }
.snapshot-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14.5px; color: rgba(255,255,255,0.85); }
.snapshot-list svg{ flex:none; width:16px; height:16px; margin-top:3px; color: var(--green-bright); }

.snap-example{
  margin-top: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.snap-example .proof-tag{ position:static; display:inline-block; margin:0 0 12px; background: rgba(255,255,255,0.14); color:#fff; }
.snap-example .row{ display:flex; justify-content:space-between; padding:7px 0; border-bottom:1px dashed rgba(255,255,255,0.14); font-size:13px; }
.snap-example .row:last-child{ border-bottom:0; }
.snap-example .k{ color: rgba(255,255,255,0.65); }
.snap-example .v{ font-family: var(--font-mono); color: var(--green-bright); font-weight:600; }

.form-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-card h3{ font-size:19px; color: var(--ink); }
.form-card > p.sub{ font-size:13.5px; color: var(--ink-soft); margin-top:6px; }
.form-grid{ margin-top:22px; display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.form-grid .full{ grid-column: 1 / -1; }
.field label{ display:block; font-size:12.5px; font-weight:600; color: var(--ink-soft); margin-bottom:6px; }
.field input, .field select{
  width:100%;
  padding: 12px 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--paper);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus{ border-color: var(--green-bright); background: var(--white); outline:none; }
.field input::placeholder{ color: var(--ink-faint); }
.field .req{ color: var(--gold); }

.form-submit{ margin-top: 20px; }
.form-foot{ margin-top:14px; font-size:12.5px; color: var(--ink-faint); text-align:center; }

.form-error{
  display:none;
  margin-top:16px;
  padding:12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.25);
}
.form-error.is-visible{ display:block; }
.form-error p{ font-size:13px; color:#B91C1C; margin:0; line-height:1.5; }
.form-error a{ color:#B91C1C; text-decoration:underline; }
.btn:disabled{ opacity:0.7; cursor:not-allowed; }

.form-success{
  display:none;
  text-align:center;
  padding: 20px 6px 6px;
}
.form-success.is-visible{ display:block; }
.form-success .check{
  width:52px; height:52px; border-radius:50%;
  background: rgba(34,197,94,0.12);
  color: var(--green-bright-2);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 16px;
}
.form-success .check svg{ width:26px; height:26px; }
.form-success h3{ font-size:18px; }
.form-success p{ font-size:14px; color: var(--ink-soft); margin-top:8px; }

.form-error{
  display:none;
  margin-top:10px;
  font-size: 12.5px;
  color: #B91C1C;
}
.field.has-error input{ border-color:#DC2626; background: rgba(220,38,38,0.03); }
.field.has-error .field-error{ display:block; }
.field-error{ display:none; font-size:11.5px; color:#DC2626; margin-top:5px; }

@media (max-width: 980px){
  .snapshot-wrap{ grid-template-columns: 1fr; }
}
@media (max-width: 560px){
  .form-grid{ grid-template-columns: 1fr; }
  .form-card{ padding: 24px 20px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--border);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  padding: 22px 4px;
  background:none; border:0;
  text-align:left;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
}
.faq-q .icon{
  flex:none;
  width:26px; height:26px;
  border-radius:50%;
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  transition: transform .2s ease, background .2s ease;
}
.faq-q .icon svg{ width:13px; height:13px; }
.faq-item.is-open .faq-q .icon{ transform: rotate(45deg); background: var(--green-bright); border-color: var(--green-bright); color:#06210F; }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease;
}
.faq-a-inner{ padding: 0 4px 22px; font-size:14.5px; color: var(--ink-soft); max-width: 640px; }

/* ============================================
   Final CTA
   ============================================ */
.final-cta{
  background: var(--ink);
  color: var(--white);
  text-align:center;
}
.final-cta h2{
  color: var(--white);
  font-size: clamp(28px, 4.6vw, 46px);
  max-width: 780px;
  margin: 0 auto;
}
.final-cta .line2{
  color: var(--green-bright);
}
.final-cta p.sub{
  margin-top:20px;
  color: rgba(255,255,255,0.6);
  font-size:16px;
}
.final-cta .btn{ margin-top: 34px; }

/* ============================================
   Footer
   ============================================ */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .footer-logo-chip{
  display:inline-flex;
  align-items:center;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
}
.footer-brand img{ height:22px; display:block; }
.footer-tag{ margin-top:12px; font-size:13.5px; color: rgba(255,255,255,0.5); max-width:280px; }
.footer-cols{ display:flex; gap: 64px; flex-wrap:wrap; }
.footer-col h5{ font-size:12px; text-transform:uppercase; letter-spacing:.08em; color: rgba(255,255,255,0.4); font-family: var(--font-mono); font-weight:500; }
.footer-col ul{ margin-top:14px; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:14px; color: rgba(255,255,255,0.75); }
.footer-col a:hover{ color: var(--green-bright); }
.footer-bottom{
  margin-top: 26px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal{ opacity:0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  *{ animation:none !important; transition-duration: .01ms !important; }
}
