/* ==========================================================
   VAUCET: anti-vamp defense protocol
   Neo-brutalism (hard borders, offset shadows, Unbounded)
   in a red / black / gray palette. Variable names keep their
   original roles: --acid = primary accent, --pink = CTA,
   --orange = vamp/danger (now drained gray), etc.
   ========================================================== */

:root {
  --font-display: "Unbounded", Arial, Helvetica, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ink: #0d0d0f;
  --paper: #ececea;
  --acid: #ff2f2f;
  --pink: #c8102e;
  --blue: #d92323;
  --orange: #8b8b8f;
  --yellow: #c9c9c7;
  --purple: #9b9b9b;
  --green: #ff2f2f;

  --site-frame: 3px;
  --topbar-height: 52px;
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
}

button, a, input { color: inherit; font: inherit; }
button { cursor: pointer; }
img, svg { display: block; }

.app-shell {
  min-height: 100dvh;
  padding: var(--site-frame);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: var(--site-frame);
}

/* ============ KICKERS / TYPE UTILS ============ */

.kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
}
.kicker-light { color: var(--acid); }

.hl-orange { color: var(--orange); font-style: normal; }
.hl-blue   { color: var(--blue);   font-style: normal; }
.hl-acid   { color: var(--acid);   font-style: normal; }
.hl-pink   { color: var(--pink);   font-style: normal; }
.hl-purple { color: var(--purple); font-style: normal; }
.hl-ink    { font-style: normal; }

/* ============ TOPBAR ============ */

.topbar {
  position: sticky;
  top: var(--site-frame);
  z-index: 50;
  border: 2px solid var(--ink);
  background: var(--paper);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 24px;
  height: var(--topbar-height);
  padding: 0 12px 0 16px;
}

.brand {
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 900;
  letter-spacing: -0.07em;
  text-decoration: none;
  line-height: 1;
}
.brand span { color: var(--acid); -webkit-text-stroke: 1.5px var(--ink); }

.tabs {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 22px;
  padding: 0 6px;
}
.tab {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.15s;
}
.tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: 0;
  transition: transform 0.16s;
}
.tab:hover { color: var(--blue); }
.tab:hover::after, .tab.active::after { transform: scaleX(1); }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.status-strip strong { color: var(--green); }

.live-dot {
  width: 6px; height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  animation: live-dot-pulse 1.35s ease-in-out infinite;
}
@keyframes live-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ============ BUTTONS ============ */

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--ink);
  background: var(--pink);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 0 14px;
  min-height: 34px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.13s, box-shadow 0.13s;
}
.cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.cta-small { min-height: 30px; font-size: 10px; }
.cta-big {
  min-height: 58px;
  padding: 0 26px;
  font-size: 16px;
  border-width: 3px;
  box-shadow: 6px 6px 0 var(--ink);
}
.cta-big:hover { box-shadow: 2px 2px 0 var(--ink); }
.cta-icon { width: 16px; height: 16px; }

.ghost-button {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--ink);
  background: transparent;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 0 14px;
  min-height: 34px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.13s, box-shadow 0.13s, background 0.13s;
}
.ghost-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
  background: var(--acid);
}

/* ============ MOBILE MENU ============ */

.mobile-menu-button {
  display: none;
  border: 2px solid var(--ink);
  width: 36px; height: 34px;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  place-content: center;
  gap: 4px;
}
.mobile-menu-button span {
  display: block;
  width: 17px; height: 2px;
  background: var(--ink);
  transition: transform 0.15s, opacity 0.15s;
}
.mobile-menu-button.is-open span:first-child { transform: translateY(6px) rotate(45deg); }
.mobile-menu-button.is-open span:nth-child(2) { opacity: 0; }
.mobile-menu-button.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: -2px; right: -2px;
  z-index: 60;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 7px 0 var(--ink);
  padding: 7px;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 2px solid var(--ink);
  background: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.mobile-drawer .drawer-cta { background: var(--pink); color: #fff; justify-content: center; }

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

.hero {
  position: relative;
  border: 2px solid var(--ink);
  border-bottom: 0;
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--topbar-height) - var(--site-frame) * 2);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.07;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(24px, 4vh, 64px) clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--paper);
  background: var(--ink);
  padding: 0 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-sub {
  max-width: 54ch;
  margin-top: 22px;
  font-size: clamp(12px, 1.15vw, 14px);
  font-weight: 500;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-actions .cta-button { min-height: 46px; padding: 0 20px; font-size: 13px; border-width: 3px; box-shadow: 5px 5px 0 var(--ink); }
.hero-actions .cta-button:hover { box-shadow: 2px 2px 0 var(--ink); }
.hero-actions .ghost-button { min-height: 46px; padding: 0 20px; font-size: 13px; border-width: 3px; box-shadow: 5px 5px 0 var(--ink); }
.hero-actions .ghost-button:hover { box-shadow: 2px 2px 0 var(--ink); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  max-width: 560px;
}
.stat-chip {
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 12px 12px 11px;
  display: grid;
  gap: 5px;
}
.stat-chip strong {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-chip span {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
}
.stat-chip:nth-child(1) { background: var(--acid); }
.stat-chip:nth-child(2) { background: var(--yellow); }
.stat-chip:nth-child(3) { background: #fff; }

/* ---- hero chart ---- */

.hero-chart {
  border: 3px solid var(--ink);
  background: var(--ink);
  box-shadow: 10px 10px 0 var(--pink);
  color: var(--paper);
}

.chart-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 2px solid var(--paper);
}
.chart-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.chart-px {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--acid);
}
.chart-px small {
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-left: 6px;
}
.chart-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--acid);
  color: var(--acid);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.chart-badge .live-dot { background: var(--acid); }

.chart-body {
  position: relative;
  background: #0a0a0c;
  overflow: hidden;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
  font-family: var(--font-mono);
}
.chart-svg .grid {
  stroke: rgba(244, 240, 230, 0.1);
  stroke-width: 1;
}
.chart-svg .grid-v { stroke: rgba(244, 240, 230, 0.06); }
.chart-svg .pane-split {
  stroke: rgba(244, 240, 230, 0.18);
  stroke-width: 1;
}
.chart-svg .axis-label {
  fill: rgba(244, 240, 230, 0.42);
  font-size: 9px;
  font-weight: 700;
}
.chart-svg .vol-tag { fill: rgba(244, 240, 230, 0.28); letter-spacing: 0.12em; }
.chart-svg .area-fill { fill: url(#area-grad); }
.chart-svg .line-main {
  fill: none;
  stroke: none;
}
.chart-svg .line-dead {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 5 4;
  opacity: 0;
}
.chart-svg .wick { stroke-width: 1.4; }
.chart-svg .wick.up { stroke: var(--acid); }
.chart-svg .wick.dn { stroke: #a0a0a4; }
.chart-svg .cdl.up { fill: var(--acid); }
.chart-svg .cdl.dn {
  fill: #1a1a1e;
  stroke: #a0a0a4;
  stroke-width: 1.2;
}
.chart-svg .vol.up { fill: var(--acid); opacity: 0.5; }
.chart-svg .vol.dn { fill: #8b8b8f; opacity: 0.42; }
.chart-svg .event-line {
  stroke-width: 1.15;
  stroke-dasharray: 3 3;
}
.chart-svg .event-line.vamp { stroke: #8b8b8f; }
.chart-svg .event-line.inj { stroke: var(--acid); }
.chart-svg .px-line {
  stroke: var(--acid);
  stroke-width: 1;
  stroke-dasharray: 4 3;
  opacity: 0.55;
}
.chart-svg .evt-tag { stroke: var(--ink); stroke-width: 1.5; }
.chart-svg .vamp-tag { fill: #8b8b8f; }
.chart-svg .inj-tag { fill: var(--acid); }
.chart-svg .evt-text {
  fill: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.chart-svg .px-tag { fill: var(--acid); }
.chart-svg .px-text {
  fill: #fff;
  font-size: 8px;
  font-weight: 800;
}
.plot-clip-rect {
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0);
}
.hero-chart.is-drawn .plot-clip-rect {
  animation: clip-open 2.2s ease-out forwards;
}
.hero-chart.is-drawn .line-dead {
  animation: fade-line 0.7s ease-out 1.5s forwards;
}
@keyframes clip-open { to { transform: scaleX(1); } }
@keyframes fade-line { to { opacity: 0.85; } }

.chart-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-top: 2px solid var(--paper);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.chart-foot .ok { color: var(--acid); }
.chart-foot .bad { color: var(--orange); }
.chart-foot .swatch {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  vertical-align: middle;
  border: 1px solid var(--paper);
}
.swatch-up { background: var(--acid); }
.swatch-dead { background: var(--orange); }
.chart-meta { opacity: 0.45; }

/* ============ MARQUEE ============ */

.marquee {
  position: relative;
  z-index: 1;
  flex: none;
  margin-top: auto;
  border: 0;
  border-top: 2px solid var(--ink);
  background: var(--acid);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
}
.marquee-group span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.marquee-group i {
  font-style: normal;
  font-weight: 900;
  font-size: 11px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */

.section {
  border: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.section-paper { background: var(--paper); }
.section-yellow { background: var(--yellow); }
.section-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--paper);
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--paper) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}
.section-yellow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.08;
  pointer-events: none;
}

.section-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 48px);
}
.section-inner-narrow { max-width: 880px; }

.section-head { margin-bottom: clamp(34px, 4.5vw, 56px); }
.section-head h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}
.section-sub {
  max-width: 62ch;
  margin-top: 18px;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  line-height: 1.75;
}

/* ============ VAMP STEPS ============ */

.vamp-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: vamp;
}
.vamp-card {
  position: relative;
  border: 3px solid var(--paper);
  background: var(--ink);
  padding: 22px 18px 20px;
  box-shadow: 6px 6px 0 rgba(244, 240, 230, 0.22);
  transition: transform 0.15s, box-shadow 0.15s;
}
.vamp-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--orange);
}
.vamp-num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 3px solid var(--paper);
  background: var(--orange);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}
.vamp-card h3 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.vamp-card p {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  opacity: 0.85;
}
.vamp-card-dead { background: var(--orange); color: var(--ink); border-color: var(--ink); }
.vamp-card-dead .vamp-num { background: var(--ink); color: var(--orange); border-color: var(--ink); }
.vamp-card-dead p { opacity: 1; }
.vamp-card-dead:hover { box-shadow: 8px 8px 0 var(--paper); }

.section-verdict {
  margin-top: clamp(34px, 4vw, 52px);
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
}
.section-verdict em { font-style: normal; color: var(--orange); }

/* ============ PROTOCOL ============ */

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.proto-card {
  grid-column: span 2;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 24px 20px 22px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.proto-card:nth-child(4),
.proto-card:nth-child(5) { grid-column: span 3; }
.proto-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}
.proto-step {
  display: inline-block;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.proto-card h3 {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.proto-card p {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.7;
}
.proto-card-accent { background: var(--acid); }
.proto-card-accent .proto-step { background: #fff; }

/* ============ COUNCIL ============ */

.council-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.seat-card {
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 18px 14px 16px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.seat-card:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: #fff;
}
.seat-id {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 5px;
  margin-bottom: 12px;
}
.seat-card h3 {
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}
.seat-card p {
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.65;
}

.vote-panel {
  margin-top: 40px;
  border: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  padding: clamp(24px, 3vw, 40px);
  align-items: center;
}
.vote-copy h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--acid);
}
.vote-copy p {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.75;
}
.vote-copy b { color: var(--acid); }

.vote-blocks {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.vote-block {
  display: grid;
  place-items: center;
  width: clamp(38px, 4vw, 52px);
  height: clamp(38px, 4vw, 52px);
  border: 3px solid var(--paper);
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  background: transparent;
}
.vote-block.filled { background: var(--acid); border-color: var(--acid); }
.vote-caption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--acid);
}

/* ============ FLYWHEEL ============ */

.flywheel-loop {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.fly-node {
  flex: 1 1 130px;
  min-width: 120px;
  max-width: 170px;
  border: 3px solid var(--paper);
  padding: 16px 14px;
  display: grid;
  gap: 10px;
  align-content: start;
  background: var(--ink);
  transition: transform 0.15s;
}
.fly-node:hover { transform: translateY(-4px); }
.fly-idx {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  opacity: 0.6;
}
.fly-node p {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.fly-node-accent { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.fly-node-accent .fly-idx { opacity: 0.75; }
.fly-node-loop { background: var(--pink); color: #fff; border-color: var(--pink); }

.fly-arrow {
  align-self: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--acid);
  flex: none;
}

.fly-return {
  flex-basis: 100%;
  text-align: center;
  margin-top: 18px;
}
.fly-return span {
  display: inline-block;
  border: 2px dashed var(--acid);
  color: var(--acid);
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.flywheel-outcomes {
  margin-top: clamp(34px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.outcome {
  border: 2px solid var(--paper);
  padding: 18px 16px;
  display: grid;
  gap: 8px;
}
.outcome strong {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--acid);
}
.outcome span {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.85;
}

/* ============ RIGHTS / $VCT ============ */

.rights-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.right-item {
  display: flex;
  gap: 16px;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 22px 20px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.right-item:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}
.right-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 3px solid var(--ink);
  background: var(--acid);
  font-size: 20px;
  font-weight: 900;
}
.right-item h3 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.right-item p {
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.7;
}

.final-cta {
  margin-top: clamp(40px, 5vw, 64px);
  border: 4px solid var(--ink);
  background: var(--pink);
  box-shadow: 12px 12px 0 var(--ink);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.12;
  pointer-events: none;
}
.final-cta-copy { position: relative; }
.final-cta h3 {
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
}
.final-cta h3 em {
  font-style: normal;
  background: var(--ink);
  color: var(--acid);
  padding: 0 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.final-cta .cta-big { position: relative; background: var(--acid); color: var(--ink); }

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

.section-faq .section-inner { padding-top: clamp(40px, 5vw, 70px); }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 900;
  letter-spacing: -0.01em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-size: 18px;
  font-weight: 900;
  transition: transform 0.15s, background 0.15s;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--acid);
}
.faq-item p {
  padding: 0 20px 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75;
  max-width: 72ch;
}
.faq-item summary:hover { background: var(--paper); }

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

.site-footer {
  border: 2px solid var(--ink);
  background: var(--paper);
}
.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 52px) clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
.brand-footer { font-size: 30px; }
.footer-brand p {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding-bottom: 3px;
  transition: border-color 0.15s, color 0.15s;
}
.footer-nav a:hover { color: var(--blue); border-color: var(--blue); }

.footer-bar {
  border-top: 2px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px clamp(20px, 4vw, 48px);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.footer-warning { opacity: 0.75; }

/* ============ FAUCET MODAL ============ */

.faucet-backdrop[hidden] { display: none; }

.faucet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: start center;
  padding: max(48px, 6dvh) 16px 24px;
  background: rgba(13, 13, 15, 0.82);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  overflow-y: auto;
  animation: faucet-fade 0.16s both;
}
@keyframes faucet-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.faucet-modal {
  position: relative;
  width: min(680px, 100%);
  border: 4px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 12px 12px 0 var(--acid);
  padding: clamp(22px, 4vw, 40px);
  overflow: hidden;
}
.faucet-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--paper) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.05;
  pointer-events: none;
}
.faucet-modal > * { position: relative; }

.faucet-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid var(--paper);
  background: var(--pink);
  color: #fff;
  box-shadow: 4px 4px 0 rgba(244, 240, 230, 0.35);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.13s, box-shadow 0.13s;
}
.faucet-close:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(244, 240, 230, 0.35);
}

.faucet-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--acid);
  margin: 0 52px 20px 0;
}

.treasury-block {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  margin-bottom: 6px;
}
.treasury-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: 0.7;
}
.treasury-value {
  font-size: clamp(38px, 6vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffd94d;
  text-shadow: 3px 3px 0 rgba(176, 125, 0, 0.45);
}
.treasury-note {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.45;
}

.faucet-stage {
  display: grid;
  place-items: center;
  margin: 4px 0 10px;
}
.faucet-svg {
  width: min(300px, 70vw);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(255, 217, 77, 0.22));
}

/* drip + splash animation (3.2s loop).
   transform-box: fill-box is required. Without it SVG transforms
   scale around the view-box origin (top-left) and the drop flies
   across the graphic instead of falling straight down. */
.drip {
  transform-box: fill-box;
  transform-origin: 50% 8%;
  animation: drip-fall 3.2s cubic-bezier(0.5, 0, 0.9, 0.6) infinite;
  opacity: 0;
}
@keyframes drip-fall {
  0%   { transform: translateY(0) scale(0.25); opacity: 0; }
  10%  { transform: translateY(0) scale(0.6); opacity: 1; }
  36%  { transform: translateY(0) scale(1); opacity: 1; }
  68%  { transform: translateY(66px) scale(1); opacity: 1; }
  72%  { transform: translateY(71px) scale(0.5); opacity: 0; }
  100% { transform: translateY(71px) scale(0.5); opacity: 0; }
}
.ripple {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  opacity: 0;
  animation: ripple-out 3.2s ease-out infinite;
}
.ripple-2 { animation-delay: 0.12s; }
@keyframes ripple-out {
  0%, 69% { transform: scale(0); opacity: 0; }
  73%  { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}
.splash {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: splash-hop 3.2s ease-out infinite;
}
@keyframes splash-hop {
  0%, 69% { transform: translate(0, 0); opacity: 0; }
  72%  { opacity: 1; }
  84%  { transform: translate(-8px, -18px); opacity: 1; }
  94%  { transform: translate(-12px, 4px); opacity: 0; }
  100% { transform: translate(-12px, 4px); opacity: 0; }
}
.splash-r { animation-name: splash-hop-r; animation-delay: 0.05s; }
@keyframes splash-hop-r {
  0%, 69% { transform: translate(0, 0); opacity: 0; }
  72%  { opacity: 1; }
  84%  { transform: translate(9px, -16px); opacity: 1; }
  94%  { transform: translate(13px, 4px); opacity: 0; }
  100% { transform: translate(13px, 4px); opacity: 0; }
}
.shine { animation: shine-pulse 3.2s ease-in-out infinite; }
@keyframes shine-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.35; }
}
/* sparkles are positioned via the SVG transform attribute, so only
   opacity may be animated here (a CSS transform would override it) */
.sparkle {
  opacity: 0;
  animation: sparkle-twinkle 3.2s ease-in-out infinite;
}
.sparkle-2 { animation-delay: 1.6s; }
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.9; }
}

/* trade feed */
.faucet-feed { margin-top: 14px; }
.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 2px solid var(--paper);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.feed-head h3 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.feed-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #ffd94d;
  color: #ffd94d;
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.feed-badge .live-dot { background: #ffd94d; }

.trade-list {
  list-style: none;
  display: grid;
  gap: 6px;
  max-height: 264px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--paper) transparent;
}
.trade-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(244, 240, 230, 0.25);
  background: #141416;
  padding: 10px 12px;
  transition: border-color 0.15s, transform 0.15s;
}
.trade-row:hover {
  border-color: var(--paper);
  transform: translateX(2px);
}
.trade-side {
  display: grid;
  place-items: center;
  min-width: 46px;
  padding: 5px 8px;
  border: 2px solid var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.trade-side-buy { background: var(--acid); }
.trade-side-sell { background: #ffd94d; }
.trade-what { display: grid; gap: 3px; min-width: 0; }
.trade-token {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.trade-note {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trade-nums {
  display: grid;
  gap: 3px;
  justify-items: end;
  text-align: right;
}
.trade-sol {
  font-size: 12px;
  font-weight: 900;
}
.trade-meta {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.55;
}
.feed-note {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.7;
  opacity: 0.45;
}

body.modal-open { overflow: hidden; }

/* ============ REVEAL ANIMATION ============ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .plot-clip-rect { transform: none; animation: none; }
  .chart-svg .line-dead { opacity: 0.85; animation: none; }
  .drip, .ripple, .splash, .shine, .sparkle { animation: none; }
  .drip { opacity: 1; }
  .sparkle { opacity: 0.8; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1080px) {
  .protocol-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proto-card, .proto-card:nth-child(4), .proto-card:nth-child(5) { grid-column: span 1; }
  .proto-card:nth-child(5) { grid-column: span 2; }
  .council-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vamp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-chart { max-width: 640px; }
  .tabs, .status-strip { display: none; }
  .mobile-menu-button { display: grid; }
  .topbar { grid-template-columns: auto 1fr auto auto; position: relative; top: 0; }
  .mobile-drawer.is-open { display: flex; }
  .vote-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .vamp-steps { grid-template-columns: 1fr; }
  .protocol-grid { grid-template-columns: 1fr; }
  .proto-card:nth-child(5) { grid-column: span 1; }
  .council-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rights-list { grid-template-columns: 1fr; }
  .flywheel-outcomes { grid-template-columns: 1fr; }
  .fly-arrow { display: none; }
  .fly-node { flex-basis: 44%; max-width: none; }
  .final-cta { justify-content: center; text-align: center; }
  .footer-bar { justify-content: center; text-align: center; }
}
