/* ============================================================
   SLUSH — inflatable sticker universe on pastel paper
   Design tokens
   ============================================================ */
:root {
  /* brand colors */
  --blue: #4da2ff;
  --mint: #55db9c;
  --lavender: #e9ccff;
  --ember: #fb4903;
  --sunburst: #ffd731;
  --violet: #5c4ade;

  /* neutrals */
  --carbon: #000000;
  --gray: #cccccc;
  --mist: #e9e9e9;
  --sky: #dceeff;
  --paper: #ffffff;

  /* type */
  --font-display: "Antonio", "Bowlby One", "Arial Black", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* scale (minor third 1.2 from 20px base) */
  --fs-display-lg: clamp(120px, 22vw, 640px);
  --fs-display-xl: clamp(88px, 16vw, 400px);
  --fs-display: clamp(64px, 11vw, 281px);
  --fs-display-sm: clamp(48px, 8vw, 200px);
  --fs-display-xs: clamp(40px, 6.5vw, 160px);
  --fs-70: clamp(36px, 5vw, 70px);
  --fs-heading: clamp(36px, 4.5vw, 64px);
  --fs-heading-sm: clamp(24px, 2.6vw, 30px);
  --fs-sub: clamp(20px, 2.2vw, 24px);
  --fs-body: 16px;
  --fs-meta: 13px;

  /* shape */
  --r-card: 28px;
  --r-card-lg: 40px;
  --r-icon: 16px;
  --r-pill: 1600px;

  /* spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  --max-w: 1440px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  letter-spacing: -0.010em;
  color: var(--carbon);
  background: var(--paper);
  overflow-x: clip;
}

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

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

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: normal;
  line-height: 0.76;
  text-transform: uppercase;
  text-wrap: balance;
}

.display--xl { font-size: var(--fs-display-xl); }
.display--lg { font-size: var(--fs-display-lg); }
.display--sm { font-size: var(--fs-display-sm); }
.display--xs { font-size: var(--fs-display-xs); }
.display--final { font-size: var(--fs-display); }

.overline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-meta);
  letter-spacing: 0.032em;
  text-transform: uppercase;
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  border: 1px solid var(--carbon);
  border-radius: var(--r-pill);
  background: var(--paper);
}

.heading-sm {
  font-weight: 700;
  font-size: var(--fs-heading-sm);
  line-height: 1.1;
  letter-spacing: -0.010em;
}

.heading {
  font-weight: 700;
  font-size: var(--fs-heading);
  line-height: 1;
  letter-spacing: -0.010em;
}

.subheading {
  font-weight: 500;
  font-size: var(--fs-sub);
  line-height: 1.2;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.030em;
  text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid var(--carbon);
  border-radius: var(--r-card);
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0) rotate(0);
}

.btn--pill {
  border-radius: var(--r-pill);
}

.btn--dark {
  background: var(--carbon);
  color: var(--paper);
}

.btn--dark:hover {
  background: var(--violet);
  color: var(--paper);
}

.btn--light {
  background: var(--paper);
  color: var(--carbon);
}

.btn--light:hover {
  background: var(--sunburst);
}

.btn--white {
  background: var(--paper);
  color: var(--carbon);
  border-color: var(--paper);
}

.btn--white:hover {
  background: var(--sunburst);
  border-color: var(--sunburst);
  color: var(--carbon);
}

.btn--text {
  background: transparent;
  color: var(--carbon);
  border: 1px solid var(--carbon);
  border-radius: var(--r-pill);
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.032em;
}

.btn--text:hover {
  background: var(--sky);
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--ember);
  border-bottom: 1px solid var(--carbon);
  padding: var(--space-3) 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--carbon);
}

.marquee__track .dot {
  font-family: var(--font-body);
  font-style: normal;
  color: var(--carbon);
  font-size: 20px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Nav
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sky);
  padding: var(--space-3) var(--gutter);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 12px 10px 22px;
  background: var(--paper);
  border: 1px solid var(--carbon);
  border-radius: var(--r-pill);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-links a {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.032em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--r-pill);
  transition: background-color 0.15s ease;
}

.nav-links a:hover {
  background: var(--mist);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--carbon);
  border-radius: var(--r-pill);
}

/* ============================================================
   Sections / bands — scroll rhythm via alternating paper colors
   ============================================================ */
.band {
  position: relative;
  padding: var(--space-8) var(--gutter);
  overflow: hidden;
}

.band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.band--all {
  background: var(--paper);
}

.band--defi {
  background: var(--gray);
}

.band--features {
  background: var(--paper);
}

.band--reach {
  background: var(--sky);
}

.band--social {
  background: var(--paper);
}

.band--humans {
  background: var(--mist);
}

.band--ecosystem {
  background: var(--gray);
}

.band--newsletter {
  background: var(--mint);
}

.band--support {
  background: var(--sky);
}

.band--final {
  background: var(--carbon);
  color: var(--paper);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--sky);
  padding: clamp(40px, 7vw, 96px) var(--gutter) clamp(56px, 8vw, 120px);
  overflow: hidden;
}

.hero__ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 96vw);
  height: auto;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.hero__title {
  font-size: var(--fs-display-lg);
  line-height: 0.75;
  color: var(--carbon);
  /* crushed leading makes it a sculptural block */
}

.hero__tag {
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.032em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--carbon);
  border-radius: var(--r-pill);
}

/* ============================================================
   Stickers
   ============================================================ */
.sticker-cluster {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.sticker-cluster--soft {
  z-index: 2;
}

.sticker {
  position: absolute;
  display: block;
  animation: sticker-float 6s ease-in-out infinite;
}

.sticker:nth-child(2n) { animation-delay: -2s; }
.sticker:nth-child(3n) { animation-delay: -4s; }

@keyframes sticker-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

/* ============================================================
   ALL THINGS SUI band
   ============================================================ */
.band__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.band__title {
  font-size: var(--fs-display);
  line-height: 0.78;
}

.band__title--sm {
  font-size: var(--fs-display-sm);
}

.band__title--xs {
  font-size: var(--fs-display-xs);
}

.band__sub {
  font-weight: 500;
  font-size: var(--fs-sub);
  line-height: 1.3;
  max-width: 34em;
}

.band__inner.band__copy-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

/* QR card */
.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--carbon);
  border-radius: var(--r-card-lg);
  padding: var(--space-6);
  max-width: 360px;
  margin: 0 auto;
  transform: rotate(2deg);
  transition: transform 0.2s ease;
}

.qr-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.qr-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sticker--qr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--violet);
  border: 1px solid var(--carbon);
  border-radius: var(--r-icon);
  transform: rotate(-8deg);
}

.qr-card__code {
  width: 200px;
  height: 200px;
  border: 2px solid var(--carbon);
  border-radius: 12px;
}

.qr-card__hint {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.032em;
  text-transform: uppercase;
}

/* ============================================================
   DeFi band
   ============================================================ */
.band__head {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
  align-items: flex-start;
}

.band__head--center {
  align-items: center;
  text-align: center;
}

.defi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--carbon);
  border-radius: var(--r-card);
  padding: var(--space-5);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.card__emoji {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-icon);
  background: var(--paper);
  border: 1px solid var(--carbon);
}

.card__body {
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: 1.45;
  flex: 1;
}

.card--blue   { background: var(--blue); }
.card--mint   { background: var(--mint); }
.card--lav    { background: var(--lavender); }
.card--ember  { background: var(--ember); color: var(--paper); }
.card--sun    { background: var(--sunburst); }
.card--violet { background: var(--violet); color: var(--paper); }

.card--blue .btn--dark:hover,
.card--sun .btn--dark:hover { background: var(--violet); }

.card--tall { min-height: 320px; }

.card--link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.card--link:hover {
  transform: translateY(-6px) rotate(1deg);
}

.card__label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.032em;
  text-transform: uppercase;
}

.card__go {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  align-self: flex-end;
  transition: transform 0.18s ease;
}

.card--link:hover .card__go {
  transform: translateX(8px);
}

.defi-bottom {
  margin-top: var(--space-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--carbon);
  padding-top: var(--space-6);
}

.defi-bottom__text {
  font-weight: 700;
  max-width: 30em;
}

.defi-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ============================================================
   Features
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* ============================================================
   Within reach
   ============================================================ */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.card--reach {
  background: var(--paper);
  border-radius: var(--r-card-lg);
  padding: var(--space-6);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-hero {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-7);
}

.text-sticker {
  display: inline-block;
  background: var(--sunburst);
  border: 1px solid var(--carbon);
  border-radius: var(--space-3);
  padding: 0 var(--space-2);
  transform: rotate(-2deg);
  line-height: 0.9;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.quote {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--paper);
  border: 1px solid var(--carbon);
  border-radius: var(--r-card);
  padding: var(--space-5);
}

.quote--featured {
  background: var(--paper);
}

.quote--lav    { background: var(--lavender); }
.quote--sun    { background: var(--sunburst); }
.quote--mint   { background: var(--mint); }
.quote--blue   { background: var(--blue); }
.quote--violet { background: var(--violet); color: var(--paper); }

.quote__stars {
  display: flex;
  gap: 2px;
}

.quote__text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.45;
  flex: 1;
}

.quote__author {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.032em;
  text-transform: uppercase;
}

/* ============================================================
   Crypto for humans
   ============================================================ */
.humans__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}

.human-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

/* ============================================================
   Ecosystem
   ============================================================ */
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  max-width: 900px;
  margin: 0 auto var(--space-7);
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  border: 1px solid var(--carbon);
  border-radius: var(--r-pill);
  transition: transform 0.15s ease;
}

.logo-chip:hover { transform: rotate(-2deg) scale(1.05); }

.logo-chip--white { background: var(--paper); }
.logo-chip--blue { background: var(--blue); }
.logo-chip--violet { background: var(--violet); color: var(--paper); }
.logo-chip--mint { background: var(--mint); }
.logo-chip--sun { background: var(--sunburst); }
.logo-chip--ember { background: var(--ember); color: var(--paper); }
.logo-chip--lav { background: var(--lavender); }

.band--ecosystem .band__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--paper);
  border: 1px solid var(--carbon);
  border-radius: var(--r-card-lg);
  padding: clamp(24px, 5vw, 56px);
  max-width: 760px;
  margin: 0 auto;
}

.newsletter-card__sticker {
  position: absolute;
  top: -40px;
  right: 32px;
  transform: rotate(8deg);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  margin-top: var(--space-2);
}

.newsletter-form__row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.newsletter-form__row input {
  flex: 1;
  min-width: 220px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid var(--carbon);
  border-radius: var(--r-card);
  background: var(--paper);
  color: var(--carbon);
}

.newsletter-form__row input::placeholder {
  color: #7a7a7a;
}

.newsletter-form__consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.newsletter-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--carbon);
}

.newsletter-form__msg {
  font-weight: 700;
  font-size: 14px;
  min-height: 20px;
}

.newsletter-form__msg.is-error { color: var(--ember); }
.newsletter-form__msg.is-success { color: var(--violet); }

/* ============================================================
   Support
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-7);
  align-items: center;
}

.support__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.support__sticker {
  max-width: 300px;
  margin: 0 auto;
  transform: rotate(6deg);
}

/* ============================================================
   Final CTA
   ============================================================ */
.band--final {
  text-align: center;
}

.band--final .band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.band__final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.final-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--paper);
  border-radius: var(--r-pill);
  color: var(--paper);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.social:hover {
  transform: translateY(-3px) rotate(-4deg);
  background: var(--violet);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--carbon);
  padding: var(--space-7) var(--gutter) var(--space-6);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.footer__tag {
  margin-top: var(--space-2);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  justify-content: center;
}

.footer__links a {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.032em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  transition: border-color 0.15s ease;
}

.footer__links a:hover {
  border-color: var(--carbon);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: right;
  font-weight: 500;
  font-size: 13px;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  justify-content: flex-end;
}

.footer__legal-links a {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer__legal-links a:hover {
  text-decoration: underline;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__legal { text-align: left; }
  .footer__legal-links { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--carbon);
    border-radius: var(--r-card);
    padding: var(--space-3);
    gap: var(--space-1);
  }

  .nav-links.is-open { display: flex; }

  .nav-links a {
    display: block;
    padding: 12px 14px;
  }

  .nav-toggle { display: inline-flex; }

  .defi-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
  .human-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support__sticker { display: none; }
  .band__inner.band__copy-wrap { grid-template-columns: 1fr; }
  .band__copy { align-items: center; text-align: center; }
}

@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 18px; font-size: 14px; }

  .hero__actions { flex-direction: column; align-items: stretch; }

  .hero__badges { gap: var(--space-2); }

  .sticker-cluster { opacity: 0.5; }

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer__links { justify-content: flex-start; }

  .display--final { font-size: var(--fs-display-sm); }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .sticker { animation: none; }
  .btn, .card, .card--link, .qr-card, .social, .logo-chip { transition: none; }
  .btn:hover, .card:hover, .card--link:hover, .qr-card:hover, .social:hover, .logo-chip:hover { transform: none; }
}
