/* ============================================================
   Lun — landing page
   Pure black & white · monospace · terminal / source-code vibe
   ============================================================ */

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --panel: #0e0e0e;
  --panel-2: #141414;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --white: #ffffff;
  --fg: #ededed;
  --fg-dim: #9a9a9a;
  --fg-mute: #5c5c5c;
  --fg-faint: #3a3a3a;

  /* agent accents — kept grayscale-friendly, low saturation */
  --kiro: #b9a7ff;
  --claude: #f6b35c;
  --copilot: #74e39b;
  --agy: #7db8ff;
  --codex: #ff8a9c;
  --cline: #f5d264;

  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "Space Grotesk", system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle scanline / grid atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
}

a { color: inherit; text-decoration: none; }
code { font-family: var(--mono); }

::selection { background: var(--white); color: var(--black); }

/* ───────────────────────── NAV ───────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav__brand { display: flex; align-items: baseline; gap: 8px; }
.nav__logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--white);
}
.nav__kanji { color: var(--fg-mute); font-size: 14px; }

.nav__links { display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); }
.nav__link {
  font-size: 13px;
  color: var(--fg-dim);
  transition: color 0.16s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link--ext { color: var(--fg); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--fg-mute);
  font-family: var(--mono);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.16s ease;
}
.lang-toggle:hover { border-color: var(--fg-mute); }
.lang-toggle__opt.is-active { color: var(--white); font-weight: 700; }
.lang-toggle__sep { color: var(--fg-faint); }

@media (max-width: 720px) {
  .nav__link:not(.nav__link--ext) { display: none; }
}

/* ───────────────────────── HERO ───────────────────────── */
.hero { position: relative; z-index: 1; padding: clamp(48px, 9vw, 110px) var(--pad) clamp(40px, 7vw, 80px); }
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-dim);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 5px 13px;
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--copilot);
  box-shadow: 0 0 8px var(--copilot);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:.45} 50%{opacity:1} }

.hero__ascii {
  font-family: var(--mono);
  color: var(--white);
  font-size: clamp(9px, 1.6vw, 13px);
  line-height: 1.25;
  margin-bottom: 22px;
  opacity: 0.92;
}

.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title-accent {
  color: var(--fg-mute);
}

.hero__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.6;
  color: var(--fg-dim);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 24px; }

.hero__meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 12px; color: var(--fg-mute);
}
.hero__meta-dot { color: var(--fg-faint); }

/* copybox */
.copybox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 7px;
  padding: 11px 11px 11px 15px;
  transition: border-color 0.16s ease;
}
.copybox:hover { border-color: var(--fg-mute); }
.copybox__prompt { color: var(--copilot); font-weight: 700; }
.copybox__cmd { color: var(--white); font-size: 14px; white-space: nowrap; }
.copybox__btn {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-dim);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  padding: 5px 9px;
  cursor: pointer;
  transition: all 0.16s ease;
}
.copybox__btn:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.copybox--lg { padding: 15px 15px 15px 20px; margin: 8px auto 28px; }
.copybox--lg .copybox__cmd { font-size: 16px; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 13px;
  padding: 11px 17px; border-radius: 7px;
  border: 1px solid var(--line-2);
  transition: all 0.16s ease;
  cursor: pointer;
}
.btn--ghost { color: var(--fg); }
.btn--ghost:hover { border-color: var(--white); color: var(--white); }
.btn--solid { background: var(--white); color: var(--black); border-color: var(--white); font-weight: 700; }
.btn--solid:hover { background: transparent; color: var(--white); }

/* ───────────────────────── TERMINAL ───────────────────────── */
.term {
  background: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
.term__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.term__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.term__dot:nth-child(1) { background: #3a2a2a; }
.term__dot:nth-child(2) { background: #3a342a; }
.term__dot:nth-child(3) { background: #2a3a2e; }
.term__title { margin-left: auto; font-size: 11px; color: var(--fg-mute); }

.term__body { padding: 18px 18px 20px; font-size: 13px; min-height: 320px; }
.term__line { margin-bottom: 8px; color: var(--fg); }
.term__prompt { color: var(--copilot); font-weight: 700; }
.term__str { color: var(--claude); }
.term__sys { color: var(--fg-mute); font-style: italic; margin-bottom: 16px; }

.term__resp {
  border-left: 2px solid var(--line-2);
  padding: 2px 0 2px 13px;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(6px);
  animation: respIn 0.45s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes respIn { to { opacity: 1; transform: translateY(0); } }
.term__resp-head { display: flex; align-items: center; gap: 9px; margin-bottom: 4px; }
.term__resp-meta { font-size: 11px; color: var(--fg-mute); }
.term__resp-body { color: var(--fg-dim); line-height: 1.55; font-size: 12.5px; }

.term__done {
  color: var(--copilot);
  font-size: 12px;
  margin-top: 4px;
  opacity: 0;
  animation: respIn 0.45s ease forwards;
  animation-delay: var(--d, 0s);
}
.term__check { font-weight: 700; }

/* agent tags */
.tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid currentColor;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.tag--kiro { color: var(--kiro); }
.tag--claude { color: var(--claude); }
.tag--copilot { color: var(--copilot); }
.tag--agy { color: var(--agy); }
.tag--codex { color: var(--codex); }
.tag--cline { color: var(--cline); }

/* ───────────────────────── SECTIONS ───────────────────────── */
.section {
  position: relative; z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) var(--pad);
  border-top: 1px solid var(--line);
}
.section--alt { background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent); }

.section__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 28px; }
.section__num {
  font-size: 13px; color: var(--fg-faint); font-weight: 700;
  border: 1px solid var(--line-2); border-radius: 5px;
  padding: 2px 8px;
}
.section__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 38px);
  letter-spacing: -0.03em;
  color: var(--white);
}

.prose p, .section__lead, .section__foot {
  font-family: var(--sans);
  color: var(--fg-dim);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  max-width: 68ch;
}
.prose p { margin-bottom: 16px; }
.prose strong, .section__lead strong { color: var(--white); font-weight: 700; }
.section__lead { margin-bottom: 32px; }
.section__foot { margin-top: 28px; color: var(--fg-mute); }
.section__lead code, .section__foot code, .prose code {
  font-size: 0.9em; color: var(--white);
  background: var(--panel-2); border: 1px solid var(--line);
  padding: 1px 6px; border-radius: 4px;
}

/* ───────────────────────── WHY ───────────────────────── */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .why { grid-template-columns: 1fr; } }
.why__card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 24px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.why__card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.why__op {
  font-size: 34px; font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; margin-bottom: 10px;
}
.why__txt { font-family: var(--sans); color: var(--fg-dim); font-size: 14px; line-height: 1.5; }

/* ───────────────────────── HOW IT WORKS / FLOW ───────────────────────── */
.flow {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.flow__stage {
  flex: 1 1 150px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
  padding-top: 10px;
}
.flow__stage--wide { flex: 1.4 1 200px; }
.flow__step {
  font-size: 11px; color: var(--fg-faint); font-weight: 700;
  letter-spacing: 0.1em;
}
.flow__arrow {
  align-self: center;
  color: var(--fg-faint);
  font-size: 22px;
  flex: 0 0 auto;
  animation: arrowPulse 2.6s ease-in-out infinite;
}
@keyframes arrowPulse { 0%,100%{opacity:.3;transform:translateX(0)} 50%{opacity:1;transform:translateX(3px)} }

.flow__node {
  width: 100%;
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  padding: 16px 12px;
}
.flow__node--you { align-items: flex-start; text-align: left; }
.flow__node-prompt { color: var(--copilot); font-weight: 700; font-size: 13px; }
.flow__node-cmd { font-size: 13px; color: var(--white); }

.flow__node--core {
  border-color: var(--fg-mute);
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.05), var(--panel) 70%);
}
.flow__core-logo { font-family: var(--sans); font-weight: 800; font-size: 26px; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.flow__core-kanji { color: var(--fg-mute); font-size: 13px; margin-top: -2px; }
.flow__core-label {
  font-size: 10px; color: var(--fg-dim); letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--line-2); border-radius: 4px; padding: 2px 7px; margin-top: 4px;
}

.flow__agents { width: 100%; display: flex; flex-direction: column; gap: 7px; }
.flow__agent {
  display: flex; align-items: center; gap: 9px;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 6px; padding: 7px 10px;
}
.flow__agent .tag { flex: 0 0 auto; min-width: 58px; text-align: center; }
.flow__bar { position: relative; flex: 1; height: 4px; border-radius: 3px; background: var(--line-2); overflow: hidden; }
.flow__bar i {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--fg-mute), var(--white));
  transform-origin: left;
  animation: barFill 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes barFill {
  0% { transform: scaleX(0); opacity: .4; }
  40% { transform: scaleX(1); opacity: 1; }
  80% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: .4; }
}

.flow__node--out { align-items: flex-start; text-align: left; gap: 5px; }
.flow__out-line { font-size: 12.5px; color: var(--fg-dim); display: flex; align-items: center; gap: 7px; }
.flow__out-ok { color: var(--copilot); font-weight: 700; }
.flow__out-opt { color: var(--fg-mute); }
.flow__out-opt code { color: var(--white); background: var(--panel-2); border: 1px solid var(--line); padding: 0 5px; border-radius: 4px; font-size: 0.92em; }

.flow__cap { font-family: var(--sans); font-size: 12.5px; color: var(--fg-mute); line-height: 1.45; max-width: 22ch; }

@media (max-width: 860px) {
  .flow { flex-direction: column; align-items: stretch; }
  .flow__stage, .flow__stage--wide { flex: 1 1 auto; }
  .flow__arrow { transform: rotate(90deg); align-self: center; }
  @keyframes arrowPulse { 0%,100%{opacity:.3} 50%{opacity:1} }
}

/* ───────────────────────── CODEBLOCK ───────────────────────── */
.codeblock {
  background: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  overflow: hidden;
}
.codeblock__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.codeblock__lang { font-size: 11px; color: var(--fg-mute); letter-spacing: 0.08em; text-transform: uppercase; }
.codeblock__copy {
  font-family: var(--mono); font-size: 11px;
  color: var(--fg-dim); background: transparent;
  border: 1px solid var(--line-2); border-radius: 5px;
  padding: 4px 9px; cursor: pointer; transition: all 0.16s ease;
}
.codeblock__copy:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.codeblock__pre {
  padding: 18px 18px 20px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.75;
}
.codeblock__pre code { color: var(--fg); white-space: pre; }
.c-cmt { color: var(--fg-mute); font-style: italic; }
.c-str { color: var(--claude); }
.c-key { color: var(--agy); }

/* ───────────────────────── FEATURES ───────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 22px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.feature:hover { border-color: var(--line-2); transform: translateY(-3px); }
.feature__key {
  display: inline-block;
  font-size: 12px; color: var(--copilot);
  background: rgba(116,227,155,0.07);
  border: 1px solid rgba(116,227,155,0.2);
  border-radius: 5px; padding: 3px 9px;
  margin-bottom: 14px;
}
.feature h3 {
  font-family: var(--sans); font-weight: 700; font-size: 17px;
  color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em;
}
.feature p { font-family: var(--sans); font-size: 13.5px; color: var(--fg-dim); line-height: 1.55; }

/* ───────────────────────── AGENTS ───────────────────────── */
.agents { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.agent-row {
  display: grid;
  grid-template-columns: 92px 180px 1fr;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  transition: background 0.16s ease;
}
.agent-row:last-child { border-bottom: none; }
.agent-row:hover { background: var(--panel); }
.agent-row__name { font-family: var(--sans); font-weight: 500; color: var(--white); font-size: 15px; }
.agent-row__desc { color: var(--fg-mute); font-size: 13px; }
.agent-row--opt { opacity: 0.62; }
@media (max-width: 620px) {
  .agent-row { grid-template-columns: 78px 1fr; }
  .agent-row__desc { display: none; }
}

/* ───────────────────────── STORY ───────────────────────── */
.story {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: clamp(20px, 4vw, 48px);
  max-width: 920px;
}
.story__rail {
  position: relative;
  display: flex;
  justify-content: center;
}
.story__rail::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, var(--line-2), transparent);
}
.story__kanji {
  position: sticky;
  top: 90px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 40px;
  color: var(--fg-faint);
  background: var(--black);
  padding: 6px 0;
  line-height: 1;
  height: fit-content;
}
.story__body p {
  font-family: var(--sans);
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.75;
  color: var(--fg-dim);
  margin-bottom: 20px;
}
.story__body strong { color: var(--white); font-weight: 700; }

.story__quote {
  border-left: 2px solid var(--white);
  padding: 6px 0 6px 22px;
  margin: 30px 0;
}
.story__quote p {
  font-family: var(--sans);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
  letter-spacing: -0.01em;
  margin: 0;
}

.story__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 26px;
}
@media (max-width: 720px) { .story__notes { grid-template-columns: 1fr; } }
.note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
.note__key {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-mute);
  margin-bottom: 9px;
}
.note p { font-family: var(--sans); font-size: 13px; line-height: 1.55; color: var(--fg-dim); margin: 0; }

.story__sign {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  margin-top: 8px;
}
.story__sign-loc { color: var(--fg-mute); font-weight: 400; }

.story__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.story__social-link {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-dim);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 7px 14px;
  transition: all 0.16s ease;
}
.story__social-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* story banner image */
.story__figure { margin: 30px 0; }
.story__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  /* blend the warm concept art into the monochrome page */
  filter: saturate(0.9) contrast(1.02);
}
.story__cap {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-mute);
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .story { grid-template-columns: 1fr; }
  .story__rail { display: none; }
}

/* ───────────────────────── CTA ───────────────────────── */
.cta {
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(70px, 11vw, 130px) var(--pad);
  border-top: 1px solid var(--line);
}
.cta__ascii {
  font-family: var(--mono);
  color: var(--white);
  font-size: clamp(11px, 1.8vw, 15px);
  line-height: 1.25;
  display: inline-block;
  margin-bottom: 26px;
  opacity: 0.9;
}
.cta__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(26px, 4.6vw, 50px);
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
}
.cta__links { display: flex; gap: 12px; justify-content: center; }

/* ───────────────────────── FOOTER ───────────────────────── */
.footer {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 30px var(--pad);
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.footer__brand { display: flex; align-items: baseline; gap: 8px; }
.footer__links { display: flex; gap: 20px; font-size: 13px; }
.footer__links a { color: var(--fg-dim); transition: color 0.16s ease; }
.footer__links a:hover { color: var(--white); }
.footer__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fg-mute); }
.footer__meta a { color: var(--fg-dim); }
.footer__meta a:hover { color: var(--white); }
.footer__dot { color: var(--fg-faint); }

/* ───────────────────────── COPY TOAST ───────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--white); color: var(--black);
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: 7px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .term__resp, .term__done { opacity: 1; transform: none; }
}
