:root {
  --bg: #060807;
  --bg-2: #0a0e0c;
  --card: #0e1411;
  --card-2: #121a16;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(0, 255, 134, .22);
  --text: #f1f5f2;
  --muted: #8b9992;
  --green: #00ff86;
  --green-2: #01d370;
  --gold: #ffd36a;
  --silver: #cfd8dc;
  --bronze: #e39a6b;
  --display: 'Unbounded', 'Arial Black', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --r: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.wrap { width: min(1240px, 100% - 40px); margin-inline: auto; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.accent { color: var(--green); }
.muted { color: var(--muted); }
::selection { background: var(--green); color: #000; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 20px 36px; font-size: 17px; }
.btn-primary { background: var(--green); color: #02140b; box-shadow: 0 0 0 0 rgba(0, 255, 134, .5), 0 10px 40px -10px rgba(0, 255, 134, .6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 6px rgba(0, 255, 134, .12), 0 16px 50px -10px rgba(0, 255, 134, .8); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { border: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { border-color: var(--line-2); background: rgba(0, 255, 134, .06); }
.icon-btn { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--muted); transition: .2s; }
.icon-btn:hover { color: var(--text); border-color: var(--line-2); }
.round-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); font-size: 18px; transition: .2s; }
.round-btn:hover { background: var(--green); color: #000; border-color: var(--green); }

/* ───────── Nav ───────── */
.nav {
  position: fixed; inset: 14px 0 auto 0; z-index: 50;
  width: min(1240px, 100% - 28px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 10px 12px 10px 18px; border-radius: 999px;
  border: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled { background: rgba(8, 12, 10, .72); backdrop-filter: blur(18px) saturate(1.4); border-color: var(--line); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; background: var(--green); color: #02140b; display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: 16px; }
.brand-text { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .04em; }
.brand-text em { font-style: normal; color: var(--green); margin-inline: .35em; }
.brand-text.big { font-size: 18px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a { white-space: nowrap; padding: 8px 12px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--muted); transition: .2s; }
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, .05); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--text); transition: .25s; }
.burger span:first-child { top: 14px; } .burger span:last-child { top: 21px; }
.burger.open span:first-child { top: 18px; transform: rotate(45deg); }
.burger.open span:last-child { top: 18px; transform: rotate(-45deg); }

/* ───────── Hero ───────── */
.hero { position: relative; padding: 120px 0 0; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, #000 10%, transparent 75%);
  opacity: .6;
}
.orb { position: absolute; border-radius: 50%; filter: blur(120px); }
.orb-a { width: 720px; height: 520px; right: -120px; top: 80px; background: rgba(0, 255, 134, .28); animation: drift 14s ease-in-out infinite alternate; }
.orb-b { width: 420px; height: 420px; left: -180px; top: 340px; background: rgba(0, 255, 134, .08); }
@keyframes drift { to { transform: translate(-60px, 40px) scale(1.08); } }

.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 20px; min-height: min(760px, 86vh); }
.hero-copy { padding-bottom: 56px; align-self: center; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(0, 255, 134, .06); font-size: 13px; font-weight: 600; color: #b9f5d6; }
.dot, .live i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(0, 255, 134, .7); animation: pulse 1.8s infinite; display: inline-block; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(0, 255, 134, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 255, 134, 0); } }

.hero-title { font-family: var(--display); font-weight: 900; line-height: .92; letter-spacing: -.03em; font-size: clamp(48px, 7.2vw, 104px); margin: 22px 0 24px; text-transform: uppercase; }
.hero-title .line { display: block; }
.hero-title .outline { color: #07100b; -webkit-text-stroke: 4px var(--green); paint-order: stroke fill; text-shadow: 0 0 60px rgba(0, 255, 134, .35); }
.hero-sub { max-width: 520px; font-size: 18px; color: #b7c2bc; }
.hero-sub strong { color: var(--green); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 34px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 14px 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-stats dt { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.hero-stats dd { font-family: var(--mono); font-weight: 700; font-size: 24px; letter-spacing: -.02em; }

.hero-art { position: relative; align-self: end; display: flex; justify-content: center; }
.hero-steve { position: relative; z-index: 2; width: min(100%, 600px); filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .6)); mask-image: linear-gradient(#000 82%, transparent 100%); }
.hero-ring { position: absolute; z-index: 1; bottom: 8%; left: 50%; width: 88%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; border: 1px solid var(--line-2); background: radial-gradient(circle, rgba(0, 255, 134, .16), transparent 65%); }
.hero-ring::before, .hero-ring::after { content: ''; position: absolute; inset: -9%; border-radius: 50%; border: 1px dashed rgba(0, 255, 134, .18); animation: spin 50s linear infinite; }
.hero-ring::after { inset: 12%; border-style: solid; border-color: rgba(255, 255, 255, .06); animation: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.float-card { position: absolute; z-index: 3; display: grid; gap: 2px; padding: 14px 18px; border-radius: 16px; background: rgba(10, 16, 13, .78); backdrop-filter: blur(14px); border: 1px solid var(--line-2); box-shadow: 0 20px 50px -20px #000; animation: bob 6s ease-in-out infinite; }
.fc-1 { left: -10%; top: 10%; } .fc-2 { right: 0; bottom: 22%; animation-delay: -3s; }
.fc-label { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.fc-value { font-weight: 700; font-size: 18px; } .fc-value.mono { color: var(--green); font-size: 24px; }
.fc-meta { font-size: 12px; color: #b9f5d6; }
@keyframes bob { 50% { transform: translateY(-12px); } }

.ticker { border-block: 1px solid var(--line-2); background: var(--green); color: #02140b; overflow: hidden; position: relative; z-index: 4; }
.ticker-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; gap: 14px; padding: 13px 22px; font-family: var(--display); font-weight: 700; font-size: 13px; text-transform: uppercase; white-space: nowrap; }
.ticker-track span::after { content: '✦'; margin-left: 22px; opacity: .5; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ───────── Sections ───────── */
.section { padding: 120px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-block: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.eyebrow { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: var(--green); }
h2 { font-family: var(--display); font-weight: 900; font-size: clamp(32px, 5vw, 64px); line-height: 1; letter-spacing: -.03em; margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ───────── Tracker ───────── */
.tracker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card { position: relative; padding: 28px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); overflow: hidden; transition: border-color .3s, transform .3s; }
.stat-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.stat-hero { grid-column: 1 / -1; padding: 40px; background: radial-gradient(120% 140% at 100% 0%, rgba(0, 255, 134, .16), transparent 55%), var(--card); border-color: var(--line-2); }
.stat-hero header, .stat-hero footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.stat-hero footer { font-size: 14px; color: #c9d3ce; } .stat-hero footer b { color: var(--green); }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.live { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--green); }
.stat-value { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; margin: 14px 0 8px; }
.stat-value.xl { font-size: clamp(44px, 8vw, 112px); line-height: 1; margin: 18px 0 30px; background: linear-gradient(180deg, #fff 30%, #8dffc8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-note { color: var(--muted); font-size: 14px; }
.bar { height: 10px; border-radius: 99px; background: rgba(255, 255, 255, .06); overflow: hidden; margin-bottom: 18px; }
.bar-fill { height: 100%; width: 0; border-radius: inherit; background: linear-gradient(90deg, var(--green-2), var(--green)); box-shadow: 0 0 24px rgba(0, 255, 134, .7); transition: width 1.8s cubic-bezier(.2, .8, .2, 1); }

/* ───────── Giveaways rail ───────── */
.rail-nav { display: flex; gap: 10px; }
.rail { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px max(20px, calc((100vw - 1240px) / 2)) 30px; scrollbar-width: none; cursor: grab; }
.rail::-webkit-scrollbar { display: none; }
.rail.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.g-card { flex: 0 0 300px; scroll-snap-align: start; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, border-color .3s; user-select: none; }
.g-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.g-media { height: 230px; padding: 26px; position: relative; background: radial-gradient(circle at 50% 60%, rgba(0, 255, 134, .2), transparent 65%), var(--card-2); }
.g-media img { width: 100%; height: 100%; min-height: 0; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .55)); transition: transform .4s; pointer-events: none; }
.g-card:hover .g-media img { transform: scale(1.07) rotate(-3deg); }
.g-tag { z-index: 2; position: absolute; top: 14px; left: 14px; padding: 5px 10px; border-radius: 99px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; background: rgba(0, 0, 0, .55); border: 1px solid var(--line); }
.g-tag.cash { color: var(--green); } .g-tag.prize { color: var(--gold); }
.g-body { padding: 20px 22px 24px; display: grid; gap: 4px; }
.g-title { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; }
.g-user { font-family: var(--mono); font-size: 12px; color: var(--green); }
.g-note { font-size: 14px; color: var(--muted); }
.g-paid { margin-top: 12px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #b9f5d6; }
.g-paid::before { content: '✓'; width: 16px; height: 16px; border-radius: 50%; background: var(--green); color: #000; display: grid; place-items: center; font-size: 10px; }

.g-live { flex-basis: 520px; border-color: var(--green); box-shadow: 0 0 70px -25px rgba(0, 255, 134, .6); background: radial-gradient(120% 90% at 100% 100%, rgba(0, 255, 134, .12), transparent 60%), var(--card); }
.g-media.photo { padding: 0; height: 260px; }
.g-media.photo img { object-fit: cover; filter: none; }
.g-media.photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 60%, var(--card)); }
.g-card.g-live:hover .g-media img { transform: scale(1.04); }
.g-tag.live { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #02140b; border-color: var(--green); }
.g-tag.live i { width: 7px; height: 7px; border-radius: 50%; background: #02140b; animation: blink 1.2s infinite; }
@keyframes blink { 50% { opacity: .2; } }
.g-live .g-title { font-size: 28px; }
.g-req { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin: 8px 0 6px; padding: 12px 14px; border-radius: 12px; background: rgba(0, 255, 134, .07); border: 1px dashed var(--line-2); }
.g-req span { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.g-req b { font-family: var(--mono); font-size: 22px; color: var(--green); }
.g-req em { font-style: normal; color: var(--text); font-weight: 700; }
.g-live-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; }
.g-fine { font-size: 12px; color: var(--muted); }
@media (max-width: 640px) { .g-live { flex-basis: 86vw; } .g-card { flex-basis: 78vw; } }

/* ───────── Leaderboard ───────── */
.lb-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; flex-wrap: wrap; margin-bottom: 48px; }
.lb-head .section-head { margin: 0; }
.lb-meta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.prize { display: grid; }
.prize-value { font-size: 38px; font-weight: 700; color: var(--gold); text-shadow: 0 0 40px rgba(255, 211, 106, .35); }
.countdown { display: flex; gap: 8px; }
.countdown div { min-width: 64px; padding: 10px 8px; text-align: center; border-radius: 14px; background: var(--card); border: 1px solid var(--line); }
.countdown b { display: block; font-family: var(--mono); font-size: 24px; }
.countdown span { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

.podium { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 16px; align-items: end; margin-bottom: 20px; }
.pod { --c: var(--silver); position: relative; padding: 30px 24px 26px; border-radius: var(--r); text-align: center; background: linear-gradient(180deg, color-mix(in srgb, var(--c) 12%, transparent), transparent 60%), var(--card); border: 1px solid color-mix(in srgb, var(--c) 35%, transparent); }
.pod.p1 { --c: var(--gold); padding-block: 44px 34px; order: 2; box-shadow: 0 30px 80px -40px rgba(255, 211, 106, .5); }
.pod.p2 { order: 1; } .pod.p3 { --c: var(--bronze); order: 3; }
.pod-rank { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: 20px; color: #0a0a0a; background: var(--c); box-shadow: 0 0 40px color-mix(in srgb, var(--c) 50%, transparent); }
.pod-user { font-weight: 700; font-size: 15px; color: var(--muted); }
.pod-prize { font-family: var(--mono); font-weight: 700; font-size: clamp(28px, 3.4vw, 44px); color: var(--c); margin: 6px 0 14px; }
.pod-wager { display: grid; gap: 2px; padding-top: 14px; border-top: 1px solid var(--line); }
.pod-wager b { font-family: var(--mono); font-size: 17px; }
.pod-wager span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }

.lb-table { border-radius: var(--r); border: 1px solid var(--line); background: var(--card); overflow: hidden; }
.lb-row { display: grid; grid-template-columns: 90px 1.2fr 1.4fr 140px; align-items: center; gap: 12px; padding: 16px 26px; border-top: 1px solid var(--line); position: relative; transition: background .2s; }
.lb-row:not(.lb-row-head):hover { background: rgba(0, 255, 134, .04); }
.lb-row-head { border-top: 0; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-weight: 700; background: rgba(255, 255, 255, .02); }
.lb-row span:last-child { text-align: right; }
.lb-place { font-family: var(--mono); font-weight: 700; color: var(--muted); }
.lb-user { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.lb-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #1b2a22, #0f1713); border: 1px solid var(--line); display: grid; place-items: center; font-size: 12px; color: var(--muted); }
.lb-wager { display: grid; gap: 6px; font-family: var(--mono); font-weight: 500; }
.lb-wager i { display: block; height: 3px; border-radius: 9px; background: linear-gradient(90deg, var(--green-2), var(--green)); min-width: 2px; opacity: .7; }
.lb-prize { font-family: var(--mono); font-weight: 700; color: var(--green); }
.lb-empty { padding: 40px; text-align: center; color: var(--muted); }
.lb-pager { display: flex; justify-content: center; gap: 6px; padding: 18px; border-top: 1px solid var(--line); }
.lb-pager:empty { display: none; }
.lb-pager button { min-width: 38px; height: 38px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--line); font-family: var(--mono); font-size: 13px; color: var(--muted); transition: .2s; }
.lb-pager button:hover { color: var(--text); border-color: var(--line-2); }
.lb-pager button.on { background: var(--green); color: #02140b; border-color: var(--green); font-weight: 700; }

/* ───────── Steps ───────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: s; }
.step { position: relative; padding: 34px 30px 38px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); overflow: hidden; transition: .3s; }
.step:hover { border-color: var(--line-2); transform: translateY(-4px); }
.step-n { font-family: var(--display); font-weight: 900; font-size: 84px; line-height: 1; color: var(--card); -webkit-text-stroke: 3px rgba(0, 255, 134, .45); paint-order: stroke fill; display: block; margin-bottom: 26px; }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; margin-bottom: 10px; }
.step p { color: var(--muted); }

/* ───────── Moments ───────── */
.moments { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 200px; gap: 12px; width: min(1480px, 100% - 40px); margin-inline: auto; }
.moment { position: relative; border-radius: 18px; overflow: hidden; background: var(--card); border: 1px solid var(--line); grid-column: span 3; }
.moment.w { grid-column: span 6; } .moment.t { grid-row: span 2; }
.moment img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) contrast(1.05); transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .5s; }
.moment:hover img { transform: scale(1.06); filter: none; }
.moment figcaption { position: absolute; inset: auto 0 0 0; padding: 40px 18px 14px; font-size: 13px; font-weight: 600; background: linear-gradient(transparent, rgba(0, 0, 0, .85)); opacity: 0; transform: translateY(8px); transition: .35s; }
.moment:hover figcaption { opacity: 1; transform: none; }

/* ───────── Videos ───────── */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.video { display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden; background: var(--card); border: 1px solid var(--line); transition: transform .3s, border-color .3s; }
.video:hover { transform: translateY(-4px); border-color: var(--line-2); }
.video.featured { grid-column: span 2; grid-row: span 2; }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--card-2); }
.video.featured .video-thumb { flex: 1; aspect-ratio: auto; min-height: 0; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .8, .2, 1); }
.video:hover .video-thumb img { transform: scale(1.05); }
.video-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(0, 0, 0, .55)); }
.video-play { position: absolute; z-index: 1; left: 50%; top: 50%; width: 58px; height: 58px; margin: -29px 0 0 -29px; border-radius: 50%; display: grid; place-items: center; padding-left: 3px; background: rgba(6, 8, 7, .6); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, .25); color: #fff; transition: .25s; }
.video.featured .video-play { width: 84px; height: 84px; margin: -42px 0 0 -42px; }
.video:hover .video-play { background: var(--green); color: #02140b; border-color: var(--green); transform: scale(1.08); box-shadow: 0 0 40px rgba(0, 255, 134, .6); }
.video-badge { position: absolute; z-index: 1; top: 14px; left: 14px; padding: 5px 12px; border-radius: 99px; background: var(--green); color: #02140b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.video-info { padding: 16px 18px 18px; display: grid; gap: 6px; }
.video-info h3 { font-size: 15px; font-weight: 700; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video.featured .video-info h3 { font-family: var(--display); font-size: 22px; letter-spacing: -.02em; }
.video-info span { font-size: 12px; color: var(--muted); font-weight: 600; }
.video:hover .video-info span { color: var(--green); }
.videos-more { display: flex; justify-content: center; margin: 32px 0 64px; }
@media (max-width: 980px) { .videos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .videos { grid-template-columns: 1fr; } .video.featured { grid-column: auto; grid-row: auto; } .video.featured .video-thumb { aspect-ratio: 16 / 9; flex: none; } .video.featured .video-info h3 { font-size: 18px; } }

/* ───────── CTA / Footer ───────── */
.cta { padding: 40px 0 120px; }
.cta-inner { text-align: center; padding: 90px 24px; border-radius: 32px; border: 1px solid var(--line-2); background: radial-gradient(80% 120% at 50% 120%, rgba(0, 255, 134, .3), transparent 60%), var(--card); position: relative; overflow: hidden; }
.cta-inner h2 { font-size: clamp(34px, 6vw, 76px); }
.cta-inner p { color: #b7c2bc; max-width: 480px; margin: 0 auto 34px; font-size: 17px; }
.footer { border-top: 1px solid var(--line); padding: 50px 0 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; font-weight: 600; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--green); }
.legal { display: flex; gap: 16px; align-items: flex-start; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 12px; color: #63706a; }
.legal a { text-decoration: underline; }
.age { flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #63706a; display: grid; place-items: center; font-weight: 700; font-size: 12px; }

/* ───────── Reveal ───────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s cubic-bezier(.2, .8, .2, 1), transform .55s cubic-bezier(.2, .8, .2, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

/* ───────── Responsive ───────── */
@media (max-width: 1140px) {
  .nav-links { position: fixed; inset: 76px 14px auto; flex-direction: column; padding: 14px; border-radius: 22px; background: rgba(8, 12, 10, .96); backdrop-filter: blur(18px); border: 1px solid var(--line); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 16px; }
  .burger { display: block; }
}
@media (max-width: 980px) {
  .hero { padding-top: 120px; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-bottom: 20px; }
  .hero-art { max-width: 480px; margin-inline: auto; }
  .tracker-grid, .steps { grid-template-columns: 1fr; }
  .section { padding: 84px 0; }
  .moments { grid-auto-rows: 160px; }
  .moment { grid-column: span 6; } .moment.w { grid-column: span 12; }
}
@media (max-width: 640px) {
  .nav-cta .icon-btn { display: none; }
  .brand-text { display: none; }
  .stat-hero { padding: 28px 22px; }
  .podium { grid-template-columns: 1fr; }
  .pod.p1 { order: 1; } .pod.p2 { order: 2; }
  .lb-row { grid-template-columns: 44px 1fr auto; padding: 14px 16px; font-size: 14px; }
  .lb-row .lb-user-cell { display: none; }
  .lb-row-head span:nth-child(2) { display: none; }
  .fc-1 { left: 0; top: 16%; } .fc-2 { bottom: 14%; }
  .float-card { padding: 10px 14px; } .fc-value { font-size: 15px; } .fc-value.mono { font-size: 19px; }
  .section-head.row { flex-direction: column; align-items: flex-start; }
  .countdown div { min-width: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
