:root {
  --bg: #f5f3fa;
  --surface: #ffffff;
  --surface-soft: #efedf6;
  --surface-cream: #f3ead7;
  --text: #18133b;
  --muted: #726b8f;
  --line: #ddd9ea;
  --navy: #14005b;
  --navy-2: #1d0a75;
  --yellow: #f1d23c;
  --green: #27c664;
  --shadow: 0 20px 60px rgba(20, 0, 91, 0.1);
  --shadow-soft: 0 12px 28px rgba(20, 0, 91, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(29, 10, 117, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfaff 0%, var(--bg) 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 243, 250, 0.82);
  border-bottom: 1px solid rgba(221, 217, 234, 0.6);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy);
}

.hero {
  padding: 54px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(241, 210, 60, 0.14);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-title,
.cta-panel h2,
.privacy-hero h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.94;
  max-width: 9ch;
}

.hero-copy h1 span {
  color: var(--yellow);
}

.hero-copy p {
  margin: 0;
  max-width: 52ch;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(20, 0, 91, 0.22);
}

.button-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-shell {
  position: relative;
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(237, 232, 246, 0.92));
  border: 1px solid rgba(221, 217, 234, 0.75);
  box-shadow: var(--shadow);
}

.hero-stage {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 30%),
    linear-gradient(180deg, #f5ebd9 0%, #eee4d4 100%);
  overflow: hidden;
}

.stage-orb {
  position: absolute;
  border-radius: 999px;
  background: rgba(20, 0, 91, 0.07);
}

.stage-orb.one {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -20px;
}

.stage-orb.two {
  width: 280px;
  height: 280px;
  bottom: -150px;
  left: -50px;
}

.phone {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 426px;
  border-radius: 42px;
  background: linear-gradient(180deg, #fff 0%, #f7f6fb 100%);
  border: 10px solid #141414;
  box-shadow: 0 28px 40px rgba(34, 22, 63, 0.22);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 94px;
  height: 22px;
  border-radius: 999px;
  background: #151515;
}

.phone-screen {
  padding: 36px 18px 18px;
}

.mini-card {
  border-radius: 22px;
  background: linear-gradient(180deg, #160564 0%, #29168a 100%);
  color: #fff;
  padding: 18px;
  box-shadow: 0 18px 28px rgba(20, 0, 91, 0.18);
}

.mini-card + .mini-card {
  margin-top: 14px;
}

.mini-card--light {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(221, 217, 234, 0.9);
  box-shadow: var(--shadow-soft);
}

.mini-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.mini-card--light .mini-kicker {
  color: var(--muted);
}

.mini-title {
  margin: 10px 0 6px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
}

.mini-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.mini-card--light .mini-text {
  color: var(--muted);
}

.mini-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.mini-pill {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
}

.mini-card--light .mini-pill {
  background: var(--surface-soft);
}

.section {
  padding: 62px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(221, 217, 234, 0.68);
  border-bottom: 1px solid rgba(221, 217, 234, 0.68);
}

.section-head {
  margin-bottom: 26px;
  text-align: center;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-subtitle {
  margin: 10px auto 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid,
.device-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.device-card,
.mode-card,
.cta-panel,
.privacy-card,
.timeline-step {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(221, 217, 234, 0.9);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 22px;
}

.feature-icon,
.device-icon,
.mode-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(20, 0, 91, 0.08);
  color: var(--navy);
  font-size: 1.4rem;
}

.feature-card h3,
.mode-card h3,
.device-card h3,
.privacy-card h3,
.timeline-step h3 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.18rem;
}

.feature-card p,
.mode-card p,
.device-card p,
.privacy-card p,
.timeline-step p,
.privacy-card li,
.footer-links a,
.privacy-body li,
.privacy-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.timeline-step {
  position: relative;
  padding: 22px 24px 22px 86px;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  top: 22px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mode-card {
  padding: 24px;
}

.mode-card.is-highlighted {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.mode-card.is-highlighted p,
.mode-card.is-highlighted li {
  color: rgba(255, 255, 255, 0.86);
}

.mode-card ul,
.privacy-card ul,
.privacy-body ul {
  padding-left: 18px;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.device-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.device-card {
  padding: 24px;
  text-align: center;
}

.device-icon {
  margin: 0 auto 16px;
}

.privacy-band {
  padding: 68px 0;
  background: linear-gradient(180deg, #13035a 0%, #1d0b76 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.privacy-band::before,
.privacy-band::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.privacy-band::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
}

.privacy-band::after {
  width: 280px;
  height: 280px;
  left: -110px;
  bottom: -140px;
}

.privacy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.privacy-band .section-title,
.privacy-band .section-subtitle,
.privacy-band .eyebrow {
  color: #fff;
}

.privacy-band .section-subtitle {
  margin-left: 0;
}

.privacy-grid .eyebrow {
  background: rgba(241, 210, 60, 0.18);
}

.privacy-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.privacy-card p,
.privacy-card li {
  color: rgba(255, 255, 255, 0.84);
}

.cta-panel {
  padding: 34px;
  text-align: center;
}

.cta-panel p {
  max-width: 46ch;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 24px 0 44px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(221, 217, 234, 0.8);
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.privacy-page {
  min-height: 100vh;
}

.privacy-hero {
  padding: 54px 0 26px;
}

.privacy-hero h1 {
  margin: 16px 0 10px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  max-width: 10ch;
}

.privacy-body {
  padding-bottom: 72px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.privacy-sidebar,
.privacy-content section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(221, 217, 234, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.privacy-sidebar {
  position: sticky;
  top: 96px;
  padding: 20px;
}

.privacy-sidebar h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.2rem;
}

.privacy-sidebar nav {
  display: grid;
  gap: 10px;
}

.privacy-sidebar a {
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--muted);
}

.privacy-sidebar a:hover,
.privacy-sidebar a:focus-visible {
  background: var(--surface-soft);
  color: var(--navy);
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-content section {
  padding: 28px;
}

.privacy-content h2 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.48rem;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.privacy-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .hero-grid,
  .privacy-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-copy h1 {
    max-width: 8ch;
  }

  .hero-stage {
    min-height: 460px;
  }

  .phone {
    width: 220px;
    height: 390px;
  }

  .feature-grid,
  .modes-grid,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    padding-left: 24px;
    padding-top: 76px;
  }

  .timeline-step::before {
    top: 20px;
  }

  .cta-panel,
  .privacy-content section,
  .privacy-sidebar {
    padding: 22px;
  }
}
