:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0c1018;
  --card: #0f1420;
  --stroke: rgba(65, 140, 255, 0.5);
  --text: #e8f1ff;
  --muted: #97a3b8;
  --blue: #1e7bff;
  --blue-bright: #8bc7ff;
  --accent: #00e1ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -2;
}

.orb-a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 214, 255, 0.45), rgba(30, 123, 255, 0.05));
  top: -120px;
  right: -180px;
}

.orb-b {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(30, 123, 255, 0.4), rgba(10, 12, 24, 0.1));
  bottom: -160px;
  left: -120px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(40, 70, 120, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 70, 120, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  z-index: -3;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(7, 9, 13, 0.75);
  border-bottom: 1px solid rgba(30, 123, 255, 0.15);
  z-index: 10;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta,
.ghost {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.play-badge {
  display: inline-flex;
  align-items: center;
}

.play-badge img {
  width: 200px;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: 0 12px 26px rgba(12, 32, 68, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.play-badge:hover img {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(12, 32, 68, 0.5);
}

.cta {
  background: linear-gradient(135deg, #1e7bff, #00e1ff);
  color: #001025;
  box-shadow: 0 10px 30px rgba(30, 123, 255, 0.35);
}

.ghost {
  border: 1px solid rgba(139, 199, 255, 0.4);
  color: var(--text);
}

.cta:hover,
.ghost:hover {
  transform: translateY(-1px);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 40px 0 60px;
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 12px 0 16px;
  line-height: 1.1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 18px;
}

.back-link:hover {
  color: var(--blue-bright);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--blue-bright);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trust-row .stat {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.trust-row .label {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-visual {
  position: relative;
}

.phone-frame {
  background: linear-gradient(160deg, rgba(20, 26, 40, 0.9), rgba(5, 8, 15, 0.95));
  border: 1px solid rgba(30, 123, 255, 0.4);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.phone-frame img {
  border-radius: 20px;
}

.badge {
  position: absolute;
  right: -12px;
  bottom: -18px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(9, 14, 23, 0.9);
  border: 1px solid rgba(0, 225, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.badge img {
  width: 56px;
  height: 56px;
}

.badge span {
  font-weight: 600;
}

.badge p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 60px;
}

.feature-card {
  padding: 18px;
  background: rgba(15, 20, 32, 0.8);
  border: 1px solid rgba(30, 123, 255, 0.35);
  border-radius: 16px;
}

.feature-card h3 {
  margin-top: 0;
}

.feature-card p {
  color: var(--muted);
}

.showcase {
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  max-width: 540px;
}

.screen-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.screen-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(10, 14, 22, 0.9);
  border: 1px solid rgba(30, 123, 255, 0.35);
  display: grid;
  gap: 14px;
}

.screen-card img {
  border-radius: 14px;
}

.screen-card p {
  color: var(--muted);
  margin: 6px 0 0;
}

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(30, 123, 255, 0.2), rgba(0, 225, 255, 0.12));
  border: 1px solid rgba(139, 199, 255, 0.4);
}

.cta-panel p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-break {
  display: none;
}

.policy-page {
  padding-top: 10px;
}

.policy-body {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.policy-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(10, 14, 22, 0.9);
  border: 1px solid rgba(30, 123, 255, 0.35);
}

.policy-card h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.policy-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.policy-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-card li + li {
  margin-top: 8px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .footer-break {
    display: block;
    flex-basis: 100%;
    height: 0;
  }

  .badge {
    position: static;
    margin-top: 16px;
  }
}
