/* ═══════════════════════════════════════════════════════════
   EXPOZE — expoze.wagesociety.com
   Palette taken from his own channel art: the blue lightning
   "Expoze" mark, and Twitch's stored brand colour #0013A3.
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #04060f;
  --bg-2: #080c1a;
  --bg-3: #0c1224;
  --ink: #eef3ff;
  --ink-2: #a9b6d4;
  --ink-3: #6d7b9c;
  --line: rgba(120, 155, 230, .16);

  --blue: #2b6bff;
  --blue-hi: #6ea2ff;
  --blue-deep: #0013a3;
  --cyan: #34d3ff;

  --kick: #53fc18;
  --twitch: #9146ff;
  --live: #ff2d4b;

  --wrap: 1180px;
  --r: 16px;
  --display: 'Anton', 'Impact', system-ui, sans-serif;
  --body: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-hi); }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

/* fine noise so the big flat blacks don't band on cheap panels */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───────── buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font: 600 15px/1 var(--body); letter-spacing: .01em; text-decoration: none;
  cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff; box-shadow: 0 8px 30px rgba(43, 107, 255, .32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(43, 107, 255, .46); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, .03); }
.btn--ghost:hover { border-color: var(--blue-hi); background: rgba(43, 107, 255, .1); transform: translateY(-2px); }
.btn--sm { padding: 10px 17px; font-size: 14px; }
.btn--full { width: 100%; }

/* ───────── live bar ───────── */
.livebar { position: sticky; top: 0; z-index: 60; background: var(--live); }
.livebar__in {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  width: min(100% - 40px, var(--wrap)); margin-inline: auto;
  padding: 10px 0; color: #fff; text-decoration: none; font-size: 15px;
}
.livebar__in strong { font-weight: 700; }
.livebar__meta { color: rgba(255, 255, 255, .82); font-size: 14px; }
.livebar__go { margin-left: auto; font-weight: 700; }
.pulse {
  width: 9px; height: 9px; border-radius: 50%; background: #fff; flex: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .8); animation: pulse 1.9s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@media (prefers-reduced-motion: reduce) { .pulse { animation: none; } }

/* ───────── nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 22px;
  width: min(100% - 40px, var(--wrap)); margin-inline: auto; padding: 14px 0;
  backdrop-filter: blur(14px);
}
.livebar:not([hidden]) ~ .nav { top: 44px; }
.nav::before {
  content: ''; position: absolute; inset: 0 -50vw; z-index: -1;
  background: rgba(4, 6, 15, .78); border-bottom: 1px solid var(--line);
}
.nav__mark {
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
  font: 400 22px/1 var(--display); letter-spacing: .04em;
}
.nav__mark img { border-radius: 8px; }
.nav__links { display: flex; gap: 22px; margin-left: auto; }
.nav__links a {
  color: var(--ink-2); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color .18s;
}
.nav__links a:hover { color: var(--ink); }
@media (max-width: 900px) { .nav__links { display: none; } .nav { justify-content: space-between; } }

/* ───────── hero ───────── */
.hero { position: relative; padding: 96px 0 78px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 22% 34%, rgba(4, 6, 15, .28), rgba(4, 6, 15, .9) 70%),
    linear-gradient(180deg, rgba(4, 6, 15, .5), var(--bg) 92%);
}
.hero__body { width: min(100% - 40px, var(--wrap)); margin-inline: auto; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px;
  color: var(--ink-2); font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-hi); flex: none; }
.dot.is-live { background: var(--live); animation: pulse 1.9s infinite; box-shadow: 0 0 0 0 rgba(255, 45, 75, .8); }

.hero__title {
  margin: 0 0 20px; font: 400 clamp(72px, 15vw, 176px)/.86 var(--display);
  letter-spacing: .02em;
  background: linear-gradient(175deg, #fff 20%, var(--blue-hi) 78%, var(--blue) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 62px rgba(43, 107, 255, .32);
}
.hero__sub { max-width: 60ch; margin: 0 0 30px; color: var(--ink-2); font-size: clamp(17px, 2vw, 20px); }
.hero__sub strong { color: var(--ink); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  list-style: none; margin: 0; padding: 0;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  max-width: 760px;
}
.hero__stats li { background: rgba(8, 12, 26, .72); padding: 18px 16px; }
.hero__stats b { display: block; font: 400 clamp(24px, 3.4vw, 34px)/1 var(--display); color: #fff; }
.hero__stats span { display: block; margin-top: 6px; color: var(--ink-3); font-size: 12.5px; letter-spacing: .07em; text-transform: uppercase; }
.hero__note { margin: 12px 0 0; color: var(--ink-3); font-size: 13px; }
@media (max-width: 620px) { .hero__stats { grid-template-columns: 1fr 1fr; } }

/* ───────── ticker ───────── */
.ticker {
  border-block: 1px solid var(--line); background: var(--bg-2);
  overflow: hidden; padding: 13px 0;
}
.ticker__row { display: flex; width: max-content; animation: slide 34s linear infinite; }
.ticker__set { display: flex; align-items: center; gap: 22px; padding-right: 22px; white-space: nowrap; }
.ticker__set span { font: 400 19px/1 var(--display); letter-spacing: .06em; color: var(--ink-2); text-transform: uppercase; }
.ticker__set i { color: var(--blue); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__row { animation: none; } }

/* ───────── sections ───────── */
.sec { padding: 96px 0; position: relative; }
.sec--alt { background: var(--bg-2); border-block: 1px solid var(--line); }

.kicker { margin: 0 0 12px; color: var(--blue-hi); font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; }
.h2 { margin: 0 0 20px; font: 400 clamp(36px, 5.4vw, 62px)/1.02 var(--display); letter-spacing: .01em; }
.h2 em { font-style: normal; color: var(--blue-hi); }
.lead { max-width: 68ch; margin: 0 0 34px; color: var(--ink-2); font-size: clamp(16.5px, 1.8vw, 19px); }
.note { margin: 26px 0 0; padding: 16px 18px; border: 1px solid var(--line); border-left: 3px solid var(--blue); border-radius: 10px; background: rgba(43, 107, 255, .05); color: var(--ink-2); font-size: 15px; }
.note code { background: rgba(255, 255, 255, .06); padding: 2px 6px; border-radius: 5px; font-size: 13.5px; }

/* ───────── platform cards ───────── */
.platforms { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .platforms { grid-template-columns: 1fr; } }

.plat {
  display: flex; flex-direction: column; gap: 18px;
  padding: 24px; border: 1px solid var(--line); border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
  transition: border-color .2s, transform .2s;
}
.plat.is-live { border-color: rgba(255, 45, 75, .45); box-shadow: 0 0 46px rgba(255, 45, 75, .1); }
.plat__head { display: flex; align-items: center; gap: 13px; }
.plat__logo { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; flex: none; }
.plat--kick .plat__logo { background: rgba(83, 252, 24, .13); color: var(--kick); }
.plat--twitch .plat__logo { background: rgba(145, 70, 255, .15); color: var(--twitch); }
.plat__name { margin: 0; font: 400 21px/1 var(--display); letter-spacing: .04em; }
.plat__handle { margin: 4px 0 0; color: var(--ink-3); font-size: 13.5px; }

.badge {
  margin-left: auto; padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; flex: none;
}
.badge--wait { background: rgba(255, 255, 255, .06); color: var(--ink-3); }
.badge--live { background: var(--live); color: #fff; }
.badge--off { background: rgba(255, 255, 255, .06); color: var(--ink-3); }
.badge--err { background: rgba(255, 176, 32, .16); color: #ffc65c; }

.plat__body { min-height: 66px; }
.plat__title { margin: 0; font-size: 17px; font-weight: 600; }
.plat__meta { margin: 6px 0 0; color: var(--ink-3); font-size: 14px; }

.plat__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding: 16px 0 0; border-top: 1px solid var(--line); }
.plat__stats dt { color: var(--ink-3); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; }
.plat__stats dd { margin: 5px 0 0; font: 400 22px/1 var(--display); }

/* ───────── about ───────── */
.about { display: grid; grid-template-columns: 1.35fr .9fr; gap: 56px; align-items: start; }
@media (max-width: 940px) { .about { grid-template-columns: 1fr; gap: 40px; } }
.about__copy p { color: var(--ink-2); }
.about__copy strong { color: var(--ink); }
.pull {
  margin-top: 28px; padding: 20px 22px; border-left: 3px solid var(--blue);
  background: rgba(43, 107, 255, .06); border-radius: 0 12px 12px 0;
  font-size: 19px; color: var(--ink) !important;
}
.pull span { display: block; margin-top: 8px; color: var(--ink-3); font-size: 14px; }

.card {
  position: sticky; top: 110px;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .012));
}
.card__photo { width: 100%; aspect-ratio: 1; object-fit: cover; }
.card__id { display: flex; align-items: center; gap: 12px; padding: 18px 20px 0; }
.card__id img { border-radius: 10px; }
.card__name { margin: 0; font: 400 22px/1 var(--display); letter-spacing: .04em; }
.card__handle { margin: 4px 0 0; color: var(--ink-3); font-size: 13.5px; }
.stats { margin: 18px 0; padding: 0 20px; }
.stats > div { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.stats > div:last-child { border-bottom: 0; }
.stats dt { color: var(--ink-3); font-size: 13.5px; }
.stats dd { margin: 0; font-size: 14.5px; font-weight: 600; text-align: right; }
.card .btn { margin: 0 20px 20px; width: calc(100% - 40px); }

/* ───────── chips ───────── */
.chips { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; margin: 0; padding: 0; }
.chip {
  padding: 14px 20px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255, 255, 255, .025); transition: border-color .18s, transform .18s;
}
.chip:hover { border-color: var(--blue-hi); transform: translateY(-2px); }
.chip b { display: block; font-size: 15.5px; }
.chip span { display: block; margin-top: 3px; color: var(--ink-3); font-size: 12.5px; }
.chip--star { border-color: rgba(43, 107, 255, .5); background: rgba(43, 107, 255, .08); }

/* ───────── clips + vods ───────── */
.clipgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.vodgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }

.tile {
  display: block; text-decoration: none; color: inherit; overflow: hidden;
  border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 255, 255, .022);
  transition: transform .2s, border-color .2s;
}
.tile:hover { transform: translateY(-3px); border-color: var(--blue-hi); }
.tile__thumb { position: relative; aspect-ratio: 16 / 9; background: var(--bg-3); }
.tile__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tile__dur {
  position: absolute; right: 8px; bottom: 8px; padding: 3px 8px; border-radius: 6px;
  background: rgba(0, 0, 0, .78); font-size: 12px; font-weight: 600;
}
.tile__b { padding: 14px 15px 16px; }
.tile__t { margin: 0; font-size: 15px; font-weight: 600; line-height: 1.35; }
.tile__m { margin: 7px 0 0; color: var(--ink-3); font-size: 12.5px; display: flex; gap: 8px; flex-wrap: wrap; }
.tile__m i { font-style: normal; color: var(--blue-hi); }

.empty { grid-column: 1 / -1; padding: 34px; text-align: center; color: var(--ink-3); border: 1px dashed var(--line); border-radius: 14px; }

/* ───────── crew ───────── */
.sec--crew { background: radial-gradient(80% 120% at 20% 20%, rgba(43, 107, 255, .1), transparent 62%), var(--bg); }
.crew { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: center; }
@media (max-width: 860px) { .crew { grid-template-columns: 1fr; gap: 32px; } }
.crew__art img { border-radius: var(--r); border: 1px solid var(--line); background: #fff; }
.crew__copy p { color: var(--ink-2); }

/* ───────── support ───────── */
.support { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .support { grid-template-columns: 1fr; } }
.sup {
  display: flex; flex-direction: column; gap: 13px;
  padding: 26px; border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255, 255, 255, .022);
}
.sup--hero { border-color: rgba(43, 107, 255, .5); background: linear-gradient(180deg, rgba(43, 107, 255, .11), rgba(43, 107, 255, .03)); }
.sup__tag { margin: 0; color: var(--blue-hi); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.sup h3 { margin: 0; font: 400 27px/1.05 var(--display); letter-spacing: .02em; }
.sup p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.sup__row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 6px; }
.sup__fine { color: var(--ink-3) !important; font-size: 12.5px !important; }

/* ───────── brand kit ───────── */
.kit { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; }
@media (max-width: 960px) { .kit { grid-template-columns: 1fr; } }
.kit__nums, .kit__offer { padding: 28px; border: 1px solid var(--line); border-radius: var(--r); background: rgba(255, 255, 255, .022); }
.kit h3 { margin: 0 0 20px; font: 400 27px/1 var(--display); letter-spacing: .02em; }
.bigstats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 0 0 18px; }
.bigstats dt { color: var(--ink-3); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.bigstats dd { margin: 6px 0 0; font: 400 clamp(28px, 4vw, 40px)/1 var(--display); color: #fff; }
.kit__fine { margin: 0; color: var(--ink-3); font-size: 13px; }
.kit__facts { margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.kit__facts li { padding: 7px 0; color: var(--ink-2); font-size: 15px; }
.kit__facts b { color: var(--ink); }

.offers { margin: 0 0 22px; padding: 0; list-style: none; }
.offers li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.offers li:last-child { border-bottom: 0; }
.offers b { display: block; font-size: 16px; }
.offers span { display: block; margin-top: 4px; color: var(--ink-3); font-size: 14px; }

/* ───────── links ───────── */
.links { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 14px; }
.link {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255, 255, 255, .025); text-decoration: none; color: var(--ink);
  transition: transform .18s, border-color .18s, background .18s;
}
.link:hover { transform: translateY(-3px); border-color: var(--blue-hi); background: rgba(43, 107, 255, .07); }
.link svg { grid-row: 1 / 3; }
.link b { font-size: 16px; }
.link span { grid-column: 2; color: var(--ink-3); font-size: 13px; }
.link i { grid-row: 1 / 3; grid-column: 3; font-style: normal; color: var(--ink-3); font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; }
.link--kick svg { color: var(--kick); }
.link--twitch svg { color: var(--twitch); }
.link--ig svg { color: #e1306c; }
.link--tiktok svg { color: #25f4ee; }
.link--x svg { color: #fff; }
.link--discord svg { color: #5865f2; }
.link--cash svg { color: #00d54b; }

/* ───────── footer ───────── */
.foot { padding: 54px 0 40px; border-top: 1px solid var(--line); background: var(--bg-2); }
.foot__in { display: grid; gap: 22px; }
.foot__brand { display: flex; align-items: center; gap: 13px; }
.foot__brand img { border-radius: 9px; }
.foot__name { margin: 0; font: 400 24px/1 var(--display); letter-spacing: .05em; }
.foot__sub { margin: 5px 0 0; color: var(--ink-3); font-size: 13.5px; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 20px; }
.foot__nav a { color: var(--ink-2); text-decoration: none; font-size: 15px; }
.foot__nav a:hover { color: var(--ink); }
.foot__legal { margin: 0; color: var(--ink-3); font-size: 13px; line-height: 1.7; }

/* ───────── reveal ───────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
