:root {
  --paper: #f3eee5;
  --paper-deep: #ece4d8;
  --white: #fffdf8;
  --ink: #17211c;
  --ink-soft: #4d574f;
  --green: #0b3e32;
  --green-2: #124d3f;
  --green-3: #dfe9e2;
  --gold: #dfbc86;
  --gold-pale: #f1d4a9;
  --line: rgba(23, 33, 28, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shell: 1180px;
  --shadow: 0 22px 60px rgba(39, 31, 22, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

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

.sr-only,
.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--white);
  color: var(--green);
  padding: 10px 14px;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.wordmark {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  inset: 0 0 auto 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(45, 36, 26, .05);
}
.header-inner {
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
}
.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.primary-navigation a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}
.primary-navigation a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -6px;
  background: var(--green);
  transition: right .2s ease;
}
.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after { right: 0; }
.header-button { justify-self: end; }
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--green); color: #fff; }
.button-dark:hover { background: var(--green-2); }
.button-gold { background: var(--gold-pale); color: #1d2a24; }
.button-gold:hover { background: #eac48e; }
.full-width { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.72), transparent 32%),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
}
.hero-copy {
  padding: 70px 68px 54px 0;
  align-self: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.038em;
}
h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(56px, 6vw, 78px);
  line-height: .98;
}
.hero-lede {
  max-width: 570px;
  margin-bottom: 30px;
  color: #29322d;
  font-size: 17px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proof-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
  min-width: 0;
}
.proof-item + .proof-item {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.proof-item svg {
  width: 28px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-item strong,
.proof-item span { display: block; }
.proof-item strong {
  margin-bottom: 2px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.proof-item span {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}
.hero-image-wrap {
  margin: 0 calc((100vw - min(var(--shell), calc(100vw - 48px))) / -2) 0 0;
  min-height: 640px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.audience-strip {
  padding: 17px 0 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.audience-strip p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: center;
  text-transform: uppercase;
}
.audience-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
  text-align: center;
}
.audience-list span {
  color: #26322c;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  white-space: nowrap;
}

.section-pad { padding: 82px 0; }
.reality-section { background: var(--white); border-bottom: 1px solid var(--line); }
.reality-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr 1.2fr;
  gap: 62px;
  align-items: center;
}
.reality-heading h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 60px);
  line-height: 1.02;
}
.reality-copy p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.75;
}
.reality-copy p:last-child { margin-bottom: 0; }
.reality-image {
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
}
.reality-image img { width: 100%; }

.process-section { background: #fff; }
.section-heading.centered {
  max-width: 970px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(39px, 4.4vw, 56px);
  line-height: 1.06;
}
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-line::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 25px;
  height: 1px;
  background: var(--line);
}
.process-line li {
  position: relative;
  padding-top: 72px;
  text-align: left;
}
.process-icon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 10px #fff;
}
.process-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-number { display: none; }
.process-line h3 {
  margin: 0 0 9px;
  font-size: 14px;
  line-height: 1.4;
}
.process-line p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.inside-section {
  background: var(--paper);
  border-block: 1px solid rgba(23, 33, 28, 0.1);
}
.inside-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 66px;
  align-items: center;
}
.inside-image {
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
}
.inside-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.inside-copy h2 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: clamp(48px, 5.2vw, 68px);
  line-height: .98;
}
.inside-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 15px;
}
.inside-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.inside-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 13px;
  align-items: start;
}
.inside-list li > span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.inside-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
}
.inside-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.pilot-section {
  padding: 68px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.18), transparent 35%, rgba(255,255,255,.18)),
    var(--paper-deep);
  border-bottom: 1px solid var(--line);
}
.pilot-grid {
  display: grid;
  grid-template-columns: .92fr .88fr 1fr .86fr;
  gap: 42px;
  align-items: stretch;
}
.pilot-intro,
.pilot-price,
.pilot-includes,
.pilot-learn { min-width: 0; }
.pilot-price,
.pilot-includes,
.pilot-learn {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.pilot-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(42px, 4.2vw, 56px);
  line-height: 1.03;
}
.pilot-intro > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 14px;
}
.pilot-price { text-align: center; }
.pilot-price > span,
.pilot-label {
  display: block;
  margin: 0 0 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pilot-price strong {
  display: block;
  color: var(--green);
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: .9;
}
.pilot-price p { margin: 7px 0 0; font-size: 14px; }
.pilot-price small { display: block; margin: 0 0 20px; color: var(--ink-soft); font-size: 9px; }
.pilot-price .button { width: 100%; }
.pilot-includes ul,
.pilot-learn ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pilot-includes li {
  position: relative;
  padding-left: 18px;
  font-size: 11px;
  line-height: 1.55;
}
.pilot-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pilot-learn {
  padding: 22px 24px;
  border: 0;
  background: rgba(255,255,255,.46);
  border-radius: 3px;
}
.pilot-learn li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  color: #27322c;
  font-size: 11px;
  line-height: 1.5;
}
.pilot-learn li span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 62, 50, .3);
  border-radius: 50%;
  color: var(--green);
  font-size: 11px;
}

.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 100px;
  align-items: start;
}
.faq-heading {
  position: sticky;
  top: 118px;
}
.faq-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.02;
}
.faq-heading > p:not(.eyebrow) { color: var(--ink-soft); max-width: 480px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.faq-item button > span:first-child {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}
.faq-plus {
  color: var(--green);
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  transition: transform .2s ease;
}
.faq-item button[aria-expanded="true"] .faq-plus { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}
.faq-item button[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-item button[aria-expanded="true"] + .faq-answer > p { padding-bottom: 24px; }

.start-section {
  padding: 62px 0 58px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.06), transparent 26%),
    linear-gradient(115deg, #0d4a3c 0%, #07382f 55%, #052c25 100%);
  color: #fff;
}
.start-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 78px;
  align-items: center;
}
.start-copy h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.04;
}
.start-copy > p {
  margin-bottom: 24px;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 23px;
}
.start-copy > span {
  color: rgba(255,255,255,.78);
  font-size: 12px;
}
.start-copy a { color: #fff; }
.pilot-form {
  display: grid;
  gap: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pilot-form label { display: block; }
.pilot-form label > span { position: absolute; left: -9999px; }
.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  background: #fbfaf6;
  color: #18231e;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.pilot-form input,
.pilot-form select { height: 46px; padding: 0 14px; }
.pilot-form textarea { min-height: 76px; padding: 12px 14px; resize: vertical; }
.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(223, 188, 134, .2);
}
.pilot-form ::placeholder { color: #7b817d; opacity: 1; }
.form-note {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 9px;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  background: #051e19;
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
}
.footer-wordmark { color: #fff; font-size: 18px; }
.site-footer p { margin: 0; font-size: 11px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 11px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.copyright { color: rgba(255,255,255,.48); }
.mobile-sticky-cta { display: none; }

.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .primary-navigation { gap: 26px; }
  .hero-grid { grid-template-columns: 50% 50%; }
  .hero-copy { padding-right: 38px; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .proof-item + .proof-item { padding-left: 0; padding-top: 10px; border-left: 0; border-top: 1px solid var(--line); }
  .reality-grid { grid-template-columns: 1fr 1fr; }
  .reality-image { grid-column: 1 / -1; max-height: 350px; }
  .reality-image img { width: 100%; height: 100%; object-fit: cover; }
  .pilot-grid { grid-template-columns: 1fr 1fr; }
  .pilot-includes { border-left: 0; padding-left: 0; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .shell { width: min(var(--shell), calc(100% - 32px)); }
  .site-header { background: rgba(243, 238, 229, .97); }
  .header-inner { height: 66px; grid-template-columns: 1fr auto; gap: 12px; }
  .wordmark { font-size: 22px; }
  .header-button { display: none; }
  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease;
  }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-navigation {
    position: fixed;
    inset: 66px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 16px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(45, 36, 26, .09);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .primary-navigation.open { transform: translateY(0); }
  .primary-navigation a { padding: 14px 4px; font-size: 15px; border-bottom: 1px solid var(--line); }
  .primary-navigation a:last-child { border-bottom: 0; }
  .primary-navigation a::after { display: none; }

  .hero-grid { display: block; min-height: auto; }
  .hero-copy { padding: 54px 0 42px; }
  h1 { max-width: 700px; font-size: clamp(52px, 13vw, 72px); }
  .hero-lede { font-size: 16px; }
  .hero-image-wrap {
    margin: 0 -16px;
    min-height: auto;
    aspect-ratio: 1.25 / 1;
  }
  .hero-image-wrap img { object-position: center; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .proof-item + .proof-item { padding-top: 0; padding-left: 12px; border-top: 0; border-left: 1px solid var(--line); }

  .audience-list { grid-template-columns: repeat(3, 1fr); row-gap: 12px; }
  .audience-list span { font-size: 18px; }
  .section-pad { padding: 68px 0; }
  .reality-grid,
  .inside-grid,
  .faq-grid,
  .start-grid { grid-template-columns: 1fr; gap: 38px; }
  .reality-image { grid-column: auto; }
  .faq-heading { position: static; }

  .process-line {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .process-line::before {
    top: 20px;
    bottom: 20px;
    left: 24px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .process-line li { min-height: 120px; padding: 0 0 30px 82px; }
  .process-icon { left: 0; box-shadow: 0 0 0 8px #fff; }
  .process-line h3 { font-size: 16px; }
  .process-line p { font-size: 13px; }

  .pilot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .pilot-price { padding-left: 24px; }
  .pilot-includes { padding: 0; }
  .pilot-learn { padding: 22px; }
  .start-grid { gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-content: flex-end; }
  .copyright { text-align: right; }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 3px;
    background: var(--green);
    color: #fff;
    box-shadow: 0 14px 34px rgba(5, 35, 28, .28);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .mobile-sticky-cta.shown { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-sticky-cta.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
}

@media (max-width: 560px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .proof-item + .proof-item { padding-left: 0; padding-top: 10px; border-left: 0; border-top: 1px solid var(--line); }
  .hero-image-wrap { aspect-ratio: .98 / 1; }
  .audience-list { grid-template-columns: repeat(2, 1fr); }
  .reality-heading h2,
  .section-heading h2,
  .inside-copy h2,
  .pilot-intro h2,
  .faq-heading h2,
  .start-copy h2 { font-size: 44px; }
  .pilot-grid { grid-template-columns: 1fr; }
  .pilot-price,
  .pilot-includes { padding: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 30px; }
  .pilot-price { text-align: left; }
  .pilot-price .button { width: 100%; }
  .faq-item button > span:first-child { font-size: 21px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-links { justify-content: flex-start; }
  .copyright { text-align: left; }
}
