:root {
  --ink: #080808;
  --ink-2: #111111;
  --paper: #f4efe6;
  --cream: #ebe3d2;
  --gold: #c9a24a;
  --gold-bright: #e4c36a;
  --gold-dim: #8d7340;
  --line: rgba(244, 239, 230, 0.12);
  --sol: #9945ff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: var(--font-mono);
}

.stripe-rail {
  position: fixed;
  inset: 0 0 auto 0;
  height: 6px;
  z-index: 80;
  background: repeating-linear-gradient(
    90deg,
    #000 0 10px,
    #fff 10px 20px
  );
  background-size: 40px 100%;
  animation: stripeSlide 8s linear infinite;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--nav-h);
  padding: 12px 28px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav.is-scrolled {
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 74, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.nav-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.nav-word {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  opacity: 0.78;
  transition: opacity 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 10px);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }

.nav-toggle.is-open span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.nav-drawer {
  position: sticky;
  top: var(--nav-h);
  z-index: 69;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 28px 28px;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer a {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.18) 0 6px,
    transparent 6px 12px
  );
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

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

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #111;
  box-shadow: 0 8px 24px rgba(201, 162, 74, 0.22);
}

.btn-ghost,
.btn-line {
  border-color: rgba(244, 239, 230, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.btn-lg,
.btn-xl {
  min-height: 52px;
  padding: 0 26px;
}

.btn-xl {
  min-height: 58px;
  padding: 0 32px;
  font-size: 0.84rem;
}

.btn-block {
  width: 100%;
  margin-top: 18px;
}

.btn-copy {
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 74, 0.5);
  background: rgba(201, 162, 74, 0.1);
  color: var(--gold-bright);
  min-height: 38px;
}

.btn.is-copied {
  background: #111;
  color: var(--gold-bright);
  border-color: var(--gold);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 28px 48px 64px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, #000 0 8px, #f4efe6 8px 16px);
  opacity: 0.18;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--gold-bright);
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.15);
}

.hero h1 {
  margin: 22px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 9vw, 8.6rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.04em;
}

.hero-kicker {
  margin: 10px 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.hero-lede {
  max-width: 26ch;
  color: rgba(244, 239, 230, 0.72);
  font-size: 1.05rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.ca-module {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 520px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px dashed rgba(201, 162, 74, 0.45);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 14px,
      rgba(255,255,255,0.03) 14px 15px
    );
}

.ca-meta {
  min-width: 0;
  flex: 1;
}

.ca-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: rgba(244, 239, 230, 0.5);
}

.ca-value {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.btn-copy {
  flex-shrink: 0;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.stage-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 74, 0.28), transparent 68%);
  filter: blur(8px);
  animation: pulse 7s ease-in-out infinite;
}

.stage-stripes {
  position: absolute;
  width: 78%;
  height: 86%;
  border-radius: 40% 60% 48% 52%;
  background: repeating-linear-gradient(
    108deg,
    transparent 0 14px,
    rgba(255, 255, 255, 0.05) 14px 22px
  );
  mask-image: radial-gradient(circle, #000 40%, transparent 78%);
  animation: stripeDrift 18s linear infinite;
}

.stage-terminal {
  position: absolute;
  width: 58%;
  height: 68%;
  border: 1px solid rgba(201, 162, 74, 0.22);
  border-radius: 28px;
  transform: rotate(8deg) translate(8%, 4%);
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.015),
    0 30px 80px rgba(0, 0, 0, 0.35);
}

.stage-terminal::before,
.stage-terminal::after {
  content: "";
  position: absolute;
  background: rgba(201, 162, 74, 0.18);
}

.stage-terminal::before {
  top: 18px;
  left: 22px;
  right: 22px;
  height: 10px;
  border-radius: 999px;
}

.stage-terminal::after {
  right: -18px;
  top: 22%;
  width: 18px;
  height: 38%;
  border-radius: 0 8px 8px 0;
}

.stage-ring {
  position: absolute;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid rgba(153, 69, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-mascot {
  position: relative;
  z-index: 2;
  width: min(92%, 640px);
  height: auto;
  background: none;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 40px rgba(201, 162, 74, 0.18));
  animation: floatY 6.5s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

.float-card {
  position: absolute;
  right: 2%;
  bottom: 12%;
  z-index: 3;
  width: 210px;
  perspective: 800px;
}

.float-card-inner {
  padding: 16px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, #1a1a1a, #0b0b0b);
  border: 1px solid rgba(201, 162, 74, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px #000;
  transform: rotate(-12deg);
  transform-style: preserve-3d;
  animation: floatCard 7s ease-in-out infinite;
}

.float-card-top,
.float-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.chip {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  background: linear-gradient(135deg, #efe0a6, #b8923a);
}

.float-card-emblem {
  width: 54px;
  height: 54px;
  margin: 18px auto;
  border-radius: 50%;
  background:
    repeating-linear-gradient(90deg, #111 0 4px, #f4efe6 4px 8px),
    #fff;
  box-shadow: 0 0 0 6px #c9a24a, 0 0 0 8px #111;
  clip-path: circle(50%);
}

.float-card-bottom {
  color: rgba(244, 239, 230, 0.62);
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.sol-mark {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(180deg, #c9a24a, #8d7340);
}

/* TERMINAL */
.terminal-section,
.how,
.chart,
.finale {
  padding: 96px 48px;
}

.section-rule {
  height: 10px;
  margin: 0 0 48px;
  background: repeating-linear-gradient(90deg, #000 0 12px, var(--paper) 12px 24px);
  opacity: 0.22;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.display {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 36px;
}

.terminal {
  max-width: 560px;
}

.terminal-bezel {
  padding: 18px 18px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #2a2a2a, #101010);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(244, 239, 230, 0.55);
}

.terminal-leds {
  display: flex;
  gap: 6px;
}

.terminal-leds i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3a3a;
}

.terminal-leds i:nth-child(1) { background: #5a4630; }
.terminal-leds i:nth-child(2) { background: var(--gold-dim); }
.terminal-leds i:nth-child(3) { background: var(--gold); }

.terminal-screen {
  min-height: 240px;
  padding: 22px;
  border-radius: 16px;
  background: #070806;
  border: 1px solid rgba(201, 162, 74, 0.18);
  box-shadow: inset 0 0 40px rgba(201, 162, 74, 0.05);
}

.term-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(244, 239, 230, 0.1);
  font-family: var(--font-mono);
}

.term-key {
  color: rgba(244, 239, 230, 0.46);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.term-val {
  letter-spacing: 0.12em;
}

.term-redact {
  letter-spacing: 0.2em;
  color: var(--gold-bright);
}

.term-status {
  min-height: 32px;
  margin-top: 22px;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  color: var(--gold-bright);
}

.pay-pad {
  width: 100%;
  margin-top: 16px;
  min-height: 72px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #111;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  box-shadow: 0 10px 24px rgba(201, 162, 74, 0.2);
  transition: transform 0.2s var(--ease), filter 0.2s;
}

.pay-pad:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.pay-pad:active {
  transform: translateY(1px);
}

.pay-pad.is-busy {
  pointer-events: none;
  filter: grayscale(0.2);
}

.terminal-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.42);
}

/* ABOUT */
.about {
  padding: 40px 0 80px;
}

.about-grid {
  display: grid;
  gap: 0;
}

.about-block {
  padding: 36px 48px;
}

.about-block h2 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.about-block-right {
  text-align: right;
}

.zebra-interrupt {
  height: 28px;
  background: repeating-linear-gradient(90deg, #000 0 16px, #f4efe6 16px 32px);
  animation: stripeSlide 14s linear infinite;
}

.zebra-interrupt-gold {
  height: 14px;
  background: repeating-linear-gradient(90deg, #000 0 10px, var(--gold) 10px 20px);
  animation-duration: 10s;
}

.about-copy {
  padding: 48px;
  max-width: 720px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.about-copy p + p {
  margin-top: 22px;
  color: rgba(244, 239, 230, 0.7);
}

/* HOW */
.how {
  background:
    linear-gradient(180deg, transparent, rgba(201, 162, 74, 0.04)),
    repeating-linear-gradient(
      90deg,
      transparent 0 46px,
      rgba(255, 255, 255, 0.015) 46px 47px
    );
}

.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.how-steps li {
  padding: 28px 8px 8px 0;
  border-top: 1px solid var(--line);
}

.how-num {
  display: block;
  font-family: var(--font-mono);
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.how-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--paper);
}

.how-steps h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* BRAND FILM */
.brand-film {
  margin: 0;
  overflow: hidden;
  border-block: 10px solid transparent;
  border-image: repeating-linear-gradient(90deg, #000 0 12px, #f4efe6 12px 24px) 10;
}

.brand-film img {
  width: 100%;
  height: min(42vw, 420px);
  object-fit: cover;
  object-position: center 40%;
}

/* MANIFESTO */
.manifesto {
  position: relative;
  overflow: hidden;
}

.manifesto-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 38vh;
}

.manifesto-black,
.manifesto-white {
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.manifesto-black {
  background: #000;
}

.manifesto-white {
  background: var(--paper);
  color: #111;
}

.manifesto-tag {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
}

.manifesto-body {
  padding: 80px 48px;
  text-align: center;
  background: #000;
}

.manifesto-body h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
}

.manifesto-body p {
  margin-top: 28px;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(244, 239, 230, 0.72);
}

.manifesto-wipe {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, #000 0 12px, #fff 12px 24px);
  mix-blend-mode: difference;
  transform: translateX(-110%);
  opacity: 0;
}

.manifesto.is-inview .manifesto-wipe {
  animation: stripeWipe 1.15s var(--ease) forwards;
}

/* CHART */
.chart-shell {
  max-width: 920px;
  padding: 22px;
  border-radius: 24px;
  background: #101010;
  border: 1px solid var(--line);
}

.chart-embed {
  min-height: 280px;
}

.chart-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
  background: #080808;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.chart-badge {
  color: var(--gold);
  border: 1px solid rgba(201, 162, 74, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.chart-body {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #080808;
  margin-bottom: 18px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.chart-line {
  position: absolute;
  inset: 24px 12px 48px;
  width: calc(100% - 24px);
  height: calc(100% - 72px);
}

.chart-line path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 2.4s var(--ease) forwards;
}

.chart-empty {
  position: absolute;
  inset: auto 0 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(244, 239, 230, 0.55);
}

/* RECEIPT */
.receipt {
  padding: 40px 24px 80px;
}

.receipt-sheet {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 42px 32px 32px;
  background: var(--paper);
  color: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.receipt-sheet::before,
.receipt-sheet::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  background: radial-gradient(circle, var(--ink) 7px, transparent 8px);
  background-size: 16px 16px;
}

.receipt-sheet::before {
  top: -8px;
}

.receipt-sheet::after {
  bottom: -8px;
}

.receipt-head {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.receipt-net {
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #666;
  padding-bottom: 16px;
  border-bottom: 1px dashed #b9b1a2;
}

.receipt-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 22px 0 8px;
  font-family: var(--font-mono);
}

.receipt-row span {
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.receipt-row code {
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  word-break: break-all;
  max-width: 100%;
}

.receipt-sheet .btn-gold {
  color: #111;
}

/* FINALE */
.finale {
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 74, 0.12), transparent 55%),
    #050505;
}

.finale-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.88;
}

.finale-title-gold {
  margin: 18px 0 40px;
  color: var(--gold-bright);
}

.finale-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* FOOTER */
.foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: center;
  padding: 32px 48px 40px;
  border-top: 1px solid var(--line);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foot-brand strong {
  display: block;
}

.foot-brand em {
  display: block;
  font-style: normal;
  color: rgba(244, 239, 230, 0.55);
  font-size: 0.9rem;
}

.foot-x {
  justify-self: end;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.disclaimer {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: rgba(244, 239, 230, 0.42);
  max-width: 62ch;
}

/* REVEALS */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.reveal.is-visible {
  animation-play-state: running;
}

/* MOTION */
@keyframes stripeSlide {
  to { background-position: 40px 0; }
}

@keyframes stripeDrift {
  to { background-position: 80px 40px; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes floatCard {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-10px); }
}

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

@keyframes stripeWipe {
  0% { transform: translateX(-110%); opacity: 0.85; }
  55% { transform: translateX(0); opacity: 0.85; }
  100% { transform: translateX(110%); opacity: 0; }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 20px 28px 48px;
  }

  .hero-stage {
    min-height: 520px;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero,
  .terminal-section,
  .how,
  .chart,
  .finale,
  .foot,
  .about-block,
  .about-copy,
  .manifesto-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .hero-stage {
    min-height: 420px;
  }

  .float-card {
    width: 150px;
    right: 0;
    bottom: 4%;
  }

  .manifesto-split {
    grid-template-columns: 1fr;
  }

  .about-block-right {
    text-align: left;
  }

  .ca-module {
    max-width: 100%;
  }

  .btn-lg,
  .btn-xl,
  .hero-ctas .btn,
  .finale-ctas .btn {
    width: 100%;
  }

  .foot {
    grid-template-columns: 1fr;
  }

  .foot-x {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 10px 16px;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-mascot {
    width: 100%;
  }

  .ca-value {
    font-size: 0.95rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .manifesto-wipe {
    display: none;
  }
}
