:root {
  --bg: #080d19;
  --bg-soft: #0f1627;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f6f8ff;
  --muted: #aeb8ce;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #7b8cff;
  --accent-2: #71e6c1;
  --max: 1160px;
  --radius: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% -10%, rgba(123, 140, 255, .16), transparent 30%),
    linear-gradient(180deg, #080d19 0%, #0a101d 60%, #080d19 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 13, 25, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 850;
  background: linear-gradient(145deg, var(--accent), #5166ff);
  box-shadow: 0 8px 26px rgba(81, 102, 255, .35);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color .2s ease;
}

.nav-links a:hover,
.footer-links a:hover { color: var(--text); }

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  cursor: pointer;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
  padding: 100px 0 110px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(30px);
  opacity: .45;
}

.hero-glow-one {
  width: 470px;
  height: 470px;
  right: -140px;
  top: 120px;
  background: rgba(123, 140, 255, .25);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  left: -180px;
  bottom: 10px;
  background: rgba(113, 230, 193, .12);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(54px, 7vw, 90px);
  line-height: .98;
  letter-spacing: -.055em;
  margin-bottom: 28px;
  max-width: 820px;
}

h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.045em;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}

.hero-lead,
.section-heading p,
.about-copy,
.contact-card p,
.product-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
}

.button-primary {
  background: var(--text);
  color: #0b1020;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-shell {
  position: relative;
  width: min(330px, 88vw);
  aspect-ratio: 9 / 18.5;
  padding: 13px;
  border-radius: 48px;
  background: linear-gradient(150deg, rgba(255,255,255,.28), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 44px 90px rgba(0,0,0,.45), 0 0 90px rgba(123,140,255,.16);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 42px;
  background: #0e1625;
  z-index: 0;
}

.phone-top {
  position: absolute;
  width: 112px;
  height: 26px;
  border-radius: 20px;
  background: #050912;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.phone-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 88px 24px 28px;
  border-radius: 37px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(113,230,193,.13), transparent 28%),
    radial-gradient(circle at 15% 0%, rgba(123,140,255,.26), transparent 35%),
    #0c1321;
}

.mini-kicker {
  color: #93a2ff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .18em;
  margin-bottom: 18px;
}

.mini-title {
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 800;
  margin-bottom: 32px;
}

.mini-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-card strong {
  display: block;
  font-size: 20px;
  margin-top: 2px;
}

.mini-label {
  color: var(--muted);
  font-size: 11px;
}

.mini-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(113,230,193,.12);
  color: #9ff6da;
  font-size: 10px;
  font-weight: 750;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.mini-stats div {
  min-height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
}

.mini-stats span { font-size: 18px; }
.mini-stats small { color: var(--muted); }

.section {
  padding: 110px 0;
}

.section-muted {
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.product-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 42px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(123,140,255,.15), transparent 32%),
    var(--surface);
  overflow: hidden;
}

.product-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.product-name {
  font-weight: 850;
  font-size: 22px;
}

.status {
  padding: 6px 10px;
  border: 1px solid rgba(113,230,193,.22);
  background: rgba(113,230,193,.08);
  color: #9ff6da;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.feature-grid span {
  padding: 9px 12px;
  border-radius: 11px;
  border: 1px solid var(--line);
  color: #cbd3e7;
  font-size: 13px;
  background: rgba(255,255,255,.03);
}

.product-orbit {
  min-height: 350px;
  position: relative;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 60px rgba(123,140,255,.06);
}

.orbit-ring::after {
  content: "";
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.09);
}

.orbit-core {
  width: 112px;
  height: 112px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 46px;
  background: linear-gradient(145deg, #8392ff, #596cff);
  box-shadow: 0 24px 60px rgba(89,108,255,.38);
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 25px rgba(113,230,193,.7);
}

.dot-one { top: 56px; right: 76px; }
.dot-two { bottom: 80px; left: 62px; width: 10px; height: 10px; background: var(--accent); }
.dot-three { right: 52px; bottom: 78px; width: 7px; height: 7px; background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.about-copy p { max-width: 650px; }
.about-copy p + p { margin-top: 22px; }

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding: clamp(30px, 5vw, 55px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(140deg, rgba(123,140,255,.11), rgba(113,230,193,.05));
}

.contact-card h2 { margin-bottom: 12px; }
.contact-card p { margin-bottom: 0; }

.contact-email {
  white-space: nowrap;
  text-decoration: none;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 760;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--text);
  color: #0b1020;
}

.site-footer {
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 20px;
}

/* Privacy page */
.legal-page main {
  padding: 90px 0 120px;
}

.legal-wrap {
  max-width: 780px;
}

.legal-wrap h1 {
  font-size: clamp(44px, 6vw, 70px);
  margin-bottom: 18px;
}

.legal-meta {
  color: var(--muted);
  margin-bottom: 48px;
}

.legal-wrap h2 {
  font-size: 26px;
  letter-spacing: -.02em;
  margin-top: 42px;
  margin-bottom: 12px;
}

.legal-wrap p, .legal-wrap li {
  color: var(--muted);
}

.legal-wrap a {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid,
  .product-card,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid { padding-top: 80px; gap: 30px; }
  .hero-card { min-height: 500px; }
  .product-orbit { min-height: 300px; }
  .about-grid { gap: 20px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-links { display: none; }
  .nav { height: 68px; }
  .hero-grid { padding: 70px 0 80px; }
  .section { padding: 80px 0; }
  .hero-lead,
  .section-heading p,
  .about-copy,
  .contact-card p,
  .product-copy > p {
    font-size: 16px;
  }
  .contact-email {
    white-space: normal;
    word-break: break-all;
  }
  .footer-row {
    flex-direction: column;
  }
}
