/* FormFill — site styles */

:root {
  --bg: #08090a;
  --bg-2: #0d0f10;
  --card: #101314;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #eceeed;
  --muted: #8b918e;
  --dim: #5b615f;
  --accent: #6ee7b7;
  --accent-dim: rgba(110, 231, 183, 0.14);
  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", "Fira Mono", ui-monospace, monospace;
  --maxw: 1180px;
  --r: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain + top glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: #05100b; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Grid/flex children must be allowed to shrink below their content width,
   otherwise nowrap text (mock URL, tables) pushes the page wider than the
   viewport on small screens. */
.hero-grid > *, .split > *, .nav-inner > *, .bento > *, .walk > *, .ref > *, .foot-inner > * { min-width: 0; }

.table-wrap, .mock, .walk-panel { max-width: 100%; }

/* ── Type ─────────────────────────────────────────── */

h1, h2, h3 { font-weight: 400; letter-spacing: -0.02em; line-height: 1.06; }

.display {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
}

.display em { font-style: italic; color: var(--accent); }

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.12;
  max-width: 20ch;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--line-strong);
}

.lede { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); max-width: 56ch; }

code, kbd, .mono { font-family: var(--mono); }

code {
  font-size: 0.86em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--accent);
}

kbd {
  font-size: 11px;
  background: #16191a;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  padding: 3px 8px;
  color: var(--text);
  white-space: nowrap;
}

/* ── Nav ──────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: 0.02em; }
.brand img { width: 24px; height: 24px; border-radius: 6px; }
.brand .wordmark { display: inline-block; }
.brand .wordmark span { color: var(--dim); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* ── Buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--text); color: #08090a; }
.btn-primary:hover { background: #fff; }

.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.04); }

.btn-sm { padding: 9px 16px; font-size: 12.5px; }

/* ── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 150px 0 60px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -420px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 780px;
  background: radial-gradient(ellipse at center, rgba(110, 231, 183, 0.10), transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero h1 { margin: 26px 0 22px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-note { margin-top: 18px; font-size: 12.5px; color: var(--dim); }

/* ── Mock browser (hero art) ──────────────────────── */

.mock {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, #101314, #0a0c0d);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #0d0f10;
}

.dot { width: 9px; height: 9px; border-radius: 50%; background: #23282a; }

.mock-url {
  margin-left: 10px;
  flex: 1;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--dim);
  background: #0a0c0d;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-body { position: relative; padding: 26px 24px 30px; min-height: 376px; }

.form-row { margin-bottom: 15px; max-width: 62%; }

.form-row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
}

.form-row .input {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 12.5px;
  color: var(--muted);
  background: #0b0d0e;
  font-family: var(--mono);
  min-height: 35px;
}

.form-row.filled .input {
  color: var(--text);
  border-color: rgba(110, 231, 183, 0.4);
  background: rgba(110, 231, 183, 0.05);
}

/* Empty slot waiting for a value */
.form-row .input[data-slot]:empty::before {
  content: "";
  display: block;
  height: 17px;
}

.form-row .input[data-slot] {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.13);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.form-row.is-over .input[data-slot] {
  border-style: solid;
  border-color: var(--accent);
  background: rgba(110, 231, 183, 0.07);
}

.form-row.is-filled .input[data-slot] {
  border-style: solid;
  color: var(--text);
  border-color: rgba(110, 231, 183, 0.4);
  background: rgba(110, 231, 183, 0.05);
  animation: pop 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pop {
  0%   { transform: scale(0.985); background: rgba(110, 231, 183, 0.16); }
  100% { transform: scale(1); }
}

/* Floating sidebar card */
.ff-panel {
  position: absolute;
  right: 18px;
  top: 26px;
  width: 190px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #0a0c0d;
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

.ff-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 11px;
  border-bottom: 1px solid var(--line);
  background: #101314;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ff-panel-head span:last-child { color: var(--dim); }

.ff-chips { padding: 9px; display: grid; gap: 6px; }

.chip {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 9px;
  background: #0e1112;
  cursor: grab;
  transition: border-color 0.2s, transform 0.2s, opacity 0.25s;
}

.chip:hover { border-color: var(--line-strong); transform: translateX(-2px); }
.chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.chip:active { cursor: grabbing; }
.chip.is-dragging { opacity: 0.45; }
.chip.is-used { opacity: 0.32; cursor: default; transform: none; }
.chip.is-used:hover { border-color: var(--line); transform: none; }

.chip b {
  display: block;
  font-size: 8.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
}

.chip i { font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--text); }

.ff-panel-foot { padding: 9px; border-top: 1px solid var(--line); }

.ff-fill-btn {
  width: 100%;
  text-align: center;
  background: var(--text);
  color: #08090a;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 7px;
  padding: 8px;
}

/* ── Hero demo furniture ─────────────────────────── */

.demo { position: relative; }

.demo-toast {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(6px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  border: 1px solid #262626;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 11.5px;
  color: var(--text);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.demo-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.demo-toast .dotmint { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.demo-toast .brandtag { color: #4a4a4a; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; }

.demo-hint {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 10px;
  color: var(--accent);
  font-size: 13px;
  transition: opacity 0.4s ease;
}

.demo-hint svg { flex-shrink: 0; }

}

.demo-hint.gone { opacity: 0; pointer-events: none; }

.hint-tap { display: none; }

@media (hover: none), (pointer: coarse) {
  .hint-drag { display: none; }
  .hint-tap { display: inline; }
  .chip { cursor: pointer; }
}

.demo-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--dim);
}

.demo-reset {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font: inherit;
  padding: 0 0 1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.demo-reset:hover { color: var(--text); border-color: var(--text); }

.visually-hidden-live {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Sections ─────────────────────────────────────── */

section { position: relative; }

.section { padding: 110px 0; }

.section-head { max-width: 760px; margin-bottom: 56px; display: grid; gap: 20px; }

.rule { height: 1px; background: var(--line); }

/* ── Bento feature grid ───────────────────────────── */

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.cell {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-2);
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.cell:hover { border-color: var(--line-strong); background: #101314; }

.cell-wide { grid-column: span 2; }

.cell-full { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cell-full .note { margin: 0; }

.cell h3 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.cell .note { color: var(--dim); font-size: 12.5px; line-height: 1.55; margin-top: auto; }

.cell-accent { border-color: rgba(110, 231, 183, 0.22); }

/* alias map */
.map { list-style: none; display: grid; gap: 8px; }

.map li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1.2fr);
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.map span {
  font-family: var(--mono);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map i { color: var(--accent); font-style: normal; text-align: center; opacity: 0.75; }
.map b { color: var(--text); font-weight: 400; }

/* field-type pills */
.pills { display: flex; flex-wrap: wrap; gap: 6px; }

.pills span {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
}

/* token demo */
.token { display: flex; align-items: center; gap: 12px; }
.token code { font-size: 14px; padding: 5px 10px; }
.token i { color: var(--accent); font-style: normal; }

.token b {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
}

/* learned answers */
.learn { display: grid; gap: 7px; }

.learn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
}

.learn-row em { font-style: normal; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); }
.learn-row.wrong s { color: var(--dim); }
.learn-row.right { border-color: rgba(110, 231, 183, 0.3); background: rgba(110, 231, 183, 0.04); }
.learn-row.right em { color: var(--accent); }

/* drag demo */
.dragdemo { display: grid; gap: 9px; }

.dragchip {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 7px 10px;
  background: #0e1112;
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cell:hover .dragchip { transform: translateX(16px); }

.dragchip b { display: block; font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); font-weight: 500; }
.dragchip i { font-style: normal; font-family: var(--mono); font-size: 12px; color: var(--text); }

.dragfield {
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  padding: 11px;
  font-size: 12px;
  color: var(--dim);
  text-align: center;
  transition: border-color 0.3s, color 0.3s;
}

.cell:hover .dragfield { border-color: var(--accent); color: var(--accent); }

/* keycaps */
.keys { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.keys span { font-size: 11px; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 10px 0 4px; }

/* Reference tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); }

table { width: 100%; border-collapse: collapse; min-width: 320px; }

th, td { text-align: left; padding: 14px 20px; border-bottom: 1px solid var(--line); font-size: 13.5px; }

th {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
}

tbody tr:last-child td { border-bottom: none; }

td:first-child { white-space: nowrap; }

td span.desc { color: var(--muted); }

/* ── Walkthrough tabs ─────────────────────────────── */

.walk { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }

.walk-nav { list-style: none; display: grid; gap: 4px; }

.walk-tab {
  width: 100%;
  text-align: left;
  background: none;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  font: inherit;
  font-size: 14.5px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 12px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.walk-tab span { font-family: var(--mono); font-size: 11px; color: var(--dim); transition: color 0.2s; }
.walk-tab:hover { color: var(--text); background: rgba(255, 255, 255, 0.03); }

.walk-tab[aria-selected="true"] {
  color: var(--text);
  background: var(--bg-2);
  border-color: var(--line);
}

.walk-tab[aria-selected="true"] span { color: var(--accent); }

.walk-panel img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  box-shadow: 0 30px 60px -34px rgba(0, 0, 0, 0.9);
}

.walk-panel--narrow img { max-width: 440px; }

.walk-panel p { color: var(--muted); font-size: 14.5px; margin-top: 16px; max-width: 60ch; }
.walk-panel em { color: var(--text); font-style: normal; }
.walk-panel + .walk-panel { margin-top: 34px; }
.walk-panel[hidden] + .walk-panel { margin-top: 0; }

.ref { display: grid; gap: 18px; margin-top: 64px; }

/* Split panel (privacy) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.privacy-list { display: grid; gap: 2px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }

.privacy-item {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-2);
  align-items: flex-start;
}

.privacy-item svg { flex-shrink: 0; margin-top: 3px; }

.privacy-item b { display: block; font-weight: 500; font-size: 14.5px; margin-bottom: 3px; }

.privacy-item p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }

details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 40px 24px 0;
  font-size: 1.06rem;
  position: relative;
  transition: color 0.2s;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dim);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.25s ease, color 0.2s;
}

details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }

summary:hover { color: var(--accent); }

details p { color: var(--muted); padding: 0 60px 26px 0; font-size: 15px; max-width: 74ch; }

/* CTA */
.cta {
  text-align: center;
  padding: 130px 0 120px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(110, 231, 183, 0.10), transparent 65%);
  pointer-events: none;
}

.cta .display { margin-bottom: 22px; }

.cta .lede { margin: 0 auto; }

.cta-buttons { display: flex; gap: 12px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 44px 0 60px; }

.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }

.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }

.foot-links a { font-size: 13.5px; color: var(--muted); transition: color 0.2s; }

.foot-links a:hover { color: var(--text); }

footer small { color: var(--dim); font-size: 12.5px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }

.reveal.in { opacity: 1; transform: none; }

/* Article page (privacy) */
.doc { padding: 130px 0 90px; max-width: 760px; }
.doc h1 { font-family: var(--serif); font-size: clamp(2.1rem, 4.4vw, 3rem); margin-bottom: 12px; }
.doc h2 { font-size: 1.25rem; font-weight: 500; margin: 44px 0 12px; letter-spacing: -0.015em; }
.doc p, .doc li { color: var(--muted); margin-bottom: 12px; }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 8px; }
.doc strong { color: var(--text); font-weight: 500; }
.doc .updated { color: var(--dim); font-size: 13px; margin-bottom: 30px; }

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell-wide { grid-column: span 2; }

.cell-full { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cell-full .note { margin: 0; }
  .walk { grid-template-columns: 1fr; gap: 24px; }
  .walk-nav { grid-template-columns: repeat(2, 1fr); }
  .ref { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 680px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 120px 0 70px; }
  .section { padding: 84px 0; }
  .bento { grid-template-columns: 1fr; }
  .cell-wide { grid-column: span 1; }
  .walk-nav { grid-template-columns: 1fr; }
  .form-row { max-width: 100%; }
  .ff-panel { position: relative; right: auto; top: auto; width: 100%; margin-top: 22px; }
  .mock-body { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
