/* ============================================================
   Chero — Gen-Z premium redesign
   Yellow #F5C518 · Black #1A1A1A · Off-white #F4F4F0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --yellow: #F5C518;
  --black: #111110;
  --offwhite: #F4F4F0;
  --muted: #888884;
  --hairline-light: rgba(244,244,240,0.1);
  --hairline-dark: rgba(26,26,26,0.1);
  --nav-h: 56px;
  --pad-x: clamp(24px, 6vw, 96px);
  --section-y: clamp(100px, 14vw, 200px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--offwhite);
  color: var(--black);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.011em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: 0; color: inherit; }
main { flex: 1; }
::selection { background: var(--yellow); color: var(--black); }

/* Custom cursor only on pointer devices */
@media (hover: hover) and (pointer: fine) {
  html { cursor: none; }
  body { cursor: none; }
  a, button { cursor: none; }
}

/* ============================================================ GRAIN — static, no animation (mobile safe) */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}

/* ============================================================ CURSOR */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
  will-change: transform;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(245, 197, 24, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, opacity 0.3s;
  will-change: transform;
}
.cursor-dot.hovering { width: 14px; height: 14px; }
.cursor-ring.hovering { width: 56px; height: 56px; border-color: rgba(245,197,24,0.8); }
.cursor-dot.clicking { width: 6px; height: 6px; opacity: 0.7; }

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ============================================================ RAISING BAR */
.raising-bar {
  background: var(--yellow);
  text-align: center;
  padding: 9px var(--pad-x);
  position: relative;
  z-index: 600;
}
.raising-bar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: gap 0.2s var(--ease);
}
.raising-bar a:hover { gap: 14px; }
.raising-bar-dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}
.raising-bar-arrow {
  opacity: 0.6;
  font-size: 14px;
}

/* ============================================================ NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--nav-h);
  border-bottom: 1px solid var(--hairline-dark);
  background: rgba(244, 244, 240, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav.dark {
  background: rgba(17, 17, 16, 0.75);
  border-bottom-color: var(--hairline-light);
}
.nav-inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--black);
}
.nav.dark .brand { color: var(--offwhite); }
.brand .dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  margin-left: 3px;
  transform: translateY(-2px);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav.dark .nav-links a { color: var(--offwhite); }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 14px;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px; height: 1.5px;
  background: var(--black);
  transition: background 0.3s;
}
.nav.dark .nav-toggle span,
.nav.dark .nav-toggle span::before,
.nav.dark .nav-toggle span::after { background: var(--offwhite); }
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: var(--black);
  transition: transform 0.25s var(--ease), background 0.3s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--pad-x) 24px;
    background: rgba(244, 244, 240, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--hairline-dark);
  }
  .nav.dark.open .nav-links {
    background: rgba(17,17,16,0.96);
    border-bottom-color: var(--hairline-light);
  }
  .nav.open .nav-links a {
    width: 100%;
    padding: 14px 0;
    font-size: 17px;
    border-bottom: 1px solid var(--hairline-dark);
    opacity: 1;
  }
  .nav.open .nav-cta { display: inline-block; margin-top: 16px; }
  .nav.open .nav-toggle span { background: transparent; }
  .nav.open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
  .nav.open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }
}

/* ============================================================ MARQUEE */
.marquee-wrap {
  overflow: hidden;
  background: var(--yellow);
  padding: 13px 0;
  border-top: 1px solid rgba(26,26,26,0.12);
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.marquee-wrap.dark {
  background: var(--black);
  border-color: var(--hairline-light);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 32px;
  color: var(--black);
}
.marquee-wrap.dark .marquee-item { color: var(--yellow); }
.marquee-sep {
  color: rgba(26,26,26,0.4);
}
.marquee-wrap.dark .marquee-sep { color: rgba(245,197,24,0.4); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================ SECTIONS */
.section { padding: var(--section-y) var(--pad-x); }
.section.dark {
  background: var(--black);
  color: var(--offwhite);
}
.container { max-width: 1180px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.eyebrow .pip {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================ TYPE */
.display {
  font-weight: 900;
  font-size: clamp(52px, 9.5vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.048em;
}
.display .accent { color: var(--yellow); }
.h1 {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.038em;
}
.h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.022em;
}
.lede {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.small { font-size: 14px; color: var(--muted); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { box-shadow: 0 12px 40px rgba(245,197,24,0.45); }
.btn-black { background: var(--black); color: var(--offwhite); }
.btn-black:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.btn-outline {
  background: transparent;
  color: var(--offwhite);
  border: 1px solid rgba(244,244,240,0.3);
}
.btn-outline:hover { border-color: var(--offwhite); }
.btn-lg { padding: 20px 32px; font-size: 17px; }
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
  font-size: 1.1em;
}
.btn:hover .arrow { transform: translateX(5px); }

/* ============================================================ HERO */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--offwhite);
  color: var(--black);
  padding: clamp(64px, 10vw, 120px) var(--pad-x) clamp(64px, 8vw, 96px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* radial yellow glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(245,197,24,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Hero two-column split */
.hero-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-height: calc(100vh - var(--nav-h));
}
.hero-left {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
}
.hero-right {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Offer card — fills right column */
.hero-offer-card {
  background: var(--black);
  color: var(--offwhite);
  border-radius: 36px;
  padding: 56px 48px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18);
}
.hero-offer-card::before {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 120%; height: 300px;
  background: radial-gradient(circle, rgba(245,197,24,0.18), transparent 60%);
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0); box-shadow: 0 40px 100px rgba(0,0,0,0.18); }
  50%       { transform: translateY(-16px); box-shadow: 0 60px 120px rgba(0,0,0,0.22); }
}
.hoc-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.hoc-num {
  font-size: clamp(96px, 13vw, 180px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  color: var(--offwhite);
}
.hoc-num span {
  color: var(--yellow);
  display: block;
  animation: pulse-scale 2.4s ease-in-out infinite;
}
@keyframes pulse-scale {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.hoc-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 500;
  color: rgba(244,244,240,0.45);
  line-height: 1.6;
  margin-top: 24px;
}

@media (max-width: 860px) {
  .hero-grid { flex-direction: column; min-height: auto; gap: 40px; }
  .hero-left { flex: none; padding-right: 0; }
  .hero-right { flex: none; width: 100%; }
  .hero-offer-card { padding: 40px 32px; }
}

.hero h1 { max-width: 12ch; }
.hero-sub {
  margin-top: 32px;
  max-width: 36ch;
}
.hero-sub .lede {
  color: rgba(26,26,26,0.65);
  margin-bottom: 8px;
}
.hero-sub .small {
  color: var(--muted);
  font-size: 13px;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 12px 16px;
  flex-wrap: wrap;
  align-items: center;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .live-badge { margin-top: 0; }
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* Offer typography section */
.offer-type-section {
  padding: var(--section-y) var(--pad-x);
  border-top: 1px solid var(--hairline-dark);
}
.offer-type-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.offer-type-num {
  font-weight: 900;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--black);
}
.offer-type-num span { color: var(--yellow); }
.offer-type-sub {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 48px;
}

/* Full offer section */
.offer-section {
  background: var(--black);
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(245,197,24,0.1), transparent 60%);
  pointer-events: none;
}
.offer-section-inner {
  position: relative;
  z-index: 1;
}
.offer-section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.offer-section-num {
  font-size: clamp(100px, 22vw, 280px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  color: var(--offwhite);
}
.offer-section-num span { color: var(--yellow); }
.offer-section-sub {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: rgba(244,244,240,0.45);
  letter-spacing: -0.01em;
  margin-top: 24px;
}
.offer-section-btn {
  margin-top: 48px;
}

/* ============================================================ STORY */
.story-body {
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--black);
}
.story-body p + p { margin-top: 1.1em; }
.story-body .pull { font-weight: 700; }
.story-body .hl {
  background: linear-gradient(180deg, transparent 65%, rgba(245,197,24,0.6) 65%);
  padding: 0 3px;
}

/* ============================================================ STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.step {
  background: rgba(244,244,240,0.04);
  border: 1px solid var(--hairline-light);
  border-radius: 24px;
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s var(--ease), border-color 0.3s, background 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.step:hover {
  background: rgba(244,244,240,0.07);
  border-color: rgba(245,197,24,0.3);
}
.step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}
.step h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--offwhite);
  margin-top: 20px;
}
.step p { color: rgba(244,244,240,0.5); font-size: 14px; line-height: 1.55; }
@media (max-width: 880px) {
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { min-height: 0; padding: 28px 24px; }
}

/* ============================================================ CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 64px;
}
.card {
  border-radius: 28px;
  padding: 44px 36px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: box-shadow 0.4s var(--ease);
  will-change: transform;
}
.card-1 { background: var(--black); color: var(--offwhite); border: 1px solid rgba(244,244,240,0.08); }
.card-2 { background: var(--yellow); color: var(--black); }
.card-3 { background: var(--black); color: var(--offwhite); border: 1px solid rgba(244,244,240,0.08); }
.card:hover { box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5); }
.card-2:hover { box-shadow: 0 30px 80px -20px rgba(245,197,24,0.5); }
.card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}
.card h3 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 20px 0 14px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
.card p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.75;
  max-width: 22ch;
}
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; padding: 36px 28px; }
}

/* ============================================================ STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.stat {
  padding: 60px 32px;
  border-right: 1px solid var(--hairline-light);
  position: relative;
  overflow: hidden;
}
.stat:last-child { border-right: 0; }
.stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.stat.in-view::before { transform: scaleX(1); }
.stat-num {
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--offwhite);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .unit {
  font-size: 0.4em;
  color: var(--yellow);
  font-weight: 800;
}
.stat-label {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(244,244,240,0.5);
  max-width: 20ch;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--hairline-light); padding: 40px 0; }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================================ ORDER */
.order-page {
  min-height: 100vh;
  background: var(--yellow);
  color: var(--black);
  padding: clamp(80px, 12vw, 160px) var(--pad-x) clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.order-page::before {
  content: '';
  position: absolute;
  bottom: -20%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(26,26,26,0.08), transparent 65%);
  pointer-events: none;
}
.order-page h1 { max-width: 18ch; margin: 0 auto; }
.order-page .lede {
  max-width: 36ch;
  margin: 20px auto 0;
  opacity: 0.75;
}
.qr-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
}
.qr {
  width: 200px; height: 200px;
  padding: 14px;
  background: var(--offwhite);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,26,26,0.2);
}
.qr img { width: 100%; height: 100%; display: block; border-radius: 8px; }
.qr-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.6;
}

/* ============================================================ NEXT LINK */
.next {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.section.dark .next, .hero ~ .section .next { border-color: var(--hairline-light); }
.section:not(.dark) .next { border-color: var(--hairline-dark); }
.next-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.next-link {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: gap 0.3s var(--ease);
}
.next-link:hover { gap: 22px; }
.next-link .arrow { color: var(--yellow); }

/* ============================================================ FOOTER */
.footer {
  padding: 44px var(--pad-x);
  border-top: 1px solid var(--hairline-dark);
}
.footer.dark {
  background: var(--black);
  border-color: var(--hairline-light);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-meta a:hover { color: var(--black); }
.footer.dark .footer-meta a:hover { color: var(--offwhite); }
.footer-sep { opacity: 0.4; }
.footer-tag { font-size: 12px; color: var(--muted); font-style: italic; }

/* ============================================================ REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: transform, opacity;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.42s; }

/* Char-by-char scramble placeholder */
.scramble { display: inline-block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  body::before { animation: none; }
  .marquee-track { animation: none; }
  .live-dot { animation: none; }
}
