:root {
  --bg: #08090d;
  --bg-soft: #0d0f15;
  --panel: #12151d;
  --panel-2: #171a24;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f5ef;
  --muted: #aaa9ad;
  --dim: #74757d;
  --gold: #ffd256;
  --coral: #ff8a5b;
  --aqua: #55e0d2;
  --purple: #a98cff;
  --radius: 30px;
  --shell: min(1240px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(92, 64, 175, 0.17), transparent 28rem),
    radial-gradient(circle at 8% 30%, rgba(20, 141, 157, 0.09), transparent 30rem),
    var(--bg);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 70%);
  pointer-events: none;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .022;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }
figure, h1, h2, h3, p { margin: 0; }
::selection { color: #111; background: var(--gold); }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 15;
  width: var(--shell);
  height: 64px;
  padding: 0 10px 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, top .35s ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(12, 14, 20, .8);
  border-color: var(--line);
  box-shadow: 0 16px 55px rgba(0,0,0,.35);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 760; letter-spacing: -.035em; }
.brand-mark { position: relative; width: 31px; height: 31px; display: inline-block; }
.brand-mark i {
  position: absolute; inset: 0 7px 7px 0; z-index: 2; display: grid; place-items: center;
  border-radius: 8px; color: #11141a; background: linear-gradient(145deg, #ffe06d, #ff9e52);
  font-size: 14px; font-style: normal; font-weight: 900; box-shadow: inset 0 1px rgba(255,255,255,.6);
}
.brand-mark b, .brand-mark em { position: absolute; bottom: 0; height: 12px; border-radius: 4px; }
.brand-mark b { left: 2px; width: 13px; background: #a259ee; transform: rotate(-5deg); }
.brand-mark em { right: 0; width: 15px; background: #48d8c8; transform: rotate(5deg); }

.main-nav { display: flex; align-items: center; gap: 32px; color: #c2c1c4; font-size: 13px; font-weight: 650; }
.main-nav a, .site-footer nav a { transition: color .2s ease; }
.main-nav a:hover, .site-footer nav a:hover { color: #fff; }
.header-cta {
  min-height: 43px; padding: 0 18px; display: inline-flex; align-items: center; gap: 7px;
  color: #101115; background: var(--text); border-radius: 13px; font-size: 13px; font-weight: 760;
  box-shadow: 0 5px 20px rgba(255,255,255,.08); transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,255,255,.13); }

.hero {
  position: relative;
  width: var(--shell);
  min-height: 860px;
  margin: 0 auto;
  padding: 170px 0 90px;
  display: grid;
  grid-template-columns: minmax(390px, .84fr) minmax(520px, 1.16fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}

.hero::after {
  content: ""; position: absolute; left: -10%; bottom: 0; width: 120%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13) 22%, rgba(255,255,255,.13) 78%, transparent);
}

.hero-copy { position: relative; z-index: 3; padding-bottom: 10px; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #d4d2ce; font-size: 11px; font-weight: 770; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: var(--gold); box-shadow: 0 0 10px rgba(255,210,86,.7); }

.hero h1 {
  margin-top: 28px;
  font-size: clamp(58px, 6.1vw, 92px);
  line-height: .94;
  letter-spacing: -.07em;
  font-weight: 760;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff2ba, #ffb168 45%, #b699ff 95%);
  -webkit-background-clip: text; background-clip: text;
}
.hero-lede { max-width: 545px; margin-top: 29px; color: var(--muted); font-size: 17px; line-height: 1.72; letter-spacing: -.01em; }
.hero-actions { margin-top: 36px; display: flex; gap: 26px; align-items: center; }
.app-store-button {
  min-width: 178px; min-height: 61px; padding: 9px 19px 9px 15px; display: inline-flex; align-items: center; gap: 12px;
  color: #111217; background: #f8f6f0; border: 1px solid rgba(255,255,255,.8); border-radius: 17px;
  box-shadow: 0 14px 40px rgba(0,0,0,.24), inset 0 1px rgba(255,255,255,.9); transition: transform .25s ease, box-shadow .25s ease;
}
.app-store-button:hover { transform: translateY(-3px); box-shadow: 0 19px 48px rgba(0,0,0,.34), 0 0 24px rgba(255,210,86,.09); }
.app-store-button .apple { width: 30px; font-size: 32px; line-height: 1; }
.app-store-button span:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.app-store-button small { font-size: 9px; line-height: 1.1; letter-spacing: .02em; }
.app-store-button strong { font-size: 20px; line-height: 1.05; letter-spacing: -.03em; }
.text-link { color: #d0cfd2; font-size: 13px; font-weight: 680; }
.text-link span { display: inline-block; margin-left: 4px; color: var(--gold); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, 3px); }
.trust-row { margin-top: 35px; display: flex; gap: 23px; color: #8d8c92; font-size: 11px; font-weight: 650; }
.trust-row span::before { content: ""; display: inline-block; width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: #6ee0b4; box-shadow: 0 0 9px rgba(110,224,180,.7); vertical-align: 1px; }

.hero-visual { position: relative; height: 685px; isolation: isolate; }
.hero-visual::before {
  content: ""; position: absolute; inset: 6% 4% 7%; z-index: -2; border-radius: 50%;
  background: radial-gradient(circle at 47% 38%, rgba(143,119,255,.32), rgba(41,185,208,.12) 35%, transparent 68%);
  filter: blur(18px);
}
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: rotate(-14deg); }
.orbit-one { inset: 11% 2% 3%; }
.orbit-two { inset: 22% 11% 13%; border-color: rgba(255,210,86,.13); }
.phone {
  position: absolute; overflow: hidden; margin: 0; padding: 5px;
  aspect-ratio: 1 / 2;
  border: 1px solid rgba(255,255,255,.18); border-radius: 42px; background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.03));
  box-shadow: 0 40px 90px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.18);
}
.phone::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255,255,255,.09); border-radius: 36px; pointer-events: none; }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 36px; }
.phone-main { left: 50%; top: 50%; z-index: 3; width: 43%; height: auto; transform: translate(-50%, -50%) rotate(1.5deg); animation: phoneFloat 7s ease-in-out infinite; }
.phone-left { left: 4%; top: 50%; z-index: 1; width: 34%; height: auto; transform: translateY(-50%) rotate(-9deg); opacity: .76; filter: saturate(.88) brightness(.76); }
.phone-right { right: 2%; top: 50%; z-index: 2; width: 35%; height: auto; transform: translateY(-50%) rotate(8.5deg); opacity: .82; filter: saturate(.95) brightness(.83); }
.phone-main figcaption {
  position: absolute; left: 17px; right: 17px; bottom: 17px; z-index: 2; padding: 14px 15px; display: flex; align-items: center; justify-content: space-between;
  color: #fff; background: rgba(7,8,12,.62); border: 1px solid rgba(255,255,255,.17); border-radius: 15px; -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.phone-main figcaption span { font-size: 13px; font-weight: 750; }
.phone-main figcaption b { color: #c5b6ff; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.visual-label { position: absolute; z-index: 5; padding: 10px 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: #e8e6e2; background: rgba(16,18,25,.73); box-shadow: 0 10px 30px rgba(0,0,0,.28); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); font-size: 10px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.label-one { left: 0; top: 35%; }
.label-two { right: 0; bottom: 21%; }
@keyframes phoneFloat { 0%,100% { transform: translate(-50%, -50%) rotate(1.5deg); } 50% { transform: translate(-50%, calc(-50% - 11px)) rotate(.5deg); } }

.ticker { overflow: hidden; padding: 23px 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.017); }
.ticker div { width: max-content; display: flex; align-items: center; gap: 32px; color: #d2d0cd; font-size: 12px; font-weight: 760; letter-spacing: .2em; text-transform: uppercase; animation: tickerMove 28s linear infinite; }
.ticker i { color: var(--gold); font-size: 6px; font-style: normal; }
@keyframes tickerMove { to { transform: translateX(-33%); } }

.section-shell { width: var(--shell); margin-inline: auto; }
.rule-section { padding-block: 140px; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 30px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .worlds-copy h2, .details-panel h2, .final-cta h2, .utility-hero h1 {
  font-size: clamp(46px, 5.2vw, 76px); line-height: 1.02; letter-spacing: -.06em; font-weight: 730;
}
.section-heading > p { justify-self: end; max-width: 350px; padding-bottom: 7px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.section-heading.center { display: block; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center h2 { margin-top: 24px; }

.rule-journey { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.018); }
.rule-step { position: relative; min-height: 440px; padding: 28px; border-right: 1px solid var(--line); overflow: hidden; }
.rule-step:last-child { border-right: 0; }
.rule-step-accent { background: radial-gradient(circle at 50% 42%, rgba(255,151,77,.15), transparent 45%), linear-gradient(150deg, rgba(255,210,86,.05), transparent); }
.step-meta { display: flex; align-items: center; justify-content: space-between; }
.step-meta b { color: var(--gold); font-size: 11px; }
.step-meta span { color: var(--dim); font-size: 10px; font-weight: 760; letter-spacing: .15em; text-transform: uppercase; }
.rule-step h3 { margin-top: 32px; font-size: 22px; letter-spacing: -.035em; }
.rule-step > p { max-width: 315px; margin-top: 11px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.mini-board { position: relative; height: 212px; margin-top: 25px; border-radius: 20px; background: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 45px 45px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.mini-column { position: absolute; bottom: 15px; left: 50%; display: flex; flex-direction: column-reverse; transform: translateX(-50%); }
.mini-column i, .match-row i, .match-row b, .falling-tile { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; background: linear-gradient(145deg, #252a37, #171a22); box-shadow: inset 0 1px rgba(255,255,255,.12), 0 8px 16px rgba(0,0,0,.2); }
.mini-column i + i { margin-bottom: 4px; }
.falling-tile { position: absolute; top: 18px; left: calc(50% - 21px); color: #14151a; background: linear-gradient(145deg, #ffe274, #ffae5d); border: 0; font-size: 19px; font-weight: 900; animation: falling 2.4s cubic-bezier(.35,.65,.25,1) infinite; }
@keyframes falling { 0%,18% { transform: translateY(0); } 68%,100% { transform: translateY(36px); } }
.match-row { height: 237px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.match-row b { color: #16171c; background: linear-gradient(145deg, #80ecda, #3fc9d5); border: 0; font-size: 20px; }
.match-row i { animation: matchPulse 2.4s ease-in-out infinite; }
.match-row i:nth-child(2) { animation-delay: .09s; }.match-row i:nth-child(3) { animation-delay: .18s; }.match-row i:nth-child(4) { animation-delay: .27s; }
@keyframes matchPulse { 0%,35%,100% { border-color: rgba(255,255,255,.16); } 55% { border-color: var(--aqua); box-shadow: 0 0 20px rgba(85,224,210,.28); } }
.cascade-demo { position: relative; height: 237px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cascade-demo::before, .cascade-demo::after { content: ""; position: absolute; border: 1px solid rgba(255,210,86,.2); border-radius: 50%; animation: ring 2.4s ease-out infinite; }
.cascade-demo::before { width: 90px; height: 90px; }.cascade-demo::after { width: 150px; height: 150px; animation-delay: .3s; }
.cascade-demo strong { position: relative; z-index: 2; color: #fff2bb; font-size: 62px; line-height: .9; letter-spacing: -.07em; text-shadow: 0 0 30px rgba(255,177,74,.38); }
.cascade-demo span { position: relative; z-index: 2; margin-top: 9px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .28em; }
.spark { position: absolute; z-index: 3; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: spark 1.8s ease-in-out infinite; }
.s1 { left: 28%; top: 30%; }.s2 { right: 24%; top: 41%; animation-delay: .45s; background: var(--coral); }.s3 { left: 38%; bottom: 20%; animation-delay: .8s; background: var(--aqua); }
@keyframes ring { 0% { transform: scale(.65); opacity: 0; } 25% { opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes spark { 0%,100% { transform: scale(.5); opacity: .25; } 50% { transform: scale(1.6); opacity: 1; } }

.worlds-section {
  min-height: 920px; padding: 130px max(36px, calc((100vw - 1240px)/2)); display: grid; grid-template-columns: minmax(420px, .88fr) minmax(500px, 1.12fr); gap: clamp(50px, 7vw, 120px); align-items: center;
  border-block: 1px solid var(--line); background: radial-gradient(circle at 75% 50%, color-mix(in srgb, var(--coral) 11%, transparent), transparent 32rem), #0b0d12;
}
.worlds-copy h2 { margin-top: 25px; font-size: clamp(44px, 4.6vw, 68px); }
.worlds-copy h2 em { color: var(--gold); font-style: normal; }
.worlds-intro { max-width: 510px; margin-top: 24px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.world-tabs { margin-top: 47px; border-top: 1px solid var(--line); }
.world-tab {
  width: 100%; min-height: 55px; padding: 0 5px; display: grid; grid-template-columns: 38px 1fr 22px; align-items: center;
  border: 0; border-bottom: 1px solid var(--line); color: #7d7e85; background: transparent; text-align: left; font-size: 15px; font-weight: 680; cursor: pointer; transition: color .25s ease, padding .25s ease;
}
.world-tab span { font-size: 9px; font-weight: 760; letter-spacing: .1em; }
.world-tab::after { content: "↗"; opacity: 0; transform: translate(-8px,8px); transition: opacity .25s ease, transform .25s ease; }
.world-tab:hover, .world-tab.is-active { padding-left: 12px; color: #fff; }
.world-tab.is-active::after { opacity: 1; transform: none; color: var(--gold); }
.world-stage { --world-accent: #ff8754; position: relative; height: 730px; isolation: isolate; }
.world-glow { position: absolute; inset: 8% 8% 4%; z-index: -2; border-radius: 50%; background: color-mix(in srgb, var(--world-accent) 28%, transparent); filter: blur(75px); transition: background .6s ease; }
.world-stage::before { content: ""; position: absolute; inset: 8% 0 2%; z-index: -1; border: 1px solid color-mix(in srgb, var(--world-accent) 25%, transparent); border-radius: 50%; transform: rotate(-11deg); transition: border-color .6s ease; }
.world-phone { position: absolute; top: 50%; left: 50%; width: min(56%, 340px); height: auto; aspect-ratio: 1 / 2; padding: 5px; overflow: hidden; border: 1px solid rgba(255,255,255,.19); border-radius: 43px; background: rgba(255,255,255,.08); box-shadow: 0 45px 100px rgba(0,0,0,.55); transform: translate(-50%, -50%) rotate(2deg); }
.world-phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 37px; opacity: 1; transform: scale(1); transition: opacity .2s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
.world-stage.is-changing .world-phone img { opacity: 0; transform: scale(.985); }
.world-caption { position: absolute; right: 0; bottom: 7%; z-index: 3; width: 280px; padding: 22px; border: 1px solid var(--line-strong); border-radius: 20px; background: rgba(13,15,21,.78); box-shadow: 0 20px 50px rgba(0,0,0,.4); -webkit-backdrop-filter: blur(25px); backdrop-filter: blur(25px); }
.world-caption span { color: var(--world-accent); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; transition: color .6s ease; }
.world-caption strong { margin-top: 9px; display: block; font-size: 18px; letter-spacing: -.025em; }
.world-caption p { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.6; }

.modes-section { padding-block: 145px; }
.modes-layout { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mode-card { min-height: 272px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.mode-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)); }
.mode-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; color: #17191e; background: linear-gradient(145deg, #79e8dc, #50c6d5); font-size: 19px; font-weight: 850; box-shadow: 0 10px 30px rgba(62,207,200,.12); }
.mode-card:nth-child(2) .mode-icon { background: linear-gradient(145deg, #ffe37c, #ffaf5e); font-size: 13px; }
.mode-card:nth-child(3) .mode-icon { background: linear-gradient(145deg, #bda7ff, #8571f5); font-size: 27px; }
.mode-card:nth-child(4) .mode-icon { background: linear-gradient(145deg, #ffb2c7, #f37aa5); font-size: 30px; }
.mode-card > span { margin-top: 26px; display: block; color: var(--dim); font-size: 9px; font-weight: 780; letter-spacing: .15em; text-transform: uppercase; }
.mode-card h3 { margin-top: 8px; font-size: 21px; letter-spacing: -.035em; }
.mode-card p { margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.preview-card { position: relative; min-height: 558px; padding: 36px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: radial-gradient(circle at 74% 35%, rgba(123,99,238,.34), transparent 38%), linear-gradient(145deg, #181526, #0d1118 70%); }
.preview-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,10,15,.3), transparent); pointer-events: none; }
.preview-copy { position: relative; z-index: 3; max-width: 290px; }
.preview-copy > span { color: #b6a5ff; font-size: 9px; font-weight: 780; letter-spacing: .16em; text-transform: uppercase; }
.preview-copy h3 { margin-top: 11px; font-size: 36px; letter-spacing: -.05em; }
.preview-copy p { margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.video-phone { position: absolute; right: 7%; top: 50%; width: min(36%, 250px); height: auto; aspect-ratio: 1 / 2; padding: 4px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 31px; background: rgba(255,255,255,.09); box-shadow: 0 30px 75px rgba(0,0,0,.55); transform: translateY(-50%) rotate(7deg); }
.video-phone video { width: 100%; height: 100%; object-fit: cover; border-radius: 27px; }

.details-section { padding-bottom: 145px; }
.details-panel { padding: clamp(38px, 5vw, 68px); display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); }
.details-panel h2 { margin-top: 25px; font-size: clamp(39px, 4vw, 57px); }
.detail-list { border-top: 1px solid var(--line); }
.detail-list article { padding: 22px 0; display: grid; grid-template-columns: 42px 1fr; border-bottom: 1px solid var(--line); }
.detail-list b { grid-row: 1 / 3; color: var(--gold); font-size: 10px; padding-top: 4px; }
.detail-list h3 { font-size: 16px; letter-spacing: -.02em; }
.detail-list p { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.55; }

.final-cta { position: relative; min-height: 570px; margin-bottom: 45px; padding: 90px 30px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.16); border-radius: 38px; text-align: center; background: linear-gradient(145deg, #f7d260 0%, #ff9f66 48%, #a98cff 100%); color: #111217; isolation: isolate; }
.final-cta::before { content: ""; position: absolute; inset: 1px; z-index: -1; border-radius: 37px; background: radial-gradient(circle at 50% 140%, rgba(255,255,255,.5), transparent 55%), linear-gradient(145deg, rgba(255,255,255,.23), transparent); }
.cta-glow { position: absolute; inset: auto 12% -60% 12%; height: 100%; z-index: -2; background: #fff; filter: blur(80px); opacity: .4; }
.final-cta > p { font-size: 11px; font-weight: 780; letter-spacing: .16em; text-transform: uppercase; }
.final-cta h2 { margin-top: 20px; font-size: clamp(54px, 7vw, 92px); }
.final-cta h2 span { color: rgba(17,18,23,.55); }
.final-cta .app-store-button { margin-top: 35px; color: #f8f6f0; background: #111217; border-color: #111217; box-shadow: 0 18px 45px rgba(37,22,19,.24); }
.cta-note { margin-top: 16px; color: rgba(17,18,23,.62); font-size: 10px; font-weight: 680; }
.cta-tile { position: absolute; width: 88px; height: 88px; display: grid; place-items: center; border: 1px solid rgba(17,18,23,.12); border-radius: 23px; color: rgba(17,18,23,.7); background: rgba(255,255,255,.22); box-shadow: inset 0 1px rgba(255,255,255,.4), 0 20px 40px rgba(86,55,45,.12); font-size: 36px; font-weight: 850; }
.tile-seven { left: 8%; top: 16%; transform: rotate(-12deg); animation: tileBob 7s ease-in-out infinite; }
.tile-three { right: 8%; bottom: 15%; transform: rotate(9deg); animation: tileBob 8s ease-in-out infinite reverse; }
@keyframes tileBob { 50% { transform: translateY(-13px) rotate(-5deg); } }

.site-footer { width: var(--shell); margin: 0 auto; padding: 38px 0 45px; display: grid; grid-template-columns: 1fr auto; gap: 14px 30px; align-items: center; color: var(--muted); }
.footer-brand { color: var(--text); }
.site-footer > p { grid-column: 1; font-size: 12px; }
.site-footer nav { grid-column: 2; grid-row: 1; display: flex; gap: 24px; font-size: 12px; }
.site-footer > small { grid-column: 2; grid-row: 2; color: #67686e; font-size: 10px; text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.65,.2,1), transform .8s cubic-bezier(.2,.65,.2,1); }
.reveal[data-delay="1"] { transition-delay: .12s; }.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Support, privacy, and link utility pages */
.utility-body { min-height: 100vh; }
.utility-main { width: min(940px, calc(100vw - 48px)); margin: 0 auto; padding: 160px 0 110px; }
.utility-hero { padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.utility-hero .eyebrow { margin-bottom: 22px; }
.utility-hero p { max-width: 690px; margin-top: 22px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.utility-content { padding-top: 56px; display: grid; gap: 18px; }
.utility-card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012)); }
.utility-card h2 { font-size: 21px; letter-spacing: -.025em; }
.utility-card h3 { margin-top: 22px; font-size: 15px; }
.utility-card p, .utility-card li { color: var(--muted); font-size: 14px; line-height: 1.72; }
.utility-card p { margin-top: 10px; }
.utility-card ul { margin: 12px 0 0; padding-left: 20px; }
.utility-card a { color: #f0c85b; text-decoration: underline; text-decoration-color: rgba(240,200,91,.35); text-underline-offset: 3px; }
.utility-callout { padding: 27px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid rgba(255,210,86,.25); border-radius: 22px; background: rgba(255,210,86,.055); }
.utility-callout p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.utility-callout > a,
.utility-callout button { flex: 0 0 auto; padding: 13px 17px; border: 0; border-radius: 12px; color: #111217; background: var(--gold); font-size: 12px; font-weight: 800; cursor: pointer; }
.utility-callout button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.utility-callout .contact-address { display: inline-block; margin-top: 5px; color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.utility-callout:target { scroll-margin-top: 120px; box-shadow: 0 0 0 1px rgba(255,210,86,.3), 0 16px 60px rgba(255,210,86,.08); }
.legal-section { margin-top: 38px; }
.legal-section h2 { margin-bottom: 10px; font-size: 21px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal-section p + p { margin-top: 11px; }
.legal-section ul { padding-left: 20px; }
.updated { margin-top: 48px; color: var(--dim); font-size: 12px; }

.race-body { min-height: 100vh; background: radial-gradient(circle at 50% 32%, rgba(137,111,255,.22), transparent 24rem), radial-gradient(circle at 25% 75%, rgba(255,179,77,.08), transparent 20rem), var(--bg); }
.race-main { width: min(620px, calc(100vw - 32px)); min-height: 100vh; margin: 0 auto; padding: 42px 0 60px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.race-brand { margin-bottom: 30px; }
.race-card { position: relative; width: 100%; padding: 54px clamp(26px, 7vw, 58px) 42px; overflow: hidden; display: flex; flex-direction: column; align-items: center; border: 1px solid var(--line-strong); border-radius: 34px; background: linear-gradient(150deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); box-shadow: 0 35px 100px rgba(0,0,0,.42); text-align: center; }
.race-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 15%, rgba(255,210,86,.1), transparent 37%); }
.race-emblem { position: relative; width: 106px; height: 106px; margin-bottom: 31px; }
.race-emblem span { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 28px; color: #15161b; background: linear-gradient(145deg, #ffe273, #ffad5e); box-shadow: 0 25px 50px rgba(255,150,79,.16), inset 0 1px rgba(255,255,255,.7); font-size: 47px; font-weight: 900; transform: rotate(-3deg); }
.race-emblem i, .race-emblem b { position: absolute; bottom: -9px; width: 49px; height: 31px; border-radius: 10px; }
.race-emblem i { left: -13px; background: #a782ff; transform: rotate(-15deg); }.race-emblem b { right: -13px; background: #52dacb; transform: rotate(15deg); }
.race-card .eyebrow { justify-content: center; }
.race-card h1 { margin-top: 20px; font-size: clamp(38px, 8vw, 58px); line-height: 1; letter-spacing: -.06em; }
.race-card #detail { margin-top: 21px; color: var(--muted); font-size: 16px; line-height: 1.68; }
.race-note { margin-top: 18px; color: #888991; font-size: 11px; font-weight: 700; }
.race-button { margin-top: 30px; }
.race-hint { margin-top: 31px; padding-top: 25px; border-top: 1px solid var(--line); color: #7e7f86; font-size: 12px; line-height: 1.6; }
.race-home { margin-top: 24px; color: var(--muted); font-size: 12px; font-weight: 700; }
.race-home span { color: var(--gold); }

@media (max-width: 1060px) {
  :root { --shell: min(100% - 48px, 940px); }
  .hero { min-height: auto; padding-top: 145px; grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero h1 { font-size: clamp(53px, 7.2vw, 72px); }
  .hero-visual { height: 590px; }
  .phone-main { width: 49%; }.phone-left { left: 0; width: 38%; }.phone-right { right: 0; width: 38%; }
  .worlds-section { padding-inline: 24px; grid-template-columns: .9fr 1.1fr; gap: 35px; }
  .world-stage { height: 650px; }.world-phone { width: min(56%, 315px); }.world-caption { width: 235px; }
  .modes-layout { grid-template-columns: 1.1fr .9fr; }
  .preview-card { padding: 25px; }.video-phone { width: 43%; right: 3%; }
  .details-panel { gap: 40px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 32px); }
  .site-header { top: 8px; height: 58px; padding-left: 14px; }
  .main-nav { display: none; }.header-cta { min-height: 39px; padding-inline: 14px; }
  .hero { padding: 125px 0 80px; grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero h1 { font-size: clamp(55px, 12vw, 82px); }
  .hero-lede { margin-inline: auto; }
  .hero-visual { height: 660px; margin-top: 36px; }
  .phone-main { width: min(47%, 290px); }.phone-left { left: 4%; width: min(35%, 215px); }.phone-right { right: 3%; width: min(36%, 220px); }
  .section-heading { grid-template-columns: 1fr; }.section-heading > p { justify-self: start; }
  .rule-journey { grid-template-columns: 1fr; }.rule-step { min-height: 380px; border-right: 0; border-bottom: 1px solid var(--line); }.rule-step:last-child { border-bottom: 0; }
  .worlds-section { padding-block: 105px; grid-template-columns: 1fr; }
  .world-stage { height: 690px; }.world-phone { width: min(54%, 300px); }.world-caption { right: 8%; }
  .modes-layout { grid-template-columns: 1fr; }.preview-card { min-height: 560px; }.video-phone { width: min(35%, 210px); right: 9%; }
  .details-panel { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }.site-footer > p, .site-footer nav, .site-footer > small { grid-column: 1; grid-row: auto; text-align: center; }
}

@media (max-width: 560px) {
  .brand { font-size: 16px; }.brand-mark { width: 27px; height: 27px; }.header-cta { font-size: 11px; }
  .hero { padding-top: 110px; }.hero h1 { margin-top: 22px; font-size: clamp(47px, 14.5vw, 67px); }
  .hero-lede { font-size: 15px; line-height: 1.65; }.hero-actions { flex-direction: column; gap: 17px; }.trust-row { flex-wrap: wrap; gap: 10px 17px; }
  .hero-visual { width: calc(100% + 32px); height: 520px; margin-inline: -16px; overflow: clip; }.phone { border-radius: 29px; }.phone img { border-radius: 24px; }.phone::after { border-radius: 24px; }
  .phone-main { width: 51%; }.phone-left { left: 8%; top: 50%; width: 36%; }.phone-right { right: 8%; top: 50%; width: 36%; }.hero-orbit { display: none; }
  .phone-main figcaption { display: none; }.visual-label { font-size: 8px; }.label-one { top: 30%; }.label-two { bottom: 16%; }
  .rule-section, .modes-section { padding-block: 95px; }.section-heading h2, .worlds-copy h2, .details-panel h2, .utility-hero h1 { font-size: 42px; }
  .rule-step { padding: 22px; }.match-row { transform: scale(.87); }
  .worlds-section { padding-inline: 16px; }.worlds-copy h2 br { display: none; }.world-tabs { margin-top: 35px; }
  .world-stage { height: 590px; }.world-phone { width: 62%; border-radius: 31px; }.world-phone img { border-radius: 26px; }.world-caption { right: 0; bottom: 4%; width: 215px; padding: 17px; }
  .mode-grid { grid-template-columns: 1fr; }.mode-card { min-height: 240px; }.preview-card { min-height: 510px; }.preview-copy { max-width: 220px; }.video-phone { width: 47%; right: -3%; transform: translateY(-50%) rotate(6deg); }
  .details-panel { padding: 28px 22px; }.detail-list article { grid-template-columns: 35px 1fr; }
  .final-cta { min-height: 520px; padding-inline: 20px; border-radius: 29px; }.final-cta h2 { font-size: 51px; }.cta-tile { width: 61px; height: 61px; border-radius: 17px; font-size: 26px; }.tile-seven { left: 4%; top: 7%; }.tile-three { right: 4%; bottom: 8%; }
  .utility-main { width: calc(100vw - 32px); padding-top: 120px; }.utility-callout { align-items: flex-start; flex-direction: column; }
}

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