:root {
  --bg: #120826;
  --bg-2: #180d32;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f6f0ff;
  --muted: #c8bcf1;
  --soft: #a78ff0;
  --primary: #bf7dff;
  --primary-2: #8c5bff;
  --accent: #72e0ff;
  --glow: #ffb5ff;
  --shadow: 0 24px 80px rgba(7, 3, 19, 0.45);
  --radius: 30px;
  --radius-lg: 42px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, rgba(191,125,255,.15), transparent 25%), radial-gradient(circle at 85% 18%, rgba(114,224,255,.12), transparent 20%), linear-gradient(180deg, #120826 0%, #1a0c38 50%, #170a32 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 100px 0; }
.site-bg { position: fixed; inset: 0; pointer-events: none; z-index: -3; overflow: hidden; }
.mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .85;
}
.mesh-a {
  width: 540px; height: 540px; top: -140px; left: -120px;
  background: radial-gradient(circle, rgba(191,125,255,.45), rgba(191,125,255,0) 70%);
  animation: drift-a 18s ease-in-out infinite;
}
.mesh-b {
  width: 560px; height: 560px; bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(114,224,255,.3), rgba(114,224,255,0) 70%);
  animation: drift-b 20s ease-in-out infinite;
}
.mesh-c {
  width: 420px; height: 420px; top: 38%; right: 14%;
  background: radial-gradient(circle, rgba(255,181,255,.18), rgba(255,181,255,0) 72%);
  animation: drift-c 16s ease-in-out infinite;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,.9), transparent 85%);
  opacity: .5;
}
@keyframes drift-a { 0%,100% { transform: translate3d(0,0,0);} 50% { transform: translate3d(40px, 28px, 0);} }
@keyframes drift-b { 0%,100% { transform: translate3d(0,0,0);} 50% { transform: translate3d(-32px, -30px, 0);} }
@keyframes drift-c { 0%,100% { transform: translate3d(0,0,0);} 50% { transform: translate3d(20px, 28px, 0);} }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(14, 8, 30, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-shell {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
}
.brand-mark {
  width: 56px; height: 56px; border-radius: 20px;
  display: grid; place-items: center; position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 30px rgba(0,0,0,.28);
}
.brand-core {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--primary));
  box-shadow: 0 0 20px rgba(191,125,255,.7);
}
.brand-orbit {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); transform: rotate(-28deg);
}
.brand-orbit::after {
  content: ''; position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: var(--glow); top: -2px; right: 6px; box-shadow: 0 0 16px rgba(255,181,255,.8);
}
.brand-text strong { display: block; font-size: 1rem; }
.brand-text small { display: block; color: var(--muted); font-size: .8rem; margin-top: 3px; }

.main-nav {
  display: flex; justify-content: center; gap: 28px;
}
.main-nav a {
  color: var(--muted); font-weight: 700; font-size: .95rem;
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none; width: 48px; height: 48px;
  border-radius: 16px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.menu-toggle span { width: 18px; height: 2px; border-radius: 999px; background: #fff; }
body.menu-open { overflow: hidden; }

.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: 999px; font-weight: 800;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
  border: 1px solid transparent;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #14091c;
  background: linear-gradient(135deg, #ffffff, #d5b7ff 55%, #97e7ff);
  box-shadow: 0 16px 40px rgba(191,125,255,.28);
}
.button-secondary {
  background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.12);
}
.button-ghost {
  background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.1);
}

.label-pill,
.section-tag,
.mini-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #f4eaff;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}
.label-pill::before,
.section-tag::before,
.mini-kicker::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(180deg, var(--accent), var(--primary));
  box-shadow: 0 0 16px rgba(191,125,255,.7);
}

.hero { padding-top: 78px; }
.hero-layout {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center;
}
.hero-copy h1,
.feature-band-card h2,
.section-heading h2,
.experience-left h2,
.strip-copy h2,
.roadmap-head h2,
.contact-copy h2,
.policy-shell h1 {
  font-family: 'Syne', sans-serif;
  line-height: .95;
  letter-spacing: -.04em;
  margin: 18px 0 18px;
}
.hero-copy h1 { font-size: clamp(3.2rem, 5vw, 6rem); max-width: 10ch; }
.feature-band-card h2,
.section-heading h2,
.experience-left h2,
.strip-copy h2,
.roadmap-head h2,
.contact-copy h2,
.policy-shell h1 { font-size: clamp(2.3rem, 3.7vw, 4rem); }
.hero-lead,
.feature-band-card p,
.section-heading p,
.product-card p,
.experience-list p,
.service-card p,
.roadmap-step p,
.contact-copy p,
.contact-panel a,
.footer-brand p,
.policy-card p,
.policy-intro {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-stats {
  display: grid; gap: 14px; margin-top: 34px;
}
.hero-stats article {
  display: grid; grid-template-columns: 80px 1fr; gap: 14px; align-items: center;
  padding: 16px 18px; border-radius: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.hero-stats strong { font-family: 'Syne', sans-serif; font-size: 1.35rem; color: #fff; }
.hero-stats span { color: var(--muted); }

.hero-scene {
  position: relative; min-height: 800px; padding: 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow); overflow: hidden;
}
.spotlight {
  position: absolute; inset: auto; width: 440px; height: 440px; right: -20px; top: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,125,255,.35), rgba(191,125,255,0) 70%);
}
.app-surface {
  position: absolute; border-radius: 30px; overflow: hidden; box-shadow: 0 24px 60px rgba(6, 3, 16, .48);
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08);
}
.poster-card {
  width: 82%; top: 34px; right: 18px; border-radius: 26px;
}
.poster-card img { width: 100%; }
.phone-large {
  width: min(48%, 290px); left: 26px; bottom: 34px; padding: 10px;
}
.phone-large img { border-radius: 22px; }
.phone-small {
  width: min(38%, 220px); right: 30px; bottom: 110px; padding: 10px;
}
.phone-small img { border-radius: 22px; }
.signal-card {
  position: absolute; left: 36px; top: 178px; z-index: 3; max-width: 270px;
  display: flex; gap: 12px; align-items: flex-start; padding: 18px; border-radius: 22px;
  background: rgba(9, 5, 25, .65); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.signal-card strong { display: block; margin-bottom: 6px; }
.signal-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .95rem; }
.signal-dot {
  flex: 0 0 auto; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: #7af0ff; box-shadow: 0 0 20px rgba(122,240,255,.9);
}
.float-slow { animation: floatSlow 7s ease-in-out infinite; }
.float-fast { animation: floatFast 6s ease-in-out infinite; }
.pulse-card { animation: pulseCard 4s ease-in-out infinite; }
@keyframes floatSlow { 0%,100% { transform: translateY(0) rotate(-3deg);} 50% { transform: translateY(-12px) rotate(-4deg);} }
@keyframes floatFast { 0%,100% { transform: translateY(0) rotate(7deg);} 50% { transform: translateY(12px) rotate(8deg);} }
@keyframes pulseCard { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-4px);} }

.feature-band {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px;
}
.feature-band-card {
  padding: 34px; border-radius: 30px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.feature-band-card.accent {
  background: linear-gradient(155deg, rgba(191,125,255,.17), rgba(114,224,255,.08));
  align-self: stretch; display: flex; flex-direction: column; justify-content: center;
}

.product-layout { display: grid; gap: 30px; }
.section-heading { max-width: 760px; }
.section-heading.narrow { max-width: 820px; }
.product-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.product-card {
  padding: 28px; border-radius: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.product-card h3, .service-card h3, .roadmap-step h3 { margin: 16px 0 10px; font-size: 1.15rem; }
.icon-badge {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.14);
  font-weight: 800; color: #fff; font-size: 1.25rem;
}

.experience-layout {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center;
}
.experience-list { display: grid; gap: 18px; margin-top: 24px; }
.experience-list article {
  padding: 18px 20px; border-left: 3px solid rgba(151, 231, 255, .55); background: rgba(255,255,255,.04); border-radius: 0 22px 22px 0;
}
.experience-list strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.experience-list p { margin: 0; }
.screen-stack {
  position: relative; min-height: 760px;
}
.screen-card {
  position: absolute; padding: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; box-shadow: var(--shadow);
}
.screen-card img { border-radius: 20px; }
.card-main { width: min(46%, 280px); left: 20px; bottom: 10px; transform: rotate(-5deg); }
.card-top { width: min(40%, 230px); right: 40px; top: 0; transform: rotate(4deg); }
.card-bottom { width: min(41%, 235px); right: 0; bottom: 0; transform: rotate(6deg); }

.studio-strip { padding-top: 40px; }
.strip-shell {
  padding: 34px; border-radius: 30px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.strip-copy { max-width: 620px; }
.ticker { overflow: hidden; margin-top: 24px; }
.ticker-track {
  display: flex; gap: 34px; width: max-content; white-space: nowrap; animation: tickerMove 26s linear infinite;
}
.ticker-track span {
  color: #f0e7ff; font-size: .84rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 800;
}
.ticker-track span::after {
  content: '•'; color: var(--accent); margin-left: 34px;
}
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px;
}
.service-card {
  position: relative; overflow: hidden;
  padding: 28px; border-radius: 30px; background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.service-card::after {
  content: ''; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -22px; bottom: -26px; background: radial-gradient(circle, rgba(191,125,255,.28), rgba(191,125,255,0) 70%);
}
.service-no {
  display: inline-block; font-family: 'Syne', sans-serif; color: var(--accent); font-size: 1rem; letter-spacing: .08em;
}

.roadmap-layout { display: grid; gap: 24px; }
.roadmap-steps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.roadmap-step {
  padding: 26px; border-radius: 28px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
  position: relative;
}
.roadmap-step::before {
  content: ''; position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
}
.roadmap-step small { color: var(--soft); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 800; }
.roadmap-step p { margin: 0; }

.contact-layout {
  display: grid; grid-template-columns: 1fr .9fr; gap: 26px; align-items: start;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.contact-panel {
  padding: 32px; border-radius: 32px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow);
  display: grid; gap: 22px;
}
.contact-panel article { display: grid; gap: 10px; }
.contact-panel span { color: var(--soft); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 800; }
.contact-panel strong, .contact-panel a { font-size: 1.05rem; line-height: 1.75; }

.site-footer { padding: 28px 0 40px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-shell {
  display: flex; justify-content: space-between; gap: 24px; align-items: flex-end;
}
.footer-brand strong { font-size: 1rem; }
.footer-brand p { margin: 8px 0 0; max-width: 45ch; }
.footer-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--muted);
}
.footer-meta a { color: #fff; font-weight: 800; }

.policy-shell { max-width: 1040px; }
.policy-intro { margin: 12px 0 28px; }
.policy-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}
.policy-card {
  padding: 28px; border-radius: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow);
}
.policy-card h2 {
  font-family: 'Syne', sans-serif; font-size: 1.55rem; line-height: 1.02; margin: 0 0 14px;
}
.policy-card p { margin: 0; }
.policy-card a { color: #fff; text-decoration: underline; text-decoration-color: rgba(151,231,255,.8); text-underline-offset: 3px; }
.full-span { grid-column: 1 / -1; }
.policy-nav { grid-template-columns: auto auto; justify-content: space-between; }

.reveal {
  opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero-layout,
  .feature-band,
  .experience-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roadmap-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screen-stack { min-height: 820px; }
}

@media (max-width: 860px) {
  .nav-shell { grid-template-columns: auto auto auto; gap: 12px; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .desktop-action { display: none; }
  .main-nav {
    display: none; position: fixed; top: 88px; left: 18px; right: 18px;
    flex-direction: column; gap: 8px; padding: 16px 18px; border-radius: 24px;
    background: rgba(20,10,42,.96); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 4px; }
  .footer-shell { flex-direction: column; align-items: flex-start; }
  .policy-grid { grid-template-columns: 1fr; }
  .full-span { grid-column: auto; }
}

@media (max-width: 640px) {
  .container { width: min(100vw - 28px, 100%); }
  .section { padding: 80px 0; }
  .hero-copy h1 { font-size: 3rem; }
  .feature-band-card h2,
  .section-heading h2,
  .experience-left h2,
  .strip-copy h2,
  .roadmap-head h2,
  .contact-copy h2,
  .policy-shell h1 { font-size: 2.25rem; }
  .button { width: 100%; }
  .hero-scene { min-height: 860px; padding: 18px; }
  .poster-card { width: calc(100% - 28px); right: 14px; left: 14px; }
  .signal-card { left: 16px; top: 176px; max-width: 220px; }
  .phone-large { left: 12px; width: min(56%, 280px); }
  .phone-small { right: 12px; width: min(45%, 200px); bottom: 150px; }
  .product-grid,
  .services-grid,
  .roadmap-steps { grid-template-columns: 1fr; }
  .screen-stack { min-height: 980px; }
  .card-main { width: 62%; left: 0; }
  .card-top { width: 58%; right: 6px; }
  .card-bottom { width: 60%; right: 0; }
}
