:root {
  --bg: #070a10;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.10);
  --accent1: #5c85ff;
  --accent2: #9e63ff;
  --accent3: #76dbff;
  --success: #39d98a;
  --shadow: rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 700px at 14% -10%, rgba(158, 99, 255, 0.18), transparent 60%),
    radial-gradient(900px 620px at 90% 2%, rgba(92, 133, 255, 0.20), transparent 58%),
    radial-gradient(820px 560px at 50% 118%, rgba(118, 219, 255, 0.07), transparent 60%),
    linear-gradient(180deg, #05060b 0%, #060812 45%, #060810 100%);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(158, 99, 255, 0.18), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(92, 133, 255, 0.16), transparent 22%),
    radial-gradient(circle at 55% 84%, rgba(118, 219, 255, 0.08), transparent 28%);
  filter: blur(46px) saturate(1.05);
  opacity: 0.95;
}

body::after {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.02), transparent 22%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.015), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.35;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 18px 56px;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 4px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}

.brandIcon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30);
}

.brandText {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brandLogo {
  display: block;
  width: min(240px, 54vw);
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.navlinks {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.hero {
  margin-top: 34px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -8% auto auto -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(158, 99, 255, 0.20), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(92, 133, 255, 0.18), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.heroInner {
  position: relative;
  z-index: 1;
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: start;
}

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

.heroCopy {
  max-width: 760px;
}

h1 {
  margin: 12px 0 12px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -2.8px;
  max-width: 9.5ch;
}

.sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 58ch;
}

.ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.appStoreBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  padding: 1px 2px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.appStoreBadge img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 100%;
}

@media (max-width: 480px) {
  .appStoreBadge img {
    height: 40px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 700;
  font-size: 14px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.btnPrimary {
  border: none;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  color: rgba(255,255,255,0.96);
}

.btnPrimary:hover { text-decoration: none; filter: brightness(1.03); }
.btn:hover { text-decoration: none; }

.badge {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 6px 10px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(0,0,0,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.heroVisual {
  align-self: center;
  position: relative;
  padding: 12px;
}

.heroVisual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(158, 99, 255, 0.22), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(92, 133, 255, 0.18), transparent 40%);
  filter: blur(18px);
  opacity: 0.95;
  pointer-events: none;
}

.heroVisual img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.50),
    inset 0 1px 0 rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
}

.heroVisualCaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 0 6px;
  color: rgba(255,255,255,0.70);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.heroVisualCaption span:last-child {
  text-align: right;
}

.featureRows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 50px;
}

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

.featureRow {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.featureRow h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.featureRow p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.page {
  margin-top: 34px;
  padding: 0 0 8px;
}

.page h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -1px;
  line-height: 0.98;
  max-width: 10ch;
}

.page h3 {
  margin: 26px 0 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.page p, .page li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.page ul { padding-left: 18px; margin: 8px 0; }
.hr { height: 1px; background: rgba(255,255,255,0.10); margin: 18px 0; }

.footer {
  margin-top: 18px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

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

@media (max-width: 760px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .navlinks {
    gap: 10px;
  }

  .brandText { display: none; }

  .heroInner {
    padding: 8px 0 0;
  }

  .featureRows {
    margin-top: 34px;
    gap: 18px;
  }

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

  .heroVisualCaption span:last-child {
    text-align: left;
  }
}
