:root {
  --ink: #08070d;
  --ink-2: #100d17;
  --paper: #f7f5f7;
  --mist: #b7b1bd;
  --accent: #ff4d78;
  --accent-2: #ff2f65;
  --purple: #8d5cff;
  --line: rgba(255,255,255,.11);
  --shell: min(1200px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: "DM Sans", sans-serif; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }
.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; }
.section-shell { width: var(--shell); margin-inline: auto; }

.site-header { width: var(--shell); height: 104px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: "Manrope", sans-serif; font-weight: 800; font-size: 25px; letter-spacing: -.8px; }
.brand-mark { position: relative; display: inline-block; width: 36px; height: 36px; border-radius: 10px 10px 10px 4px; background: linear-gradient(145deg, #ff7696 0%, var(--accent-2) 65%); box-shadow: 0 8px 28px rgba(255,47,101,.3); }
.brand-mark span { position: absolute; left: 13px; top: 9px; width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 13px solid #fff; }
.main-nav { display: flex; gap: 43px; align-items: center; font-size: 15px; color: #dad6de; }
.main-nav a { position: relative; padding: 12px 0; transition: color .25s ease; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 5px; width: 0; height: 2px; background: var(--accent); transition: width .25s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; color: white; }
.menu-toggle > span:not(.sr-only) { width: 24px; height: 2px; background: currentColor; display: block; margin: 5px 0; }

.hero { min-height: calc(100svh - 104px); max-width: 1480px; margin: 0 auto; padding: 70px max(40px, calc((100vw - 1200px)/2)) 120px; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 65px; position: relative; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: -104px 50% 0 -20vw; z-index: -3; background: radial-gradient(ellipse at 35% 35%, rgba(75,30,82,.22), transparent 57%), linear-gradient(105deg, #0d0a13, #08070d 75%); }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; left: -190px; bottom: -180px; border-radius: 50%; border: 1px solid rgba(255,77,120,.18); box-shadow: 0 0 0 65px rgba(255,77,120,.025), 0 0 0 130px rgba(255,77,120,.018); z-index: -2; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(25px); opacity: .55; z-index: -2; pointer-events: none; }
.hero-glow-one { width: 430px; height: 430px; right: 5%; top: 8%; background: radial-gradient(circle, rgba(255,45,102,.28), transparent 67%); }
.hero-glow-two { width: 260px; height: 260px; right: 29%; bottom: 7%; background: radial-gradient(circle, rgba(112,78,255,.23), transparent 68%); }
.eyebrow { margin: 0 0 24px; color: #e8e3eb; font-size: 13px; text-transform: uppercase; letter-spacing: 2.4px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 29px; height: 2px; background: var(--accent); display: inline-block; }
h1, h2, h3 { font-family: "Manrope", sans-serif; margin: 0; }
h1 { font-size: clamp(54px, 5.2vw, 78px); line-height: .98; letter-spacing: -4.7px; font-weight: 800; }
h1 em, h2 em { color: var(--accent); font-style: normal; }
.hero-lede { max-width: 580px; margin: 30px 0 0; color: var(--mist); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 37px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 56px; border-radius: 999px; padding: 0 24px; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { background: var(--accent); color: white; box-shadow: 0 15px 35px rgba(255,47,101,.25); }
.button-primary:hover { background: #ff648a; box-shadow: 0 18px 44px rgba(255,47,101,.33); }
.platform-pill { min-height: 56px; border: 1px solid var(--line); background: rgba(255,255,255,.035); border-radius: 999px; padding: 0 22px; display: inline-flex; align-items: center; gap: 11px; color: #f3f0f4; font-weight: 600; }
.platform-pill small { display: block; color: #87818e; font-size: 8px; line-height: 1.3; letter-spacing: 1.3px; }
.android-icon { width: 22px; height: 17px; display: inline-block; background: var(--accent); border-radius: 10px 10px 3px 3px; position: relative; }
.android-icon::before, .android-icon::after { content: ""; position: absolute; top: -5px; width: 1px; height: 7px; background: var(--accent); }
.android-icon::before { left: 5px; transform: rotate(-28deg); }.android-icon::after { right: 5px; transform: rotate(28deg); }
.hero-proof { display: flex; gap: 0; margin-top: 34px; color: #77717d; font-size: 12px; text-transform: uppercase; letter-spacing: 1.3px; }
.hero-proof span { padding: 0 18px; border-left: 1px solid var(--line); }.hero-proof span:first-child { padding-left: 0; border: 0; }

.hero-visual { position: relative; align-self: center; padding: 35px 0 45px; }
.tv-wrap { position: relative; z-index: 2; filter: drop-shadow(0 45px 50px rgba(0,0,0,.62)); transform: perspective(1200px) rotateY(-5deg) rotateX(1deg); }
.tv-frame { position: relative; background: linear-gradient(145deg, #3f4149, #0b0c10 45%, #252830); border-radius: 26px; padding: 12px 12px 18px; box-shadow: inset 0 1px 2px rgba(255,255,255,.28), inset 0 -5px 12px #050506, 0 0 0 1px rgba(255,255,255,.08); }
.tv-screen { aspect-ratio: 16/9; overflow: hidden; border-radius: 16px; position: relative; background: #000; box-shadow: inset 0 0 0 2px #030303; }
.tv-screen img { width: 100%; height: 100%; object-fit: cover; }
.screen-sheen { position: absolute; inset: 0; background: linear-gradient(118deg, rgba(255,255,255,.11), transparent 20%, transparent 76%, rgba(255,255,255,.03)); pointer-events: none; }
.tv-led { position: absolute; width: 3px; height: 3px; right: 24px; bottom: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 5px var(--accent); }
.tv-neck { width: 12%; height: 32px; margin: -1px auto 0; background: linear-gradient(90deg, #15161a, #3a3b43 50%, #101115); clip-path: polygon(22% 0, 78% 0, 100% 100%, 0 100%); }
.tv-foot { width: 38%; height: 10px; margin: 0 auto; border-radius: 50% 50% 4px 4px; background: linear-gradient(#41424a, #101115); box-shadow: 0 8px 16px rgba(0,0,0,.5); }
.tv-halo { position: absolute; inset: -13%; border-radius: 40%; background: conic-gradient(from 90deg, rgba(141,92,255,.05), rgba(255,77,120,.5), rgba(141,92,255,.18), rgba(255,77,120,.45), rgba(141,92,255,.05)); filter: blur(35px); opacity: .65; z-index: -1; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(18,15,24,.82); box-shadow: 0 18px 45px rgba(0,0,0,.4); backdrop-filter: blur(14px); }
.floating-card span:last-child { display: grid; gap: 2px; }.floating-card strong { font-size: 12px; }.floating-card small { color: #908a96; font-size: 10px; }
.floating-card-top { top: 1%; right: -2%; }.floating-card-bottom { left: -5%; bottom: 5%; }
.live-dot { width: 10px; height: 10px; border: 3px solid rgba(255,77,120,.26); outline: 2px solid var(--accent); border-radius: 50%; background: var(--accent); }
.remote-mini { width: 29px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 10px; display: grid!important; place-items: center; font-size: 8px; color: var(--accent); }

.marquee-band { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0c0a11; transform: rotate(-1deg) scale(1.02); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 38px; padding: 22px 0; animation: marquee 24s linear infinite; font-family: "Manrope"; font-size: 14px; font-weight: 800; letter-spacing: 4px; color: #8d8792; }
.marquee-track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.experience { padding: 160px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 60px; }
.section-heading .eyebrow { grid-column: 1/-1; margin-bottom: 0; }
h2 { font-size: clamp(44px, 5vw, 70px); line-height: 1.04; letter-spacing: -3.8px; }
.section-heading > p:last-child { max-width: 470px; justify-self: end; margin: 0 0 5px; color: var(--mist); line-height: 1.72; font-size: 17px; }
.showcase-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .75fr); gap: 24px; }
.showcase-main, .showcase-side { border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: var(--ink-2); }
.image-panel { position: relative; overflow: hidden; }.image-panel::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, #100d17); }
.image-panel img { aspect-ratio: 16/9; object-fit: cover; }
.showcase-copy { padding: 27px 31px 32px; display: grid; grid-template-columns: auto 1fr; gap: 22px; }
.number { color: var(--accent); font-family: "Manrope"; font-size: 13px; font-weight: 800; letter-spacing: 1px; }
.showcase-copy h3, .showcase-side h3 { font-size: 25px; letter-spacing: -.8px; }.showcase-copy p, .showcase-side p { margin: 8px 0 0; color: var(--mist); line-height: 1.6; }
.showcase-side { padding: 32px; min-height: 100%; display: flex; flex-direction: column; }
.remote-orbit { min-height: 350px; display: grid; place-items: center; position: relative; margin: -20px -15px 10px; }
.remote-orbit::before, .remote-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,77,120,.19); }.remote-orbit::before { width: 280px; height: 280px; }.remote-orbit::after { width: 210px; height: 210px; box-shadow: 0 0 55px rgba(255,77,120,.12); }
.remote-body { width: 104px; height: 290px; border-radius: 44px; border: 2px solid #46414d; background: linear-gradient(150deg, #23202a, #0b0a0e); position: relative; z-index: 2; box-shadow: 12px 20px 30px rgba(0,0,0,.48), inset 3px 3px 8px rgba(255,255,255,.06); transform: rotate(12deg); }
.remote-power { width: 15px; height: 15px; border: 2px solid var(--accent); border-radius: 50%; position: absolute; top: 26px; left: 45px; }
.dpad { position: absolute; left: 15px; top: 75px; width: 74px; height: 74px; border-radius: 50%; background: #2c2931; border: 1px solid #45414a; display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(3,1fr); place-items: center; color: #77717d; font-size: 10px; }
.dpad b:nth-child(1) { grid-column: 2 }.dpad b:nth-child(2) { grid-row: 2; grid-column: 1 }.dpad-ok { grid-row: 2; grid-column: 2; color: white!important; width: 25px; height: 25px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-size: 7px; }.dpad b:nth-child(4) { grid-row: 2; grid-column: 3 }.dpad b:nth-child(5) { grid-row: 3; grid-column: 2 }
.remote-line { position: absolute; width: 45px; height: 5px; border-radius: 5px; left: 30px; top: 185px; background: #2d2932; }.remote-line.short { top: 207px; width: 29px; left: 38px; }
.showcase-side .number { margin-top: auto; }.showcase-side h3 { margin-top: 12px; }

.features { padding: 120px 0 150px; }
.feature-intro { display: flex; justify-content: space-between; align-items: end; margin-bottom: 54px; }.feature-intro .eyebrow { align-self: start; margin-top: 11px; }
.feature-list { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4,1fr); }
.feature-card { padding: 36px 27px 0; border-left: 1px solid var(--line); min-height: 275px; }.feature-card:first-child { border-left: 0; padding-left: 0; }.feature-card:last-child { padding-right: 0; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: rgba(255,77,120,.1); border: 1px solid rgba(255,77,120,.2); color: var(--accent); font-size: 14px; font-weight: 800; }
.feature-card h3 { margin-top: 44px; font-size: 20px; letter-spacing: -.5px; }.feature-card p { margin: 13px 0 0; color: #938d99; line-height: 1.6; font-size: 15px; }

.immersive { padding-bottom: 140px; }
.immersive-frame { min-height: 620px; border-radius: 32px; overflow: hidden; position: relative; display: flex; align-items: end; background: #0e0c14; }
.immersive-frame > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; opacity: .68; }
.immersive-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,7,13,.97) 0%, rgba(8,7,13,.75) 38%, rgba(8,7,13,.08) 78%), linear-gradient(0deg, rgba(8,7,13,.8), transparent 55%); }
.immersive-copy { position: relative; z-index: 2; padding: 75px; max-width: 630px; }.immersive-copy p:last-child { color: #bbb5c0; font-size: 17px; line-height: 1.7; max-width: 520px; margin: 27px 0 0; }

.cta { padding-bottom: 110px; }.cta-card { min-height: 420px; border-radius: 32px; padding: 64px 70px; background: var(--accent); display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: end; position: relative; overflow: hidden; }
.cta-card::after { content: ""; position: absolute; width: 400px; height: 400px; right: -110px; top: -180px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.05), 0 0 0 140px rgba(255,255,255,.035); }
.cta-card .eyebrow > span { background: white; }.cta-card h2 em { color: #260812; }.cta-side { position: relative; z-index: 2; }.cta-side p { font-size: 18px; line-height: 1.65; margin: 0 0 26px; }.button-light { background: white; color: #1c0a10; min-width: 280px; }

.site-footer { width: var(--shell); margin: 0 auto; padding: 0 0 45px; }.footer-top { padding: 54px 0; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }.footer-top p { color: #807a86; }.footer-bottom { border-top: 1px solid var(--line); padding-top: 28px; display: flex; justify-content: space-between; color: #77717d; font-size: 13px; }.footer-bottom div { display: flex; gap: 30px; }.footer-bottom a:hover { color: white; }

.legal-page { min-height: 100vh; background: var(--ink); }.legal-main { width: min(780px, calc(100vw - 48px)); margin: 70px auto 120px; }.legal-main h1 { font-size: clamp(46px, 7vw, 76px); }.legal-main .updated { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1.8px; margin: 20px 0 55px; }.legal-main h2 { font-size: 25px; letter-spacing: -.8px; margin: 42px 0 14px; }.legal-main p, .legal-main li { color: #b5afbb; line-height: 1.78; font-size: 16px; }.legal-main a { color: var(--accent); }.legal-back { display: inline-flex; margin-bottom: 50px; color: #aaa4af; }

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

@media (max-width: 1060px) {
  :root { --shell: min(100% - 48px, 900px); }
  .hero { grid-template-columns: 1fr; padding: 70px 24px 100px; text-align: center; }
  .hero-copy { max-width: 720px; margin: 0 auto; }.eyebrow, .hero-actions { justify-content: center; }.hero-lede { margin-left: auto; margin-right: auto; }.hero-proof { justify-content: center; }
  .hero-visual { width: min(830px, 92vw); margin: 0 auto; }.tv-wrap { transform: none; }
  .showcase-grid { grid-template-columns: 1fr; }.showcase-side { display: grid; grid-template-columns: 1fr 1fr; column-gap: 35px; align-items: end; }.remote-orbit { grid-row: 1/4; min-height: 370px; }.showcase-side .number { margin: 0; }
  .feature-list { grid-template-columns: 1fr 1fr; }.feature-card:nth-child(3) { border-left: 0; }.feature-card { border-top: 1px solid var(--line); padding: 32px!important; }.feature-card:nth-child(-n+2) { border-top: 0; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 36px); }.site-header { height: 82px; }.brand { font-size: 21px; }.brand-mark { width: 32px; height: 32px; }.brand-mark span { left: 12px; top: 8px; border-top-width: 8px; border-bottom-width: 8px; border-left-width: 11px; }
  .menu-toggle { display: block; z-index: 30; }.main-nav { position: fixed; inset: 0; background: rgba(8,7,13,.97); display: flex; flex-direction: column; justify-content: center; gap: 30px; font: 700 32px "Manrope"; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .25s ease; }.menu-open .main-nav { opacity: 1; pointer-events: auto; transform: none; }
  .hero { min-height: auto; padding: 55px 18px 90px; gap: 45px; }.hero::before { right: 0; }.hero-copy { text-align: left; }.hero-copy .eyebrow, .hero-actions { justify-content: flex-start; } h1 { font-size: clamp(48px, 15vw, 66px); letter-spacing: -3.5px; }.hero-lede { font-size: 16px; }.hero-actions { align-items: stretch; flex-direction: column; }.button, .platform-pill { width: 100%; }.platform-pill { justify-content: center; }.hero-proof { justify-content: flex-start; flex-wrap: wrap; gap: 12px; }.hero-proof span { padding: 0 12px; }.floating-card { display: none; }.tv-frame { padding: 6px 6px 10px; border-radius: 15px; }.tv-screen { border-radius: 10px; }.tv-neck { height: 18px; }.tv-foot { height: 6px; }
  .marquee-track { padding: 18px 0; font-size: 12px; gap: 26px; }
  .experience { padding: 110px 0 80px; }.section-heading { grid-template-columns: 1fr; margin-bottom: 38px; }.section-heading > p:last-child { justify-self: start; }.section-heading .eyebrow { grid-column: auto; } h2 { font-size: clamp(40px, 13vw, 58px); letter-spacing: -3px; }.showcase-main, .showcase-side { border-radius: 20px; }.showcase-copy { padding: 25px 22px; }.showcase-side { display: flex; padding: 25px; }.remote-orbit { min-height: 315px; width: 100%; }.remote-body { transform: rotate(8deg) scale(.9); }.showcase-side .number { margin-top: auto; }
  .features { padding: 80px 0 100px; }.feature-intro { display: block; }.feature-intro .eyebrow { margin-bottom: 24px; }.feature-list { grid-template-columns: 1fr; }.feature-card { border-left: 0; border-top: 1px solid var(--line)!important; min-height: auto; padding: 28px 0 32px!important; }.feature-card h3 { margin-top: 24px; }
  .immersive { width: 100%; padding-bottom: 90px; }.immersive-frame { min-height: 610px; border-radius: 0; }.immersive-frame > img { object-position: 63% center; }.immersive-overlay { background: linear-gradient(0deg, rgba(8,7,13,.98) 0%, rgba(8,7,13,.75) 55%, rgba(8,7,13,.15)); }.immersive-copy { padding: 35px 24px; }.immersive-copy .eyebrow { justify-content: flex-start; }
  .cta { width: 100%; padding-bottom: 80px; }.cta-card { border-radius: 0; padding: 45px 24px; grid-template-columns: 1fr; min-height: 520px; gap: 50px; }.button-light { min-width: 0; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 24px; }.footer-bottom div { flex-wrap: wrap; }
}

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