:root {
  --bg: #0A0A0F;
  --surface: #16161F;
  --surface-elevated: #1E1E2A;
  --stroke: rgba(255, 255, 255, 0.08);
  --primary: #FF3B5C;
  --primary-deep: #C7102E;
  --secondary: #7B61FF;
  --secondary-deep: #4D33B3;
  --text: #F5F5F7;
  --text-secondary: #9999A8;
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --display: 'Nunito', system-ui, -apple-system, 'SF Pro Rounded', Arial, sans-serif;
  --body: 'Nunito', system-ui, -apple-system, 'SF Pro Rounded', Arial, sans-serif;
  --fun: 'Nunito', system-ui, -apple-system, 'SF Pro Rounded', Arial, sans-serif;
  --brand-grad: linear-gradient(165deg, #FE6A3E 0%, #E8357A 45%, #7C3EF0 100%);
}

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

html { scroll-padding-top: 96px; }
[id] { scroll-margin-top: 96px; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* overflow-x: clip is more robust than hidden on iOS — it prevents
   children from forcing the body wider than the viewport without
   creating a scroll container. Fallback to hidden for iOS 15 and below. */
html { overflow-x: hidden; overflow-x: clip; }
body { overflow-x: hidden; overflow-x: clip; max-width: 100vw; }

a { color: inherit; text-decoration: none; }
body { padding-top: 84px; }
img { display: block; max-width: 100%; height: auto; }

/* Background atmosphere */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 45% at 10% 0%, rgba(123, 97, 255, 0.30), transparent 62%),
    radial-gradient(ellipse 65% 55% at 90% 100%, rgba(255, 59, 92, 0.24), transparent 62%);
}

/* Nav — floating pill */
.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1160px, calc(100% - 20px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;   /* icon | centered wordmark | menu */
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  border-radius: 999px;
  background: rgba(16, 16, 24, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.nav .brand { display: contents; }               /* icon and wordmark become grid cells */
.nav .brand-icon { grid-column: 1; justify-self: start; width: 30px; height: 30px; border-radius: 8px; box-shadow: 0 4px 14px rgba(232, 53, 122, 0.35); }
.nav .brand-mark { grid-column: 2; justify-self: center; width: auto; height: 28px; }
.nav nav { grid-column: 3; justify-self: end; display: flex; gap: 4px; align-items: center; }
.brand-icon { border-radius: 8px; }
.brand-mark { width: auto; height: 26px; }
.nav nav a {
  color: var(--text-secondary);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 150ms ease, background 150ms ease;
}
.nav nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.nav-cta {
  margin-left: 6px;
  padding: 10px 18px !important;
  background: var(--brand-grad);
  color: white !important;
  border-radius: 999px;
  font-weight: 800 !important;
  box-shadow: 0 6px 20px rgba(232, 53, 122, 0.35);
}
.nav-cta:hover { filter: brightness(1.08); background: var(--brand-grad) !important; }

/* Language menu — flags */
.lang-menu { position: relative; }
.lang-menu summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 11px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--display); font-weight: 800; font-size: 12.5px; letter-spacing: 0.3px;
  color: var(--text-secondary); line-height: 1;
  transition: color 150ms ease, background 150ms ease;
}
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary .flag { font-size: 16px; line-height: 1; }
.lang-menu summary:hover, .lang-menu[open] summary { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.lang-list {
  position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 170px; padding: 6px;
  background: rgba(20, 20, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
  display: flex; flex-direction: column; gap: 2px;
}
.lang-list a, .lang-list button, .lang-list span {
  -webkit-appearance: none; appearance: none; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 12px;
  font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--text-secondary);
}
.lang-list a:hover, .lang-list button:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.lang-list [aria-current="true"] { color: var(--text); }
.lang-list [aria-current="true"]::after { content: '✓'; margin-left: auto; font-weight: 800; color: #FF6B8A; }
.lang-list .flag { font-size: 18px; line-height: 1; }
.lang-list span.soon { cursor: default; opacity: 0.45; }
.lang-list span.soon small { margin-left: auto; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 800; }

@media (max-width: 760px) {
  .nav { top: 8px; padding: 6px 6px 6px 12px; width: calc(100% - 16px); grid-template-columns: auto 1fr; }
  .nav .brand-mark { grid-column: auto; grid-row: auto; justify-self: auto; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); height: 24px; }
  .nav nav { grid-column: 2; }
  .nav-cta { white-space: nowrap; font-size: 13.5px !important; }
  .nav nav a:not(.nav-cta) { display: none; }
  .nav nav .lang-list a { display: flex !important; }
  .lang-menu summary span.code { display: none; }
  .lang-menu summary { padding: 7px 9px; }
  .nav-cta { padding: 9px 15px !important; margin-left: 2px; }
  body { padding-top: 72px; }
}

/* Legal pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 32px) clamp(64px, 9vw, 112px);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-bottom: 28px;
  transition: color 150ms ease;
}
.legal-back:hover { color: var(--text-secondary); }

.legal-hero {
  text-align: center;
  margin-bottom: 64px;
}
.legal-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}
.legal-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}
.legal-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -2px;
  background: linear-gradient(180deg, var(--text) 0%, var(--primary) 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 24px 0 20px;
}
.legal-hero .legal-lede {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

.legal-content {
  counter-reset: section;
}
.legal-section {
  padding-top: 56px;
  margin-top: 56px;
  border-top: 1px solid var(--stroke);
  scroll-margin-top: 96px;
}
.legal-section:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.legal-section h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  color: var(--text);
}
.legal-section h2::before {
  counter-increment: section;
  content: counter(section, decimal-leading-zero);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.legal-section h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.2px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--text);
}
.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-section ul,
.legal-section ol {
  margin-left: 22px;
  margin-bottom: 18px;
}
.legal-section li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.legal-section a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color 150ms ease, color 150ms ease;
}
.legal-section a:hover {
  color: var(--primary);
}
.legal-section strong { color: var(--text); font-weight: 700; }

.legal-callout {
  margin: 24px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(255, 59, 92, 0.10) 0%, rgba(123, 97, 255, 0.06) 100%);
  border: 1px solid rgba(255, 59, 92, 0.22);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.legal-callout::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(123, 97, 255, 0.10), transparent 60%);
  pointer-events: none;
}
.legal-callout-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.legal-callout p:last-child,
.legal-callout li:last-child { margin-bottom: 0; }
.legal-callout ul { margin-bottom: 0; }
.legal-callout strong { color: var(--text); }

/* Hero — centered, wordmark + playful headline + phone mockups */
.hero {
  position: relative;
  text-align: center;
  /* fills the first screen: viewport minus the floating header, content centred */
  min-height: calc(100vh - 84px);
  min-height: calc(100svh - 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(48px, 9vh, 120px) clamp(20px, 5vw, 56px) clamp(56px, 10vh, 120px);
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}
@media (max-width: 760px) { .hero { min-height: calc(100vh - 72px); min-height: calc(100svh - 72px); padding-top: clamp(32px, 7vh, 64px); padding-bottom: 40px; } }
.hero-text { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.hero-mark {
  width: clamp(220px, 34vw, 380px);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(255, 59, 92, 0.28));
}
.hero-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5.6vw, 66px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--text);
  margin: clamp(18px, 3vw, 30px) 0 16px;
  max-width: none;
}
.hero-title span {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}
.hero-lede,
.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.6;
}
.lede strong, .hero-lede strong { color: var(--text); font-weight: 800; }
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 200ms ease, background 200ms ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn.primary {
  background: var(--brand-grad);
  color: white;
  border: 0;
  box-shadow: 0 8px 26px rgba(232, 53, 122, 0.30);
}
.btn.primary:hover { box-shadow: 0 12px 32px rgba(232, 53, 122, 0.40); filter: brightness(1.06); }
.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}
.btn.ghost:hover { background: rgba(255, 255, 255, 0.10); }
.btn.big { padding: 20px 32px; font-size: 18px; }
.btn-icon { font-size: 14px; }
.cta-note {
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 600;
}

/* Phone mockup: iPhone 16 Pro, 1:1 geometry (screen 1206×2622 px = 402×874 pt @460 ppi,
   body 71.5×149.6 mm → bezel ≈ 2.4 mm ≈ 3.6 % of screen width, screen corner radius 55 pt ≈ 13.7 %).
   The screenshot is NEVER cropped: the frame is padding around the image at its natural aspect.
   The island is re-drawn in CSS so device and simulator screenshots look the same. */
picture { display: contents; }
source { display: none; }   /* <source> must not become a grid/flex item */
.iphone {
  --w: 220px;                                  /* body width */
  --s: calc(var(--w) / 1.072);                 /* screen width (body = screen + 2 × bezel) */
  --b: calc(var(--s) * 0.036);                 /* bezel */
  position: relative;
  isolation: isolate;
  z-index: 0;
  width: var(--w);
  box-sizing: border-box;
  padding: var(--b);
  border-radius: calc(var(--s) * 0.137 + var(--b));
  background:
    linear-gradient(#08080B, #08080B) padding-box,
    linear-gradient(145deg, #7a7a7e 0%, #2c2c2e 16%, #9a9aa0 36%, #3a3a3c 58%, #86868a 80%, #2c2c2e 100%) border-box;
  border: calc(var(--s) * 0.006) solid transparent;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.62), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
  line-height: 0;
}
.iphone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--s) * 0.137);
  background: #0A0A0F;
}
/* Dynamic Island drawn on top of the screenshot's own island so every phone looks identical (125×37 pt, 11 pt from top) */
.iphone::before {
  content: ''; position: absolute; z-index: 3;
  top: calc(var(--b) + var(--s) * 0.0274); left: 50%; transform: translateX(-50%);
  width: calc(var(--s) * 0.311); height: calc(var(--s) * 0.092);
  background: #000; border-radius: 999px;
}
.iphone.landscape::before {
  top: 50%; left: calc(var(--b) + var(--s) * 0.0274); transform: translateY(-50%);
  width: calc(var(--s) * 0.092); height: calc(var(--s) * 0.311);
}
/* Side buttons (16 Pro): action + volume left, power + camera control right, painted just outside the body */
.iphone::after {
  content: ''; position: absolute; z-index: -1; pointer-events: none;
  top: 0; bottom: 0;
  left: calc(var(--s) * -0.012); right: calc(var(--s) * -0.012);
  background-repeat: no-repeat;
  background-image:
    linear-gradient(180deg, #6a6a6e, #3a3a3c), linear-gradient(180deg, #6a6a6e, #3a3a3c),
    linear-gradient(180deg, #6a6a6e, #3a3a3c), linear-gradient(180deg, #6a6a6e, #3a3a3c),
    linear-gradient(180deg, #6a6a6e, #3a3a3c);
  background-size:
    calc(var(--s) * 0.012) 2.2%,  calc(var(--s) * 0.012) 4.6%,  calc(var(--s) * 0.012) 4.6%,
    calc(var(--s) * 0.012) 7.6%,  calc(var(--s) * 0.012) 3.2%;
  background-position: 0 14%, 0 22%, 0 29.5%, 100% 24%, 100% 47%;
  border-radius: calc(var(--s) * 0.16);
}
/* Landscape: island on the left (screenshots are rotated the same way); --w is the body's long side */
.iphone.landscape { --s: calc(var(--w) * 0.4453); }   /* body long side = 2.246 × screen width */
.iphone.landscape::after {
  left: 0; right: 0;
  top: calc(var(--s) * -0.012); bottom: calc(var(--s) * -0.012);
  background-size:
    2.2% calc(var(--s) * 0.012), 4.6% calc(var(--s) * 0.012), 4.6% calc(var(--s) * 0.012),
    7.6% calc(var(--s) * 0.012), 3.2% calc(var(--s) * 0.012);
  background-position: 14% 100%, 22% 100%, 29.5% 100%, 24% 0, 47% 0;
}

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-top: clamp(28px, 5vw, 56px);
  height: clamp(300px, 40vw, 560px);
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}
.hero-phones::before {
  content: '';
  position: absolute;
  left: 50%; top: 30%;
  width: min(900px, 110%); height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 60%, rgba(232, 53, 122, 0.42), rgba(124, 62, 240, 0.28) 45%, transparent 72%);
  filter: blur(34px);
  z-index: 0;
}
.hero-phones .iphone { position: relative; z-index: 1; }
.hero-phones .ph-main { --w: clamp(190px, 19vw, 262px); z-index: 3; }
.hero-phones .ph-left { --w: clamp(150px, 16vw, 224px); transform: translate(16%, 14%) rotate(-8deg); z-index: 2; }
.hero-phones .ph-right { --w: clamp(280px, 29vw, 420px); transform: translate(-6%, 150%) rotate(6deg); z-index: 1; }

@media (max-width: 860px) {
  .hero-phones { height: clamp(280px, 78vw, 420px); }
  .hero-phones .ph-main { --w: clamp(180px, 46vw, 220px); }
  .hero-phones .ph-left { --w: clamp(120px, 32vw, 160px); transform: translate(28%, 18%) rotate(-8deg); }
  .hero-phones .ph-right { --w: clamp(200px, 56vw, 260px); transform: translate(-22%, 190%) rotate(6deg); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 31px; letter-spacing: -1px; }
  .hero-phones { height: 340px; }
  .hero-phones .ph-left { display: none; }
  .hero-phones .ph-main { --w: 212px; position: absolute; left: 50%; top: 0; transform: translateX(-82%); }
  .hero-phones .ph-right { --w: 215px; position: absolute; left: 50%; top: 150px; transform: translateX(-10%) rotate(7deg); }
}

/* Section helpers */
.section-label {
  font-family: var(--display);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-tertiary);
  text-align: center;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -1.2px;
  text-align: center;
  color: var(--text);
  margin: 0 auto 14px;
  max-width: 16ch;
  text-wrap: balance;
}
.section-title span {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}

/* Features */
.features {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--surface-elevated);
}
.feature-emoji {
  font-size: 36px;
  margin-bottom: 14px;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--text);
}
.feature p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}

/* How it works */
.how {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
}
.how-lede {
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 96px);
}
.step {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.step.reverse { grid-template-columns: 1fr 1.2fr; }
.step.reverse .step-text { order: 2; }
.step.reverse .step-phone { order: 1; }
.step-number {
  display: inline-block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.step h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.step p {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 460px;
}
.step-phone {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--stroke);
}

@media (max-width: 760px) {
  .step, .step.reverse { grid-template-columns: 1fr; text-align: center; }
  .step.reverse .step-text { order: 1; }
  .step.reverse .step-phone { order: 2; }
  .step p { margin-left: auto; margin-right: auto; }
  .step-phone { max-width: 260px; }
}

/* Gallery */
.gallery {
  padding: clamp(48px, 8vw, 96px) 0;
  overflow: hidden;
}
.gallery-scroll {
  display: flex;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 56px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-top: 28px;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll img {
  flex: 0 0 auto;
  width: 240px;
  border-radius: 28px;
  scroll-snap-align: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--stroke);
}

/* Download */
.download {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 56px) clamp(64px, 9vw, 120px);
  max-width: 700px;
  margin: 0 auto;
}
.download-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 59, 92, 0.18) 0%, rgba(123, 97, 255, 0.12) 100%);
  border: 1px solid var(--stroke);
  border-radius: 36px;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 59, 92, 0.18), transparent 60%);
  pointer-events: none;
}
.download-icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: 0 20px 40px rgba(255, 59, 92, 0.35);
}
.download-card h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.download-card p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.download-note {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-top: 16px;
}

/* Footer */
footer {
  border-top: 1px solid var(--stroke);
  padding: 40px clamp(20px, 5vw, 56px);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { display: inline-flex; align-items: center; gap: 10px; }
.footer-logo img.brand-icon { width: 28px; height: 28px; border-radius: 7px; }
.footer-logo img.brand-mark { height: 26px; width: auto; }
.footer-tag {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 150ms ease;
}

@media (max-width: 720px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-links {
    width: 100%;
    gap: 10px 16px;
  }
  .footer-links a { font-size: 13.5px; }
  .footer-copy { text-align: left; }
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  font-size: 12px;
  color: var(--text-tertiary);
  width: 100%;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}


/* ── Game tiles (app Home-style cards) ─────────────────────────────── */
.tiles-section { max-width: 1200px; margin: 0 auto; padding: clamp(40px, 7vw, 88px) clamp(20px, 5vw, 56px); }
.tiles-lede { text-align: center; color: var(--text-secondary); font-size: 17px; line-height: 1.6; max-width: 620px; margin: 0 auto 36px; }
.tiles-lede strong { color: var(--text); font-weight: 800; }
.tiles {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.tile {
  --a: #FF3B56; --b: #B30C39;
  container-type: inline-size;          /* phone sizes below are in cqw (never %, see .iphone) */
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px 22px 24px;
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(155deg, var(--a) 0%, var(--b) 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 20px 50px rgba(0,0,0,.38);
  transition: transform 260ms cubic-bezier(.34,1.4,.64,1), box-shadow 260ms ease;
  isolation: isolate;
}
.tile::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255,255,255,.16), transparent 60%);
  z-index: 0;
}
.tile:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 1px 0 rgba(255,255,255,.22) inset, 0 30px 70px rgba(0,0,0,.5); }
.tile.wide { grid-column: span 6; min-height: 360px; }
.tile-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; position: relative; z-index: 2; }
.tile-emoji {
  width: 58px; height: 58px; border-radius: 17px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 58px; overflow: visible;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.tile-flag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.22);
  font-family: var(--display); font-weight: 800; font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase;
  color: #fff; backdrop-filter: blur(8px);
}
.tile-body { margin-top: auto; position: relative; z-index: 2; max-width: 56%; }
.tile.wide .tile-body { max-width: 52%; }
.tile h3 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1.08; letter-spacing: -0.4px;
  margin-bottom: 8px; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.tile.wide h3 { font-size: clamp(26px, 2.8vw, 36px); }
.tile p { font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,.88); font-weight: 600; }
.tile-kicker { font-family: var(--display); font-weight: 800; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 6px; }
.tile .iphone {
  position: absolute; z-index: 1;
  right: -4%; bottom: -34%;
  --w: 54cqw;
  transform: rotate(-7deg);
}
.tile .iphone.landscape { right: -6%; bottom: 4%; --w: 60cqw; transform: rotate(-5deg); }
.tile.wide .iphone { --w: 40cqw; right: 5%; bottom: -34%; }
.tile.wide .iphone.landscape { --w: 50cqw; right: -2%; bottom: 6%; transform: rotate(-4deg); }
.tile .tile-hero-emoji {
  position: absolute; z-index: 1; right: 6%; bottom: 4%;
  font-size: clamp(80px, 9vw, 120px); line-height: 1;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.4));
  transform: rotate(-8deg);
}
.tiles-cta { text-align: center; margin-top: 36px; }
.tiles-cta .cta-note { margin-top: 14px; }

@media (max-width: 960px) {
  .tile { grid-column: span 6; }
  .tile.wide { grid-column: span 12; }
}
@media (max-width: 600px) {
  .tiles { gap: 12px; }
  .tile, .tile.wide { grid-column: span 12; min-height: 250px; padding: 18px 18px 20px; border-radius: 26px; }
  .tile-body, .tile.wide .tile-body { max-width: 56%; }
  .tile h3, .tile.wide h3 { font-size: 24px; }
  .tile p { font-size: 14px; }
  .tile .iphone, .tile.wide .iphone { --w: 50cqw; right: -3%; bottom: -36%; }
  .tile .iphone.landscape, .tile.wide .iphone.landscape { --w: 48cqw; right: -6%; bottom: 10%; }
  .tile-emoji { width: 50px; height: 50px; font-size: 25px; line-height: 50px; border-radius: 15px; }
}


/* ── $20 Draft feature tile (full width: versus cards over the table phone) ── */
.tile.full { grid-column: span 12; min-height: 0; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); grid-template-rows: auto 1fr; gap: 20px; align-items: start; padding: 28px 28px 28px 30px; }
.tile.full .tile-head { grid-column: 1; }
.tile.full .tile-body { grid-column: 1; max-width: none; margin-top: 0; align-self: center; }
.tile.full h3 { font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -1px; }
.tile.full p { font-size: 16px; max-width: 46ch; }
.tile-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 11px 16px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); font-family: var(--display); font-weight: 800; font-size: 14px; color: #fff; }
.draft-stack { grid-column: 2; grid-row: 1 / span 2; position: relative; display: flex; flex-direction: column; align-items: center; gap: 0; container-type: inline-size; }
.vs-row { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: 100%; z-index: 2; }
.vs-card { background: rgba(10,10,16,.92); border-radius: 18px; padding: 10px 12px 12px; box-shadow: 0 16px 40px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.08); color: #fff; }
.vs-card .vs-name { display: flex; justify-content: space-between; align-items: center; font-family: var(--display); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; }
.vs-card .vs-name small { font-weight: 800; font-size: 12px; opacity: .9; }
.vs-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }
.vs-card ul { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 3px; }
.vs-card li { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.92); }
.vs-card li b { font-weight: 800; color: #FFC65C; }
.vs-badge { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%) rotate(-6deg); z-index: 3; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: #FFB53A; color: #3A1E00; font-family: var(--display); font-weight: 900; font-size: 15px; box-shadow: 0 8px 22px rgba(0,0,0,.4), inset 0 0 0 3px rgba(255,255,255,.25); }
.draft-stack .iphone.landscape { position: relative; --w: 92cqw; margin-top: 18px; transform: none; right: auto; bottom: auto; z-index: 1; }
@media (max-width: 960px) {
  .tile.full { grid-template-columns: 1fr; padding: 22px 20px 20px; }
  .tile.full .tile-head, .tile.full .tile-body, .draft-stack { grid-column: 1; grid-row: auto; }
  .draft-stack { margin-top: 18px; }
  .tile.full p { font-size: 15px; }
}
@media (max-width: 600px) {
  .tile.full { min-height: 0; }
  .vs-card li { font-size: 11px; }
  .vs-card ul li:nth-child(n+4) { display: none; }
  .draft-stack .iphone.landscape { --w: 100cqw; margin-top: 14px; }
}

/* ── LIVE band ── */
.live-band { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px) clamp(40px, 7vw, 88px); }
.live-inner {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 56px); align-items: center;
  border-radius: 34px; padding: clamp(28px, 4vw, 52px);
  background: linear-gradient(155deg, #4361EE 0%, #3A0CA3 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 24px 60px rgba(0,0,0,.4);
}
.live-inner::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(255,255,255,.16), transparent 60%); }
.live-inner > * { position: relative; z-index: 1; }
.live-inner h2 { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 4.2vw, 48px); line-height: 1.05; letter-spacing: -1.2px; color: #fff; margin: 12px 0 14px; }
.live-inner p { color: rgba(255,255,255,.9); font-size: 16.5px; line-height: 1.65; max-width: 52ch; font-weight: 600; }
.live-list { list-style: none; padding: 0; margin: 18px 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.live-list li { padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); font-family: var(--display); font-weight: 800; font-size: 13.5px; color: #fff; }
.live-list li a { color: inherit; }
.live-phones { display: flex; justify-content: center; align-items: flex-end; gap: 14px; }
.live-phones .iphone { --w: clamp(150px, 15vw, 200px); }
.live-phones .iphone:first-child { transform: translateY(18px) rotate(-6deg); }
.live-phones .iphone:last-child { transform: translateY(-10px) rotate(5deg); }
.live-inner .btn.ghost { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
.live-inner .btn.primary { background: #fff; color: #2A0C7A; box-shadow: 0 10px 26px rgba(0,0,0,.25); }
@media (max-width: 860px) {
  .live-inner { grid-template-columns: 1fr; text-align: center; }
  .live-inner p, .live-list { margin-left: auto; margin-right: auto; justify-content: center; }
  .live-inner .cta-row { justify-content: center; }
  .live-phones .iphone { --w: clamp(130px, 34vw, 170px); }
}

/* ── Facts strip ── */
.facts { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px) clamp(40px, 7vw, 88px); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fact { display: flex; gap: 14px; align-items: flex-start; padding: 20px 20px; border-radius: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.fact .f-emoji { font-size: 26px; line-height: 1.2; flex-shrink: 0; }
.fact h3 { font-family: var(--display); font-weight: 900; font-size: 17px; margin-bottom: 4px; color: var(--text); letter-spacing: -0.2px; }
.fact p { font-size: 14px; line-height: 1.5; color: var(--text-secondary); font-weight: 600; }
@media (max-width: 960px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .facts-grid { grid-template-columns: 1fr; } }

/* ── Guides / internal links ── */
.guides { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px) clamp(40px, 7vw, 88px); }
.guides-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.guide-col { padding: 24px; border-radius: 26px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.guide-col h3 { font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: -0.3px; margin-bottom: 6px; color: var(--text); }
.guide-col > p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; margin-bottom: 14px; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); font-family: var(--display); font-weight: 800; font-size: 13.5px; color: var(--text); transition: background 150ms ease, transform 150ms ease, border-color 150ms ease; }
.chips a:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.22); transform: translateY(-2px); }
.chips a .e { font-size: 15px; }
@media (max-width: 760px) { .guides-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq { max-width: 780px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px) clamp(40px, 7vw, 88px); }
.faq details { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; margin-top: 10px; overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--display); font-weight: 900; font-size: 16.5px; color: var(--text); letter-spacing: -0.2px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-weight: 800; font-size: 22px; color: var(--text-tertiary); transition: transform 200ms ease; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.7; font-weight: 500; }
.faq details p strong { color: var(--text); font-weight: 800; }
.faq details p a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 3px; }

/* ── Download card ── */
.download { padding: 0 clamp(20px, 5vw, 56px) clamp(64px, 9vw, 120px); max-width: 760px; margin: 0 auto; }
.download-card { border: 0; background: var(--brand-grad); box-shadow: 0 30px 80px rgba(232, 53, 122, 0.30); }
.download-card::before { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,.22), transparent 60%); }
.download-card h2 { color: #fff; }
.download-card p { color: rgba(255,255,255,.92); font-weight: 600; }
.download-card .btn.primary { background: #fff; color: #2A0C7A; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.download-card .btn.primary:hover { filter: none; background: #fff; }
.download-note { color: rgba(255,255,255,.75); }
.download-icon { box-shadow: 0 20px 40px rgba(0,0,0,.3); }

/* ── Mobile app sheet (iOS-style download prompt) ── */
.app-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%); transition: transform 420ms cubic-bezier(.2,.9,.3,1.1);
  pointer-events: none;
}
.app-sheet.show { transform: translateY(0); pointer-events: auto; }
.app-sheet-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 12px 12px 14px; border-radius: 24px;
  background: rgba(28, 28, 36, 0.92);
  backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 -4px 40px rgba(0,0,0,.5), 0 20px 50px rgba(0,0,0,.5);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', var(--body);
}
.app-sheet-close { -webkit-appearance: none; appearance: none; border: 0; background: rgba(255,255,255,.08); color: var(--text-secondary); width: 28px; height: 28px; border-radius: 50%; font-size: 15px; line-height: 28px; text-align: center; flex-shrink: 0; cursor: pointer; }
.app-sheet-icon { width: 54px; height: 54px; border-radius: 13px; flex-shrink: 0; }
.app-sheet-text { flex: 1; min-width: 0; }
.app-sheet-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }
.app-sheet-text span { display: block; font-size: 12.5px; color: var(--text-secondary); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-sheet-text small { display: block; font-size: 11.5px; color: var(--text-tertiary); margin-top: 2px; }
.app-sheet-get { flex-shrink: 0; padding: 8px 18px; border-radius: 999px; background: #0A84FF; color: #fff; font-weight: 700; font-size: 15px; letter-spacing: -0.1px; }
@media (min-width: 761px) { .app-sheet { display: none; } }

/* Auto-wrapped screenshots on sub-pages: <div class="iphone-box {page class}"><div class="iphone">…</div></div>.
   The box keeps the page's sizing rules and is a size container; the frame reads its width in cqw. */
.iphone-box {
  container-type: inline-size; display: block;
  border-radius: 0 !important; box-shadow: none !important; background: none !important;
  border: 0 !important; padding: 0 !important; overflow: visible !important; transform: none !important;
}
.iphone-box .iphone { --w: 100cqw; width: 100%; }
@supports not (width: 1cqw) { .iphone-box .iphone { --w: 220px; width: 220px; max-width: 100%; } }
.iphone-box .iphone > picture > img, .iphone-box .iphone > img {
  position: static !important; width: 100% !important; height: auto !important;
  max-width: none !important; margin: 0 !important; padding: 0 !important;
  border-radius: calc(var(--s) * 0.137) !important;
  box-shadow: none !important; transform: none !important; border: 0 !important; outline: 0 !important;
}
.gallery-scroll .iphone-box { flex: 0 0 220px; width: 220px; scroll-snap-align: center; }

@supports not (width: 1cqw) {
  .tile .iphone { --w: 190px; } .tile.wide .iphone { --w: 230px; }
  .tile .iphone.landscape, .tile.wide .iphone.landscape { --w: 300px; }
  .draft-stack .iphone.landscape { --w: 420px; max-width: 100%; }
}


/* ══════════════════════════════════════════════════════════════════
   EN game pages (ig-): shared skin for /games/* and /imposter-game/
   ══════════════════════════════════════════════════════════════════ */
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-tertiary); font-weight: 600; margin-bottom: 18px; }
.breadcrumbs a { color: var(--text-secondary); }
.ig-page { max-width: 1100px; margin: 0 auto; padding: clamp(16px, 3vw, 32px) clamp(20px, 5vw, 40px) 48px; }
.ig-page a:not(.btn):not(.ig-related-card):not(.ig-more a):not(.ig-toc a) { color: var(--text); text-decoration: underline; text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 3px; }
.ig-page .ig-toc a, .ig-page .ig-more a, .ig-page .ig-related-card, .ig-page .btn { text-decoration: none; }

/* hero */
.ig-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.ig-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-family: var(--display); font-weight: 800; font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-secondary); }
.ig-hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(32px, 4.6vw, 54px); line-height: 1.05; letter-spacing: -1.4px; margin: 14px 0 16px; color: var(--text); }
.ig-lede { color: var(--text-secondary); font-size: 17px; line-height: 1.65; margin-bottom: 14px; font-weight: 500; }
.ig-lede strong { color: var(--text); font-weight: 800; }
.ig-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.ig-cta-note { color: var(--text-tertiary); font-size: 13px; font-weight: 600; margin-top: 12px; }
.ig-hero-phone, .ig-hero-grid > div:last-child:not(:first-child) { display: flex; justify-content: center; }
.ig-hero .iphone-box { width: 100%; max-width: 250px; margin: 0 auto; }
.ig-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: clamp(24px, 4vw, 40px); }
.ig-meta span { display: block; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); font-family: var(--display); font-weight: 800; font-size: 14.5px; color: var(--text); }
.ig-meta span strong { display: block; font-size: 10.5px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 4px; font-weight: 800; }

/* at a glance */
.ig-stats { margin-top: 16px; border-radius: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.ig-stats table, .ig-stats tbody { display: block; width: 100%; }
.ig-stats tr { display: grid; grid-template-columns: 200px 1fr; gap: 12px; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.ig-stats tr:last-child { border-bottom: 0; }
.ig-stats th { text-align: left; font-family: var(--display); font-weight: 800; font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-tertiary); padding-top: 2px; }
.ig-stats td { font-size: 15px; line-height: 1.5; color: var(--text-secondary); font-weight: 500; }

/* sections */
.ig-section { margin-top: clamp(44px, 6vw, 72px); }
.ig-section h2 { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.1; letter-spacing: -1px; margin-bottom: 14px; color: var(--text); }
.h2-num { display: block; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; margin-bottom: 8px; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ig-section > p, .ig-pack > p, .ig-section > div > p { color: var(--text-secondary); font-size: 16.5px; line-height: 1.7; max-width: 76ch; margin-bottom: 14px; font-weight: 500; }
.ig-section p strong { color: var(--text); font-weight: 800; }
.ig-section > h3 { font-family: var(--display); font-weight: 900; font-size: 19px; margin: 22px 0 6px; letter-spacing: -0.2px; }

/* steps with phone */
.ig-steps-visual, .ig-steps { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ig-step-visual, .ig-step { display: grid; grid-template-columns: 118px 1fr; gap: 16px; align-items: start; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-step-visual__shot .iphone-box, .ig-step__shot .iphone-box { width: 100%; }
.ig-step-visual__num, .ig-step__num { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: var(--brand-grad); color: #fff; font-family: var(--display); font-weight: 900; font-size: 14px; margin-bottom: 8px; }
.ig-step-visual__num.live { background: linear-gradient(155deg, #4361EE, #3A0CA3); }
.ig-step-visual__text h3, .ig-step__text h3 { font-family: var(--display); font-weight: 900; font-size: 17px; margin: 0 0 6px; letter-spacing: -0.2px; line-height: 1.2; }
.ig-step-visual__text p, .ig-step__text p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; font-weight: 500; margin: 0; }
.ig-step-visual__text p strong, .ig-step__text p strong { color: var(--text); }

/* breathing room after block components */
.ig-page :is(div, ul, ol, table, aside, figure, p) + .ig-pack-head { margin-top: 36px; }
.ig-pack-head + :is(div, ul, ol) { margin-top: 12px; }
.ig-pack-head > span { color: var(--text-secondary); font-weight: 700; font-size: 14.5px; }
.ig-page :is(ul, ol, div, table, aside, figure, details, nav) + p { margin-top: 22px; }
.ig-page :is(ul, ol, div, table, aside, figure, details, nav, p) + h3 { margin-top: 30px; }
.ig-page :is(ul, ol) + :is(ul, ol) { margin-top: 14px; }
.ig-page :is(h3) + :is(ul, ol, div) { margin-top: 12px; }
.ig-step-visual__text h3, .ig-step__text h3, .ig-cat h3, .ig-loc h4, .ig-related-card h3, .rb-q h3, .rb-rule h3, .ig-appgames h3, .ig-pack-head h3, .kc-card h3 { margin-top: 0 !important; }
.ig-section > :is(ol, ul, div, aside, table, details, figure) + p { margin-top: 24px; }
.ig-section > p + :is(ol, ul, div) { margin-top: 18px; }
.ig-more-note { margin: 12px 0 0; color: var(--text-secondary); font-family: var(--display); font-weight: 800; font-size: 14px; }
.ig-more-note a { color: var(--text); }

/* tip / callout */
.ig-tip { margin-top: 18px; padding: 18px 20px; border-radius: 20px; background: linear-gradient(135deg, rgba(232,53,122,.12), rgba(124,62,240,.10)); border: 1px solid rgba(232,53,122,.25); }
.ig-tip-label { font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 800; color: #FF6B8A; margin-bottom: 6px; }
.ig-tip p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin: 0; font-weight: 500; }

/* chips, toc */
.ig-toc, .ig-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.ig-toc a, .ig-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); font-family: var(--display); font-weight: 800; font-size: 13.5px; color: var(--text); }
.ig-toc a:hover { background: rgba(255,255,255,.11); }

/* packs + question lists */
.ig-pack { margin-top: 22px; padding: 20px; border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-pack-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ig-pack-emoji { font-size: 26px; line-height: 1; }
.ig-pack-head h3 { font-family: var(--display); font-weight: 900; font-size: 20px; margin: 0; letter-spacing: -0.3px; }
.ig-pack-tagline { color: var(--text-secondary); font-size: 14.5px; font-weight: 600; margin: 6px 0 8px; }
.ig-badge { display: inline-flex; padding: 4px 10px; border-radius: 999px; font-family: var(--display); font-weight: 800; font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; background: rgba(255,180,25,.16); color: #FFC65C; border: 1px solid rgba(255,180,25,.35); }
.ig-badge.free { background: rgba(6,214,160,.16); color: #5CE6B8; border-color: rgba(6,214,160,.4); }
.ig-qs, .ig-qlist { list-style: none; padding: 0; margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; counter-reset: q; }
.ig-qs li, .ig-qlist li { position: relative; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); font-size: 15px; line-height: 1.5; color: var(--text); font-weight: 500; }
.ig-qs li { padding-left: 46px; }
.ig-qs li::before { counter-increment: q; content: counter(q); position: absolute; left: 12px; top: 11px; width: 24px; height: 24px; border-radius: 8px; background: rgba(255,255,255,.08); font-family: var(--display); font-weight: 800; font-size: 12px; text-align: center; line-height: 24px; color: var(--text-secondary); }
.ig-for { display: inline-block; margin-right: 8px; padding: 2px 8px; border-radius: 999px; font-family: var(--display); font-weight: 800; font-size: 10.5px; letter-spacing: .8px; text-transform: uppercase; background: rgba(158,82,243,.2); color: #C9A6FF; vertical-align: 1px; }
.ig-for.room { background: rgba(66,158,255,.2); color: #8CC4FF; }
.ig-for.all { background: rgba(6,214,160,.18); color: #5CE6B8; }

/* categories, locations, quiz samples */
.ig-cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; margin-top: 18px; }
.ig-cat { position: relative; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-cat-emoji { font-size: 28px; line-height: 1; margin-bottom: 10px; }
.ig-cat h3 { font-family: var(--display); font-weight: 900; font-size: 17px; margin: 0 0 4px; letter-spacing: -0.2px; }
.ig-cat p { color: var(--text-secondary); font-size: 14px; line-height: 1.5; margin: 0; font-weight: 500; }
.ig-cat .ig-badge { position: absolute; top: 14px; right: 14px; }
.ig-locs { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; margin-top: 16px; }
.ig-loc { display: flex; gap: 12px; align-items: flex-start; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-loc-emoji { font-size: 24px; line-height: 1.2; }
.ig-loc h4 { font-family: var(--display); font-weight: 900; font-size: 15px; margin: 0 0 2px; }
.ig-loc p { color: var(--text-secondary); font-size: 13.5px; line-height: 1.5; margin: 0; }
.ig-q { margin-top: 12px; padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-q-pack { font-family: var(--display); font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; font-weight: 800; color: var(--text-tertiary); }
.ig-q-text { font-family: var(--display); font-weight: 900; font-size: 17px; margin: 6px 0 10px; letter-spacing: -0.2px; }
.ig-q-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.ig-q-opt { padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); font-size: 13px; font-weight: 700; }
.ig-q-opt.ok { background: rgba(6,214,160,.16); color: #5CE6B8; border-color: rgba(6,214,160,.4); }

/* comparison table */
.ig-compare { margin-top: 16px; overflow-x: auto; border-radius: 20px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.ig-compare table { width: 100%; border-collapse: collapse; min-width: 560px; }
.ig-compare th, .ig-compare td { padding: 12px 14px; text-align: left; font-size: 14.5px; line-height: 1.45; border-bottom: 1px solid rgba(255,255,255,.07); vertical-align: top; }
.ig-compare thead th { font-family: var(--display); font-weight: 800; color: var(--text); background: rgba(255,255,255,.04); }
.ig-compare tbody th { font-family: var(--display); font-weight: 800; color: var(--text); }
.ig-compare td { color: var(--text-secondary); font-weight: 500; }
.ig-compare tr:last-child th, .ig-compare tr:last-child td { border-bottom: 0; }

/* app pitch */
.ig-app-pitch { margin-top: clamp(44px, 6vw, 72px); display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px, 4vw, 48px); align-items: center; padding: clamp(24px, 4vw, 40px); border-radius: 30px; background: var(--brand-grad); color: #fff; box-shadow: 0 30px 80px rgba(232,53,122,.28); }
.ig-app-pitch h2 { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.1; letter-spacing: -1px; margin-bottom: 10px; color: #fff; }
.ig-app-pitch p { color: rgba(255,255,255,.92); font-size: 16px; line-height: 1.6; font-weight: 500; }
.ig-app-pitch ul { list-style: none; padding: 0; margin: 14px 0 20px; display: grid; gap: 8px; }
.ig-app-pitch li { position: relative; padding-left: 26px; font-size: 15px; font-weight: 600; line-height: 1.45; }
.ig-app-pitch li::before { content: '✓'; position: absolute; left: 0; top: 0; font-weight: 900; }
.ig-app-pitch .btn.primary { background: #fff; color: #2A0C7A; box-shadow: 0 10px 26px rgba(0,0,0,.25); }
.ig-app-pitch .btn.primary:hover { filter: none; background: #fff; }
.ig-app-pitch .iphone-box { width: 100%; max-width: 220px; margin: 0 auto; }
.ig-app-pitch:has(> :only-child) { grid-template-columns: 1fr; }

/* faq */
.ig-faq details { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; margin-top: 10px; overflow: hidden; }
.ig-faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--display); font-weight: 900; font-size: 16.5px; color: var(--text); }
.ig-faq summary::-webkit-details-marker { display: none; }
.ig-faq summary::after { content: '+'; font-weight: 800; font-size: 22px; color: var(--text-tertiary); flex-shrink: 0; }
.ig-faq details[open] summary::after { content: '−'; }
.ig-faq details p { padding: 0 22px 20px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.7; font-weight: 500; margin: 0; max-width: none; }

/* related + more */
.ig-related { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin-top: 18px; }
.ig-related-card { display: block; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); transition: transform 200ms ease, background 200ms ease, border-color 200ms ease; }
.ig-related-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); }
.ig-related-tag { display: inline-block; font-family: var(--display); font-size: 10.5px; letter-spacing: 1.3px; text-transform: uppercase; font-weight: 800; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ig-related-card h3 { font-family: var(--display); font-weight: 900; font-size: 17px; margin: 6px 0 4px; letter-spacing: -0.2px; }
.ig-related-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.5; margin: 0; font-weight: 500; }
.ig-more { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; margin-top: 14px; }
.ig-more a { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--text); }
.ig-more a span { font-size: 22px; line-height: 1; }
.ig-more a small { display: block; font-size: 12.5px; color: var(--text-secondary); font-weight: 600; }

/* closing */
.ig-closing { margin-top: clamp(44px, 6vw, 72px); text-align: center; padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px); border-radius: 34px; background: var(--brand-grad); box-shadow: 0 30px 80px rgba(232,53,122,.30); }
.ig-closing h2 { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 4.5vw, 44px); letter-spacing: -1px; line-height: 1.08; margin-bottom: 12px; color: #fff; }
.ig-closing p { color: rgba(255,255,255,.92); font-size: 16.5px; line-height: 1.6; max-width: 56ch; margin: 0 auto 22px; font-weight: 500; }
.ig-closing p:last-child { color: rgba(255,255,255,.75) !important; font-size: 13px !important; margin: 16px auto 0 !important; }
.ig-closing .btn.primary { background: #fff; color: #2A0C7A; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.ig-closing .btn.primary:hover { filter: none; background: #fff; }

@media (max-width: 860px) {
  .ig-hero-grid { grid-template-columns: 1fr; }
  .ig-hero-grid > div:first-child { text-align: center; }
  .ig-cta-row { justify-content: center; }
  .ig-hero .iphone-box { max-width: 210px; }
  .ig-meta { grid-template-columns: repeat(2, 1fr); }
  .ig-steps-visual, .ig-steps { grid-template-columns: 1fr; }
  .ig-app-pitch { grid-template-columns: 1fr; text-align: center; }
  .ig-app-pitch li { text-align: left; }
}
@media (max-width: 600px) {
  .ig-stats tr { grid-template-columns: 1fr; gap: 4px; padding: 12px 16px; }
  .ig-qs, .ig-qlist { grid-template-columns: 1fr; }
  .ig-step-visual, .ig-step { grid-template-columns: 96px 1fr; gap: 14px; padding: 14px; }
  .ig-section h2 { font-size: 26px; }
}


/* ── Guide pages (Kings Cup, Ride the Bus, Truth or Drink) on the ig- skin ── */
.ig-section-tag { display: block; font-family: var(--display); font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 800; margin-bottom: 8px; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ig-hero h1 em, .ig-hero h1 > span { display: block; font-style: normal; font-size: .55em; letter-spacing: -0.5px; color: var(--text-secondary); margin-top: 6px; }
.ig-aliases { color: var(--text-tertiary); font-size: 14px; font-weight: 600; margin: -6px 0 14px; }
.ig-aliases strong { color: var(--text-secondary); }
.ig-facts-wrap { margin-top: 16px; }
.ig-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 16px; }
.ig-hero .ig-facts { margin-top: clamp(24px, 4vw, 40px); }
.ig-fact { padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-fact-label { font-family: var(--display); font-size: 10.5px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--text-tertiary); font-weight: 800; margin-bottom: 4px; }
.ig-fact-value { font-family: var(--display); font-weight: 900; font-size: 17px; color: var(--text); letter-spacing: -0.2px; }
.ig-jumper { margin-top: 22px; padding: 18px 20px; border-radius: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-jumper-label { font-family: var(--display); font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 800; color: var(--text-tertiary); margin-bottom: 10px; }
.ig-jumper-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.ig-jumper-grid a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); font-family: var(--display); font-weight: 800; font-size: 13.5px; color: var(--text); text-decoration: none !important; }
.ig-jumper-grid a:hover { background: rgba(255,255,255,.11); }
.ig-appgames { margin-top: 22px; padding: 22px; border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.ig-appgames h3 { font-family: var(--display); font-weight: 900; font-size: 19px; margin-bottom: 6px; letter-spacing: -0.3px; }
.ig-appgames > p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin-bottom: 14px; font-weight: 500; }
.ig-appgames ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ig-appgames li a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); font-family: var(--display); font-weight: 800; font-size: 13.5px; color: var(--text); text-decoration: none !important; }
.ig-page .ig-hero-grid > div:first-child .ig-cta-row { margin-top: 12px; }
.ig-page > article > p[style], .ig-section > p[style] { color: var(--text-tertiary) !important; }

/* Kings Cup: the deck of 13 rule cards */
.kc-deck { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; margin-top: 20px; }
.kc-card { position: relative; display: flex; flex-direction: column; padding: 22px 22px 22px 60px; border-radius: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); scroll-margin-top: 96px; }
.kc-card.feature { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(232,53,122,.16), rgba(124,62,240,.12)); border-color: rgba(232,53,122,.3); }
.kc-card-corner { position: absolute; left: 16px; top: 18px; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.kc-card-corner.flip { display: none; }
.kc-card-rank { font-family: var(--display); font-weight: 900; font-size: 22px; color: var(--text); }
.kc-card-suit { font-size: 16px; color: var(--text-secondary); margin-top: 2px; }
.kc-card.red .kc-card-rank, .kc-card.red .kc-card-suit { color: #FF6B8A; }
.kc-card-rule { font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: -0.3px; margin-bottom: 6px; }
.kc-card-tag { display: inline-flex; align-self: flex-start; padding: 4px 10px; border-radius: 999px; font-family: var(--display); font-weight: 800; font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; background: rgba(255,255,255,.08); color: var(--text-secondary); margin-bottom: 10px; }
.kc-card-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.6; font-weight: 500; margin: 0 0 10px; }
.kc-card-desc strong { color: var(--text); }
.kc-card-variants { font-size: 13.5px; line-height: 1.55; color: var(--text-tertiary); padding-top: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.kc-card-variants strong { display: block; font-family: var(--display); font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 3px; }
.kc-card-link { margin-top: 12px; font-weight: 800; }
.kc-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); font-family: var(--display); font-weight: 800; font-size: 13.5px; color: var(--text); text-decoration: none !important; }
.kc-chip-rank { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px; border-radius: 7px; background: var(--brand-grad); color: #fff; font-size: 12px; }
.kc-chip-rule { color: var(--text-secondary); font-weight: 700; }
.kc-variants { margin-top: 18px; display: grid; gap: 10px; }
.kc-variant-row { display: grid; grid-template-columns: 44px 190px 1fr; gap: 14px; align-items: start; padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); }
.kc-variant-rank { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--brand-grad); color: #fff; font-family: var(--display); font-weight: 900; font-size: 15px; }
.kc-variant-name { font-family: var(--display); font-weight: 900; color: var(--text); font-size: 15px; }
.kc-variant-name small { display: block; font-weight: 600; color: var(--text-tertiary); font-size: 12px; margin-top: 2px; }
.kc-diagram, .rb-diagram { margin: 20px 0 6px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.kc-diagram svg, .rb-diagram svg { width: 100%; height: auto; display: block; max-width: 720px; margin: 0 auto; }
.kc-diagram-caption, .rb-diagram-caption { text-align: center; font-size: 13px; color: var(--text-tertiary); font-weight: 600; margin-bottom: 18px; }

/* Ride the Bus: phases, questions, rules, odds */
.rb-phase { margin-top: clamp(44px, 6vw, 72px); padding: clamp(20px, 3vw, 28px); border-radius: 28px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); }
.rb-phase-label { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.rb-phase-num { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--brand-grad); color: #fff; font-family: var(--display); font-weight: 900; font-size: 24px; line-height: 1; flex-shrink: 0; }
.rb-phase-num small { font-size: 9px; letter-spacing: 1.4px; text-transform: uppercase; opacity: .85; }
.rb-phase-label h2 { font-family: var(--display); font-weight: 900; font-size: clamp(24px, 3.2vw, 34px); letter-spacing: -0.8px; margin: 0; }
.rb-phase-sub { color: var(--text-secondary); font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.rb-phase-body > p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; margin-bottom: 14px; max-width: 76ch; font-weight: 500; }
.rb-phase-body > p strong { color: var(--text); }
.rb-questions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 18px 0; }
.rb-q { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.rb-q-num { font-family: var(--display); font-size: 10.5px; letter-spacing: 1.3px; text-transform: uppercase; font-weight: 800; background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rb-q h3 { font-family: var(--display); font-weight: 900; font-size: 19px; margin: 4px 0 8px; letter-spacing: -0.3px; }
.rb-q p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; margin-bottom: 8px; font-weight: 500; }
.rb-q p strong { color: var(--text); }
.rb-q-odds { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: rgba(255,180,25,.16); color: #FFC65C; border: 1px solid rgba(255,180,25,.35); font-family: var(--display); font-weight: 800; font-size: 12px; }
.rb-rules-list { margin-top: 18px; display: grid; gap: 10px; }
.rb-rule { display: grid; grid-template-columns: 90px 1fr; gap: 14px; padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.rb-rule-tag { font-family: var(--display); font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 800; color: var(--text-tertiary); padding-top: 4px; }
.rb-rule h3 { font-family: var(--display); font-weight: 900; font-size: 16px; margin: 0 0 4px; }
.rb-rule p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; margin: 0; font-weight: 500; }
.rb-odds-table { margin: 20px 0; overflow-x: auto; border-radius: 20px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.rb-odds-table table { width: 100%; border-collapse: collapse; min-width: 520px; }
.rb-odds-table th, .rb-odds-table td { padding: 12px 14px; text-align: left; font-size: 14.5px; border-bottom: 1px solid rgba(255,255,255,.07); }
.rb-odds-table thead th { font-family: var(--display); font-weight: 800; background: rgba(255,255,255,.04); }
.rb-odds-table td { color: var(--text-secondary); font-weight: 500; }
.rb-odds-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.rb-odds-table .good { color: #5CE6B8; font-weight: 800; } .rb-odds-table .meh { color: #FFC65C; font-weight: 800; } .rb-odds-table .bad { color: #FF6B8A; font-weight: 800; }
.rb-odds-table tr:last-child td { border-bottom: 0; }

/* Truth or Drink: categories, featured card, question lists */
:root { --tod-mild: #5EBFA3; --tod-spicy: #FF7A8A; --tod-couples: #E63E63; --tod-friends: #6FE8A1; --tod-adults: #9B7FFF; --tod-deep: #F5C842; }
.tod-featured { margin: 22px 0 6px; padding: 22px 24px; border-radius: 24px; background: linear-gradient(135deg, rgba(232,53,122,.18), rgba(124,62,240,.14)); border: 1px solid rgba(232,53,122,.3); max-width: 560px; }
.tod-featured-label { font-family: var(--display); font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 800; color: #FF8CA3; margin-bottom: 8px; }
.tod-featured-q { font-family: var(--display); font-weight: 900; font-size: clamp(19px, 2.4vw, 24px); line-height: 1.25; letter-spacing: -0.4px; margin-bottom: 14px; color: var(--text); }
.tod-featured-choice { display: inline-flex; gap: 8px; }
.tod-featured-choice span { padding: 8px 16px; border-radius: 999px; font-family: var(--display); font-weight: 800; font-size: 13px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); }
.tod-featured-choice span:first-child { background: var(--brand-grad); border-color: transparent; color: #fff; }
.tod-jump-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tod-jump-count { margin-left: 2px; padding: 1px 7px; border-radius: 999px; background: rgba(255,255,255,.10); font-size: 11.5px; color: var(--text-secondary); }
.tod-cat { margin-top: clamp(44px, 6vw, 72px); --c: var(--tod-mild); }
.tod-cat.spicy { --c: var(--tod-spicy); } .tod-cat.couples { --c: var(--tod-couples); } .tod-cat.friends { --c: var(--tod-friends); } .tod-cat.adults { --c: var(--tod-adults); } .tod-cat.deep { --c: var(--tod-deep); }
.tod-cat-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 800; color: var(--c); margin-bottom: 8px; }
.tod-cat-eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c); box-shadow: 0 0 10px var(--c); }
.tod-cat h2 { font-family: var(--display); font-weight: 900; font-size: clamp(24px, 3.2vw, 34px); letter-spacing: -0.8px; margin-bottom: 8px; }
.tod-cat-desc { color: var(--text-secondary); font-size: 16px; line-height: 1.65; max-width: 70ch; font-weight: 500; margin-bottom: 8px; }
.tod-cat-meta { font-family: var(--display); font-size: 12px; font-weight: 800; color: var(--text-tertiary); letter-spacing: .3px; }
.tod-q-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; counter-reset: q; }
.tod-q-list li { position: relative; padding: 12px 14px 12px 46px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); font-size: 15px; line-height: 1.5; color: var(--text); font-weight: 500; }
.tod-q-list li::before { counter-increment: q; content: counter(q); position: absolute; left: 12px; top: 11px; width: 24px; height: 24px; border-radius: 8px; background: rgba(255,255,255,.08); font-family: var(--display); font-weight: 800; font-size: 12px; text-align: center; line-height: 24px; color: var(--text-secondary); }
.tod-back-top { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: var(--display); font-weight: 800; font-size: 13px; color: var(--text-tertiary) !important; text-decoration: none !important; }
.tod-compare { margin: 20px 0; overflow-x: auto; border-radius: 20px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.tod-compare table { width: 100%; border-collapse: collapse; min-width: 520px; }
.tod-compare th, .tod-compare td { padding: 12px 14px; text-align: left; font-size: 14.5px; line-height: 1.45; border-bottom: 1px solid rgba(255,255,255,.07); vertical-align: top; }
.tod-compare thead th { font-family: var(--display); font-weight: 800; background: rgba(255,255,255,.04); }
.tod-compare tbody th { font-family: var(--display); font-weight: 800; }
.tod-compare td { color: var(--text-secondary); font-weight: 500; }
@media (max-width: 760px) {
  .rb-questions, .tod-q-list { grid-template-columns: 1fr; }
  .kc-variant-row { grid-template-columns: 40px 1fr; }
  .kc-variant-row > div:last-child { grid-column: 2; }
  .rb-rule { grid-template-columns: 1fr; gap: 6px; }
  .rb-phase-num { width: 52px; height: 52px; font-size: 20px; border-radius: 14px; }
}

/* plain lists inside sections (setup steps etc.) */
.ig-section > ol:not([class]), .ig-section > ul:not([class]), .rb-phase-body > ol:not([class]), .rb-phase-body > ul:not([class]) { margin: 14px 0 18px 22px; padding: 0; display: grid; gap: 8px; color: var(--text-secondary); font-size: 15.5px; line-height: 1.6; font-weight: 500; max-width: 76ch; }
.ig-section > ol:not([class]) li strong, .ig-section > ul:not([class]) li strong, .rb-phase-body ol li strong { color: var(--text); font-weight: 800; }
