/* ══════════════════════════════════════════════════════════════
   LINKME × ASHTON HALL — ALL IN CHALLENGE
   pure black · chrome/electric-blue brand lockup (real SVGs)
   · diagonal light shaft · glass cards · film grain
   · white pill primary CTA, dark pill secondary
   ══════════════════════════════════════════════════════════════ */
:root {
  --black: #000;
  --glass: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.2);
  /* ONE blue scale — every accent on the page comes from these three so
     the site doesn't drift into half a dozen near-identical shades.
     Derived from the CTA / grand-finale card. */
  --blue: #0191ff; /* primary accent — fills, dots, active states */
  --blue-hi: #3aa9ff; /* lit end of gradients, hover states */
  --blue-deep: #0166cc; /* deep end of gradients, shadows */
  --blue-text: #7fc4ff; /* text-on-black variant — 10:1 on the page ground */
  /* sapphire-reserve metallic: white into cool platinum */
  --chrome: linear-gradient(180deg, #ffffff 6%, #cfd8e8 100%);
  --gold: #c9d5ee; /* platinum — small labels, fine details */
  --ivory: #f2f5fb;
  --font-display: "Anton";
  --font-ui:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ink: 255 255 255;
  --maxw: 1120px;
}
/* a11y: skip link appears on keyboard focus */
.skip {
  position: fixed;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: top 0.15s ease;
}
.skip:focus {
  top: 12px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
/* overflow-x:CLIP, not hidden — hidden makes body a scroll container,
   which silently kills position:sticky everywhere on the page */
/* -apple-system resolves to SF Pro with Apple's own optical sizing (Text
   cut for body, Display for headings) — the reason it reads so clean */
body {
  background: var(--black);
  color: rgb(var(--ink));
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  overflow-x: clip;
  position: relative;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ══ AMBIENT FIELD — slow radial color drift behind the glass ══ */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient::before {
  content: "";
  position: absolute;
  width: 95vmax;
  height: 95vmax;
  left: 50%;
  top: -38vmax;
  transform: translateX(-50%);
  background: radial-gradient(
    closest-side,
    rgba(1, 145, 255, 0.14),
    transparent 70%
  );
  filter: blur(60px);
  animation: amb1 26s ease-in-out infinite alternate;
}
.ambient::after {
  content: "";
  position: absolute;
  width: 75vmax;
  height: 75vmax;
  right: -30vmax;
  bottom: -34vmax;
  background: radial-gradient(
    closest-side,
    rgba(201, 213, 238, 0.07),
    transparent 70%
  );
  filter: blur(80px);
  animation: amb2 34s ease-in-out infinite alternate;
}
/* two more orbs on longer, offset cycles — together the four never
   repeat the same arrangement, so the dark ground keeps moving.
   Transform-only (composited): the blur is rasterised once. */
.ambient i,
.ambient b {
  position: absolute;
  display: block;
  border-radius: 50%;
}
.ambient i {
  width: 72vmax;
  height: 72vmax;
  left: -24vmax;
  top: 34vmax;
  background: radial-gradient(
    closest-side,
    rgba(1, 145, 255, 0.16),
    transparent 70%
  );
  filter: blur(70px);
  animation: amb3 41s ease-in-out infinite alternate;
}
.ambient b {
  width: 58vmax;
  height: 58vmax;
  right: -16vmax;
  top: -8vmax;
  background: radial-gradient(
    closest-side,
    rgba(90, 124, 255, 0.1),
    transparent 70%
  );
  filter: blur(85px);
  animation: amb4 53s ease-in-out infinite alternate;
}
@keyframes amb1 {
  to {
    transform: translateX(-42%) translateY(7vmax) scale(1.14);
  }
}
@keyframes amb2 {
  to {
    transform: translate(-9vmax, -7vmax) scale(1.18);
  }
}
@media (max-width: 640px) {
  .ambient i,
  .ambient b {
    display: none;
  }
  .ambient::before {
    filter: blur(52px);
  }
  .ambient::after {
    filter: blur(58px);
  }
}
@keyframes amb3 {
  to {
    transform: translate(18vmax, -16vmax) scale(1.22);
  }
}
@keyframes amb4 {
  to {
    transform: translate(-14vmax, 14vmax) scale(1.16);
  }
}

/* ══ FILM GRAIN — above everything, below nothing interactive ══ */
.grain {
  position: fixed;
  inset: -30%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.15;
  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.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(10) infinite;
}
@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -8%);
  }
  20% {
    transform: translate(-14%, 4%);
  }
  30% {
    transform: translate(6%, -12%);
  }
  40% {
    transform: translate(-4%, 14%);
  }
  50% {
    transform: translate(-12%, 7%);
  }
  60% {
    transform: translate(12%, 0%);
  }
  70% {
    transform: translate(0%, 10%);
  }
  80% {
    transform: translate(3%, 26%);
  }
  90% {
    transform: translate(-9%, 9%);
  }
}

main,
nav,
footer,
.tickbar,
.tbar {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 92px 0;
}
@media (min-width: 768px) {
  section {
    padding: 128px 0;
  }
}
.hair {
  border-top: 1px solid var(--line);
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
/* cosmos-calm display: medium weight, sentence case, tight and quiet —
   Anton stays reserved for the hero, CTAs, stopwatch and marquees */
h2 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  font-size: 30px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}
h3 {
  font-size: 19px;
}
.kick {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.52);
  margin-bottom: 14px;
}
.lede {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgb(var(--ink)/0.66);
  max-width: 46ch;
}
@media (min-width: 768px) {
  .lede {
    font-size: 15.5px;
  }
}
.head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* ══ LOCKUP IMAGES (real brand SVGs) ══ */
.lockup {
  display: block;
  height: auto;
}
.lockup.glow {
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.5));
}

/* ══ BUTTONS — springy, light-sweep on hover, arrow nudge ══ */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 15px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  /* CTA labels: SF Pro Display named first so the Display cut is used at
     button size rather than the softer Text cut, at Black (900) — the
     heaviest weight the face has. Anton is single-weight, hence the swap. */
  font-family: "SF Pro Display", var(--font-ui);
  font-weight: 900;
  /* sentence case: no tracking needed, and it can carry a touch more size */
  font-size: 15.5px;
  letter-spacing: -0.01em;
  text-transform: none;
  font-style: normal;
  /* let the strokes keep their full weight instead of being thinned */
  -webkit-font-smoothing: auto;
  /* deep sapphire jewel: near-black base with a lit top edge and a
     hairline ring — the blue reads as light on the surface, not paint.
     The moving gradient lives on the .bfx layers (transform-driven). */
  /* same gradient as the grand-finale prize card, so every CTA reads as
     that exact blue rather than a darker top-to-bottom ramp */
  background: radial-gradient(
    120% 100% at 25% -10%,
    #3aa9ff,
    #0191ff 62%,
    #0166cc
  );
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 16px 38px -16px rgba(0, 0, 0, 0.85),
    0 6px 26px -10px rgba(1, 145, 255, 0.55);
}
/* fx layers are REAL elements — unconditional GPU layers on iOS, so
   every button renders the identical animation, sticky included */
.bfx {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}
.bfx b,
.bfx u {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
}
/* FIXED-PIXEL light: same physical band, same speed, on every button —
   a wide button and the nav chip are just different windows onto the
   identical passing light. Percent-based fx looked wildly different
   per button width; never go back to proportional geometry. */
/* The sheet is anchored from the CENTRE and made far wider than any
   button, then the same 780px gradient is tiled across it. At full
   slide (±390px) a left-anchored 780px sheet ran out and exposed its
   own edge as a vertical seam — this cannot: 2400px of sheet covers a
   1600px button at the extremes. Ends of the ramp share a colour, so
   the tiling is seamless and the light cycle is unchanged. */
.bfx b {
  left: 50%;
  width: 2400px;
  margin-left: -1200px;
  /* THIS is what the button actually looks like — an opaque sheet over
     the .btn background. Retinted to the grand-finale card's blues; ends
     share a colour so the 780px tile stays seamless. */
  background-image: linear-gradient(
    100deg,
    #3aa9ff,
    #0f9bff 30%,
    #0166cc 55%,
    #0f9bff 80%,
    #3aa9ff
  );
  background-size: 780px 100%;
  background-repeat: repeat-x;
  transform: translateX(var(--lmslide, 0px));
}
/* band must stay narrower than its button or it reads as a flash:
   fixed 210px on big CTAs, capped to 55% on small chips */
.bfx u {
  left: 0;
  width: min(210px, 55%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(var(--lmsweep, -230px)) skewX(-14deg);
}

/* hover feedback = motion scale spring + arrow nudge (filter is owned by the glow animation) */
/* glow is static — a steady green bloom in the base shadow, no animation */

.btn .arr {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn .arr svg {
  display: block;
}
.btn:hover .arr {
  transform: translateX(4px);
}
.btn-sm {
  min-height: 42px;
  padding: 11px 20px;
  font-size: 14px;
}
.crow {
  margin-top: 34px;
  text-align: center;
}
/* checkout driver — the reassurance line under every primary CTA */
.driver {
  display: block;
  margin-top: 11px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgb(var(--ink)/0.62);
}

.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 16px;
  backdrop-filter: blur(26px) saturate(1.5);
  -webkit-backdrop-filter: blur(26px) saturate(1.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ══ COUNTDOWN ══ */

@media (min-width: 768px) {
  .duo {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes bl {
  50% {
    opacity: 0.25;
  }
}

/* ══ TIMELINE — the 22-day challenge in one glass card ══ */
.tl {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 28px;
}
.tl-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tl-cd .l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.52);
  margin-bottom: 8px;
}
.tl-cd .v {
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  overflow: hidden;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.tl-cd .v small {
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--ink)/0.55);
  margin: 0 7px 0 2px;
}
.tl-end {
  text-align: right;
}
.tl-end .l {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.55);
  margin-bottom: 8px;
}
.tl-end .v {
  font-weight: 900;
  font-size: 19px;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* one thin line, five dots, flat columns — minimal */
/* NO overflow:hidden here — the tooltips live above the track and were
   being clipped by it. The cells round their own outer corners instead. */
.tl-line {
  position: relative;
  display: flex;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  margin: 14px 0 0;
}
.tl-cell:first-child {
  border-radius: 8px 0 0 8px;
}
.tl-cell:last-child {
  border-radius: 0 8px 8px 0;
}
.tl-fill2 {
  border-radius: 8px 0 0 8px;
}
/* one cell per day, hairline-separated — the reference's segmented feel */
.tl-cell {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.tl-cell:last-child {
  border-right: none;
}
.tl-cell.done {
  background: rgba(1, 145, 255, 0.1);
}
.tl-fill2 {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  transform-origin: left;
  background: linear-gradient(
    90deg,
    rgba(1, 145, 255, 0.28),
    rgba(1, 145, 255, 0.14)
  );
  pointer-events: none;
}
/* position in time — the bright line that says "you are here" */
.tl-now {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 2px;
  background: #7fc4ff;
  box-shadow: 0 0 12px rgba(127, 196, 255, 0.9);
  border-radius: 2px;
  z-index: 4;
  pointer-events: none;
}
.tl-chs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 16px;
}
/* ONE liquid-glass strip for all three prizes — a single quiet capsule
   with hairline dividers; the CTA stays the only heavy object */
.prizebar {
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px auto 24px;
  padding: 10px 20px;
  border-radius: 999px;
  /* dark smoked glass — stays legible over bright frames of the film */
  background: rgba(10, 12, 16, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 28px -14px rgba(0, 0, 0, 0.55);
}
.pbi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-text);
}
.pbi + .pbi {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  margin-left: 15px;
  padding-left: 15px;
}
.pbi b {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 640px) {
  /* the capsule wraps ugly at phone width — go quiet plain text there */
  .prizebar {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 7px 16px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .pbi {
    gap: 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  }
  .pbi + .pbi {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }
  .pbi b {
    font-size: 12px;
  }
  .pbi svg {
    width: 12px;
    height: 12px;
  }
}

/* replace-10-tools grid: minimal tiles collapsing into one glowing Linkme card */
.toolgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 34px;
}
.tooltile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
}
.tooltile .ti {
  color: var(--blue-text);
}
.tooltile b {
  font-size: 12.5px;
  font-weight: 700;
  color: rgb(var(--ink)/0.85);
  line-height: 1.25;
}
.toolone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
  padding: 22px 26px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(1, 145, 255, 0.17),
    rgba(1, 145, 255, 0.05)
  );
  border: 1px solid rgba(1, 145, 255, 0.38);
  box-shadow: 0 24px 70px -34px rgba(1, 145, 255, 0.55);
}
.toolone b {
  font-size: 17px;
  letter-spacing: -0.01em;
}
.toolone span {
  font-size: 13px;
  color: rgb(var(--ink)/0.6);
}
@media (max-width: 640px) {
  .toolgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 24px;
  }
  .tooltile {
    padding: 16px 8px;
    gap: 8px;
  }
  .toolone {
    flex-direction: column;
    gap: 7px;
    text-align: center;
    padding: 20px 16px;
  }
}

/* already-on-Linkme strip: quiet silver roll call */

.tlc {
  padding-right: 6px;
}
.tic {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  margin-bottom: 10px;
  color: var(--blue-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tic svg {
  width: 17px;
  height: 17px;
}
.tlc.on .tic {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.tlc .d {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.5);
}
.tlc.on .d {
  color: var(--blue-text);
}
.tlc .t {
  font-size: 15.5px;
  font-weight: 800;
  margin-top: 5px;
  color: rgb(var(--ink)/0.85);
}
.tlc.on .t {
  color: #fff;
}
.tlc .s {
  font-size: 11.5px;
  color: rgb(var(--ink)/0.55);
  margin-top: 3px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .tl {
    padding: 22px 18px;
  }
  .tl-cd .v {
    font-size: 28px;
  }
  /* the bar used to be hidden here, which left the phone with no
     timeline at all — it stays, with room for the points to be tapped */
  .tl-line {
    display: block;
    margin: 18px 0 30px;
  }
  .tl-head {
    margin-bottom: 14px;
  }
  .tl-end {
    text-align: left;
    display: flex;
    gap: 8px;
    align-items: baseline;
  }
  .tl-end .l {
    margin-bottom: 0;
  }
  .tl-end .v {
    font-size: 15px;
  }
  .tl-chs {
    display: block;
    position: relative;
    margin-top: 14px;
    padding-left: 26px;
  }
  .tl-chs::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
  }
  .tlc {
    min-width: 0;
    position: relative;
    padding: 0 0 18px;
  }
  .tic {
    position: absolute;
    left: -42px;
    top: -3px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    margin: 0;
  }
  .tlc::before {
    display: none;
  }
  .tl-chs {
    padding-left: 42px;
  }
  .tl-chs::before {
    left: 12px;
    top: 10px;
    bottom: 10px;
  }
  .tlc:last-child {
    padding-bottom: 0;
  }
  .tlc::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0c0c0e;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }
  .tlc.on::before {
    background: var(--blue);
    border-color: var(--blue);
  }
  .tlc .s {
    max-width: none;
  }
}

/* ══ TICKER ══ */
.tickbar {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.02);
}
.tk {
  display: flex;
  width: max-content;
  animation: tk 30s linear infinite;
}
.tickbar:hover .tk {
  animation-play-state: paused;
}
@keyframes tk {
  to {
    transform: translateX(-50%);
  }
}
.tki {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.68);
}
.tki b {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-text);
  flex: none;
}
.tki .num {
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* ══ NAV — transparent over the hero, glass once scrolled ══ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-img {
  display: block;
  height: 27px;
  width: auto;
}
.nav-lock {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav-lock img {
  display: block;
}
.nav-lock .x {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
.nav .btn {
  margin-left: auto;
}

/* ══ HERO — theatre view: the video IS the show. Pulled up under the
   transparent nav so the screen runs to the top of the page. ══ */
.hero {
  position: relative;
  min-height: 100svh;
  margin-top: -66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 106px 0 84px;
  text-align: center;
  overflow: hidden;
}
/* ambient light: the poster, blurred huge behind the screen — cinema glow
   for one image decode, no second video */
.hero-ambient {
  position: absolute;
  inset: -40px;
  z-index: 0;
  pointer-events: none;
  background: url("/allin/hero-poster-v2.jpg") center/cover;
  filter: blur(64px) brightness(0.32) saturate(1.15);
  transform: scale(1.15);
}
.hero-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      120% 100% at 50% 40%,
      transparent 30%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.6),
      transparent 24%,
      transparent 70%,
      #000 98%
    );
}
/* the screen — the star of the viewport */
.stage {
  position: relative;
  z-index: 1;
  width: min(1120px, 95vw, calc((100svh - 250px) *16/9));
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: #000;
  box-shadow: 0 34px 100px -28px rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}
.stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000 url("/allin/hero-poster-v2.jpg") center/cover no-repeat;
}
@media (max-width: 640px) {
  .stage video {
    background-image: url("/allin/hero-poster-v2-v.jpg");
  }
}
.sound {
  position: absolute;
  top: 82px;
  right: 24px;
  bottom: auto;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 17px 0 14px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.sound:hover {
  background: rgba(0, 0, 0, 0.88);
}
.sound:focus-visible {
  outline: 2px solid var(--blue-text);
  outline-offset: 3px;
}
.sound:active {
  transform: scale(0.97);
}
.sound svg {
  width: 20px;
  height: 20px;
  flex: none;
  stroke-width: 2.2;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}
/* drop-shadow (not text-shadow): applies AFTER the word-reveal masks,
   so the glow can't clip into boxes at mask edges */
.hero h1 {
  margin-top: 2px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.55))
    drop-shadow(0 8px 26px rgba(0, 0, 0, 0.65));
}
.hero .prize {
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.6),
    0 4px 18px rgba(0, 0, 0, 0.75);
}
.hero .driver,
.hero .proofline {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
/* POST phase: standard hero — no challenge video, ambient only */
.hero.no-stage {
  min-height: 76svh;
  justify-content: center;
}
.hero.no-stage .hero-ambient {
  display: block;
  filter: blur(80px) brightness(0.22) saturate(1.2);
}
.hero.no-stage h1 {
  font-size: 40px;
}
@media (min-width: 768px) {
  .hero.no-stage h1 {
    font-size: 56px;
  }
}
/* mobile: the 9x16 cut fills the whole viewport — the hero IS the video.
   Marquee floats at the top, headline + CTA sit on a gradient at the foot. */
@media (max-width: 640px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
    padding: 0 0 26px;
    gap: 0;
    justify-content: flex-end;
  }
  .hero-ambient {
    display: none;
  }
  .stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55),
      transparent 18%,
      transparent 46%,
      rgba(0, 0, 0, 0.93) 88%
    );
  }
  .stage .sound {
    top: 78px;
    right: 12px;
    bottom: auto;
    z-index: 3;
  }
  .hero .wrap {
    z-index: 2;
  }
  .cue {
    display: none;
  }
  /* keep the 4-unit countdown inside a 375px card */

  /* comparison table scrolls in its own box, never the page */
  .cmp-scroll {
    overflow-x: auto;
  }
  .cmp th,
  .cmp td {
    padding: 12px 10px;
    font-size: 12.5px;
  }
  .cmp th[scope="row"] {
    font-size: 12px;
  }
}

/* scroll cue — glowing knob gliding down a hairline track */
.cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  pointer-events: none;
}
.cue .track {
  width: 1.5px;
  height: 42px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}
.cue .knob {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px 2px rgba(160, 190, 255, 0.8);
  animation: cue 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes cue {
  0% {
    top: -8%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    top: 96%;
    opacity: 0;
  }
}
@media (max-height: 700px) {
  .cue {
    display: none;
  }
}
.hero h1 {
  font-family: var(--font-display), var(--font-ui);
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 44px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 68px;
  }
}
.hero .prize {
  font-size: 17px;
  color: rgb(var(--ink)/0.78);
  margin-bottom: 30px;
}
.hero .prize b {
  color: #fff;
  font-weight: 800;
}

/* ══ STEPS ══ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step {
  padding: 26px 22px;
}
.step .no {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}
.step h3 {
  margin-bottom: 7px;
}
.step p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgb(var(--ink)/0.66);
}

/* ══ PRIZES ══ */
.pz {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .pz {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pzc {
  padding: 30px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.pzc .v {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 3px 7px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 255, 255, 0.12);
}
.pzc h3 {
  font-size: 16px;
  margin-bottom: 5px;
}
.pzc p {
  font-size: 13px;
  color: rgb(var(--ink)/0.66);
  line-height: 1.45;
}

/* ══ MULTIPLIERS + STREAK RAIL ══ */

@media (min-width: 640px) {
  .mult {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══ ENTRY CALCULATOR — same language as the prize cards: solid navy,
   sapphire bloom, beam edge, jersey numerals ══ */
.calc {
  max-width: 560px;
  margin: 0 auto;
  padding: 8px 30px 28px;
  text-align: left;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(
      120% 110% at 16% -6%,
      rgba(1, 145, 255, 0.32),
      transparent 55%
    ),
    linear-gradient(180deg, #0a1024, #04070e);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 70px -32px rgba(0, 0, 0, 0.85);
}
.calc .crow2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.calc .crow2 .lab {
  font-size: 14.5px;
  font-weight: 700;
}
.calc .crow2 .sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgb(var(--ink)/0.58);
  margin-top: 3px;
}
/* the given entry: sits in the stepper column so the "1" lines up with the
   counters below it (min-width matches the stepper's 38+12+30+12+38).
   The "+" takes no width, so only the digit is centered on the column */
.calc .given {
  font-family: var(--font-ui);
  font-weight: 800;
  font-style: normal;
  font-size: 22px;
  color: var(--blue-text);
  font-variant-numeric: tabular-nums;
  min-width: 128px;
  text-align: center;
}
.calc .given .plus {
  display: inline-block;
  width: 0;
  direction: rtl;
}
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.step-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-family: inherit;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition:
    background 0.18s ease,
    border-color 0.18s ease;
}
.step-btn:hover {
  background: rgba(1, 145, 255, 0.4);
  border-color: rgba(127, 196, 255, 0.55);
}
.step-val {
  min-width: 30px;
  text-align: center;
  font-family: var(--font-display), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}
.calc .total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
}
.calc .total .tl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.52);
}
/* the payoff: outlined jersey numeral, same as the prize cards.
   Anton digits aren't tabular — the numeral gets a FIXED right-aligned
   slot so the label never shifts as the count changes width */
.calc .total .tn {
  font-family: var(--font-ui);
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.015em;
  line-height: 1;
  color: #fff;
  font-size: clamp(58px, 6.4vw, 84px);
  background: none;
  filter: none;
  /* trailing room: right-aligned italic ink overhangs its box and the
     card's overflow:hidden was slicing the last digit */
  min-width: 2.6em;
  text-align: right;
  padding-right: 0.1em;
}
@media (max-width: 640px) {
  /* the fixed slot + tracked label overflowed the 375px card and the
     card's overflow:hidden sliced the numeral — smaller numeral + slot */
  .calc {
    padding-left: 22px;
    padding-right: 22px;
  }
  .calc .total .tn {
    font-size: 44px;
    min-width: 2.2em;
  }
  .calc .total .tl {
    letter-spacing: 0.2em;
  }
}

/* ══ PROOF ══ */
.proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .proof {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
  }
}
.pshot {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, #131318, #050506);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11.5px;
  color: rgb(var(--ink)/0.55);
  padding: 20px;
  line-height: 1.7;
  overflow: hidden;
}
.pshot b {
  display: block;
  color: rgb(var(--ink)/0.7);
  font-size: 12.5px;
  margin-bottom: 5px;
}
.pnum {
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 26px rgba(255, 255, 255, 0.12));
}
@media (min-width: 768px) {
  .pnum {
    font-size: 58px;
  }
}

/* ══ SCENE STRIP — cinematic product beat inside a section ══ */

/* ══ ALPHA VFX ══ */
.fx {
  display: block;
  pointer-events: none;
}

.fx-box {
  height: 158px;
  width: auto;
  margin: -26px auto -6px;
}

.fx-notif {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 88%;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.6));
}

/* ══ FINAL ══ */
.final {
  text-align: center;
}
.final-lock {
  width: min(480px, 80vw);
  margin: 0 auto 26px;
}
.claim {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
  margin: 26px auto 0;
  padding: 6px;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--glass);
}
.claim:focus-within {
  border-color: var(--blue);
}
@media (min-width: 640px) {
  .claim {
    flex-direction: row;
    align-items: center;
    border-radius: 999px;
  }
}
.claim .pre {
  font-size: 15px;
  color: rgb(var(--ink)/0.6);
  padding-left: 18px;
  flex: none;
  align-self: center;
}
.claim input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: #fff;
  padding: 13px 8px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}
@media (min-width: 640px) {
  .claim input {
    font-size: 15px;
  }
}
.claim input::placeholder {
  color: rgb(var(--ink)/0.5);
}
.avail {
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 11px;
  min-height: 16px;
}
.avail.ok {
  color: #7fc4ff;
}
.avail.no {
  color: #f87171;
}
.avail.wait {
  color: rgb(var(--ink)/0.62);
}

/* ══ TESTIMONIAL BAR ══ */

/* WCAG 2.2.2: every auto-mover pauses on hover/focus */
.tickbar:hover .tk,
.tickbar:focus-within .tk {
  animation-play-state: paused;
}

.foot {
  padding: 36px 0 40px;
}
.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.foot-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: rgb(var(--ink)/0.66);
}
.foot-links a:hover {
  color: #fff;
}
.legal {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgb(var(--ink)/0.55);
}

/* ══ FLOW-BREAKER ══ */
.fb {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 300px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 16px;
}
.fb .ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3aa9ff, #0166cc);
  flex: none;
  display: grid;
  place-items: center;
  font-size: 15px;
}
.fb .t {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.3;
}
.fb .d {
  display: block;
  font-size: 12px;
  color: rgb(var(--ink)/0.66);
  margin-top: 3px;
  line-height: 1.4;
}
.fb .x {
  margin-left: auto;
  background: none;
  border: none;
  color: rgb(var(--ink)/0.62);
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  padding: 0 2px;
}
@media (max-width: 640px) {
  .fb {
    left: 12px;
    right: 12px;
    bottom: 86px;
    max-width: none;
  }
}

/* ══ USP BAR — benefit row under the countdowns ══ */
.usps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  max-width: 840px;
  margin: 26px auto 0;
}
.usp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgb(var(--ink)/0.72);
}
.usp i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}

/* ══ FAQ — numbered accordion: sapphire spine grows, + morphs to − ══ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.fitem {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: linear-gradient(180deg, #0a1024, #04070e);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, 0.9);
  transition: border-color 0.3s ease;
}
/* the spine: draws down the left edge as the answer opens */
.fitem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.fitem.open::before {
  transform: scaleY(1);
}
.fitem:hover,
.fitem.open {
  border-color: rgba(255, 255, 255, 0.24);
}
.fq {
  width: 100%;
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  font-size: 15px;
  font-weight: 700;
}
.fno {
  flex: none;
  min-width: 2ch;
  font-family: var(--font-display), sans-serif;
  font-style: italic;
  font-size: 15px;
  color: var(--blue-text);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.fitem.open .fno {
  opacity: 1;
}
.fqt {
  flex: 1;
}
/* the mark is drawn, not typed — rotates and loses its stem when open */
.fmark {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.fmark::before,
.fmark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 2px;
  background: rgb(var(--ink)/0.65);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease;
}
.fmark::before {
  width: 14px;
  height: 1.6px;
  transform: translate(-50%, -50%);
}
.fmark::after {
  width: 1.6px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.fitem.open .fmark {
  transform: rotate(180deg);
}
.fitem.open .fmark::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.fitem.open .fmark::before {
  background: var(--blue-text);
}
.fa {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.fitem.open .fa {
  grid-template-rows: 1fr;
}
.fa-in {
  overflow: hidden;
}
.fa .a {
  padding: 0 22px 20px 60px;
  font-size: 13.8px;
  line-height: 1.62;
  color: rgb(var(--ink)/0.7);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.32s ease 0.06s,
    transform 0.32s ease 0.06s;
}
.fitem.open .fa .a {
  opacity: 1;
  transform: none;
}
@media (max-width: 640px) {
  .fa .a {
    padding-left: 22px;
  }
  .fq {
    gap: 12px;
    padding: 17px 18px;
  }
}

/* ══ HERO PROOF LINE — quiet text, glued to the CTA ══ */
.proofline {
  display: block;
  margin-top: 9px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgb(var(--ink)/0.8);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}
.proofline i {
  font-style: normal;
  color: var(--blue-text);
}

/* ══ STATS BAND ══ */

@media (min-width: 768px) {
  .band .bn.big {
    font-size: 88px;
  }
}

/* ══ GUARANTEE BAR ══ */

/* ══ SUB-CALLOUT (mobile app secondary) ══ */
.subnote {
  font-size: 12.5px;
  color: rgb(var(--ink)/0.6);
  margin-top: 14px;
  text-align: center;
}

/* ══ MOBILE ══ */
/* ══ FEATURE CHIPS (module 1) ══ */

@media (min-width: 640px) {
  .feats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══ BRAND MARQUEE (module 2) ══ */

/* ══ REAL PROFILES CAROUSEL (module 3) ══ */
.profs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* edge fade — the rail dissolves instead of the last card clipping */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 3%,
    #000 91%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 3%,
    #000 91%,
    transparent
  );
}
.profs::-webkit-scrollbar {
  display: none;
}
.prof {
  position: relative;
  min-width: 210px;
  aspect-ratio: 3/4;
  flex: none;
  scroll-snap-align: start;
  padding: 0;
  overflow: hidden;
  display: block;
  transition: border-color 0.18s ease;
}
.prof:hover {
  border-color: var(--line-2);
}
/* editorial grade: the roster runs B&W — one treatment unifies five very
   different source photos; color breathes back in on hover */
.prof .pimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08) brightness(0.94);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}
.prof:hover .pimg {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.02) brightness(1);
}
.prof::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.88) 96%);
}
.pmeta {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pmeta b {
  font-size: 15.5px;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.pmeta .ph {
  font-size: 12px;
  color: var(--blue-text);
  font-weight: 700;
}
.pmeta .pr {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.72);
  margin-top: 3px;
}
.fineprint {
  font-size: 11px;
  line-height: 1.6;
  color: rgb(var(--ink)/0.5);
  text-align: center;
  max-width: 640px;
  margin: 10px auto 0;
}

/* ══ RATINGS BAR (module 6) ══ */
.ratebar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  padding: 15px 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: rgb(var(--ink)/0.72);
  text-align: center;
  margin-top: 44px;
}
.ratebar .stars {
  color: #ffc107;
  letter-spacing: 2px;
  font-size: 13px;
}
.ratebar b {
  color: #fff;
  font-weight: 800;
}
.ratebar i {
  color: rgb(var(--ink)/0.4);
}

/* ══ STICKY MOBILE CTA ══ */
.sm {
  display: none;
}
@media (max-width: 1023px) {
  .sm {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--line-2);
    padding: 11px 18px calc(11px + env(safe-area-inset-bottom));
  }
  .sm .btn {
    width: 100%;
  }
  body {
    padding-bottom: 82px;
  }
}

/* proof card: the real indian_ashtonhall video */
.pshot .pvid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* prompt cards: dead-center quotes */

/* desktop hero: the film IS the viewport — full-bleed video, content
   overlaid at the foot on a gradient (the mobile pattern, scaled up) */
@media (min-width: 641px) {
  .hero {
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    margin: -66px 0 0;
    border-radius: 0;
    gap: 0;
    padding: 0 24px 46px;
    justify-content: flex-end;
  }
  .stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .stage::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5),
      transparent 22%,
      transparent 50%,
      rgba(0, 0, 0, 0.93) 92%
    );
  }
  .hero .wrap {
    z-index: 2;
  }
  .hero .prize {
    margin-bottom: 20px;
  }
  .stage .sound {
    top: 82px;
    right: 24px;
    bottom: auto;
    z-index: 3;
  }
  .hero-ambient {
    display: none;
  }
  .cue {
    display: none;
  }
  /* poster type: the headline runs GIANT and OUTLINED across the base of
     the film — pre/during ONLY; the post hero keeps its own layout */
  .hero:not(.no-stage) .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    width: 100%;
  }
  .hero:not(.no-stage) h1 {
    order: 9;
    margin: 0;
    white-space: nowrap;
    line-height: 0.96;
    letter-spacing: 0.01em;
    font-size: clamp(54px, 8.8vw, 148px);
    color: transparent;
    -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.55));
  }
  .hero:not(.no-stage) .prizebar,
  .hero:not(.no-stage) .proofline {
    display: none;
  }
  /* the CTA lives ON the film, right under the poster type — XL grade */
  .hero:not(.no-stage) .wrap .btn {
    order: 10;
    margin-top: 30px;
    min-height: 66px;
    padding: 21px 54px;
    font-size: 20px;
    letter-spacing: -0.015em;
  }
  .hero:not(.no-stage) .wrap .btn .arr svg {
    width: 20px;
    height: 20px;
  }
  .hero:not(.no-stage) .wrap .driver {
    order: 11;
    margin-top: 15px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
  }
}

/* mobile poster headline: two-row stack, big */
@media (max-width: 640px) {
  .hero:not(.no-stage) .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero:not(.no-stage) h1 {
    order: 9;
    margin: 12px 0 0;
    white-space: normal;
    text-align: center;
    font-size: 13vw;
    line-height: 1;
    letter-spacing: 0.01em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
  }
  .hero:not(.no-stage) .prizebar,
  .hero:not(.no-stage) .proofline {
    display: none;
  }
  .hero:not(.no-stage) .wrap .btn {
    order: 10;
    margin-top: 18px;
    width: 100%;
    min-height: 58px;
    padding: 17px 30px;
    font-size: 17px;
  }
  .hero:not(.no-stage) .wrap .driver {
    order: 11;
    margin-top: 12px;
    gap: 11px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
  }
}

/* ══ PHONE LANDSCAPE — a rotated iPhone is ~844x390, so it lands in the
   desktop hero above with only ~390px of height to hold a 74px poster
   headline, a 66px CTA and the chips. Scale the stack to the short axis
   instead of the width, and drop the ornaments that have nowhere to go. ══ */
@media (max-width: 940px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    padding: 64px 20px 20px;
    justify-content: center;
  }
  .hero:not(.no-stage) h1 {
    font-size: clamp(30px, 12vh, 58px);
  }
  .hero:not(.no-stage) .wrap .btn {
    margin-top: 14px;
    min-height: 44px;
    padding: 12px 30px;
    font-size: 15px;
  }
  .hero:not(.no-stage) .wrap .btn .arr svg {
    width: 16px;
    height: 16px;
  }
  .hero:not(.no-stage) .wrap .driver {
    margin-top: 9px;
    gap: 12px;
    font-size: 11.5px;
  }
  .hero.no-stage {
    min-height: 100svh;
  }
  .hero.no-stage h1 {
    font-size: 38px;
  }
  .stage .sound {
    top: 72px;
    bottom: auto;
    right: 14px;
    min-height: 44px;
    padding: 0 14px 0 12px;
    font-size: 12px;
  }
  .cue {
    display: none;
  }
  /* the film's foot gradient has to bite sooner on a short frame */
  .hero .stage::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55),
      transparent 20%,
      transparent 34%,
      rgba(0, 0, 0, 0.94) 88%
    );
  }
}

/* ══ HERO BAR — ONE centered stack under the fold:
   prizes → CTA → trial info → live count ══ */
.herobar {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}
.hb-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 20px;
}
.hb-prizes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .hb-in {
    padding: 18px 16px;
    gap: 12px;
  }
  .herobar .btn {
    width: 100%;
  }
}

/* ══ MOBILE DENSITY PASS — the page should scroll like a page, not a hallway ══ */
@media (max-width: 640px) {
  .head {
    margin-bottom: 28px;
  }
  h2 {
    font-size: 26px;
  }
  .lede {
    font-size: 14.5px;
  }
  /* stats band: two live tickers up top, prize pool big below */

  /* login features: two-up compact */

  /* steps + cards tighter */
  .step {
    padding: 18px 16px;
  }
  .step .no {
    width: 26px;
    height: 26px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  .step p {
    font-size: 13px;
  }
  .pzc {
    padding: 20px 16px;
  }

  .fx-box {
    height: 112px;
    margin: -16px auto -4px;
  }

  .crow {
    margin-top: 26px;
  }
  .prof {
    min-width: 172px;
    padding: 16px;
  }
  .calc .crow2 {
    padding: 11px 0;
  }
}

/* ══ FINAL LOCKUP SHINE — CSS sweep masked to the logo ══ */
.lockwrap {
  position: relative;
  width: 100%;
}
.shine2 {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: url("/allin/allin-full-white.svg");
  mask-image: url("/allin/allin-full-white.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.shine2-bar {
  position: absolute;
  top: -28%;
  bottom: -28%;
  width: 30%;
  transform: skewX(-18deg);
  filter: blur(7px);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.95),
    transparent
  );
  animation: shine2 3.4s ease-in-out infinite;
}
@keyframes shine2 {
  0% {
    left: -42%;
  }
  42% {
    left: 118%;
  }
  100% {
    left: 118%;
  }
}

/* ══ MOBILE CLAIM — "link.me/ + input" on one row, button below ══ */
@media (max-width: 640px) {
  .claim {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 20px;
    padding: 8px;
  }
  .claim .pre {
    padding-left: 12px;
    align-self: center;
  }
  .claim input {
    flex: 1;
    min-width: 0;
    padding: 13px 6px;
  }
  .claim .btn {
    flex-basis: 100%;
    margin-top: 8px;
  }
}

/* globe returns: centered over the feature grid */

@media (max-width: 640px) {
  .fx-globe2 {
    height: 96px;
    margin-bottom: 14px;
  }
}
/* feature grid symmetry: odd last chip spans the row, centered */
@media (max-width: 640px) {
}

/* Post-to-All icons cluster (settled, checkmarked) over the login grid */

@media (max-width: 640px) {
  .fx-icons {
    height: 150px;
    margin-bottom: 12px;
  }
}

/* ══ TOOLKIT MARQUEE — two rows drifting opposite ways ══ */

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

/* ══ LANGUAGE SELECTOR ══ */
.langsel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 30px 8px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.langsel option {
  background: #111;
  color: #fff;
}

/* ══ MOBILE TIGHTEN v2 ══ */
@media (max-width: 640px) {
  section {
    padding: 56px 0;
  }
  /* primary CTAs go full-width like the sticky bar — no weak pills */
  .hero .btn,
  .crow .btn {
    width: 100%;
  }
  .stage .sound {
    top: 78px;
    right: 12px;
    bottom: auto;
    min-height: 48px;
    padding: 0 15px 0 13px;
    font-size: 14px;
  }
}

/* login-card emoji */
.fe2 {
  display: block;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--blue-text);
}
.fe2 svg {
  display: block;
}
@media (max-width: 640px) {
  .fe2 {
    margin-bottom: 7px;
  }
  .fe2 svg {
    width: 18px;
    height: 18px;
  }
}

/* ══ V2 "SAUCE" REMAKE — html[data-v2] scopes it; Before stays untouched ══ */

/* cosmos-minimal kickers: no slash, no slant — just quiet spaced caps */
[data-v2] .kick {
  display: inline-block;
  position: relative;
  padding-left: 0;
  font-style: normal;
}
[data-v2] .kick::before {
  display: none;
}

/* timeline: the card dissolves, the countdown IS the design */
[data-v2] .glass.tl {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
[data-v2] .tl-head {
  align-items: flex-end;
  margin-bottom: 32px;
}
[data-v2] .tl-cd .v {
  font-size: clamp(46px, 7.5vw, 92px);
  letter-spacing: -0.05em;
}
[data-v2] .tl-cd .v small {
  font-size: 16px;
  margin: 0 10px 0 4px;
}
[data-v2] .tl-end .v {
  font-size: 26px;
}
[data-v2] .tlc .t {
  font-size: 17px;
}
@media (max-width: 640px) {
  [data-v2] .tl-cd .v {
    font-size: 46px;
  }
  [data-v2] .tl-cd .v small {
    font-size: 12px;
    margin: 0 7px 0 3px;
  }
  [data-v2] .tl-end .v {
    font-size: 17px;
  }
}

/* replace-10-tools: centered statement over full-width lanes */
.toolsplit {
  display: block;
  margin-top: 0;
}
.toolhead {
  text-align: center;
  margin: 0 auto 44px;
  max-width: 640px;
}
.toolhead .lede {
  margin: 16px auto 0;
  text-align: center;
}
.tex {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0 0.32em;
  flex-wrap: wrap;
  margin: 12px 0 0;
}
/* outlined statement — static, one line with its partner */
.tex .txout {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  font-size: clamp(30px, 4.2vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
  -webkit-text-stroke: 0;
}
.tex em {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-style: normal;
  text-transform: none;
  font-size: clamp(30px, 4.2vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  padding-right: 0;
}

/* ══ FAMILY-STYLE DYNAMIC CARDS (After only; .tcell keeps grid stretch) ══ */
.tcell {
  display: grid;
}
.glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
}
[data-v2] .glass.step,
[data-v2] .glass.pzc,
[data-v2] .glass.prof,
[data-v2] .tooltile {
  position: relative;
  border-radius: 18px;
  background:
    radial-gradient(
      130% 120% at 18% -8%,
      rgba(99, 125, 255, 0.16),
      transparent 52%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.028)
    );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 60px -34px rgba(0, 0, 0, 0.75);
}
[data-v2] .tooltile {
  border-radius: 14px;
}
[data-v2] .glass.prof {
  overflow: hidden;
  padding: 0;
}
@media (max-width: 640px) {
  [data-v2] .glass.step,
  [data-v2] .glass.pzc {
    border-radius: 16px;
  }
}

/* ══ MOBILE DYNAMICS (After only) ══ */
@media (max-width: 640px) {
  /* profiles: swipe-first — big cards, center snap, full-bleed edges */
  [data-v2] .profs {
    margin: 0 -24px;
    padding: 4px 24px 10px;
    gap: 14px;
    scrollbar-width: none;
  }
  [data-v2] .profs::-webkit-scrollbar {
    display: none;
  }
  [data-v2] .prof {
    min-width: 66vw;
    scroll-snap-align: center;
  }
}

/* ══ IDLE GLINT — every CTA gets a sweep each ~3.4s; wants to be tapped ══ */

/* ══ POST HERO — the final tally leads ══ */
.post-stat {
  margin-bottom: 18px;
}
.ps-n {
  font-weight: 900;
  font-size: clamp(56px, 9vw, 118px);
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ps-l {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.55);
}
.ps-l em {
  font-style: italic;
}

/* ══ CLIENT NOTES ROUND (Aug 10) ══ */
/* driver: quiet plain text — no boxes, just a whisper under the CTA */
.driver {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 13px;
}
.dchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 640px) {
  .driver {
    gap: 12px;
  }
}
.dchip svg {
  color: #0191ff;
}

/* usp row: icon chips */
.usp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.usp svg {
  color: var(--blue-text);
}
.usp i {
  display: none;
}

/* live timeline: three key dates spread edge-to-edge under the line */
.tl-chs.three {
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 641px) {
  .tl-chs.three .tlc:nth-child(2) {
    justify-self: center;
    text-align: center;
  }
  .tl-chs.three .tlc:nth-child(2) .tic {
    margin-left: auto;
    margin-right: auto;
  }
  .tl-chs.three .tlc:nth-child(3) {
    justify-self: end;
    text-align: right;
    padding-right: 0;
  }
  .tl-chs.three .tlc:nth-child(3) .tic {
    margin-left: auto;
  }
}

/* already-on-Linkme: thumbnail marquee footer bar */
/* standalone band between sections */
.onlmbar {
  border: none;
  margin: 8px 0;
  padding: 18px 0;
  overflow: hidden;
}
.onlmbar:hover .onmt,
.onlmbar:focus-within .onmt {
  animation-play-state: paused;
}
.onmt {
  display: flex;
  width: max-content;
  gap: 36px;
  align-items: center;
  animation: tk 48s linear infinite;
}
.onp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
}
.onp img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.onp b {
  font-size: 12.5px;
  font-weight: 700;
  color: rgb(var(--ink)/0.62);
  white-space: nowrap;
}
.onp.cap {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.5);
  font-weight: 600;
}

/* ══ BRAND SHIMMER — sapphire pair drives text + icon breathing ══ */
:root {
  --lm-pink: var(--blue);
  --lm-coral: var(--blue-text);
}
@keyframes lm-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
/* display text moments carry the brand gradient */
.tex em,
.qline em,
.ps-n {
  background: linear-gradient(to right, var(--lm-pink), var(--lm-coral), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lm-shimmer 4.5s ease-in-out infinite;
}
/* accent icons sit still — one calm sapphire, no breathing */
.pbi svg,
.tooltile .ti,
.usp svg {
  color: var(--blue-text);
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .tex em,
  .qline em,
  .ps-n,
  .pbi svg,
  .tooltile .ti,
  .usp svg {
    animation: none;
  }
}

/* ══ SAPPHIRE RESERVE COLORWAY — deep sapphire accent system.
   Token override flips everything at once; revert by editing here. ══ */
:root {
  --blue: #0191ff;
  --blue-text: #7fc4ff;
}
.tl-fill2 {
  background: linear-gradient(90deg, #0191ff, #7fc4ff);
}

/* ══ POST TO ALL FAN — link.me's publish animation, native ══ */
.ptafx {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 28px;
  max-width: 420px;
  position: relative;
}
/* violet bloom behind the fan, like the reference */
.ptafx::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  width: 340px;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    closest-side,
    rgba(124, 58, 237, 0.28),
    transparent 70%
  );
}
.pta-phone {
  width: 104px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 16px 44px -20px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 1;
}
.pta-vid {
  display: block;
  width: 100%;
  height: auto;
}
.pta-lines {
  width: 100%;
  height: 70px;
  margin-top: -6px;
  filter: drop-shadow(0 0 5px rgba(1, 145, 255, 0.45));
}
/* dash values are in pathLength units (1 = the whole curve), so every
   line draws end to end regardless of how long it actually is */
.pl {
  stroke: #0191ff;
  stroke-width: 2.2;
  stroke-linecap: round;
  opacity: 0.85;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.go .pl {
  animation: pta-draw 0.55s ease-out forwards;
}
@keyframes pta-draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* 7 equal columns so each icon sits dead-centre of its column — matches
   the 700-unit line viewBox exactly, so the lines meet the icons */
.pta-icons {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  padding: 0;
  justify-items: center;
}
.pi {
  position: relative;
  width: 40px;
  height: 40px;
  opacity: 0;
  transform: translateY(10px) scale(0.75);
}
.go .pi {
  animation: pta-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
/* green completion ring around each platform */
.pi::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #0191ff;
  box-shadow: 0 0 8px rgba(1, 145, 255, 0.5);
}
.pi img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}
.chk {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0191ff;
  display: grid;
  place-items: center;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  border: 2px solid #0a0a0c;
}
.go .chk {
  animation: pta-chk 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes pta-pop {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pta-chk {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.pta-cap {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.pta-sub {
  margin-top: 7px;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgb(var(--ink)/0.55);
  max-width: 300px;
  text-align: center;
}
.pta-pill {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 99px;
  background: rgba(16, 18, 20, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px -20px rgba(0, 0, 0, 0.5);
}
.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 99px;
  background: rgba(1, 145, 255, 0.2);
  color: #7fc4ff;
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
}
.pp-badge svg {
  color: #0191ff;
}
.pp-meta {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 12px;
}
@media (max-width: 640px) {
  .ptafx {
    max-width: 320px;
  }
  .pi {
    width: 34px;
    height: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pl {
    stroke-dashoffset: 0;
  }
  .pi,
  .chk {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ══ FEATURE SHOWCASE SPLIT — cards left, publish fan right (desktop) ══ */
@media (min-width: 900px) {
  .logsplit {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
  }
  .logright {
    grid-column: 2;
    grid-row: 1;
  }
  .logleft {
    grid-column: 1;
    grid-row: 1;
  }
  .logleft .head {
    text-align: left;
    margin-bottom: 26px;
  }
  .logleft .loggrid {
    grid-template-columns: 1fr 1fr;
  }

  .logright .ptafx {
    margin-bottom: 0;
  }
}

/* ══ COLOR BLOCKS — linktree-style section colors on the brand palette ══ */
.sec-green,
.sec-cream {
  border-top: none;
}

/* deep sapphire block: reserve navy, ice ink, platinum details, white cards */
.sec-green {
  background:
    radial-gradient(
      120% 90% at 18% 0%,
      rgba(201, 213, 238, 0.07),
      transparent 52%
    ),
    linear-gradient(180deg, #0a1c42, #03070f);
  color: var(--ivory);
}
.sec-green .kick {
  color: rgba(242, 245, 251, 0.55);
}
.sec-green h2 {
  color: #f4f7fd;
}
/* liquid-glass step cards on the navy — frosted, lit from the top,
   sapphire bloom in the corner (same family as the prize vault) */
.sec-green .glass.step {
  background:
    radial-gradient(
      130% 120% at 18% -8%,
      rgba(99, 125, 255, 0.16),
      transparent 52%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  backdrop-filter: blur(22px) saturate(1.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 50px -30px rgba(3, 9, 24, 0.8);
  color: var(--ivory);
}
.sec-green .glass.step h3 {
  color: #f4f7fd;
}
.sec-green .glass.step p {
  color: rgba(242, 245, 251, 0.68);
}
.sec-green .step .no {
  background: #0191ff;
  color: #fff;
}
.sec-green .subnote {
  color: rgba(242, 245, 251, 0.62);
}
.sec-green .driver {
  color: rgba(242, 245, 251, 0.78);
}
.sec-green .dchip svg {
  color: var(--gold);
}
/* blue-on-blue fails — inside the navy block the CTA goes platinum
   card-metal (the Sapphire Reserve card itself). Shine band stays;
   the sapphire sheet hides. */
.sec-green .btn {
  background: linear-gradient(180deg, #f7f9fd, #d2dae9);
  color: #0a1f44;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(10, 31, 68, 0.2),
    0 16px 38px -14px rgba(3, 9, 24, 0.75);
}
.sec-green .bfx b {
  display: none;
}

/* cream block: white cards, green accents */

/* midnight sapphire block: light-on-dark, platinum breath at the top */
.sec-deep {
  background:
    radial-gradient(
      120% 90% at 82% 0%,
      rgba(201, 213, 238, 0.04),
      transparent 50%
    ),
    linear-gradient(180deg, #070e1e, #03060d);
}

/* ══ CYCLING TOOL CARDS — two counter-drifting lanes ══ */
.toolmarq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.tmrow {
  display: flex;
  gap: 10px;
  width: max-content;
  cursor: grab;
}
.tmrow:active {
  cursor: grabbing;
}
.tmrow .tooltile {
  flex: none;
  width: 172px;
}
@media (max-width: 640px) {
  .tmrow .tooltile {
    width: 150px;
    padding: 16px 8px;
  }
}

/* footer: links + language live together on the right */
.foot-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .foot-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ══ BENTO SYSTEM (from the craft reference, on our palette) ══ */
/* prizes vault: hero tile + two supports, tinted */
@media (min-width: 640px) {
  .pz {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
/* uniform tiles: one 88px visual slot (number OR box at the same scale),
   title+desc on a shared baseline, no bottom slack */
.pzc.vt1,
.pzc.vt2,
.pzc.vt3 {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 24px 26px;
  gap: 0;
}
.pzc.vt1 h3,
.pzc.vt2 h3,
.pzc.vt3 h3 {
  margin-top: 14px;
}
.pzc.vt1 .v,
.pzc.vt3 .v {
  height: 88px;
  display: flex;
  align-items: center;
  margin: 0;
}
/* solid card bodies — near-opaque navy with a tinted bloom, no ghosting */
.vt1 {
  background:
    radial-gradient(
      120% 110% at 16% -6%,
      rgba(1, 145, 255, 0.4),
      transparent 56%
    ),
    linear-gradient(180deg, #0a142b, #04070f) !important;
}
.vt2 {
  background:
    radial-gradient(
      95% 95% at 76% 36%,
      rgba(231, 201, 128, 0.15),
      transparent 56%
    ),
    linear-gradient(180deg, #0c0e14, #050609) !important;
}
.vt3 {
  background:
    radial-gradient(
      120% 110% at 16% -6%,
      rgba(127, 196, 255, 0.28),
      transparent 56%
    ),
    linear-gradient(180deg, #091126, #04060e) !important;
}
.pzc.vt3 .v {
  font-size: clamp(46px, 5vw, 66px);
}
.pzc.vt2 .fx-box {
  height: 88px;
  align-self: flex-start;
  margin: 0;
}
@media (max-width: 640px) {
  .pzc.vt1,
  .pzc.vt2,
  .pzc.vt3 {
    padding: 22px;
  }
}

/* feature panel: one container, hairline-divided cells, cursor glow */
.featpanel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.fcell {
  position: relative;
  padding: 24px 22px;
  min-height: 170px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fcell:nth-child(2n) {
  border-right: none;
}
.fcell:nth-child(n + 5) {
  border-bottom: none;
}
.fcell h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.fcell p {
  font-size: 13px;
  line-height: 1.5;
  color: rgb(var(--ink)/0.62);
}
.fcell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(1, 145, 255, 0.14),
    transparent 62%
  );
}
.featpanel:hover .fcell::before {
  opacity: 1;
}
@media (max-width: 640px) {
  .featpanel {
    grid-template-columns: 1fr;
  }
  .fcell {
    border-right: none;
    min-height: 0;
    padding: 20px 18px;
  }
  .fcell:nth-child(n + 5) {
    border-bottom: 1px solid var(--line);
  }
  .fcell:last-of-type {
    border-bottom: none;
  }
}

/* ══ STOPWATCH COUNTDOWN — chronometer split: giant digits, blinking
   colons, centiseconds sprinting in volt ══ */
.swatch {
  display: inline-block;
}
.sw-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.swu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
/* FIXED 2ch slot per unit — Anton digits aren't tabular; without this
   the row reshuffles every second and slanted digits overlap the colons */
.swu b {
  display: block;
  width: 2.3ch;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.swu i {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(var(--ink)/0.5);
}
/* colons get their own reserved slot — the italic digits' slant overhangs
   their box and was landing right on top of them */
.swc {
  flex: none;
  width: 0.46em;
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  margin-top: 0.14em;
  color: rgb(var(--ink)/0.3);
  animation: swblink 1s steps(1) infinite;
}
@keyframes swblink {
  50% {
    opacity: 0.12;
  }
}
.tl-cd .swatch {
  margin-top: 6px;
}
@media (max-width: 640px) {
  /* chronometer sized for 375px: big digits, everything on one optical line */
  /* slots carry the spacing now — gap stays small so the row still fits 375 */
  .sw-row {
    gap: 4px;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .swu {
    gap: 6px;
  }
  .swu b {
    font-size: 44px;
  }
  .swu i {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .swc {
    font-size: 24px;
    margin-top: 0.3em;
  }
  .tl-head {
    justify-content: center;
  }
  .tl-cd {
    text-align: center;
    width: 100%;
  }
  .tl-end {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 8px;
  }
}

/* wide nav grid */
@media (min-width: 1024px) {
  .nav-in {
    max-width: 1500px;
    padding: 0 40px;
  }
}

/* ══ STAT ROW — reworked: no boxes, pure typography. Giant sapphire
   numeral with its caption beside it, roaros-style. Numeral size is
   INLINE on the element (see JSX) — untouchable by cascade. ══ */
.statrow {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  gap: 26px 40px;
  margin-top: 34px;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.stc {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}
.stc b {
  display: block;
  font-family: var(--font-ui);
  font-weight: 800;
  font-style: normal;
  line-height: 0.9;
  color: #7fc4ff;
}
/* DIRECT CHILD ONLY — a bare `.stc span` also matched CountUp's inner
   motion.span inside the numeral <b>, crushing the digits to caption
   size. This was the "numbers are so small" bug all along. */
.stc > span {
  display: block;
  max-width: 15ch;
  font-size: 14px;
  line-height: 1.4;
  color: rgb(var(--ink)/0.68);
  margin: 0;
}
@media (max-width: 640px) {
  .statrow {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
  }
  .stc {
    gap: 15px;
  }
  .stc > span {
    font-size: 13px;
  }
}

/* ══ PAGE-LEVEL BENTO (roaros): colored sections are giant rounded
   tiles floating on the black canvas with gutters ══ */
/* alternating rhythm: tile · flat(hairline) · tile · flat — the film
   band stays full-bleed as the cinematic divider between tile groups */
/* overflow:clip (not hidden) — clips the tile's corners WITHOUT creating
   a scroll container, so position:sticky keeps working inside */
.sec-green,
.sec-deep {
  width: min(1440px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  overflow: clip;
  border-top: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .sec-green,
  .sec-deep {
    width: calc(100% - 20px);
    border-radius: 18px;
  }
}

/* no hairlines touching tiles or the film band */
.hero + section.hair,
.hero + .vmq + section.hair {
  border-top: none;
}
.sec-green + .hair,
.sec-deep + .hair,
.qband + .hair,
.qband {
  border-top: none;
}

/* pre-phase countdown stands alone — center it */
.tl.solo .tl-head {
  justify-content: center;
  margin-bottom: 0;
}
.tl.solo .tl-cd {
  text-align: center;
}
.tl.solo .sw-row {
  justify-content: center;
}

/* ══ HERO GROUND — charcoal field behind the film; tile on mobile only ══ */
.hero {
  background: radial-gradient(130% 130% at 18% 0%, #13171b, #0a0c0e);
}
@media (max-width: 640px) {
  .hero {
    width: calc(100% - 20px);
    border-radius: 18px;
    overflow: hidden;
    margin: 6px auto 8px;
  }
}

/* ══ LUXURY PASS — quiet light, everything settles into focus ══ */
/* nav scroll progress: a green thread filling under the sticky nav */
.navprog {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.9;
  pointer-events: none;
  background: linear-gradient(90deg, #0191ff, #c9d5ee);
}

/* border beam: one green light slowly tracing a tile's edge.
   Pure transform rotation (GPU-safe, no @property) masked to a 1px ring. */
.beam {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.beam::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(
    transparent 0 308deg,
    rgba(1, 145, 255, 0.5) 336deg,
    #c9d5ee 352deg,
    transparent 360deg
  );
  animation: beamspin 8s linear infinite;
}
@keyframes beamspin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* button beam: same masked ring, but rotation reads the ROOT CLOCK var —
   every button's glint sits at the identical angle on the same frame
   (per-button CSS animations desync; never go back) */
.btn .beam-btn {
  padding: 1.5px;
  z-index: 0;
}
.btn .beam-btn::before {
  animation: none;
  transform: translate(-50%, -50%) rotate(var(--lmbeam, 0deg));
  background: conic-gradient(
    transparent 0 302deg,
    rgba(255, 255, 255, 0.5) 334deg,
    #fff 350deg,
    transparent 360deg
  );
}
/* platinum button in the navy block: the glint goes sapphire */
.sec-green .btn .beam-btn::before {
  background: conic-gradient(
    transparent 0 302deg,
    rgba(1, 145, 255, 0.55) 334deg,
    #0191ff 350deg,
    transparent 360deg
  );
}

/* ══ PRIZE CAROUSEL — 3D stage: equal cards, front lit, sides receded ══ */
.pzcar {
  position: relative;
  height: 290px;
  max-width: 920px;
  margin: 0 auto 46px;
  perspective: 1200px;
}
/* selector must outgun [data-v2] .glass.pzc (position:relative) or the
   cards fall back into flow and cascade diagonally down the page */
.pzcar .glass.pzc.pzslide {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(440px, 86vw);
  margin-left: calc(min(440px, 86vw)/-2);
  height: 252px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 34px 80px -34px rgba(0, 0, 0, 0.9);
}
.pzcar .glass.pzc.pzslide.front {
  cursor: default;
}
/* poster layout: display element commands the top, meta pinned to the
   card's foot — no dead middle */
.pzcar .pzc.vt1,
.pzcar .pzc.vt2,
.pzcar .pzc.vt3 {
  justify-content: center;
  gap: 16px;
  padding: 24px 30px;
}
.pzcar .pzmeta h3 {
  margin: 0 0 5px;
}
.pzcar .pzmeta p {
  margin: 0;
}
/* jersey numerals: Anton italic, OUTLINED — transparent fill, white stroke */
/* line-height + trailing room: the italic stroke's ink overhangs its box
   top-right, so a tight box reads as a clipped numeral */
.pzcar .pzc .v,
.pzcar .pzc.vt3 .v {
  height: auto;
  margin: 0;
  display: block;
  font-family: var(--font-display), sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.015em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.92);
  text-shadow: none;
  font-size: clamp(62px, 6.9vw, 92px);
  line-height: 1.1;
  padding-right: 0.06em;
}
/* uniform with siblings: outlined "?" glyph leads, gold box floats right
   under the warm bloom */
.pzcar .pzc.vt2 .fx-box {
  position: absolute;
  right: -2%;
  top: 42%;
  transform: translateY(-50%);
  height: 235px;
  margin: 0;
  align-self: auto;
}
@media (max-width: 640px) {
  .pzcar .pzc.vt2 .fx-box {
    height: 180px;
    right: -4%;
  }
}
.pzcar .pzc h3 {
  font-family: var(--font-ui);
  font-weight: 800;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 18px;
  color: #fff;
}
.pzcar .pzc p {
  font-size: 13.5px;
  color: rgb(var(--ink)/0.62);
}
.pzdots,
.tqdots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  display: flex;
  gap: 8px;
}
.pzdots button,
.tqdots button {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  transition:
    background 0.25s ease,
    width 0.25s ease;
}
.pzdots button.on,
.tqdots button.on {
  background: var(--blue);
  width: 22px;
}

@media (max-width: 640px) {
  .pzcar {
    height: 258px;
  }
  .pzcar .glass.pzc.pzslide {
    height: 228px;
  }
  /* numerals scale to the phone card so no glyph runs past the edge */
  .pzcar .pzc .v,
  .pzcar .pzc.vt3 .v {
    font-size: clamp(48px, 16.5vw, 64px);
  }
}

/* ══ MOBILE STACKING DECK — feature cells pile onto each other as you
   scroll, so six cards cost one card of attention ══ */
@media (max-width: 640px) {
  .featpanel {
    display: block;
    border: none;
    background: none;
    border-radius: 0;
    overflow: visible;
  }
  .featpanel .beam {
    display: none;
  }
  .featpanel .fcell {
    position: sticky;
    margin-bottom: 14px;
    min-height: 0;
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background:
      radial-gradient(
        120% 110% at 16% -6%,
        rgba(1, 145, 255, 0.26),
        transparent 55%
      ),
      linear-gradient(180deg, #0a1024, #04070e);
    box-shadow: 0 -14px 32px -20px rgba(0, 0, 0, 0.85);
  }
  /* stepped pins — each card parks 12px lower than the one it caught, so
     the deck's edges stay visible (identical tops = invisible stack) */
  .featpanel .fcell:nth-of-type(1) {
    top: 82px;
  }
  .featpanel .fcell:nth-of-type(2) {
    top: 94px;
  }
  .featpanel .fcell:nth-of-type(3) {
    top: 106px;
  }
  .featpanel .fcell:nth-of-type(4) {
    top: 118px;
  }
  .featpanel .fcell:nth-of-type(5) {
    top: 130px;
  }
  .featpanel .fcell:nth-of-type(6) {
    top: 142px;
  }
  .featpanel .fcell:last-of-type {
    margin-bottom: 0;
  }
}

/* ══ MOBILE STEPS DECK — the three steps catch one another too: sticky
   lives on the .tcell wrapper so the card keeps its tilt transforms ══ */
@media (max-width: 640px) {
  .steps {
    display: block;
  }
  .steps .tcell {
    position: sticky;
    margin-bottom: 14px;
  }
  .steps .tcell:nth-child(1) {
    top: 82px;
  }
  .steps .tcell:nth-child(2) {
    top: 96px;
  }
  .steps .tcell:nth-child(3) {
    top: 110px;
  }
  .steps .tcell:last-child {
    margin-bottom: 0;
  }
  .sec-green .glass.step {
    background:
      radial-gradient(
        120% 110% at 16% -6%,
        rgba(99, 125, 255, 0.2),
        transparent 55%
      ),
      linear-gradient(180deg, #0b1730, #050a16);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow:
      0 -14px 32px -20px rgba(0, 0, 0, 0.85),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
}

/* drag-lane tiles answer the cursor */
.tmrow .tooltile {
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}
.tmrow .tooltile:hover {
  border-color: rgba(127, 196, 255, 0.35);
  background: rgba(255, 255, 255, 0.075);
}

/* ══ VS PANELS — the day with Linkme against the day without. Pills
   drop and settle in the lit panel; the other panel's sink and grey. ══ */
.vspanels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 34px auto 0;
}
/* the wrapper carries the tag; the panel inside it does the clipping, so
   the falling pills are contained and the tag is never touched */
.vswrap {
  position: relative;
  display: flex;
}
.vspanel {
  position: relative;
  flex: 1;
  border-radius: 22px;
  padding: 40px 26px 32px;
  min-height: 266px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vs-us {
  border: 1px solid rgba(127, 196, 255, 0.3);
  background:
    radial-gradient(
      120% 100% at 20% -8%,
      rgba(1, 145, 255, 0.34),
      transparent 58%
    ),
    linear-gradient(180deg, #0a1c42, #04070e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 70px -34px rgba(0, 0, 0, 0.9);
}
.vs-them {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #0b0d12, #05070b);
}
.vs-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  background: #0a1024;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.vswrap-them .vs-tag {
  color: rgb(var(--ink)/0.5);
}
.vs-logo {
  height: 15px;
  width: auto;
  display: block;
}
.vs-tag em {
  font-style: normal;
}
.vs-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.vspill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  will-change: transform;
}
/* three pill treatments cycle so the lit panel reads like the reference */
.vs-us .vspill {
  background: #0191ff;
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(1, 145, 255, 0.9);
}
.vs-us .vspill:nth-child(3n) {
  background: #0b1730;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.vs-us .vspill:nth-child(3n + 2) {
  background: #fff;
  color: #0a1024;
}
.vs-them .vspill {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(var(--ink)/0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
@media (max-width: 640px) {
  .vspanels {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 28px;
  }
  .vspanel {
    min-height: 0;
    padding: 30px 22px 24px;
  }
  .vs-pills {
    gap: 8px;
  }
  .vspill {
    font-size: 12px;
    padding: 9px 12px;
    max-width: 100%;
  }
}

/* prize card day chip */
.pzday {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-text);
  opacity: 0.85;
}

/* ══ TIMELINE PHASE TOOLTIPS — hover, focus or tap a milestone and it
   explains itself. Ends align to their edge so they can't overflow. ══ */
.tlc {
  position: relative;
  cursor: default;
  outline: none;
}
.tltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  z-index: 5;
  width: max-content;
  max-width: 200px;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.42;
  font-weight: 600;
  color: rgb(var(--ink)/0.86);
  background: linear-gradient(180deg, #0f1a33, #060a14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px -22px rgba(0, 0, 0, 0.95);
  opacity: 0;
  transform: translate(-50%, 6px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
/* little pointer down to the milestone */
.tltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #0a1226;
}
/* the milestone lifts a touch so the hover feels intentional */
.tlc .tic {
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
}
.tlc:hover .tic {
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .tltip {
    max-width: 150px;
    font-size: 11.5px;
    padding: 8px 10px;
  }
}

/* ══ TIMELINE POINTS — every notable day on the bar, hoverable. Each dot
   carries a solid core so the bar reads as passing BEHIND it, not through. ══ */
.tl-pt {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  outline: none;
  background: none;
}
/* the tick itself is a hairline; the 14px box around it is the hit area */
.tl-pt::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  bottom: 7px;
  width: 1.5px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  transition:
    background 0.2s ease,
    top 0.2s ease,
    bottom 0.2s ease,
    box-shadow 0.2s ease;
}
.tl-pt.prize::after {
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(1, 145, 255, 0.85);
}
.tl-pt:hover::after,
.tl-pt:focus-visible::after {
  top: 2px;
  bottom: 2px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}
.tl-pt .tltip {
  bottom: calc(100% + 12px);
}
.tl-pt .tltip b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.tl-pt:hover .tltip,
.tl-pt:focus-visible .tltip {
  opacity: 1;
  transform: translate(-50%, 0);
}
.tl-pt.pt-first .tltip {
  left: 0;
  transform: translate(-14px, 6px);
}
.tl-pt.pt-first:hover .tltip,
.tl-pt.pt-first:focus-visible .tltip {
  transform: translate(-14px, 0);
}
.tl-pt.pt-first .tltip::after {
  left: 20px;
}
.tl-pt.pt-last .tltip {
  left: auto;
  right: 0;
  transform: translate(14px, 6px);
}
.tl-pt.pt-last:hover .tltip,
.tl-pt.pt-last:focus-visible .tltip {
  transform: translate(14px, 0);
}
.tl-pt.pt-last .tltip::after {
  left: auto;
  right: 20px;
}
@media (max-width: 640px) {
  /* eleven points is a scrum at phone width — keep the prize days only */
  .tl-pt:not(.prize) {
    display: none;
  }
  /* tooltips stay inside the phone regardless of which dot is tapped */
  .tl-pt .tltip {
    max-width: min(230px, 72vw);
    white-space: normal;
  }
  .tl-pt.pt-first .tltip,
  .tl-pt.pt-last .tltip {
    max-width: min(200px, 64vw);
  }
  /* the three labelled milestones get room to breathe under the bar */
  .tl-chs.three {
    gap: 10px;
  }
  .tlc .d {
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }
  .tlc .t {
    font-size: 13px;
    line-height: 1.25;
  }
}

/* the wordmark carries this label rather than type spelling it out */
.onp.cap {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

/* ══ TIMELINE TRACK — on phones the bar becomes a sideways scrubber:
   the line keeps a real 760px so all eleven days get room, and the
   track scrolls. Top padding is deliberate — overflow-x:auto forces
   overflow-y to clip, so the tooltips have to live inside the box. ══ */
.tl-track {
  position: relative;
}
.tl-ends {
  display: none;
}
@media (max-width: 640px) {
  .tl-track {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 96px 18px 4px;
    margin: 0 -18px;
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent,
      #000 5%,
      #000 95%,
      transparent
    );
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 5%,
      #000 95%,
      transparent
    );
  }
  .tl-track::-webkit-scrollbar {
    display: none;
  }
  .tl-line {
    display: flex;
    width: 760px;
    height: 34px;
    margin: 0 0 6px;
  }
  /* room for all of them again now that the track is wider than the screen */
  .tl-pt:not(.prize) {
    display: block;
  }
  .tl-pt .tltip {
    max-width: 200px;
  }
  .tl-ends {
    display: flex;
    justify-content: space-between;
    width: 760px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgb(var(--ink)/0.42);
    padding-top: 10px;
  }
}

/* ══ MOBILE SCHEDULE CARDS — the phone reads the timeline instead of
   hovering it: a slim progress track, then swipeable day cards ══ */
.tl-cards {
  display: none;
}
@media (max-width: 640px) {
  /* the track goes back to a slim progress indicator — no reserved
     tooltip space, no sideways scroll, no hairline tap targets */
  .tl-track {
    overflow: visible;
    padding: 0;
    margin: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .tl-line {
    width: auto;
    height: 12px;
    margin: 16px 0 0;
  }
  .tl-pt {
    pointer-events: none;
  }
  .tl-pt .tltip {
    display: none;
  }
  .tl-pt::after {
    top: 2px;
    bottom: 2px;
  }
  .tl-ends {
    display: flex;
    width: auto;
    padding-top: 9px;
  }
  .tl-chs {
    display: none;
  }

  /* a scroll container clips at its padding edge, so the rail carries
     vertical padding as slack: the snapped card's ring and glow render
     whole, and a card is never sliced flat along its bottom border on
     phones. The margins give the padding back, so the rhythm holds */
  .tl-cards {
    display: flex;
    list-style: none;
    margin: 14px -18px -12px;
    padding: 4px 18px 16px;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tl-cards::-webkit-scrollbar {
    display: none;
  }
  .tl-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    padding: 16px 17px;
    border-radius: 14px;
    background: linear-gradient(180deg, #0a1024, #04070e);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .tl-card.prize {
    border-color: rgba(127, 196, 255, 0.35);
    background:
      radial-gradient(
        120% 110% at 16% -8%,
        rgba(1, 145, 255, 0.3),
        transparent 58%
      ),
      linear-gradient(180deg, #0a1024, #04070e);
  }
  .tl-card.done {
    opacity: 0.62;
  }
  /* the snapped card lifts out of the rail and matches the track marker */
  .tl-card {
    transition:
      border-color 0.3s ease,
      opacity 0.3s ease,
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .tl-card.sel {
    opacity: 1;
    border-color: rgba(1, 145, 255, 0.7);
    box-shadow:
      0 0 0 1px rgba(1, 145, 255, 0.35),
      0 14px 30px -18px rgba(1, 145, 255, 0.8);
  }
  .tl-card .d {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue-text);
  }
  .tl-card h4 {
    margin: 7px 0 5px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .tl-card p {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.45;
    color: rgb(var(--ink)/0.66);
  }
}

/* ══ GRAND FINALE CARD — the one card that should stop the scroll:
   brighter ground, a touch larger, and its numeral filled rather than
   outlined so it reads as the headline prize. ══ */
/* !important matches the .vt1/.vt2/.vt3 tints above, which are !important
   themselves — without it the tint wins regardless of specificity */
.pzcar .pzc.pz-hero {
  background: radial-gradient(
    120% 100% at 25% -10%,
    #3aa9ff,
    #0191ff 62%,
    #0166cc
  ) !important;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 34px 80px -30px rgba(1, 145, 255, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  z-index: 2;
}
.pzcar .pzc.pz-hero .v {
  color: #fff;
  -webkit-text-stroke: 0;
  /* "2 x $10,000" is 11 glyphs against the siblings' 6-7, so it needs its
     own scale to stay on one line — the card still dominates via its
     brighter ground, the size bump and the filled numeral */
  font-size: clamp(42px, 5.1vw, 68px);
  white-space: nowrap;
}
.pzcar .pzc.pz-hero p {
  color: rgba(255, 255, 255, 0.9);
}
.pzcar .pzc.pz-hero .pzday {
  color: #fff;
  opacity: 0.95;
}

/* ══ TIMELINE ↔ CARD SYNC (mobile) — swiping the schedule rail slides a
   marker along the track, so the card you're reading always shows where
   it falls in the 21 days. Desktop keeps its hover ticks. ══ */
.tl-sel {
  display: none;
}
@media (max-width: 640px) {
  .tl-sel {
    display: block;
    position: absolute;
    top: -4px;
    bottom: -4px;
    z-index: 4;
    width: 3px;
    margin-left: -1.5px;
    border-radius: 99px;
    background: #fff;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.5),
      0 0 12px 2px rgba(1, 145, 255, 0.9);
    transition: left 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  }
  /* the tick under the marker brightens to meet it */
  .tl-pt.sel::after {
    background: #fff;
    opacity: 1;
  }
  .tl-pt.sel {
    z-index: 3;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tl-sel {
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   PORT NOTE (link.me): this page ships as a route inside the main
   app, and the app's own chunk stylesheets load after this file —
   a few of them target the root with higher specificity. These two
   root rules are restated at a weight that wins. Same values as the
   block at the top of this file, nothing new. The stylesheet is
   removed from <head> when the route unmounts, so it cannot leak.
   overflow-x is CLIP, never hidden: hidden would make body a scroll
   container and silently kill position:sticky across the page.
   ══════════════════════════════════════════════════════════════ */
html,
body {
  overflow-x: clip !important;
}
body {
  font-family: var(--font-ui) !important;
}

/* The app mounts an empty toast region as a bare `body > section`. This
   page styles `section` globally (92-128px of vertical rhythm), which
   was landing on that empty node and pushing the whole page down by
   256px. None of this page's own sections are direct children of body. */
body > section {
  padding: 0;
}
