/* ============================================================
   BRACKETEER: the web face
   "Broadcast Coliseum" as a page rather than an app screen.

   The rules this is built to:

     - Self hosted type. The app leans on Bahnschrift, which is a
       Windows only face, so the old stack fell through to
       Helvetica on every phone and the site stopped looking like
       the product. Oswald carries the condensed display voice
       everywhere now.
     - No external request of any kind, so the CSP stays shut and
       the privacy page stays true.
     - Chamfered armour panels and champion gold, the same shape
       language and palette the app is drawn in.
     - Motion that reads as a broadcast package: one orchestrated
       load, a running ticker, and reveals as you go down. All of
       it off under prefers-reduced-motion.
   ============================================================ */

@import url('/fonts.css?v=f444364d44');

:root {
  /* ---- Ink field ---- */
  --ink-void:   #03050A;
  --ink-900:    #05070C;
  --ink-800:    #080B13;
  --ink-700:    #0C111B;
  --ink-600:    #121826;
  --ink-500:    #1A2233;

  --line-faint: rgba(150, 178, 220, .09);
  --line-soft:  rgba(150, 178, 220, .16);
  --line-hard:  rgba(170, 198, 240, .28);

  --text-hi:    #EEF3FB;
  --text-mid:   #A7B4CB;
  --text-low:   #6B7A94;
  --text-ghost: #46536B;

  --gold-100:   #FFE9B8;
  --gold-300:   #FFC961;
  --gold-500:   #FFA51F;
  --gold-700:   #E1720A;
  --gold-glow:  rgba(255, 165, 31, .42);

  --azure-200:  #A9D2FF;
  --azure-400:  #4E9DFF;
  --azure-500:  #2E7BF6;
  --pulse-300:  #FF7FB6;
  --pulse-500:  #FF2E7E;
  --mint-300:   #8DF7DC;
  --mint-500:   #21E0B0;
  --violet-400: #A277FF;

  --font-display: 'Oswald', 'Bahnschrift', 'Arial Narrow', sans-serif;
  --font-body:    'Archivo', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Cascadia Mono', ui-monospace, monospace;

  --chamfer:    12px;
  --chamfer-sm: 7px;
  --chamfer-lg: 20px;

  --shadow-1: 0 1px 2px rgba(0,0,0,.5), 0 4px 14px rgba(0,0,0,.34);
  --shadow-2: 0 2px 4px rgba(0,0,0,.55), 0 12px 34px rgba(0,0,0,.46);
  --shadow-3: 0 4px 8px rgba(0,0,0,.6), 0 26px 68px rgba(0,0,0,.6);

  --ease-out:  cubic-bezier(.16,.84,.36,1);
  --ease-snap: cubic-bezier(.2,1.5,.4,1);

  --wrap: 1120px;
  --gut: clamp(18px, 4.4vw, 44px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.62;
  color: var(--text-mid);
  background: var(--ink-void);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/*
  The field the whole page sits on: two slow colour washes, a fine
  engineering grid, and a vignette to stop the grid reaching the edges.
  Fixed, so it does not travel with the scroll.
*/
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 760px at 12% -12%, rgba(255,165,31,.15), transparent 58%),
    radial-gradient(1000px 700px at 94% 2%, rgba(78,157,255,.13), transparent 56%),
    radial-gradient(900px 700px at 50% 110%, rgba(162,119,255,.08), transparent 60%),
    var(--ink-void);
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(150,178,220,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,178,220,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 12%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 12%, transparent 72%);
}

a { color: var(--azure-200); text-underline-offset: 3px; text-decoration-color: rgba(169,210,255,.34); }
a:hover { color: #D6E9FF; text-decoration-color: currentColor; }

::selection { background: var(--gold-500); color: #0A0600; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: max(var(--gut), env(safe-area-inset-left));
  padding-right: max(var(--gut), env(safe-area-inset-right));
}

/* ---------------- Type primitives ---------------- */

.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-hi);
  line-height: .92;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text-low);
}
.grad-gold {
  background: linear-gradient(176deg, var(--gold-100) 0%, var(--gold-300) 36%, var(--gold-700) 112%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.grad-ice {
  background: linear-gradient(176deg, #FFFFFF 0%, var(--azure-200) 48%, var(--azure-500) 116%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.chamfer    { clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer)); }
.chamfer-sm { clip-path: polygon(var(--chamfer-sm) 0, 100% 0, 100% calc(100% - var(--chamfer-sm)), calc(100% - var(--chamfer-sm)) 100%, 0 100%, 0 var(--chamfer-sm)); }
.chamfer-lg { clip-path: polygon(var(--chamfer-lg) 0, 100% 0, 100% calc(100% - var(--chamfer-lg)), calc(100% - var(--chamfer-lg)) 100%, 0 100%, 0 var(--chamfer-lg)); }

/* ---------------- Header ---------------- */

.top {
  position: sticky; top: 0; z-index: 40;
  background: rgba(3,5,10,.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-faint);
}
.top .wrap { display: flex; align-items: center; gap: 16px; height: 66px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand img {
  width: 34px; height: 34px; display: block; flex: 0 0 auto;
  filter: drop-shadow(0 0 16px var(--gold-glow));
}
.brand .word {
  font-family: var(--font-display); font-weight: 600;
  font-size: 21px; letter-spacing: .17em; line-height: 1;
  text-transform: uppercase; white-space: nowrap;
}
.brand .word .tail { color: var(--text-mid); }

.top nav { margin-left: auto; display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); }
.top nav a {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-low); text-decoration: none; white-space: nowrap;
  padding: 22px 0;
  position: relative;
  transition: color 200ms var(--ease-out);
}
.top nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 18px;
  height: 2px; background: var(--gold-500);
  transition: right 260ms var(--ease-out);
}
.top nav a:hover, .top nav a[aria-current] { color: var(--gold-300); }
.top nav a:hover::after, .top nav a[aria-current]::after { right: 0; }

/* ---------------- The live bug ---------------- */

.bug {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 12px;
  background: rgba(255,46,126,.1);
  border: 1px solid rgba(255,46,126,.34);
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--pulse-300);
}
.bug .dot {
  width: 7px; height: 7px; border-radius: 99px; background: var(--pulse-500);
  box-shadow: 0 0 12px var(--pulse-500);
  animation: bugPulse 2.4s ease-in-out infinite;
}
@keyframes bugPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

/* ---------------- Hero ---------------- */

.hero { position: relative; padding: clamp(48px, 8vw, 104px) 0 clamp(40px, 6vw, 76px); }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero .kicker { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero .kicker .rule { flex: 1; min-width: 24px; height: 1px; background: linear-gradient(90deg, var(--line-hard), transparent); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 8.4vw, 108px);
  line-height: .86;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--text-hi);
  margin: 22px 0 0;
}
.hero h1 .line { display: block; }
.hero h1 .sm { font-size: .58em; letter-spacing: .04em; color: var(--text-low); font-weight: 500; }

.hero .sub {
  margin-top: 24px; max-width: 30em;
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--text-mid);
}
.hero .sub strong { color: var(--text-hi); font-weight: 600; }

/* The store chips. They are not links yet and must not pretend to be. */
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.store {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 20px 12px 16px;
  background: linear-gradient(160deg, rgba(26,34,51,.9), rgba(8,11,19,.94));
  border: 1px solid var(--line-soft);
}
/*
  A fixed square for the glyph, so the Apple mark and the Play triangle sit
  on the same centre line rather than each finding its own from a different
  bounding box.
*/
.store .glyph {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: var(--text-low);
}
.store .glyph svg { display: block; }
/* The Play triangle carries its weight to the right, so it needs nudging
   back to look centred. The Apple mark sits high in its own box. */
.store .glyph svg.play { margin-left: -1.5px; }
.store .glyph svg.apple { margin-top: -1px; }
.store > div { display: flex; flex-direction: column; justify-content: center; }
.store b {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 15.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid);
  line-height: 1.15;
}
.store span {
  display: block; font-family: var(--font-mono); font-size: 8.5px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-ghost);
}

/* ---------------- The hero device ---------------- */

.device { position: relative; justify-self: center; width: 100%; max-width: 328px; }
.device::before {
  content: '';
  position: absolute; inset: -14% -18%;
  background: radial-gradient(closest-side, var(--gold-glow), transparent 72%);
  filter: blur(26px);
  z-index: 0;
}
.device .frame {
  position: relative; z-index: 1;
  padding: 9px;
  background: linear-gradient(160deg, #2A3446, #10151F 42%, #070A11);
  border-radius: 34px;
  box-shadow:
    var(--shadow-3),
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 -1px 0 rgba(0,0,0,.6),
    0 0 0 1px rgba(0,0,0,.7);
}
/* The earpiece slot, which is what makes it read as a phone at a glance. */
.device .frame::before {
  content: '';
  position: absolute; z-index: 2; top: 18px; left: 50%;
  width: 58px; height: 5px; margin-left: -29px;
  background: #04060B; border-radius: 99px;
}
.device img {
  display: block; width: 100%; height: auto;
  border-radius: 26px;
  background: var(--ink-900);
}

/* A broadcast caption pinned to the frame, the way a score bug sits on a feed. */
.device .cap {
  position: absolute; z-index: 2; left: -12px; bottom: 34px;
  padding: 9px 14px;
  background: linear-gradient(120deg, var(--gold-500), var(--gold-700));
  color: #180B00;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  box-shadow: var(--shadow-2);
}
.device .cap.b {
  left: auto; right: -12px; bottom: auto; top: 40px;
  background: linear-gradient(120deg, var(--azure-400), var(--azure-500));
  color: #00101F;
}

/* ---------------- The ticker ---------------- */

/*
  A lower third. The label is the whole point: without it a strip of
  bracket names sliding past reads as loose words rather than a feed of
  what is running. The label stays put and the names run behind it.
*/
.ticker {
  position: relative;
  display: flex; align-items: stretch;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  background: linear-gradient(180deg, rgba(12,17,27,.9), rgba(5,7,12,.9));
  overflow: hidden;
}

.ticker .label {
  position: relative; z-index: 2; flex: 0 0 auto;
  display: flex; align-items: center; gap: 9px;
  padding: 0 18px 0 max(var(--gut), env(safe-area-inset-left));
  background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
  color: #180B00;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
}
.ticker .label .dot {
  width: 7px; height: 7px; border-radius: 99px; background: #180B00;
  animation: bugPulse 2.4s ease-in-out infinite;
}
/* The gold block runs off into the field rather than stopping on an edge. */
.ticker .label::after {
  content: ''; position: absolute; right: -14px; top: 0; bottom: 0; width: 14px;
  background: linear-gradient(90deg, var(--gold-700), transparent);
}

.ticker .feed {
  position: relative; flex: 1; min-width: 0; overflow: hidden;
  padding: 15px 0;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 92%, transparent);
}
.ticker .run {
  display: flex; align-items: center; gap: 30px;
  width: max-content; padding-left: 22px;
  animation: roll 46s linear infinite;
}
.ticker:hover .run { animation-play-state: paused; }
.ticker b {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-mid); white-space: nowrap;
}
.ticker i { width: 6px; height: 6px; flex: 0 0 auto; background: var(--gold-500); transform: rotate(45deg); opacity: .75; }

@keyframes roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/*
  Standing still, a masked strip of half words is just noise. With motion
  off it becomes a plain scrollable line that starts at the beginning.
*/
@media (prefers-reduced-motion: reduce) {
  .ticker .feed {
    overflow-x: auto; scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
  }
  .ticker .feed::-webkit-scrollbar { display: none; }
}

@media (max-width: 620px) {
  .ticker .label { padding-right: 14px; font-size: 8.5px; letter-spacing: .16em; }
  .ticker b { font-size: 13px; }
  .ticker .run { gap: 24px; }
}

/* ---------------- Sections ---------------- */

section { padding: clamp(48px, 6.4vw, 88px) 0; }

/*
  The section bug: an index and a kicker on one line, the way a broadcast
  labels a segment, with the headline hanging under it.
*/
.head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: clamp(26px, 3.2vw, 40px); }
.head .idx {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; color: var(--gold-500);
  line-height: 1.5; flex: 0 0 auto;
}
.head .txt { flex: 1; min-width: 0; }
.head .txt > .eyebrow { display: block; line-height: 1.5; }
.head h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: .92; letter-spacing: -.005em;
  text-transform: uppercase; color: var(--text-hi);
  margin-top: 10px;
}
.head p { margin-top: 14px; max-width: 46em; }

/* ---------------- The run: three steps ---------------- */

.steps { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.step {
  position: relative; overflow: hidden;
  padding: 28px 24px 26px;
  background: linear-gradient(166deg, rgba(18,24,38,.94), rgba(6,9,16,.96));
  border: 1px solid var(--line-faint);
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.step:hover { border-color: var(--line-soft); transform: translateY(-3px); }
/* A ghost numeral behind the copy, the way a broadcast stacks a big figure. */
.step .n {
  position: absolute; right: 8px; top: -22px;
  font-family: var(--font-display); font-weight: 700; font-size: 132px;
  line-height: 1; color: rgba(255,255,255,.028);
  pointer-events: none; user-select: none;
}
.step .bar { display: block; width: 38px; height: 3px; background: var(--gold-500); }
.step.b .bar { background: var(--azure-400); }
.step.c .bar { background: var(--mint-500); }
.step h3 {
  position: relative;
  font-family: var(--font-display); font-weight: 600;
  font-size: 21px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-hi); margin: 16px 0 9px;
}
.step p { position: relative; font-size: 14.5px; }

/* ---------------- The screenshot strip ---------------- */

.strip-wrap { padding-bottom: clamp(16px, 2.4vw, 30px); }
.strip-rig { position: relative; }

.strip {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px max(var(--gut), env(safe-area-inset-left)) 22px;
}
.strip::-webkit-scrollbar { display: none; }

.strip figure {
  flex: 0 0 auto; width: clamp(200px, 52vw, 236px);
  scroll-snap-align: center;
  display: flex; flex-direction: column; gap: 12px;
}

/* Each shot is a real button, because it opens something. */
.shot {
  position: relative; display: block; padding: 0; width: 100%;
  background: var(--ink-900); border: 1px solid var(--line-soft);
  cursor: zoom-in; overflow: hidden;
  transition: transform 380ms var(--ease-out), border-color 380ms var(--ease-out), box-shadow 380ms var(--ease-out);
  box-shadow: var(--shadow-2);
}
.shot img { display: block; width: 100%; height: auto; }
.shot:hover, .shot:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255,201,97,.5);
  box-shadow: var(--shadow-3), 0 0 40px -12px var(--gold-glow);
  outline: none;
}
.shot .zoom {
  position: absolute; right: 10px; bottom: 10px;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: rgba(5,7,12,.78); border: 1px solid var(--line-soft);
  color: var(--gold-300);
  opacity: 0; transform: translateY(6px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
  backdrop-filter: blur(6px);
}
.shot:hover .zoom, .shot:focus-visible .zoom { opacity: 1; transform: none; }

.strip figcaption {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-low); line-height: 1.6;
}

/* The rail: proof there is more to the right, and where you are in it. */
.rail {
  height: 2px; margin: 0 max(var(--gut), env(safe-area-inset-left));
  background: var(--line-faint); position: relative; overflow: hidden;
}
.rail .thumb {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 30%; background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
  transition: transform 180ms linear;
}
.hint {
  margin: 12px max(var(--gut), env(safe-area-inset-left)) 0;
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-ghost);
}

/*
  Above this width all five fit at once, so there is nothing to scroll and
  nothing to hint at. A hidden scrollbar with a mouse and no trackpad is a
  dead end, so the answer is to not need one.
*/
@media (min-width: 1080px) {
  .strip {
    max-width: var(--wrap); margin: 0 auto;
    scroll-snap-type: none; overflow: visible;
    justify-content: space-between; gap: 14px;
  }
  .strip figure { width: calc((100% - 56px) / 5); }
  .rail, .hint { display: none; }
}

/* ---------------- The lightbox ---------------- */

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(6px, 2vw, 28px);
  padding: clamp(14px, 3vw, 40px);
  background: rgba(2, 4, 8, .93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fade 220ms var(--ease-out);
}
.lightbox[hidden] { display: none; }

.lb-stage { display: flex; flex-direction: column; align-items: center; gap: 14px; min-width: 0; }
.lb-stage img {
  display: block; max-width: 100%; max-height: 78vh; width: auto; height: auto;
  border: 1px solid var(--line-hard);
  box-shadow: var(--shadow-3), 0 0 90px -30px var(--gold-glow);
  animation: pop 320ms var(--ease-out);
}
@keyframes pop { from { opacity: 0; transform: scale(.965); } to { opacity: 1; transform: none; } }
.lb-stage figcaption {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-low);
  text-align: center;
}

.lb-nav, .lb-close {
  display: grid; place-items: center;
  width: 46px; height: 46px; flex: 0 0 auto;
  background: rgba(14,20,32,.86); border: 1px solid var(--line-soft);
  color: var(--text-mid); cursor: pointer;
  transition: color 200ms, border-color 200ms, background 200ms;
}
.lb-nav:hover, .lb-close:hover { color: var(--gold-300); border-color: rgba(255,201,97,.45); background: rgba(24,32,48,.92); }
.lb-close { position: absolute; top: clamp(12px, 2.4vw, 28px); right: clamp(12px, 2.4vw, 28px); z-index: 2; }

@media (max-width: 620px) {
  .lightbox { grid-template-columns: 1fr; }
  .lb-nav { position: absolute; bottom: 18px; }
  .lb-nav.prev { left: 18px; }
  .lb-nav.next { right: 18px; }
  .lb-stage img { max-height: 68vh; }
}

/* ---------------- Feature grid ---------------- */

.grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); }
.card {
  position: relative;
  padding: 24px 22px 22px;
  background: linear-gradient(168deg, rgba(18,24,38,.9), rgba(7,10,17,.94));
  border: 1px solid var(--line-faint);
  transition: border-color 300ms var(--ease-out), transform 300ms var(--ease-out), background 300ms var(--ease-out);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--line-soft);
  background: linear-gradient(168deg, rgba(23,31,48,.94), rgba(8,12,20,.96));
}
.card .i {
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: .2em; color: var(--gold-500);
}
.card.azure  .i { color: var(--azure-400); }
.card.mint   .i { color: var(--mint-500); }
.card.pulse  .i { color: var(--pulse-500); }
.card.violet .i { color: var(--violet-400); }
.card h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-hi); margin: 12px 0 8px;
}
.card p { font-size: 14.5px; }

/* ---------------- Bands ---------------- */

.band {
  padding: clamp(30px, 4.4vw, 52px);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(255,165,31,.1), transparent 62%),
    linear-gradient(160deg, rgba(20,27,42,.94), rgba(6,9,16,.96));
  border: 1px solid rgba(255,201,97,.2);
}
.band.pulse {
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(255,46,126,.1), transparent 62%),
    linear-gradient(160deg, rgba(24,16,28,.94), rgba(7,6,12,.96));
  border-color: rgba(255,46,126,.24);
}
.band h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px); line-height: .96;
  letter-spacing: -.005em; text-transform: uppercase; color: var(--text-hi);
  margin: 12px 0 14px;
}
.band p { max-width: 44em; }
.band p + p { margin-top: 12px; }

.split { display: grid; gap: clamp(22px, 3.4vw, 44px); grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); }

.tick { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.tick li { display: flex; gap: 12px; align-items: flex-start; list-style: none; font-size: 14.5px; }
.tick .m {
  flex: 0 0 auto; width: 7px; height: 7px; margin-top: 8px;
  background: var(--gold-500); transform: rotate(45deg);
}
.band.pulse .tick .m { background: var(--pulse-500); }
.tick b { color: var(--text-hi); font-weight: 600; }

/* ---------------- Prose, for the legal pages ---------------- */

.doc { padding: clamp(38px, 6vw, 76px) 0 clamp(56px, 8vw, 104px); max-width: 760px; }
.doc h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 6.4vw, 62px); line-height: .92;
  letter-spacing: -.005em; text-transform: uppercase; color: var(--text-hi);
}
.doc .stamp {
  margin-top: 12px; font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .18em; color: var(--text-ghost); text-transform: uppercase;
}
.doc .lede { font-size: clamp(16px, 1.5vw, 19px); color: var(--text-hi); margin-top: 26px; line-height: 1.55; }
.doc h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-hi); margin: 38px 0 2px;
  padding-top: 18px; border-top: 1px solid var(--line-faint);
}
.doc p { margin-top: 12px; }
.doc ul, .doc ol { margin: 14px 0 0 20px; display: flex; flex-direction: column; gap: 9px; }
.doc li { padding-left: 4px; }
.doc li::marker { color: var(--gold-500); }
.doc strong { color: var(--text-hi); font-weight: 600; }

.note, .callout {
  margin-top: 26px; padding: 18px 20px;
  background: rgba(255,46,126,.08); border: 1px solid rgba(255,46,126,.28);
}
.callout { background: rgba(78,157,255,.07); border-color: rgba(78,157,255,.24); }
.note .eyebrow { color: var(--pulse-300); }
.callout .eyebrow { color: var(--azure-200); }
.note p, .callout p { margin-top: 8px; font-size: 14.5px; }

/* ---------------- Footer ---------------- */

footer {
  border-top: 1px solid var(--line-faint);
  background: linear-gradient(180deg, transparent, rgba(5,7,12,.7));
  padding: clamp(34px, 5vw, 56px) 0 clamp(38px, 5vw, 60px);
}
footer .wrap { display: flex; flex-wrap: wrap; gap: 26px 40px; align-items: flex-start; }
footer .who { display: flex; flex-direction: column; gap: 10px; margin-right: auto; }
footer .who .word {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; letter-spacing: .17em; text-transform: uppercase;
}
footer .who .word .tail { color: var(--text-mid); }
footer .who small {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-ghost);
}
footer nav { display: flex; flex-direction: column; gap: 9px; }
footer nav a {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-low); text-decoration: none;
}
footer nav a:hover { color: var(--gold-300); }

/* ---------------- The load, and the reveals ---------------- */

/*
  One orchestrated entrance rather than a scatter of little ones: the hero
  parts come up in sequence, then everything below waits for the scroll.
*/
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.enter { opacity: 0; animation: rise 760ms var(--ease-out) forwards; }
.enter.d1 { animation-delay: 60ms; }
.enter.d2 { animation-delay: 150ms; }
.enter.d3 { animation-delay: 240ms; }
.enter.d4 { animation-delay: 340ms; }
.enter.d5 { animation-delay: 450ms; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.on { opacity: 1; transform: none; }
/* Without the script the content still has to be readable. */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------------- Narrow ---------------- */

/*
  Stacked, the words come first. Leading with the screenshot put a 580px
  tall picture between the top of the page and the headline, so on a phone
  you scrolled past the whole pitch to reach it.

  The shot itself is cropped to its top half and faded out, which reads as
  a glimpse of the app rather than a full screen of it.
*/
@media (max-width: 880px) {
  .hero { padding-top: clamp(32px, 6vw, 56px); }
  .hero .wrap { grid-template-columns: 1fr; gap: 0; }
  .hero h1 { font-size: clamp(46px, 13.5vw, 84px); }

  .hero .device {
    margin-top: 44px;
    max-width: 236px; justify-self: center;
  }
  /* The chips crowd a frame this size and there is nothing to pin them to. */
  .device .cap { display: none; }
}

@media (max-width: 620px) {
  .top nav a[href^="#"] { display: none; }
  .brand .word { font-size: 18px; letter-spacing: .13em; }
  .head { gap: 12px; }
  .stores { gap: 10px; }
  .store { padding: 11px 16px 11px 13px; }
  footer .who { margin-right: 0; width: 100%; }
  footer nav { flex-direction: row; flex-wrap: wrap; gap: 14px 20px; }
}

@media (max-width: 400px) {
  .brand img { width: 30px; height: 30px; }
  .brand .word { font-size: 16px; letter-spacing: .1em; }
  .top nav { gap: 12px; }
  .top nav a { font-size: 9.5px; letter-spacing: .1em; }
  .hero .device { max-width: 208px; margin-top: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .enter, .reveal { opacity: 1; transform: none; }
}
