:root {
  --green-950: #0d241e;
  --green-900: #123128;
  --green-800: #16382f;
  --green-700: #245646;
  --cream: #f5f0e6;
  --cream-2: #ebe3d4;
  --paper: #fffdf8;
  --ink: #16201c;
  --muted: #59645f;
  --line: rgba(22, 32, 28, 0.14);
  /* Brand system: warm yellow + restrained green bridge */
  --brand-yellow: #f5b51b;
  --brand-yellow-hover: #ffc940;
  --accent: #d7d84f;
  --accent-light: #eceb78;
  --accent-dark: #b7b93c;
  --shadow: 0 30px 70px rgba(13, 36, 30, 0.18);
  --radius: 18px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  background: var(--brand-yellow);
  color: var(--green-950);
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.narrow { max-width: 760px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: white;
  padding: 14px 0;
}
.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  font-size: 1.1rem;
}
.brand img { flex: 0 0 auto; }

.brand-logo-link {
  line-height: 0;
}

.site-logo {
  display: block;
  width: auto;
  height: auto;
}

.site-logo-header {
  width: 128px;
  max-height: 92px;
}

.site-logo-footer {
  width: 108px;
  max-height: 78px;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 168px 0 96px;
  color: white;
  background:
    radial-gradient(circle at 72% 32%, rgba(245,181,27,.15), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green-700);
}
.hero .eyebrow, .eyebrow-light { color: var(--accent-light); }
.hero h1, .section h2, .problem-strip p, .hero-card h2 {
  font-family: Georgia, "Times New Roman", serif;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero h1 em { color: var(--brand-yellow); font-style: italic; }
.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 26px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--brand-yellow);
  color: var(--green-950);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--brand-yellow-hover); }
.button-small { padding: 9px 15px; font-size: .92rem; }
.button-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,.34); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-full { width: 100%; }
.text-link { color: white; font-weight: 750; text-underline-offset: 5px; }
.microcopy { margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: .88rem; }

.hero-card { transform: rotate(2.5deg); }
.signal-window {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.signal-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  background: #e8e3d7;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.signal-topbar span { width: 9px; height: 9px; border-radius: 50%; background: #bdb6a8; }
.signal-content { padding: clamp(28px, 5vw, 48px); }
.signal-logo { width: 58px; height: 58px; margin-bottom: 28px; }
.signal-label { margin: 0 0 6px; color: var(--green-700); font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.hero-card h2 { margin: 0; font-weight: 500; font-size: clamp(1.9rem, 3vw, 2.8rem); line-height: 1.05; letter-spacing: -.035em; }
.signal-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 13px; }
.signal-list li { display: flex; align-items: center; gap: 10px; font-weight: 650; }
.tick { width: 27px; height: 27px; border-radius: 50%; display: inline-grid; place-items: center; background: rgba(245,181,27,.18); color: var(--green-800); flex: 0 0 auto; }

.problem-strip { background: var(--accent); padding: 46px 0; }
.strip-grid { display: grid; grid-template-columns: .55fr 1.15fr 1fr; gap: 42px; align-items: start; }
.strip-kicker { font-family: inherit !important; text-transform: uppercase; font-size: .76rem; font-weight: 900; letter-spacing: .13em; }
.strip-quote { margin: 0; font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.05; letter-spacing: -.03em; }
.strip-copy { margin: 0; color: rgba(13,36,30,.72); font-weight: 600; }

.section { padding: 110px 0; }
.section-heading h2, .pioneer-copy h2, .faq-grid h2, .before-after-grid h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 500;
}
.section-heading > p:last-child, .pioneer-copy .lead { font-size: 1.15rem; color: var(--muted); }
.cards { margin-top: 56px; }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  background: rgba(255,255,255,.56);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card-icon { width: 42px; height: 42px; margin-bottom: 44px; }
.card-number { position: absolute; right: 28px; top: 21px; color: rgba(22,32,28,.33); font-weight: 850; }
.card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.card p:last-child { color: var(--muted); margin-bottom: 0; }

.section-dark { color: white; background: var(--green-950); }
.before-after-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: center; }
.comparison {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 25px;
}
.comparison-row { padding: 20px; border-radius: 14px; }
.comparison-row.muted { background: rgba(255,255,255,.06); color: rgba(255,255,255,.62); }
.comparison-row.good { background: var(--accent-light); color: var(--green-950); }
.comparison-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; opacity: .65; margin-bottom: 5px; }
.comparison-row strong { font-size: clamp(1rem, 2vw, 1.35rem); overflow-wrap: anywhere; }
.arrow { text-align: center; padding: 10px; color: var(--brand-yellow); font-size: 1.3rem; }
.comparison-note { margin: 18px 4px 0; color: rgba(255,255,255,.62); }

.pioneer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.pioneer-copy > p:not(.eyebrow) { color: var(--muted); }
.offer-chip { display: inline-block; margin-top: 22px; padding: 10px 14px; border-radius: 999px; background: var(--cream-2); font-weight: 800; font-size: .9rem; }
.interest-form { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: clamp(26px, 5vw, 46px); box-shadow: 0 20px 60px rgba(22,32,28,.08); }
.form-heading { margin-bottom: 26px; }
.form-heading h3 { margin: 0 0 4px; font-size: 1.7rem; }
.form-heading p, .form-note { margin: 0; color: var(--muted); }
.interest-form label { display: grid; gap: 7px; margin-bottom: 17px; font-weight: 750; font-size: .91rem; }
.interest-form input {
  width: 100%;
  border: 1px solid #cfc8b9;
  border-radius: 10px;
  background: white;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}
.interest-form input:focus { border-color: var(--brand-yellow); box-shadow: 0 0 0 4px rgba(245,181,27,.16); }
.form-note { margin-top: 14px; font-size: .78rem; }

.faq-section { padding-top: 30px; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 800; font-size: 1.08rem; }
details p { color: var(--muted); max-width: 680px; }

.site-footer { padding: 34px 0; background: var(--green-950); color: white; }
.brand-footer { color: white; }
.site-footer p { margin: 0; color: rgba(255,255,255,.58); }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid, .before-after-grid, .pioneer-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid, .pioneer-grid, .faq-grid { gap: 56px; }
  .hero-card { transform: none; max-width: 620px; }
  .three-up { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .strip-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header { padding-top: 12px; }
  .site-logo-header { width: 104px; max-height: 76px; }
  .site-logo-footer { width: 96px; max-height: 70px; }
  .button-ghost { display: none; }
  .hero { padding-top: 132px; }
  .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .section { padding: 78px 0; }
  .before-after-grid { gap: 48px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
