/* ============================================================
   ggufit — Maison Graciet "L'Atelier"
   Tokens and components lifted from the mouad workspace app so the two
   properties read as one house. Deep-pine ink, warm paper canvas,
   rose to magenta to green gradient, pixel-dot motif.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Figtree:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

/*
 * The browser hides [hidden] with a UA rule of `display: none`, and a UA rule
 * loses to any author rule that sets `display`. So a component styled
 * `display: flex` ignores `hidden` entirely, and the JS that sets it silently
 * does nothing.
 *
 * That is what put an empty green box under every picker field: picker.js
 * creates the "chosen" panel with `chosen.hidden = true`, and
 * `.picker-chosen { display: flex }` overrode it, so the panel rendered before
 * anything had been chosen and came straight back after Modifier re-rendered
 * the step.
 *
 * !important is deliberate here rather than lazy: this rule has to beat every
 * component rule in the file, including ones not yet written, because the
 * failure is silent and looks like a JS bug rather than a CSS one.
 */
[hidden] { display: none !important; }

:root {
  /* Ink (hero ground) */
  --ink: #0C1D13;
  --ink-2: #122619;
  --ink-3: #1A3322;
  --ink-line: rgba(235, 244, 233, 0.09);
  --ink-text: #E9F1E6;
  --ink-muted: #8FA695;

  /* Canvas */
  --paper: #F2F1EA;
  --card: #FFFFFF;
  --card-2: #FAF9F4;
  --sunken: #ECEBE2;
  --line: #E2E0D4;
  --line-strong: #D0CEBF;

  --green: #44AF2B;
  --green-deep: #2F7D1B;
  --green-bright: #62C83E;

  --pink: #E84A9B;
  --pink-deep: #C22B7E;
  --rose: #FF5E79;
  --magenta: #D6198A;

  --coral: #F2503E;
  --amber: #ED8B00;
  --danger: #D32F2F;

  --text: #1A2B20;
  --text-soft: #3D5245;
  --muted: #6D7A6E;
  --faint: #9AA396;

  --grad-brand: linear-gradient(120deg, #FF5E79 0%, #D6198A 46%, #44AF2B 100%);
  --grad-green: linear-gradient(135deg, #62C83E 0%, #379422 100%);
  --grad-pink: linear-gradient(135deg, #FF5E79 0%, #C22B7E 100%);

  --r-xs: 6px;
  --r-sm: 9px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(20, 34, 24, 0.05);
  --shadow-sm: 0 1px 3px rgba(20, 34, 24, 0.07), 0 1px 2px rgba(20, 34, 24, 0.04);
  --shadow-md: 0 10px 28px -12px rgba(20, 34, 24, 0.22);
  --shadow-lg: 0 24px 56px -20px rgba(12, 29, 19, 0.35);

  --font-display: 'Bricolage Grotesque', 'Figtree', system-ui, sans-serif;
  --font-ui: 'Figtree', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.18s;

  color-scheme: light;
}

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

body {
  font-family: var(--font-ui);
  color: var(--text);
  background-color: var(--paper);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 { font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.05rem); }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.08rem; }

a { color: inherit; }
::selection { background: rgba(214, 25, 138, 0.16); color: var(--text); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }

* { scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: var(--line-strong); border-radius: var(--r-pill);
  border: 3px solid transparent; background-clip: content-box;
}

/* ---------- Motion ---------- */
@keyframes mg-fade-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mg-pop { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
@keyframes mg-slide-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mg-spin { to { transform: rotate(360deg); } }

/* ============================================================
   LOADING
   ============================================================ */
.loading-screen {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}
.loading-screen::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 3px solid var(--line-strong);
  border-top-color: var(--pink);
  animation: mg-spin 0.8s linear infinite;
}

/* Inline spinner for buttons doing work. */
.btn-spin::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  animation: mg-spin 0.8s linear infinite;
}

/* Splash overlay, driven by splash.js. */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 120% at 50% 0%, #1c1c22, #0b0b0e);
  transition: opacity 500ms ease;
}
#splash.is-fading { opacity: 0; pointer-events: none; }
#splash-stage {
  position: relative; display: flex; flex-direction: column;
  align-items: center; gap: 12px; overflow: visible;
}
#splash-glow {
  position: absolute; top: 50%; left: 50%; width: 280px; height: 280px;
  transform: translate(-50%, -50%) scale(0.4); border-radius: 50%;
  filter: blur(6px); opacity: 0; pointer-events: none;
}
#splash-mark, #splash-canvas { width: 230px; height: auto; opacity: 0; }
#splash-word { width: 200px; height: auto; opacity: 0; }
#splash-cap {
  position: absolute; left: 0; right: 0; bottom: -34px; text-align: center;
  font-size: 11px; letter-spacing: 0.22em; font-weight: 600; color: #8f8f97; opacity: 0;
}

/* ============================================================
   SHELL
   ============================================================ */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--ink-line);
  padding: 0.85rem 1.5rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.topbar img { height: 26px; width: auto; }
.topbar-sep { width: 1px; height: 20px; background: var(--ink-line); }
.topbar-product {
  font-family: var(--font-display); font-weight: 700;
  color: var(--ink-text); font-size: 1rem; letter-spacing: -0.01em;
}
.topbar-tag { color: var(--ink-muted); font-size: 0.82rem; font-weight: 500; }

.canvas { max-width: 900px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }
.screen { animation: mg-fade-up 0.35s var(--ease) both; }

.canvas-eyebrow {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--pink-deep); margin-bottom: 0.35rem;
}
.canvas-sub { color: var(--muted); font-weight: 500; margin-top: 0.5rem; max-width: 62ch; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink); color: var(--ink-text);
  border-radius: var(--r-lg); padding: 2.4rem 2rem;
  position: relative; overflow: hidden; margin-bottom: 1.75rem;
}
.hero::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: var(--grad-brand); opacity: 0.16; filter: blur(30px);
}
.hero h1 { color: var(--ink-text); position: relative; }
.hero p { color: var(--ink-muted); margin-top: 0.7rem; max-width: 56ch; position: relative; }
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--green-bright); margin-bottom: 0.5rem;
}

/* ============================================================
   PANELS
   ============================================================ */
.panel {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.75rem; box-shadow: var(--shadow-xs);
}
.panel + .panel { margin-top: 1.25rem; }
.panel > h2 {
  font-size: 1.15rem; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.panel > h2::before {
  content: ''; width: 10px; height: 10px; border-radius: 3px;
  background: var(--grad-brand); flex-shrink: 0;
}

/* ============================================================
   PATH CARDS
   ============================================================ */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.path {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-xs); display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.path:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.path h2 { display: flex; align-items: center; gap: 0.55rem; }
.path h2::before {
  content: ''; width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0;
}
.path.is-form h2::before { background: var(--grad-green); }
.path.is-scan h2::before { background: var(--grad-pink); }
.path-sub {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; margin: 0.4rem 0 0.9rem;
}
.path.is-form .path-sub { color: var(--green-deep); }
.path.is-scan .path-sub { color: var(--pink-deep); }
.path p { color: var(--text-soft); font-size: 0.94rem; }
.path ul { list-style: none; margin: 1rem 0 1.4rem; font-size: 0.89rem; color: var(--muted); }
.path li { padding-left: 1.15rem; position: relative; margin-bottom: 0.45rem; }
.path li::before {
  content: ''; position: absolute; left: 0; top: 0.52em;
  width: 6px; height: 6px; border-radius: 2px; background: var(--line-strong);
}
.path li strong { color: var(--text); font-weight: 700; }
.path .btn-primary, .path .btn-secondary { margin-top: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary, .btn-secondary, .btn-danger {
  padding: 0.72rem 1.4rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.88rem; font-family: inherit;
  cursor: pointer; border: none; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.45rem; line-height: 1.2;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              filter var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn-primary {
  background: var(--grad-green); color: #fff;
  box-shadow: 0 8px 18px -8px rgba(47, 125, 27, 0.5);
}
.btn-primary:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.05); }
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.55; cursor: default; box-shadow: none; }

.btn-pink {
  background: var(--grad-pink); color: #fff;
  box-shadow: 0 8px 18px -8px rgba(194, 43, 126, 0.5);
}
.btn-pink:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.05); }

.btn-secondary {
  background: var(--card); color: var(--text); border: 1.5px solid var(--line-strong);
}
.btn-secondary:hover:not(:disabled) { border-color: var(--green); color: var(--green-deep); }

.btn-ghost {
  background: transparent; color: var(--muted); border: none;
  font-weight: 700; font-size: 0.86rem; font-family: inherit; cursor: pointer;
  padding: 0.72rem 0.9rem; border-radius: var(--r-sm);
}
.btn-ghost:hover { color: var(--pink-deep); }

.actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.75rem; }

.back-link {
  display: inline-flex; align-items: center; gap: 0.35rem; margin-bottom: 1.2rem;
  color: var(--text-soft); text-decoration: none; font-weight: 700;
  font-size: 0.88rem; background: none; border: none; cursor: pointer;
  font-family: inherit; padding: 0;
  transition: color var(--dur) var(--ease);
}
.back-link:hover { color: var(--pink-deep); }

/* ============================================================
   PROGRESS
   ============================================================ */
.steps { display: flex; gap: 0.4rem; margin-bottom: 1.6rem; }
.step {
  flex: 1; height: 4px; border-radius: var(--r-pill); background: var(--sunken);
  position: relative; overflow: hidden;
}
.step.is-done::after, .step.is-active::after {
  content: ''; position: absolute; inset: 0; background: var(--grad-brand);
  animation: mg-slide-in 0.4s var(--ease) both;
}
.step.is-active::after { opacity: 0.55; }

/* ============================================================
   QUESTIONS
   ============================================================ */
.q { border-top: 1px solid var(--line); padding: 1.35rem 0; }
.q:first-child { border-top: none; padding-top: 0.3rem; }
.q.invalid { border-left: 3px solid var(--coral); padding-left: 0.9rem; }
.q-label { display: block; font-weight: 700; margin-bottom: 0.3rem; font-size: 0.98rem; }
.req { color: var(--coral); }
.q-help { color: var(--muted); font-size: 0.87rem; margin-bottom: 0.85rem; max-width: 60ch; }

.choices { display: flex; flex-direction: column; gap: 0.45rem; }
.choice {
  display: flex; align-items: center; gap: 0.65rem;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 0.65rem 0.9rem; cursor: pointer; background: var(--card);
  font-size: 0.92rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.choice:hover { border-color: var(--green); background: var(--card-2); }
.choice input { accent-color: var(--green); margin: 0; }
.choice:has(input:checked) { border-color: var(--green); background: rgba(68, 175, 43, 0.06); }

.text-input {
  width: 100%; max-width: 340px;
  padding: 0.68rem 0.85rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  font-size: 0.94rem; font-family: inherit;
  background: var(--card); color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.text-input:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(68, 175, 43, 0.15);
}

/* ============================================================
   PICKER (searchable combobox)
   ============================================================ */
.picker { position: relative; max-width: 420px; }
.picker-input { width: 100%; max-width: 420px; }

.picker-list {
  position: absolute; z-index: 20; left: 0; right: 0; top: calc(100% + 4px);
  list-style: none; margin: 0; padding: 4px;
  background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); box-shadow: var(--shadow-md);
  max-height: 264px; overflow-y: auto;
}
.picker-option {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem;
  padding: 0.5rem 0.7rem; border-radius: var(--r-xs); cursor: pointer;
  font-size: 0.9rem;
}
.picker-option:hover, .picker-option.is-active { background: var(--sunken); }
.picker-meta { color: var(--muted); font-size: 0.76rem; white-space: nowrap; }
.picker-freetext { color: var(--pink-deep); font-weight: 600; }

.picker-chosen {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  border: 1.5px solid var(--green); background: rgba(68, 175, 43, 0.06);
  border-radius: var(--r-sm); padding: 0.6rem 0.75rem 0.6rem 0.9rem;
  max-width: 420px;
}
.picker-chosen-name { font-weight: 600; font-size: 0.93rem; }
.picker-clear {
  background: none; border: none; color: var(--pink-deep); cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 0.8rem; padding: 0.2rem 0.4rem;
}
.picker-clear:hover { text-decoration: underline; }

/* ============================================================
   SYSTEM IMPORT
   ============================================================ */
.import-box {
  background: var(--card-2); border: 1px solid var(--line);
  border-left: 3px solid var(--green); border-radius: var(--r-md);
  padding: 1.25rem 1.4rem; margin-bottom: 1.5rem;
}
.import-box h3 { margin-bottom: 0.4rem; }
.import-box p { color: var(--muted); font-size: 0.88rem; max-width: 62ch; }
.import-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; margin-top: 0.8rem; }

/* The OS must be chosen BEFORE the command is shown, otherwise we hand a
   Windows command to a Mac user, which is exactly what happened. */
.os-choice { display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap; margin: 0.9rem 0 0.2rem; }
.os-choice-label { color: var(--muted); font-size: 0.84rem; font-weight: 600; margin-right: 0.2rem; }
.os-btn {
  background: var(--card); border: 1.5px solid var(--line-strong); color: var(--text);
  border-radius: var(--r-pill); padding: 0.38rem 1rem;
  font-family: inherit; font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.os-btn:hover { border-color: var(--green); color: var(--green-deep); }
.os-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--ink-text); }
.import-paste {
  width: 100%; min-height: 90px; margin-top: 0.7rem;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 0.6rem 0.75rem; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem; background: var(--card); color: var(--text); resize: vertical;
}
.import-paste:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(68,175,43,0.15); }

.import-result { margin-top: 0.9rem; font-size: 0.88rem; }
.import-ok { color: var(--green-deep); font-weight: 700; }
.import-err { color: var(--danger); font-weight: 600; }
.import-notes { list-style: disc; padding-left: 1.2rem; margin-top: 0.6rem; color: var(--muted); font-size: 0.84rem; }
.import-notes li { margin-bottom: 0.35rem; }

.unverified {
  display: inline-block; margin-top: 0.5rem;
  background: rgba(237, 139, 0, 0.12); color: var(--warn, #8a5a1a);
  border-radius: var(--r-xs); padding: 0.25rem 0.6rem;
  font-size: 0.76rem; font-weight: 700;
}

details.cmd { margin-top: 0.85rem; }
details.cmd summary {
  cursor: pointer; color: var(--pink-deep); font-size: 0.86rem; font-weight: 700;
  list-style: none; display: inline-flex; align-items: center; gap: 0.4rem;
}
details.cmd summary::-webkit-details-marker { display: none; }
details.cmd summary::before { content: '+'; font-weight: 800; }
details.cmd[open] summary::before { content: '\2212'; }
.cmd-body { padding-top: 0.6rem; }
.cmd-note { color: var(--muted); font-size: 0.82rem; margin-bottom: 0.5rem; max-width: 60ch; }

pre, .cmd-block {
  background: var(--ink); color: var(--ink-text);
  border-radius: var(--r-sm); padding: 0.8rem 0.95rem;
  font: 0.8rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-x: auto; margin: 0.6rem 0;
}
code {
  font: 0.85em ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--sunken); padding: 0.1em 0.4em; border-radius: var(--r-xs);
}
.copy {
  background: var(--card); border: 1.5px solid var(--line-strong); color: var(--text);
  border-radius: var(--r-xs); padding: 0.35rem 0.8rem; font-size: 0.8rem;
  font-weight: 700; cursor: pointer; font-family: inherit;
}
.copy:hover { border-color: var(--green); color: var(--green-deep); }

/* ============================================================
   SUMMARY / RECEIPT
   ============================================================ */
.receipt-id {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sunken); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 0.35rem 0.9rem;
  font: 700 0.82rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--text-soft);
}
.receipt-id::before {
  content: ''; width: 8px; height: 8px; border-radius: 2px; background: var(--grad-green);
}

.answers { display: grid; gap: 0; }
.answer-row {
  display: grid; grid-template-columns: minmax(170px, 240px) 1fr;
  gap: 1rem; padding: 0.62rem 0; border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.answer-row:first-child { border-top: none; }
.answer-k { color: var(--muted); }
.answer-v { font-weight: 600; }
.answer-v.is-empty { color: var(--faint); font-weight: 400; font-style: italic; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.1rem; }
.fact-k { color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.fact-v {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 700; letter-spacing: -0.02em; margin: 0.1rem 0;
}
.fact-n { color: var(--faint); font-size: 0.76rem; }

.notice {
  border-left: 3px solid var(--amber);
  background: rgba(237, 139, 0, 0.06);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 0.85rem 1.1rem; font-size: 0.88rem; color: var(--text-soft);
  margin: 1.1rem 0;
}
.notice strong { color: var(--text); }

.next-steps { counter-reset: step; list-style: none; }
.next-steps li {
  counter-increment: step; position: relative;
  padding-left: 2.4rem; margin-bottom: 0.95rem; font-size: 0.92rem; color: var(--text-soft);
}
.next-steps li::before {
  content: counter(step); position: absolute; left: 0; top: -0.1rem;
  width: 1.65rem; height: 1.65rem; border-radius: var(--r-xs);
  background: var(--ink); color: var(--ink-text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.78rem;
}
.next-steps li strong { color: var(--text); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  background: var(--ink); color: var(--ink-text);
  border-radius: var(--r-lg); padding: 1.75rem 1.9rem;
  position: relative; overflow: hidden;
}
.contact-card::after {
  content: ''; position: absolute; left: -30px; bottom: -50px;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--grad-pink); opacity: 0.18; filter: blur(28px);
}
.contact-card h3 { color: var(--ink-text); margin-bottom: 1rem; position: relative; }
.contact-list { display: grid; gap: 0.75rem; position: relative; }
.contact-row { display: flex; align-items: baseline; gap: 0.8rem; font-size: 0.94rem; }
.contact-label {
  color: var(--ink-muted); font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; min-width: 5.5rem;
}
.contact-row a { color: var(--green-bright); font-weight: 700; text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }

footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 1.5rem; color: var(--muted); font-size: 0.82rem;
}
footer > div { max-width: 900px; margin: 0 auto; }

@media (max-width: 760px) {
  .paths { grid-template-columns: 1fr; }
  .answer-row { grid-template-columns: 1fr; gap: 0.1rem; }
  .canvas { padding: 1.75rem 1.15rem 4rem; }
  .hero { padding: 1.8rem 1.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
