/* =========================================================
   Tag'it — landing site
   Design tokens mirror handoff/theme.ts (single source of truth)
   ========================================================= */

:root {
  /* surfaces */
  --ink:        #0B0B10;
  --ink-soft:   #15151C;
  --ink-softer: #1E1E28;
  --ink-line:   #2A2A36;
  --paper:      #FFFFFF;

  /* text */
  --text:       #FFFFFF;
  --text-dim:   #9A9AA8;
  --text-low:   #5A5A66;

  /* accents */
  --hot:        #FFEC3D;
  --hot-ink:    #0B0B10;
  --danger:     #FF2D55;
  --danger-soft:#3B0E1B;
  --boost:      #FF6B00;
  --shield:     #3DC2FF;
  --freeze:     #00E5C8;
  --lock:       #FF2D6B;

  /* type */
  --f-display: "Space Grotesk", -apple-system, system-ui, sans-serif;
  --f-body:    -apple-system, "SF Pro Text", system-ui, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* radii */
  --r-chip:  6px;
  --r-card:  14px;
  --r-hero:  18px;
  --r-sheet: 20px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--hot); color: var(--hot-ink); }

/* tiny scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--ink-line); border-radius: 6px; }
::-webkit-scrollbar-track { background: transparent; }

/* =========================================================
   Layout
   ========================================================= */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--ink-line);
  position: relative;
}
.section.tight { padding: 64px 0; }
.section.dim   { background: var(--ink-soft); }
@media (max-width: 720px) {
  .section { padding: 72px 0; }
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-low);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--text-low);
}

.h1, .h2, .h3 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
.h1 { font-size: clamp(44px, 7vw, 88px); line-height: 0.96; font-weight: 700; letter-spacing: -0.035em; }
.h2 { font-size: clamp(32px, 4.4vw, 52px); line-height: 1.02; letter-spacing: -0.025em; }
.h3 { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.15; }

.lead {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
  text-wrap: pretty;
}
.muted { color: var(--text-dim); }
.low   { color: var(--text-low); }

.mono {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}

/* =========================================================
   Stickers — the brand's signature primitive
   ========================================================= */
.sticker {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  background: var(--hot);
  color: var(--hot-ink);
  line-height: 1;
  transform: rotate(-2deg);
  white-space: nowrap;
}
.sticker.lg  { font-size: 18px; padding: 10px 16px; border-radius: 10px; box-shadow: 0 4px 0 var(--ink); }
.sticker.xl  { font-size: 28px; padding: 14px 22px; border-radius: 12px; box-shadow: 0 6px 0 var(--ink); border-width: 2px; }
.sticker.red { background: var(--danger); color: #fff; transform: rotate(3deg); }
.sticker.blue   { background: var(--shield); color: var(--ink); }
.sticker.teal   { background: var(--freeze); color: var(--ink); }
.sticker.pink   { background: var(--lock);   color: #fff; }
.sticker.orange { background: var(--boost);  color: #fff; }
.sticker.dark   { background: var(--ink-soft); color: var(--text); border-color: var(--ink-line); box-shadow: 0 3px 0 #000; }

/* App-icon logomark */
.logomark-img {
  display: block;
  width: 40px; height: 40px;
  border-radius: 9px;
  flex: none;
}

/* Logo lockup — TAG / IT! stacked stickers */
.logomark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}
.logomark .s1 {
  background: var(--hot); color: var(--hot-ink);
  font-family: var(--f-display); font-weight: 800;
  letter-spacing: 0.02em;
  padding: 4px 9px; border-radius: 6px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 2px 0 var(--ink);
  transform: rotate(-5deg);
  font-size: 14px;
}
.logomark .s2 {
  background: var(--danger); color: #fff;
  font-family: var(--f-display); font-weight: 800;
  padding: 4px 9px; border-radius: 6px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 2px 0 var(--ink);
  transform: rotate(6deg);
  margin-top: -4px; margin-left: 16px;
  font-size: 12px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: var(--hot);
  color: var(--hot-ink);
  box-shadow: 0 4px 0 var(--ink);
  transition: transform 80ms ease, box-shadow 80ms ease;
  text-transform: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 5px 0 var(--ink); }
.btn:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }
.btn.ghost {
  background: transparent; color: var(--text);
  border-color: var(--ink-line); box-shadow: 0 4px 0 var(--ink);
}
.btn.ghost:hover { border-color: var(--text); }
.btn.sm { font-size: 13px; padding: 10px 16px; border-radius: 12px; box-shadow: 0 3px 0 var(--ink); }
.btn.lg { font-size: 17px; padding: 18px 28px; border-radius: 16px; box-shadow: 0 6px 0 var(--ink); }
.btn .arrow { font-family: var(--f-mono); font-weight: 700; }

/* =========================================================
   Top nav
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,11,16,0.78);
  border-bottom: 1px solid var(--ink-line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
}
.nav-brand .wordmark {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--text);
}
.nav-brand .wordmark em {
  font-style: normal;
  color: var(--hot);
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-family: var(--f-display);
  font-weight: 600; font-size: 14px;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex; gap: 12px; align-items: center;
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 0; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 56px 0 96px;
  overflow: hidden;
  border-top: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 24px 0 0;
}
.hero-title .line { display: block; }
.hero-title .strike { color: var(--text-low); text-decoration: line-through; text-decoration-thickness: 4px; }
.hero-title .accent { color: var(--hot); }

.hero-sub {
  margin-top: 28px;
  font-family: var(--f-body);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 52ch;
  text-wrap: pretty;
}

.hero-ctas {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero-meta {
  margin-top: 28px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-low);
}
.hero-meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--freeze);
  display: inline-block; margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Hero phone */
.hero-phone-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 580px;
}
.phone {
  width: 320px; height: 640px;
  background: var(--ink);
  border-radius: 44px;
  border: 1.5px solid var(--ink-line);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 8px #000,
    0 0 0 9px var(--ink-line);
  position: relative;
  overflow: hidden;
}
.phone .notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #000; border-radius: 18px; z-index: 4;
}
.phone .status {
  position: absolute; top: 0; left: 0; right: 0; height: 48px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px 0;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  z-index: 3;
}
.phone .screen {
  position: absolute; inset: 48px 0 0; overflow: hidden;
}

/* floating decorative stickers around hero */
.float-sticker {
  position: absolute;
  font-family: var(--f-display);
  font-weight: 800;
  pointer-events: none;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -4deg)); }
  50% { transform: translateY(-8px) rotate(calc(var(--rot, -4deg) + 1deg)); }
}
.float-sticker.s {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  animation: bob 4.5s ease-in-out infinite;
}

/* =========================================================
   Loop — 3 step explainer
   ========================================================= */
.loop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .loop { grid-template-columns: 1fr; }
}
.step {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: var(--r-hero);
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex; flex-direction: column; gap: 12px;
}
.step .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-low);
}
.step h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.step p {
  font-size: 15px; line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}
.step .art {
  margin-top: auto;
  display: flex; align-items: flex-end; justify-content: center;
  padding-top: 16px;
  gap: 10px;
}

/* =========================================================
   Power-ups grid
   ========================================================= */
.powerups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .powerups { grid-template-columns: repeat(2, 1fr); }
}
.pu {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: var(--r-hero);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.pu .glyph {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 30px;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
}
.pu .name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.pu .name .badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-left: 8px;
  color: var(--text-low);
  vertical-align: 4px;
}
.pu p {
  font-size: 14px; line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}
.pu .ring {
  position: absolute;
  width: 200px; height: 200px;
  right: -80px; bottom: -100px;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

/* =========================================================
   Phone gallery (state showcase)
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 960px) {
  .gallery { grid-template-columns: 1fr; gap: 36px; }
}
.gallery-item {
  display: flex; flex-direction: column; gap: 18px;
  align-items: center; text-align: center;
}
.gallery-item .phone {
  width: 280px; height: 560px;
  transform: scale(0.95);
}
.gallery-item .label {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--text-low);
  text-transform: uppercase;
}
.gallery-item h3 {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  margin: 0;
}
.gallery-item p {
  font-size: 15px; line-height: 1.5;
  color: var(--text-dim);
  margin: 0;
  max-width: 32ch;
}

/* =========================================================
   Vibe / pull quote
   ========================================================= */
.vibe {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .vibe { grid-template-columns: 1fr; gap: 40px; }
}
.quote {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.quote em {
  background: var(--hot); color: var(--hot-ink);
  font-style: normal;
  padding: 2px 10px;
  border-radius: 6px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  display: inline-block;
  transform: rotate(-1deg);
  margin: 0 4px;
}
.quote .strike { color: var(--text-low); text-decoration: line-through; }

.vibe-card {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: var(--r-hero);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.vibe-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.stat {
  background: var(--ink);
  border: 1.5px solid var(--ink-line);
  border-radius: 12px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.stat .v {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--hot);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat .k {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-low);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .faq { grid-template-columns: 1fr; }
}
.qa {
  background: transparent;
  border: 1.5px solid var(--ink-line);
  border-radius: 14px;
  padding: 22px 24px;
}
.qa summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "+";
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--text-low);
  transition: transform 200ms;
}
.qa[open] summary::after { transform: rotate(45deg); color: var(--hot); }
.qa .a {
  margin-top: 14px;
  font-size: 15px; line-height: 1.6;
  color: var(--text-dim);
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  margin-top: 0;
  text-align: center;
  padding: 96px 0;
  border-top: 1px solid var(--ink-line);
  background: radial-gradient(60% 90% at 50% 0%, rgba(255,236,61,0.12), transparent 70%);
  position: relative;
}
.cta-band h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
}
.cta-band .accent { color: var(--hot); }
.cta-band .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--ink-line);
  padding: 56px 0 80px;
  font-size: 14px;
}
.footer .row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 720px) {
  .footer .row { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.footer h4 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-low);
  margin: 0 0 16px;
}
.footer a {
  display: block;
  color: var(--text-dim);
  padding: 4px 0;
}
.footer a:hover { color: var(--text); }
.footer .meta {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  color: var(--text-low);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}

/* =========================================================
   App-screen mini-renders (used inside .phone .screen)
   ========================================================= */
.screen-ui {
  position: absolute; inset: 0;
  padding: 20px 16px 16px;
  display: flex; flex-direction: column; gap: 14px;
  color: var(--text);
}
.screen-ui .topbar {
  display: flex; justify-content: space-between; align-items: center;
}
.screen-ui .score {
  display: inline-flex; flex-direction: column;
  background: var(--ink); border: 1.5px solid var(--ink-line);
  padding: 8px 12px; border-radius: 12px;
  font-family: var(--f-display);
}
.screen-ui .score .k { font-size: 9px; letter-spacing: 0.12em; color: var(--text-low); font-weight: 700; }
.screen-ui .score .v { font-size: 18px; font-weight: 800; color: var(--hot); font-variant-numeric: tabular-nums; }
.screen-ui .timer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--danger-soft); color: var(--danger);
  border: 1.5px solid var(--danger);
  padding: 6px 10px; border-radius: 10px;
  font-family: var(--f-display);
  font-weight: 800; font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.screen-ui .timer-pill .d {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--danger);
  animation: pulse 1s ease-in-out infinite;
}

.youre-it {
  background: var(--danger);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 6px 0 var(--ink);
  display: flex; flex-direction: column; gap: 8px;
}
.youre-it .kicker {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.85;
  font-weight: 700;
}
.youre-it .big {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.youre-it .clock {
  margin-top: 6px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.youre-it .clock small {
  font-size: 11px; opacity: 0.7; font-weight: 700;
  letter-spacing: 0.1em; margin-left: 6px;
  text-transform: uppercase;
}

.group-card {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 14px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.group-card .hd {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-low);
}
.group-card .ppl {
  display: flex; gap: -8px;
}
.av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--ink-soft);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
  position: relative;
}
.av:first-child { margin-left: 0; }
.av.it {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px var(--ink-soft), 0 0 0 3px var(--danger);
}
.av.it::after {
  content: "IT";
  position: absolute; bottom: -6px; right: -8px;
  background: var(--danger); color: #fff;
  font-family: var(--f-display); font-weight: 900;
  font-size: 8px; letter-spacing: 0.06em;
  padding: 1px 4px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  transform: rotate(8deg);
  line-height: 1;
}

.bottom-cta {
  margin-top: auto;
  display: flex; gap: 8px;
}
.bottom-cta .b {
  flex: 1;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  padding: 14px 12px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  text-align: center;
  background: var(--hot);
  color: var(--ink);
}
.bottom-cta .b.ghost {
  background: var(--ink-soft); color: var(--text);
  border-color: var(--ink-line);
}

/* dodge screen variant */
.dodge-ui {
  position: absolute; inset: 0;
  padding: 20px 16px;
  background: linear-gradient(180deg, var(--danger-soft) 0%, var(--ink) 60%);
  display: flex; flex-direction: column; gap: 16px;
  color: var(--text);
}
.dodge-ui .head {
  display: flex; flex-direction: column; gap: 4px; text-align: center;
  padding-top: 14px;
}
.dodge-ui .head .k {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--danger);
}
.dodge-ui .head .t {
  font-family: var(--f-display); font-weight: 900;
  font-size: 34px; line-height: 0.95; letter-spacing: -0.03em;
}
.dodge-ui .timer-big {
  font-family: var(--f-display);
  font-weight: 900; font-size: 84px; line-height: 1;
  text-align: center;
  color: var(--hot);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 0 rgba(0,0,0,0.6);
}
.dodge-ui .timer-label {
  text-align: center; font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.18em; color: var(--text-low);
  text-transform: uppercase;
  margin-top: -8px;
}

/* recap screen variant */
.recap-ui {
  position: absolute; inset: 0;
  padding: 22px 16px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--ink);
  color: var(--text);
}
.recap-ui .crown {
  text-align: center; margin-top: 8px;
}
.recap-ui .pts-card {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.recap-ui .pts-card .delta {
  font-family: var(--f-display);
  font-weight: 900; font-size: 44px;
  color: var(--hot);
  font-variant-numeric: tabular-nums;
}
.recap-ui .pts-card .lbl {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--text-low); text-transform: uppercase;
}
.recap-ui .row3 { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.recap-ui .row3 .cell {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-low);
}
.recap-ui .row3 .cell .v {
  font-family: var(--f-display);
  font-weight: 800; font-size: 18px;
  color: var(--text);
  letter-spacing: 0;
  margin-bottom: 2px;
}

/* hero phone — slightly larger; remove gallery scale */
.hero-phone .phone {
  width: 320px; height: 640px;
}

/* small utility */
.hr-text {
  display: flex; align-items: center; gap: 16px;
  color: var(--text-low);
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 20px 0;
}
.hr-text::before, .hr-text::after {
  content: ""; flex: 1; height: 1px; background: var(--ink-line);
}

/* =========================================================
   Faithful in-app screen mocks (mirroring screens/screen-*.jsx)
   ========================================================= */

/* Top bar — T! logo + score chip + timer chip */
.app-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.app-topbar .left { display: flex; align-items: center; gap: 8px; }
.app-topbar .logo-t {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--hot); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 15px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 2px 0 var(--ink);
  transform: rotate(-4deg);
}

/* "SITUATION CRITICAL · YOU'RE IT." panel — faithful to game-hunted */
.it-panel {
  position: relative;
  background: var(--danger);
  color: #fff;
  border-radius: 16px;
  padding: 16px 14px;
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  overflow: hidden;
}
.it-panel::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 22px, rgba(0,0,0,0.06) 22px, rgba(0,0,0,0.06) 25px);
  pointer-events: none;
}
.it-panel .body { position: relative; }
.it-panel .kick {
  font-family: var(--f-display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.16em; opacity: 0.85;
}
.it-panel .huge {
  font-family: var(--f-display); font-weight: 900;
  font-size: 46px; line-height: 0.92;
  letter-spacing: -0.04em; margin-top: 4px;
}
.it-panel .sub {
  font-size: 12px; line-height: 1.4; margin-top: 8px;
  opacity: 0.92;
}
.it-panel .badges {
  display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap;
}
.mini-sticker {
  display: inline-block;
  font-family: var(--f-display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.05em;
  background: var(--ink); color: var(--hot);
  padding: 4px 8px; border-radius: 6px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 2px 0 rgba(0,0,0,0.5);
  line-height: 1;
}
.mini-sticker.white { color: #fff; }

/* primary in-app buttons */
.app-cta-row { display: flex; gap: 8px; }
.app-btn {
  flex: 1;
  font-family: var(--f-display); font-weight: 800;
  font-size: 13px; letter-spacing: 0.02em;
  padding: 12px 10px; border-radius: 12px;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
  background: var(--hot); color: var(--ink);
  line-height: 1.1;
}
.app-btn.dark {
  background: var(--ink-soft); color: var(--text);
  border-color: var(--ink-line);
}
.app-btn.full { flex: none; width: 100%; }

/* Section header */
.sec-h {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--text-low);
  text-transform: uppercase;
  margin: 4px 0 -4px;
}

/* Player row */
.p-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 10px;
  padding: 8px 10px;
}
.p-row.it {
  background: var(--danger-soft);
  border-color: var(--danger);
}
.p-row .av-sm {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 12px;
  color: var(--ink);
  flex-shrink: 0;
  position: relative;
}
.p-row .av-sm.it {
  box-shadow: 0 0 0 2px var(--danger);
}
.p-row .meta { flex: 1; min-width: 0; }
.p-row .nm {
  font-family: var(--f-display); font-weight: 800; font-size: 13px;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.p-row .pts {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--text-low); margin-top: 1px;
}
.p-row .tag-btn {
  font-family: var(--f-display); font-weight: 800; font-size: 10px;
  letter-spacing: 0.05em;
  background: var(--hot); color: var(--ink);
  padding: 6px 10px; border-radius: 8px;
  border: 1.5px solid var(--ink);
  box-shadow: 0 2px 0 var(--ink);
}

/* Spectator: "currently it" card */
.who-it {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 16px;
  padding: 14px;
  display: flex; align-items: center; gap: 12px;
}
.who-it .av-md {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #FFC8DD, #A86BFF);
  border: 2px solid var(--danger);
  box-shadow: 0 0 0 2px var(--ink-soft), 0 0 0 3px var(--danger), 0 0 20px rgba(255,45,85,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 18px;
  color: var(--ink);
  flex-shrink: 0;
  position: relative;
}
.who-it .av-md::after {
  content: "IT";
  position: absolute; bottom: -6px; right: -8px;
  background: var(--danger); color: #fff;
  font-family: var(--f-display); font-weight: 900;
  font-size: 9px; letter-spacing: 0.06em;
  padding: 2px 5px; border-radius: 5px;
  border: 1.5px solid var(--ink);
  transform: rotate(8deg);
  line-height: 1;
}
.who-it .info { flex: 1; min-width: 0; }
.who-it .k {
  font-family: var(--f-display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.16em; color: var(--danger);
}
.who-it .nm {
  font-family: var(--f-display); font-weight: 900;
  font-size: 20px; color: var(--text);
  margin-top: 2px; line-height: 1;
}
.who-it .who-sub {
  font-size: 11px; color: var(--text-dim); margin-top: 4px;
}

/* Shield-armed tip */
.tip-card {
  background: linear-gradient(135deg, rgba(255,236,61,0.16), transparent);
  border: 1.5px solid rgba(255,236,61,0.32);
  border-radius: 12px;
  padding: 12px;
  display: flex; gap: 10px; align-items: center;
}
.tip-card .glyph {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--shield); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 900; font-size: 16px;
  border: 1.5px solid var(--ink);
}
.tip-card .text { flex: 1; }
.tip-card .h {
  font-family: var(--f-display); font-weight: 800;
  font-size: 12px; color: var(--hot);
}
.tip-card .p {
  font-size: 11px; line-height: 1.4; color: var(--text-dim); margin-top: 2px;
}

/* =========================================================
   DODGE SCREEN — white bg, hostile diagonal stripes
   ========================================================= */
.dodge-screen {
  position: absolute; inset: 0;
  background: #fff;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.dodge-screen::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255,45,85,0.08) 28px, rgba(255,45,85,0.08) 30px);
  pointer-events: none;
}
.dodge-screen .progress {
  height: 6px; background: var(--ink-soft); position: relative; z-index: 1;
}
.dodge-screen .progress .bar {
  height: 100%; width: 62%; background: var(--danger);
  transition: width 1s linear;
}
.dodge-screen .body {
  flex: 1; padding: 20px 18px 18px;
  display: flex; flex-direction: column; gap: 12px;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.dodge-screen .head {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; margin-top: 6px;
}
.dodge-screen .attacker {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, #FFC8DD, #A86BFF);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 3px var(--danger), 0 0 24px rgba(255,45,85,0.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800;
  font-size: 26px; color: var(--ink);
  position: relative;
}
.dodge-screen .attacker::after {
  content: "IT";
  position: absolute; bottom: -8px; right: -10px;
  background: var(--danger); color: #fff;
  font-family: var(--f-display); font-weight: 900;
  font-size: 11px; letter-spacing: 0.06em;
  padding: 3px 6px; border-radius: 6px;
  border: 1.5px solid var(--ink);
  transform: rotate(8deg);
  line-height: 1;
}
.dodge-screen .who {
  font-family: var(--f-display); font-weight: 900;
  font-size: 22px; color: var(--ink);
  line-height: 1.1;
}
.dodge-screen .who b { color: var(--danger); }
.dodge-screen .ticker {
  font-family: var(--f-display); font-weight: 900;
  font-size: 72px; line-height: 1;
  color: var(--danger);
  letter-spacing: -0.04em;
  text-shadow: 4px 4px 0 rgba(0,0,0,0.08);
}
.dodge-screen .ctas {
  display: flex; flex-direction: column; gap: 8px;
}
.dodge-screen .ctas .b {
  font-family: var(--f-display); font-weight: 800;
  font-size: 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.dodge-screen .ctas .b.dark { background: var(--ink); color: #fff; box-shadow: 0 4px 0 #444; }
.dodge-screen .ctas .b.dark b { color: var(--hot); }
.dodge-screen .ctas .b.light { background: #fff; color: var(--ink); box-shadow: 0 4px 0 var(--ink); }
.dodge-screen .ctas .b .right {
  font-family: var(--f-mono); font-size: 10px; opacity: 0.6;
}
.dodge-screen .ctas .skip {
  text-align: center;
  font-family: var(--f-body); font-size: 12px;
  color: #888; padding: 6px; text-decoration: underline;
}

/* =========================================================
   RECAP SCREEN — faithful to RoundRecapScreen
   ========================================================= */
.recap-screen {
  position: absolute; inset: 0;
  background: var(--ink);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.recap-screen .hd {
  padding: 12px 16px;
  border-bottom: 1.5px solid var(--ink-line);
  display: flex; align-items: center; gap: 12px;
}
.recap-screen .hd .x {
  font-family: var(--f-display); font-weight: 900; font-size: 20px;
  color: var(--text);
}
.recap-screen .hd .ttl {
  font-family: var(--f-display); font-weight: 800; font-size: 14px;
  color: var(--text);
}
.recap-screen .scroll {
  flex: 1; padding: 14px; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.recap-screen .scroll > * { flex-shrink: 0; }
.stuck-card {
  position: relative;
  background: var(--danger);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  overflow: hidden;
  text-align: center;
}
.stuck-card::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(0,0,0,0.07) 24px, rgba(0,0,0,0.07) 27px);
  pointer-events: none;
}
.stuck-card .body { position: relative; }
.stuck-card .k {
  font-family: var(--f-display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.18em; opacity: 0.85;
}
.stuck-card .big {
  font-family: var(--f-display); font-weight: 900;
  font-size: 28px; line-height: 1; letter-spacing: -0.025em;
  margin-top: 6px;
}
.stuck-card .sub {
  font-size: 12px; margin-top: 6px; opacity: 0.92;
}

.stand-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px;
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
}
.stand-row.me {
  background: rgba(255,236,61,0.10);
  border-color: var(--hot);
}
.stand-row .rk {
  font-family: var(--f-display); font-weight: 800;
  font-size: 12px; color: var(--text-dim);
  width: 22px;
}
.stand-row.me .rk { color: var(--hot); }
.stand-row.gold .rk { color: var(--hot); }
.stand-row .av-tiny {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 10px;
  color: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.stand-row .nm {
  flex: 1;
  font-family: var(--f-display); font-weight: 800; font-size: 12px;
}
.stand-row .pts {
  font-family: var(--f-mono); font-size: 11px; font-weight: 700;
}

.high-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.high-cell {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 10px;
  padding: 10px 12px;
}
.high-cell .k {
  font-family: var(--f-display); font-weight: 800;
  font-size: 9px; letter-spacing: 0.12em;
  color: var(--text-low);
}
.high-cell .v {
  font-family: var(--f-display); font-weight: 900;
  font-size: 18px; line-height: 1;
  margin-top: 4px;
}
.high-cell .s {
  font-size: 10px; color: var(--text-dim); margin-top: 2px;
}

/* =========================================================
   Legal docs (privacy, terms, support)
   ========================================================= */
.doc {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 28px 120px;
}
.doc h1 {
  font-family: var(--f-display); font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 8px;
}
.doc .updated {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 40px;
}
.doc .lead-block {
  font-size: 16px; line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 40px;
  padding: 20px 22px;
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 14px;
}
.doc .lead-block strong { color: var(--text); }
.doc h2 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 56px 0 14px;
  scroll-margin-top: 80px;
}
.doc h2 .num {
  font-family: var(--f-mono); font-weight: 500;
  font-size: 13px; letter-spacing: 0.12em;
  color: var(--text-low);
  display: block;
  margin-bottom: 4px;
}
.doc h3 {
  font-family: var(--f-display); font-weight: 700;
  font-size: 17px;
  margin: 28px 0 10px;
  color: var(--text);
}
.doc p, .doc li {
  font-family: var(--f-body);
  font-size: 15.5px; line-height: 1.7;
  color: var(--text-dim);
}
.doc p { margin: 0 0 14px; }
.doc strong { color: var(--text); font-weight: 600; }
.doc ul, .doc ol { padding-left: 22px; margin: 0 0 18px; }
.doc li { margin-bottom: 8px; }
.doc a {
  color: var(--hot);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.doc .back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 32px;
}
.doc .back:hover { color: var(--text); }
.doc .caps {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--text);
  background: var(--ink-soft);
  border-left: 3px solid var(--hot);
  border-radius: 4px;
  padding: 14px 16px;
  margin: 14px 0 18px;
  line-height: 1.55;
}
.doc .toc {
  background: var(--ink-soft);
  border: 1.5px solid var(--ink-line);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 0 0 32px;
}
.doc .toc-h {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 10px;
}
.doc .toc ol {
  padding-left: 22px; margin: 0;
  columns: 2; column-gap: 28px;
}
@media (max-width: 600px) { .doc .toc ol { columns: 1; } }
.doc .toc li {
  font-family: var(--f-body);
  font-size: 14px; line-height: 1.6;
  margin-bottom: 4px;
  color: var(--text);
  break-inside: avoid;
}
.doc .toc a { color: var(--text); text-decoration: none; }
.doc .toc a:hover { color: var(--hot); }
