/* Radiant Interactive Labs — shared styles.
   Fonts: Lilita One (display, the Ludo Rush logo face) + Baloo 2 (body). Light, breathable. */

:root {
  --paper: #ffffff;         /* clean white */
  --paper-2: #f4f4f4;       /* soft sunk grey */
  --card: #ffffff;
  --ink: #0d0d0d;           /* near-black */
  --ink-soft: #565656;
  --ink-faint: #9a9a9a;
  --line: #ececec;
  --line-strong: #dcdcdc;

  --brand: #111111;         /* black — the studio/game accent */
  --brand-deep: #000000;
  --brand-soft: #f0f0f0;

  /* Ludo token motif — greyscale shades, playful only, never UI chrome */
  --tok-red: #2b2b2b;
  --tok-green: #6d6d6d;
  --tok-amber: #a6a6a6;
  --tok-blue: #4a4a4a;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,.10), 0 3px 8px rgba(0,0,0,.06);
  --shadow-glow: 0 24px 70px rgba(0,0,0,.14);

  --maxw: 1120px;
  --r-card: 22px;
  --r-btn: 999px;
  --display: "Lilita One", "Baloo 2", system-ui, sans-serif;
  --body: "Baloo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.65; font-weight: 500;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; line-height: 1.02; letter-spacing: .005em; text-wrap: balance; }

/* bracketed eyebrow — [ LABEL ] (PlayZone motif) */
.eyebrow {
  font-family: var(--body); font-weight: 700; font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px;
}
.eyebrow::before { content: "["; color: var(--brand); font-weight: 800; }
.eyebrow::after { content: "]"; color: var(--brand); font-weight: 800; }

/* four-dot Ludo motif */
.dots { display: inline-flex; gap: 5px; vertical-align: middle; }
.dots i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dots i:nth-child(1){ background: var(--tok-red);} .dots i:nth-child(2){ background: var(--tok-green);}
.dots i:nth-child(3){ background: var(--tok-amber);} .dots i:nth-child(4){ background: var(--tok-blue);}

/* ---------- wordmark ---------- */
/* Primary lockup (study 09): RADIANT stacked over the tagline, plain A. */
.wordmark { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.wordmark .name { font-family: var(--display); font-size: 25px; letter-spacing: .02em; color: var(--ink); line-height: .92; }
.wordmark .name .a { color: inherit; }
.wordmark .tag { font-family: var(--body); font-weight: 700; font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); line-height: 1; padding-left: .12em; }

/* ---------- nav ---------- */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.72);
  backdrop-filter: saturate(1.5) blur(18px); -webkit-backdrop-filter: saturate(1.5) blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
  border-bottom: 1px solid transparent; transition: border-color .25s; }
header.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.nl { position: relative; color: var(--ink-soft); font-weight: 600; font-size: 15.5px; padding: 4px 0; transition: color .18s; }
.nav-links a.nl:hover { color: var(--ink); }
.nav-links a.nl::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px; background: var(--brand); border-radius: 2px; transition: right .22s ease; }
.nav-links a.nl:hover::after, .nav-links a.nl.here::after { right: 0; }
.nav-links a.nl.here { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--body); font-size: 16px; font-weight: 700;
  padding: 11px 22px; border-radius: var(--r-btn); border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s, background .18s, border-color .18s, color .18s; }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px var(--brand-soft), 0 0 0 6px var(--brand); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.22); }
.btn-primary:hover { transform: translateY(-2px); background: var(--brand-deep); box-shadow: 0 10px 26px rgba(0,0,0,.30); }
.btn-ghost { background: var(--card); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand-deep); }
.btn-sm { padding: 9px 16px; font-size: 14.5px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 116px 0 112px; }
/* "Radiant" — soft light pooling on the right */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(42% 58% at 90% 22%, rgba(17,17,17,.06), transparent 70%),
    radial-gradient(64% 88% at 86% 54%, rgba(17,17,17,.05), transparent 74%);
}
/* ambient dot field, densest on the right, clear behind the text */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(17,17,17,.6) 1px, transparent 1.6px);
  background-size: 27px 27px; opacity: .06;
  -webkit-mask: radial-gradient(120% 110% at 100% 46%, #000, transparent 56%);
          mask: radial-gradient(120% 110% at 100% 46%, #000, transparent 56%);
}
/* concentric halos + drifting sparks — the light radiating out */
.hero-fx { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 6%, #000 48%);
          mask: linear-gradient(90deg, transparent 6%, #000 48%); }
.hero-fx .halo { position: absolute; top: 50%; right: 5%; border-radius: 50%;
  border: 1px solid rgba(17,17,17,.09); transform: translate(50%, -50%);
  animation: haloPulse 9s ease-in-out infinite; will-change: transform, opacity; }
.hero-fx .h1 { width: 300px; height: 300px; }
.hero-fx .h2 { width: 560px; height: 560px; border-color: rgba(17,17,17,.065); animation-delay: -1.4s; }
.hero-fx .h3 { width: 840px; height: 840px; border-color: rgba(17,17,17,.05); animation-delay: -2.8s; }
.hero-fx .spark { position: absolute; border-radius: 50%; background: rgba(17,17,17,.2);
  animation: sparkFloat 7s ease-in-out infinite; will-change: transform; }
.hero-fx .s1 { width: 7px; height: 7px; top: 25%; right: 21%; }
.hero-fx .s2 { width: 5px; height: 5px; top: 63%; right: 13%; opacity: .7; animation-delay: -1.6s; }
.hero-fx .s3 { width: 9px; height: 9px; top: 43%; right: 31%; opacity: .5; animation-delay: -3.1s; }
.hero-fx .s4 { width: 4px; height: 4px; top: 73%; right: 35%; opacity: .6; animation-delay: -4.6s; }
.hero-fx .s5 { width: 6px; height: 6px; top: 34%; right: 8%; opacity: .55; animation-delay: -2.2s; }
@keyframes haloPulse {
  0%, 100% { transform: translate(50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(50%, -50%) scale(1.05); opacity: .55; }
}
@keyframes sparkFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
/* radiant burst — real SVG rings, rays, dots. Right on desktop, centered on mobile. */
.hero-svg { position: absolute; z-index: 0; pointer-events: none; color: var(--ink);
  top: 50%; right: -3%; transform: translateY(-50%);
  width: clamp(360px, 46vw, 660px); height: auto; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: block; max-width: 62ch; }
.hero h1 { font-size: clamp(3rem, 7.2vw, 5.6rem); letter-spacing: .01em; max-width: 15ch; text-wrap: balance; }
.hero p.lead { max-width: 52ch; }
@media (max-width: 820px) {
  /* the SVG carries the hero art on phones — centered behind the copy, clearly visible */
  .hero-svg { top: auto; bottom: -8%; right: auto; left: 50%; transform: translateX(-50%);
    width: min(560px, 130vw); opacity: .9; }
  .hero-fx { display: none; }
  .hero::after { -webkit-mask: radial-gradient(110% 80% at 50% 100%, #000, transparent 64%);
                 mask: radial-gradient(110% 80% at 50% 100%, #000, transparent 64%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fx .halo, .hero-fx .spark { animation: none; }
}
.hero h1 .lit { color: var(--brand); position: relative; white-space: nowrap; }
.hero p.lead { font-size: clamp(1.1rem, 1.9vw, 1.32rem); color: var(--ink-soft); margin: 24px 0 34px; max-width: 46ch; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-meta { margin-top: 34px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--ink-faint); font-weight: 600; font-size: 14px; }
.hero-meta .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }

/* hero art: real phone screenshot + light radiant bloom */
.hero-art { position: relative; display: grid; place-items: center; }
.bloom { position: absolute; inset: -12% -6%; z-index: 0; filter: blur(46px); opacity: .85; pointer-events: none;
  background:
    radial-gradient(32% 40% at 30% 30%, rgba(20,20,20,.34), transparent 70%),
    radial-gradient(30% 38% at 72% 26%, rgba(90,90,90,.26), transparent 70%),
    radial-gradient(34% 40% at 66% 74%, rgba(40,40,40,.24), transparent 70%),
    radial-gradient(30% 36% at 26% 72%, rgba(120,120,120,.26), transparent 70%);
  animation: floaty 12s ease-in-out infinite alternate; }
@keyframes floaty { from { transform: translateY(-6px) scale(1); } to { transform: translateY(10px) scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .bloom { animation: none; } }
.phone { position: relative; z-index: 1; width: 260px; border-radius: 40px; padding: 9px; background: #151515;
  box-shadow: 0 30px 60px rgba(0,0,0,.28), var(--shadow-glow); transform: rotate(-3deg); transition: transform .4s ease; }
.hero-art:hover .phone { transform: rotate(-1deg) translateY(-4px); }
.phone img { border-radius: 32px; width: 100%; height: auto; display: block; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; }
  .hero { padding: 52px 0 64px; }
}

/* ---------- sections ---------- */
section.block { padding: 88px 0; }

/* Dark bands — literal black sections that alternate with the white ones.
   Scoped variable overrides flip every child (cards, chips, text, accents) automatically. */
section.block.tint, footer.site {
  --ink: #ffffff;
  --ink-soft: #c9c9c9;
  --ink-faint: #8f8f8f;
  --card: #121212;
  --line: #2a2a2a;
  --line-strong: #3a3a3a;
  --brand: #ffffff;
  --brand-deep: #ffffff;
  --brand-soft: #1e1e1e;
  --paper-2: #000000;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,.5), 0 3px 8px rgba(0,0,0,.4);
  background: #000000; color: var(--ink);
}
/* On dark bands the primary button is white — so its label must be black. */
section.block.tint .btn-primary, footer.site .btn-primary { color: #000000; }
.sec-head { max-width: 60ch; margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); }
.sec-head p { color: var(--ink-soft); margin: 18px 0 0; font-size: 1.12rem; }

/* ---------- feature split ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature.flip .feat-media { order: 2; }
.feat-media { position: relative; display: grid; place-items: center; }
.feat-media .bloom { inset: 2% 6%; opacity: .6; }
.feat-copy h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.feat-copy .status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand-deep); padding: 5px 13px; border-radius: 999px; margin-bottom: 18px;
  background: color-mix(in srgb, var(--brand-soft) 55%, transparent);
  backdrop-filter: blur(10px) saturate(1.3); -webkit-backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3); }
.feat-copy .status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@media (prefers-reduced-motion: reduce) { .feat-copy .status .dot { animation: none; } }
.feat-copy > p { color: var(--ink-soft); margin: 16px 0 26px; font-size: 1.08rem; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { font-weight: 600; font-size: 14px; color: var(--ink-soft); border-radius: 999px; padding: 7px 14px;
  background: color-mix(in srgb, var(--card) 45%, transparent);
  backdrop-filter: blur(10px) saturate(1.3); -webkit-backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid color-mix(in srgb, var(--ink) 13%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28); }
@media (max-width: 820px) { .feature, .feature.flip .feat-media { grid-template-columns: 1fr; order: 0; } .feat-media { order: -1; } }

/* ---------- work gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.frame { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 14px; box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .28s; }
.frame:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.frame img { border-radius: 14px; width: 100%; aspect-ratio: 44/92; object-fit: cover; }
.frame .fcap { padding: 14px 8px 6px; }
.frame .fcap .k { font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-deep); }
.frame .fcap h3 { font-family: var(--body); font-weight: 700; font-size: 1.05rem; margin-top: 4px; letter-spacing: 0; }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gallery { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }

/* ---------- slate (games list) ---------- */
.slate { border-top: 1px solid var(--line); }
.title-row { display: grid; grid-template-columns: 64px 1fr auto; gap: 26px; align-items: center; padding: 30px 6px; border-bottom: 1px solid var(--line);
  transition: background .22s, padding-left .22s; }
a.title-row:hover { background: var(--brand-soft); padding-left: 16px; border-radius: 14px; }
.title-row .idx { font-family: var(--display); font-size: 22px; color: var(--brand); }
.title-row .tbody h3 { font-family: var(--display); font-size: 1.7rem; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.title-row .tbody p { color: var(--ink-soft); margin: 6px 0 0; font-size: 1rem; max-width: 56ch; }
.title-row .meta { color: var(--ink-faint); font-weight: 600; font-size: 14px; text-align: right; white-space: nowrap; }
.pill { font-weight: 700; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px;
  color: var(--brand-deep); display: inline-flex; align-items: center; gap: 7px;
  background: color-mix(in srgb, var(--brand-soft) 55%, transparent);
  backdrop-filter: blur(10px) saturate(1.3); -webkit-backdrop-filter: blur(10px) saturate(1.3);
  border: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28); }
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
/* store badges — official Apple + Google Play marks, not yet live */
.stores { margin-top: 18px; }
.stores .soon-tag { display: block; font-family: var(--mono, ui-monospace, monospace); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint); margin-bottom: 10px; }
.badge-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.badge-row .badge { height: 44px; width: auto; display: block; border-radius: 8px; }
.badge-row .badge-gp { height: 52px; }   /* Google's badge carries internal padding — bump to match Apple's optical height */
.title-row.upcoming { opacity: .55; }
@media (max-width: 640px) { .title-row { grid-template-columns: 1fr; gap: 10px; } .title-row .meta { text-align: left; } }

/* ---------- capabilities ---------- */
.caps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cap-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .25s; }
.cap-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cap-card .tok { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; }
.cap-card h3 { font-family: var(--body); font-weight: 800; font-size: 1.4rem; letter-spacing: 0; }
.cap-card > p { color: var(--ink-soft); margin: 12px 0 20px; }
.cap-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.cap-card li { padding: 12px 0; border-top: 1px solid var(--line); font-weight: 600; display: flex; align-items: center; gap: 11px; }
.cap-card li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none; }
.cap-card.a li::before { background: var(--brand); }
.cap-card.b li::before { background: var(--tok-blue); }
@media (max-width: 720px) { .caps { grid-template-columns: 1fr; } }

/* ---------- studio facts ---------- */
.studio { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.studio p { color: var(--ink-soft); margin: 20px 0 0; }
.facts { display: grid; gap: 14px; }
.fact { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow-sm); }
.fact .k { font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.fact .v { font-family: var(--body); font-weight: 700; font-size: 1.12rem; margin-top: 6px; }
@media (max-width: 780px) { .studio { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- CTA band ---------- */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); max-width: 18ch; margin: 0 auto; }
.cta p { color: var(--ink-soft); max-width: 48ch; margin: 18px auto 30px; font-size: 1.1rem; }
.cta .hero-actions { justify-content: center; }
/* contact form (Netlify Forms) */
.contact-form { max-width: 520px; margin: 32px auto 0; text-align: left; display: flex; flex-direction: column; gap: 16px; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .field { display: flex; flex-direction: column; gap: 7px; }
.contact-form label { font-weight: 700; font-size: 13px; letter-spacing: .02em; color: var(--ink-soft); }
.contact-form input, .contact-form textarea {
  font-family: var(--body); font-size: 16px; color: var(--ink); background: var(--card);
  border: 1.5px solid var(--line-strong); border-radius: 12px; padding: 12px 14px; width: 100%;
  transition: border-color .16s, box-shadow .16s; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--ink) 10%, transparent); }
.contact-form button[type="submit"] { align-self: flex-start; margin-top: 4px; }
.cta-note { margin-top: 22px; color: var(--ink-faint); font-weight: 600; font-size: 14px; }
.cta-note a { color: var(--brand-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color .18s; }
.cta-note a:hover { color: var(--brand); }

/* ---------- prose (privacy) ---------- */
.prose { max-width: 74ch; margin: 0 auto; }
.prose h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 10px; }
.prose .updated { color: var(--ink-faint); font-weight: 600; margin: 0 0 40px; }
.prose h2 { font-family: var(--display); font-size: 1.6rem; margin: 40px 0 12px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose a { color: var(--brand-deep); font-weight: 700; }
.prose strong { color: var(--ink); font-weight: 700; }

/* ---------- footer ---------- */
footer.site { border-top: 1px solid var(--line); padding: 52px 0 44px; background: var(--paper-2); }
.foot-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.foot-brand { max-width: 34ch; }
.foot-brand p { color: var(--ink-faint); font-weight: 500; font-size: 14px; margin: 14px 0 0; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h4 { font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 14px; }
.foot-col a { display: block; color: var(--ink-soft); font-weight: 600; font-size: 15px; padding: 5px 0; transition: color .16s; }
.foot-col a:hover { color: var(--brand-deep); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-faint); font-weight: 600; font-size: 13px; }

/* ---------- lockup band (signature) ---------- */
.lockup { padding: 76px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lockup .row { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 3vw, 40px); flex-wrap: wrap; text-align: center; }
.lockup .big { font-family: var(--display); font-size: clamp(2.8rem, 10vw, 8rem); line-height: .9; color: var(--ink); letter-spacing: .01em; }
.lockup .big .a { color: var(--brand); }
.lockup .dash { width: clamp(24px, 5vw, 70px); height: 3px; background: var(--ink); border-radius: 3px; }
.lockup .paren { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: clamp(2.4rem, 8vw, 6rem); color: var(--line-strong); line-height: .8; }
.lockup .paren .txt { font-family: var(--body); font-weight: 600; font-size: clamp(.9rem, 1.6vw, 1.15rem); line-height: 1.3; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .12em; text-align: left; }
.lockup .paren .end { color: var(--brand); }
@media (max-width: 640px) { .lockup .dash { display: none; } }

/* ---------- crop-mark corners (PlayZone tick framing) ---------- */
.cropped { position: relative; }
.cropped .tk { position: absolute; width: 14px; height: 14px; z-index: 3; pointer-events: none; }
.cropped .tk::before, .cropped .tk::after { content: ""; position: absolute; background: var(--brand); }
.cropped .tk::before { width: 100%; height: 2px; } .cropped .tk::after { width: 2px; height: 100%; }
.cropped .tk.tl { top: -6px; left: -6px; } .cropped .tk.tr { top: -6px; right: -6px; }
.cropped .tk.tr::before { right: 0; } .cropped .tk.tr::after { right: 0; }
.cropped .tk.bl { bottom: -6px; left: -6px; } .cropped .tk.bl::before { bottom: 0; } .cropped .tk.bl::after { bottom: 0; }
.cropped .tk.br { bottom: -6px; right: -6px; } .cropped .tk.br::before { bottom: 0; right: 0; } .cropped .tk.br::after { bottom: 0; right: 0; }

/* ---------- stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px 22px; box-shadow: var(--shadow-sm); text-align: center; }
.stat .k { font-weight: 700; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.stat .k::before { content: "[ "; color: var(--brand); } .stat .k::after { content: " ]"; color: var(--brand); }
.stat .v { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); line-height: 1; margin-top: 10px; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
