:root {
  --bg: #07111f;
  --card: rgba(11, 22, 38, 0.82);
  --card-border: rgba(255, 255, 255, 0.11);
  --text: #f7fbff;
  --muted: #9fb0c6;
  --muted-strong: #c8d5e8;
  --cyan: #49d8ff;
  --purple: #8b5cf6;
  --green: #3ddc97;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(73, 216, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 86% 16%, rgba(139, 92, 246, 0.20), transparent 34rem),
    linear-gradient(135deg, #07111f 0%, #091827 45%, #0a1020 100%);
}

.page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 75%);
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at 8% 18%, rgba(255,255,255,0.75), transparent 60%),
    radial-gradient(1.2px 1.2px at 22% 62%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1.8px 1.8px at 38% 12%, rgba(255,255,255,0.65), transparent 60%),
    radial-gradient(1.2px 1.2px at 54% 78%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.6px 1.6px at 68% 34%, rgba(255,255,255,0.6), transparent 60%),
    radial-gradient(1.2px 1.2px at 79% 8%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.8px 1.8px at 91% 55%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.2px 1.2px at 15% 92%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1.4px 1.4px at 47% 46%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.4px 1.4px at 85% 82%, rgba(255,255,255,0.5), transparent 60%);
  opacity: 0.8;
}

.ambient {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.26;
  pointer-events: none;
}

.ambient-one {
  left: -110px;
  bottom: 14%;
  background: var(--cyan);
}

.ambient-two {
  right: -90px;
  top: 12%;
  background: var(--purple);
}

.card {
  width: min(1100px, 100%);
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 88px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(73, 216, 255, 0.22), rgba(139, 92, 246, 0.22)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--text);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .line {
  opacity: 0.55;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.052);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(61, 220, 151, 0.13);
}

/* App Store badge */
.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(135deg, rgba(73, 216, 255, 0.16), rgba(139, 92, 246, 0.16)), rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.badge-link:hover {
  transform: translateY(-1px);
  border-color: rgba(73, 216, 255, 0.4);
}

.badge-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
}

.badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.badge-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted-strong);
}

.badge-name {
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.badge-link-nav {
  min-height: 40px;
  padding: 0 14px;
}

.badge-link-nav .badge-icon svg {
  width: 18px;
  height: 18px;
}

.badge-link-nav .badge-name {
  font-size: 13px;
}

.badge-link-nav .badge-eyebrow {
  font-size: 9px;
}

.hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(73, 216, 255, 0.16);
  border-radius: 999px;
  color: #c8f4ff;
  background: rgba(73, 216, 255, 0.08);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
  letter-spacing: -0.018em;
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.115);
  background: rgba(255, 255, 255, 0.052);
}

.showcase {
  position: relative;
  margin-top: 72px;
}

.showcase-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(73, 216, 255, 0.35) transparent;
}

.showcase-track:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 18px;
}

.showcase-track::-webkit-scrollbar {
  height: 6px;
}

.showcase-track::-webkit-scrollbar-thumb {
  background: rgba(73, 216, 255, 0.3);
  border-radius: 999px;
}

.showcase-track figure {
  flex: 0 0 auto;
  width: 200px;
  margin: 0;
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.showcase-track figure:hover {
  transform: translateY(-4px);
  border-color: rgba(73, 216, 255, 0.3);
}

.showcase-track img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-fade {
  position: absolute;
  top: 0;
  bottom: 18px;
  width: 64px;
  pointer-events: none;
}

.showcase-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--card), transparent);
}

.showcase-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--card), transparent);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 64px;
  padding: 30px 32px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(73, 216, 255, 0.09), rgba(139, 92, 246, 0.09));
}

.cta-copy h3 {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 440px;
}

.contact-link {
  color: rgba(200, 213, 232, 0.66);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 213, 232, 0.3);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.contact-link:hover {
  color: var(--cyan);
  border-color: rgba(73, 216, 255, 0.5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.feature-grid article {
  min-height: 184px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(255, 255, 255, 0.046);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

h2 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

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

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: rgba(200, 213, 232, 0.66);
  font-size: 13px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(200, 213, 232, 0.52);
}

@media (max-width: 760px) {
  .page {
    padding: 18px;
  }

  .card {
    border-radius: 26px;
    padding: 22px;
  }

  .nav {
    align-items: flex-start;
    margin-bottom: 62px;
  }

  .status-pill {
    display: none;
  }

  .badge-link-nav {
    display: none;
  }

  .showcase-track figure {
    width: 148px;
  }

  .showcase {
    margin-top: 48px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .cta-band {
    margin-top: 44px;
    padding: 24px;
    justify-content: center;
    text-align: center;
  }

  .cta-copy {
    width: 100%;
  }

  .cta-copy p {
    max-width: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .dot {
    display: none;
  }
}
