/* Sell The Earth — shared marketing design system
   Loaded by every public page (index, store, free-class, funnels, contact, legal).
   Earthy palette derived from the globe logo: terracotta orange + globe green + cream. */

:root {
  /* Brand — matched to the original Kajabi site (Flat-UI palette) */
  --orange: #e67e22;      /* primary accent — exact original */
  --orange-600: #b45309;
  --orange-700: #b3610f;
  --orange-50: #fdf1e6;
  --green: #2ecc71;       /* logo emerald — exact original */
  --green-700: #1f8f4e;   /* darker emerald for green text/hover */
  --green-50: #e9f8f0;    /* light emerald tint */
  --blue: #3498db;        /* logo ocean blue — exact original */
  --ink: #1c2838;         /* navy slate headings — exact original */
  --body: #3f4d5e;        /* cool slate body copy */
  --muted: #5b6a7d;       /* secondary text (AA on white, cream & cream-2) */
  --cream: #f6faf8;       /* page background: faint cool mint-white (echoes original #F7FFF7) */
  --cream-2: #eaf1ee;     /* alt section bg: cool light gray-green */
  --white: #ffffff;
  --line: #e0e8e4;        /* cool hairline borders */
  --gold: #c8922a;

  /* Type */
  --f-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Radius / shadow */
  --r-sm: 8px; --r: 12px; --r-lg: 18px; --r-xl: 26px; --r-full: 999px;
  --sh-1: 0 1px 2px rgba(28,40,56,.06), 0 2px 8px rgba(28,40,56,.05);
  --sh-2: 0 6px 20px rgba(28,40,56,.10);
  --sh-3: 0 18px 50px rgba(28,40,56,.14);

  /* Layout */
  --max: 1120px;
  --gutter: clamp(18px, 4vw, 40px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--body);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Skip link (a11y) — offscreen until keyboard-focused, then slides into view */
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); font-family: var(--f-display); font-weight: 700; transition: top .15s ease; }
.skip-link:focus { top: 8px; }

h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }

/* Layout helpers */
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding: clamp(48px, 8vw, 104px) 0; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-green { background: var(--green-700); color: #eafaf0; }
.bg-ink { background: var(--ink); color: #eef1ef; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--f-display); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; font-size: .78rem; color: var(--orange-600);
  margin-bottom: 14px;
}
.bg-green .eyebrow, .bg-ink .eyebrow { color: #f0b072; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.bg-green .lead, .bg-ink .lead { color: #cfe6d6; }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.02rem;
  padding: 15px 30px; border-radius: var(--r-full); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1; white-space: nowrap;
}
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(230,126,34,.32); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(230,126,34,.4); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-white { background: #fff; color: #1b7d44; }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.14); border-color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* Keyboard focus — visible ring for interactive controls (WCAG 2.4.7).
   No border-radius here: the outline follows each element's own radius, so
   pill buttons and rounded facades keep their shape. Inputs keep their own
   box-shadow ring (see .optin/.form :focus). */
a:focus-visible, .btn:focus-visible, button:focus-visible, summary:focus-visible,
.vid:focus-visible, [role="button"]:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--orange-600); outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }
.faq summary:focus-visible { outline-offset: -3px; }
.btn:active { transform: translateY(0); box-shadow: var(--sh-1); }
.btn:disabled, .btn[disabled] { opacity: .6; cursor: not-allowed; box-shadow: none; transform: none; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,250,248,.82); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--f-display); font-weight: 800; color: var(--ink); font-size: 1.16rem; letter-spacing: -.02em; white-space: nowrap; flex: none; }
.brand img { width: 38px; height: 38px; flex: none; }
.nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links a { font-weight: 600; color: var(--body); font-size: .95rem; white-space: nowrap; transition: color .15s; }
.nav__links a:hover { color: var(--orange-600); }
.nav__cta { display: flex; gap: 12px; align-items: center; flex: none; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; margin-left: auto; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .2s; }

/* Hero */
.hero { position: relative; padding: clamp(52px, 8vw, 96px) 0 clamp(48px, 7vw, 84px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 480px at 78% -8%, var(--green-50), transparent 60%),
    radial-gradient(760px 420px at 6% 8%, var(--orange-50), transparent 62%);
}
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { margin-top: 26px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .95rem; }
.hero__trust span:first-child { color: var(--gold); letter-spacing: 1px; }
.hero__media { position: relative; }
.hero__card { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--sh-3); border: 1px solid var(--line); overflow: hidden; }

/* highlight text */
.hl { color: var(--orange-600); position: relative; white-space: nowrap; }
.hl-underline { background: linear-gradient(transparent 62%, rgba(230,126,34,.28) 0); }

/* Feature / value cards */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-1);
}
.card--pad-lg { padding: 34px; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-50); color: var(--green-700); margin-bottom: 16px; font-size: 24px;
}
.card__icon--orange { background: var(--orange-50); color: var(--orange-600); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: 1rem; }

/* Section heading block */
.shead { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); text-align: center; }
.shead p { margin-top: 12px; }

/* Testimonials */
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-1); display: flex; flex-direction: column; }
.tcard__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.tcard__quote { font-size: 1.12rem; color: var(--ink); font-weight: 500; line-height: 1.5; flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tcard__av { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; }
.tcard__name { font-family: var(--f-display); font-weight: 700; color: var(--ink); font-size: .98rem; }
.tcard__role { color: var(--muted); font-size: .86rem; }

/* Pricing */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative; box-shadow: var(--sh-1);
}
.price--feat { border: 2px solid var(--orange); box-shadow: var(--sh-3); transform: translateY(-6px); }
.price__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-family: var(--f-display); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; padding: 7px 16px; border-radius: var(--r-full); white-space: nowrap; }
.price__name { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.price__amt { font-family: var(--f-display); font-weight: 800; font-size: 2.8rem; color: var(--ink); letter-spacing: -.03em; margin: 12px 0 4px; }
.price__amt small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price__sub { color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.price ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 4px 0 26px; flex: 1; }
.price li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; color: var(--body); }
.price li::before { content: "✓"; color: var(--green-700); font-weight: 800; flex: none; }
.price li.muted { color: var(--muted); }
.price li.muted::before { content: "–"; color: var(--muted); }

/* Included / checklist list */
.checks { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 30px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; }
.checks .ic { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; font-size: 14px; }
.checks b { font-family: var(--f-display); color: var(--ink); display: block; font-size: 1rem; }
.checks span { color: var(--muted); font-size: .92rem; }

/* Forms (opt-in / contact) */
.form { display: flex; flex-direction: column; gap: 14px; }
.form .fine { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: #fff; margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 20px 24px; font-family: var(--f-display); font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--orange); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 24px 20px; color: var(--muted); }

/* CTA band */
.ctaband { background: linear-gradient(135deg, var(--green-700), var(--green)); color: #fff; border-radius: var(--r-xl); padding: clamp(38px, 6vw, 64px); text-align: center; box-shadow: var(--sh-2); }
.ctaband h2 { color: #fff; margin-bottom: 14px; }
.ctaband p { color: #d7ecdd; max-width: 54ch; margin: 0 auto 26px; }

/* Stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat b { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); display: block; letter-spacing: -.02em; }
.bg-green .stat b, .bg-ink .stat b { color: #fff; }
.stat span { color: var(--muted); font-size: .92rem; font-weight: 600; }
.bg-green .stat span { color: #bfe0c8; }

/* Hero image (Hunter cutout — the green blob is already baked into the PNG). */
.hero__hunter { position: relative; }
.hero__hunter img {
  width: 100%; max-width: 620px; margin: 0 auto; display: block;
  /* the source PNG cuts the torso off flat at the bottom — fade that hard edge */
  -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  will-change: transform;
  animation: heroPop 1s cubic-bezier(.2,.7,.2,1) both, heroFloat 6s ease-in-out 1s infinite;
}
@keyframes heroPop { from { opacity: 0; transform: translateY(24px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Hero text entrance (staggered, on load) */
.hero .eyebrow, .hero h1, .hero .lead, .hero__cta, .hero__trust { animation: heroRise .8s cubic-bezier(.2,.7,.2,1) both; }
.hero .eyebrow { animation-delay: .05s; }
.hero h1       { animation-delay: .14s; }
.hero .lead    { animation-delay: .26s; }
.hero__cta     { animation-delay: .38s; }
.hero__trust   { animation-delay: .5s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .hero__hunter img, .hero .eyebrow, .hero h1, .hero .lead, .hero__cta, .hero__trust { animation: none; }
}

/* Value cards with image icons (Why Flip Land) */
.vcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 28px; box-shadow: var(--sh-1); text-align: center; }
.vcard img { width: 74px; height: 74px; object-fit: contain; margin: 0 auto 18px; }
.vcard h3 { margin-bottom: 8px; }
.vcard p { color: var(--muted); margin: 0; }
/* numbered step badge for icon-less process .vcards (deal-funder / apply) */
.vcard__num { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-50); color: var(--orange-600); font-family: var(--f-display); font-weight: 800; font-size: 1.2rem; line-height: 1; }

/* Centered, text-only hero (no side portrait) */
.hero--center { max-width: 880px; margin: 0 auto; text-align: center; }
.hero--center .lead { margin-inline: auto; }
.hero--center .hero__cta, .hero--center .hero__trust { justify-content: center; }

/* Meet Your Mentor — circular portrait + bio */
.mentor { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; max-width: 940px; margin: 0 auto; }
.mentor__photo { width: 300px; height: 300px; border-radius: 50%; overflow: hidden; background: #fff; box-shadow: var(--sh-2); flex: none; }
.mentor__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) {
  .mentor { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .mentor__photo { width: 240px; height: 240px; }
  .mentor .lead { margin-inline: auto; }
}

/* Testimonials with real photos */
.tcard__photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; }

/* Video section (YouTube facades) */
.vidgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vid { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); background: #000; aspect-ratio: 16/9; cursor: pointer; border: 1px solid var(--line); }
.vid img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity .2s, transform .3s; }
.vid:hover img { opacity: 1; transform: scale(1.04); }
.vid iframe, .vid video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }
.vid__play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.vid__play span { width: 62px; height: 62px; border-radius: 50%; background: rgba(230,126,34,.94); display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.vid__play span::after { content: ""; border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 5px; }

/* Footer */
.footer { background: var(--ink); color: #b9c2bf; padding: 60px 0 34px; }
.footer a { color: #cdd6d3; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer__blurb { color: #96a09c; max-width: 34ch; font-size: .95rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: .95rem; }
.footer__soc { display: flex; gap: 12px; margin-top: 16px; }
.footer__soc a { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .15s; }
.footer__soc a:hover { background: var(--orange); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #8c9793; }

/* Forms / opt-in */
.optin-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-3); padding: clamp(24px, 4vw, 38px); }
.optin-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.optin { display: flex; flex-direction: column; gap: 12px; }
.optin input:not([type="checkbox"]), .form input:not([type="checkbox"]), .form textarea, .form select {
  width: 100%; font: inherit; color: var(--ink); background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; transition: border-color .15s, box-shadow .15s;
}
.optin input:focus, .form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-50);
}
.optin input::placeholder, .form input::placeholder, .form textarea::placeholder { color: #9aa6b2; }
.optin .btn, .form .btn { width: 100%; margin-top: 4px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); line-height: 1.45; cursor: pointer; text-align: left; }
.consent input { margin-top: 2px; flex: none; accent-color: var(--orange); width: 16px; height: 16px; }
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0; }
.form-msg { font-size: .88rem; margin: 2px 0 0; min-height: 1px; }
.form-msg--err { color: #c0392b; }
.form-msg--ok { color: var(--green-700); }
.form textarea { min-height: 120px; resize: vertical; }
.form-success { text-align: center; padding: 20px 8px; }
.form-success__ic { width: 56px; height: 56px; border-radius: 50%; background: var(--green-50); color: var(--green-700); font-size: 1.6rem; font-weight: 800; display: grid; place-items: center; margin: 0 auto 14px; }
.form-success p { color: var(--body); margin: 0; }

/* Article / legal pages */
.article { max-width: 760px; margin: 0 auto; }
.article h1 { margin-bottom: 8px; }
.article .updated { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.article h2 { font-size: 1.4rem; margin: 30px 0 10px; }
.article h3 { margin: 22px 0 8px; }
.article p, .article li { color: var(--body); }
.article ul, .article ol { margin: 0 0 1rem 1.2rem; display: flex; flex-direction: column; gap: 8px; }
.article a { color: var(--orange-600); font-weight: 600; }

.optin-trust { display: flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--muted); font-size: .9rem; }
.optin-trust .stars { color: var(--gold); letter-spacing: 1px; }

/* Video frame (course / free-course poster) */
.video-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-3); border: 1px solid var(--line); background: #0d1b12; cursor: pointer; }
.video-frame__poster { position: relative; aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden; }
.video-frame__poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.video-frame:hover .video-frame__poster img { opacity: .62; transform: scale(1.03); transition: opacity .3s, transform .4s; }
.video-frame .vid__play { position: relative; z-index: 1; }
.video-frame__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 14px 18px; color: #fff; font-size: .92rem; font-weight: 600; background: linear-gradient(to top, rgba(0,0,0,.55), transparent); }

/* Benefit checklist (opt-in "what you'll get") */
.benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 8px 0 0; }
/* position the ✓ absolutely so inline <strong>/<em> in the text stay inline
   (a flex li would split each text run into its own column). */
.benefits li { position: relative; padding-left: 38px; color: var(--body); line-height: 1.5; }
.benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--green-50); color: var(--green-700); font-weight: 800; display: grid; place-items: center; font-size: .85rem; }
.benefits--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 44px; }
@media (max-width: 760px) { .benefits--2col { grid-template-columns: 1fr; } }

/* Reveal-on-scroll — progressive enhancement.
   Content is VISIBLE by default (no-JS safe). Only when JS confirms it's running
   (html.js set by an inline head script, before paint) do we hide-then-reveal.
   site.js has an IO health-check watchdog that force-reveals if IO never fires. */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Responsive */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .grid-3, .grid-4, .pgrid, .stats, .vidgrid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .price--feat { transform: none; }
  .checks { grid-template-columns: 1fr; }
}
/* Collapse the horizontal nav to a burger before it gets cramped */
@media (max-width: 980px) {
  /* only hide the ghost CTA on pages that actually have a burger (homepage/contact);
     funnel & legal pages have no burger, so their single secondary link stays visible */
  .nav__links, .nav__burger ~ .nav__cta .btn-ghost { display: none; }
  .nav__burger { display: block; }
  .nav.open .nav__links { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: var(--cream); border-bottom: 1px solid var(--line); padding: 20px var(--gutter); gap: 18px; box-shadow: var(--sh-2); }
  .nav.open .nav__links a { padding: 10px 0; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .pgrid, .stats, .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__cta .btn, .nav .btn { width: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hl { white-space: normal; }
}
/* Slim-header funnel pages have no burger — keep their CTAs from overflowing on phones */
@media (max-width: 560px) {
  .nav__in { gap: 12px; }
  .nav .btn { padding: 9px 14px; font-size: .88rem; }
  .brand { font-size: 1.02rem; }
}
