:root {
  --bg: #120f33;
  --bg-2: #1d164b;
  --bg-3: #261d63;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f6ff;
  --muted: #b8bbd8;
  --purple: #8d6bff;
  --purple-2: #a78bff;
  --aqua: #55d8ff;
  --gold: #ffbf48;
  --rose: #ff7bd5;
  --shadow: 0 30px 80px rgba(7, 7, 28, 0.35);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141,107,255,0.12), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(85,216,255,0.12), transparent 24%),
    linear-gradient(180deg, #0b0924 0%, #140f38 42%, #1a1445 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.72; }
.wrap { width: min(calc(100% - 40px), var(--wrap)); margin: 0 auto; }

.ambient {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
}
.ambient-one {
  width: 440px; height: 440px; left: -160px; top: 120px;
  background: radial-gradient(circle, rgba(141,107,255,0.22), rgba(141,107,255,0.02) 70%);
  animation: floatBlob 16s ease-in-out infinite;
}
.ambient-two {
  width: 560px; height: 560px; right: -170px; top: 50px;
  background: radial-gradient(circle, rgba(85,216,255,0.18), rgba(85,216,255,0.01) 72%);
  animation: floatBlob 18s ease-in-out infinite reverse;
}
.ambient-three {
  width: 520px; height: 520px; right: 15%; bottom: -170px;
  background: radial-gradient(circle, rgba(255,123,213,0.14), rgba(255,123,213,0.01) 70%);
  animation: floatBlob 20s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(10, 8, 31, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 50px; height: 50px; border-radius: 16px;
  display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: white;
  background: linear-gradient(145deg, var(--purple), var(--rose));
  box-shadow: 0 14px 35px rgba(141,107,255,0.35);
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.brand-copy small { color: var(--muted); font-size: 0.82rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 600;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--aqua));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.store-link, .button {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  border-radius: 999px; font-weight: 700; transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.store-link {
  padding: 13px 18px;
  background: linear-gradient(135deg, rgba(141,107,255,0.22), rgba(85,216,255,0.18));
  border: 1px solid rgba(255,255,255,0.08);
}
.store-link:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font: inherit;
}

.hero {
  padding: 96px 0 88px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}
.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d6d6f6;
  font-size: .84rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
}
.section-tag.light { background: rgba(255,255,255,0.12); }
.hero h1, .section-intro h1, .section-intro h2, .panel-copy h3, .story-card h3, .service-card h3, .feature-item h3, .contact-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
  line-height: 1.02;
}
.hero h1 {
  font-size: clamp(3.4rem, 6vw, 6.25rem);
  margin: 18px 0 20px;
}
.hero h1 span { color: #a889ff; }
.lead, .section-intro p, .story-card p, .panel-copy p, .service-card p, .feature-item p, .contact-copy p, .policy-section p {
  color: var(--muted);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 28px;
}
.button { padding: 15px 22px; }
.button.primary {
  background: linear-gradient(135deg, var(--purple), #6f9fff);
  color: white;
  box-shadow: 0 18px 38px rgba(117,111,255,0.25);
}
.button.secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-facts article,
.story-card,
.phone-panel,
.service-card,
.contact-card,
.privacy-menu,
.privacy-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.hero-facts article {
  padding: 18px 18px 20px;
  border-radius: 22px;
}
.hero-facts strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero-facts span { color: #d2d3ea; font-size: .95rem; display: block; }

.hero-media {
  position: relative;
  min-height: 660px;
}
.media-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.banner-card {
  position: absolute;
  inset: 0 0 auto auto;
  width: 100%;
  transform: rotate(1.5deg);
  animation: lift 7s ease-in-out infinite;
}
.floating-note {
  position: absolute;
  border-radius: 22px;
  padding: 14px 16px;
  background: rgba(12, 9, 39, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(7,7,28,0.32);
}
.note-a {
  display: flex; align-items: center; gap: 14px;
  width: min(310px, 72%);
  left: -18px; bottom: 72px;
  animation: drift 8s ease-in-out infinite;
}
.note-a img { width: 64px; height: 64px; border-radius: 18px; }
.note-a strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.note-a span { display: block; color: var(--muted); font-size: .88rem; }
.note-b {
  right: -12px; top: 48px;
  color: #d8d5ff;
  animation: drift 10s ease-in-out infinite reverse;
}
.note-c {
  right: 42px; bottom: 20px;
  color: #cff5ff;
  animation: drift 9s ease-in-out infinite;
}

.story, .product, .services, .privacy-main { padding: 60px 0 100px; }
.section-intro { max-width: 900px; margin-bottom: 34px; }
.section-intro h1,
.section-intro h2 { font-size: clamp(2.5rem, 4.6vw, 4.7rem); margin: 16px 0 16px; }
.section-intro.split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 28px;
  align-items: end;
  max-width: none;
}
.story-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.story-card {
  border-radius: 28px;
  padding: 28px;
  min-height: 280px;
}
.accent-card { background: linear-gradient(160deg, rgba(141,107,255,0.18), rgba(255,123,213,0.10)); }
.card-index {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 14px;
  background: rgba(255,255,255,0.1);
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  color: var(--aqua);
}
.story-card h3 { font-size: 1.55rem; margin: 56px 0 12px; }

.product-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 18px;
}
.phone-panel {
  padding: 28px;
  border-radius: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 520px;
}
.phone-panel.large { grid-row: span 2; min-height: 920px; }
.panel-copy { max-width: 430px; }
.panel-copy.compact { max-width: 340px; }
.panel-copy h3 { font-size: clamp(1.8rem, 3vw, 3rem); margin: 18px 0 10px; }
.mini-label {
  display: inline-flex; padding: 8px 12px; border-radius: 999px;
  background: rgba(141,107,255,0.18); color: #ddd5ff; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.mini-label.aqua { background: rgba(85,216,255,0.15); color: #d1f6ff; }
.mini-label.gold { background: rgba(255,191,72,0.18); color: #ffe6a8; }
.phone-shell {
  align-self: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(8,8,30,0.35);
}
.tall-shell { width: 62%; margin-top: 22px; }
.mid-shell { width: 58%; margin-top: 24px; }

.feature-band {
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(141,107,255,0.18), rgba(85,216,255,0.08) 45%, rgba(255,123,213,0.10));
  border-block: 1px solid rgba(255,255,255,0.08);
}
.feature-band-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 54px;
  align-items: start;
}
.feature-list {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.feature-item > span {
  color: #d0c4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}
.feature-item h3 { font-size: 1.38rem; margin: 0 0 8px; }
.feature-item p { margin: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  border-radius: 26px;
  padding: 24px;
  min-height: 220px;
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
}
.service-card h3 { font-size: 1.35rem; margin: 0 0 14px; }
.service-card p { margin: 0; }

.contact-section {
  padding: 110px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 24px;
  align-items: start;
}
.contact-card {
  border-radius: 30px;
  padding: 12px 26px;
}
.contact-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.contact-line:last-child { border-bottom: 0; }
.contact-line span { color: #c2c7e7; }
.contact-line strong, .contact-line a { font-weight: 700; }

.site-footer {
  padding: 62px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,6,22,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-brand { margin-bottom: 16px; }
.site-footer p, .site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--text); }
.site-footer h3 {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #9ba2c5;
  font-size: .92rem;
}

/* Privacy */
.privacy-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
}
.privacy-menu {
  position: sticky;
  top: 98px;
  height: fit-content;
  padding: 18px;
  border-radius: 24px;
}
.privacy-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
}
.privacy-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.privacy-content {
  border-radius: 30px;
  padding: 12px 30px 30px;
}
.policy-section {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.policy-section:last-child { border-bottom: 0; }
.policy-section h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}
.policy-section p { margin: 0 0 12px; }
.policy-section a { color: #bdb3ff; font-weight: 700; }
.static-nav { opacity: 1 !important; }

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

@keyframes floatBlob {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-24px,0) scale(1.04); }
}
@keyframes lift {
  0%,100% { transform: rotate(1.5deg) translateY(0); }
  50% { transform: rotate(-.2deg) translateY(-10px); }
}
@keyframes drift {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .hero, .feature-band-grid, .contact-grid, .privacy-layout, .section-intro.split { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .phone-panel.large { grid-row: auto; min-height: 620px; }
  .story-grid, .service-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-menu { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .desktop-only { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 20px; right: 20px; top: calc(100% + 10px);
    padding: 16px;
    border-radius: 22px;
    background: rgba(10, 8, 31, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hero { padding-top: 72px; }
  .hero-media { min-height: 460px; }
  .hero-facts, .story-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .banner-card { position: relative; width: 100%; }
  .note-a { left: 12px; bottom: 10px; width: calc(100% - 24px); }
  .note-b { right: 18px; top: 18px; }
  .note-c { right: 24px; bottom: 94px; }
  .tall-shell { width: 52%; }
  .mid-shell { width: 50%; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 24px), var(--wrap)); }
  .header-shell { min-height: 74px; }
  .hero h1 { font-size: 3rem; }
  .section-intro h1, .section-intro h2 { font-size: 2.2rem; }
  .hero-actions .button { width: 100%; }
  .hero-facts article, .story-card, .phone-panel, .service-card, .contact-card, .privacy-content { border-radius: 24px; }
  .contact-line { grid-template-columns: 1fr; gap: 8px; }
  .tall-shell, .mid-shell { width: 72%; }
  .phone-panel { min-height: 460px; padding: 22px; }
  .phone-panel.large { min-height: 560px; }
  .feature-band, .contact-section, .story, .product, .services, .privacy-main { padding-block: 74px; }
  .privacy-menu { grid-template-columns: 1fr; }
  .privacy-content { padding-inline: 20px; }
}
