/* StarkBet App India — starkbetapk.com
   Brand: purple #4D0CCA · gold #EFA300 · type: Unbounded / Hanken Grotesk */

:root {
  --brand: oklch(42% 0.27 290);
  --brand-hi: oklch(52% 0.26 290);
  --brand-deep: oklch(26% 0.15 292);
  --brand-ink: oklch(17% 0.09 292);
  --brand-tint: oklch(90% 0.06 292);

  --gold: oklch(77% 0.17 75);
  --gold-hi: oklch(86% 0.15 85);
  --gold-deep: oklch(64% 0.17 65);

  --cream: oklch(97.5% 0.012 295);
  --cream-2: oklch(94.5% 0.028 295);
  --paper: oklch(99.2% 0.005 295);

  --ink: oklch(20% 0.06 292);
  --ink-2: oklch(40% 0.06 292);
  --ink-3: oklch(56% 0.05 292);
  --line: oklch(88% 0.03 292);

  --on-dark: oklch(97.5% 0.01 295);
  --on-dark-2: oklch(83% 0.06 295);
  --on-dark-line: oklch(100% 0 0 / 0.14);

  --green: oklch(68% 0.18 152);
  --green-deep: oklch(50% 0.16 152);

  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-body: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.32, 0.72, 0, 1);

  --header-h: 72px;
  --wrap: 1180px;
  --measure: 70ch;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-hi); }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.015em; text-wrap: balance; }
h1, h2 { font-family: var(--font-display); line-height: 1.1; }
h3, h4 { font-family: var(--font-body); font-weight: 800; letter-spacing: -0.01em; line-height: 1.25; }
h1 { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.6rem); }
h2 { font-size: clamp(1.55rem, 1rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p, ul, ol { margin: 0; }
strong { font-weight: 700; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--brand-ink); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100px; left: 16px; z-index: 100; padding: 10px 16px; background: var(--gold); color: var(--brand-ink); font-weight: 700; border-radius: var(--radius-sm); }
.skip-link:focus { top: 12px; }

.wrap { width: min(100% - 2 * clamp(16px, 4vw, 40px), var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2 * clamp(16px, 4vw, 40px), 860px); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 6px 6px 24px; min-height: 56px;
  border-radius: var(--radius-pill);
  font-weight: 800; font-size: 1.0625rem; letter-spacing: 0.005em; line-height: 1.1;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), background-color 0.3s var(--ease-soft);
  will-change: transform;
}
.btn .btn-ic {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  transition: transform 0.45s var(--ease-soft);
}
.btn .btn-ic svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn-ic { transform: translate(3px, -1px) scale(1.06); }
.btn:active { transform: translateY(0) scale(0.985); }

.btn-gold { background: var(--gold); color: var(--brand-ink); box-shadow: 0 10px 30px -10px oklch(77% 0.17 75 / 0.65), inset 0 1px 0 oklch(100% 0 0 / 0.5); }
.btn-gold:hover { background: var(--gold-hi); color: var(--brand-ink); box-shadow: 0 18px 40px -12px oklch(77% 0.17 75 / 0.8), inset 0 1px 0 oklch(100% 0 0 / 0.6); }
.btn-gold .btn-ic { background: var(--brand-ink); color: var(--gold); }

.btn-purple { background: var(--brand); color: var(--on-dark); box-shadow: 0 12px 30px -12px oklch(42% 0.27 290 / 0.7); }
.btn-purple:hover { background: var(--brand-hi); color: var(--on-dark); }
.btn-purple .btn-ic { background: var(--gold); color: var(--brand-ink); }

.btn-ghost { background: transparent; color: var(--on-dark); border: 2px solid var(--on-dark-line); padding-right: 24px; }
.btn-ghost:hover { color: var(--on-dark); border-color: oklch(100% 0 0 / 0.4); background: oklch(100% 0 0 / 0.06); }
.btn-ghost.on-light { color: var(--brand); border-color: var(--brand-tint); }
.btn-ghost.on-light:hover { color: var(--brand); background: var(--brand-tint); border-color: var(--brand-tint); }

.btn-sm { min-height: 46px; padding: 4px 4px 4px 18px; font-size: 0.95rem; }
.btn-sm .btn-ic { width: 38px; height: 38px; }
.btn-sm .btn-ic svg { width: 16px; height: 16px; }
.btn-block { width: 100%; justify-content: space-between; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: oklch(17% 0.09 292 / 0.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--on-dark-line);
  transition: box-shadow 0.4s var(--ease-soft);
}
.site-header.is-scrolled { box-shadow: 0 14px 40px -20px oklch(0% 0 0 / 0.7); }
.header-in { display: flex; align-items: center; gap: var(--space-lg); min-height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--on-dark); font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }
.logo img { width: 42px; height: 42px; border-radius: 10px; }
.logo em { font-style: normal; color: var(--gold); }
.nav { margin-inline: auto; display: flex; align-items: center; gap: 4px; }
.nav a { display: inline-block; padding: 10px 14px; border-radius: var(--radius-pill); color: var(--on-dark-2); font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: color 0.25s, background-color 0.25s; }
.nav a:hover { color: var(--on-dark); background: oklch(100% 0 0 / 0.07); }
.nav a[aria-current="page"] { color: var(--on-dark); background: oklch(100% 0 0 / 0.1); }
.header-cta { margin-left: auto; }
.nav-toggle { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--on-dark-line); color: var(--on-dark); position: relative; }
.nav-toggle span { position: absolute; left: 14px; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.45s var(--ease-soft), opacity 0.3s; }
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1099px) {
  .nav-toggle { display: block; margin-left: auto; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 39;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 12px clamp(16px, 4vw, 40px) 24px;
    background: var(--brand-ink);
    border-bottom: 1px solid var(--on-dark-line);
    box-shadow: 0 30px 60px -20px oklch(0% 0 0 / 0.6);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.5s var(--ease-soft), opacity 0.35s var(--ease-soft);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.1rem; padding: 14px 16px; border-radius: 14px; opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out); }
  .nav.is-open a { opacity: 1; transform: none; }
  .nav.is-open a:nth-child(1) { transition-delay: 0.05s } .nav.is-open a:nth-child(2) { transition-delay: 0.08s } .nav.is-open a:nth-child(3) { transition-delay: 0.11s } .nav.is-open a:nth-child(4) { transition-delay: 0.14s } .nav.is-open a:nth-child(5) { transition-delay: 0.17s } .nav.is-open a:nth-child(6) { transition-delay: 0.2s } .nav.is-open a:nth-child(7) { transition-delay: 0.23s } .nav.is-open a:nth-child(8) { transition-delay: 0.26s } .nav.is-open a:nth-child(9) { transition-delay: 0.29s }
  .nav .nav-mobile-cta { margin-top: 12px; opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease-out) 0.3s, transform 0.5s var(--ease-out) 0.3s; }
  .nav.is-open .nav-mobile-cta { opacity: 1; transform: none; }
  .nav .nav-mobile-cta a { display: inline-flex; justify-content: space-between; padding: 6px 6px 6px 24px; border-radius: var(--radius-pill); color: var(--brand-ink); font-size: 1.0625rem; opacity: 1; transform: none; transition: transform 0.45s var(--ease-soft), box-shadow 0.45s var(--ease-soft), background-color 0.3s var(--ease-soft); }
  .nav .nav-mobile-cta a:hover { background: var(--gold-hi); }
}
@media (min-width: 1100px) { .nav .nav-mobile-cta { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: clip;
  color: var(--on-dark);
  background: var(--brand-deep);
  padding: clamp(40px, 6vw, 88px) 0 clamp(48px, 6vw, 96px);
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10%; z-index: -2;
  background:
    radial-gradient(60% 50% at 78% 45%, oklch(52% 0.26 290 / 0.75), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, oklch(77% 0.17 75 / 0.22), transparent 70%),
    radial-gradient(50% 50% at 50% 0%, oklch(42% 0.27 290 / 0.5), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: repeating-conic-gradient(from 0deg at 76% 50%, transparent 0 7deg, oklch(100% 0 0 / 0.035) 7deg 14deg);
  mask-image: radial-gradient(60% 80% at 76% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(60% 80% at 76% 50%, #000 20%, transparent 80%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero-grid--single { grid-template-columns: 1fr; }
.hero-grid--single .hero-copy { max-width: 760px; }
.hero-copy { max-width: 640px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; border-radius: var(--radius-pill); background: oklch(100% 0 0 / 0.08); border: 1px solid var(--on-dark-line); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-2); }
.eyebrow i { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--brand-ink); font-style: normal; font-size: 0.7rem; }
.eyebrow.on-light { background: var(--brand-tint); border-color: transparent; color: var(--brand); }
.hero h1 { margin-top: 20px; }
.hero h1 .hl { color: var(--gold); }
.hero .lead { margin-top: 20px; font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); line-height: 1.55; color: var(--on-dark-2); max-width: 56ch; }
.hero .lead strong { color: var(--on-dark); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-note { margin-top: 16px; font-size: 0.9rem; color: var(--on-dark-2); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { width: 16px; height: 16px; color: var(--green); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual .frame {
  position: relative; width: min(100%, 380px); padding: 8px;
  border-radius: 34px; background: oklch(100% 0 0 / 0.07); border: 1px solid oklch(100% 0 0 / 0.16);
  box-shadow: 0 40px 80px -30px oklch(0% 0 0 / 0.7);
  transform: rotate(-2deg);
  transition: transform 0.8s var(--ease-soft);
}
.hero-visual .frame:hover { transform: rotate(0deg); }
.hero-visual .frame img { border-radius: 26px; width: 100%; }
.float-tag {
  position: absolute; padding: 10px 14px; border-radius: 16px;
  background: var(--paper); color: var(--ink); font-weight: 800; font-size: 0.9rem; line-height: 1.2;
  box-shadow: 0 20px 40px -18px oklch(0% 0 0 / 0.5);
  display: flex; align-items: center; gap: 10px;
  animation: float 6s var(--ease-soft) infinite alternate;
}
.float-tag small { display: block; font-weight: 600; font-size: 0.72rem; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; }
.float-tag b { font-family: var(--font-display); font-size: 1.05rem; color: var(--brand); }
.float-tag.t1 { top: 12%; left: -6%; }
.float-tag.t1.mid { top: 34%; }
.float-tag.t2 { bottom: 16%; right: -6%; animation-delay: -3s; }
.float-tag .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px oklch(68% 0.18 152 / 0.25); }
@keyframes float { from { transform: translateY(-6px); } to { transform: translateY(8px); } }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual .frame { width: min(64%, 280px); transform: rotate(-1deg); }
  .float-tag.t1 { left: 0; } .float-tag.t2 { right: 0; }
  .hero .lead { font-size: 1.08rem; }
}
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; justify-content: space-between; }
}

/* Compact hero for inner pages */
.hero.hero-inner { padding: clamp(32px, 5vw, 64px) 0 clamp(36px, 5vw, 64px); }
.hero.hero-inner .hero-visual .frame { width: min(100%, 320px); }
.hero.hero-inner::after { display: none; }

/* ---------- Trust strip ---------- */
.trust { background: var(--brand-ink); color: var(--on-dark); border-top: 1px solid var(--on-dark-line); }
.trust-in { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-right: 1px solid var(--on-dark-line); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.trust-item b { display: block; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.1; }
.trust-item span { display: block; font-size: 0.8rem; color: var(--on-dark-2); }
@media (max-width: 640px) {
  .trust-in { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--on-dark-line); padding: 14px 8px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--on-dark-line); }
  .trust-item:last-child, .trust-item:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
  .trust-item:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; justify-content: center; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--gold); color: var(--brand-ink); padding: 12px 0; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; }
.marquee-track span::after { content: "★"; font-size: 0.8em; opacity: 0.7; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .float-tag { animation: none; } }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 112px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--brand-deep); color: var(--on-dark); }
.section-dark .section-head p { color: var(--on-dark-2); }
.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 + p { margin-top: 14px; font-size: 1.1rem; color: var(--ink-2); }

/* ---------- Feature list (asymmetric) ---------- */
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
.split-media .frame { padding: 8px; border-radius: calc(var(--radius-lg) + 8px); background: oklch(100% 0 0 / 0.55); border: 1px solid var(--line); box-shadow: 0 40px 80px -40px oklch(42% 0.27 290 / 0.45); }
.section-dark .split-media .frame { background: oklch(100% 0 0 / 0.07); border-color: var(--on-dark-line); }
.split-media .frame img { border-radius: var(--radius-lg); }
.split-media.portrait { max-width: 420px; margin-inline: auto; }
.split-copy h2 { margin-bottom: 16px; }
.split-copy p { color: var(--ink-2); }
.split-copy p + p { margin-top: 12px; }
.section-dark .split-copy p { color: var(--on-dark-2); }
.split-copy .btn { margin-top: 24px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } .split-media.portrait { max-width: 320px; } }

/* ---------- Feature (landscape illustration + copy) ---------- */
.feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.feature--reverse > .feature-media { order: 2; }
.feature-media .pic { position: relative; border-radius: var(--radius-lg); overflow: hidden; isolation: isolate; box-shadow: 0 50px 90px -40px oklch(42% 0.27 290 / 0.55); transform: rotate(-1.5deg); transition: transform 0.8s var(--ease-soft); }
.feature--reverse .feature-media .pic { transform: rotate(1.5deg); }
.feature-media .pic:hover { transform: rotate(0); }
.feature-media .pic::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px oklch(100% 0 0 / 0.18); pointer-events: none; }
.feature-media img { display: block; width: 100%; height: auto; }
.feature-copy h2 { margin-bottom: 16px; }
.feature-copy p { color: var(--ink-2); }
.feature-copy p + p { margin-top: 12px; }
.section-dark .feature-copy p { color: var(--on-dark-2); }
.feature-copy .hero-actions { margin-top: 24px; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature--reverse > .feature-media { order: 0; }
  .feature-media .pic, .feature--reverse .feature-media .pic { transform: none; }
}

/* ---------- Illustrated cards ---------- */
.pic-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pic-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft), border-color 0.3s; }
.pic-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px oklch(42% 0.27 290 / 0.55); border-color: oklch(42% 0.27 290 / 0.3); color: var(--ink); }
.pic-card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--brand-deep); }
.pic-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-soft); }
.pic-card:hover .pic-card-media img { transform: scale(1.05); }
.pic-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pic-card .cat { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); }
.pic-card h3 { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.2; }
.pic-card p { color: var(--ink-2); font-size: 0.95rem; }
.pic-card .more { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.9rem; color: var(--brand); }
.pic-card .more svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-soft); }
.pic-card:hover .more svg { transform: translateX(4px); }
.section-dark .pic-card { background: oklch(100% 0 0 / 0.06); border-color: var(--on-dark-line); color: var(--on-dark); }
.section-dark .pic-card:hover { color: var(--on-dark); border-color: oklch(100% 0 0 / 0.3); }
.section-dark .pic-card .cat, .section-dark .pic-card .more { color: var(--gold); }
.section-dark .pic-card p { color: var(--on-dark-2); }
@media (max-width: 1024px) { .pic-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } .pic-card:last-child:nth-child(odd) { grid-column: 1 / -1; } .pic-card:last-child:nth-child(odd) .pic-card-media { aspect-ratio: 2 / 1; } }
@media (max-width: 640px) { .pic-cards { grid-template-columns: 1fr; } .pic-card:last-child:nth-child(odd) .pic-card-media { aspect-ratio: 4 / 3; } }

/* ---------- Figures inside long-form copy ---------- */
.prose-figure { margin: 28px 0 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); border: 1px solid var(--line); }
.prose-figure img { display: block; width: 100%; height: auto; }
.prose-figure figcaption { padding: 12px 18px; font-size: 0.9rem; color: var(--ink-2); border-top: 1px solid var(--line); }

.checks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 36px; color: var(--ink); }
.section-dark .checks li { color: var(--on-dark); }
.checks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 14px no-repeat; }
.checks li b { font-weight: 700; }

/* ---------- Spec table (APK info) ---------- */
.spec { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.spec table { font-size: 1rem; }
.spec th, .spec td { padding: 14px 20px; text-align: left; vertical-align: top; }
.spec th { width: 38%; font-weight: 600; color: var(--ink-2); background: var(--cream-2); border-bottom: 1px solid var(--line); }
.spec td { font-weight: 700; border-bottom: 1px solid var(--line); }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: 0; }
.spec td .tag { display: inline-block; padding: 2px 10px; border-radius: var(--radius-pill); background: var(--brand-tint); color: var(--brand); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.spec td .tag.green { background: oklch(93% 0.06 152); color: var(--green-deep); }
@media (max-width: 560px) { .spec th, .spec td { display: block; width: 100%; padding: 10px 16px; } .spec th { border-bottom: 0; padding-bottom: 2px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; } }

/* ---------- Steps ---------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; column-gap: 18px; row-gap: 0; padding: 22px 24px 22px 18px; border-radius: var(--radius-md); background: var(--paper); border: 1px solid var(--line); position: relative; overflow: hidden; }
.steps li::before { content: counter(step, decimal-leading-zero); grid-column: 1; grid-row: 1 / span 6; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; line-height: 1; color: var(--brand); padding-top: 2px; }
.steps li > * { grid-column: 2; }
.steps li h3 { font-size: 1.15rem; margin-bottom: 6px; }
.steps li p { color: var(--ink-2); font-size: 1rem; }
.steps li p + p { margin-top: 6px; }
.steps li .btn { margin-top: 14px; }
.section-dark .steps li { background: oklch(100% 0 0 / 0.06); border-color: var(--on-dark-line); }
.section-dark .steps li::before { color: var(--gold); }
.section-dark .steps li p { color: var(--on-dark-2); }
.steps.cols { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.steps.cols li { grid-template-columns: 1fr; row-gap: 12px; }
.steps.cols li::before { font-size: 2.4rem; grid-row: auto; }
.steps.cols li > * { grid-column: 1; }

/* ---------- Games ---------- */
.games { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.game { position: relative; grid-column: span 3; min-height: 168px; padding: 20px; border-radius: var(--radius-md); overflow: hidden; text-decoration: none; color: var(--on-dark); background: var(--brand); display: flex; flex-direction: column; justify-content: flex-end; transition: transform 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft); isolation: isolate; }
.game::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(80% 70% at 100% 0%, oklch(100% 0 0 / 0.22), transparent 60%), linear-gradient(160deg, var(--brand-hi), var(--brand-deep)); }
.game::after { content: ""; position: absolute; inset: 0; z-index: -1; background: repeating-linear-gradient(135deg, transparent 0 14px, oklch(100% 0 0 / 0.03) 14px 15px); }
.game:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px oklch(42% 0.27 290 / 0.9); color: var(--on-dark); }
.game .cat { display: block; margin-bottom: auto; padding-right: 96px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.game .hot { position: absolute; top: 12px; right: 12px; padding: 4px 10px; border-radius: var(--radius-pill); background: var(--gold); color: var(--brand-ink); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.game h3 { margin-top: 18px; font-family: var(--font-display); font-size: 1.25rem; color: var(--on-dark); }
.game p { font-size: 0.9rem; color: var(--on-dark-2); margin-top: 4px; }
.game.wide { grid-column: span 6; min-height: 200px; }
.game.wide h3 { font-size: 1.6rem; }
.game.gold { background: var(--gold); color: var(--brand-ink); }
.game.gold::before { background: radial-gradient(80% 70% at 100% 0%, oklch(100% 0 0 / 0.5), transparent 60%), linear-gradient(160deg, var(--gold-hi), var(--gold-deep)); }
.game.gold h3, .game.gold p { color: var(--brand-ink); }
.game.gold .cat { color: var(--brand); }
@media (max-width: 900px) { .game { grid-column: span 6; } .game.wide { grid-column: span 12; } }
@media (max-width: 520px) { .game { grid-column: span 6; min-height: 132px; padding: 16px; } .game .cat { padding-right: 0; } .game h3 { font-size: 1.05rem; } .game:not(.wide) p { display: none; } .game.wide { min-height: 160px; } .game.wide h3 { font-size: 1.3rem; } .game.wide .cat { padding-right: 96px; } }

/* ---------- Comparison table ---------- */
.compare { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--paper); }
.compare table { min-width: 560px; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--brand-deep); color: var(--on-dark); font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; }
.compare thead th:first-child { border-radius: 0; }
.compare tbody th { font-weight: 600; color: var(--ink-2); width: 34%; }
.compare tbody td { font-weight: 600; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare td.yes::before { content: "✓ "; color: var(--green-deep); font-weight: 900; }
.compare td.no { color: var(--ink-3); }
.compare td.no::before { content: "— "; }

/* ---------- Bonus card ---------- */
.bonus-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(24px, 4vw, 48px); border-radius: var(--radius-lg); background: var(--brand); color: var(--on-dark); position: relative; overflow: hidden; isolation: isolate; }
.bonus-card::before { content: ""; position: absolute; inset: -30%; z-index: -1; background: repeating-conic-gradient(from 0deg at 20% 50%, transparent 0 8deg, oklch(100% 0 0 / 0.05) 8deg 16deg); }
.bonus-card .big { font-family: var(--font-display); font-weight: 900; font-size: clamp(3.4rem, 2rem + 6vw, 7rem); line-height: 0.95; color: var(--gold); letter-spacing: -0.03em; }
.bonus-card .big small { display: block; font-size: 0.28em; font-weight: 700; color: var(--on-dark); letter-spacing: 0.04em; margin-bottom: 8px; }
.bonus-card p { color: var(--on-dark-2); margin-top: 16px; max-width: 46ch; }
.bonus-card .btn { margin-top: 24px; }
.bonus-card .bonus-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.bonus-card .bonus-list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 18px; border-radius: 14px; background: oklch(100% 0 0 / 0.08); border: 1px solid oklch(100% 0 0 / 0.14); font-weight: 600; }
.bonus-card .bonus-list li b { font-family: var(--font-display); color: var(--gold); white-space: nowrap; }
@media (max-width: 800px) { .bonus-card { grid-template-columns: 1fr; } }

/* ---------- Prose (SEO long-form) ---------- */
.prose { max-width: var(--measure); min-width: 0; }
.table-scroll { margin-top: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }
.table-scroll table { min-width: 100%; width: max-content; max-width: none; }
.prose .table-scroll table { margin-top: 0; }
.prose h2 { margin-top: clamp(36px, 5vw, 56px); margin-bottom: 14px; font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; }
.prose p { color: var(--ink-2); }
.prose p + p, .prose ul + p, .prose ol + p, .prose p + ul, .prose p + ol { margin-top: 14px; }
.prose ul, .prose ol { padding-left: 22px; color: var(--ink-2); display: grid; gap: 8px; }
.prose li::marker { color: var(--brand); font-weight: 800; }
.prose a { font-weight: 600; }
.prose .callout { margin-top: 20px; padding: 18px 22px; border-radius: var(--radius-md); background: var(--brand-tint); color: var(--ink); border: 1px solid oklch(80% 0.1 292); }
.prose .callout p { color: var(--ink); }
.prose .callout a { color: var(--brand); }
.prose table { font-size: 0.96rem; margin-top: 16px; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--paper); }
.prose table th, .prose table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose table thead th { background: var(--brand-deep); color: var(--on-dark); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.prose table tbody th { font-weight: 600; color: var(--ink-2); }
.prose table tbody td { color: var(--ink); font-weight: 600; }
.prose table tr:last-child th, .prose table tr:last-child td { border-bottom: 0; }
.prose .table-scroll { overflow-x: auto; }
.prose-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 960px) { .prose-grid { grid-template-columns: 1fr; } }

/* Sticky side card */
.side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 16px; }
.side-card { padding: 22px; border-radius: var(--radius-lg); background: var(--brand-deep); color: var(--on-dark); position: relative; overflow: hidden; isolation: isolate; }
.side-card::before { content: ""; position: absolute; inset: -40%; z-index: -1; background: radial-gradient(50% 50% at 80% 20%, oklch(52% 0.26 290 / 0.8), transparent 70%); }
.side-card .k { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.side-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-top: 8px; color: var(--on-dark); }
.side-card p { color: var(--on-dark-2); margin-top: 8px; font-size: 0.95rem; }
.side-card .btn { margin-top: 16px; }
.side-card .side-img { width: 100%; border-radius: 16px; margin-top: 16px; aspect-ratio: 575 / 1024; object-fit: cover; }
.side-links { padding: 20px 22px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.side-links h3 { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.side-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.side-links a { display: block; padding: 8px 10px; border-radius: 10px; text-decoration: none; font-weight: 600; color: var(--ink); transition: background-color 0.25s; }
.side-links a:hover { background: var(--cream-2); color: var(--brand); }
@media (max-width: 960px) { .side { position: static; } .side-card .side-img { display: none; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { border-radius: var(--radius-md); background: var(--paper); border: 1px solid var(--line); overflow: hidden; transition: border-color 0.3s; }
.faq details[open] { border-color: oklch(80% 0.1 292); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-weight: 700; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234D0CCA' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat; transition: transform 0.45s var(--ease-soft); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 22px 20px; color: var(--ink-2); }
.faq .faq-a p + p { margin-top: 10px; }
.faq .faq-a a { font-weight: 600; }
.section-dark .faq details { background: oklch(100% 0 0 / 0.06); border-color: var(--on-dark-line); }
.section-dark .faq summary { color: var(--on-dark); }
.section-dark .faq .faq-a { color: var(--on-dark-2); }

/* ---------- Cards row (payments etc.) ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.tile { padding: 22px; border-radius: var(--radius-md); background: var(--paper); border: 1px solid var(--line); }
.tile .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--brand); line-height: 1; }
.tile h3 { font-size: 1.05rem; margin-top: 10px; }
.tile p { margin-top: 6px; font-size: 0.95rem; color: var(--ink-2); }
.tile.hl { background: var(--brand-deep); color: var(--on-dark); border-color: transparent; }
.tile.hl .num, .section-dark .tile .num { color: var(--gold); }
.tile.hl h3, .section-dark .tile h3 { color: var(--on-dark); }
.tile.hl p, .section-dark .tile p { color: var(--on-dark-2); }
.section-dark .tile { background: oklch(100% 0 0 / 0.06); border-color: var(--on-dark-line); }
.tiles--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.tiles--compact .tile { padding: 16px 14px; }
.tiles--compact .tile .num { font-size: 1.3rem; }
.tiles--compact .tile h3 { font-size: 0.92rem; margin-top: 8px; }
.tiles--compact .tile p { font-size: 0.85rem; }
@media (max-width: 420px) { .tiles--compact { grid-template-columns: 1fr; } }

/* ---------- Spacing utilities (replace inline styles) ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-28 { margin-top: 28px !important; }

/* pay pills */
.pay-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pay-pills span { padding: 8px 14px; border-radius: var(--radius-pill); background: var(--paper); border: 1px solid var(--line); font-weight: 700; font-size: 0.9rem; }
.section-dark .pay-pills span { background: oklch(100% 0 0 / 0.08); border-color: var(--on-dark-line); color: var(--on-dark); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: clip; isolation: isolate; background: var(--brand); color: var(--on-dark); }
.cta-band::before { content: ""; position: absolute; inset: -30%; z-index: -1; background: radial-gradient(40% 60% at 85% 50%, oklch(77% 0.17 75 / 0.35), transparent 70%), repeating-conic-gradient(from 0deg at 85% 50%, transparent 0 9deg, oklch(100% 0 0 / 0.04) 9deg 18deg); }
.cta-in { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(40px, 6vw, 72px) 0 0; }
.cta-in h2 { font-size: clamp(1.8rem, 1.2rem + 2.6vw, 3rem); }
.cta-in h2 .hl { color: var(--gold); }
.cta-in p { margin-top: 14px; color: var(--on-dark-2); font-size: 1.1rem; max-width: 52ch; }
.cta-in .hero-actions { margin-top: 26px; }
.cta-in .cta-img { align-self: end; justify-self: center; width: min(100%, 320px); }
.cta-in .cta-img img { display: block; width: 100%; border-radius: 28px 28px 0 0; border: 5px solid var(--gold); border-bottom: 0; box-shadow: 0 -30px 80px -30px oklch(0% 0 0 / 0.6), 0 0 0 1px oklch(100% 0 0 / 0.12); }
.cta-in .cta-copy { padding-bottom: clamp(40px, 6vw, 72px); }
@media (max-width: 800px) { .cta-in { grid-template-columns: 1fr; } .cta-in .cta-img { width: min(70%, 260px); } .cta-in .cta-copy { padding-bottom: 0; } }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: 0.85rem; color: var(--on-dark-2); }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: 0.5; }
.crumbs a { color: var(--on-dark-2); text-decoration: none; }
.crumbs a:hover { color: var(--on-dark); }
.crumbs [aria-current] { color: var(--on-dark); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-ink); color: var(--on-dark-2); padding: clamp(48px, 6vw, 72px) 0 calc(24px + env(safe-area-inset-bottom)); border-top: 1px solid var(--on-dark-line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.footer-brand p { margin-top: 14px; font-size: 0.95rem; max-width: 40ch; }
.footer-brand .age { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold); font-weight: 900; font-size: 0.85rem; margin-top: 16px; }
.site-footer h3 { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer li a { color: var(--on-dark-2); text-decoration: none; font-size: 0.98rem; transition: color 0.25s; }
.site-footer li a:hover { color: var(--gold); }
.footer-bottom { margin-top: clamp(32px, 4vw, 48px); padding-top: 24px; border-top: 1px solid var(--on-dark-line); font-size: 0.85rem; display: grid; gap: 12px; }
.footer-bottom .disclaimer { max-width: 90ch; line-height: 1.55; }
.footer-bottom .copy { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 16px; }
.footer-bottom .copy a { color: var(--on-dark-2); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { gap: 24px 16px; } .footer-grid > div:last-child { grid-column: 1 / -1; } .footer-grid > div:last-child ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; } }
@media (max-width: 360px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 35; padding: 10px clamp(12px, 3vw, 20px) calc(10px + env(safe-area-inset-bottom)); background: oklch(17% 0.09 292 / 0.9); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-top: 1px solid var(--on-dark-line); transform: translateY(110%); transition: transform 0.55s var(--ease-soft); display: none; }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: space-between; }
.sticky-cta .btn .btn-label small { display: block; font-size: 0.72rem; font-weight: 600; opacity: 0.75; letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 860px) { .sticky-cta { display: block; } body { padding-bottom: 80px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; } .reveal[data-delay="2"] { transition-delay: 0.16s; } .reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn, .game { transition: none; } html { scroll-behavior: auto; } }

/* ---------- Misc ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); background: oklch(100% 0 0 / 0.08); border: 1px solid var(--on-dark-line); font-size: 0.85rem; font-weight: 700; color: var(--on-dark); }
.badge svg { width: 16px; height: 16px; color: var(--gold); }
.badge.on-light { background: var(--paper); border-color: var(--line); color: var(--ink); }
a.badge { text-decoration: none; transition: border-color 0.25s, color 0.25s; }
a.badge:hover { border-color: var(--brand); color: var(--brand); }
.badge.on-light svg { color: var(--brand); }
.star { color: var(--gold); }

.not-found { text-align: center; padding: clamp(64px, 10vw, 140px) 0; min-height: calc(100vh - var(--header-h) - 80px); display: grid; align-content: center; }
.not-found .code { font-family: var(--font-display); font-size: clamp(5rem, 15vw, 11rem); font-weight: 900; color: var(--brand); line-height: 1; letter-spacing: -0.04em; }
.not-found p { margin-top: 14px; color: var(--ink-2); font-size: 1.15rem; }
.not-found .hero-actions { justify-content: center; }
.not-found h1 { font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem); }
.not-found .not-found-links { justify-content: center; margin-top: 32px; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.contact-card { padding: 24px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.contact-card svg { width: 28px; height: 28px; color: var(--brand); }
.contact-card h3 { margin-top: 14px; font-size: 1.1rem; }
.contact-card p { margin-top: 6px; color: var(--ink-2); font-size: 0.98rem; }
.contact-card a.plain { display: inline-block; margin-top: 10px; font-weight: 700; }

.updated { font-size: 0.85rem; color: var(--ink-3); }
.legal .prose h2 { font-size: 1.35rem; margin-top: 32px; }
