:root {
  color-scheme: light;
  --bg: #07090f;
  --bg-elevated: #0c111f;
  --bg-soft: #11182a;
  --bg-muted: #f5f7fb;
  --primary: #4f5bff;
  --primary-strong: #3c45d1;
  --primary-soft: rgba(79, 91, 255, 0.16);
  --accent: #39ffd8;
  --text: #f4f6ff;
  --text-muted: rgba(244, 246, 255, 0.72);
  --text-soft: rgba(244, 246, 255, 0.56);
  --border: rgba(79, 91, 255, 0.24);
  --card-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 32px 80px -24px rgba(17, 24, 42, 0.6);
  --shadow-soft: 0 16px 32px -18px rgba(15, 23, 42, 0.28);
  --max-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(79, 91, 255, 0.32), transparent 52%),
    radial-gradient(circle at top right, rgba(57, 255, 216, 0.18), transparent 45%),
    var(--bg);
  min-height: 100vh;
}

body {
  line-height: 1.6;
}

.policy-body {
  background: linear-gradient(185deg, rgba(7, 9, 15, 1), rgba(14, 20, 36, 0.92));
  color: var(--text);
}

.policy-container {
  width: min(100% - 3rem, 860px);
  margin: 4rem auto 6rem;
}

.policy-card {
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid rgba(79, 91, 255, 0.18);
  border-radius: 28px;
  padding: clamp(1.8rem, 3vw, 3rem);
  box-shadow: 0 28px 70px -30px rgba(0, 0, 0, 0.65);
  display: grid;
  gap: 1.4rem;
}

.policy-header h1 {
  margin-bottom: 0.35rem;
}

.policy-effective {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.policy-card h2 {
  margin: 1.6rem 0 0.8rem;
  font-size: 1.45rem;
}

.policy-card ul {
  margin: 0.6rem 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.policy-card li {
  color: var(--text-muted);
}

.policy-card strong {
  color: var(--text);
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--accent);
}

.policy-back::before {
  content: "←";
}

.toast {
  position: fixed;
  left: 50%;
  bottom: min(5vh, 64px);
  transform: translate(-50%, 36px);
  width: min(440px, calc(100% - 2.5rem));
  background: rgba(12, 16, 30, 0.94);
  border: 1px solid rgba(79, 91, 255, 0.42);
  color: var(--text);
  padding: 1.1rem 1.9rem;
  border-radius: 20px;
  box-shadow: 0 30px 52px -26px rgba(0, 0, 0, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms ease;
  font-size: 1rem;
  letter-spacing: 0.012em;
  z-index: 1000;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  color: var(--text);
  margin-top: 0;
}

p {
  color: var(--text-muted);
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

a:hover {
  opacity: 0.84;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 9, 18, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(79, 91, 255, 0.32);
  box-shadow: 0 22px 42px -26px rgba(0, 0, 0, 0.58);
  transition: transform 160ms ease, opacity 160ms ease;
}

.brand:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(15, 20, 40, 0.72);
  padding: 7px;
  box-shadow: inset 0 0 0 1px rgba(79, 91, 255, 0.36);
  object-fit: contain;
}

.brand-name {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text-soft);
  font-weight: 500;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(79, 91, 255, 0.18);
  color: var(--accent);
  border: 1px solid rgba(79, 91, 255, 0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  box-shadow: none;
  background: transparent;
  color: var(--text);
}

.ghost-button {
  border-color: rgba(244, 246, 255, 0.24);
  background: rgba(15, 20, 40, 0.6);
}

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

.primary-button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg);
  border: none;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.4rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 1.5rem;
}

.device-frame {
  width: clamp(280px, 40vw, 320px);
  aspect-ratio: 9 / 19.5;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(15, 23, 42, 0.6));
  padding: 1.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(244, 246, 255, 0.6);
  margin-bottom: 1rem;
}

.device-screen {
  flex: 1;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(244, 246, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.32);
  background: rgba(12, 17, 31, 0.92);
  cursor: zoom-in;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 160ms ease;
  display: block;
}

.device-screen:hover img {
  transform: scale(1.02);
}


.section {
  padding: 5.5rem 0;
}

.section-header {
  text-align: center;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: var(--accent);
}

.features {
  background: var(--bg-elevated);
}

.feature-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.82), rgba(40, 50, 88, 0.5));
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 1.8rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 91, 255, 0.36);
}

.media {
  background: linear-gradient(180deg, rgba(17, 24, 42, 0.1), rgba(17, 24, 42, 0.6));
}

.media-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.media-gallery {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: minmax(200px, auto);
  justify-items: center;
}

.media-card {
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(79, 91, 255, 0.18), transparent 70%),
    rgba(7, 9, 15, 0.92);
  padding: 1rem;
  border: 1px solid rgba(244, 246, 255, 0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: visible;
  max-width: 360px;
  margin: 0 auto;
  flex-direction: column;
  gap: 0.75rem;
}

.media-link {
  display: block;
  width: 100%;
  cursor: zoom-in;
  aspect-ratio: 9 / 19;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(244, 246, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.32);
  background: rgba(5, 8, 14, 0.9);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 160ms ease;
  display: block;
}

.media-link:hover img {
  transform: scale(1.02);
  transition: transform 160ms ease;
}

.media-card figcaption {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.4;
  padding-inline: 0.4rem;
}

.media-placeholder {
  border-radius: 24px;
  border: 2px dashed rgba(244, 246, 255, 0.26);
  background: rgba(7, 9, 15, 0.65);
  min-height: 200px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem;
  color: var(--text-soft);
  font-weight: 500;
}

.media-card.tall {
  grid-row: span 2;
}

.media-card.short {
  align-items: stretch;
}

.media-placeholder.tall {
  min-height: 420px;
}

.media-placeholder.video {
  position: relative;
  min-height: 260px;
  background: linear-gradient(160deg, rgba(79, 91, 255, 0.14), rgba(57, 255, 216, 0.08));
  aspect-ratio: 9 / 16;
  padding: 0;
  overflow: hidden;
}

.vertical-video {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(244, 246, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.32);
  object-fit: cover;
  background: rgba(7, 9, 15, 0.8);
}

.play-icon {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(7, 9, 15, 0.84);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.media-caption {
  font-size: 0.92rem;
  margin-top: 1rem;
}

.testimonials {
  background: var(--bg-elevated);
}

.testimonial-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: rgba(9, 12, 20, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
}

.testimonial-card figcaption {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.stats {
  background: linear-gradient(180deg, rgba(17, 24, 42, 0.8), rgba(17, 24, 42, 0.4));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}

.stat-card {
  border-radius: 28px;
  padding: 2rem;
  background: rgba(10, 16, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.callout {
  background: linear-gradient(180deg, rgba(57, 255, 216, 0.1), rgba(79, 91, 255, 0.12));
}

.callout-card {
  background: rgba(7, 9, 15, 0.86);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--card-border);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-form {
  display: grid;
  gap: 0.75rem;
  align-items: center;
}

.cta-form input {
  background: rgba(12, 18, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  color: var(--text);
  font-size: 0.95rem;
}

.cta-form input:focus {
  outline: 2px solid rgba(79, 91, 255, 0.6);
  outline-offset: 2px;
}

.cta-form button {
  width: 100%;
}

.store-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.store-button {
  display: grid;
  grid-auto-flow: column;
  gap: 0.8rem;
  align-items: center;
  background: rgba(9, 12, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.95rem 1.4rem;
  border-radius: 16px;
  font-size: 0.9rem;
  color: var(--text);
}

.store-button small {
  display: block;
  color: var(--text-soft);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-icon {
  font-size: 1.6rem;
}

.store-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}

.site-footer {
  background: rgba(6, 9, 18, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-copy {
  margin-top: 0.8rem;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  grid-auto-flow: column;
  gap: 2rem;
}

.footer-links h4,
.footer-cta h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.socials {
  display: flex;
  gap: 1.5rem;
}

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

@media (max-width: 880px) {
  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-items: center;
  }

  .site-header .container {
    padding-inline: 0;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 1.8rem, var(--max-width));
  }

  .cta-row {
    flex-direction: column;
  }

  .store-buttons {
    justify-content: stretch;
  }

  .store-button {
    width: 100%;
    justify-content: start;
  }
}
