/* ============================================================
   Jobi — modern, character-led, dark.
   Self-hosted fonts, no CDN. Cherry Bomb (display) + Inter.
   ============================================================ */

/* ---------- Fonts (all local) ---------- */
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oi";
  src: url("fonts/Oi.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #0e0e10;
  --paper-2: #131316;
  --white: #1c1c1e;      /* card surface — Apple secondarySystemBackground (dark) */
  --pale: #2c2c2e;       /* nested surface — Apple tertiarySystemBackground (dark) */
  --surface-3: #3a3a3c;  /* Apple systemGray5 (dark), for chips/most-elevated bits */
  --hairline: #38383a;   /* Apple separator (dark) */
  --line-soft: rgba(255, 255, 255, 0.1);
  --ink: #f4f1ee;
  --ink-soft: #c9c5c1;
  --grey: #8f8b88;
  --accent: #9fe0f2;     /* sky blue, highlight/selected */
  --accent-deep: #9fe0f2;
  --coral: #f29fa0;      /* pink, CTA + accent */
  --blue: #9fe0f2;       /* sky blue, hero accent */
  --on-fill: #17171a;    /* text on teal/coral fills */

  --display: "Oi", "Inter", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --r-card: 22px;
  --r-btn: 14px;
  --r-pill: 999px;
  --r-input: 14px;

  /* flat: no glow, no soft depth — separation comes from solid surfaces + borders */
  --shadow-card: none;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce: cubic-bezier(0.17, 0.67, 0.3, 1.33); /* mindmarket nav bounce */

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1200px;
  --maxw-wide: 1360px;
  --nav-h: 68px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
/* Lenis manages scroll; native fallback stays smooth */
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; }
img, svg, video, canvas { display: block; max-width: 100%; }

::selection { background: var(--coral); color: var(--on-fill); }
:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; border-radius: 4px; }

[id] { scroll-margin-top: calc(var(--nav-h) + 20px); }

/* Anchored section landings */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5.5rem, 12vw, 11rem) var(--gutter) 0;
}
.section__head { max-width: min(100%, 56rem); margin: 0 0 clamp(2.5rem, 5vw, 4rem); }
.section__head--center {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title {
  margin: 0.75rem 0 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.9vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
}
.section__title em { font-style: normal; color: inherit; }

.eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* hero intro elements, animated in by Anime.js (js drives opacity/transform) */
.h-reveal { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .h-reveal { opacity: 1 !important; transform: none !important; }
}
/* staggered children where a reveal wraps a grid */
.how__grid.is-visible .how__card,
.pricing__grid.is-visible .plan { transition-delay: 0s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s var(--pop), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--primary {
  background: var(--coral);
  color: var(--on-fill);
  border-color: var(--coral);
}
.btn--primary:hover { background: #f4b0b1; border-color: #f4b0b1; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn--ghost:hover { background: var(--pale); border-color: var(--grey); }
.btn--pill { border-radius: var(--r-pill); }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn:active { transform: scale(0.97); }

/* ---------- Tier + chip pills ---------- */
.tier {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.2em 0.7em;
  border-radius: var(--r-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier--free { color: var(--accent); border: 1px solid rgba(159, 224, 242, 0.4); }
.tier--plus { color: var(--coral); border: 1px solid rgba(242, 159, 160, 0.4); }
.chip {
  display: inline-block;
  padding: 0.12em 0.5em;
  border-radius: var(--r-pill);
  background: var(--coral);
  color: var(--on-fill);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chip--soon { background: var(--pale); color: var(--ink-soft); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: none;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--coral);
  transition: transform 0.5s var(--ease-expo);
  will-change: transform;
}
.preloader__badge {
  width: clamp(180px, 27vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
  animation: badge-pop 0.55s var(--pop) backwards;
  transition: transform 0.62s var(--ease-expo);
  will-change: transform;
}
.preloader__riv { width: 84%; height: 84%; transition: opacity 0.25s var(--ease); }
/* exit: the black circle grows to fill the screen, then the panel wipes up */
.preloader.is-done .preloader__riv { opacity: 0; }
.preloader.is-done .preloader__badge { transform: scale(34); }
.preloader.is-gone { transform: translateY(-101%); }
@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.72); }
  to { opacity: 1; transform: scale(1); }
}

/* ---------- Custom cursor ---------- */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    z-index: 300;
    pointer-events: none;
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
  }
  .cursor.is-awake { opacity: 1; }
  .cursor__dot,
  .cursor__ring {
    position: absolute;
    top: 0; left: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor__dot {
    width: 7px; height: 7px;
    background: #fff;
  }
  .cursor__ring {
    width: 34px; height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
  }
  .cursor.is-hover .cursor__ring { width: 56px; height: 56px; border-color: #fff; }
  .cursor.is-down .cursor__ring { width: 26px; height: 26px; }
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor [data-cursor],
  body.has-cursor summary { cursor: none; }
}

/* ---------- Nav: floating islands (mindmarket form factor) ---------- */
.nav {
  position: sticky;
  top: 14px;
  z-index: 100;
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 1080px;
  margin: 14px auto 0;
  padding: 0 var(--gutter);
}
/* thin reading-progress line pinned to the very top of the viewport */
.nav::after {
  content: "";
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--coral);
  transform: scaleX(var(--read, 0));
  transform-origin: left;
}
.nav__bar {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 1.75rem);
  height: 60px;
  padding: 0 12px 0 22px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 50px;
  transition: border-color 0.3s var(--ease);
}
.nav.is-scrolled .nav__bar { border-color: rgba(255, 255, 255, 0.16); }
.nav__brand {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 132px;
  height: 100%;
  text-decoration: none;
}
.nav__word,
.nav__riv { grid-area: 1 / 1; }
.nav__word {
  height: 38px;
  width: auto;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--pop);
}
.nav__riv {
  position: absolute;
  left: 0; bottom: 0;
  width: 132px; height: 96px;
  opacity: 0;
  transform: translateY(8px) scale(0.85);
  transform-origin: bottom center;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--pop);
  pointer-events: none;
}
.nav.is-scrolling .nav__word { opacity: 0; transform: translateY(-6px) rotate(-4deg); }
.nav.is-scrolling .nav__riv { opacity: 1; transform: none; transition-duration: 0.25s; }
.nav__links {
  display: flex;
  gap: 0.15rem;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 500;
}
/* mindmarket-style link: a pill bounce-scales in behind the label on hover */
.nav__links a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.85rem;
  border-radius: 50px;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.nav__links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.09);
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.4s var(--ease-bounce), opacity 0.1s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::before { opacity: 1; transform: scale(1); }
.nav__links a:active::before { transform: scale(0.9); transition-duration: 0.2s, 0.1s; }

/* CTA: a separate floating island (mindmarket "Get a quote" card) */
.nav__cta {
  flex: none;
  align-self: stretch;
  height: 60px;
  padding: 0 1.6rem;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: transform 0.4s var(--ease-bounce);
}
.nav__cta:hover { transform: scale(1.03); }
.nav__cta:active { transform: scale(0.97); }
.nav__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--on-fill);
  color: var(--coral);
  overflow: hidden;
}
.nav__cta-icon svg {
  transition: transform 0.4s var(--ease-bounce);
}
.nav__cta:hover .nav__cta-icon svg { transform: translate(2px, -2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 9.5rem) var(--gutter) clamp(3.5rem, 9vw, 8rem);
  text-align: center;
}
.hero__title, .hero__cta, .hero__screen, .hero__statement { position: relative; z-index: 2; }

/* floating brand motifs behind the hero */
.hero__deco {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.deco { position: absolute; will-change: transform; }
.cloud { height: auto; }
/* top band */
.cloud--a { top: 6%; left: 9%; width: clamp(105px, 11vw, 150px); opacity: 0.2; animation: drift1 20s ease-in-out infinite; }
.cloud--b { top: 3%; right: 9%; width: clamp(150px, 15vw, 210px); opacity: 0.22; animation: drift2 24s ease-in-out infinite 0.8s; }
.cloud--e { top: 0%; left: 45%; width: clamp(70px, 7vw, 98px); opacity: 0.12; animation: drift2flip 23s ease-in-out infinite 1.2s; }
/* left whitespace */
.cloud--h { top: 25%; left: 1.5%; width: clamp(150px, 15vw, 225px); opacity: 0.2; animation: drift2 26s ease-in-out infinite 0.3s; }
.cloud--i { top: 52%; left: 7%; width: clamp(58px, 5.5vw, 84px); opacity: 0.12; animation: drift1flip 18s ease-in-out infinite 1.5s; }
.cloud--j { top: 67%; left: 3%; width: clamp(108px, 12vw, 158px); opacity: 0.16; animation: drift1 22s ease-in-out infinite 2.2s; }
/* right whitespace */
.cloud--k { top: 23%; right: 2%; width: clamp(115px, 12vw, 168px); opacity: 0.15; animation: drift1 21s ease-in-out infinite 0.6s; }
.cloud--l { top: 48%; right: 2.5%; width: clamp(158px, 16vw, 232px); opacity: 0.21; animation: drift2flip 27s ease-in-out infinite 1.8s; }
.cloud--m { top: 68%; right: 6%; width: clamp(58px, 5.5vw, 86px); opacity: 0.11; animation: drift2 19s ease-in-out infinite 2.5s; }
/* bottom band */
.cloud--c { top: 60%; left: 32%; width: clamp(95px, 10vw, 135px); opacity: 0.12; animation: drift1flip 17s ease-in-out infinite 1s; }
.cloud--d { top: 62%; right: 30%; width: clamp(76px, 8vw, 106px); opacity: 0.11; animation: drift2 25s ease-in-out infinite 0.2s; }
/* behind the content, subtle */
.cloud--n { top: 25%; left: 31%; width: clamp(100px, 11vw, 155px); opacity: 0.12; animation: drift1 24s ease-in-out infinite 0.5s; }
.cloud--o { top: 30%; right: 30%; width: clamp(105px, 11vw, 160px); opacity: 0.11; animation: drift2flip 26s ease-in-out infinite 1.3s; }
.cloud--p { top: 52%; left: 46%; width: clamp(80px, 8vw, 120px); opacity: 0.1; animation: drift1flip 21s ease-in-out infinite 2.1s; }
.cloud--q { top: 42%; left: 37%; width: clamp(85px, 8vw, 125px); opacity: 0.09; animation: drift2 23s ease-in-out infinite 0.9s; }
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, -12px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-32px, 10px); }
}
@keyframes drift1flip {
  0%, 100% { transform: translate(0, 0) scaleX(-1); }
  50% { transform: translate(28px, -12px) scaleX(-1); }
}
@keyframes drift2flip {
  0%, 100% { transform: translate(0, 0) scaleX(-1); }
  50% { transform: translate(-32px, 10px) scaleX(-1); }
}
@media (max-width: 1280px) {
  .cloud--h, .cloud--i, .cloud--j, .cloud--k, .cloud--l, .cloud--m { display: none; }
}
@media (max-width: 680px) { .hero__deco { display: none; } }
.hero .eyebrow { margin-bottom: 1.25rem; }
.hero__title {
  margin: 0 0 2.25rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.3rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero__wordmark {
  display: block;
  width: clamp(18rem, 50vw, 46rem);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}
#heroEyes {
  transition: transform 0.16s ease-out;
  will-change: transform;
}
.hero__title em {
  display: inline-block;
  margin-top: 0.08em;
  font-style: normal;
  font-size: 0.62em;
  color: var(--blue);
}
.hero__deck {
  max-width: 46ch;
  margin: 0 auto 2rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink-soft);
}
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.hero__screen {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  perspective: 1400px;
}
/* ghostwriter-style: the demo starts slightly tilted back and stands up on scroll */
.hero__screen .frame {
  transform-origin: center 70%;
  transform: rotateX(var(--rx, 10deg)) scale(var(--sc, 0.97));
  will-change: transform;
}
.hero__mascot {
  position: absolute;
  top: -86px; right: 4%;
  width: 150px; height: 150px;
  z-index: 3;
  pointer-events: none;
}
.hero__caption {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--grey);
}

/* ---------- Media frame ---------- */
.frame {
  position: relative;
  border-radius: var(--r-card);
  border: none;
  background: var(--white);
  padding: 10px;
  transition: transform 0.5s var(--ease);
}
.frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--r-card) - 10px);
  background: var(--pale);
}
.frame__badge {
  position: absolute;
  top: -0.85rem; left: 1.1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.32rem 0.8rem;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--on-fill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.frame__dot {
  width: 0.5em; height: 0.5em;
  border-radius: 50%;
  background: var(--on-fill);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ---------- Statement under the hero video ---------- */
.trust {
  max-width: 60ch;
  margin: clamp(4rem, 9vw, 7rem) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink-soft);
}
.trust.hero__statement { margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* ---------- Hero lock: pin the demo + statement while the words scrub to white ---------- */
.herolock { position: relative; z-index: 2; }
.herolock.is-locked { height: var(--lock-h, auto); }
.herolock.is-locked .herolock__stage {
  position: sticky;
  top: var(--lock-top, 0px);
}

/* ---------- How it works ---------- */
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.how__card {
  position: relative;
  padding: 2rem 1.75rem 2.1rem;
  overflow: hidden;
}
.how__num {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--coral);
}
.how__h {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.how__p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.how__mascot {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  width: 92px; height: 92px;
  pointer-events: none;
  opacity: 0.95;
}

/* ---------- Features: full-width cards that stack on scroll ---------- */
.section.features { max-width: var(--maxw-wide); }
.stack {
  list-style: none;
  margin: 0 auto;
  max-width: 1040px;
  padding: 2vh 0 8vh;
  display: flex;
  flex-direction: column;
  gap: 58vh;
}
/* every card sticks at the same spot so each stacks over the last (which stays
   behind and peeks); the top value centres a ~585px (16:9 at 1040px) card */
.stack__item {
  position: sticky;
  top: calc(50vh - 293px);
}
/* buried cards recede up + scale down, so the one behind peeks out */
.stack__card {
  overflow: hidden;
  border: none;
  border-radius: var(--r-card);
  background: var(--white);
  transform: translateY(var(--ty, 0px)) scale(var(--s, 1));
  transform-origin: center center;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}
.stack__card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--pale);
}
/* Career Coaching is in design: blur the stand-in footage and label it */
.stack__card--soon { position: relative; }
.stack__card--soon .stack__vid { filter: blur(18px); transform: scale(1.12); }
.stack__soon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 12, 0.55);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  color: var(--ink);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
  z-index: 2;
  pointer-events: none;
}
/* per-feature caption, shown only on mobile (desktop uses the fixed narrator card) */
.stack__caption { display: none; }
.stack__cap-h { margin: 1.5rem 0 0.6rem; font-size: 1.35rem; font-weight: 650; line-height: 1.15; letter-spacing: -0.02em; }
.stack__cap-p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; }

/* fixed card, bottom-right; stays put while its text swaps with the top video */
.stackinfo {
  position: fixed;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(16px, 4vw, 48px);
  z-index: 40;
  width: min(440px, 86vw);
  padding: 1.6rem 1.75rem 1.75rem;
  background: var(--white);
  border: none;
  border-radius: var(--r-card);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
.stackinfo.is-visible { opacity: 1; transform: none; }
.stackinfo__h {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.stackinfo__p { margin: 0; max-width: 30ch; color: var(--ink-soft); font-size: 0.95rem; }
.stackinfo__mascot {
  position: absolute;
  right: 0.9rem;
  bottom: 0.4rem;
  width: 92px;
  height: auto;
  pointer-events: none;
}
/* brief swap animation when the content changes */
.stackinfo.is-swapping .stackinfo__h,
.stackinfo.is-swapping .stackinfo__p,
.stackinfo.is-swapping .stackinfo__mascot { animation: info-swap 0.4s var(--ease-expo) both; }
@keyframes info-swap {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ---------- There's more: colour-tinted extras (Genie-style bento) ---------- */
/* the whole section is locked to one viewport, header on top, the bento fills the rest */
.section.more {
  max-width: var(--maxw-wide);
  min-height: 100vh;
  padding: clamp(3.25rem, 7vh, 6rem) var(--gutter) clamp(2.5rem, 6vh, 5rem);
  display: flex;
  flex-direction: column;
}
.section.more .section__head { margin-bottom: clamp(1.4rem, 3.2vh, 2.6rem); }
.more__sub {
  max-width: 48ch;
  margin: 1rem auto 0;
  color: var(--grey);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}
.more__grid {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  gap: clamp(0.8rem, 1.4vw, 1.35rem);
}
.more__col {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.4vw, 1.35rem);
}
.morecard {
  position: relative;
  flex: 1 1 auto;               /* basis = content, so a collapsed card floors at its text height */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;  /* title at the top by default */
  padding: clamp(1.4rem, 2.3vw, 2.2rem);
  border-radius: clamp(20px, 2vw, 28px);
  background: var(--white);
  color: var(--ink);
  transition: flex-grow 0.55s var(--ease-expo);
}
/* Genie move: hover a card and it grows, while the others in its column collapse to
   just their text height (centred). The single-card column never collapses. */
.more__col:not(.more__col--solo):has(.morecard:hover) .morecard { flex-grow: 0; justify-content: center; }
.more__col:not(.more__col--solo):has(.morecard:hover) .morecard:hover { flex-grow: 8; justify-content: flex-start; }
/* minimised cards show only their text: hide any demo content inside them */
.more__col:not(.more__col--solo):has(.morecard:hover) .morecard:not(:hover) .morecard__voice { opacity: 0; }
.morecard__h {
  margin: 0;
  max-width: 18ch;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.9vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
/* all cards share the Jobi+ paywall surface (var(--white) #1c1c1e) with white text */

/* voice-dictation demo pinned to the bottom (absolute, so it never bloats the collapsed height) */
.morecard__voice {
  position: absolute;
  left: clamp(1.4rem, 2.3vw, 2.2rem);
  right: clamp(1.4rem, 2.3vw, 2.2rem);
  bottom: clamp(1.4rem, 2.3vw, 2.2rem);
  padding-top: 2.4rem;
}
.voice__panel {
  overflow: hidden;
  padding: 0.95rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  color: #1d1d1f;
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.3);
}
.voice__pill {
  position: absolute;
  top: 0.2rem; right: 0.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: var(--r-pill);
  background: #1c1c1e;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.voice__dots { display: inline-flex; gap: 3px; }
.voice__dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--coral);
  animation: voicepulse 1.1s ease-in-out infinite;
}
.voice__dots i:nth-child(2) { animation-delay: 0.12s; }
.voice__dots i:nth-child(3) { animation-delay: 0.24s; }
.voice__dots i:nth-child(4) { animation-delay: 0.36s; }
.voice__dots i:nth-child(5) { animation-delay: 0.48s; }
@keyframes voicepulse {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .voice__dots i { animation: none; opacity: 0.85; }
}
/* touch / narrow: drop the viewport-lock + hover expand; just stack and scroll */
@media (max-width: 760px) {
  .section.more {
    min-height: 0;
    display: block;
    padding: clamp(3rem, 10vw, 5rem) var(--gutter) clamp(3rem, 10vw, 5rem);
  }
  .section.more .section__head { margin-bottom: clamp(2rem, 6vw, 3rem); }
  .more__grid { flex-direction: column; gap: 0.9rem; }
  .more__col { flex: none; gap: 0.9rem; }
  .morecard { flex: none; min-height: clamp(150px, 42vw, 210px); transition: none; justify-content: flex-start; }
  .morecard--yellow { min-height: 300px; }
  .morecard__h { max-width: 26ch; }
}

/* ---------- Pricing ---------- */
.section.pricing { max-width: var(--maxw-wide); padding-top: clamp(2.5rem, 5vw, 4rem); }
.pricing .section__head { margin-bottom: clamp(2.75rem, 4.5vw, 3.5rem); }
.pricing__logo { display: block; height: clamp(3.6rem, 8vw, 5.5rem); width: auto; margin: 0 auto -1.6rem; }
.pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.2rem);
  overflow: hidden;
}
.plan--featured {
  border: none;
  border-radius: 32px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: stretch;
  padding: clamp(1.9rem, 3.5vw, 2.6rem);
}
.plan__col--buy { display: flex; flex-direction: column; }
.plan__col--feat { display: flex; flex-direction: column; }
.plan__includes { margin: 0 0 1.1rem; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.plan-wrap { position: relative; display: flex; flex-direction: column; }
/* single centered card: drop it so the baby-sprout peeks into the gap, not over the title */
.pricing__grid--single .plan-wrap { margin-top: 80px; }
.plan-wrap > .plan { flex: 1; }
.plan__peek {
  position: absolute;
  right: 30px;
  top: -108px;
  width: 138px;
  height: auto;
  pointer-events: none;
}
.plan__peek--body { z-index: 0; }
.plan__peek--arms { z-index: 2; }
.plan__name {
  display: flex;
  align-items: center;
  margin: 0 0 1.1rem;
}
.plan__name img { height: 30px; width: auto; }
.plan__price {
  margin: 0 0 0.35rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan__price span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey);
}
.plan__annual {
  margin: 0 0 1.5rem;
  font-size: 0.86rem;
  color: var(--grey);
}
.plan__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.plan__list li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  margin-top: 0.28em;
  border-radius: 50%;
  background: rgba(159, 224, 242, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5.2 4 7.5 8.5 2.5' fill='none' stroke='%239fe0f2' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.plan__list li:last-child { border-bottom: none; }
/* Jobi+ card: grass-crown sprout instead of the tick */
.plan--featured .plan__list li::before {
  width: 19px;
  height: 18px;
  margin-top: 0.02em;
  border-radius: 0;
  background: url("images/sprout-tick.svg") no-repeat center / contain;
}
.plan__cta { margin-top: auto; align-self: flex-start; }
.pricing__note {
  margin: clamp(1.1rem, 2.5vw, 1.6rem) 0 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--grey);
}

/* ---------- FAQ ---------- */
.section.faq { max-width: var(--maxw); }
.faq__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq__panel > * { min-width: 0; }
.faq__title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.faq__list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq__item {
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 0 clamp(1.25rem, 2.5vw, 1.75rem);
  transition: background 0.2s var(--ease);
}
.faq__item:hover { background: #232326; }
.faq__item[open] { background: var(--white); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--ink); }
.faq__mark {
  position: relative;
  flex: none;
  width: 20px; height: 20px;
}
.faq__mark::before,
.faq__mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 2px;
  border-radius: 2px;
  background: var(--grey);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--pop), opacity 0.3s var(--ease);
}
.faq__mark::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__mark::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.faq__a {
  margin: 0;
  padding: 0 0 1.35rem;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq__a a { color: var(--accent); }
.faq__item[open] .faq__a { animation: faq-in 0.4s var(--ease-expo) both; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Contact ---------- */
.contact {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}
.contact__title {
  margin: 0 0 0.7rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.contact__note { margin: 0 0 1.5rem; font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }
.contact__form { display: flex; flex-direction: column; flex: 1; }
.contact__label {
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.contact__label span { text-transform: none; letter-spacing: 0; color: var(--grey); }
.contact__input {
  width: 100%;
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  border-radius: var(--r-input);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact__input::placeholder { color: var(--grey); }
.contact__input:hover { border-color: #3b3b42; }
.contact__input:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(159, 224, 242, 0.06);
  box-shadow: 0 0 0 3px rgba(159, 224, 242, 0.14);
}
/* the message field grows so the whole card matches the FAQ column height */
.contact__textarea { flex: 1; resize: vertical; min-height: 7rem; line-height: 1.55; }
.contact__send { margin-top: auto; }
.contact__msg { margin: 0.9rem 0 0; font-size: 0.9rem; color: var(--coral); }
.contact__done { margin: auto 0; text-align: center; }
.contact__done-h { margin: 0 0 0.4rem; font-family: var(--sans); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; }
.contact__done-p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Waiting-list dialog ---------- */
.wl {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center; padding: 1.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s var(--ease), visibility 0s linear 0.25s;
}
.wl.is-open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.25s var(--ease); }
.wl__scrim { position: absolute; inset: 0; background: rgba(6, 6, 8, 0.74); }
.wl__card {
  position: relative;
  width: min(420px, 100%);
  padding: clamp(1.6rem, 4vw, 2.3rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  transform: translateY(10px) scale(0.985);
  transition: transform 0.35s var(--ease-bounce);
}
.wl.is-open .wl__card { transform: none; }
.wl__x {
  position: absolute; top: 0.7rem; right: 0.8rem;
  width: 2rem; height: 2rem;
  display: grid; place-items: center;
  background: none; border: 0; border-radius: 50%;
  color: var(--grey); font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.wl__x:hover { color: var(--ink); background: var(--pale); }
.wl__title { margin: 0 0 0.5rem; font-family: var(--sans); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.wl__note { margin: 0 0 1.4rem; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.wl__form { display: flex; flex-direction: column; }
.wl__form .btn { margin-top: 0.3rem; }
.wl__msg { margin: 0.85rem 0 0; font-size: 0.9rem; color: var(--coral); }
.wl__done { text-align: center; padding: 0.8rem 0 0.4rem; }
.wl__done-h { margin: 0 0 0.4rem; font-family: var(--sans); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; }
.wl__done-p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Closing ---------- */
.closing {
  max-width: 900px;
  margin: clamp(5rem, 12vw, 9rem) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
}
.closing__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 200px; height: 200px;
  margin: 0 auto 1rem;
}
.closing__mark img { grid-area: 1 / 1; width: 90px; z-index: 1; }
.closing__mark canvas { grid-area: 1 / 1; width: 100%; height: 100%; }
.closing__mark.is-live img { display: none; }
.closing__title {
  margin: 0 0 2rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.14;
  letter-spacing: -0.022em;
}
.closing__title em { font-style: normal; color: inherit; }
.closing__free { margin: 1.1rem 0 0; font-size: 0.9rem; color: var(--grey); }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(9rem, 18vw, 16rem);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-bottom: none;
  border-radius: clamp(44px, 6vw, 80px) clamp(44px, 6vw, 80px) 0 0;
  box-shadow: 0 -34px 70px -40px rgba(0, 0, 0, 0.7);
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter) clamp(1.5rem, 3vw, 2.5rem);
}
.footer__art {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
  will-change: transform;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.footer__mast { display: block; height: 34px; width: auto; margin: 0; }
.footer__tag { margin: 0.5rem 0 0; font-size: 0.9rem; color: var(--grey); max-width: 24ch; }
.footer__label {
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.footer__col a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
  width: fit-content;
  background: linear-gradient(var(--coral), var(--coral)) left bottom / 0 1.5px no-repeat;
  transition: color 0.25s var(--ease), background-size 0.3s var(--ease);
}
.footer__col a:hover { color: var(--ink); background-size: 100% 1.5px; }
.footer__note { margin: 0; font-size: 0.9rem; color: var(--grey); }
.footer__legal {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--grey);
}

/* ---------- Legal pages ---------- */
.legal {
  max-width: 74ch;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--gutter) clamp(3rem, 7vw, 5rem);
}
.legal__riv {
  display: block;
  width: clamp(96px, 13vw, 124px);
  height: clamp(96px, 13vw, 124px);
  margin: 0 0 0.35rem -0.5rem;
}
.legal .eyebrow { margin-bottom: 0.6rem; }
.legal h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}
.legal .lede { font-size: 1.1rem; color: var(--ink-soft); margin: 0 0 2rem; }
.legal h2 {
  margin: 2.25rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.4rem;
  font-weight: 650;
}
.legal p { margin: 0 0 0.9rem; color: var(--ink-soft); }
.legal ul { margin: 0 0 1rem; padding-left: 1.2rem; color: var(--ink-soft); }
.legal li { margin-bottom: 0.4rem; }
.legal strong { color: var(--ink); }
.legal a { color: var(--accent); text-underline-offset: 3px; }
.legal mark { background: var(--coral); color: var(--on-fill); padding: 0 0.25em; border-radius: 4px; }
.legal .legal-table-scroll { overflow-x: auto; margin: 1rem 0 1.25rem; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  font-size: 0.9rem;
}
.legal th {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  background: var(--pale);
  color: var(--ink);
  padding: 0.6rem 0.8rem;
}
.legal td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--ink-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__bar { justify-content: center; }
  /* smaller video corners read better on a narrow screen */
  .frame { border-radius: 14px; padding: 6px; }
  .stack__card { border-radius: 14px; }
  /* one consistent gap between every section on small screens */
  .section { padding-top: clamp(5.5rem, 15vw, 8rem); }
  .section.pricing { padding-top: clamp(5.5rem, 15vw, 8rem); }
  .closing { margin-top: clamp(5.5rem, 15vw, 8rem); }
  /* one calm content rhythm inside every section: head->item and item->item all 2.5rem,
     sitting well below the ~88px gap between sections for a clear two-tier hierarchy */
  .section__head { margin-bottom: 2.5rem; }
  .pricing .section__head { margin-bottom: 2.5rem; }
  .how__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stack { max-width: 100%; gap: 2.5rem; padding: 0; }
  .stack__item { position: static; top: auto; }
  .stack__card { transform: none; }
  .stack__caption { display: block; }
  .stackinfo { display: none; }
  .pricing__grid { grid-template-columns: minmax(0, 460px); }
  .plan--featured { grid-template-columns: 1fr; gap: 1.4rem; padding: clamp(1.5rem, 5vw, 2rem); }
  .plan__cta { align-self: stretch; }
  /* stacked cards: drop the Jobi+ card so its baby-sprout peeks into the gap, not over the free card */
  .plan-wrap { margin-top: 96px; }
  .faq__panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__mascot { width: 108px; height: 108px; top: -60px; }
}
@media (max-width: 560px) {
  /* mobile hero: the demo video sits between the headline and the buttons */
  .hero { display: flex; flex-direction: column; align-items: center; gap: clamp(1.9rem, 6vw, 2.6rem); padding-top: clamp(2.75rem, 9vw, 4.25rem); }
  /* on mobile the pin is off; unwrap the lock so the flex order still applies */
  .herolock, .herolock__stage { display: contents; }
  .hero__title { order: 1; width: 100%; margin: 0; font-size: 2.15rem; }
  .hero__screen { order: 2; width: 100%; margin: 0; }
  .hero__statement.trust { order: 3; margin: 0; font-size: 1rem; line-height: 1.5; }
  .hero__cta { order: 4; margin: 0; width: min(280px, 82%); flex-direction: column; gap: 0.75rem; }
  .hero__cta .btn { width: 100%; }
  .hero__wordmark { width: min(94%, 292px); }
  .btn { padding: 0.8rem 1.35rem; font-size: 0.92rem; }
  .btn--lg { padding: 0.9rem 1.5rem; font-size: 0.98rem; }
  .section__title { font-size: 1.5rem; }
  .closing__title { font-size: 1.65rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__mascot { display: none; }
  .plan__peek { right: 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html:not(.lenis) { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__glow,
  .frame__dot,
  .deco { animation: none; }
  .stack__item { position: static; transform: none; }
  .stack__card { transform: none; transition: none; }
  .hero__screen .frame { transform: none; }
  .wl__card { transform: none; transition: none; }
  .cursor { display: none; }
  .btn, .frame, .faq__mark::before, .faq__mark::after,
  .nav__word, .nav__riv { transition: none; }
  .faq__item[open] .faq__a { animation: none; }
}
