:root {
  --bg: #070910;
  --bg-soft: #0d101a;
  --panel: rgba(16, 20, 32, .76);
  --panel-solid: #111522;
  --text: #f6f8ff;
  --muted: #aab1c6;
  --line: rgba(255,255,255,.10);
  --blue: #3158ff;
  --blue-2: #6a86ff;
  --orange: #ff7214;
  --green: #31ff20;
  --cyan: #1fe4e8;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 30px 90px rgba(0,0,0,.45);
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--blue); color: white; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.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: fixed; left: 16px; top: -100px; z-index: 9999; padding: 10px 16px; border-radius: 10px; background: white; color: black; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.site-header.is-scrolled { background: rgba(7,9,16,.84); border-color: var(--line); backdrop-filter: blur(18px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { position: relative; width: 40px; height: 40px; display: grid; place-items: center; }
.brand-mark::before, .brand-mark::after, .brand-mark i, .brand-mark b { content: ""; position: absolute; border-radius: 50%; border: 3px solid var(--blue); }
.brand-mark::before { inset: 3px; }
.brand-mark::after { inset: 10px; border-color: var(--orange); border-width: 2px; }
.brand-mark i { inset: 16px; border-color: var(--green); border-width: 2px; }
.brand-mark b { width: 8px; height: 8px; background: white; border: 0; box-shadow: 0 0 16px white; }
.brand-copy { display: flex; flex-direction: column; line-height: .92; letter-spacing: .09em; }
.brand-copy strong { font-size: 16px; }
.brand-copy em { color: var(--orange); font-style: normal; font-size: 12px; font-weight: 800; margin-top: 5px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { color: #dfe4f4; font-size: 14px; font-weight: 700; transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: white; }
.main-nav .nav-cta { padding: 11px 17px; border-radius: 999px; background: var(--blue); color: white; box-shadow: 0 10px 30px rgba(49,88,255,.25); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 14px; padding: 0; cursor: pointer; place-items: center; }
.menu-toggle span:not(.sr-only) { position: absolute; width: 20px; height: 2px; background: white; border-radius: 3px; transition: transform .2s, opacity .2s; }
.menu-toggle span:nth-child(2) { transform: translateY(-6px); }
.menu-toggle span:nth-child(4) { transform: translateY(6px); }
.menu-toggle.is-open span:nth-child(2) { transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(3) { opacity: 0; }
.menu-toggle.is-open span:nth-child(4) { transform: rotate(-45deg); }

.hero { position: relative; min-height: 920px; display: grid; align-items: center; overflow: hidden; padding: 138px 0 90px; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 240px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .52; transform: scale(1.04); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 75% 42%, rgba(49,88,255,.22), transparent 32%), linear-gradient(90deg, rgba(7,9,16,.98) 0%, rgba(7,9,16,.90) 42%, rgba(7,9,16,.54) 72%, rgba(7,9,16,.84) 100%); }
.hero-grid-overlay { position: absolute; inset: 0; z-index: -1; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-2); font-size: 12px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px rgba(49,255,32,.8); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(54px, 6.2vw, 92px); line-height: .95; letter-spacing: -.055em; margin: 23px 0 28px; max-width: 740px; }
h1 span { display: block; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.82); text-shadow: 0 0 40px rgba(49,88,255,.22); }
.hero-copy > p { max-width: 640px; color: #c5cadd; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 12px; }
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 24px; border: 1px solid transparent; border-radius: 16px; background: linear-gradient(135deg, var(--blue), #2445d9); color: white; font-weight: 900; box-shadow: 0 16px 40px rgba(49,88,255,.28); transition: transform .2s, box-shadow .2s, border-color .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(49,88,255,.34); }
.button-ghost { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.16); box-shadow: none; backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: rgba(255,255,255,.34); box-shadow: none; }
.button-small { min-height: 44px; padding-inline: 16px; border-radius: 12px; font-size: 13px; }
.play-button { justify-content: flex-start; min-width: 190px; }
.play-button small { display: block; font-size: 10px; line-height: 1; opacity: .72; letter-spacing: .08em; text-transform: uppercase; }
.play-icon { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 15px solid white; filter: drop-shadow(0 0 8px rgba(255,255,255,.45)); }
.microcopy { color: #7f879d !important; font-size: 12px !important; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; max-width: 620px; }
.hero-stats div { padding: 16px 16px 14px; border: 1px solid var(--line); border-radius: 15px; background: rgba(8,10,17,.46); backdrop-filter: blur(8px); }
.hero-stats strong { display: block; font-size: 24px; line-height: 1; color: white; }
.hero-stats span { display: block; margin-top: 8px; color: #8e96ab; font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: .06em; }
.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.screen-card { position: relative; width: min(100%, 680px); aspect-ratio: 1.58; border-radius: 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.19); background: #0a0c13; box-shadow: 0 55px 100px rgba(0,0,0,.62), 0 0 90px rgba(49,88,255,.18); transform: perspective(1200px) rotateY(-8deg) rotateX(3deg); }
.screen-card::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 8px rgba(0,0,0,.24), inset 0 0 90px rgba(0,0,0,.35); pointer-events: none; }
.screen-card picture, .screen-card img { width: 100%; height: 100%; }
.screen-card img { object-fit: cover; }
.screen-hud { position: absolute; z-index: 2; inset: 18px 18px auto; display: flex; justify-content: space-between; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .1em; text-shadow: 0 2px 8px black; }
.screen-hud strong { color: var(--green); }
.visual-orbit { position: absolute; border: 2px solid rgba(49,88,255,.48); border-radius: 50%; box-shadow: 0 0 50px rgba(49,88,255,.16); animation: spin 20s linear infinite; }
.visual-orbit::before { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 22px var(--orange); }
.orbit-one { width: 620px; height: 620px; }
.orbit-one::before { top: 38px; left: 110px; }
.orbit-two { width: 500px; height: 500px; border-color: rgba(255,114,20,.30); animation-direction: reverse; animation-duration: 13s; }
.orbit-two::before { right: 58px; bottom: 56px; background: var(--green); box-shadow: 0 0 22px var(--green); }
.floating-tag { position: absolute; z-index: 5; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); font-size: 10px; font-weight: 900; letter-spacing: .13em; box-shadow: var(--shadow); }
.tag-blue { left: 0; top: 120px; background: rgba(49,88,255,.22); color: #cbd4ff; }
.tag-orange { right: 0; bottom: 120px; background: rgba(255,114,20,.19); color: #ffd2b4; }
@keyframes spin { to { transform: rotate(360deg); } }

.section { position: relative; padding: 120px 0; }
.section h2 { margin: 12px 0 0; font-size: clamp(38px, 4.5vw, 64px); line-height: 1.04; letter-spacing: -.04em; }
.split-heading, .gallery-heading { display: grid; grid-template-columns: 1.05fr .75fr; gap: 90px; align-items: end; margin-bottom: 48px; }
.split-heading > p, .gallery-heading > p { color: var(--muted); margin-bottom: 3px; font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 350px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); }
.feature-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -90px; bottom: -110px; border-radius: 50%; background: radial-gradient(circle, rgba(49,88,255,.24), transparent 67%); }
.feature-number { color: #5f6679; font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .12em; }
.feature-icon { position: relative; width: 104px; height: 104px; margin: 36px 0 38px; }
.ring-icon { border-radius: 50%; border: 10px solid var(--blue); box-shadow: inset 0 0 0 10px #121622, inset 0 0 0 18px var(--orange), 0 0 32px rgba(49,88,255,.2); }
.ring-icon::after { content: ""; position: absolute; inset: 29px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.swipe-icon::before { content: ""; position: absolute; width: 74px; height: 74px; left: 4px; top: 10px; border: 4px solid var(--cyan); border-right-color: transparent; border-radius: 50%; transform: rotate(-22deg); }
.swipe-icon::after { content: "↗"; position: absolute; right: 0; top: -8px; color: white; font-size: 70px; font-weight: 200; }
.speed-icon::before { content: ""; position: absolute; inset: 14px; border: 5px solid rgba(255,255,255,.2); border-radius: 50%; }
.speed-icon::after { content: ""; position: absolute; width: 5px; height: 48px; left: 50px; top: 14px; border-radius: 6px; background: linear-gradient(var(--orange), white); transform-origin: bottom center; transform: rotate(44deg); box-shadow: 0 0 18px var(--orange); }
.feature-card h3 { font-size: 24px; margin-bottom: 12px; }
.feature-card p { color: var(--muted); margin: 0; }

.mechanics { background: linear-gradient(180deg, transparent, rgba(49,88,255,.05), transparent); }
.mechanics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.mechanics-copy > p { color: var(--muted); font-size: 18px; margin: 24px 0 34px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.steps li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: rgba(49,88,255,.13); border: 1px solid rgba(49,88,255,.42); color: #9cadff; font-weight: 900; }
.steps strong { display: block; margin-bottom: 4px; }
.steps p { color: var(--muted); margin: 0; font-size: 14px; }
.mechanics-panel { padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; background: linear-gradient(145deg, rgba(17,21,34,.94), rgba(10,12,20,.86)); box-shadow: var(--shadow); }
.panel-topline { display: flex; justify-content: space-between; color: #7f879a; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .12em; }
.panel-topline span:last-child { color: var(--green); }
.risk-meter { margin: 38px 0 34px; }
.meter-label, .meter-scale { display: flex; justify-content: space-between; gap: 12px; color: #8e96a9; font-size: 11px; }
.meter-track { position: relative; height: 14px; margin: 13px 0 12px; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange)); box-shadow: 0 0 25px rgba(49,88,255,.25); }
.meter-track i { position: absolute; inset: -4px auto -4px 64%; width: 4px; border-radius: 5px; background: white; box-shadow: 0 0 15px white; }
.meter-track b { position: absolute; width: 26px; height: 26px; left: calc(64% - 11px); top: -6px; border-radius: 50%; border: 4px solid white; background: #0e111c; }
.power-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.power-grid > div { padding: 16px 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); text-align: center; }
.power-grid strong, .power-grid small { display: block; }
.power-grid strong { font-size: 13px; margin-top: 10px; }
.power-grid small { color: #7f8798; font-size: 10px; }
.power-dot { width: 34px; height: 34px; display: inline-block; border-radius: 50%; }
.power-dot.coin { background: radial-gradient(circle at 35% 30%, #fff8a8, #ffb800 45%, #7d4300); box-shadow: 0 0 18px rgba(255,184,0,.4); }
.power-dot.flare { background: radial-gradient(circle at 50% 70%, white, #ff7a00 32%, #ff2414 60%, transparent 64%); filter: drop-shadow(0 0 10px #ff4d00); }
.power-dot.ice { border-radius: 8px; transform: rotate(13deg); background: linear-gradient(145deg, white, #59d8ff 45%, #164cff); box-shadow: 0 0 18px rgba(41,168,255,.5); }
.tip-box { margin-top: 22px; padding: 17px 18px; border-left: 3px solid var(--orange); border-radius: 0 12px 12px 0; background: rgba(255,114,20,.07); color: #aeb5c7; font-size: 13px; }
.tip-box strong { color: white; }

.atmosphere-grid { display: grid; grid-template-columns: .9fr 1fr; gap: 80px; align-items: center; }
.atmosphere-grid p { color: var(--muted); font-size: 17px; }
.atmosphere-art { position: relative; height: 480px; border-radius: 36px; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 50% 52%, rgba(49,88,255,.2), transparent 29%), linear-gradient(135deg, #101422, #080a11); box-shadow: var(--shadow); }
.atmosphere-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(circle, black, transparent 75%); }
.atmosphere-orb { position: absolute; width: 170px; height: 170px; border-radius: 50%; left: 50%; top: 49%; transform: translate(-50%,-50%); border: 22px solid var(--blue); box-shadow: inset 0 0 0 18px #101422, inset 0 0 0 30px var(--orange), 0 0 70px rgba(49,88,255,.35); }
.atmosphere-orb::after { content: ""; position: absolute; inset: 47px; border-radius: 50%; background: var(--green); box-shadow: 0 0 30px var(--green); }
.sound-wave { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 14px; }
.sound-wave span { width: 4px; height: 60px; border-radius: 10px; background: linear-gradient(var(--cyan), var(--blue)); opacity: .45; animation: wave 1.2s ease-in-out infinite alternate; }
.sound-wave span:nth-child(2n) { height: 120px; animation-delay: .2s; }
.sound-wave span:nth-child(3n) { height: 210px; animation-delay: .35s; }
.sound-wave span:nth-child(5n) { height: 300px; animation-delay: .1s; }
@keyframes wave { to { transform: scaleY(.72); opacity: .75; } }
.atmosphere-label { position: absolute; left: 24px; bottom: 20px; font-family: ui-monospace, monospace; color: #727a8e; font-size: 10px; letter-spacing: .16em; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: #c9cede; font-size: 12px; background: rgba(255,255,255,.025); }

.gallery { overflow: hidden; }
.gallery::before { content: ""; position: absolute; width: 700px; height: 700px; left: -280px; top: 50px; border-radius: 50%; background: radial-gradient(circle, rgba(255,114,20,.10), transparent 68%); }
.gallery-frame { position: relative; overflow: hidden; border-radius: 32px; border: 1px solid rgba(255,255,255,.13); background: #0d0f18; box-shadow: var(--shadow); }
.gallery-frame picture, .gallery-frame img { width: 100%; }
.gallery-frame img { height: auto; }
.gallery-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 70px rgba(0,0,0,.32); }
.gallery-caption { position: absolute; z-index: 2; inset: auto 18px 16px; display: flex; justify-content: space-between; color: rgba(255,255,255,.8); font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .12em; text-shadow: 0 2px 8px black; }

.faq-layout { display: grid; grid-template-columns: .7fr 1fr; gap: 100px; }
.faq-layout > div:first-child p { color: var(--muted); margin-top: 24px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 25px 44px 25px 0; position: relative; font-size: 18px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 18px; height: 2px; background: var(--blue-2); transition: transform .2s; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { color: var(--muted); padding: 0 42px 25px 0; margin: 0; }

.final-cta { padding-top: 30px; }
.cta-box { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 52px; border-radius: 36px; border: 1px solid rgba(255,255,255,.15); background: linear-gradient(120deg, rgba(49,88,255,.19), rgba(255,114,20,.11) 70%, rgba(49,255,32,.06)); }
.cta-box::after { content: ""; position: absolute; width: 260px; height: 260px; right: -110px; top: -120px; border: 34px solid rgba(49,88,255,.28); border-radius: 50%; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { max-width: 780px; font-size: clamp(36px, 4vw, 58px); }
.cta-box p { max-width: 760px; color: #b4bbce; margin: 18px 0 0; }
.cta-box p a { color: white; text-decoration: underline; text-underline-offset: 3px; }

.site-footer { margin-top: 110px; padding: 62px 0 28px; border-top: 1px solid var(--line); background: #070910; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 50px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid h2 { font-size: 13px; letter-spacing: .11em; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: #8e96a9; font-size: 13px; }
.footer-grid a { display: block; margin: 8px 0; transition: color .2s; }
.footer-grid a:hover { color: white; }
.footer-grid > div:first-child p { max-width: 310px; }
.footer-note { font-size: 11px !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-bottom p { color: #676e80; font-size: 11px; margin: 0; max-width: 620px; }

.cookie-banner { position: fixed; z-index: 2000; left: 20px; right: 20px; bottom: 20px; max-width: 980px; margin-inline: auto; padding: 18px; border: 1px solid rgba(255,255,255,.17); border-radius: 18px; background: rgba(12,15,24,.96); box-shadow: 0 25px 80px rgba(0,0,0,.55); backdrop-filter: blur(18px); display: flex; align-items: center; justify-content: space-between; gap: 24px; opacity: 0; transform: translateY(20px); transition: opacity .25s, transform .25s; }
.cookie-banner[hidden] { display: none; }
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner strong { display: block; margin-bottom: 4px; }
.cookie-banner p { color: #9fa7bb; font-size: 12px; margin: 0; max-width: 620px; }
.cookie-actions { display: flex; gap: 8px; min-width: max-content; }

.legal-main { padding: 150px 0 50px; }
.legal-shell { display: grid; grid-template-columns: 300px minmax(0, 780px); gap: 90px; align-items: start; }
.legal-aside { position: sticky; top: 120px; }
.legal-aside h1 { font-size: 46px; margin: 14px 0 12px; }
.legal-aside > p { color: #7f8799; font-size: 12px; }
.legal-aside nav { display: grid; gap: 7px; margin-top: 34px; }
.legal-aside nav a { padding: 11px 13px; border-radius: 10px; color: #929aaf; font-size: 13px; }
.legal-aside nav a.active, .legal-aside nav a:hover { color: white; background: rgba(49,88,255,.12); }
.legal-content { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.025); }
.legal-lead { color: #d8dced !important; font-size: 19px !important; }
.legal-content h2 { margin: 38px 0 12px; font-size: 25px; letter-spacing: -.02em; }
.legal-content h2:first-of-type { margin-top: 30px; }
.legal-content p, .legal-content li { color: #aab1c3; }
.legal-content a { color: #91a2ff; text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { padding-left: 22px; }
.legal-content li { margin-bottom: 8px; }
.legal-table-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; min-width: 620px; border-collapse: collapse; }
th, td { padding: 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 13px; }
th { color: white; background: rgba(49,88,255,.09); }
td { color: #aab1c3; }
code { color: #a8b4ff; }

.not-found { min-height: 80vh; display: grid; place-items: center; padding: 140px 0 60px; background: radial-gradient(circle at 50% 35%, rgba(49,88,255,.14), transparent 35%); }
.not-found-box { text-align: center; }
.error-code { display: block; font-size: clamp(120px, 22vw, 270px); line-height: .75; font-weight: 950; letter-spacing: -.08em; color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.16); }
.not-found h1 { font-size: clamp(38px, 5vw, 66px); margin: 40px auto 18px; }
.not-found p { color: var(--muted); margin-bottom: 30px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .15s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@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; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 17px; }
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-visual { min-height: 500px; }
  .orbit-one { width: 500px; height: 500px; }
  .orbit-two { width: 410px; height: 410px; }
  .legal-shell { grid-template-columns: 260px 1fr; gap: 50px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: grid; position: relative; z-index: 1002; }
  .main-nav { position: fixed; inset: 0; z-index: 1001; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; padding: 100px 30px 50px; background: rgba(7,9,16,.97); backdrop-filter: blur(18px); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s, visibility .2s, transform .2s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { width: 100%; padding: 12px 0; font-size: 28px; }
  .main-nav .nav-cta { margin-top: 10px; width: auto; padding: 13px 22px; font-size: 16px; }
  .hero { min-height: auto; padding-top: 125px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-copy > p, h1 { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { margin-inline: auto; }
  .hero-visual { min-height: 560px; order: -1; }
  .screen-card { width: min(90%, 620px); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
  .split-heading, .gallery-heading, .mechanics-layout, .atmosphere-grid, .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-icon { margin: 28px 0; }
  .atmosphere-art { order: 2; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
  .legal-shell { grid-template-columns: 1fr; gap: 28px; }
  .legal-aside { position: static; }
  .legal-aside nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy strong { font-size: 14px; }
  .hero { padding: 95px 0 70px; }
  .hero::before { background: linear-gradient(180deg, rgba(7,9,16,.55), rgba(7,9,16,.95) 52%, var(--bg)); }
  .hero-visual { min-height: 410px; }
  .screen-card { width: 100%; aspect-ratio: .8; border-radius: 26px; transform: none; }
  .screen-card img { object-position: center; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 310px; height: 310px; }
  .floating-tag { display: none; }
  h1 { font-size: clamp(47px, 15vw, 69px); margin-top: 20px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 10px; text-align: left; }
  .hero-stats span { margin-top: 0; }
  .section { padding: 82px 0; }
  .section h2 { font-size: 40px; }
  .split-heading, .gallery-heading { margin-bottom: 32px; }
  .split-heading > p, .gallery-heading > p { font-size: 16px; }
  .feature-card { padding: 24px; border-radius: 22px; }
  .mechanics-panel { padding: 20px; }
  .power-grid { grid-template-columns: 1fr; }
  .power-grid > div { display: grid; grid-template-columns: 40px 1fr; column-gap: 10px; text-align: left; align-items: center; }
  .power-grid .power-dot { grid-row: 1 / 3; }
  .power-grid strong { margin-top: 0; }
  .atmosphere-art { height: 390px; border-radius: 26px; }
  .atmosphere-orb { width: 145px; height: 145px; }
  .gallery-frame { border-radius: 22px; }
  .gallery-caption { display: none; }
  .faq-list summary { font-size: 16px; }
  .cta-box { padding: 30px 22px; border-radius: 26px; }
  .site-footer { margin-top: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; gap: 14px; left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; min-width: 0; }
  .cookie-actions .button { width: auto; padding-inline: 10px; }
  .legal-main { padding-top: 105px; }
  .legal-aside h1 { font-size: 40px; }
  .legal-aside nav { display: flex; overflow-x: auto; }
  .legal-aside nav a { min-width: max-content; }
  .legal-content { padding: 24px 20px; border-radius: 22px; }
  .legal-lead { font-size: 17px !important; }
}
