:root {
  --bg: #f5f7fb;
  --bg-2: #eef2ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #0b1220;
  --muted: #5e6b85;
  --line: rgba(11, 18, 32, 0.08);
  --line-strong: rgba(11, 18, 32, 0.14);
  --brand: #0a84ff;
  --brand-2: #635bff;
  --good: #16a34a;
  --good-2: #22c55e;
  --danger: #e11d48;
  --shadow: 0 12px 40px rgba(8, 15, 35, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 15, 35, 0.12);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 420px at -10% -5%, rgba(99, 91, 255, 0.14), transparent 55%),
    radial-gradient(700px 360px at 110% 0%, rgba(10, 132, 255, 0.12), transparent 60%),
    linear-gradient(180deg, #f9fbff 0%, #f3f6fb 45%, #f5f7fb 100%);
  line-height: 1.5;
}

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

 a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(245, 247, 251, 0.72);
  border-bottom: 1px solid rgba(11, 18, 32, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(10, 132, 255, 0.18);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 12px;
}

.nav-links a:hover {
  background: rgba(11, 18, 32, 0.04);
}

.nav-links .cta-link {
  background: linear-gradient(135deg, var(--good-2), var(--good));
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.22);
}

.nav-links .cta-link:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

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

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(680px 320px at 10% 0%, rgba(99, 91, 255, 0.14), transparent 65%),
    radial-gradient(600px 300px at 100% 20%, rgba(34, 197, 94, 0.1), transparent 62%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  padding: 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--good-2), var(--good));
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(8, 15, 35, 0.06);
}

.button:hover {
  text-decoration: none;
}

.button.primary {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #36d36f, #16a34a 65%, #117a3a);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.25);
}

.button.ghost {
  background: rgba(255,255,255,0.75);
}

.button small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: inherit;
  opacity: 0.76;
}

.meta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.65);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-card-stack {
  display: grid;
  gap: 12px;
}

.phone-showcase {
  position: relative;
  min-height: 460px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(300px 180px at 20% 15%, rgba(99, 91, 255, 0.14), transparent 70%),
    radial-gradient(260px 160px at 80% 20%, rgba(34, 197, 94, 0.12), transparent 70%),
    rgba(255,255,255,0.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
}

.phone-showcase::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(11,18,32,0.08);
}

.shot {
  position: absolute;
  width: 200px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.45);
  background: #0a0d16;
  box-shadow: 0 26px 50px rgba(8, 15, 35, 0.18);
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

.shot.one {
  left: 28px;
  top: 44px;
  transform: rotate(-6deg);
  z-index: 1;
}

.shot.two {
  left: 150px;
  top: 18px;
  width: 220px;
  transform: rotate(2deg);
  z-index: 3;
}

.shot.three {
  right: 26px;
  top: 78px;
  transform: rotate(7deg);
  z-index: 2;
}

.showcase-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
}

.panel-card {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(8, 15, 35, 0.05);
}

.panel-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.panel-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  padding: 12px;
}

.metric .value {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.metric .label {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.section {
  padding: 18px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

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

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

.card {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

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

.card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,18,32,0.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.download-strip {
  margin: 10px 0 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(248,250,255,0.9));
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 14px;
  align-items: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 18px rgba(8,15,35,0.05);
}

.store-badge img {
  height: 38px;
  width: auto;
}

.store-badge.disabled {
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.store-badge.disabled img {
  opacity: 0.45;
  filter: grayscale(1);
}

.store-badge.disabled .mini {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.store-badge.disabled .big {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.button[aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
}

.screenshot-section {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-lg);
  padding: 18px;
}

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

.shot-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  padding: 10px;
}

.shot-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,0.06);
  background: #090c14;
}

.shot-card h4 {
  margin: 10px 2px 2px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.shot-card p {
  margin: 0 2px 2px;
  font-size: 13px;
  color: var(--muted);
}

.download-strip h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.download-strip p {
  margin: 0;
  color: var(--muted);
}

.cta-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list-clean li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
}

.footer {
  margin-top: 30px;
  border-top: 1px solid rgba(11, 18, 32, 0.06);
  padding: 22px 0 34px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 14px;
}

.legal-hero {
  padding: 34px 0 12px;
}

.legal-hero-panel {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
  padding: 24px;
}

.legal-hero-panel h1 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
}

.legal-hero-panel p {
  margin: 0;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 12px 0 24px;
}

.side-card {
  position: sticky;
  top: 92px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
  padding: 16px;
}

.side-card h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.side-card li a {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.side-card li a:hover {
  background: rgba(11,18,32,0.04);
  text-decoration: none;
}

.article-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  padding: 24px;
}

.prose h2,
.prose h3 {
  scroll-margin-top: 100px;
  letter-spacing: -0.02em;
}

.prose h2 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.prose h3 {
  margin: 20px 0 8px;
  font-size: 1.05rem;
}

.prose p,
.prose ul {
  margin: 0 0 12px;
  color: #22304a;
}

.prose ul {
  padding-left: 18px;
}

.prose li {
  margin-bottom: 8px;
}

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

.note {
  border: 1px solid rgba(10, 132, 255, 0.16);
  background: rgba(10, 132, 255, 0.05);
  border-radius: 14px;
  padding: 12px 14px;
  color: #1f3157;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  padding: 18px;
}

.contact-card h3,
.faq-card h3 {
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(11,18,32,0.05);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row .k {
  color: var(--muted);
  font-weight: 600;
}

.contact-row .v {
  color: var(--text);
  text-align: right;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.faq-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow);
  padding: 16px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .download-strip,
  .legal-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .cta-group {
    justify-content: flex-start;
  }

  .side-card {
    position: static;
    top: auto;
  }

  .hero-panel {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: 64px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    padding: 7px 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-card-stack {
    gap: 10px;
  }

  .phone-showcase {
    min-height: 390px;
  }

  .shot {
    width: 150px;
    border-radius: 20px;
  }

  .shot.two {
    width: 170px;
    left: 120px;
  }

  .shot.three {
    right: 18px;
  }

  .shots-grid {
    grid-template-columns: 1fr;
  }

  .article-card,
  .legal-hero-panel,
  .side-card,
  .card,
  .download-strip,
  .contact-card,
  .faq-card {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .phone-showcase {
    min-height: 290px;
  }

  .shot {
    width: 104px;
    border-radius: 14px;
  }

  .shot.one {
    left: 14px;
    top: 38px;
  }

  .shot.two {
    width: 120px;
    left: 88px;
    top: 20px;
  }

  .shot.three {
    right: 14px;
    top: 60px;
  }

  .showcase-caption {
    font-size: 12px;
    padding: 10px 12px;
  }
}
