/* ═══════════════════════════════════════════════════════════════
   MPE INSIGHT — Site 2.1 design layer
   Loaded AFTER the legacy inline styles: shared tokens/components
   declared here win the cascade; legacy section styles stay valid.
   Brand rule: green = note event (CTA, strikes, note-on pulses),
   cyan/blue = signal flow. Gradient = logo (green → cyan → blue).
   ═══════════════════════════════════════════════════════════════ */

:root {
  --void:       #030409;
  --panel:      #070910;
  --panel-2:    #0a0d17;
  --line:       rgba(140, 160, 220, 0.10);
  --line-soft:  rgba(140, 160, 220, 0.06);

  --text:       #eef1fa;
  --text-dim:   #8b93ad;
  --text-faint: #4a5170;

  /* green = note event (CTA, strikes, note-on dots)
     cyan   = the interactive accent: links, hover, focus, active
     blue   = signal flow, depth, glow; violet = the 4th event type */
  --green:   #77f317;
  --cyan:    #59e8ff;
  --blue:    #4d6fff;
  --violet:  #a06bff;
  --danger:  #ff5f5f;

  --green-rgb:   119, 243, 23;
  --cyan-rgb:    89, 232, 255;
  --blue-rgb:    77, 111, 255;
  --violet-rgb:  160, 107, 255;
  --danger-rgb:  255, 95, 95;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', 'Cascadia Code', monospace;

  /* radius: three steps only — controls, cards/media, overlay panels */
  --r-ctl:   8px;
  --r-card:  12px;
  --r-panel: 16px;

  --max: 1240px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

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

::selection { background: rgba(var(--cyan-rgb), 0.25); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1560px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 48px); }

h1, h2 { font-family: var(--display); font-weight: 540; letter-spacing: -0.01em; }
h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.005em; }

/* note-strike: the key word carries a green strike line underneath,
   lit once on scroll-in like a key strike in CASCADE.
   Gradient stays reserved for the logo. */
.mark { position: relative; display: inline-block; }
.mark::after {
  content: '';
  position: absolute;
  left: 0.02em; right: 0.02em;
  bottom: -0.06em;
  height: 3px;
  border-radius: 2px;
  background: var(--green, #77f317);
  box-shadow: 0 0 6px rgba(var(--green-rgb, 119,243,23), 0.3);
  transform-origin: left;
}
/* the hero lines clip at their box for the slide-in — keep the strike inside */
.hero-title .mark::after { bottom: 0.02em; }
@media (prefers-reduced-motion: no-preference) {
  .mark::after {
    transform: scaleX(0);
    transition: transform 0.55s var(--ease-out);
  }
  .mark.on::after {
    transform: scaleX(1);
    animation: mark-pulse 1s var(--ease-out) 0.15s;
  }
  .hero-title .mark::after { transition-delay: 0.6s; }
  .hero-title .mark.on::after { animation-delay: 0.75s; }
}
@keyframes mark-pulse {
  0%   { box-shadow: 0 0 18px rgba(var(--green-rgb, 119,243,23), 0.85); }
  100% { box-shadow: 0 0 6px rgba(var(--green-rgb, 119,243,23), 0.3); }
}

/* film grain — one tiny inline SVG, tiled, nearly invisible but kills banding */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-2%,2%); }
  40% { transform: translate(2%,-1%); }
  60% { transform: translate(-1%,-2%); }
  80% { transform: translate(1%,2%); }
}

/* ───────────────────────── buttons ─────────────────────────
   No pills, no lift-off: buttons sit still and fill from the
   bottom on hover, like a pressure meter on the Keyboard module. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0%;
  transition: border-color 0.25s, background-color 0.25s, background-size 0.3s var(--ease-out), color 0.25s;
}
.btn:hover { background-size: 100% 100%; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-primary {
  background-color: var(--green, #77f317);
  background-image: linear-gradient(#a2ff45, #a2ff45);
  color: #06120a;
}
.btn-ghost {
  background-color: rgba(255,255,255,0.02);
  background-image: linear-gradient(rgba(var(--cyan-rgb), 0.09), rgba(var(--cyan-rgb), 0.09));
  border-color: var(--line);
  border-left: 2px solid rgba(var(--cyan-rgb), 0.65);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(var(--cyan-rgb), 0.5); border-left-color: var(--cyan); }
.btn-steam {
  background-color: #16202d;
  background-image: linear-gradient(#1c2a3a, #1c2a3a);
  color: #c7e6ff;
  border: 1px solid #2a4a63;
  width: 100%;
}
.btn-steam:hover { border-color: #66c0f4; }

/* ───────────────────────── nav ───────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(3, 4, 9, 0.72);
  backdrop-filter: blur(14px);
  border-color: var(--line-soft);
}
.nav-inner {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-weight: 600; font-size: 14px; letter-spacing: 0.12em;
}
.wordmark img { border-radius: 5px; }
.wordmark-version {
  font-family: var(--mono); font-weight: 400;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--text-faint);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 8px;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  font-size: 13.5px;
  color: var(--text-dim);
  padding: 8px 13px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 10px 20px; font-size: 13px; }

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 950;
}
.nav-burger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 890;
  background: rgba(3,4,9,0.96);
  backdrop-filter: blur(18px);
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 96px 36px 48px;
  gap: 36px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--display);
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 600;
  color: var(--text-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s, padding-left 0.25s var(--ease-out);
}
.mobile-menu nav a:hover { color: var(--text); padding-left: 10px; }

/* ───────────────────────── hero ───────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 96px;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-fade {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,4,9,0.5) 0%, transparent 26%, transparent 62%, var(--void) 100%),
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(var(--blue-rgb), 0.10), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  pointer-events: none;
}
.hero-content a { pointer-events: auto; }
.hero-eyebrow { margin-bottom: 26px; color: var(--text-dim); }
h1.hero-title {
  font-size: clamp(44px, 8vw, 110px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.hero-note {
  margin-top: 22px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  max-width: 560px;
  text-transform: none;
}

.hero-telemetry {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 64px auto 0;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  pointer-events: none;
}
.tele-cell {
  background: rgba(7, 9, 16, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-soft);
  padding: 13px 16px 15px;
  display: flex; flex-direction: column; gap: 7px;
}
.tele-cell:first-child { border-radius: 10px 0 0 10px; }
.tele-cell:last-child  { border-radius: 0 10px 10px 0; }
.tele-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint);
}
.tele-value {
  font-family: var(--mono); font-size: 16px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.tele-bar { height: 2px; border-radius: 2px; background: rgba(255,255,255,0.06); overflow: hidden; }
.tele-bar i {
  display: block; height: 100%; width: 50%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green, #77f317), var(--cyan));
  transition: width 0.5s var(--ease-out);
}

.hero-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  white-space: nowrap;
}
.hero-hint-line {
  display: block; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--text-faint));
}

/* ───────────────────────── marquee ───────────────────────── */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  background: var(--panel);
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--void), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--void), transparent); }
.marquee-track {
  display: flex; align-items: center; gap: 44px;
  width: max-content;
  will-change: transform;
}
/* device names read like the app's connection list, not like brand logos */
.marquee-track span {
  font-family: var(--mono);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--text-dim); }
.marquee-track i {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(119, 243, 23, 0.4);
  flex-shrink: 0;
}

/* ───────────────────────── sections shared ───────────────────────── */
section { position: relative; padding: clamp(96px, 12vw, 170px) 0; }

/* section kickers read like rows from the MIDI Stream Log module:
   timestamp · event type (colour coded) · name */
.sec-index {
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; row-gap: 6px;
}
.sec-index::after {
  content: '';
  flex: 0 1 48px; min-width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--text-faint), transparent);
}
.si-t { color: var(--text-faint); opacity: 0.75; font-variant-numeric: tabular-nums; white-space: nowrap; }
.si-ev { font-weight: 500; white-space: nowrap; }
.si-name { white-space: nowrap; }
@media (max-width: 480px) {
  .sec-index::after { display: none; }
}
.si-ev.ev-g { color: var(--green, #77f317); }
.si-ev.ev-c { color: var(--cyan); }
.si-ev.ev-b { color: var(--blue); }
.si-ev.ev-v { color: var(--violet); }
.sec-index .si-name { color: var(--text-dim); }
.sec-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 84px); }
.sec-head h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.04;
  margin-bottom: 22px;
}
.sec-head p { color: var(--text-dim); font-size: clamp(15px, 1.5vw, 17px); max-width: 560px; }
/* Centered variant: sections whose content is one centered object
   (video stage, price card, signup form). Reading sections stay left. */
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center p { margin-left: auto; margin-right: auto; }
.sec-head--center .sec-index { justify-content: center; }
.sec-head--center .sec-index::after { display: none; }

/* ───────────────────────── manifesto ───────────────────────── */
.manifesto { background: transparent; }
.manifesto-text {
  font-size: clamp(28px, 4.6vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 1080px;
  margin-bottom: clamp(48px, 6vw, 80px);
  font-weight: 540;
  font-family: var(--display);
}
.manifesto-text em { font-style: normal; color: var(--cyan); }
.manifesto-text .w { opacity: 0.15; transition: opacity 0.35s linear; }
.manifesto-text .w.on { opacity: 1; }
.manifesto-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  max-width: 1080px;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.manifesto-cols p { color: var(--text-dim); font-size: 16px; line-height: 1.75; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 30px 24px 4px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
/* channel meter under each number, lights up on scroll-in */
.stat-bar {
  display: block;
  height: 2px;
  max-width: 120px;
  margin: 0 0 12px;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.stat-bar b {
  display: block; height: 100%; width: 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green, #77f317), var(--cyan));
}
.stat.is-in .stat-bar b { width: 100%; }
@media (prefers-reduced-motion: no-preference) {
  .stat-bar b { transition: width 0.9s var(--ease-out) 0.25s; }
}
.stat-label { font-size: 11px; }

/* ───────────────────────── tech grid (sitzt am Ende von "How it works") ───────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.tech-item {
  background: var(--panel);
  padding: 30px 28px 34px;
  transition: background 0.3s;
}
.tech-item:hover { background: var(--panel-2); }
.tech-num { display: block; margin-bottom: 20px; font-size: 11px; color: var(--cyan); }
.tech-item h3 { font-size: 18px; margin-bottom: 10px; }
.tech-item p { color: var(--text-dim); font-size: 14px; line-height: 1.65; }

/* ───────────────────────── credo line (im Manifest, Sektion 01) ───────────────────────── */
.philo-sub { color: var(--text-dim); font-size: 16px; max-width: 520px; }
.philo-sub em { font-style: normal; color: var(--green, #77f317); }

/* ───────────────────────── walkthrough stage ───────────────────────── */
.yt-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  cursor: pointer;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
}
.yt-stage img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.05);
  transition: filter 0.4s, transform 0.6s var(--ease-out);
}
.yt-stage:hover img { filter: brightness(0.85) saturate(1.05); transform: scale(1.015); }
.yt-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
}
.yt-overlay .mono { color: rgba(255,255,255,0.55); font-size: 11px; }
.yt-play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green, #77f317), var(--blue));
  color: var(--void);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 44px rgba(var(--blue-rgb), 0.5);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.yt-play svg { margin-left: 4px; }
.yt-stage:hover .yt-play { transform: scale(1.1); box-shadow: 0 16px 60px rgba(119,243,23,0.35); }
.yt-ext { display: flex; justify-content: flex-end; margin-top: 14px; }
.yt-ext a { font-size: 11px; transition: color 0.2s; }
.yt-ext a:hover { color: var(--cyan); }

/* ───────────────────────── newsletter (draft look on legacy markup) ───────────────────────── */
.newsletter .newsletter-inner { max-width: 620px; }
.newsletter h2 { font-size: clamp(32px, 4.5vw, 54px); }
.newsletter-form { gap: 10px; margin-bottom: 24px; }
.newsletter-form input {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 22px;
  font-size: 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.newsletter-form input:focus {
  border-color: rgba(var(--cyan-rgb), 0.5);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--cyan-rgb), 0.08);
}
.newsletter-tags-label { display: none; }
.newsletter-tags { gap: 8px; margin-bottom: 8px; }
.tag-label {
  border-radius: 6px;
  padding: 7px 15px;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.tag-label::before { content: none; }
.tag-check:checked + .tag-label {
  border-color: rgba(var(--cyan-rgb), 0.55);
  color: var(--cyan);
  background: rgba(var(--cyan-rgb), 0.06);
}
.tag-check:checked + .tag-label::before { content: none; }

/* ───────────────────────── footer (round = the system) ───────────────────────── */
.footer-tag { margin-top: 12px; font-size: 10.5px; }
.footer-social a {
  width: 46px; height: 46px;
  border-radius: 10px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.footer-social a:hover {
  border-color: rgba(var(--cyan-rgb), 0.5);
  color: var(--cyan);
  background: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--blue-rgb), 0.2);
}
.footer-social svg { width: 20px; height: 20px; }

/* ───────────────────────── module windows ─────────────────────────
   Cards borrow the silhouette of the app's own module tiles:
   a slim mono title bar with a running light, content below.
   #how prefix keeps these heavier than anim.css, which loads later. */
.mod-bar {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
  background: var(--panel-2);
  border-bottom: 1px solid var(--line-soft);
  padding: 10px 14px;
}
.mod-bar::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green, #77f317);
  box-shadow: 0 0 8px rgba(var(--green-rgb, 119,243,23), 0.7);
  flex-shrink: 0;
}
.mod-bar::after {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  margin-left: auto; margin-right: 16px;
  background: var(--text-faint);
  box-shadow: 8px 0 0 var(--text-faint), 16px 0 0 var(--text-faint);
  opacity: 0.55;
  flex-shrink: 0;
}

#how .how-card {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.3s;
}
#how .how-card:hover { border-color: rgba(140, 160, 220, 0.24); }
#how .how-card .mod-bar { margin: 0; font-size: 11px; line-height: 1.4; }
#how .how-card .mpe-anim {
  margin: 0;
  border: 0;
  border-radius: 0;
  max-width: none;
}
#how .how-card figcaption { padding: 13px 16px 17px; }

/* pricing checklist: note-on dots instead of checkmarks.
   The list is one tidy block — items stay left-aligned inside it so a
   wrapping line never strands its dot. */
.pricing-points {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  gap: 11px;
}
.pricing-points li {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  line-height: 1.5;
}
.pt-dot {
  width: 7px; height: 7px; border-radius: 50%;
  margin-top: 0.45em;
  background: var(--green, #77f317);
  box-shadow: 0 0 6px rgba(var(--green-rgb, 119,243,23), 0.5);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .pt-dot { animation: pt-pulse 2.8s ease-in-out infinite; }
  .pricing-points li:nth-child(2n) .pt-dot { animation-delay: 0.9s; }
  .pricing-points li:nth-child(3n) .pt-dot { animation-delay: 1.7s; }
}
@keyframes pt-pulse {
  0%, 100% { box-shadow: 0 0 3px rgba(var(--green-rgb, 119,243,23), 0.3); }
  50%      { box-shadow: 0 0 9px rgba(var(--green-rgb, 119,243,23), 0.8); }
}

/* ───────────────────────── reveal system ───────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal-load { opacity: 0; }
}

/* ───────────────────────── responsive ───────────────────────── */
@media (max-width: 1100px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-telemetry { grid-template-columns: repeat(3, 1fr); }
  .tele-cell:nth-child(4), .tele-cell:nth-child(5) { display: none; }
  .manifesto-cols { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat { padding-top: 22px; padding-bottom: 0; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 22px; }
  .tech-grid { grid-template-columns: 1fr; }
  .hero-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain { animation: none; }
}
