/* BullSki Scam — IceBull visual language */
:root {
  --cream: #fff9ec;
  --gold: #f5d547;
  --ice: #e8f4ff;
  --ink: #0a0a0a;
  --night: #0a1f3d;
  --night-2: #0f2a4f;
  --night-3: #14355f;
  --panel: #0d2547;
  --red: #ff3b3b;
  --snow: #ffffff;
  --purple: #7c3aed;
  --green: #4ade80;
  --muted: rgba(232, 244, 255, 0.72);
  --stroke: 3px;
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Bangers", Impact, system-ui, sans-serif;
  --font-head: "Archivo Black", Impact, system-ui, sans-serif;
  --font-body: "Lexend Deca", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 100px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ice);
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, #1a4a86 0%, transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(124, 58, 237, 0.18), transparent 32%),
    radial-gradient(circle at 8% 70%, rgba(255, 59, 59, 0.1), transparent 28%),
    var(--night);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(232, 244, 255, 0.14) 1.1px, transparent 1.1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.35) 70%, transparent);
}

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

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

button,
.btn,
.nav-toggle,
summary {
  font: inherit;
  cursor: pointer;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip,
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  background: transparent;
}

.skip:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--night-2);
  color: var(--ice);
  font-family: var(--font-head);
  border: var(--stroke) solid var(--ink);
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn:focus-visible,
.icon-btn:focus-visible,
.nav a:focus-visible,
.lang:focus-visible,
.faq summary:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-red {
  background: var(--red);
  color: var(--snow);
}

.btn-purple {
  background: var(--purple);
  color: var(--snow);
}

.btn-ice {
  background: var(--ice);
  color: var(--ink);
}

.btn-ghost {
  background: rgba(13, 37, 71, 0.72);
  color: var(--ice);
}

.icon-btn {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
  background: var(--red);
  color: var(--snow);
  box-shadow: var(--shadow-sm);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  width: min(100% - 20px, 1240px);
  margin: 14px auto 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 10px 12px 10px 14px;
  background: color-mix(in srgb, var(--night-2) 82%, transparent);
  border: var(--stroke) solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--snow);
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--snow);
  line-height: 1;
}

.brand-name span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice);
  opacity: 0.92;
}

.nav a:hover {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 12px;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  background: var(--night-3);
  font-family: var(--font-head);
  font-size: 12px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
  background: var(--ice);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 3px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

#nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero {
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 2px dashed var(--red);
  border-radius: 999px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 59, 59, 0.08);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 1.6s infinite;
}

.kicker {
  margin: 18px 0 10px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 128px);
  color: var(--snow);
  text-shadow: 4px 4px 0 var(--ink);
}

.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--gold);
}

.lede {
  max-width: 52ch;
  margin: 18px 0 24px;
  font-size: 17px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ca-box {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 12px 16px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.ca-label {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.ca-box code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ice);
  word-break: break-all;
}

.stamp-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 3px solid currentColor;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  transform: rotate(-8deg);
}

.stamp.red {
  color: var(--red);
}

.stamp.gold {
  color: var(--gold);
  transform: rotate(7deg);
}

.stamp.ice {
  color: var(--ice);
  transform: rotate(-3deg);
}

.hero-art {
  position: relative;
  min-height: 520px;
}

.mascot-card {
  position: relative;
  background: linear-gradient(180deg, #1a5aa8 0%, #0d2547 55%, #07152a 100%);
  border: var(--stroke) solid var(--ink);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-height: 520px;
}

.mascot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.mascot-card svg.scene {
  width: 100%;
  height: 520px;
}

.float-stamp {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  background: var(--red);
  color: var(--snow);
  border: var(--stroke) solid var(--ink);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  box-shadow: var(--shadow-sm);
}

.float-stamp.a {
  top: 28px;
  left: 18px;
  transform: rotate(-12deg);
}

.float-stamp.b {
  top: 64px;
  right: 18px;
  background: var(--gold);
  color: var(--ink);
  transform: rotate(10deg);
}

.float-stamp.c {
  bottom: 28px;
  right: 24px;
  background: var(--ice);
  color: var(--ink);
  transform: rotate(-6deg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px 16px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  color: var(--ice);
  max-width: 16ch;
}

.section-lead {
  max-width: 58ch;
  margin: 16px 0 36px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-card {
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-visual {
  position: relative;
  overflow: hidden;
}

.story-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.story-copy {
  padding: 28px;
}

.story-copy h3 {
  font-family: var(--font-head);
  font-size: 22px;
  margin-bottom: 12px;
}

.story-copy p + p {
  margin-top: 12px;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.feature {
  padding: 22px 18px 24px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  min-height: 220px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 59, 59, 0.14);
  border: 3px solid var(--ink);
  border-radius: 14px;
  color: var(--gold);
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 16px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
}

.trail {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 8px;
}

.trail::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: var(--red);
  border-radius: 4px;
}

.phase {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.phase-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  background: var(--red);
  color: var(--snow);
  border: var(--stroke) solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-head);
  box-shadow: var(--shadow-sm);
}

.phase-body {
  padding: 20px 22px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.phase-body small {
  color: var(--red);
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phase-body h3 {
  margin: 6px 0 8px;
  font-family: var(--font-head);
  font-size: 20px;
}

.phase-body p {
  color: var(--muted);
}

.token-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.ring-wrap {
  display: grid;
  place-items: center;
}

.ring {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--red) 0 40%,
    var(--gold) 40% 58%,
    #38bdf8 58% 75%,
    var(--purple) 75% 85%,
    var(--green) 85% 93%,
    var(--ice) 93% 98%,
    #fb7185 98% 100%
  );
  border: var(--stroke) solid var(--ink);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.ring-inner {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--night);
  border: var(--stroke) solid var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
}

.ring-inner b {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}

.ring-inner span {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alloc {
  display: grid;
  gap: 10px;
}

.alloc-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 14px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

.alloc-row span {
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
}

.alloc-row b {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  padding: 22px 18px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.step i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-head);
  font-style: normal;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 16px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.faq details {
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-size: 15px;
}

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

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  padding: 0 18px 18px;
  color: var(--muted);
}

.dispatch {
  padding: 28px;
  background: linear-gradient(135deg, var(--night-3), var(--panel));
  border: var(--stroke) solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.mail {
  display: flex;
  gap: 10px;
}

.mail input {
  flex: 1;
  min-height: 52px;
  padding: 0 16px;
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  background: var(--night);
  color: var(--ice);
  font: inherit;
}

.mail input:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.site-footer {
  padding: 48px 0 120px;
  position: relative;
  z-index: 1;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 2px solid rgba(232, 244, 255, 0.12);
}

.foot-grid .brand {
  display: inline-flex;
  flex-wrap: nowrap;
  margin-bottom: 14px;
}

.foot-grid h4 {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.foot-grid a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.foot-grid a:hover {
  color: var(--snow);
}

.legal {
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

.buybar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 50;
  transform: translateX(-50%);
  width: min(100% - 20px, 1240px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 10px 12px 10px 20px;
  background: color-mix(in srgb, var(--night) 88%, transparent);
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.buybar p {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coins {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coin {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-family: var(--font-head);
  background: var(--ice);
  color: var(--ink);
}

/* Complaints grid */
.complaints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.complaint-card {
  padding: 22px 20px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.complaint-author {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.complaint-card blockquote {
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  color: var(--muted);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
}

.complaint-card blockquote + blockquote {
  margin-top: 10px;
}

/* SSL banner */
.ssl-banner {
  margin-top: 28px;
  padding: 24px;
  background: var(--panel);
  border: var(--stroke) solid var(--gold);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.ssl-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Evidence grid */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.evidence-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--panel);
  border: var(--stroke) solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.evidence-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow);
}

.evidence-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(245, 213, 71, 0.12);
  border: 3px solid var(--ink);
  border-radius: 14px;
  font-size: 22px;
  line-height: 1;
}

.evidence-item h3 {
  font-family: var(--font-head);
  font-size: 15px;
  margin-bottom: 4px;
}

.evidence-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Compare list */
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 244, 255, 0.1);
  color: var(--muted);
  font-size: 15px;
}

.compare-list li::before {
  content: "→ ";
  color: var(--ice);
}

.compare-list li:last-child {
  border-bottom: none;
}

.mountains {
  height: 90px;
  margin-top: 12px;
  background:
    linear-gradient(180deg, transparent, rgba(7, 21, 42, 0.65)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath fill='%23071a33' d='M0 80 L140 30 L260 70 L420 10 L560 64 L720 22 L880 78 L1040 28 L1200 72 V120 H0Z'/%3E%3Cpath fill='%230a1f3d' d='M0 100 L180 50 L340 90 L500 40 L680 88 L860 46 L1200 96 V120 H0Z'/%3E%3C/svg%3E")
      center / 100% 100% no-repeat;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .token-layout,
  .dispatch,
  .foot-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  #nav-check:checked ~ .nav-bar .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 18px;
    background: var(--night-2);
    border: var(--stroke) solid var(--ink);
    border-radius: 18px;
    box-shadow: var(--shadow);
    z-index: 50;
  }

  #nav-check:checked ~ .nav-bar .nav a {
    padding: 12px 16px;
    font-size: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-bar {
    position: relative;
  }

  .hero-art {
    order: 1;
  }

  .section h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 90px;
  }

  body {
    font-size: 15px;
    padding-bottom: 120px;
  }

  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding: 32px 0 20px;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 80px);
  }

  .kicker {
    font-size: clamp(22px, 5vw, 32px);
    margin: 12px 0 6px;
  }

  .lede {
    font-size: 15px;
    margin: 12px 0 18px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 15px;
  }

  .hero-art,
  .mascot-card {
    min-height: 300px;
  }

  .mascot-card img,
  .mascot-card svg.scene {
    min-height: 300px;
    height: 300px;
  }

  .float-stamp {
    font-size: 16px;
    padding: 7px 10px;
  }

  .float-stamp.a {
    top: 14px;
    left: 10px;
  }

  .float-stamp.b {
    top: 42px;
    right: 10px;
  }

  .float-stamp.c {
    bottom: 14px;
    right: 12px;
  }

  .ca-box {
    padding: 10px 12px;
    font-size: 12px;
  }

  .ca-box code {
    font-size: 11px;
  }

  .stamp-row {
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .stamp {
    font-size: 14px;
    padding: 4px 10px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat b {
    font-size: 32px;
  }

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

  .evidence-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .evidence-item {
    padding: 16px;
    gap: 12px;
  }

  .evidence-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .complaints-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .complaint-card {
    padding: 16px 14px;
  }

  .complaint-card blockquote {
    font-size: 14px;
    padding-left: 12px;
  }

  .ssl-banner {
    padding: 18px 16px;
  }

  .ssl-label {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section h2 {
    font-size: clamp(32px, 7vw, 52px);
    max-width: none;
  }

  .section-lead {
    font-size: 15px;
    margin: 12px 0 24px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .split {
    gap: 24px;
  }

  .story-card {
    border-radius: 20px;
  }

  .story-visual {
    height: auto;
  }

  .story-copy {
    padding: 20px 16px;
  }

  .story-copy h3 {
    font-size: 18px;
  }

  .compare-list li {
    font-size: 14px;
    padding: 6px 0;
  }

  .phase {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .phase-num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .phase-body {
    padding: 16px;
  }

  .phase-body h3 {
    font-size: 16px;
  }

  .faq summary {
    font-size: 15px;
    padding: 16px;
    min-height: 52px;
  }

  .faq-body {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .dispatch {
    padding: 24px 16px;
  }

  .foot-grid {
    gap: 28px;
  }

  .buybar {
    border-radius: 22px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 10px 14px;
    gap: 10px;
    bottom: 8px;
  }

  .buybar p {
    font-size: 11px;
  }

  .buybar .btn {
    min-height: 44px;
    font-size: 13px;
    padding: 10px 18px;
  }

  .brand-name {
    font-size: 22px;
  }

  .btn-purple {
    display: none;
  }

  .site-header {
    top: 8px;
    margin: 8px auto 0;
    width: min(100% - 16px, 1240px);
  }

  .nav-bar {
    min-height: 58px;
    padding: 6px 10px;
    border-radius: 22px;
  }

  .mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 12px;
  }

  .btn {
    min-height: 48px;
    padding: 10px 18px;
    font-size: 14px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 42px;
  }

  .kicker {
    font-size: 20px;
  }

  .stat b {
    font-size: 28px;
  }

  .section h2 {
    font-size: 28px;
  }

  .buybar p {
    font-size: 10px;
  }
}

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

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

@media print {
  .buybar,
  .site-header,
  .nav-toggle,
  body::before {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    padding-bottom: 0;
  }

  .section {
    break-inside: avoid;
  }
}

/* Buybar snow */
.buybar {
  overflow: hidden;
}

.snow-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  animation: snowfall linear infinite;
}

.snowflake:nth-child(1)  { left: 5%;  font-size: 8px;  animation-duration: 4s;  animation-delay: 0s;   opacity: 0.4; }
.snowflake:nth-child(2)  { left: 12%; font-size: 6px;  animation-duration: 5.5s; animation-delay: 0.8s; opacity: 0.3; }
.snowflake:nth-child(3)  { left: 22%; font-size: 10px; animation-duration: 3.8s; animation-delay: 1.5s; opacity: 0.5; }
.snowflake:nth-child(4)  { left: 33%; font-size: 7px;  animation-duration: 6s;  animation-delay: 0.3s; opacity: 0.35; }
.snowflake:nth-child(5)  { left: 42%; font-size: 9px;  animation-duration: 4.5s; animation-delay: 2s;   opacity: 0.45; }
.snowflake:nth-child(6)  { left: 55%; font-size: 6px;  animation-duration: 5s;  animation-delay: 1s;   opacity: 0.3; }
.snowflake:nth-child(7)  { left: 64%; font-size: 8px;  animation-duration: 4.2s; animation-delay: 0.5s; opacity: 0.4; }
.snowflake:nth-child(8)  { left: 73%; font-size: 10px; animation-duration: 5.8s; animation-delay: 1.8s; opacity: 0.5; }
.snowflake:nth-child(9)  { left: 80%; font-size: 7px;  animation-duration: 3.5s; animation-delay: 2.5s; opacity: 0.35; }
.snowflake:nth-child(10) { left: 88%; font-size: 6px;  animation-duration: 6.2s; animation-delay: 0.2s; opacity: 0.3; }
.snowflake:nth-child(11) { left: 93%; font-size: 9px;  animation-duration: 4.8s; animation-delay: 1.2s; opacity: 0.4; }
.snowflake:nth-child(12) { left: 97%; font-size: 8px;  animation-duration: 5.3s; animation-delay: 0.7s; opacity: 0.35; }

@keyframes snowfall {
  0%   { top: -12px; transform: translateX(0); }
  25%  { transform: translateX(8px); }
  50%  { transform: translateX(-6px); }
  75%  { transform: translateX(4px); }
  100% { top: calc(100% + 12px); transform: translateX(-2px); }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
