/* ============================================================
   Acquisition Axis — shared design system
   Implements acquisition-axis-spec.json verbatim.
   All styles scoped under .aa-site (never style html/body bg).
   ============================================================ */

:root {
  --bg: #040a07;
  --bg-elevated: #0a1812;
  --bg-card: rgba(22, 48, 34, 0.45);
  --bg-card-hover: rgba(32, 62, 46, 0.55);
  --border: rgba(16, 185, 129, 0.12);
  --border-strong: rgba(16, 185, 129, 0.28);
  --text: #e6f0e9;
  --text-dim: #8c9b90;
  --text-muted: #5a6458;
  --green: #10b981;
  --green-bright: #34d399;
  --green-soft: #6ee7b7;
  --green-deep: #064e3b;
  --green-glow: rgba(16, 185, 129, 0.18);
  --gradient-green: linear-gradient(135deg, #10b981 0%, #34d399 100%);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --container: 1760px;
  --gutter: 48px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body { background: var(--bg); }

/* ---- Site wrapper carries the background (GHL-safe pattern) ---- */
.aa-site {
  position: relative;
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ambient glow layers */
.aa-site::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 15% 5%, rgba(16, 185, 129, 0.13) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 70%, rgba(6, 78, 59, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(16, 185, 129, 0.07) 0%, transparent 40%);
}

.aa-site > * { position: relative; z-index: 1; }

/* ---- Typography ---- */
h1, h2, h3, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}
em {
  font-style: italic;
  color: var(--green-bright);
  font-family: 'Fraunces', Georgia, serif;
}
strong { color: var(--text); font-weight: 600; }
a { color: inherit; text-decoration: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- Section scaffolding ---- */
.section { padding: 120px 0; }
.section-head { max-width: 820px; margin-bottom: 64px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
}
.section-title {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.06;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 680px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-green);
  color: #04140d;
  padding: 16px 32px;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.38);
}
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  padding: 16px 32px;
  font-weight: 500;
}
.btn-secondary:hover { border-color: var(--green-bright); background: rgba(16,185,129,0.06); }
.btn-sm { padding: 12px 24px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 38px;
  transition: all 0.35s var(--ease);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.card h3 { font-size: 24px; margin-bottom: 14px; line-height: 1.2; }
.card p { color: var(--text-dim); font-size: 15.5px; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(4, 10, 7, 0.72);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(4, 10, 7, 0.92);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
}
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo-mark { color: var(--green-bright); font-size: 20px; line-height: 1; }
.logo-text { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 14.5px;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 18px; }

/* ============================================================
   HERO  (display:block per spec — never flex on .hero)
   ============================================================ */
.hero {
  display: block;
  padding: 180px 0 100px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-bright);
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  margin-bottom: 34px;
}
.hero-pill::before { content: '●'; font-size: 7px; color: var(--green-bright); }
.hero h1 {
  font-size: clamp(48px, 5.5vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin-bottom: 30px;
}
.hero-sub {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 720px;
  margin-bottom: 42px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 90px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 48px;
  max-width: 900px;
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--green-bright);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-main { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.stat-sub { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   THE MODEL — numbered levers
   ============================================================ */
.lever { position: relative; }
.lever-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--green-deep);
  -webkit-text-stroke: 1px var(--green);
  margin-bottom: 18px;
  display: block;
}

/* ============================================================
   PARTNERSHIP — tagged deliverables
   ============================================================ */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tag-green { color: var(--green-bright); background: rgba(16,185,129,0.1); border: 1px solid var(--border-strong); }
.tag-muted { color: var(--text-dim); background: rgba(140,155,144,0.08); border: 1px solid rgba(140,155,144,0.18); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
.about-photo-wrap { position: sticky; top: 110px; }
.about-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(16,185,129,0.16), 0 0 0 1px var(--border);
  background: var(--bg-elevated);
}
.about-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px; text-align: center; padding: 24px;
  border: 1px dashed var(--border-strong);
}
.about-body p { font-size: 18px; color: var(--text-dim); margin-bottom: 22px; max-width: 680px; }
.about-body p strong { color: var(--text); }
.signature {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--green-bright);
  font-size: 22px;
  margin-top: 14px;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 500;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-chevron { color: var(--green-bright); transition: transform 0.35s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), padding 0.4s var(--ease);
  opacity: 0;
}
.faq-item.open .faq-a { max-height: 320px; opacity: 1; padding-bottom: 28px; }
.faq-a p { color: var(--text-dim); font-size: 16.5px; max-width: 760px; }

/* ============================================================
   CTA BOX
   ============================================================ */
.cta-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(16,185,129,0.12) 0%, transparent 60%);
}
.cta-box > * { position: relative; }
.cta-box h2 { font-size: clamp(34px, 3.6vw, 56px); margin-bottom: 16px; }
.cta-sub { color: var(--text-dim); font-size: 19px; margin-bottom: 48px; }
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto 18px; text-align: left; }
.outcome {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 30px;
}
.outcome-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.outcome p { color: var(--text-dim); font-size: 15.5px; }
.either-way {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--green-bright);
  font-size: clamp(26px, 3vw, 32px);
  margin: 40px 0 36px;
}

/* ============================================================
   RESULTS / PROOF
   ============================================================ */
.proof-band { background: var(--bg-elevated); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 30px;
  transition: all 0.35s var(--ease);
}
.result-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.result-num { font-family: 'Fraunces', serif; font-style: italic; color: var(--green-bright); font-size: 44px; line-height: 1; margin-bottom: 14px; }
.result-label { font-size: 15px; color: var(--text-dim); line-height: 1.45; }
.result-label strong { color: var(--text); }

.receipts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.receipt {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
}
.receipt img { width: 100%; display: block; }
.receipt-cap { padding: 16px 20px; font-size: 13px; color: var(--text-dim); border-top: 1px solid var(--border); }
.receipt-cap strong { color: var(--green-bright); }
.proof-disclaimer { margin-top: 34px; font-size: 13px; color: var(--text-muted); max-width: 720px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-tag { color: var(--text-dim); font-size: 15px; margin-top: 16px; max-width: 320px; }
.footer-col h4 { font-family: 'Geist', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; color: var(--text-dim); font-size: 15px; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--green-bright); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-dim); transition: color 0.2s; }
.footer-social a:hover { color: var(--green-bright); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--text-muted); font-size: 13.5px; }

/* ============================================================
   Fade-up animation
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 0.8s var(--ease) forwards; }

/* ============================================================
   Mobile sticky CTA bar
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: rgba(4, 10, 7, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-strong);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; min-height: 56px; }
.nav-toggle { display: none; }

/* ============================================================
   RESPONSIVE  (single adaptive build — replaces GHL two-file hack)
   ============================================================ */
@media (max-width: 1080px) {
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .receipts { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 320px 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  :root { --gutter: 20px; }
  .section { padding: 84px 0; }
  .section-head { margin-bottom: 44px; }
  .hero { padding: 132px 0 72px; }
  .hero h1 { font-size: clamp(36px, 9vw, 52px); }
  .hero-sub { font-size: 17px; }
  .hero-ctas { margin-bottom: 56px; }
  .hero-ctas .btn { flex: 1; justify-content: center; min-height: 54px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .grid-3, .grid-2, .result-grid, .receipts, .outcomes, .footer-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 24px; padding-top: 32px; }
  .stat-num { font-size: 44px; }
  .card { padding: 32px 26px; }

  /* simplified nav */
  .nav-links { display: none; }
  .nav-inner { padding: 14px 0; }

  /* about photo centered, not sticky */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { position: static; display: flex; justify-content: center; }
  .about-photo { max-width: 280px; }
  .about-body p { font-size: 16.5px; }

  .cta-box { padding: 56px 26px; }
  .footer-bottom { flex-direction: column; }

  .sticky-cta { display: block; }
  /* leave room so sticky bar never covers the footer CTA */
  .footer { padding-bottom: 110px; }
}
