/* Golden Maple Group — brand tokens (locked canon) */
:root {
  --forest: #14261C;
  --forest-deep: #0E1B14;
  --forest-soft: #1C3527;
  --gold: #C08A2E;
  --gold-deep: #9A731F;
  --cream: #F6F0DF;
  --cream-deep: #EDE4CC;
  --card: #FBF6E9;
  --ink: #14261C;
  --ink-soft: #3C4D40;
  --muted: #66756A;
  --cream-on-forest: #F3EEDC;
  --soft-on-forest: #C9C3AC;
  --line-dark: rgba(20, 38, 28, 0.14);
  --line-light: rgba(246, 240, 223, 0.18);
  --shell: 72rem;
  --narrow: 46rem;
}

/* Big monitors: scale the whole rem system up so the page never floats in a void */
@media (min-width: 1600px) { html { font-size: 18px; } }
@media (min-width: 2000px) { html { font-size: 20px; } }
@media (min-width: 2500px) { html { font-size: 22px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Cormorant Garamond", Georgia, serif; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.9rem, 6.2vw, 5.6rem); font-weight: 600; line-height: 1.02; letter-spacing: -0.015em; }
h1 em { font-style: italic; color: var(--gold); }
h2 { font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 600; line-height: 1.1; margin-bottom: 1.4rem; }
h3 { font-size: 1.45rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--gold-deep); }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 1.4rem; }
.narrow { max-width: var(--narrow); }

.eyebrow {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 1.1rem;
}

.skip {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--forest);
  padding: 0.6rem 1rem; z-index: 100; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- buttons: gold is scarce by law ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-family: Inter, sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.78rem 1.5rem; border-radius: 6px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn-gold { background: var(--gold); color: var(--forest-deep); }
.btn-gold:hover { background: var(--gold-deep); color: var(--cream); }
.btn-lg { padding: 0.95rem 2rem; font-size: 1.02rem; }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}
.text-cta { font-weight: 600; font-size: 0.92rem; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: var(--forest); border-bottom: 1px solid var(--line-light); }
.nav-row { display: flex; align-items: center; gap: 2rem; padding-top: 0.8rem; padding-bottom: 0.8rem; }
.brand {
  display: flex; align-items: center; gap: 0.65rem; text-decoration: none;
  color: var(--cream-on-forest); font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap;
}
.brand img { display: block; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  color: var(--soft-on-forest); text-decoration: none; font-size: 0.92rem; font-weight: 500;
}
.nav-links a:hover { color: var(--cream-on-forest); }
.nav-cta { white-space: nowrap; }

/* ---------- hero ---------- */
.hero { position: relative; background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%); color: var(--cream-on-forest); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; right: -8%; top: 0; width: 66%; height: 100%;
  background: radial-gradient(circle at 62% 42%, rgba(192, 138, 46, 0.17), transparent 62%);
  pointer-events: none;
}
/* Horizon glow, like the reference's lit globe edge */
.hero::after {
  content: ""; position: absolute; left: 12%; right: -12%; bottom: -34%; height: 64%;
  background: radial-gradient(ellipse at 62% 100%, rgba(192, 138, 46, 0.20), rgba(192, 138, 46, 0.06) 46%, transparent 72%);
  pointer-events: none;
}
.hero-leaf {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: min(62vw, 58rem); height: auto; pointer-events: none; user-select: none;
  mix-blend-mode: screen;
  /* Radial fade hides the image's own rectangular background under `screen`. */
  -webkit-mask-image: radial-gradient(ellipse 58% 62% at 58% 50%, #000 34%, rgba(0,0,0,0.55) 58%, transparent 80%);
          mask-image: radial-gradient(ellipse 58% 62% at 58% 50%, #000 34%, rgba(0,0,0,0.55) 58%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 1;
  min-height: max(56vh, 30rem);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(4rem, 9vh, 7rem); padding-bottom: clamp(3.5rem, 8vh, 6rem);
}
.hero .eyebrow { color: var(--gold); }
.hero-sub { max-width: 36rem; font-size: 1.2rem; color: var(--soft-on-forest); margin: 1.6rem 0 2.4rem; }
.hero-cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.micro { font-size: 0.85rem; color: var(--soft-on-forest); margin: 0; }

/* ---------- proof strip ---------- */
.proof { position: relative; background: var(--forest-deep); border-top: 1px solid var(--line-light); }
.proof-row { display: grid; grid-template-columns: repeat(3, auto); justify-content: space-between; gap: 0.5rem 2rem; padding-top: 1.1rem; padding-bottom: 1.1rem; }
.proof-row p {
  margin: 0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--soft-on-forest); white-space: nowrap;
}
.proof-row p::before { content: "\2713\00a0\00a0"; color: var(--gold); }
@media (max-width: 900px) {
  .proof-row { grid-template-columns: 1fr; justify-content: start; }
  .proof-row p { white-space: normal; }
}

/* ---------- sections ---------- */
.sect { padding: clamp(4.5rem, 10vw, 7rem) 0; }
.sect.problem { background: var(--cream); }
.pain-lead { margin-top: 1.6rem; color: var(--muted); font-size: 0.95rem; }
.pain { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.pain li { margin: 0; }
.pain button {
  display: block; width: 100%; text-align: left; cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  line-height: 1.35; color: var(--ink);
  background: transparent; border: 0; border-left: 2px solid var(--line-dark);
  padding: 0.5rem 0 0.5rem 1.4rem;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.pain button:hover { border-left-color: var(--gold); background: rgba(192, 138, 46, 0.05); }
.pain button[aria-pressed="true"] { border-left-color: var(--gold); border-left-width: 3px; }
.pain-answer {
  margin-top: 1.6rem; background: var(--card); border: 1px solid var(--line-dark);
  border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; padding: 1.2rem 1.4rem;
  animation: painIn 0.35s ease;
}
@keyframes painIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pain-answer .pa-text { margin: 0 0 0.7rem; font-size: 1rem; color: var(--ink-soft); }
.pain-answer .pa-note { margin: 0; font-size: 0.85rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .pain-answer { animation: none; } }

.sect.mech { background: var(--cream-deep); }
.mech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; margin-top: 2.2rem; }
.mech-card { background: var(--card); border: 1px solid var(--line-dark); border-radius: 10px; padding: 1.6rem 1.5rem; }
.mech-card h3 { margin-bottom: 0.6rem; }
.mech-card p { margin: 0; font-size: 0.97rem; color: var(--ink-soft); }

.sect.zero { background: var(--forest); color: var(--cream-on-forest); }
.zero .eyebrow { color: var(--gold); }
.zero p { color: var(--soft-on-forest); font-size: 1.05rem; }
.zero-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .zero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; } }
.zero-copy { max-width: 34rem; }
.zero-figure { margin: 0; }
.zero-figure img {
  width: 100%; height: auto; display: block; border-radius: 12px;
  aspect-ratio: 4 / 3.4; object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.zero-figure figcaption {
  margin-top: 0.8rem; font-size: 0.85rem; color: var(--muted);
  font-style: italic; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1rem;
}
.work-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem;
  margin-top: 3rem;
}
@media (min-width: 760px) { .work-strip { grid-template-columns: repeat(4, 1fr); } }
.work-strip img {
  width: 100%; height: 100%; display: block; border-radius: 8px;
  aspect-ratio: 4 / 3; object-fit: cover;
  filter: saturate(0.92);
}
.work-note { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); text-align: center; }
.zero .law {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; line-height: 1.35;
  color: var(--cream-on-forest); border-left: 2px solid var(--gold);
  padding-left: 1.2rem; margin-top: 2rem;
}

.sect.offer { background: var(--cream); }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; margin-top: 2.2rem; align-items: stretch; }
.offer-card {
  background: var(--card); border: 1px solid var(--line-dark); border-radius: 10px;
  padding: 1.8rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem;
}
.offer-card h3 { margin-bottom: 0.2rem; }
.offer-card .who { font-size: 0.92rem; color: var(--muted); margin: 0; }
.offer-card .get { font-size: 0.97rem; color: var(--ink-soft); margin: 0; flex: 1; }
.offer-card .flag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 0.3rem;
}
.offer-card.featured { background: var(--forest); color: var(--cream-on-forest); border-color: var(--forest); }
.offer-card.featured .who { color: var(--soft-on-forest); }
.offer-card.featured .get { color: var(--cream-on-forest); }
.offer-card.featured .btn { align-self: flex-start; margin-top: 0.4rem; }
.offer-card .text-cta { align-self: flex-start; }

.sect.terms { background: var(--cream-deep); }
.terms-list { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 1rem; }
.terms-list li { padding-left: 1.4rem; position: relative; font-size: 1.02rem; }
.terms-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.terms-list b { font-weight: 600; }

.sect.founder { background: var(--cream); }
.founder-row { display: flex; gap: 2rem; align-items: flex-start; }
.founder-img { border-radius: 50%; flex: none; width: 110px; height: 110px; object-fit: cover; }
.founder p { color: var(--ink-soft); }
.signature {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-size: 1.6rem; color: var(--gold-deep); margin: 1.2rem 0 0.4rem !important;
}

.sect.book { background: var(--forest); color: var(--cream-on-forest); }
.book .eyebrow { color: var(--gold); }
.book-sub { color: var(--soft-on-forest); max-width: 32rem; margin-bottom: 2.2rem; }
.book form { max-width: 30rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.4rem; color: var(--cream-on-forest); }
.field input, .field textarea {
  width: 100%; background: var(--forest-soft); border: 1px solid var(--line-light);
  border-radius: 6px; color: var(--cream-on-forest); font: inherit; font-size: 0.98rem;
  padding: 0.75rem 0.9rem;
}
.field input::placeholder, .field textarea::placeholder { color: var(--soft-on-forest); opacity: 0.7; }
.choice { border: 0; padding: 0; margin: 0 0 1.4rem; }
.choice legend {
  padding: 0; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 0.6rem; color: var(--cream-on-forest);
}
.opt {
  display: flex; align-items: flex-start; gap: 0.7rem; cursor: pointer;
  background: var(--forest-soft); border: 1px solid var(--line-light);
  border-radius: 8px; padding: 0.75rem 0.9rem; margin-bottom: 0.55rem;
  transition: border-color 0.15s ease;
}
.opt:hover { border-color: var(--gold-deep); }
.opt input { accent-color: var(--gold); margin: 0.25rem 0 0; flex: none; width: 1rem; height: 1rem; }
.opt span { display: block; }
.opt b { display: block; font-size: 0.94rem; font-weight: 600; }
.opt em { display: block; font-style: normal; font-size: 0.85rem; color: var(--soft-on-forest); }
.opt:has(input:checked) { border-color: var(--gold); }
.opt:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }

.hp { position: absolute; left: -9999px; }
.alt-contact { margin-top: 1.1rem; }
.alt-contact a { color: var(--gold); }

/* ---------- hero ticks ---------- */
.hero-ticks {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 2.2rem;
  margin: 2.6rem 0 0; padding: 0;
}
.hero-ticks li { font-size: 0.86rem; color: var(--soft-on-forest); }
.hero-ticks li::before { content: "\2713\00a0\00a0"; color: var(--gold); font-weight: 700; }

/* ---------- product demo ---------- */
.demo { margin: 3rem 0 0; }
.demo-frame {
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 100%);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.32);
  max-width: 46rem; margin: 0 auto;
}
.demo-bar {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line-light);
}
.demo-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(243, 238, 220, 0.22); flex: none; }
.demo-bar p {
  margin: 0 0 0 0.7rem; font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--soft-on-forest);
}
.demo-replay {
  margin-left: auto; background: transparent; border: 1px solid var(--line-light);
  color: var(--soft-on-forest); border-radius: 99px; cursor: pointer;
  font: inherit; font-size: 0.75rem; padding: 0.25rem 0.75rem;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.demo-replay:hover { border-color: var(--gold); color: var(--gold); }
.demo-feed.staged li { opacity: 0; transform: translateY(8px); }
.demo-feed.staged li.in {
  opacity: 1; transform: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.demo-feed { list-style: none; margin: 0; padding: 1.2rem 1.3rem 1.5rem; display: grid; gap: 0.1rem; }
.demo-feed li {
  display: grid; grid-template-columns: 4.6rem 1fr; gap: 1rem;
  padding: 0.85rem 0; align-items: start;
  border-bottom: 1px solid rgba(243, 238, 220, 0.07);
}
.demo-feed li:last-child { border-bottom: 0; }
.demo-feed .t {
  font-size: 0.76rem; color: var(--muted); padding-top: 0.15rem;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.demo-feed .ev b { display: block; font-size: 0.95rem; font-weight: 600; color: var(--cream-on-forest); }
.demo-feed .ev em { display: block; font-style: normal; font-size: 0.88rem; color: var(--soft-on-forest); margin-top: 0.15rem; }
.demo-feed .ev.quote {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15rem;
  color: var(--cream-on-forest); border-left: 2px solid var(--gold);
  padding-left: 0.9rem; line-height: 1.4;
}
.demo-feed li.won .ev b { color: var(--gold); }
.demo figcaption {
  margin-top: 0.85rem; text-align: center; font-size: 0.8rem; color: var(--muted);
}

/* ---------- pillars ---------- */
.pillars {
  list-style: none; margin: 3rem 0 0; padding: 2.4rem 0 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem 1.6rem;
  border-top: 1px solid var(--line-dark);
}
.pillars svg { width: 30px; height: 30px; color: var(--gold-deep); display: block; margin-bottom: 0.7rem; }
.pillars h4 { margin: 0 0 0.3rem; font-family: Inter, sans-serif; font-size: 0.95rem; font-weight: 600; }
.pillars p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* ---------- pathways ---------- */
.pathways { background: var(--cream-deep); padding: clamp(4.5rem, 10vw, 7rem) 0; text-align: center; }
.pathways .eyebrow { letter-spacing: 0.16em; }
.path-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem; margin-top: 2.4rem; text-align: left;
}
.path-card {
  background: var(--card); border: 1px solid var(--line-dark); border-radius: 12px;
  display: flex; flex-direction: column; overflow: hidden;
}
.path-img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.path-crest {
  aspect-ratio: 16 / 9; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(192, 138, 46, 0.20), transparent 62%),
    linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
}
.path-crest.lit {
  background:
    radial-gradient(circle at 50% 42%, rgba(192, 138, 46, 0.34), transparent 62%),
    linear-gradient(160deg, var(--forest-soft) 0%, var(--forest) 100%);
}
.path-crest img { width: 3.6rem; height: auto; opacity: 0.95; }
.path-crest span {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.05rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
}
.path-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.path-card h3 { font-size: 1.5rem; }
.path-card p { margin: 0; flex: 1; font-size: 0.97rem; color: var(--ink-soft); }
.path-card .btn, .path-card .text-cta { align-self: flex-start; margin-top: 0.3rem; }
.path-card.featured { background: var(--forest); border-color: var(--forest); color: var(--cream-on-forest); }
.path-card.featured p { color: var(--soft-on-forest); }

/* ---------- closing band ---------- */
.closing-band {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--cream-on-forest); padding: clamp(3.5rem, 8vw, 5.5rem) 0; position: relative; overflow: hidden;
}
.closing-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22; filter: saturate(0.7);
}
.closing-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--forest) 12%, rgba(20, 38, 28, 0.72) 60%, rgba(11, 20, 15, 0.55) 100%);
  pointer-events: none;
}
.closing-band::after {
  content: ""; position: absolute; left: 20%; right: -10%; bottom: -40%; height: 70%;
  background: radial-gradient(ellipse at 55% 100%, rgba(192, 138, 46, 0.18), transparent 70%);
  pointer-events: none;
}
.closing-row { position: relative; z-index: 1; display: flex; align-items: center; gap: 2.4rem; flex-wrap: wrap; }
.closing-mark { flex: none; width: 5.5rem; height: auto; opacity: 0.9; }
.closing-row h2 { margin-bottom: 0.7rem; }
.closing-row p { color: var(--soft-on-forest); max-width: 38rem; margin-bottom: 1.5rem; }

/* ---------- footer ---------- */
.foot { background: var(--forest-deep); color: var(--soft-on-forest); padding: 3.4rem 0 2.4rem; }
.foot-cols {
  display: grid; grid-template-columns: 1fr; gap: 2.2rem;
  padding-bottom: 2.2rem; border-bottom: 1px solid var(--line-light);
}
@media (min-width: 760px) { .foot-cols { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.6rem; } }
.foot-brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.2rem; font-weight: 700;
  color: var(--cream-on-forest); margin-bottom: 0.8rem;
}
.foot-tag { max-width: 22rem; margin-bottom: 1rem !important; }
.foot-contact { line-height: 1.9; }
.foot p { margin: 0; font-size: 0.88rem; }
.foot a { color: var(--soft-on-forest); }
.foot a:hover { color: var(--gold); }
.foot-nav { display: flex; flex-direction: column; gap: 0.55rem; }
.foot-nav h3 {
  font-family: Inter, sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.35rem;
}
.foot-nav a { font-size: 0.88rem; text-decoration: none; }
.foot-nav a:hover { text-decoration: underline; }
.foot-fine { opacity: 0.7; font-size: 0.8rem; margin-top: 1.6rem !important; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--forest-deep) 92%, transparent);
  border-top: 1px solid var(--line-light);
  display: none; text-align: center;
  transform: translateY(100%); transition: transform 0.25s ease;
}
.sticky-cta.on { transform: translateY(0); }
.sticky-cta .btn { display: block; }

/* ---------- reveal (progressive enhancement: visible unless JS opts in) ---------- */
.js-reveal .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  .sticky-cta { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .nav-links { display: none; }             /* no hamburger: logo + CTA only */
  .nav-row { gap: 1rem; }
  .brand { font-size: 1.05rem; }
  .nav-cta { margin-left: auto; padding: 0.6rem 1rem; font-size: 0.85rem; }
  .proof-row { flex-direction: column; gap: 0.45rem; }
  .founder-row { flex-direction: column; }
  .sticky-cta { display: block; }
  .hero-leaf { right: -22%; width: 118vw; opacity: 0.42; }
}
@media (max-width: 480px) {
  .brand span { display: none; }            /* logo mark + CTA only */
}
