/* ==========================================================================
   Chalk landing. Two materials, used honestly:
     the BOARD  (warm near-black, chalk-white writing, taupe accents)
     the PAPER  (the brand cream, ink writing)
   Everything hand-drawn runs through the #chalk turbulence filter so vector
   strokes pick up grain, and draw themselves on scroll via pathLength=1.
   ========================================================================== */

:root {
  --board: #1e1a15;
  --board-deep: #171310;
  --chalk: #f4f0e6;
  --chalk-dim: rgba(244, 240, 230, 0.66);
  --chalk-faint: rgba(244, 240, 230, 0.28);
  --accent: #6f6252;
  --accent-light: #b3a28e;
  --paper: #f4f0e6;
  --paper-deep: #ece6d8;
  --ink: #1c1c1c;
  --ink-soft: #4c463d;
  --good: #7ca87c;
  --radius: 14px;
  --hand: "Caveat", "Comic Sans MS", cursive;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--board);
  color: var(--chalk);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; }

h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.06; letter-spacing: -0.02em; font-weight: 750; }
h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: -0.015em; font-weight: 720; }
h3 { font-size: 19px; font-weight: 650; }
.center { text-align: center; }

/* ------------------------------------------------------------- materials */
.board {
  position: relative;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(244, 240, 230, 0.05), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(179, 162, 142, 0.06), transparent 55%),
    var(--board);
}
/* faint smudge of erased chalk, the tell of a used board */
.board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 120px at 22% 34%, rgba(244, 240, 230, 0.035), transparent 70%),
    radial-gradient(520px 150px at 74% 68%, rgba(244, 240, 230, 0.03), transparent 70%);
}
.paper {
  background:
    linear-gradient(rgba(28, 28, 28, 0.035) 1px, transparent 1px) 0 0 / 100% 34px,
    var(--paper);
  color: var(--ink);
}

/* ----------------------------------------------------------------- doodles */
.doodle path, .doodle rect, .doodle circle {
  fill: none;
  stroke: var(--chalk);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#chalk);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0.92;
}
.doodle.on path, .doodle.on rect, .doodle.on circle { stroke-dashoffset: 0; }
.doodle path { transition: stroke-dashoffset 1.1s cubic-bezier(0.5, 0, 0.3, 1) 0.15s; }
.doodle path:nth-child(2) { transition-delay: 0.75s; }
.doodle rect, .doodle circle { transition: stroke-dashoffset 1.2s cubic-bezier(0.5, 0, 0.3, 1) 0.2s; }

/* -------------------------------------------------------------------- nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px clamp(18px, 4vw, 44px);
  transition: background 0.25s, border-color 0.25s, backdrop-filter 0.25s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(23, 19, 16, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(244, 240, 230, 0.08);
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__icon { width: 34px; height: 34px; border-radius: 9px; }
.nav__name { font-weight: 750; font-size: 20px; letter-spacing: 0.01em; }
.nav__links { display: flex; gap: 22px; margin-left: 8px; }
.nav__links a { text-decoration: none; color: var(--chalk-dim); font-size: 14.5px; font-weight: 550; }
.nav__links a:hover { color: var(--chalk); }
.nav__cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font: 600 15.5px var(--sans);
  border-radius: 11px;
  padding: 13px 22px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn--small { padding: 9px 15px; font-size: 14px; }
.btn--wide { width: 100%; }
.btn--chalk { background: var(--chalk); color: var(--ink); box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35); }
.btn--chalk:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4); }
.btn--ghost { background: transparent; color: var(--chalk); box-shadow: inset 0 0 0 1.6px rgba(244, 240, 230, 0.45); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.6px rgba(244, 240, 230, 0.9); }
.paper .btn--ghost { color: var(--ink); box-shadow: inset 0 0 0 1.6px rgba(28, 28, 28, 0.35); }

/* ------------------------------------------------------------------- hero */
.hero { padding: clamp(120px, 16vh, 170px) clamp(18px, 4vw, 44px) 0; }
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-bottom: clamp(50px, 8vh, 90px);
}
.eyebrow {
  font-family: var(--hand);
  font-size: 21px;
  color: var(--accent-light);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.eyebrow--ink { color: var(--accent); }
.hero__sub { margin-top: 20px; font-size: 18.5px; color: var(--chalk-dim); max-width: 54ch; }
.hero__actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 16px; font-size: 13.5px; color: var(--chalk-faint); }

.chalkline { position: relative; white-space: nowrap; }
.doodle--under {
  position: absolute;
  left: -2%; right: -2%; bottom: -0.28em;
  width: 104%; height: 0.34em;
}
.doodle--under path { stroke: var(--accent-light); stroke-width: 5; }

/* the self-approving quote */
.hero__visual { position: relative; }
.heromock {
  position: relative;
  background: #262119;
  border: 1px solid rgba(244, 240, 230, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  padding: 22px 22px 26px;
  transform: rotate(-0.6deg);
}
.heromock__head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 14px; }
.heromock__title { font-weight: 650; font-size: 15px; }
.heromock__badge { font-size: 11.5px; color: var(--accent-light); border: 1px solid rgba(179, 162, 142, 0.4); padding: 3px 9px; border-radius: 99px; white-space: nowrap; }
.heromock__row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0;
  font-size: 14.5px; color: var(--chalk-dim);
  border-bottom: 1px dashed rgba(244, 240, 230, 0.1);
}
.heromock__row b { color: var(--chalk); font-weight: 600; font-variant-numeric: tabular-nums; }
.heromock__row--opt em { font-style: normal; font-family: var(--hand); font-size: 15px; color: var(--accent-light); margin-left: 6px; }
.tick { display: inline-block; width: 15px; height: 15px; margin-right: 6px; vertical-align: -2px; }
.tick svg { width: 100%; height: 100%; }
.tick path {
  fill: none; stroke: var(--good); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.heromock__total { display: flex; justify-content: space-between; padding: 13px 0 6px; font-weight: 700; font-size: 17px; }
.heromock__sig { position: relative; margin-top: 10px; border-top: 1px solid rgba(244, 240, 230, 0.14); padding-top: 8px; }
.heromock__sig svg { width: 62%; height: 46px; display: block; }
.heromock__sig path {
  fill: none; stroke: var(--chalk); stroke-width: 2.2; stroke-linecap: round;
  filter: url(#chalk);
  stroke-dasharray: 1; stroke-dashoffset: 1; opacity: 0.9;
}
.heromock__sigline { position: absolute; right: 0; bottom: 8px; font-family: var(--hand); font-size: 16px; color: var(--chalk-faint); }
.heromock__stamp {
  position: absolute;
  right: 18px; top: 44%;
  font: 700 21px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--good);
  border: 2.5px solid var(--good);
  border-radius: 8px;
  padding: 9px 14px;
  transform: rotate(-9deg) scale(0);
  opacity: 0.92;
  filter: url(#chalk);
}
.heromock__toast {
  position: absolute;
  left: 20px; bottom: -16px;
  background: #2d2720;
  border: 1px solid rgba(244, 240, 230, 0.16);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
}
.doodle--arrow {
  position: absolute;
  left: -66px; bottom: -30px;
  width: 104px; height: 78px;
}
.doodle--arrow path { stroke: var(--accent-light); }
.hero__annot {
  position: absolute;
  left: -150px; bottom: -52px;
  font-family: var(--hand);
  font-size: 19px;
  color: var(--accent-light);
  transform: rotate(-4deg);
}

/* hero animation timeline */
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes stamp { 0% { transform: rotate(-9deg) scale(0); opacity: 0; } 70% { transform: rotate(-9deg) scale(1.14); opacity: 1; } 100% { transform: rotate(-9deg) scale(1); opacity: 0.92; } }
@keyframes toast { to { opacity: 1; transform: none; } }
@keyframes drawin { to { stroke-dashoffset: 0; } }
.play .hm1 { opacity: 0; animation: rise 0.5s 0.3s forwards; }
.play .hm2 { opacity: 0; animation: rise 0.5s 0.55s forwards; }
.play .hm3 { opacity: 0; animation: rise 0.5s 0.8s forwards; }
.play .hm4 { opacity: 0; animation: rise 0.5s 1.05s forwards; }
.play .hm5 svg path { animation: drawin 1.1s 1.5s cubic-bezier(0.45, 0, 0.4, 1) forwards; }
.play .hm3 .tick path { animation: drawin 0.4s 1.25s forwards; }
.play .hm6 { animation: stamp 0.55s 2.75s cubic-bezier(0.2, 1.4, 0.4, 1) forwards; }
.play .hm7 { animation: toast 0.5s 3.25s forwards; }

/* --------------------------------------------------------------- trades */
.trades {
  border-top: 1px solid rgba(244, 240, 230, 0.08);
  border-bottom: 1px solid rgba(244, 240, 230, 0.08);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}
.trades__track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--hand);
  font-size: 19px;
  color: var(--chalk-faint);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ tour */
.tour { padding: clamp(60px, 9vh, 110px) clamp(18px, 4vw, 44px); }
.tour__item {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(34px, 6vh, 64px) 0;
}
.tour__item--flip .tour__copy { order: 2; }
.tour__item--flip .tour__visual { order: 1; }
.tour__copy h2 { margin-bottom: 14px; }
.tour__copy p { color: var(--ink-soft); font-size: 17px; max-width: 50ch; }
.ticks { list-style: none; margin-top: 18px; display: grid; gap: 9px; }
.ticks li { padding-left: 28px; position: relative; font-size: 15.5px; color: var(--ink-soft); }
.ticks li::before {
  content: "";
  position: absolute; left: 2px; top: 5px;
  width: 14px; height: 14px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3 11 l5 6 l9 -13' fill='none' stroke='%236f6252' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.ticks--chalk li { color: var(--chalk-dim); }
.ticks--chalk li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3 11 l5 6 l9 -13' fill='none' stroke='%23b3a28e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* the product, drawn as itself: dark app panels on the cream paper */
.mock {
  background: #24201a;
  color: var(--chalk);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 24px 60px rgba(28, 24, 18, 0.35);
  padding: 18px 20px 20px;
  transform: rotate(0.5deg);
}
.tour__item--flip .mock { transform: rotate(-0.5deg); }
.mock__bar { display: flex; gap: 5px; margin-bottom: 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(244, 240, 230, 0.18); }
.mock__title { font-weight: 650; font-size: 14.5px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.mock__line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 13.5px; color: var(--chalk-dim); border-bottom: 1px dashed rgba(244, 240, 230, 0.09); }
.mock__line b { color: var(--chalk); font-weight: 600; font-variant-numeric: tabular-nums; }
.mock__line--muted { color: var(--chalk-faint); }
.mock__line--total { font-weight: 700; font-size: 15px; color: var(--chalk); border-bottom: 0; }
.mock__divider { border-top: 1px solid rgba(244, 240, 230, 0.14); margin: 6px 0; }
.mock__btn {
  margin-top: 12px;
  background: var(--accent);
  color: var(--chalk);
  text-align: center;
  border-radius: 10px;
  padding: 11px;
  font-weight: 650;
  font-size: 14px;
}
.pill { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 99px; padding: 3px 9px; }
.pill--paid { background: rgba(124, 168, 124, 0.16); color: var(--good); border: 1px solid rgba(124, 168, 124, 0.4); }

.mock--sched .sched { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.sched__col {
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(244, 240, 230, 0.04);
  /* faint hour lines, so the empty part of a day still reads as a calendar */
  background-image: repeating-linear-gradient(to bottom, transparent 0 35px, rgba(244, 240, 230, 0.05) 35px 36px);
  border-radius: 9px; padding: 8px 7px; min-height: 196px;
}
.sched__day { text-align: center; font-size: 11.5px; color: var(--chalk-faint); margin-bottom: 2px; }
.blk {
  display: flex; align-items: flex-start;
  font-style: normal; font-size: 11px; font-weight: 600; line-height: 1.25;
  border-radius: 7px; padding: 5px 7px;
  color: rgba(20, 16, 12, 0.9);
  overflow: hidden;
}
.b1 { background: #b3a28e; }
.b2 { background: #9db38e; }
.b3 { background: #8ea3b3; }

.mock--phone { max-width: 330px; margin: 0 auto; }
.bubble { border-radius: 14px; padding: 10px 13px; font-size: 13.5px; margin-top: 10px; max-width: 88%; line-height: 1.45; }
.bubble--out { background: var(--accent); color: var(--chalk); margin-left: auto; border-bottom-right-radius: 5px; }
.bubble--in { background: rgba(244, 240, 230, 0.1); color: var(--chalk); border-bottom-left-radius: 5px; }

/* ------------------------------------------------------------------ grid */
.gridwrap { padding: clamp(70px, 10vh, 120px) clamp(18px, 4vw, 44px); }
.gridwrap h2 { margin-bottom: clamp(34px, 6vh, 60px); }
.grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cell {
  border: 1px solid rgba(244, 240, 230, 0.1);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: rgba(244, 240, 230, 0.025);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.cell:hover { transform: translateY(-3px); border-color: rgba(244, 240, 230, 0.22); background: rgba(244, 240, 230, 0.045); }
.cell__ico { width: 44px; height: 44px; margin-bottom: 14px; }
.cell__ico path, .cell__ico rect, .cell__ico circle { stroke: var(--accent-light); stroke-width: 2.4; }
.cell h3 { margin-bottom: 6px; }
.cell p { font-size: 14.5px; color: var(--chalk-dim); }

/* ------------------------------------------------------------------- how */
.how { padding: clamp(70px, 10vh, 120px) clamp(18px, 4vw, 44px); }
.how h2 { margin-bottom: clamp(34px, 6vh, 56px); }
.steps {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.step { text-align: center; padding: 0 6px; }
.step__n {
  font-family: var(--hand);
  font-size: 46px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }
.step__arrow { width: 86px; height: 40px; }
.step__arrow path { stroke: var(--accent); stroke-width: 2.4; }

/* --------------------------------------------------------------- pricing */
.pricing { padding: clamp(70px, 10vh, 130px) clamp(18px, 4vw, 44px); }
.pricing__sub { color: var(--chalk-dim); max-width: 56ch; margin: 14px auto 0; }
.plans {
  max-width: 880px;
  margin: clamp(34px, 5vh, 54px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1.6px dashed rgba(244, 240, 230, 0.3);
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(244, 240, 230, 0.02);
}
.plan--hot {
  border-style: solid;
  border-color: rgba(244, 240, 230, 0.55);
  background: rgba(244, 240, 230, 0.045);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.plan__flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  font-family: var(--hand);
  font-size: 18px;
  color: var(--board);
  background: var(--accent-light);
  border-radius: 99px;
  padding: 3px 16px;
  white-space: nowrap;
}
.plan__name { font-weight: 750; font-size: 19px; letter-spacing: 0.01em; }
.plan__price { font-size: 46px; font-weight: 780; letter-spacing: -0.02em; margin-top: 2px; }
.plan__price span { font-size: 16px; font-weight: 550; color: var(--chalk-dim); letter-spacing: 0; }
.plan__for { color: var(--chalk-dim); font-size: 14.5px; margin-bottom: 10px; }
.plan .ticks { margin-bottom: 22px; }
.plan .btn { margin-top: auto; }
.pricing__note { margin-top: 26px; font-family: var(--hand); font-size: 19px; color: var(--chalk-faint); }

/* ------------------------------------------------------------------- faq */
.faqwrap { padding: clamp(70px, 10vh, 120px) clamp(18px, 4vw, 44px); }
.faqwrap h2 { margin-bottom: clamp(26px, 4vh, 44px); }
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(28, 28, 28, 0.14);
  padding: 4px 2px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  font-size: 16.5px;
  padding: 16px 34px 16px 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-soft); font-size: 15.5px; max-width: 62ch; }
.faq a { color: var(--accent); }

/* ----------------------------------------------------------------- final */
.final { text-align: center; padding: clamp(80px, 14vh, 150px) 20px; }
.final h2 { font-size: clamp(34px, 5vw, 54px); }
.final p { font-family: var(--hand); font-size: 23px; color: var(--chalk-dim); margin: 10px 0 26px; }

/* ---------------------------------------------------------------- footer */
.footer {
  background: var(--board-deep);
  border-top: 1px solid rgba(244, 240, 230, 0.08);
  padding: 44px clamp(18px, 4vw, 44px) 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 40px;
  align-items: center;
  max-width: 100%;
}
.footer__brand { display: flex; gap: 14px; align-items: center; }
.footer__icon { width: 42px; height: 42px; border-radius: 10px; }
.footer__name { font-weight: 750; font-size: 18px; }
.footer__tag { color: var(--chalk-faint); font-size: 13.5px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: var(--chalk-dim); text-decoration: none; font-size: 14px; }
.footer__links a:hover { color: var(--chalk); }
.footer__fine { grid-column: 1 / -1; color: rgba(244, 240, 230, 0.3); font-size: 12.5px; }

/* ------------------------------------------------------------------ gate */
.gate { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 18px; }
.gate[hidden] { display: none; }
.gate__backdrop { position: absolute; inset: 0; background: rgba(10, 8, 6, 0.7); backdrop-filter: blur(4px); }
.gate__card {
  position: relative;
  width: min(460px, 100%);
  background: var(--board);
  border: 1.6px dashed rgba(244, 240, 230, 0.35);
  border-radius: 18px;
  padding: 32px 30px 28px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  animation: rise 0.25s ease-out;
}
.gate__card h3 { font-size: 24px; margin-bottom: 10px; }
.gate__card p { color: var(--chalk-dim); font-size: 15px; margin-bottom: 10px; }
.gate__card a { color: var(--accent-light); }
.gate__form { margin-top: 18px; }
.gate__form label { font-size: 13.5px; color: var(--chalk-faint); display: block; margin-bottom: 7px; }
.gate__row { display: flex; gap: 10px; }
.gate__row input {
  flex: 1;
  background: rgba(244, 240, 230, 0.06);
  border: 1px solid rgba(244, 240, 230, 0.22);
  border-radius: 11px;
  padding: 12px 14px;
  color: var(--chalk);
  font: 500 15px var(--sans);
  letter-spacing: 0.08em;
  min-width: 0;
}
.gate__row input:focus { outline: none; border-color: var(--accent-light); }
.gate__err { color: #d69090; font-size: 13.5px; margin-top: 10px; }
.gate--shake .gate__card { animation: shake 0.4s; }
@keyframes shake { 20% { transform: translateX(-7px); } 45% { transform: translateX(6px); } 70% { transform: translateX(-4px); } 90% { transform: translateX(2px); } }
.gate__x {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; cursor: pointer;
  color: var(--chalk-faint); font-size: 26px; line-height: 1;
}
.gate__x:hover { color: var(--chalk); }

/* --------------------------------------------------------------- reveals */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin: 8px auto 30px; width: 100%; }
  .hero__annot { left: auto; right: 6px; bottom: -46px; }
  .doodle--arrow { left: auto; right: 120px; transform: scaleX(-1); }
  .tour__item { grid-template-columns: 1fr; gap: 26px; }
  .tour__item--flip .tour__copy { order: 1; }
  .tour__item--flip .tour__visual { order: 2; }
  .grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .step { padding: 18px 6px; }
  .step__arrow { display: none; }
  .plans { grid-template-columns: 1fr; max-width: 460px; }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { gap: 14px; }
  .nav__links { display: none; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 104px; }
  .heromock__stamp { right: 10px; font-size: 17px; }
}

/* ------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .doodle path, .doodle rect, .doodle circle { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .doodle path, .doodle rect, .doodle circle, .tick path, .heromock__sig path { stroke-dashoffset: 0 !important; animation: none !important; }
  .play .hm1, .play .hm2, .play .hm3, .play .hm4 { opacity: 1; animation: none; }
  .play .hm6 { transform: rotate(-9deg) scale(1); opacity: 0.92; animation: none; }
  .play .hm7 { opacity: 1; transform: none; animation: none; }
  .trades__track { animation: none; }
}
