/*
 * Voltrium website — "High Voltage" identity.
 * Self-custody rendered as an electrical instrument: a charged conductor V,
 * a live security pipeline, and a cyan→violet voltage gradient used with
 * restraint. All colors/spacing/motion via var(--*) tokens from tokens.css.
 */

/* ---------- Fonts (local, self-contained) ---------- */

@font-face {
  font-family: 'Inter Variable';
  src: url('assets/fonts/inter-variable.woff2') format('woff2-variations'), url('assets/fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/plexmono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/plexmono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Reset ---------- */

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-ui);
  font-weight: var(--fw-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: var(--space-4);
  background: var(--accent);
  color: var(--accent-ink);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 100;
  font-weight: var(--fw-medium);
  transition: top var(--dur-fast) var(--ease);
}

.skip-link:focus {
  top: var(--space-4);
}

/* ---------- Scroll-reveal primitive ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--dur-slower) var(--ease),
    transform var(--dur-slower) var(--ease);
  will-change: opacity, transform;
}

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

/* ---------- Layout primitives ---------- */

.section {
  position: relative;
  padding: var(--space-10) var(--space-5);
  border-top: 1px solid var(--line);
}

.section__inner {
  max-width: var(--measure);
  margin: 0 auto;
}

.section__head {
  max-width: 42ch;
  margin-bottom: var(--space-8);
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.section__title {
  font-family: var(--font-ui);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem);
}

.section__lead {
  margin-top: var(--space-5);
  color: var(--text-2);
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.1875rem);
  line-height: 1.6;
}

/* ---------- Scroll ChargeLine rail (secondary signature) ---------- */

.chargerail {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  z-index: 60;
}

.chargerail__fill {
  width: 100%;
  height: calc(var(--charge, 0) * 100%);
  background: var(--grad-volt);
  box-shadow: 0 0 12px 1px var(--bloom-cyan);
  transition: height var(--dur) var(--ease);
}

@media (max-width: 860px) {
  .chargerail {
    display: none;
  }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 15, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.wordmark {
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.34em;
  color: var(--text-1);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark__i {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.wordmark__i::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--bloom-cyan);
  transform: translateX(-50%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-2);
  transition: color var(--dur-fast) var(--ease);
}

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

.site-nav__cta {
  color: var(--accent) !important;
  font-weight: var(--fw-medium);
}

@media (max-width: 620px) {
  .site-nav {
    gap: var(--space-4);
    font-size: 13px;
  }
  .site-nav a:not(.site-nav__cta) {
    display: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: var(--fw-medium);
  line-height: 1.1;
  transition:
    background var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease),
    box-shadow var(--dur) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--glow-cta);
}

.btn--primary:hover {
  background: var(--accent-press);
  box-shadow:
    0 0 0 1px rgba(34, 227, 255, 0.6),
    0 10px 30px rgba(34, 227, 255, 0.22),
    0 0 56px rgba(34, 227, 255, 0.26);
}

.btn--lg {
  padding: var(--space-4) var(--space-6);
}

.btn__label {
  font-size: 15px;
  font-weight: 600;
}

.btn--lg .btn__label {
  font-size: 17px;
}

.btn__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-1);
}

.btn--ghost:hover {
  border-color: var(--accent);
  background: var(--bg-1);
}

.btn__arrow {
  transition: transform var(--dur-fast) var(--ease);
}

.btn--ghost:hover .btn__arrow {
  transform: translateX(3px);
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: var(--space-9) var(--space-5) var(--space-8);
  overflow: hidden;
  isolation: isolate;
}

/* engineered circuit grid backdrop */
.hero__grid {
  position: absolute;
  inset: -2px;
  z-index: -3;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 90% at 70% 15%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 70% 15%, #000 30%, transparent 78%);
}

/* voltage bloom */
.hero__bloom {
  position: absolute;
  z-index: -2;
  top: -18%;
  right: -8%;
  width: min(760px, 88vw);
  height: min(760px, 88vw);
  background:
    radial-gradient(closest-side, var(--bloom-cyan), transparent 70%),
    radial-gradient(closest-side, var(--bloom-violet), transparent 72%);
  background-position: 40% 40%, 68% 62%;
  background-repeat: no-repeat;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

/* subtle film grain (inline SVG turbulence — fully self-contained) */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: var(--space-8);
}

.hero__copy {
  max-width: 40ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 20, 27, 0.6);
}

.eyebrow__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 8px var(--up);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.82); }
}

.hero__title {
  font-family: var(--font-ui);
  font-weight: var(--fw-black);
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-size: clamp(2.75rem, 1.6rem + 6.2vw, 5.75rem);
  text-transform: uppercase;
}

.hero__title .line {
  display: block;
}

.line--volt {
  background: var(--grad-volt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin-top: var(--space-5);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  color: var(--text-2);
  max-width: 44ch;
  line-height: 1.6;
}

.hero__actions {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

/* --- Signature: charged conductor V --- */

.conductor {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}

.conductor__svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.conductor__live,
.conductor__spark {
  stroke-dasharray: 620;
}

.conductor__live {
  stroke-dashoffset: 620;
  animation: conductor-draw 1.5s var(--ease) 0.35s forwards;
}

.conductor__spark {
  stroke-dashoffset: 620;
  opacity: 0;
  animation: conductor-spark 3.4s linear 2s infinite;
}

.conductor__bar {
  transform-origin: center;
  opacity: 0;
  animation: bar-in 0.5s var(--ease) 1.7s forwards;
}

@keyframes conductor-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes bar-in {
  from { opacity: 0; transform: scaleX(0.3); }
  to { opacity: 1; transform: scaleX(1); }
}

/* a short bright charge packet travels the conductor path on a loop */
@keyframes conductor-spark {
  0% { stroke-dasharray: 40 580; stroke-dashoffset: 620; opacity: 0; }
  8% { opacity: 0.95; }
  50% { opacity: 0.95; }
  60% { stroke-dasharray: 40 580; stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dasharray: 40 580; stroke-dashoffset: 0; opacity: 0; }
}

.hero__scrollcue {
  position: absolute;
  left: 50%;
  bottom: var(--space-5);
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  display: none;
}

.hero__scrollcue-line {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 2px;
  height: 14px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollcue 1.8s var(--ease) infinite;
}

@keyframes scrollcue {
  0% { opacity: 0; transform: translate(-50%, -6px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

@media (min-width: 861px) {
  .hero__scrollcue { display: block; }
  .hero__scrollcue::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
  }
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .conductor {
    grid-row: 1;
    width: min(58%, 260px);
    opacity: 0.9;
  }
  .hero__copy { max-width: none; }
}

/* ================= SPEC RIBBON ================= */

.ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--bg-1), var(--bg-1)) padding-box,
    var(--grad-volt-soft);
  background: var(--bg-1);
}

.ribbon__inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.spec {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-left: var(--space-5);
  border-left: 1px solid var(--line);
}

.spec__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

.spec__value {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(0.9375rem, 0.85rem + 0.4vw, 1.125rem);
  color: var(--text-1);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.spec__value--zero {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  background: var(--grad-volt);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spec__value--accent {
  color: var(--accent);
}

@media (max-width: 860px) {
  .ribbon__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5) var(--space-4);
  }
}

@media (max-width: 460px) {
  .ribbon__inner {
    grid-template-columns: 1fr;
  }
}

/* ================= SECURITY ================= */

.security {
  background:
    radial-gradient(80% 60% at 12% 0%, rgba(124, 92, 255, 0.06), transparent 60%),
    var(--bg-0);
}

/* the key lifecycle — a live conductor line threads the numbered steps */
.pipe {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.pipe::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--grad-volt);
  opacity: 0.5;
  box-shadow: 0 0 10px var(--bloom-cyan);
}

.pipe__step {
  position: relative;
  padding-top: var(--space-8);
}

.pipe__index {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.pipe__title {
  font-family: var(--font-ui);
  font-weight: var(--fw-display);
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.pipe__desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .pipe {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .pipe::before {
    top: 22px;
    bottom: 22px;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .pipe__step {
    padding-top: var(--space-3);
    padding-left: 64px;
    padding-bottom: var(--space-6);
    min-height: 44px;
  }
  .pipe__index {
    top: 0;
  }
}

.claims {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  border-top: 1px solid var(--line);
  padding-top: var(--space-7);
}

.claim {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.5;
}

.claim__mark {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(34, 227, 255, 0.1);
  color: var(--accent);
  margin-top: 1px;
}

@media (max-width: 620px) {
  .claims {
    grid-template-columns: 1fr;
  }
}

/* ================= FEATURES ================= */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}

.card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  overflow: hidden;
  transition:
    border-color var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    transform var(--dur) var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.card:hover {
  border-color: rgba(34, 227, 255, 0.4);
  background: var(--bg-2);
  transform: translateY(-3px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--accent);
  margin-bottom: var(--space-5);
}

.card:hover .card__icon {
  border-color: rgba(34, 227, 255, 0.4);
}

.card__title {
  font-family: var(--font-ui);
  font-weight: var(--fw-display);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ================= DOWNLOAD ================= */

.download {
  position: relative;
  overflow: hidden;
  background: var(--bg-1);
}

.download__glow {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 40%;
  width: min(900px, 120vw);
  height: min(560px, 80vw);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side, var(--bloom-cyan), transparent 68%),
    radial-gradient(closest-side, var(--bloom-violet), transparent 70%);
  background-position: 42% 50%, 62% 55%;
  background-repeat: no-repeat;
  opacity: 0.35;
  filter: blur(14px);
  pointer-events: none;
}

.download__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.download__title {
  font-family: var(--font-ui);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.75rem);
  margin-top: var(--space-4);
}

.download__sub {
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  color: var(--text-2);
  font-size: 14px;
}

.download__actions {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.install-note {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.install-note__title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.install-note p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

/* ================= FAQ ================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 820px;
}

.faq-item {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  transition: border-color var(--dur-fast) var(--ease);
}

.faq-item[open] {
  border-color: rgba(34, 227, 255, 0.35);
}

.faq-item summary {
  cursor: pointer;
  font-weight: var(--fw-medium);
  font-size: 15.5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__plus {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.faq-item__plus::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.faq-item__plus::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.faq-item[open] .faq-item__plus::after {
  transform: scaleY(0);
  opacity: 0;
}

.faq-item p {
  margin-top: var(--space-4);
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 66ch;
}

/* ================= FOOTER ================= */

.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-8) var(--space-5);
}

.site-footer__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.wordmark--footer {
  color: var(--text-1);
}

.site-footer__tag {
  font-size: 13px;
  color: var(--text-2);
}

.site-footer__links {
  display: flex;
  gap: var(--space-5);
  font-size: 13px;
}

.site-footer__links a {
  color: var(--text-2);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-2);
}

/* ================= Legal placeholder pages ================= */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-9) var(--space-5);
}

.legal__title {
  font-family: var(--font-ui);
  font-weight: var(--fw-black);
  letter-spacing: -0.03em;
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.5rem);
  margin-bottom: var(--space-5);
}

.legal__notice {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--line);
  background: var(--bg-1);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
}

.legal__body {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.legal__back {
  display: inline-block;
  margin-top: var(--space-6);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  text-decoration: none;
}

.legal__back:hover {
  text-decoration: underline;
}

/* ================= Reduced motion ================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .conductor__live,
  .conductor__spark,
  .conductor__bar {
    animation: none;
  }
  .conductor__live {
    stroke-dashoffset: 0;
  }
  .conductor__spark {
    display: none;
  }
  .conductor__bar {
    opacity: 1;
  }
}
