:root {
  --bg: #061018;
  --bg-elevated: #0b1622;
  --bg-panel: rgba(11, 22, 34, 0.78);
  --bg-soft: rgba(18, 31, 45, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(96, 205, 255, 0.35);
  --text: #f3f8fc;
  --muted: #a5bbcd;
  --muted-strong: #c6d5e2;
  --blue: #1e6bff;
  --cyan: #5fe4ff;
  --teal: #7fffd4;
  --amber: #ffb15d;
  --danger: #ff7b63;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 107, 255, 0.22), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(95, 228, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #061018 0%, #08131d 35%, #09101a 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
}

.shell-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(30, 107, 255, 0.18), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(95, 228, 255, 0.14), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(255, 177, 93, 0.08), transparent 26%);
  filter: blur(18px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  transition: background-color 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 10, 16, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 15, 23, 0.64);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(227, 238, 250, 0.95));
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}

.brand__copy {
  min-width: 0;
}

.brand__name {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), #d7fbff);
  box-shadow: 0 18px 44px rgba(95, 228, 255, 0.2);
}

.button--header {
  min-width: 168px;
}

@media (max-width: 1180px) {
  .brand__tag {
    display: none;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .button--header {
    min-width: 154px;
  }
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.button--ghost {
  color: var(--muted-strong);
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section__header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__header h1,
.section__header h2,
.hero__title,
.page-hero__title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  line-height: 0.97;
  letter-spacing: -0.04em;
}

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

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: stretch;
}

.hero__copy,
.feature-panel,
.glass-card,
.timeline-card,
.legal-card,
.faq-card,
.stat-card,
.cta-band,
.contact-card,
.footer-panel,
.mock-card,
.support-card {
  background: linear-gradient(180deg, rgba(14, 23, 34, 0.9), rgba(9, 15, 22, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero__copy {
  border-radius: 42px;
  padding: 30px;
}

.hero__title {
  margin-top: 22px;
  font-size: clamp(3rem, 7vw, 6.3rem);
}

.hero__title span,
.section__header h2 span,
.page-hero__title span {
  background: linear-gradient(135deg, var(--cyan), #ffffff 52%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede,
.page-hero__lede,
.section__header p,
.feature-card p,
.glass-card p,
.timeline-card p,
.faq-card p,
.legal-card p,
.contact-card p,
.support-card p,
.footer-copy {
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero__meta div,
.stat-card {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__meta strong,
.stat-card__value {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
}

.hero__meta span,
.stat-card__label {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phone-stage {
  position: relative;
  min-height: 100%;
  border-radius: 42px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(95, 228, 255, 0.24), transparent 22%),
    linear-gradient(180deg, #08172a, #09101a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 40px;
  background: linear-gradient(180deg, #0e1620, #050a11);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.44);
}

.phone-frame__screen {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(30, 107, 255, 0.46), transparent 30%),
    linear-gradient(180deg, #112c7d, #0a0f16);
}

.screen-lock {
  padding: 26px 22px 24px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.screen-lock__icon {
  width: 104px;
  height: 104px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(211, 229, 255, 0.9));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  padding: 12px;
}

.screen-lock__title {
  margin: 26px 0 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.02;
}

.screen-lock__copy {
  margin-top: 14px;
  color: #d5dff2;
}

.screen-lock__budget {
  width: 100%;
  margin-top: 24px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-lock__budget strong {
  display: block;
  font-size: 2.1rem;
}

.screen-lock__actions {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-grid,
.feature-grid,
.stats-grid,
.support-grid,
.legal-layout,
.contact-layout,
.faq-layout,
.story-grid,
.card-grid,
.download-layout,
.download-store-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.glass-card,
.feature-card,
.timeline-card,
.legal-card,
.faq-card,
.contact-card,
.support-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.feature-card h3,
.glass-card h3,
.timeline-card h3,
.support-card h3,
.contact-card h3,
.faq-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #061018;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 16px 30px rgba(95, 228, 255, 0.2);
}

.section__header h2,
.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.page-hero {
  padding: 56px 0 36px;
}

.page-hero__lede {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.1rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-card {
  position: relative;
  overflow: hidden;
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), transparent);
  opacity: 0.6;
}

.timeline-step {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.feature-panel {
  border-radius: 42px;
  padding: 28px;
}

.bullet-list,
.legal-list,
.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li,
.legal-list li,
.contact-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--muted);
}

.bullet-list li::before,
.legal-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.cta-band {
  border-radius: 40px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2,
.cta-band h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.site-footer {
  padding: 36px 0 46px;
}

.footer-panel {
  border-radius: 34px;
  padding: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1rem;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
}

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

.footer-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.faq-card details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.faq-card details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card details p {
  margin-bottom: 0;
  margin-top: 10px;
}

.legal-layout {
  grid-template-columns: 280px minmax(0, 1fr);
}

.legal-aside {
  position: sticky;
  top: 112px;
  align-self: start;
}

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

.legal-nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-card section + section {
  margin-top: 28px;
}

.legal-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.6rem;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.download-layout {
  grid-template-columns: 1.08fr 0.92fr;
}

.download-store-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.download-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 18px 20px;
  border-radius: 22px;
  background: #050608;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.download-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(95, 228, 255, 0.3);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.4);
}

.download-badge--disabled {
  cursor: default;
}

.download-badge__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
}

.download-badge__icon svg {
  width: 100%;
  height: 100%;
}

.download-badge__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.download-badge__icon--play {
  width: 62px;
  height: 62px;
}

.download-badge__icon--apple {
  width: 64px;
  height: 64px;
}

.download-badge__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-badge__eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.08;
}

.download-badge__title {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.download-badge__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.download-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
}

.download-stack {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.94rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 16px 16px;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 4px rgba(95, 228, 255, 0.08);
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-note,
.contact-card small {
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--teal);
}

.form-status.is-error {
  color: #ffc5b7;
}

.story-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.quote-card {
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(15, 28, 44, 0.92), rgba(9, 15, 22, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}

.quote-card footer {
  margin-top: 16px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.accent-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 228, 255, 0.7), rgba(255, 255, 255, 0.06), transparent);
  margin: 28px 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
}

.notice {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 177, 93, 0.22);
  background: rgba(255, 177, 93, 0.08);
  color: #ffe2bf;
}

.empty-state {
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 1080px) {
  .hero__layout,
  .feature-grid,
  .card-grid,
  .stats-grid,
  .story-grid,
  .faq-layout,
  .contact-layout,
  .download-layout,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 1260px) {
  .download-store-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-shell {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 8px;
  }

  .nav-shell.is-open .nav-links {
    display: flex;
  }

  .nav-actions {
    display: none;
    justify-content: flex-start;
  }

  .nav-shell.is-open .nav-actions {
    display: flex;
    padding-top: 8px;
  }

  .nav-link {
    padding: 12px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 36px;
  }

  .hero__copy,
  .feature-panel,
  .glass-card,
  .timeline-card,
  .legal-card,
  .faq-card,
  .contact-card,
  .support-card,
  .footer-panel,
  .cta-band {
    padding: 22px;
    border-radius: 28px;
  }

  .field-row,
  .hero__meta {
    grid-template-columns: 1fr;
  }

  .download-badge {
    min-height: 122px;
    padding: 16px 18px;
  }

  .download-badge__icon {
    width: 52px;
    height: 52px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
