/* ============================================================
   JM ULTIMATE — Design System
   Black / orange / purple. Sharp. Engineered. Animated.
   ============================================================ */

:root {
  --black: #f6f1e8;
  --black-2: #efe9de;
  --panel: #ffffff;
  --border: #e9e4dd;
  --border-strong: #d3ccc2;
  --text: #211d19;
  --muted: #5f584e;
  --dim: #9a8f82;
  --orange: #ff6a1e;
  --orange-soft: rgba(255, 106, 30, 0.09);
  --orange-line: rgba(255, 106, 30, 0.5);
  --purple: #a855f7;
  --purple-soft: rgba(168, 85, 247, 0.1);
  --purple-line: rgba(168, 85, 247, 0.5);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --font-body: "Inter", system-ui, sans-serif;
  --maxw: 1180px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* cyber overlay — scanlines, blueprint grid, grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(20, 16, 12, 0.022) 0 1px,
      transparent 1px 3px
    ),
    linear-gradient(rgba(20, 16, 12, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 16, 12, 0.028) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: auto, 44px 44px, 44px 44px, 180px 180px;
  opacity: 0.06;
  mix-blend-mode: normal;
}

::selection { background: var(--orange); color: #0c0a09; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #d9d3ca; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

img, svg { display: block; }

.mono { font-family: var(--font-mono); }
.dim { color: var(--dim); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }

/* ===== Keyframes ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes slideLeft { from { opacity: 0; transform: translateX(56px); } to { opacity: 1; transform: none; } }
@keyframes zoomSoft { from { opacity: 0; transform: scale(0.96) translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes charUp { from { opacity: 0; transform: translateY(0.55em) rotate(3deg); } to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes scanDown { from { background-position: 0 0, 0 0, 0 0; } to { background-position: 0 0, 0 0, 0 -87px; } }
@keyframes gridDrift { from { background-position: 0 0, 0 0, 0 0; } to { background-position: 44px 44px, -44px -44px, 0 0; } }
@keyframes hudOn { 0% { opacity: 0; } 100% { opacity: 1; } }

/* ===== Entrance (load) ===== */
body.is-loading .anim,
body.is-loading .hero__name .nc,
body.is-loading .hero__name .mark { opacity: 0; }

body.loaded .anim { animation: fadeUp 0.9s var(--ease) both; animation-delay: var(--d, 0s); }
body.loaded .anim--left { animation: slideLeft 0.9s var(--ease) both; animation-delay: var(--d, 0s); }
body.loaded .hero__name .nc,
body.loaded .hero__name .mark { animation: charUp 0.55s var(--ease) both; animation-delay: var(--cd, var(--d, 0s)); }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-40px); }
.reveal--zoom { transform: scale(0.97); }

/* ===== Scroll progress ===== */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--purple));
  z-index: 300;
  pointer-events: none;
}

/* ---------- Link ---------- */
.link {
  position: relative;
  color: var(--text);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.link:hover { color: var(--orange); }
.link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--orange);
  color: #0c0a09;
}
.btn--primary:hover {
  background: #ff7d3d;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-24deg);
  transition: left 0.55s var(--ease);
}
.btn--primary:hover::after { left: 130%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(246, 241, 232, 0.82);
  transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(246, 241, 232, 0.96);
  border-bottom-color: var(--border);
}
.nav.hide { transform: translateY(-100%); }
.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
}
.logo-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  vertical-align: 1px;
  background: var(--orange);
  animation: breathe 3.2s ease-in-out infinite;
}
@keyframes breathe { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.active { color: var(--orange); }
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--orange);
  color: #0c0a09;
  transition: background 0.2s ease, transform 0.18s var(--ease);
}
.nav__cta:hover { background: #ff7d3d; transform: translateY(-1px); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  cursor: pointer;
  padding: 0 10px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 106, 30, 0.13) 1px, transparent 1px),
    radial-gradient(rgba(20, 16, 12, 0.12) 1px, transparent 1.6px);
  background-size: 44px 44px, 44px 44px, 44px 44px;
  animation: gridDrift 16s linear infinite;
  -webkit-mask-image: radial-gradient(62% 58% at 50% 44%, black 24%, transparent 86%);
  mask-image: radial-gradient(62% 58% at 50% 44%, black 24%, transparent 86%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(600px 340px at 88% -10%, rgba(168, 85, 247, 0.1), transparent 62%),
    radial-gradient(520px 360px at 6% 104%, rgba(255, 106, 30, 0.1), transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 86px,
      rgba(255, 106, 30, 0.22) 86px,
      rgba(255, 106, 30, 0.22) 87px
    );
  animation: scanDown 9s linear infinite;
}
/* HUD corner brackets in the hero */
.crop {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(255, 106, 30, 0.55);
  z-index: 3;
  pointer-events: none;
}
.crop::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.crop--tl { top: 26px; left: 26px; border-right: none; border-bottom: none; }
.crop--tr { top: 26px; right: 26px; border-left: none; border-bottom: none; }
.crop--bl { bottom: 26px; left: 26px; border-right: none; border-top: none; }
.crop--br { bottom: 26px; right: 26px; border-left: none; border-top: none; }

/* hero HUD readout strip */
.hud {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  animation: hudOn 1.6s var(--ease) 1.2s both;
}
.hud::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--orange);
  animation: blink 1.2s steps(1) infinite;
}
.hud::after {
  content: "";
  flex: 1;
  height: 1px;
  min-width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 30, 0.6));
}
.hero--page { min-height: 60svh; }
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero__label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
}
.hero__label .dim { color: var(--dim); }
.hero__title { font-size: 0; margin-bottom: 28px; }
.hero__kicker {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: clamp(13px, 1.6vw, 17px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 18px;
}
.hero__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.hero__name .nc {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity;
  transition: transform 0.18s var(--ease), color 0.18s ease;
}
.mark {
  display: inline-block;
  width: 0.13em;
  height: 0.13em;
  margin-left: 0.06em;
  vertical-align: 0.06em;
  background: var(--orange);
}
.hero__sub {
  color: var(--muted);
  font-size: 17.5px;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__footnote {
  margin-top: 40px;
  font-size: 12.5px;
  color: var(--dim);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}

/* ---------- Terminal panel ---------- */
.term-wrap { min-width: 0; width: 100%; margin-top: 64px; }
.term {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(25, 21, 16, 0.12);
}
.term__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--black-2);
}
.term__dots { display: flex; gap: 6px; }
.term__dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: block;
}
.term__dots i:nth-child(1) { background: var(--orange); }
.term__dots i:nth-child(2) { background: var(--purple); }
.term__dots i:nth-child(3) { background: #d5cfc6; }
.term__title {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.02em;
}
.term__body { padding: 16px 18px 18px; }
.term__out {
  min-height: 150px;
  max-height: 210px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--muted);
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #d9d3ca transparent;
}
.term__out::-webkit-scrollbar { width: 6px; }
.term__out::-webkit-scrollbar-thumb { background: #d9d3ca; border-radius: 3px; }
.term__out-boot { color: var(--dim); }
.term__out-res { color: var(--text); }
.term__form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.term__form .term__dim { font-size: 13.5px; flex-shrink: 0; }
.term__in {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.9;
  caret-color: var(--orange);
  padding: 0;
}
.term__in::placeholder { color: var(--dim); }

/* ---------- Section head ---------- */
.section__head { max-width: 640px; margin-bottom: 48px; }
.section__no {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section__sub { color: var(--muted); margin-top: 14px; font-size: 16.5px; }

/* ---------- Rows / in-the-works ---------- */
.rows { list-style: none; border-top: 2px solid var(--border-strong); }
.row {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 26px 12px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, padding 0.25s var(--ease);
}
.row:hover {
  background: var(--orange-soft);
  padding-left: 22px;
}
.row__index { color: var(--dim); font-size: 13.5px; }
.row__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, transform 0.35s var(--ease);
}
.row:hover .row__title { color: var(--orange); transform: translateX(6px); }
.row__desc { color: var(--muted); font-size: 15px; }
.row__status {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  border: 1px solid var(--purple-line);
  padding: 5px 11px;
  border-radius: 3px;
  white-space: nowrap;
}
.row__status::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  margin-right: 9px;
  vertical-align: 1px;
  animation: blink 2.2s ease-in-out infinite;
}

/* ---------- CTA band ---------- */
.band {
  background: var(--orange);
  color: #0c0a09;
  padding: 100px 0;
  position: relative;
}
.band::before,
.band::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(-45deg, #0c0a09 0 14px, transparent 14px 28px);
  z-index: 1;
}
.band::before { top: 0; }
.band::after { bottom: 0; }
.band__inner { text-align: left; max-width: 840px; position: relative; z-index: 2; }
.band__label {
  position: relative;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(12, 10, 9, 0.7);
  margin-bottom: 18px;
  display: inline-block;
  transition: color 0.2s ease;
}
.band__label::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  height: 1px;
  width: 100%;
  background: rgba(12, 10, 9, 0.5);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.band__label:hover { color: #0c0a09; }
.band__label:hover::after { transform: scaleX(1); transform-origin: left; }
.band__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 14px;
}
.band__sub { color: rgba(12, 10, 9, 0.75); font-size: 17px; margin-bottom: 32px; max-width: 460px; }
.band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.band__btn {
  background: #0c0a09;
  color: var(--orange);
}
.band__btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-24deg);
  transition: left 0.55s var(--ease);
}
.band__btn:hover { background: #201a16; }
.band__btn:hover::after { left: 130%; }

/* ---------- Editorial / about ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}
.editorial__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
}
.editorial__body p { color: var(--muted); font-size: 16.5px; margin-top: 20px; max-width: 560px; }
.facts {
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--panel);
}
.facts__row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, padding-left 0.25s var(--ease);
}
.facts__row:last-child { border-bottom: none; }
.facts__row:hover { background: var(--purple-soft); padding-left: 30px; }
.facts__k { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); }
.facts__v { font-weight: 500; text-align: right; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--border-strong);
  padding: 42px 0;
}
.footer__ghost {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(64px, 17vw, 300px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 16, 12, 0.1);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 15px;
  transition: color 0.2s ease;
}
.footer__brand:hover { color: var(--orange); }
.footer__nav { display: flex; gap: 26px; }
.footer__nav a {
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
  transition: color 0.2s ease;
}
.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  height: 1px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.footer__nav a:hover { color: var(--orange); }
.footer__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- Privacy policy (expand / collapse) ---------- */
.privacy {
  border-top: 2px solid var(--border-strong);
  background: var(--black-2);
}
.privacy__summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
}
.privacy__summary::-webkit-details-marker { display: none; }
.privacy__summary::marker { display: none; }
.privacy__summary:hover { color: var(--orange); }
.privacy__title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.privacy__no {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}
.privacy__icon {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  transition: transform 0.35s var(--ease), border-color 0.2s ease;
}
.privacy__icon::before,
.privacy__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orange);
  transition: transform 0.35s var(--ease);
}
.privacy__icon::before { width: 13px; height: 2px; transform: translate(-50%, -50%); }
.privacy__icon::after { width: 2px; height: 13px; transform: translate(-50%, -50%); }
.privacy[open] .privacy__icon { transform: rotate(90deg); border-color: var(--orange); }
.privacy[open] .privacy__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.privacy__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
}
.privacy[open] .privacy__panel { grid-template-rows: 1fr; }
.privacy__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.privacy__lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding-bottom: 28px;
}
.privacy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 34px 48px;
  padding-bottom: 46px;
}
.privacy__block h3 {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.privacy__block p,
.privacy__block li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.privacy__block ul { padding-left: 18px; }
.privacy__block li { margin-bottom: 6px; }
.privacy__block strong { color: var(--text); font-weight: 600; }

/* ---------- Back to top ---------- */
.top {
  position: fixed;
  right: 26px; bottom: 26px;
  z-index: 150;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  color: var(--orange);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s var(--ease), background 0.2s ease, color 0.2s ease;
}
.top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.top:hover {
  background: var(--orange);
  color: #0c0a09;
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* ============================================================
   ALWAYS-ON ANIMATION
   Everything gently moves. Nothing sits still.
   ============================================================ */

/* Whole-page backdrop slowly creeps along. */
body::before { animation: pageDrift 80s linear infinite; }
@keyframes pageDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 0 0, 44px 0, 0 44px, 0 0; }
}

/* Nav CTA gets the same shine sweep as the big buttons. */
.nav__cta { position: relative; overflow: hidden; }
.nav__cta::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-24deg);
  transition: left 0.55s var(--ease);
}
.nav__cta:hover::after { left: 130%; }
.nav__cta:hover { transform: translateY(-2px); }

/* Logo mark spins a little on hover. */
.logo-mark { transition: transform 0.35s var(--ease); }
.nav__logo:hover .logo-mark { transform: rotate(180deg) scale(1.35); }

/* Section titles: a slow orange/purple sheen washes across. */
.section__title { position: relative; overflow: hidden; }
.section__title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    transparent 38%,
    rgba(255, 106, 30, 0.0001) 42%,
    rgba(255, 106, 30, 0.16) 48%,
    rgba(168, 85, 247, 0.16) 54%,
    rgba(255, 106, 30, 0.0001) 60%,
    transparent 64%);
  background-size: 250% 100%;
  background-position: 200% 0;
  animation: titleSheen 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes titleSheen {
  0%, 45% { background-position: 200% 0; }
  85%, 100% { background-position: -50% 0; }
}

/* Section number gets a terminal caret. */
.section__no::after {
  content: "▍";
  margin-left: 7px;
  color: var(--purple);
  animation: blink 1.1s steps(1) infinite;
}

/* Rows: index shifts, status pill perks up. */
.row__index { transition: color 0.2s ease, transform 0.3s var(--ease); }
.row:hover .row__index { color: var(--orange); transform: translateX(5px); }
.row__status {
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
}
.row:hover .row__status {
  transform: rotate(-2deg) scale(1.06);
  border-color: var(--orange-line);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.18);
}

/* Terminal traffic dots pulse in sequence. */
.term__dots i { animation: dotPulse 2.4s ease-in-out infinite; }
.term__dots i:nth-child(1) { animation-delay: 0s; }
.term__dots i:nth-child(2) { animation-delay: 0.4s; }
.term__dots i:nth-child(3) { animation-delay: 0.8s; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); }
}
.term { transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.term:hover {
  border-color: var(--orange-line);
  box-shadow: 0 24px 70px rgba(255, 106, 30, 0.15), 0 24px 60px rgba(25, 21, 16, 0.12);
}

/* Click ripple */
@keyframes ripple { to { transform: scale(1); opacity: 0; } }

/* CTA hazard tape marches along. */
.band::before, .band::after { background-size: 28px 28px; animation: tapeMarch 1.4s linear infinite; }
@keyframes tapeMarch {
  from { background-position: 0 0; }
  to   { background-position: 19.8px -19.8px; }
}

/* HUD crop corners breathe. */
.crop { animation: cropPulse 3s ease-in-out infinite; }
@keyframes cropPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

/* Hero name's orange mark pulses gently (kept off infinite so the
   triple-click spin easter egg keeps working). */
.hero__name .mark { animation: markPulse 2.2s ease-in-out infinite; }
.hero__name .mark.eggspin { animation: none; }
@keyframes markPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

/* Facts rows: value shifts on hover. */
.facts__v { transition: color 0.2s ease, transform 0.3s var(--ease); }
.facts__row:hover .facts__v { color: var(--orange); transform: translateX(-3px); }
.facts__row:hover .facts__k { letter-spacing: 0.14em; }
.facts__k { transition: letter-spacing 0.3s var(--ease); }

/* Footer ghost drifts lazily. */
.footer__ghost { animation: ghostDrift 12s ease-in-out infinite alternate; }
@keyframes ghostDrift {
  from { transform: translateX(-50%) translateY(10px); }
  to   { transform: translateX(-50%) translateY(-10px); }
}
.footer__nav a {
  transition: color 0.2s ease, transform 0.2s var(--ease);
}
.footer__nav a:hover { transform: translateY(-2px); }

/* Progress bar glows. */
.progress { animation: progressGlow 2.4s ease-in-out infinite; }
@keyframes progressGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 106, 30, 0.4); }
  50% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.6); }
}

/* Privacy: header tints on hover, icon wiggles, blocks lift. */
.privacy__summary { transition: color 0.2s ease, background 0.3s ease; }
.privacy__summary:hover { background: rgba(255, 106, 30, 0.045); }
.privacy__summary:hover .privacy__icon {
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 106, 30, 0.08);
  transform: rotate(90deg);
}
.privacy__block {
  padding: 14px;
  margin: -14px;
  border-radius: 6px;
  transition: transform 0.25s var(--ease), background 0.25s ease, box-shadow 0.25s ease;
}
.privacy__block:hover {
  transform: translateY(-3px);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(25, 21, 16, 0.09);
}

/* Editorial lead nudges on hover. */
.editorial__lead { transition: color 0.2s ease, transform 0.3s var(--ease); }
.editorial:hover .editorial__lead { color: var(--orange); transform: translateX(4px); }

/* ============================================================
   OVER-THE-TOP EFFECTS
   ============================================================ */

/* ---------- Glitch effect ---------- */
@keyframes glitch {
  0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, 2px); }
  20% { clip-path: inset(92% 0 1% 0); transform: translate(1px, -1px); }
  40% { clip-path: inset(43% 0 1% 0); transform: translate(-1px, 3px); }
  60% { clip-path: inset(25% 0 58% 0); transform: translate(3px, 1px); }
  80% { clip-path: inset(54% 0 7% 0); transform: translate(-3px, -2px); }
  100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -3px); }
}
.hero__name.glitch {
  animation: glitch 0.15s linear infinite;
  text-shadow: 2px 0 var(--orange), -2px 0 var(--purple);
}

/* ---------- Konami chaos ---------- */
@keyframes termShake {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  10% { transform: translate(-7px, -4px) rotate(-1deg); }
  20% { transform: translate(6px, 3px) rotate(1deg); }
  30% { transform: translate(-4px, 6px) rotate(-0.5deg); }
  40% { transform: translate(7px, -5px) rotate(0.5deg); }
  50% { transform: translate(-6px, 5px) rotate(1deg); }
  60% { transform: translate(5px, 2px) rotate(-1deg); }
  70% { transform: translate(-7px, -3px) rotate(0.5deg); }
  80% { transform: translate(6px, -4px) rotate(-0.5deg); }
  90% { transform: translate(-3px, 6px) rotate(1deg); }
}
.term-crazy {
  animation: termShake 0.14s linear infinite;
}
.term-crazy .term__out {
  animation: termRainbow 0.4s linear infinite;
}
@keyframes termRainbow {
  0% { color: #ff0040; text-shadow: 0 0 10px #ff0040; }
  16% { color: #ff6a1e; text-shadow: 0 0 10px #ff6a1e; }
  32% { color: #ffe600; text-shadow: 0 0 10px #ffe600; }
  48% { color: #00ff41; text-shadow: 0 0 10px #00ff41; }
  64% { color: #00e5ff; text-shadow: 0 0 10px #00e5ff; }
  80% { color: #a855f7; text-shadow: 0 0 10px #a855f7; }
  100% { color: #ff0040; text-shadow: 0 0 10px #ff0040; }
}
.term-crazy .term__in,
.term-crazy .term__dim,
.term-crazy .term__bar {
  color: #ffffff;
  text-shadow: 0 0 8px var(--orange);
}
.term-crazy .term__form .term__dim { color: #fff; }

.flash-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(255, 106, 30, 0.55), transparent 70%);
  animation: flashFade 0.5s ease-out forwards;
}
.flash-overlay.boom {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6), rgba(255, 106, 30, 0.4), transparent 75%);
}
@keyframes flashFade {
  from { opacity: 1; }
  to { opacity: 0; }
}

.matrix-rain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  body.is-loading .anim,
  body.is-loading .hero__name .nc,
  body.is-loading .hero__name .mark { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  .term { animation: none; }
  .progress { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .crop { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .term-wrap { margin-top: 40px; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 56px); }
  .row { grid-template-columns: 48px 1fr; gap: 10px 18px; }
  .row__desc { grid-column: 2; }
  .row__status { grid-column: 2; justify-self: start; }
  .editorial { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 20px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav__links.open { opacity: 1; transform: none; visibility: visible; }
  .nav__links a { padding: 13px 16px; font-size: 16px; }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

@media (max-width: 520px) {
  .hero__name { font-size: clamp(40px, 13vw, 46px); white-space: normal; }
  .hero__actions, .band__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .row { padding: 20px 8px; }
  .band { padding: 72px 0; }
}