:root {
  color-scheme: dark;
  --bg: #02050d;
  --surface: rgba(6, 12, 26, .78);
  --surface-strong: #071020;
  --text: #f7fbff;
  --muted: #9caec2;
  --cyan: #00e8ff;
  --cyan-deep: #009dbb;
  --pink: #ff1687;
  --violet: #8f38ff;
  --line: rgba(137, 174, 209, .17);
  --radius: 28px;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 30px 90px rgba(0, 0, 0, .48);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -15%, rgba(38, 88, 134, .16), transparent 35rem),
    linear-gradient(180deg, #02050d, #02040b 72%, #030712);
  font-family: "Segoe UI Variable", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.landing { position: relative; isolation: isolate; }
body.landing main, body.landing .site-footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { color: #001018; background: var(--cyan); }

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

.wide-shell { width: var(--shell); max-width: 100%; margin-inline: auto; }
.section { position: relative; padding-block: 118px; }

#constellation {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: .92;
  pointer-events: none;
}

.aurora, .light-ribbons { position: fixed; z-index: 0; pointer-events: none; }
.aurora { width: 58vw; aspect-ratio: 1; border-radius: 50%; filter: blur(130px); opacity: .16; }
.aurora-cyan { top: 2vh; left: -31vw; background: var(--cyan); animation: float-a 24s ease-in-out infinite alternate; }
.aurora-pink { right: -31vw; bottom: -5vh; background: var(--pink); animation: float-b 29s ease-in-out infinite alternate; }
.light-ribbons { inset: 0; overflow: hidden; opacity: 1; mix-blend-mode: screen; }
.light-ribbons::before, .light-ribbons::after {
  content: "";
  position: absolute;
  left: -45vw;
  width: 190vw;
  height: 3px;
  opacity: 0;
  will-change: transform, opacity;
  background: linear-gradient(90deg, transparent 8%, rgba(0,232,255,.08) 25%, rgba(0,232,255,.92) 50%, rgba(255,255,255,.96) 51%, rgba(0,232,255,.2) 60%, transparent 86%);
  filter: drop-shadow(0 0 10px rgba(0,232,255,.95)) drop-shadow(0 0 34px rgba(0,232,255,.5));
  animation: light-sweep 42s linear infinite;
}
.light-ribbons::before { top: 22%; --sweep-angle: -12deg; }
.light-ribbons::after {
  top: 72%;
  --sweep-angle: 9deg;
  background: linear-gradient(90deg, transparent 10%, rgba(255,22,135,.04) 28%, rgba(255,22,135,.75) 50%, rgba(255,255,255,.86) 51%, rgba(143,56,255,.14) 64%, transparent 88%);
  filter: drop-shadow(0 0 8px rgba(255,22,135,.78)) drop-shadow(0 0 30px rgba(143,56,255,.36));
  animation-duration: 54s;
  animation-delay: -21s;
}
.light-ribbons i {
  --beam-color: 0,232,255;
  --beam-angle: 23deg;
  position: absolute;
  top: -105vh;
  left: var(--beam-left);
  width: 3px;
  height: 105vh;
  opacity: 0;
  will-change: transform, opacity;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--beam-color),.08) 12%, rgba(var(--beam-color),.96) 48%, rgba(255,255,255,.98) 50%, rgba(var(--beam-color),.38) 62%, transparent 100%);
  box-shadow: 0 0 12px rgba(var(--beam-color),.9), 0 0 42px rgba(var(--beam-color),.36);
  animation: light-beam-drift var(--beam-duration) linear infinite;
  animation-delay: var(--beam-delay);
}
.light-ribbons i:nth-child(1) { --beam-left: 5%; --beam-duration: 38s; --beam-delay: -4s; }
.light-ribbons i:nth-child(2) { --beam-left: 24%; --beam-color: 255,22,135; --beam-angle: -19deg; --beam-duration: 47s; --beam-delay: -24s; }
.light-ribbons i:nth-child(3) { --beam-left: 44%; --beam-color: 143,56,255; --beam-angle: 14deg; --beam-duration: 53s; --beam-delay: -13s; }
.light-ribbons i:nth-child(4) { --beam-left: 62%; --beam-angle: -24deg; --beam-duration: 45s; --beam-delay: -30s; }
.light-ribbons i:nth-child(5) { --beam-left: 79%; --beam-color: 255,22,135; --beam-angle: 20deg; --beam-duration: 58s; --beam-delay: -8s; }
.light-ribbons i:nth-child(6) { --beam-left: 94%; --beam-color: 143,56,255; --beam-angle: -13deg; --beam-duration: 49s; --beam-delay: -33s; }

@keyframes float-a { to { transform: translate(11vw, 18vh) scale(1.18); } }
@keyframes float-b { to { transform: translate(-10vw, -15vh) scale(.88); } }
@keyframes light-beam-drift {
  0% { transform: translate3d(-12vw, -12vh, 0) rotate(var(--beam-angle)); opacity: 0; }
  14% { opacity: .72; }
  70% { opacity: .48; }
  100% { transform: translate3d(14vw, 220vh, 0) rotate(var(--beam-angle)); opacity: 0; }
}
@keyframes light-sweep {
  0% { transform: translate3d(-38vw, -18vh, 0) rotate(var(--sweep-angle)); opacity: 0; }
  18% { opacity: .38; }
  64% { opacity: .25; }
  100% { transform: translate3d(38vw, 65vh, 0) rotate(var(--sweep-angle)); opacity: 0; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.is-scrolled { background: rgba(2, 5, 13, .82); border-color: var(--line); backdrop-filter: blur(20px); }
.header-inner { position: relative; min-height: 100px; display: flex; align-items: center; gap: 34px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 13px; flex: none; }
.brand-icon { display: block; width: 84px; height: 84px; flex: 0 0 84px; aspect-ratio: 1 / 1; object-fit: contain; border: 1px solid rgba(0,232,255,.42); border-right-color: rgba(255,22,135,.5); border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.42), -4px 0 22px rgba(0,232,255,.09), 4px 0 22px rgba(255,22,135,.1); }
.mini-rings { width: 52px; height: 30px; overflow: visible; }
.mini-rings circle:first-child { stroke: var(--cyan); }
.mini-rings circle:nth-child(2) { stroke: var(--pink); }
.mini-rings circle, .mini-rings path { fill: none; stroke-width: 2; }
.mini-rings path { stroke: rgba(255,255,255,.36); }
.mini-rings circle:last-child { fill: white; stroke: none; filter: drop-shadow(0 0 6px white); }
.brand-number { font: 700 23px/1 Space Grotesk, sans-serif; letter-spacing: -.08em; }
.brand-number b { color: var(--pink); font-weight: inherit; }
.brand-domain { color: #d4deea; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav a { color: #c0cbda; font-size: 13px; font-weight: 600; transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--cyan); }
.header-tools { display: flex; align-items: center; gap: 10px; }
.mobile-menu-toggle { display: none; }
.language, .sound-control {
  height: 40px;
  color: #e9f6ff;
  border: 1px solid rgba(0, 232, 255, .35);
  border-radius: 999px;
  background: rgba(4, 10, 21, .75);
}
.language-picker { position: relative; flex: none; }
.language-trigger { min-width: 100px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 10px; border: 1px solid rgba(0,232,255,.46); border-radius: 14px; color: white; background: rgba(4,10,21,.96); box-shadow: inset 0 1px rgba(255,255,255,.06), 0 0 18px rgba(0,232,255,.08); cursor: pointer; }
.language-trigger > span { margin-left: 1px; font-size: 16px; line-height: 1; transition: transform .2s; }
.language-trigger[aria-expanded="true"] > span { transform: rotate(180deg); }
.language-flag { width: 28px; height: 19px; flex: none; overflow: hidden; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.38), 0 0 10px rgba(0,232,255,.14); }
.language-code { color: #fff; font-size: 14px; font-weight: 950; letter-spacing: .045em; line-height: 1; }
.language-native { display: none; }
.language-menu { position: absolute; z-index: 80; top: calc(100% + 10px); right: 0; width: min(238px, calc(100vw - 24px)); display: grid; gap: 3px; padding: 9px; border: 1px solid rgba(0,232,255,.42); border-right-color: rgba(255,22,135,.45); border-radius: 18px; background: rgba(3,10,22,.985); box-shadow: 0 24px 70px rgba(0,0,0,.7); }
.language-menu[hidden] { display: none !important; }
.language-menu button, .language-menu a { min-height: 45px; display: grid; grid-template-columns: 30px 31px minmax(0,1fr); gap: 9px; align-items: center; padding: 0 11px; border: 1px solid transparent; border-radius: 11px; color: #dce9f5; background: transparent; text-align: left; cursor: pointer; }
.language-menu button:hover, .language-menu button:focus-visible, .language-menu button[aria-selected="true"], .language-menu a:hover, .language-menu a:focus-visible, .language-menu a[aria-selected="true"] { border-color: rgba(0,232,255,.28); color: white; background: linear-gradient(90deg, rgba(0,232,255,.14), rgba(255,22,135,.09)); outline: none; }
.language-menu svg { width: 28px; height: 19px; overflow: hidden; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.28); }
.language-menu b { font-size: 14px; }
.language-menu span { font-size: 14px; font-weight: 650; }
.language:focus-visible, .sound-control:focus-visible, .mobile-menu-toggle:focus-visible, .button:focus-visible, .store-button:focus-visible { outline: 2px solid white; outline-offset: 3px; }
.sound-control { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 0 15px; cursor: pointer; }
.sound-control svg { width: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.sound-control .sound-on { display: none; color: var(--cyan); }
.sound-control[aria-pressed="true"] .sound-on { display: block; }
.sound-control[aria-pressed="true"] .sound-off { display: none; }
.sound-halo { position: absolute; inset: -1px; z-index: -1; border-radius: inherit; opacity: 0; box-shadow: 0 0 20px var(--cyan); }
.sound-control[aria-pressed="true"] .sound-halo { opacity: .45; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .9; } }

.hero-section { min-height: 100svh; padding-top: 104px; padding-bottom: 18px; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); align-items: start; gap: 58px; }
.hero-copy, .hero-visual, .download-copy { min-width: 0; max-width: 100%; }
.signal-pill, .eyebrow { color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-eyebrow { margin: 8px 0 0; }
.signal-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 13px; border: 1px solid rgba(0,232,255,.23); border-radius: 999px; background: rgba(0,232,255,.055); }
.signal-pill > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Segoe UI Variable Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
h1 { max-width: 740px; margin: 12px 0 14px; font-size: clamp(54px, 5.55vw, 82px); line-height: .94; letter-spacing: -.06em; }
h1 em, h2 em { color: transparent; font-style: normal; background: linear-gradient(105deg, var(--cyan) 7%, #60f6ff 33%, #ddd8ff 56%, var(--pink) 83%); background-clip: text; -webkit-background-clip: text; filter: none; }
.hero-lead { max-width: 650px; margin-bottom: 14px; color: #adbdcf; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.55; }
.hero-odds { max-width: 680px; display: grid; grid-template-columns: auto auto; grid-template-areas: "label number" "body body"; justify-content: center; align-items: end; column-gap: 15px; margin: 0 0 10px; padding: 13px 20px 12px; overflow: hidden; border: 1px solid rgba(0,232,255,.28); border-right-color: rgba(255,22,135,.34); border-radius: 19px; background: linear-gradient(110deg, rgba(0,232,255,.055), rgba(255,22,135,.055)); box-shadow: inset 0 1px rgba(255,255,255,.04), 0 18px 50px rgba(0,0,0,.22); }
.hero-odds span { grid-area: label; justify-self: end; padding-bottom: 7px; color: white; font-size: clamp(14px, 1.5vw, 21px); font-weight: 900; letter-spacing: .06em; white-space: nowrap; }
.hero-odds strong { grid-area: number; color: transparent; background: linear-gradient(100deg, #09dff5, #8d6ee2 52%, #ff1687); background-clip: text; -webkit-background-clip: text; font: 800 clamp(42px, 5vw, 72px)/.86 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.055em; white-space: nowrap; filter: none; }
.hero-odds small { grid-area: body; justify-self: center; margin-top: 5px; color: #d7e4ef; font-size: 13px; font-weight: 850; line-height: 1.25; letter-spacing: .075em; text-align: center; text-transform: uppercase; text-shadow: none; }
.hero-downloads { max-width: 620px; margin: -5px auto 12px 30px; text-align: center; }
.hero-downloads > p, .future-platform-label { width: max-content; max-width: 100%; margin: 0 auto 14px !important; padding: 0; border: 0; border-radius: 0; color: #fff !important; background: transparent; font-size: clamp(16px, 1.55vw, 21px) !important; font-weight: 950; line-height: 1.2; letter-spacing: .16em; text-align: center; text-transform: uppercase; text-shadow: 0 0 16px rgba(255,255,255,.3), 0 0 26px rgba(0,232,255,.2); box-shadow: none; }
.hero-store-buttons { grid-template-columns: repeat(3, minmax(0, 158px)); justify-content: center; gap: 10px; margin-top: 0; }
.hero-store-buttons .store-button { min-height: 52px; padding: 6px 11px; gap: 8px; }
.hero-store-buttons .store-button svg { width: 30px; height: 30px; }
.hero-store-buttons .store-button b { font-size: 14px; white-space: nowrap; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.web-launch-card { width: min(460px, 100%); aspect-ratio: 3; display: block; margin: 8px 0 10px; transition: transform .22s ease, filter .22s ease; filter: drop-shadow(-7px 0 18px rgba(0,232,255,.16)) drop-shadow(7px 0 20px rgba(255,22,135,.18)); }
.hero-copy > .web-launch-card { width: 100%; max-width: 680px; }
.web-launch-card img { width: 100%; height: 100%; display: block; object-fit: contain; }
.web-launch-card:hover { transform: translateY(-3px) scale(1.012); filter: brightness(1.06) drop-shadow(-8px 0 24px rgba(0,232,255,.24)) drop-shadow(8px 0 26px rgba(255,22,135,.25)); }
.web-launch-card:focus-visible { outline: 3px solid #fff; outline-offset: 4px; border-radius: 28px; }
.compact-launch { margin: 20px auto 22px; }
.platforms-coming-soon {
  width: min(680px, calc(100vw - 28px));
  max-width: 100%;
  aspect-ratio: 993 / 98;
  display: block;
  margin: 0 auto;
  pointer-events: none;
  user-select: none;
  background: url("/assets/platforms-coming-soon-es.webp") center / contain no-repeat;
}
html[lang="en"] .platforms-coming-soon { background-image: url("/assets/platforms-coming-soon-en.webp"); }
html[lang="fr"] .platforms-coming-soon { background-image: url("/assets/platforms-coming-soon-fr.webp"); }
html[lang="pt"] .platforms-coming-soon { background-image: url("/assets/platforms-coming-soon-pt.webp"); }
html[lang="de"] .platforms-coming-soon { background-image: url("/assets/platforms-coming-soon-de.webp"); }
html[lang="ca"] .platforms-coming-soon { background-image: url("/assets/platforms-coming-soon-ca.webp"); }
html[lang="ro"] .platforms-coming-soon { background-image: url("/assets/platforms-coming-soon-ro.webp"); }
.hero-lead strong { color: var(--cyan); font-weight: 900; letter-spacing: .035em; text-shadow: none; }
.button { min-height: 51px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; border: 1px solid transparent; border-radius: 15px; font-size: 13px; font-weight: 800; letter-spacing: .025em; transition: transform .2s, box-shadow .2s, border-color .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(110deg, #08bed6, #7079c4 48%, #e90d79); box-shadow: 0 14px 34px rgba(225, 18, 121, .2), inset 0 1px rgba(255,255,255,.28); }
.button-primary:hover { box-shadow: 0 18px 44px rgba(0, 232, 255, .18), 0 15px 38px rgba(255,22,135,.22); }
.button-ghost { border-color: rgba(0,232,255,.6); background: rgba(3,9,20,.7); }
.button-ghost:hover { color: var(--cyan); border-color: var(--pink); }
.hero-metrics { display: flex; gap: 44px; margin-top: 20px; }
.hero-metrics div { display: grid; gap: 3px; }
.hero-metrics strong { font: 700 25px/1 Space Grotesk, sans-serif; }
.hero-metrics span { color: #788ba1; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.hero-visual { position: relative; min-height: min(680px, calc(100svh - 122px)); display: grid; place-items: start center; padding-top: 8px; }
.phone-aura { position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%; background: conic-gradient(from 90deg, rgba(0,232,255,.15), transparent 35%, rgba(255,22,135,.16), transparent 70%); filter: blur(35px); animation: rotate 18s linear infinite; }
.phone-shell { position: relative; z-index: 2; width: min(360px, 72vw); height: 640px; padding: 10px; border: 1px solid rgba(0,232,255,.65); border-right-color: rgba(255,22,135,.7); border-radius: 47px; background: linear-gradient(145deg, rgba(10,20,35,.95), rgba(1,4,11,.98)); box-shadow: 0 45px 100px #000, -10px 0 46px rgba(0,232,255,.12), 10px 0 46px rgba(255,22,135,.12), inset 0 0 0 1px rgba(255,255,255,.08); transform: perspective(1000px) rotateY(-5deg) rotateX(1deg); }
.phone-top { height: 28px; display: flex; justify-content: center; align-items: center; gap: 8px; }
.phone-top span { width: 72px; height: 7px; border-radius: 10px; background: #02050b; box-shadow: inset 0 1px 2px #000; }
.phone-top i { width: 7px; height: 7px; border-radius: 50%; background: #03121c; box-shadow: 0 0 5px var(--cyan); }
.phone-screen { position: relative; height: calc(100% - 28px); overflow: hidden; border-radius: 33px; background: #02050d; }
.phone-screen img { width: 100%; height: 100%; border-radius: 0; object-fit: cover; object-position: center; filter: none; }
.phone-screen p { margin: -4px 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.match-score { display: flex; align-items: baseline; gap: 5px; font: 700 46px/1 Space Grotesk, sans-serif; letter-spacing: -.08em; }
.match-score span { color: var(--cyan); text-shadow: 0 0 18px rgba(0,232,255,.65); }
.match-score i { color: #78869b; font-style: normal; }
.match-score b { color: var(--pink); text-shadow: 0 0 18px rgba(255,22,135,.6); }
.phone-screen small { margin-top: 7px; color: #8da3ba; font-size: 8px; font-weight: 700; letter-spacing: .19em; }
.similarity-claim-fix { position: absolute; z-index: 3; top: 61.2%; right: 12%; left: 12%; min-height: 4.7%; display: flex; align-items: center; justify-content: center; padding: .4% 1.5%; pointer-events: none; border: 1px solid rgba(0,225,242,.38); border-left-color: rgba(255,42,142,.52); border-radius: 8px; background: rgba(1,3,11,.995); color: #fff; font-size: clamp(6px, 1.15vw, 13px); font-weight: 800; line-height: 1.12; text-align: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(90,160,199,.16); border-radius: 50%; }
.orbit-one { width: 500px; height: 500px; animation: rotate 22s linear infinite; }
.orbit-two { width: 410px; height: 410px; border-style: dashed; animation: rotate-reverse 29s linear infinite; }
.visual-orbit::before, .visual-orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 16px currentColor; background: currentColor; }
.visual-orbit::before { top: 11%; left: 15%; color: var(--cyan); }
.visual-orbit::after { right: 9%; bottom: 22%; color: var(--pink); }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotate-reverse { to { transform: rotate(-360deg); } }
.floating-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 11px 15px; border: 1px solid rgba(0,232,255,.35); border-radius: 15px; background: rgba(3,9,20,.83); backdrop-filter: blur(12px); box-shadow: var(--shadow); font-size: 11px; }
.floating-chip span { display: grid; place-items: center; width: 25px; height: 25px; color: var(--cyan); border: 1px solid currentColor; border-radius: 50%; }
.chip-left { left: 0; top: 31%; }
.chip-right { right: -2%; bottom: 25%; border-color: rgba(255,22,135,.35); }
.chip-right span { color: var(--pink); }

.trust-rail { position: relative; z-index: 2; overflow: hidden; border-block: 1px solid var(--line); background: rgba(3,8,18,.92); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 35px; padding: 19px 0; will-change: transform; backface-visibility: hidden; animation: marquee 28s linear infinite; }
.marquee-track span { color: #e4ebf3; font-size: 13px; font-weight: 900; line-height: 1; letter-spacing: .15em; text-rendering: optimizeLegibility; backface-visibility: hidden; }
.marquee-track i { color: var(--pink); font-style: normal; }
@keyframes marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.experience-section .section-heading { max-width: 790px; }
.eyebrow { margin-bottom: 13px; }
.section-heading h2, .possibility-copy h2, .download-copy h2 { margin-bottom: 20px; font-size: clamp(40px, 5vw, 67px); line-height: 1.03; letter-spacing: -.05em; }
.section-heading > p:last-child, .possibility-copy > p:last-child, .download-copy > p { color: var(--muted); font-size: 17px; }
.original-screen { position: relative; width: min(760px, 100%); margin: 0 auto; padding: 1px; overflow: hidden; border: 1px solid rgba(0,232,255,.38); border-right-color: rgba(255,22,135,.42); border-radius: 34px; background: #01040b; box-shadow: 0 40px 110px rgba(0,0,0,.58), -14px 0 60px rgba(0,232,255,.08), 14px 0 60px rgba(255,22,135,.08); }
.original-screen::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 0 40px rgba(0,0,0,.25); }
.original-screen img { position: relative; z-index: 1; width: 100%; height: auto; border-radius: 33px; }
.screen-cta-hotspot { position: absolute; z-index: 4; left: 5%; right: 5%; bottom: 4.15%; height: 7.15%; border-radius: 18px; cursor: pointer; }
.screen-cta-hotspot:hover { box-shadow: inset 0 0 0 2px rgba(255,255,255,.34), 0 0 28px rgba(0,232,255,.18), 0 0 28px rgba(255,22,135,.16); }
.screen-cta-hotspot:focus-visible { outline: 3px solid white; outline-offset: 4px; box-shadow: 0 0 28px rgba(0,232,255,.28), 0 0 28px rgba(255,22,135,.24); }
.screen-light { position: absolute; z-index: 2; inset: -30% 30% auto; height: 45%; pointer-events: none; background: var(--cyan); filter: blur(110px); opacity: .09; }
.original-screen-how { width: min(800px, 100%); }
.bento-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 17px; }
.bento-card { position: relative; min-height: 300px; padding: 31px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(9,18,34,.8), rgba(3,8,18,.78)); box-shadow: inset 0 1px rgba(255,255,255,.035); }
.bento-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -90px; bottom: -100px; border-radius: 50%; background: var(--cyan); filter: blur(70px); opacity: .08; }
.bento-card:nth-child(3)::after { background: var(--pink); }
.bento-large { grid-row: span 2; min-height: 617px; }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 20px; }
.card-index { position: absolute; top: 23px; right: 25px; color: #486078; font: 700 12px Space Grotesk, sans-serif; }
.bento-card h3 { margin: 24px 0 11px; font-size: 25px; }
.bento-card p { color: var(--muted); font-size: 14px; }
.icon-orbit { height: 230px; display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 32px; border: 1px solid rgba(0,232,255,.13); border-radius: 50%; background: radial-gradient(circle, rgba(0,232,255,.1), transparent 60%); font: 700 50px Space Grotesk; }
.icon-orbit span { color: var(--cyan); }
.icon-orbit i { color: #77899e; font-style: normal; }
.icon-orbit b { color: var(--pink); }
.score-spectrum { position: absolute; inset: auto 31px 33px; display: flex; align-items: center; gap: 12px; color: #8191a4; font-size: 10px; font-weight: 700; }
.score-spectrum i { flex: 1; height: 2px; background: linear-gradient(90deg, var(--cyan), #775fd4, var(--pink)); box-shadow: 0 0 12px rgba(0,232,255,.35); }
.line-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--cyan); border: 1px solid currentColor; border-radius: 18px; box-shadow: inset 0 0 18px rgba(0,232,255,.08), 0 0 22px rgba(0,232,255,.08); font: 800 17px Space Grotesk; }
.bell-icon { color: var(--pink); }
.language-cloud { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; max-width: 260px; }
.language-cloud span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(0,232,255,.25); border-radius: 50%; background: #050b16; font-size: 11px; font-weight: 800; }
.language-cloud span:nth-child(even) { border-color: rgba(255,22,135,.28); }

.how-section { border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(8,15,30,.57), rgba(2,5,13,.65)); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: steps; }
.step-card { min-height: 385px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(3,8,18,.66); }
.step-card > span { color: #62758a; font: 700 12px Space Grotesk; }
.step-symbol { width: 105px; height: 105px; display: grid; place-items: center; margin: 42px auto 35px; border: 1px solid rgba(0,232,255,.4); border-radius: 50%; color: var(--cyan); background: radial-gradient(circle, rgba(0,232,255,.1), transparent 65%); box-shadow: 0 0 38px rgba(0,232,255,.1); font: 700 43px Space Grotesk; }
.step-card:nth-child(2) .step-symbol { border-color: rgba(255,22,135,.42); }
.step-card:nth-child(3) .step-symbol { color: var(--pink); border-color: rgba(255,22,135,.42); }
.step-card h3 { font-size: 21px; }
.step-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.rings-symbol { position: relative; background: transparent; }
.rings-symbol i, .rings-symbol b { position: absolute; width: 49px; height: 49px; border: 2px solid var(--cyan); border-radius: 50%; }
.rings-symbol i { left: 22px; }
.rings-symbol b { right: 22px; border-color: var(--pink); }

.possibility-card { position: relative; min-height: 430px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; overflow: hidden; padding: 66px; border: 1px solid rgba(0,232,255,.24); border-right-color: rgba(255,22,135,.24); border-radius: 38px; background: linear-gradient(120deg, rgba(5,18,34,.92), rgba(11,4,23,.86)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.06); }
.possibility-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 48%, rgba(255,255,255,.025) 48.2%, transparent 48.5%); }
.possibility-copy { position: relative; z-index: 2; }
.possibility-copy h2 em { display: block; font-size: 1.1em; }
.possibility-graphic { position: relative; height: 100%; }
.giant-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.giant-rings i, .giant-rings b { position: absolute; width: 240px; height: 240px; border: 2px solid var(--cyan); border-radius: 50%; box-shadow: inset 0 0 50px rgba(0,232,255,.08), 0 0 35px rgba(0,232,255,.2); }
.giant-rings i { transform: translateX(-80px); }
.giant-rings b { transform: translateX(80px); border-color: var(--pink); box-shadow: inset 0 0 50px rgba(255,22,135,.08), 0 0 35px rgba(255,22,135,.2); }
.giant-rings span { z-index: 2; width: 14px; height: 14px; border-radius: 50%; background: white; box-shadow: 0 0 23px white; }

.safety-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.safety-layout .section-heading { position: sticky; top: 135px; margin-bottom: 0; }
.text-link { display: inline-block; margin-top: 8px; color: var(--cyan); font-size: 13px; font-weight: 700; }
.safety-list { display: grid; gap: 13px; }
.safety-item { display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: rgba(5,11,23,.72); }
.safety-item > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--cyan); border: 1px solid currentColor; border-radius: 17px; font: 700 16px Space Grotesk; }
.safety-item:nth-child(even) > span { color: var(--pink); }
.safety-item h3 { margin: 3px 0 7px; font-size: 18px; }
.safety-item p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

.plans-section { border-block: 1px solid var(--line); background: rgba(3,8,18,.57); }
.landing-plan-tabs { width: min(720px,100%); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: 0 auto 24px; }
.landing-plan-tabs button { min-width: 0; aspect-ratio: 2.5; display: block; overflow: hidden; padding: 0; border: 0; border-radius: 999px; background: #000; cursor: pointer; filter: brightness(.9); transition: transform .2s ease, filter .2s ease; }
.landing-plan-tabs button img { width: 100%; height: 100%; display: block; object-fit: cover; pointer-events: none; }
.landing-plan-tabs button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.landing-plan-tabs button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.landing-plan-tabs button.is-active { transform: translateY(-2px) scale(1.025); filter: brightness(1.14) saturate(1.08); }
.plan-art-grid { display: grid; grid-template-columns: minmax(0, 560px); justify-content: center; align-items: start; }
.plan-art { position: relative; display: block; overflow: hidden; border: 1px solid rgba(0,232,255,.33); border-radius: 28px; background: #02050c; box-shadow: 0 28px 70px rgba(0,0,0,.48), inset 0 1px rgba(255,255,255,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.plan-art[hidden] { display: none !important; }
.plan-art::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 32px rgba(0,232,255,.06); }
.plan-art:hover { z-index: 2; transform: translateY(-8px) scale(1.012); box-shadow: 0 36px 90px rgba(0,0,0,.58), 0 0 38px rgba(0,232,255,.08); }
.premium-art { border-color: rgba(255,22,135,.52); }
.premium-art::after { box-shadow: inset 0 0 36px rgba(255,22,135,.07); }
.invite-art { border-color: rgba(144,73,255,.48); }
.plan-art img { width: 100%; height: auto; }
.premium-claim-fix { position: absolute; z-index: 3; top: 32.2%; right: 5.5%; left: 29.5%; height: 14.7%; display: flex; flex-direction: column; justify-content: space-around; gap: 2%; padding: 1.2% 2.2%; pointer-events: none; border: 1px solid rgba(0,225,242,.38); border-left-color: rgba(255,42,142,.52); border-radius: 12px; background: rgba(1,3,11,.995); box-shadow: 0 0 18px rgba(0,225,242,.06), 0 0 16px rgba(255,42,142,.05); color: #fff; text-align: left; }
.premium-claim-fix b { display: flex; min-height: 44%; align-items: center; font-size: clamp(10px, 2.35vw, 24px); line-height: 1.12; }
.intro-claim-fix { position: absolute; z-index: 3; top: 66.3%; right: 4.5%; left: 31.5%; min-height: 6.8%; display: flex; align-items: center; padding: 1.1% 2.1%; pointer-events: none; border: 1px solid rgba(0,225,242,.34); border-left-color: rgba(255,42,142,.48); border-radius: 12px; background: rgba(1,3,11,.995); color: #fff; font-size: clamp(10px, 2.2vw, 20px); line-height: 1.24; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 540px; padding: 34px; border: 1px solid rgba(0,232,255,.28); border-radius: 30px; background: linear-gradient(150deg, rgba(8,18,35,.95), rgba(2,6,15,.96)); box-shadow: inset 0 1px rgba(255,255,255,.05); }
.premium-card { border-color: rgba(255,22,135,.58); transform: translateY(-18px); box-shadow: 0 30px 80px rgba(255,22,135,.1), inset 0 1px rgba(255,255,255,.07); }
.invite-card { border-color: rgba(143,56,255,.52); }
.popular { position: absolute; top: 0; right: 27px; padding: 8px 13px; color: white; border-radius: 0 0 12px 12px; background: linear-gradient(100deg, #00a9bf, #e4147c); font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.plan-label { color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.premium-card .plan-label { color: var(--pink); }
.invite-card .plan-label { color: #ba8cff; }
.plan-card h3 { min-height: 62px; margin: 20px 0 14px; font-size: 27px; line-height: 1.12; }
.plan-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.plan-price strong { font: 700 42px/1 Space Grotesk; }
.plan-price span { color: var(--muted); font-size: 11px; }
.plan-card ul { display: grid; gap: 14px; padding: 0; margin: 0 0 35px; list-style: none; }
.plan-card li { position: relative; padding-left: 24px; color: #b7c5d4; font-size: 13px; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 800; }
.premium-card li::before { color: var(--pink); }
.invite-card li::before { color: #ad70ff; }
.plan-card .button { width: 100%; margin-top: auto; }

.download-card { position: relative; display: grid; grid-template-columns: 240px 1fr; gap: 54px; align-items: center; overflow: hidden; padding: 58px; border: 1px solid rgba(0,232,255,.3); border-right-color: rgba(255,22,135,.3); border-radius: 38px; background: linear-gradient(125deg, rgba(5,16,31,.96), rgba(10,3,20,.95)); box-shadow: var(--shadow); }
.download-card > img { position: relative; z-index: 2; display: block; width: 240px; height: 240px; max-width: 100%; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 26%; box-shadow: 0 26px 60px #000; }
.download-glow { position: absolute; left: -80px; width: 380px; height: 380px; border-radius: 50%; background: var(--cyan); filter: blur(150px); opacity: .13; }
.download-copy { position: relative; z-index: 2; }
.download-copy h2 { max-width: 770px; }
.store-buttons { display: grid; grid-template-columns: repeat(3, minmax(0, 158px)); justify-content: center; gap: 10px; margin-top: 0; }
.store-button { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 6px 11px; color: #050609; text-align: left; border: 1px solid #0a0a0a; border-radius: 10px; background: #fff; opacity: 1; cursor: default; box-shadow: 0 0 0 1px rgba(255,255,255,.88), 0 10px 24px rgba(0,0,0,.28), -4px 0 18px rgba(0,232,255,.07), 4px 0 18px rgba(255,22,135,.08); }
.store-button svg { width: 30px; height: 30px; flex: none; fill: #050609; stroke: #050609; stroke-width: 2.7; }
.store-button .play-cyan { fill: var(--cyan); stroke: none; }
.store-button .play-pink { fill: var(--pink); stroke: none; }
.store-button .play-white { fill: #fbbc04; stroke: none; opacity: 1; }
.store-button .tiktok-cyan { stroke: var(--cyan); transform: translate(-1px, 1px); }
.store-button .tiktok-pink { stroke: var(--pink); transform: translate(1px, -1px); }
.store-button span { display: grid; line-height: 1.15; }
.store-button small { color: #181b20; font-size: 10px; font-weight: 800; letter-spacing: .01em; line-height: 1.05; }
.store-button b { color: #050609; font-size: 14px; line-height: 1.06; white-space: nowrap; }
.store-note { margin: 12px 0 0 !important; color: #677a90 !important; font-size: 10px !important; }

.contact-section { padding-top: 25px; }
.faq-section { padding-top: 42px; }
.faq-grid { max-width: 930px; display: grid; gap: 14px; margin-inline: auto; }
.faq-grid details { overflow: hidden; border: 1px solid rgba(0,232,255,.24); border-right-color: rgba(255,22,135,.3); border-radius: 20px; background: linear-gradient(115deg, rgba(0,232,255,.045), rgba(7,13,27,.9) 46%, rgba(255,22,135,.04)); box-shadow: inset 0 1px rgba(255,255,255,.035); }
.faq-grid summary { position: relative; padding: 22px 58px 22px 25px; color: #f5f9ff; font-size: 17px; font-weight: 800; line-height: 1.35; list-style: none; cursor: pointer; }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: "+"; position: absolute; top: 50%; right: 23px; width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(0,232,255,.42); border-radius: 50%; color: var(--cyan); font-size: 19px; line-height: 1; transform: translateY(-50%); transition: transform .2s ease, color .2s ease; }
.faq-grid details[open] summary::after { color: #f881bf; transform: translateY(-50%) rotate(45deg); }
.faq-grid details p { margin: -3px 58px 23px 25px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.seo-resource-links { max-width: 930px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 24px auto 0; }
.seo-resource-links a { padding: 11px 16px; border: 1px solid rgba(0,232,255,.24); border-radius: 999px; color: #d9e8f5; background: rgba(3,9,20,.72); font-size: 12px; font-weight: 750; }
.seo-resource-links a:hover, .seo-resource-links a:focus-visible { border-color: rgba(0,232,255,.58); color: white; outline: none; box-shadow: 0 0 20px rgba(0,232,255,.08); }
.contact-card { position: relative; display: grid; grid-template-columns: 112px minmax(0, 1fr) auto; gap: 34px; align-items: center; overflow: hidden; padding: 48px 52px; border: 1px solid rgba(0,232,255,.34); border-right-color: rgba(255,22,135,.38); border-radius: 34px; background: radial-gradient(circle at 8% 50%, rgba(0,232,255,.11), transparent 32%), radial-gradient(circle at 88% 32%, rgba(255,22,135,.10), transparent 34%), rgba(3,9,20,.94); box-shadow: var(--shadow); }
.contact-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,.025) 45%, transparent 66%); }
.contact-mark { position: relative; z-index: 1; width: 104px; height: 104px; display: grid; place-items: center; border: 1px solid rgba(0,232,255,.52); border-right-color: rgba(255,22,135,.56); border-radius: 30px; background: rgba(1,6,15,.88); box-shadow: -10px 0 35px rgba(0,232,255,.10), 10px 0 35px rgba(255,22,135,.10); }
.contact-mark svg { width: 56px; fill: none; stroke: white; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(-3px 0 8px rgba(0,232,255,.7)) drop-shadow(3px 0 8px rgba(255,22,135,.6)); }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { max-width: 670px; margin-bottom: 13px; font-size: clamp(35px, 4.2vw, 58px); line-height: 1.02; letter-spacing: -.05em; }
.contact-copy > p:not(.eyebrow) { max-width: 720px; margin-bottom: 10px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.contact-copy > span { color: #7489a0; font-size: 12px; }
.contact-button { position: relative; z-index: 1; min-width: 205px; white-space: nowrap; }

.site-footer { border-top: 1px solid var(--line); background: rgba(1,4,11,.8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 60px; padding-block: 60px 43px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid p { max-width: 380px; color: var(--muted); font-size: 13px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid strong { margin-bottom: 5px; font: 700 13px Space Grotesk; }
.footer-grid a, .footer-grid span { color: #8495a9; font-size: 12px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 19px 28px; border-top: 1px solid var(--line); color: #607186; font-size: 10px; }

.reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Shared legal and invitation pages */
.shell { width: min(980px, calc(100% - 40px)); margin-inline: auto; }
body:not(.landing) > header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 5, 13, .88);
  backdrop-filter: blur(18px);
}
body:not(.landing) > main, body:not(.landing) > footer { position: relative; z-index: 1; }
body:not(.landing) > .aurora, body:not(.landing) > .light-ribbons { z-index: 0; }
body:not(.landing) > header .shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}
body:not(.landing) > header .brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-right: auto;
  font: 700 21px/1 Space Grotesk, sans-serif;
  letter-spacing: -.05em;
}
body:not(.landing) > header .brand span,
body:not(.landing) .card h1 span,
body:not(.landing) .hero h1 span { color: var(--cyan); }
body:not(.landing) > header .brand small { color: var(--muted); font: 700 10px Inter, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
body:not(.landing) > header nav { display: flex; gap: 16px; }
body:not(.landing) > header nav a { color: var(--muted); font-size: 12px; font-weight: 600; }
body:not(.landing) > header nav a:hover { color: var(--cyan); }
body:not(.landing) main.legal { padding-block: 64px 100px; }
body:not(.landing) main.hero { min-height: calc(100vh - 150px); display: grid; align-items: center; padding-block: 55px; }
body:not(.landing) .card {
  width: 100%;
  padding: clamp(27px, 5vw, 58px);
  border: 1px solid rgba(0,232,255,.23);
  border-right-color: rgba(255,22,135,.23);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(7,16,31,.93), rgba(3,7,17,.96));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.05);
}
body:not(.landing) .card h1,
body:not(.landing) .hero > h1 { margin-bottom: 23px; font-size: clamp(42px, 7vw, 72px); line-height: 1; }
body:not(.landing) .card h2 { margin-top: 38px; margin-bottom: 12px; font-size: 23px; }
body:not(.landing) .card p,
body:not(.landing) .card li,
body:not(.landing) .lead { color: var(--muted); }
body:not(.landing) .card a:not(.button) { color: var(--cyan); }
body:not(.landing) .notice { padding: 17px 19px; border-left: 2px solid var(--pink); border-radius: 0 13px 13px 0; background: rgba(255,22,135,.065); }
body:not(.landing) .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
body:not(.landing) .secondary { color: white; border: 1px solid rgba(255,22,135,.55); background: rgba(3,8,18,.8); }
body:not(.landing) .code { display: block; width: fit-content; margin-top: 24px; padding: 11px 16px; color: var(--cyan); border: 1px solid rgba(0,232,255,.3); border-radius: 11px; background: #020913; font: 700 18px Space Grotesk, monospace; letter-spacing: .07em; }
body:not(.landing) .meta { margin-top: 22px; font-size: 12px; }
body:not(.landing) > footer { border-top: 1px solid var(--line); }
body:not(.landing) > footer .shell { padding-block: 24px; color: #708298; font-size: 11px; }
body:not(.landing) > footer a { color: var(--cyan); }

.legal-page { background: #02050d; }
.legal-shell { width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 54px 0 90px; }
.legal-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 35px; }
.legal-header .brand { font-weight: 800; }
.legal-header nav { display: flex; flex-wrap: wrap; gap: 15px; color: var(--muted); font-size: 12px; }
.legal-card { padding: clamp(25px, 5vw, 52px); border: 1px solid var(--line); border-radius: 28px; background: rgba(6,13,26,.88); box-shadow: var(--shadow); }
.legal-card h1 { margin-bottom: 16px; font-size: clamp(38px, 7vw, 62px); }
.legal-card h2 { margin-top: 38px; font-size: 23px; }
.legal-card h3 { margin-top: 27px; }
.legal-card p, .legal-card li { color: #abb9c9; font-size: 14px; }
.legal-card a { color: var(--cyan); }
.legal-card code { padding: 2px 6px; border-radius: 6px; background: #091627; }

@media (min-width: 821px) and (max-height: 820px) {
  .hero-section { padding-top: 90px; gap: 42px; }
  h1 { max-width: 620px; margin-block: 8px 10px; font-size: clamp(50px, 5vw, 70px); }
  .hero-lead { max-width: 620px; margin-bottom: 10px; font-size: 16px; line-height: 1.42; }
  .hero-odds { max-width: 620px; padding-block: 10px 9px; }
  .hero-odds strong { font-size: clamp(40px, 4.5vw, 60px); }
  .hero-odds small { margin-top: 3px; font-size: 11px; }
  .hero-copy > .web-launch-card { max-width: 620px; margin-block: 4px 6px; }
  .hero-downloads { max-width: 560px; margin: -5px auto 8px 30px; }
  .hero-downloads > p { margin-bottom: 10px !important; padding-block: 0; }
  .platforms-coming-soon { width: min(560px, calc(100vw - 28px)); }
  .hero-actions { margin-top: -1px; }
  .hero-metrics { margin-top: 12px; }
  .hero-visual { min-height: calc(100svh - 100px); padding-top: 0; }
  .phone-shell { width: 337px; height: 600px; }
}

@media (max-width: 1050px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: white;
    border: 1px solid rgba(255,22,135,.58);
    border-left-color: rgba(0,232,255,.62);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(3,19,31,.96), rgba(19,3,25,.96));
    box-shadow: -5px 0 20px rgba(0,232,255,.08), 5px 0 20px rgba(255,22,135,.09), inset 0 1px rgba(255,255,255,.08);
    cursor: pointer;
  }
  .mobile-menu-icon { width: 25px; height: 25px; display: block; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; filter: drop-shadow(-2px 0 5px rgba(0,232,255,.75)) drop-shadow(2px 0 5px rgba(255,22,135,.6)); }
  .mobile-menu-icon path { transform-box: fill-box; transform-origin: center; transition: transform .25s ease, opacity .2s ease; }
  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon path:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon path:nth-child(2) { opacity: 0; transform: scaleX(.35); }
  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon path:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(0,232,255,.38);
    border-right-color: rgba(255,22,135,.42);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(3,13,27,.98), rgba(12,3,20,.98));
    box-shadow: 0 24px 65px rgba(0,0,0,.64), -8px 0 35px rgba(0,232,255,.07), 8px 0 35px rgba(255,22,135,.08);
    backdrop-filter: blur(22px);
  }
  .main-nav.is-open a { min-height: 49px; display: flex; align-items: center; padding: 0 16px; border-radius: 13px; color: #eef8ff; font-size: 16px; font-weight: 750; }
  .main-nav.is-open a:hover, .main-nav.is-open a:focus-visible { color: white; background: linear-gradient(90deg, rgba(0,232,255,.11), rgba(255,22,135,.08)); }
  .site-header.menu-open { background: rgba(2,5,13,.94); border-color: var(--line); backdrop-filter: blur(20px); }
  .header-tools { margin-left: auto; }
  .hero-section { grid-template-columns: 1fr .85fr; gap: 30px; }
  .floating-chip { display: none; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-row: auto; min-height: 450px; }
  .bento-wide { grid-column: span 2; }
  .icon-orbit { height: 150px; }
  .plan-card { padding: 27px; }
  .plan-art-grid { gap: 12px; }
  .download-card { grid-template-columns: 180px 1fr; gap: 35px; padding: 45px; }
  .download-card > img { width: 180px; height: 180px; }
  .contact-card { grid-template-columns: 90px minmax(0, 1fr); padding: 40px; }
  .contact-mark { width: 86px; height: 86px; border-radius: 25px; }
  .contact-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 28px, 680px); --radius: 23px; }
  .section { padding-block: 86px; }
  .header-inner { min-height: 92px; gap: 12px; }
  .mini-rings, .sound-control span:last-child { display: none; }
  .brand-icon { width: 74px; height: 74px; flex-basis: 74px; border-radius: 21px; }
  .brand-domain { font-size: 11px; }
  .sound-control { width: 48px; height: 48px; justify-content: center; padding: 0; border-color: rgba(0,232,255,.58); box-shadow: 0 0 20px rgba(0,232,255,.12), inset 0 0 16px rgba(255,22,135,.055); }
  .sound-control svg { width: 23px; height: 23px; stroke-width: 2; }
  .hero-section { min-height: auto; grid-template-columns: 1fr; padding-top: 102px; padding-bottom: 90px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 590px; margin-top: 10px; }
  .hero-metrics { justify-content: center; }
  .phone-shell { transform: none; }
  .section-heading { margin-bottom: 40px; }
  .bento-grid, .steps, .plan-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: auto; }
  .steps { max-width: 600px; margin-inline: auto; }
  .step-card { min-height: auto; }
  .premium-card { transform: none; }
  .plan-art-grid { grid-template-columns: minmax(0, 560px); max-width: 620px; margin-inline: auto; }
  .original-screen { width: min(620px, 100%); }
  .possibility-card { grid-template-columns: 1fr; padding: 45px 35px; text-align: center; }
  .possibility-graphic { height: 270px; }
  .safety-layout { grid-template-columns: 1fr; gap: 42px; }
  .safety-layout .section-heading { position: static; }
  .download-card { grid-template-columns: 1fr; text-align: center; }
  .download-card > img { width: 220px; height: 220px; margin-inline: auto; }
  .store-buttons { grid-template-columns: repeat(3, minmax(135px, 158px)); justify-content: center; }
  .hero-downloads { width: 100%; text-align: left; }
  .hero-store-buttons { grid-template-columns: repeat(3, minmax(135px, 158px)); }
  .contact-card { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .contact-mark { margin-inline: auto; }
  .contact-button { grid-column: auto; justify-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 24px); }
  .header-inner { width: calc(100% - 16px); gap: 6px; }
  .header-tools { gap: 5px; }
  .brand-icon { width: 64px; height: 64px; flex-basis: 64px; border-radius: 18px; }
  .language-trigger { min-width: 82px; min-height: 48px; gap: 6px; padding: 0 7px; }
  .language-trigger .language-flag { width: 24px; height: 17px; }
  .language-trigger .language-code { font-size: 13px; }
  .language-menu { position: absolute; top: calc(100% + 8px); right: 0; width: min(250px, calc(100vw - 16px)); max-height: calc(100dvh - 100px); overflow-y: auto; }
  .sound-control { width: 48px; height: 48px; flex: 0 0 48px; }
  .sound-control svg { width: 25px; height: 25px; stroke-width: 2.1; }
  .sound-control[aria-pressed="true"] { box-shadow: 0 0 25px rgba(0,232,255,.24), inset 0 0 17px rgba(255,22,135,.08); }
  .mobile-menu-toggle { width: 48px; height: 48px; flex-basis: 48px; }
  .light-ribbons { opacity: .62; }
  .light-ribbons i { width: 1px; box-shadow: 0 0 8px rgba(var(--beam-color),.68), 0 0 22px rgba(var(--beam-color),.22); }
  .light-ribbons i:nth-child(3), .light-ribbons i:nth-child(6) { display: none; }
  .light-ribbons::before, .light-ribbons::after { height: 1px; }
  .brand-domain { display: none; }
  .hero-section, .hero-copy, .hero-copy > *, .download-card, .download-copy, .download-copy > * { min-width: 0; max-width: 100%; }
  h1 { width: 100%; margin: 10px 0 12px; font-size: clamp(39px, 12vw, 50px); line-height: .96; overflow-wrap: break-word; hyphens: auto; }
  html[lang="ro"] h1, html[lang="de"] h1 { font-size: clamp(36px, 10.8vw, 45px); }
  .hero-lead { width: 100%; margin-bottom: 11px; font-size: 15px; line-height: 1.48; overflow-wrap: break-word; }
  .hero-odds { width: 100%; grid-template-columns: auto minmax(0,auto); grid-template-areas: "label number" "body body"; column-gap: 9px; margin-bottom: 8px; padding: 11px 12px 10px; text-align: center; }
  .hero-odds span { align-self: end; padding-bottom: 4px; font-size: 13px; }
  .hero-odds strong { font-size: clamp(38px, 11.5vw, 48px); }
  .hero-odds small { margin-top: 8px; max-width: 285px; font-size: 12px; font-weight: 900; line-height: 1.35; letter-spacing: .055em; text-align: center; }
  .hero-downloads { margin: -5px auto 12px; text-align: center; }
  .hero-downloads > p, .future-platform-label { font-size: 15px !important; line-height: 1.3; }
  .platforms-coming-soon { width: min(100%, 360px); }
  .store-buttons, .hero-store-buttons { width: min(174px, 100%); grid-template-columns: 1fr; gap: 8px; margin-inline: auto; }
  .hero-store-buttons .store-button { min-width: 0; min-height: 50px; justify-content: center; padding: 6px 10px; }
  .hero-store-buttons .store-button svg { width: 29px; height: 29px; }
  .hero-store-buttons .store-button b { font-size: 14px; white-space: nowrap; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .web-launch-card { width: min(100%, 330px); min-width: 0; margin: 8px auto 20px; }
  .hero-copy > .web-launch-card { width: 100%; }
  .compact-launch { margin: 18px auto 20px; }
  .hero-metrics { width: 100%; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 6px; }
  .hero-metrics div { min-width: 0; place-items: center; text-align: center; }
  .hero-metrics strong { font-size: 20px; }
  .hero-metrics span { max-width: 100%; font-size: 7.5px; overflow-wrap: anywhere; }
  .hero-visual { min-height: 570px; }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 340px; height: 340px; }
  .phone-shell { width: min(310px, 86vw); height: 548px; }
  .section-heading h2, .possibility-copy h2, .download-copy h2 { max-width: 100%; font-size: 35px; overflow-wrap: break-word; hyphens: auto; }
  .section-heading > p:last-child, .possibility-copy > p:last-child, .download-copy > p { font-size: 15px; }
  .bento-card { padding: 25px; }
  .bento-wide { display: block; }
  .language-cloud { justify-content: flex-start; margin-top: 28px; }
  .possibility-card { padding: 35px 23px; }
  .giant-rings i, .giant-rings b { width: 180px; height: 180px; }
  .giant-rings i { transform: translateX(-55px); }
  .giant-rings b { transform: translateX(55px); }
  .safety-item { grid-template-columns: 48px 1fr; padding: 20px; gap: 15px; }
  .safety-item > span { width: 46px; height: 46px; }
  .landing-plan-tabs { gap: 3px; margin-bottom: 17px; }
  .landing-plan-tabs button { min-height: 0; padding: 0; border-radius: 999px; }
  .landing-plan-tabs small { font-size: 6px; }
  .landing-plan-tabs b { font-size: clamp(9px,2.9vw,12px); }
  .plan-card { min-height: 510px; }
  .plan-art { border-radius: 22px; }
  .original-screen, .original-screen img { border-radius: 22px; }
  .download-card { padding: 35px 22px; }
  .contact-card { padding: 34px 22px; }
  .faq-grid summary { padding: 20px 52px 20px 20px; font-size: 16px; }
  .faq-grid summary::after { right: 18px; }
  .faq-grid details p { margin: -2px 20px 20px; font-size: 14px; }
  .seo-resource-links { align-items: stretch; flex-direction: column; }
  .seo-resource-links a { text-align: center; }
  .contact-copy > p:not(.eyebrow) { font-size: 15px; }
  .contact-button { width: 100%; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .legal-shell { width: calc(100% - 24px); padding-top: 25px; }
  .legal-header { align-items: flex-start; }
  body:not(.landing) > header .shell { min-height: 70px; flex-wrap: wrap; padding-block: 12px; }
  body:not(.landing) > header nav { width: 100%; order: 3; padding-bottom: 4px; }
  body:not(.landing) .shell { width: calc(100% - 24px); }
  body:not(.landing) main.legal { padding-block: 30px 70px; }
  body:not(.landing) main.hero { padding-block: 32px; }
}

@media (max-width: 560px) and (max-height: 720px) {
  .hero-section { padding-top: 92px; }
  h1 { margin-block: 7px 9px; font-size: clamp(36px, 11vw, 46px); }
  html[lang="ro"] h1, html[lang="de"] h1 { font-size: clamp(33px, 10vw, 42px); }
  .hero-lead { margin-bottom: 8px; font-size: 13.5px; line-height: 1.4; }
  .hero-odds { margin-bottom: 6px; padding-block: 9px; }
  .hero-odds strong { font-size: clamp(35px, 10.8vw, 44px); }
  .hero-odds small { margin-top: 5px; font-size: 10.5px; }
  .web-launch-card { margin-top: 6px; }
}

@media (max-width: 360px) {
  .brand-domain { display: none; }
  .header-inner { gap: 8px; }
  .header-tools { gap: 6px; }
}

@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; }
  .light-ribbons { opacity: .32; }
  .light-ribbons::before, .light-ribbons::after { display: none; }
  .light-ribbons i { top: -15vh; opacity: .24; animation: none !important; transform: rotate(var(--beam-angle)); }
}
