@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("fonts/manrope-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "JetBrains Mono"; src: url("fonts/jetbrains-mono-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
  /* Cool graphite so the logo's navy plate reads as a deliberate badge.
     Lime is the interface accent; AWS orange appears only inside the logo. */
  --bg: #11151a;
  --surface: #181d22;
  --raised: #20262c;
  --ink: #f2f4ee;
  --muted: #a2aaa2;
  --faint: #737c74;
  --line: #2c343a;
  --line-strong: #4a555b;
  --accent: #c8f26d;
  --accent-hover: #d6f78f;
  --on-accent: #11151a;
  --user: #d8ff8b;
  --danger: #ff8a80;
  --warn: #f2d16b;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: 20px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
/* A faint static grid, like graph paper under a desk lamp. */
body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(242, 244, 238, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 238, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: -1px -1px;
}
button, input, textarea { font: inherit; color: inherit; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* The one recurring motion: a small lime block that blinks like a cursor. */
.block {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--accent);
  vertical-align: 1px;
  animation: blink 1.1s steps(1, end) infinite;
}

/* ---------- splash ---------- */
.splash {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 2;
  height: var(--app-h, 100dvh);
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: calc(24px + env(safe-area-inset-top)) var(--pad) calc(20px + env(safe-area-inset-bottom));
  overflow-y: auto;
  animation: fade 0.24s var(--ease) both;
  transition: opacity 0.18s var(--ease);
}
/* animation: none, or the entrance animation's fill would keep it visible. */
.splash.gone { animation: none; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.18s var(--ease), visibility 0s linear 0.18s; }

/* Official logo: the orange mark only, never recoloured. */
.logo { display: block; flex: none; width: 52px; height: 52px; }
.logo-sm { width: 32px; height: 32px; }
.logo-done { width: 40px; height: 40px; margin-bottom: 22px; }

.ident { display: flex; align-items: center; gap: 18px; }
.ident-title { margin-top: 4px; font-weight: 700; font-size: 17px; line-height: 1.3; letter-spacing: -0.01em; }
.status { margin-top: 8px; color: var(--accent); }

.headline {
  margin: 36px 0 0;
  font-size: 40px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 12ch;
}

.headline .hl { color: var(--accent); }


/* ---------- team cards ---------- */
.tracks { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
/* Each card: a full-bleed preview window on top, label and line below. */
.track {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(242, 244, 238, 0.04);
}
.track-body { display: flex; flex-direction: column; gap: 6px; padding: 12px 14px 14px; }
.track-name { font-family: var(--mono); font-weight: 500; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.track-desc { font-size: 14px; line-height: 1.4; color: var(--ink); }

.preview {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 76px;
  border-bottom: 1px solid var(--line);
  background: #0d1014;
  overflow: hidden;
}
.term { gap: 4px; padding: 0 14px; font-family: var(--mono); font-weight: 500; font-size: 11px; line-height: 1.3; color: var(--muted); white-space: nowrap; }
.term i { font-style: normal; color: var(--faint); }
.term b { font-weight: 500; color: var(--accent); }
.term .caret { display: inline-block; width: 6px; height: 11px; margin-left: 5px; background: var(--accent); vertical-align: -2px; animation: blink 1.1s steps(1, end) infinite; }

/* A camera viewfinder: four corner brackets drawn with gradients. */
.frame {
  align-items: center;
  --c: rgba(242, 244, 238, 0.35);
  background:
    linear-gradient(var(--c), var(--c)) 10px 10px / 12px 1px, linear-gradient(var(--c), var(--c)) 10px 10px / 1px 12px,
    linear-gradient(var(--c), var(--c)) right 10px top 10px / 12px 1px, linear-gradient(var(--c), var(--c)) right 10px top 10px / 1px 12px,
    linear-gradient(var(--c), var(--c)) left 10px bottom 10px / 12px 1px, linear-gradient(var(--c), var(--c)) left 10px bottom 10px / 1px 12px,
    linear-gradient(var(--c), var(--c)) right 10px bottom 10px / 12px 1px, linear-gradient(var(--c), var(--c)) right 10px bottom 10px / 1px 12px,
    #0d1014;
  background-repeat: no-repeat;
}
.rec { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 5px; font-family: var(--mono); font-weight: 500; font-size: 9px; letter-spacing: 0.08em; color: var(--muted); white-space: nowrap; }
.rec .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: blink 1.1s steps(1, end) infinite; }
.slate { margin-top: 12px; font-weight: 700; font-size: 14px; line-height: 1.05; letter-spacing: -0.01em; text-align: center; text-transform: uppercase; }

/* ---------- how it works ----------
   A vertical rail that draws in on load. After that, a lime signal runs
   down it every few seconds and lights each step as it passes. */
.steps { --cycle: 4s; --row: 40px; position: relative; margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; }
.steps::before, .steps::after { content: ""; position: absolute; left: 5px; width: 1px; }
/* The rail runs from the first node's centre (9.5px down) to the last one's. */
.steps::before { top: 9.5px; bottom: calc(var(--row) - 9.5px); background: var(--line-strong); transform-origin: top; animation: rail-in 0.7s var(--ease) 0.35s both; }
.steps::after { top: 9.5px; height: 26px; margin-top: -26px; background: linear-gradient(transparent, var(--accent)); opacity: 0; animation: signal var(--cycle) linear 1.4s infinite; }
.steps li { position: relative; display: grid; grid-template-columns: 11px 1fr; column-gap: 16px; min-width: 0; height: var(--row); animation: step-in 0.45s var(--ease) both; }
.steps li:nth-child(1) { animation-delay: 0.3s; }
.steps li:nth-child(2) { animation-delay: 0.5s; }
.steps li:nth-child(3) { animation-delay: 0.7s; }
.steps li > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.steps .node { position: relative; z-index: 1; width: 11px; height: 11px; margin-top: 4px; background: var(--bg); border: 1px solid var(--line-strong); }
.steps li:nth-child(2) .node { animation: hit-2 var(--cycle) linear 1.4s infinite; }
.steps li:nth-child(3) .node { animation: hit-3 var(--cycle) linear 1.4s infinite; }
.steps .now .node { background: var(--accent); border-color: var(--accent); animation: ping 2s ease-out 1s infinite; }
.steps b { font-size: 15px; font-weight: 700; line-height: 1.3; }
.steps li div > span { font-size: 13px; line-height: 1.35; color: var(--muted); }
.steps .wa { align-self: flex-start; font-size: 13px; line-height: 1.35; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.steps .wa:hover { color: var(--accent-hover); }

.stats { margin: 22px 0 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 8px; }
.stats[hidden] { display: none; }
.stats > div { display: flex; flex-direction: column-reverse; gap: 2px; padding-top: 10px; border-top: 1px solid var(--line); }
.stats dd { margin: 0; font-weight: 700; font-size: 24px; letter-spacing: -0.03em; }
.stats dt { font-family: var(--mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }

/* Logo builds in cell by cell on first load. */
.logo .cell { animation: cell-in 0.01s steps(1, end) both; }

.splash-foot { margin-top: auto; padding-top: 28px; }
.splash-actions { padding-top: 0; display: flex; flex-direction: column; gap: 6px; }
.fine { text-align: center; font-size: 13px; line-height: 1.4; color: var(--faint); padding-top: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: default; }
.btn.primary { width: 100%; border-color: var(--accent); background: var(--accent); color: var(--on-accent); }
.btn.primary:hover { background: var(--accent-hover); }
.btn.text { min-height: 44px; border: 0; background: none; color: var(--muted); font-weight: 600; font-size: 15px; }
.btn .arrow { font-family: var(--mono); font-weight: 500; }

/* ---------- chat shell ---------- */
.app {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1;
  height: var(--app-h, 100dvh);
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s var(--ease);
}
.app.on { opacity: 1; pointer-events: auto; }

.top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: calc(10px + env(safe-area-inset-top)) 16px 10px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.who { flex: 1; min-width: 0; }
.who-name { font-weight: 700; font-size: 15px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.who-sub { font-size: 12px; line-height: 1.3; color: var(--muted); }
.saved {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  transition: color 0.3s;
}
.saved .block { animation: none; background: var(--line-strong); transition: background 0.3s; }
.saved.on { color: var(--accent); }
.saved.on .block { background: var(--accent); }

.chat {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat > :first-child { margin-top: auto; }

/* ---------- messages ---------- */
.msg {
  max-width: 88%;
  padding: 11px 14px 12px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.msg.in { animation: arrive 0.16s var(--ease) both; }

.msg.bot {
  align-self: flex-start;
  background: var(--surface);
  border-top: 2px solid var(--line-strong);
}
/* Only the question waiting for an answer gets the lime edge. */
.msg.bot.current { border-top-color: var(--accent); background: var(--raised); }
.msg.bot .note { display: block; margin-top: 6px; font-size: 14px; line-height: 1.45; color: var(--muted); }
.msg.bot + .msg.me, .msg.me + .msg.bot { margin-top: 6px; }

.msg.me {
  align-self: flex-end;
  max-width: 84%;
  background: var(--user);
  color: var(--on-accent);
  font-weight: 500;
  white-space: pre-wrap;
}
.msg.me[data-step] { cursor: pointer; }
.msg.me[data-step]:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.msg.me.skipped { background: transparent; color: var(--muted); border: 1px dashed var(--line-strong); font-weight: 400; }
.msg.me.editing { outline: 2px solid var(--ink); outline-offset: 3px; }

.msg.typing { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); border-top-color: var(--line); }
.dots { display: inline-flex; gap: 4px; }
.dots i { width: 4px; height: 4px; background: var(--muted); animation: dot 0.9s infinite; }
.dots i:nth-child(2) { animation-delay: 0.12s; }
.dots i:nth-child(3) { animation-delay: 0.24s; }

.chapter {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 4px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 13px;
}
.chat > .chapter:first-child { margin-top: auto; }
.chapter .n { font-family: var(--mono); font-weight: 500; font-size: 11px; color: var(--accent); }
.chapter.in { animation: arrive 0.16s var(--ease) both; }

/* ---------- review ---------- */
.summary { margin: 0; }
.summary > div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 10px 0; border-top: 1px solid var(--line); }
.summary > div:first-child { border-top: 0; padding-top: 2px; }
.summary dt { font-family: var(--mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.summary dd { margin: 0; font-weight: 600; font-size: 15px; overflow-wrap: anywhere; }
.msg.summary-card { max-width: 100%; width: 100%; }
.tip { align-self: center; margin: 6px 0 2px; font-size: 13px; color: var(--faint); }

/* ---------- composer ---------- */
.composer {
  padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.composer:has(#composer:empty) { display: none; }

.hint { font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--danger); padding: 0 4px; }
.hint:not(:empty) { padding-bottom: 9px; }
.hint.soft { color: var(--warn); }

.editbar { display: flex; align-items: center; justify-content: space-between; padding: 0 4px 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.editbar button { min-height: 36px; padding: 0 6px; border: 0; background: none; color: var(--accent); font-family: var(--sans); font-weight: 700; font-size: 14px; letter-spacing: 0; text-transform: none; cursor: pointer; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 8px; }
.chips:last-child { padding-bottom: 0; }
.chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}
.chip:hover { border-color: var(--muted); }
.chip:active { transform: translateY(1px); }
.chip.picked { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.chip.ghost { background: transparent; border-style: dashed; color: var(--muted); }

.cards { display: grid; gap: 8px; }
.card {
  display: block;
  width: 100%;
  padding: 14px 16px 15px;
  text-align: left;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
}
.card:hover { border-color: var(--muted); }
.card:active { transform: translateY(1px); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-title { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.card-desc { display: block; margin-top: 4px; font-size: 14px; line-height: 1.4; color: var(--muted); }
.radio { width: 20px; height: 20px; flex: none; border-radius: 50%; border: 1.5px solid var(--line-strong); }
.card.picked { border-color: var(--accent); background: var(--raised); }
.card.picked .radio { border-color: var(--accent); background: radial-gradient(circle, var(--accent) 0 5px, transparent 5.5px); }

.row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  min-height: 52px;
  padding: 4px 4px 4px 14px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  transition: border-color 0.12s;
}
.row:focus-within { border-color: var(--accent); }
.field {
  flex: 1;
  min-width: 0;
  padding: 10px 0;
  border: 0;
  background: transparent;
  font-size: 16px; /* 16px stops iOS zooming in */
  line-height: 1.4;
  outline: none;
  resize: none;
  max-height: 132px;
}
.field::placeholder { color: var(--faint); }
.field:focus-visible { outline: none; }
.send {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 0;
  background: var(--accent);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.12s;
}
.send svg { width: 20px; height: 20px; stroke: var(--on-accent); stroke-width: 2.2; fill: none; stroke-linecap: square; }
.send:active { transform: translateY(1px); }
.send.idle { opacity: 0.4; }

.meta { display: flex; justify-content: space-between; gap: 10px; padding: 7px 4px 0; font-size: 12px; color: var(--faint); }
.meta .n { font-family: var(--mono); flex: none; }

/* ---------- sent ---------- */
.done-layer {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 3;
  height: var(--app-h, 100dvh);
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: calc(24px + env(safe-area-inset-top)) var(--pad) calc(20px + env(safe-area-inset-bottom));
  overflow-y: auto;
  background: var(--bg);
  animation: fade 0.24s var(--ease) both;
}
.done-layer[hidden] { display: none; }
.done-layer .status { margin-top: 0; }
.done-layer .logo-done + .status { margin-top: 0; }
.done-layer .headline { margin-top: 20px; font-size: 40px; max-width: none; }
.done-note { margin-top: 12px; font-size: 15px; font-weight: 600; line-height: 1.4; }
.receipt { margin: 28px 0 0; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--surface); padding: 4px 16px; }
.receipt > div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--line); }
.receipt > div:first-child { border-top: 0; }
.receipt dt { font-family: var(--mono); font-weight: 500; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.receipt dd { margin: 0; font-weight: 600; font-size: 15px; overflow-wrap: anywhere; }
.idbox { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 14px 14px 16px; border-radius: 8px; border-left: 3px solid var(--accent); background: var(--raised); color: var(--ink); }
.idbox .mono { font-size: 10.5px; color: var(--faint); }
.idbox .id { display: block; margin-top: 4px; font-family: var(--mono); font-weight: 500; font-size: 24px; letter-spacing: 0.06em; }
.idbox button { min-height: 44px; padding: 0 14px; border-radius: 6px; border: 1px solid var(--accent); background: transparent; color: var(--accent); font-weight: 700; font-size: 14px; cursor: pointer; }
.done-next { margin-top: 22px; font-size: 15px; line-height: 1.55; color: var(--muted); max-width: 40ch; }
.done-next a { color: var(--accent); text-underline-offset: 3px; }
.done-actions { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 6px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.noscript { position: relative; z-index: 5; padding: 24px; text-align: center; }

@media (max-width: 370px) {
  .headline { font-size: 38px; }
  .track-body { padding: 10px 12px 12px; }
}
@media (max-height: 700px) {
  .headline { margin-top: 22px; font-size: 34px; }
  .preview { display: none; }
  .tracks { margin-top: 20px; }
  .steps { margin-bottom: 16px; gap: 10px; }
  .splash-foot { padding-top: 20px; }
}

/* Tall screens: keep content and button together, centred, instead of a big gap. */
@media (min-height: 900px) {
  .splash-main { margin-top: auto; }
  .splash-foot { margin-top: 64px; margin-bottom: auto; }
}

/* Small phones (e.g. iPhone SE): keep the start button on screen. */
@media (max-height: 620px) {
  .splash { padding-top: calc(16px + env(safe-area-inset-top)); }
  .logo { width: 42px; height: 42px; }
  .ident { gap: 14px; }
  .ident-title { font-size: 15px; }
  .headline { margin-top: 18px; font-size: 30px; }
  .preview { display: none; }
  .tracks { margin-top: 14px; }
  .steps { --row: 20px; margin-bottom: 12px; gap: 8px; }
  .steps li div { flex-direction: row; align-items: baseline; gap: 8px; }
  .steps b { white-space: nowrap; }
  .steps li div > span { display: none; }
}

/* ---------- motion ---------- */
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes arrive { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes blink { 50% { opacity: 0; } }
@keyframes line-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes cell-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0% { stroke-dashoffset: 12; } 70%, 100% { stroke-dashoffset: -100; } }
@keyframes rail-in { from { transform: scaleY(0); } to { transform: none; } }
@keyframes step-in { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(200, 242, 109, 0.5); } 70%, 100% { box-shadow: 0 0 0 7px rgba(200, 242, 109, 0); } }
/* The signal travels the rail in the first 60% of each cycle; steps 2 and 3 light as it reaches them. */
@keyframes signal { 0% { top: 9.5px; opacity: 0; } 8% { opacity: 1; } 60% { top: calc(100% - var(--row) + 9.5px); opacity: 1; } 72%, 100% { top: calc(100% - var(--row) + 9.5px); opacity: 0; } }
@keyframes hit-2 { 0%, 26% { border-color: var(--line-strong); background: var(--bg); } 31% { border-color: var(--accent); background: rgba(200, 242, 109, 0.35); } 48%, 100% { border-color: var(--line-strong); background: var(--bg); } }
@keyframes hit-3 { 0%, 56% { border-color: var(--line-strong); background: var(--bg); } 61% { border-color: var(--accent); background: rgba(200, 242, 109, 0.35); } 80%, 100% { border-color: var(--line-strong); background: var(--bg); } }
@keyframes dot { 0%, 100% { opacity: 0.3; } 40% { opacity: 1; } }

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