:root {
  --ink: #0e1814;
  --ink-soft: #46524d;
  --forest: #17452d;
  --forest-deep: #0e2c1d;
  --green: #2d7b48;
  --gold: #cda956;
  --gold-dark: #76591f;
  --mist: #e7efeb;
  --paper: #f7f4ec;
  --white: #fff;
  --line: #d9ddd8;
  --red: #b64338;
  --shadow: 0 28px 70px rgba(12, 25, 18, .15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; padding: 12px 16px; background: white; }
.skip-link:focus { top: 16px; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 90px 0; }
main > .section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
.band-dark { color: var(--white); background: var(--forest-deep); }
.band-green { color: var(--white); background: var(--forest); }
.band-mist { background: var(--mist); }
.eyebrow { margin: 0 0 15px; color: var(--gold-dark); font-size: 13px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.band-dark .eyebrow, .band-green .eyebrow, .hero .eyebrow { color: #e2c77f; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; letter-spacing: 0; }
h1 { max-width: 860px; font-size: clamp(50px, 7.3vw, 92px); line-height: .98; }
h2 { font-size: clamp(36px, 4.8vw, 62px); line-height: 1.03; }
h3 { font-size: 26px; line-height: 1.15; }
p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.band-dark p, .band-green p { color: #d5e2da; }
.lead { max-width: 760px; font-size: clamp(19px, 2vw, 23px); line-height: 1.55; }
.section-heading { display: grid; max-width: 800px; gap: 18px; margin-bottom: 44px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 82px;
  border-bottom: 1px solid rgba(14,24,20,.1);
  background: rgba(247, 244, 236, .94);
  backdrop-filter: blur(18px);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--ink); font-size: 14px; font-weight: 900; text-decoration: none; }
.brand img { width: 43px; height: 43px; border-radius: 3px; object-fit: cover; object-position: 50% 13%; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 750; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green); }
.nav-links .button[aria-current="page"] { color: #19170f; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
}
.nav-toggle svg { width: 22px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #19170f;
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: #dfbd6a; box-shadow: 0 14px 32px rgba(89,67,18,.22); }
.button.secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.5); }
.button.secondary:hover { background: rgba(255,255,255,.08); }
.button.dark { color: var(--white); background: var(--forest); }
.button.dark:hover { background: var(--forest-deep); }
.button.full { width: 100%; }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 19, 12, .97) 0%, rgba(6, 19, 12, .87) 53%, rgba(6, 19, 12, .25) 100%),
    image-set(
      url("./assets/growth-hero.avif") type("image/avif"),
      url("./assets/growth-hero.webp") type("image/webp")
    ) 72% center / cover no-repeat;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--green));
}
.hero .container { position: relative; z-index: 1; }
.hero-copy { max-width: 850px; padding: 94px 0; }
.hero .lead { max-width: 760px; margin-top: 28px; color: #e2eae5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; max-width: 860px; margin-top: 48px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.2); }
.hero-proof div { padding: 18px; background: rgba(10,31,20,.84); }
.hero-proof strong { display: block; margin-bottom: 4px; font-size: 14px; }
.hero-proof span { color: #bfcfc5; font-size: 12px; line-height: 1.45; }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.problem-column { padding: 34px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.problem-column.good { border-top: 4px solid var(--green); }
.problem-column.bad { border-top: 4px solid var(--red); }
.problem-column h3 { margin-bottom: 25px; }
.signal-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.signal-list li { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: start; color: var(--ink-soft); line-height: 1.55; }
.signal-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: white; font-weight: 900; }
.bad .signal-icon { background: var(--red); }
.good .signal-icon { background: var(--green); }

.system-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.17); background: rgba(255,255,255,.17); }
.system-step { min-height: 290px; display: flex; flex-direction: column; gap: 24px; padding: 32px; background: var(--forest); }
.step-number { color: #e2c77f; font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.system-step h3 { color: var(--white); }
.system-step p { color: #c9d7ce; font-size: 15px; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit { min-height: 240px; padding: 30px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.benefit .mini-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 5px; color: white; background: var(--green); font-weight: 900; }
.benefit p { margin-top: 12px; font-size: 15px; }

.outcome-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.outcome { min-height: 150px; display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; padding: 28px; background: var(--white); }
.outcome span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-weight: 900; }
.outcome p { font-size: 15px; }

.partner-intro { text-align: center; margin-inline: auto; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.partner { display: grid; grid-template-columns: 180px 1fr; gap: 26px; align-items: center; padding: 26px; border: 1px solid rgba(255,255,255,.17); border-radius: 7px; background: rgba(255,255,255,.055); }
.partner img { width: 180px; height: 235px; object-fit: cover; object-position: center top; border-radius: 5px; filter: saturate(.9); }
.partner h3 { color: var(--white); font-size: 32px; }
.partner p { margin-top: 13px; color: #d4e0d8; font-size: 14px; }
.credential-list { display: grid; gap: 7px; margin: 16px 0 0; padding: 0; list-style: none; }
.credential-list li { color: #f0dfae; font-size: 12px; font-weight: 750; }

.story-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 70px; align-items: start; }
.story-copy { display: grid; gap: 18px; }
.story-points { display: grid; gap: 1px; margin: 0; padding: 0; border: 1px solid var(--line); background: var(--line); list-style: none; }
.story-points li { padding: 24px; background: var(--white); font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.3; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.price-card { position: relative; display: flex; min-height: 570px; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); }
.price-card.featured { color: var(--white); background: var(--forest); border-color: var(--forest); transform: translateY(-10px); box-shadow: var(--shadow); }
.price-card.featured p, .price-card.featured li { color: #d6e2da; }
.tier { color: var(--gold-dark); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.price-card.featured .tier { color: #e2c77f; }
.price { margin: 20px 0 8px; font-family: var(--serif); font-size: 48px; line-height: 1; }
.price small { font-family: var(--sans); font-size: 13px; }
.price-card ul { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }
.price-card li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.45; }
.price-card li::before { color: var(--green); content: "\2713"; font-weight: 900; }
.price-card.featured li::before { color: #8de2aa; }
.popular { position: absolute; top: -13px; right: 20px; padding: 7px 11px; border-radius: 4px; color: #201a0c; background: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.price-note { margin-top: 16px; font-size: 13px; }

.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
summary { position: relative; padding: 22px 56px 22px 24px; font-weight: 850; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; right: 24px; top: 20px; content: "+"; color: var(--green); font-size: 24px; }
details[open] summary::after { content: "\2212"; }
details p { padding: 0 24px 24px; }

.final-cta { padding: 88px 0; text-align: center; }
.final-cta h2 { max-width: 900px; margin: 0 auto; }
.final-cta p { max-width: 780px; margin: 24px auto 0; }
.final-cta .button { margin-top: 32px; }

.page-hero { padding: 90px 0 72px; color: white; background: var(--forest-deep); }
.page-hero p { max-width: 740px; margin-top: 24px; color: #d9e3dc; font-size: 20px; }
.form-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.form-panel { padding: 34px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-size: 13px; font-weight: 850; }
input, textarea {
  min-height: 52px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #b9c2bc;
  border-radius: 4px;
  outline: 0;
  color: var(--ink);
  background: white;
}
textarea { min-height: 128px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,123,72,.14); }
.fine-print { margin: 16px 0; color: #66706b; font-size: 12px; line-height: 1.55; }
.form-status { min-height: 21px; margin-top: 14px; color: var(--green); font-size: 13px; font-weight: 850; }
.ghl-form-frame { width: 100%; min-height: 220px; margin-top: 20px; border: 0; background: var(--white); }
.qualifier { display: grid; gap: 18px; }
.question { padding: 22px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); }
.question strong { display: block; margin-bottom: 15px; line-height: 1.45; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice { min-height: 45px; border: 1px solid #adb8b1; border-radius: 4px; color: var(--ink); background: #f7f8f6; font-weight: 800; cursor: pointer; }
.choice:hover, .choice.is-selected { color: white; background: var(--forest); border-color: var(--forest); }
.gate-result { display: none; padding: 22px; border-radius: 6px; }
.gate-result.is-visible { display: block; }
.gate-result.yes { color: #114426; background: #ddf1e4; }
.gate-result.no { color: #6e241e; background: #f6e2df; }
.gate-result p { margin-top: 8px; color: inherit; font-size: 14px; }
.calendar-shell { overflow: hidden; min-height: 840px; border: 1px solid var(--line); border-radius: 7px; background: var(--white); box-shadow: var(--shadow); }
.calendar-shell iframe { width: 100%; height: 840px; border: 0; }
.locked { display: grid; min-height: 520px; place-items: center; padding: 40px; text-align: center; }
.locked h2 { font-size: 38px; }
.locked p { max-width: 560px; margin: 18px auto 26px; }
.guide-card { padding: 32px; border-radius: 7px; color: white; background: var(--forest); }
.guide-card h2 { font-size: 44px; }
.guide-card p { margin-top: 18px; color: #d6e2da; }

.legal-copy { padding: 76px 0; }
.legal-copy h1 { color: var(--ink); font-size: clamp(44px, 6vw, 72px); }
.legal-copy h2 { margin: 40px 0 14px; font-size: 30px; }
.legal-copy p, .legal-copy li { color: var(--ink-soft); line-height: 1.72; }

.site-footer { padding: 48px 0 24px; color: white; background: #091d13; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.footer-brand img { width: 45px; height: 45px; object-fit: cover; object-position: 50% 13%; border-radius: 3px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #c9d7ce; font-size: 13px; text-decoration: none; }
.copyright { margin-top: 22px; color: #8da095; font-size: 11px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links { display: none; position: fixed; inset: 82px 0 auto; padding: 22px 24px 28px; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .menu-open .nav-links { display: flex; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .nav-links .button { margin-top: 16px; color: #19170f; padding: 14px; border: 0; }
  .nav-toggle { display: inline-flex; }
  .partner-grid, .form-layout, .story-grid { grid-template-columns: 1fr; }
  .partner { grid-template-columns: 220px 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; min-height: auto; }
  .price-card.featured { transform: none; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 32px, 1180px); }
  .section { padding: 70px 0; }
  .site-header { height: 72px; }
  .nav-links { top: 72px; }
  .hero { min-height: 690px; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(6,19,12,.96), rgba(6,19,12,.77)),
      image-set(
        url("./assets/growth-hero-mobile.avif") type("image/avif"),
        url("./assets/growth-hero-mobile.webp") type("image/webp")
      ) 67% center / cover no-repeat;
  }
  .hero-copy { padding: 80px 0; }
  .hero-proof, .problem-grid, .system-grid, .benefit-grid, .pricing-grid, .outcome-grid { grid-template-columns: 1fr; }
  .hero-proof div { padding: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .partner { grid-template-columns: 1fr; }
  .partner img { width: 100%; height: 420px; }
  .price-card { min-height: auto; }
  .price-card:last-child { grid-column: auto; }
  .form-panel { padding: 24px 18px; }
  .calendar-shell, .calendar-shell iframe { min-height: 760px; height: 760px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

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