/* RWF — Real World Farm™ · clean pixel, robinhood green */

/* self-hosted fonts — no third-party origin, no render-blocking fetch */
@font-face {
  font-family: 'Press Start 2P';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/press-start-2p.woff2') format('woff2');
}
@font-face {
  font-family: 'VT323';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/vt323.woff2') format('woff2');
}

:root {
  --hood: #00c805;
  --hood-d: #00a205;
  --hood-glow: rgba(0, 200, 5, .16);
  --ink: #17301a;
  --ink-soft: #3c5a40;
  --leaf: #2e6b33;
  --olive: #7fa05b;
  --bg: #ffffff;
  --tint: #f2faee;
  --tint-2: #e9f6e3;
  --line: #dcecd4;
  --gold: #e8c34b;
  --soil: #96714a;
  --wood: #d9c19a;
  --wood-d: #b39b74;
  --px: 3px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'VT323', monospace;
  font-size: 21px;
  line-height: 1.45;
  overflow-x: hidden;
}
canvas { image-rendering: pixelated; image-rendering: crisp-edges; }
a { color: var(--leaf); }
b { font-weight: 700; }
.green { color: var(--hood); }
sup { font-size: .45em; }

::selection { background: var(--hood); color: #fff; }

/* below-fold sections skip initial layout/paint.
 * NOTE: anything above a fragment-link target must NOT be .cv, or deep links
 * (rwf.farm/#faq) land in the wrong place while placeholders resolve. */
.cv { content-visibility: auto; contain-intrinsic-size: auto 900px; }
footer.cv { contain-intrinsic-size: auto 320px; }

/* ---------------- nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 2px solid var(--line);
}
.brand canvas { width: 105px; height: 33px; display: block; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.chip {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px; letter-spacing: .5px;
  color: var(--leaf);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: var(--tint);
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
}
.chip--live i {
  width: 8px; height: 8px; background: var(--hood); display: inline-block;
  animation: blink 1.2s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: .25; } }

/* ---------------- buttons ---------------- */
.btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: #fff; background: var(--hood);
  border: 0; cursor: pointer;
  text-decoration: none;
  display: inline-block;
  padding: 14px 20px;
  box-shadow:
    0 -3px 0 0 var(--hood), 0 3px 0 0 var(--hood),
    -3px 0 0 0 var(--hood), 3px 0 0 0 var(--hood),
    0 6px 0 0 var(--hood-d), -3px 3px 0 0 var(--hood-d), 3px 3px 0 0 var(--hood-d);
  transition: transform .06s steps(2), filter .12s;
}
.btn:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn:active { transform: translateY(2px); box-shadow: 0 -3px 0 0 var(--hood), 0 3px 0 0 var(--hood), -3px 0 0 0 var(--hood), 3px 0 0 0 var(--hood); }
.btn--sm { font-size: 9px; padding: 10px 12px; }
.btn--big { font-size: 13px; padding: 18px 24px; }
.btn--ghost {
  background: #fff; color: var(--leaf);
  box-shadow:
    0 -3px 0 0 #fff, 0 3px 0 0 #fff, -3px 0 0 0 #fff, 3px 0 0 0 #fff,
    0 0 0 3px #fff, 0 -6px 0 0 var(--line), 0 6px 0 0 var(--line), -6px 0 0 0 var(--line), 6px 0 0 0 var(--line);
}
.btn--ghost:hover { color: var(--hood); }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdf9 55%, #eef7e8 100%);
  text-align: center;
  overflow: hidden;
}
.hero-inner {
  padding: clamp(48px, 9vh, 96px) 20px 12px;
  position: relative; z-index: 2;
}
/* hero content waits for fonts (html.ready) so the entrance never re-flows mid-animation */
.logo, .wordmark, .tag, .ctas, .domain, .scroll-hint { opacity: 0; }
.logo {
  width: min(420px, 78vw); height: auto;
  display: block; margin: 0 auto;
}
html.ready .logo { animation: settle .7s steps(6) both; }
@keyframes settle {
  from { transform: translateY(-14px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.wordmark {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(13px, 2.6vw, 20px);
  color: var(--leaf);
  margin-top: 26px;
}
html.ready .wordmark { animation: settle .7s steps(6) .12s both; }
.tag {
  font-size: clamp(21px, 2.6vw, 26px);
  color: var(--ink-soft);
  max-width: 640px; margin: 22px auto 0;
}
html.ready .tag { animation: settle .7s steps(6) .22s both; }
.tag b { color: var(--ink); }
.tag .green { color: var(--hood); }
.ctas {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-top: 34px;
}
html.ready .ctas { animation: settle .7s steps(6) .32s both; }
.domain {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px; color: var(--olive);
  margin-top: 30px; letter-spacing: 1px;
}
html.ready .domain { animation: settle .7s steps(6) .42s both; }
.scroll-hint {
  font-size: 18px; color: var(--olive);
  margin-top: 10px;
}
html.ready .scroll-hint { animation: settle .7s steps(6) .5s both; }
.scroll-hint .arrow { display: inline-block; animation: bob 1.4s steps(2) infinite; color: var(--hood); }
@keyframes bob { 50% { transform: translateY(4px); } }
.farm {
  display: block;
  width: 100%;
  position: relative; z-index: 1;
  margin-top: -6px;
  cursor: crosshair;
}

/* ---------------- ticker ---------------- */
.ticker {
  background: var(--hood);
  overflow: hidden;
  contain: content;
  border-top: 3px solid var(--hood-d);
  border-bottom: 3px solid var(--hood-d);
}
.ticker-track {
  display: inline-flex; white-space: nowrap;
  animation: tick 30s linear infinite;
  padding: 9px 0;
  will-change: transform;
}
.ticker-track span {
  font-family: 'VT323', monospace;
  font-size: 20px; color: #fff;
  padding: 0 34px;
  letter-spacing: 1px;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------------- strip ---------------- */
.strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(20px, 6vw, 90px);
  padding: 34px 20px;
  background: #fff;
  border-bottom: 2px solid var(--line);
}
.stat { text-align: center; }
.stat b {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(15px, 2.4vw, 22px);
  color: var(--hood); display: block;
}
.stat-live { display: flex !important; align-items: center; justify-content: center; gap: 10px; }
.stat-live i {
  width: 9px; height: 9px; background: var(--hood);
  animation: blink 1.2s steps(2, start) infinite;
}
.stat > span {
  font-size: 18px; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ---------------- sections ---------------- */
.section { padding: clamp(64px, 10vh, 110px) 20px; background: var(--bg); }
.section--tint { background: var(--tint); }
.container { max-width: 1040px; margin: 0 auto; }
.kicker {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px; color: var(--hood);
  letter-spacing: 2px; margin-bottom: 16px;
}
h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(19px, 3.4vw, 30px);
  line-height: 1.5; color: var(--ink);
  margin-bottom: 18px;
}
.lead { font-size: clamp(21px, 2.4vw, 24px); color: var(--ink-soft); max-width: 760px; }

.grid3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 42px;
}
.card {
  position: relative;
  background: #fff;
  padding: 26px 22px 24px;
  box-shadow: 0 -3px 0 0 var(--line), 0 3px 0 0 var(--line), -3px 0 0 0 var(--line), 3px 0 0 0 var(--line);
  transition: transform .12s steps(3), box-shadow .12s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 -3px 0 0 var(--hood), 0 3px 0 0 var(--hood), -3px 0 0 0 var(--hood), 3px 0 0 0 var(--hood), 0 10px 0 0 var(--hood-glow);
}
.card-num {
  position: absolute; top: 18px; right: 18px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px; color: var(--line);
}
.card:hover .card-num { color: var(--hood); }
.card-ico { width: 56px; height: 56px; display: block; margin-bottom: 14px; }
.card h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px; color: var(--leaf); margin-bottom: 10px;
}
.card p { font-size: 19px; color: var(--ink-soft); }

/* ---------------- zigzag dividers ---------------- */
.zig { height: 14px; background-repeat: repeat-x; background-size: 28px 14px; }
.zig--down {
  background-color: var(--tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14'%3E%3Cpath d='M0 0h14v7h7v7H14 0z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.zig--up {
  background-color: var(--tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14'%3E%3Cpath d='M0 14h14V7h7V0h7v14z' fill='%23ffffff'/%3E%3C/svg%3E");
}

/* ---------------- grow your pass ---------------- */
.grow-wrap {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 34px; margin-top: 44px; align-items: start;
}
.pot-side { position: sticky; top: 90px; }
.pot-frame {
  background: linear-gradient(180deg, #ffffff, #f6fbf2);
  padding: 18px 22px 22px;
  box-shadow: 0 -3px 0 0 var(--line), 0 3px 0 0 var(--line), -3px 0 0 0 var(--line), 3px 0 0 0 var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.pot-sign {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px; letter-spacing: 1px;
  color: #6b5335;
  background: var(--wood);
  padding: 9px 12px 8px;
  box-shadow: 0 -2px 0 0 var(--wood-d), 0 2px 0 0 var(--wood-d), -2px 0 0 0 var(--wood-d), 2px 0 0 0 var(--wood-d), 0 4px 0 0 rgba(179, 155, 116, .4);
}
.pot-frame canvas { width: 188px; height: 282px; }
.pot-meter { margin-top: 18px; }
.pot-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px; color: var(--leaf);
  text-align: center; margin-bottom: 10px;
}
.meter {
  position: relative;
  height: 18px; background: #fff;
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
  overflow: hidden;
}
.meter-fill {
  height: 100%; width: 0%;
  background: repeating-linear-gradient(90deg, var(--hood) 0 10px, var(--hood-d) 10px 12px);
  transition: width .5s steps(8);
}
/* 5 chore segments */
.meter::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 3px), var(--tint) calc(20% - 3px), var(--tint) 20%);
}
.pot-hint {
  text-align: center; font-size: 17px; color: var(--olive);
  margin-top: 10px;
}

.tasks { display: flex; flex-direction: column; gap: 14px; }

/* ---- handle gate ---- */
.gate {
  background: #fff; padding: 18px;
  box-shadow: 0 -3px 0 0 var(--hood), 0 3px 0 0 var(--hood), -3px 0 0 0 var(--hood), 3px 0 0 0 var(--hood);
}
.gate.shake { animation: shake .4s steps(4); }
@keyframes shake {
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}
.gate-title { display: block; font-size: 22px; margin: 4px 0 12px; }
.gate-row { display: flex; gap: 10px; flex-wrap: wrap; }
.gate-row input {
  flex: 1; min-width: 160px;
  font-family: 'VT323', monospace; font-size: 22px;
  color: var(--ink);
  border: 0; outline: 0; padding: 12px 14px;
  background: var(--tint);
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
}
.gate-row input:focus { box-shadow: 0 -2px 0 0 var(--hood), 0 2px 0 0 var(--hood), -2px 0 0 0 var(--hood), 2px 0 0 0 var(--hood); }
.gate-msg { font-size: 18px; color: #c03a3a; margin-top: 10px; min-height: 0; }
.gate-msg:empty { display: none; }
.gate-done { display: none; align-items: center; gap: 12px; flex-wrap: wrap; }
.gate-done b { font-size: 21px; }
.gate.set .gate-form { display: none; }
.gate.set .gate-done { display: flex; }
.gate.set { box-shadow: 0 -3px 0 0 var(--line), 0 3px 0 0 var(--line), -3px 0 0 0 var(--line), 3px 0 0 0 var(--line); }
.gate.set .t-step { color: var(--hood); }
.gate-change {
  font-family: 'VT323', monospace; font-size: 17px;
  color: var(--olive); background: none; border: 0;
  cursor: pointer; text-decoration: underline; margin-left: auto;
}
.gate-change:hover { color: var(--hood); }

/* chores wait for the handle */
.tasks.locked .task { opacity: .55; }
.tasks.locked .task .btn--task { cursor: not-allowed; filter: saturate(.15); }
.tasks.locked .task:hover { transform: none; box-shadow: 0 -3px 0 0 var(--line), 0 3px 0 0 var(--line), -3px 0 0 0 var(--line), 3px 0 0 0 var(--line); }
.task {
  display: flex; align-items: center; gap: 16px;
  background: #fff; padding: 15px 18px;
  box-shadow: 0 -3px 0 0 var(--line), 0 3px 0 0 var(--line), -3px 0 0 0 var(--line), 3px 0 0 0 var(--line);
  transition: transform .1s steps(2), box-shadow .12s;
}
.task:hover { transform: translateX(3px); box-shadow: 0 -3px 0 0 var(--olive), 0 3px 0 0 var(--olive), -3px 0 0 0 var(--olive), 3px 0 0 0 var(--olive); }
.t-ico {
  position: relative;
  width: 50px; height: 50px; flex: 0 0 50px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint);
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
}
.t-ico canvas { width: 32px; height: 32px; }
.t-body { flex: 1; min-width: 0; }
.t-step {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px; color: var(--olive); letter-spacing: 1px;
  margin-bottom: 4px;
}
.t-body b { display: block; font-size: 21px; line-height: 1.2; }
.t-body span { font-size: 18px; color: var(--ink-soft); }
.handle { color: var(--hood); text-decoration: none; }
.handle:hover { text-decoration: underline; }
.btn--task { font-size: 10px; padding: 12px 10px; flex: 0 0 auto; min-width: 108px; text-align: center; }
.task.doing .btn--task {
  background: var(--olive); cursor: wait;
  box-shadow: 0 -3px 0 0 var(--olive), 0 3px 0 0 var(--olive), -3px 0 0 0 var(--olive), 3px 0 0 0 var(--olive), 0 6px 0 0 #5d7a40;
  animation: pulse 1s steps(2) infinite;
}
@keyframes pulse { 50% { filter: brightness(1.12); } }
.task.done .t-step { color: var(--hood); }
.task.done .t-ico::after {
  content: '✓';
  position: absolute; right: -8px; bottom: -8px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hood); color: #fff;
  font-family: 'VT323', monospace; font-size: 16px;
  box-shadow: 0 -2px 0 0 var(--hood-d), 0 2px 0 0 var(--hood-d), -2px 0 0 0 var(--hood-d), 2px 0 0 0 var(--hood-d);
}
.task.done .btn--task {
  background: #fff; color: var(--hood); cursor: default; pointer-events: none;
  box-shadow: 0 -3px 0 0 #fff, 0 3px 0 0 #fff, -3px 0 0 0 #fff, 3px 0 0 0 #fff, 0 0 0 3px #fff, 0 -6px 0 0 var(--hood), 0 6px 0 0 var(--hood), -6px 0 0 0 var(--hood), 6px 0 0 0 var(--hood);
}

/* ---------------- claim ---------------- */
.claim { margin-top: 40px; }
.claim-locked {
  text-align: center; font-size: 20px; color: var(--ink-soft);
  background: #fff; padding: 18px;
  box-shadow: 0 -3px 0 0 var(--line), 0 3px 0 0 var(--line), -3px 0 0 0 var(--line), 3px 0 0 0 var(--line);
}
.claim-locked .lock { margin-right: 6px; }
.claim-form { display: none; background: #fff; padding: 26px 24px; box-shadow: 0 -3px 0 0 var(--hood), 0 3px 0 0 var(--hood), -3px 0 0 0 var(--hood), 3px 0 0 0 var(--hood), 0 10px 0 0 var(--hood-glow); }
.claim.unlocked .claim-locked { display: none; }
.claim.unlocked .claim-form { display: block; animation: settle .5s steps(5) both; }
.claim-head {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px; color: var(--leaf); margin-bottom: 18px; text-align: center;
}
.claim-row { display: flex; gap: 12px; flex-wrap: wrap; }
.claim-row input {
  flex: 1; min-width: 200px;
  font-family: 'VT323', monospace; font-size: 22px;
  color: var(--ink);
  border: 0; outline: 0; padding: 13px 14px;
  background: var(--tint);
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
}
.claim-row input:focus { box-shadow: 0 -2px 0 0 var(--hood), 0 2px 0 0 var(--hood), -2px 0 0 0 var(--hood), 2px 0 0 0 var(--hood); }
.claim-row input#handle { flex: 0 1 190px; }
.btn--harvest { font-size: 12px; }
.claim-msg { margin-top: 12px; font-size: 19px; color: #c03a3a; text-align: center; min-height: 24px; }
.claim-msg.ok { color: var(--hood-d); }

.claim-done { display: none; }
.claim.claimed .claim-locked, .claim.claimed .claim-form { display: none; }
.claim.claimed .claim-done { display: block; animation: settle .5s steps(5) both; }
.plot-card {
  text-align: center; background: #fff;
  padding: 34px 24px;
  box-shadow: 0 -3px 0 0 var(--hood), 0 3px 0 0 var(--hood), -3px 0 0 0 var(--hood), 3px 0 0 0 var(--hood), 0 12px 0 0 var(--hood-glow);
}
.plot-no {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px; color: var(--ink-soft);
}
.plot-no b { font-size: 26px; color: var(--hood); display: block; margin-top: 10px; }
.plot-sub {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px; color: var(--olive); margin-top: 12px; letter-spacing: 1px;
}
.plot-card p { margin-top: 16px; font-size: 20px; color: var(--ink-soft); }

.ref-box {
  margin: 26px auto 0; max-width: 560px;
  background: var(--tint); padding: 18px;
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
  text-align: left;
}
.ref-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px; color: var(--leaf); letter-spacing: 1px;
  margin-bottom: 12px;
}
.ref-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ref-row input {
  flex: 1; min-width: 180px;
  font-family: 'VT323', monospace; font-size: 21px;
  color: var(--hood-d);
  border: 0; outline: 0; padding: 11px 12px;
  background: #fff;
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
}
.ref-hint { font-size: 17px; color: var(--olive); margin-top: 12px; }

/* ---------------- faq ---------------- */
.faqs { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
details {
  background: #fff;
  box-shadow: 0 -2px 0 0 var(--line), 0 2px 0 0 var(--line), -2px 0 0 0 var(--line), 2px 0 0 0 var(--line);
}
summary {
  cursor: pointer; list-style: none;
  font-size: 22px; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
summary::before { content: '▸'; color: var(--hood); font-size: 18px; transition: transform .1s steps(2); }
details[open] summary::before { transform: rotate(90deg); }
details p { padding: 0 20px 18px 44px; color: var(--ink-soft); font-size: 20px; }

/* ---------------- footer ---------------- */
.footer {
  text-align: center;
  background: linear-gradient(180deg, #eef7e8, #e2f1d9);
  padding: 60px 20px 46px;
  border-top: 2px solid var(--line);
}
.footer canvas { width: 140px; height: 44px; }
.foot-word {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px; color: var(--leaf); margin-top: 16px;
}
.foot-links { display: flex; gap: 26px; justify-content: center; margin: 22px 0 14px; }
.foot-links a {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px; color: var(--leaf); text-decoration: none;
}
.foot-links a:hover { color: var(--hood); }
.footer p { font-size: 18px; color: var(--ink-soft); }

/* ---------------- reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s steps(6), transform .5s steps(6); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 880px) {
  .grid3 { grid-template-columns: 1fr; }
  .grow-wrap { grid-template-columns: 1fr; }
  .pot-side { position: static; display: flex; flex-direction: column; align-items: center; }
  .pot-frame { width: min(320px, 100%); }
  .pot-meter { width: min(320px, 100%); }
  .chip { display: none; }
  .claim-row input#handle { flex: 1; }
}
@media (max-width: 480px) {
  body { font-size: 19px; }
  .btn--big { font-size: 11px; padding: 15px 16px; }
  .task { flex-wrap: wrap; }
  .t-body { flex: 1 1 calc(100% - 66px); }
  .btn--task { flex: 1 1 100%; padding: 15px 10px; }
  .gate-row input { min-width: 0; }
  .btn--harvest { flex: 1 1 100%; padding: 16px 10px; }
  .nav .btn--sm { padding: 12px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo, .wordmark, .tag, .ctas, .domain, .scroll-hint { opacity: 1; }
  html.ready .logo, html.ready .wordmark, html.ready .tag, html.ready .ctas,
  html.ready .domain, html.ready .scroll-hint { animation: none; }
  .ticker-track { animation-duration: 90s; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
