:root {
  --blue-200: #9ee5ff;
  --blue-300: #35c2ff;
  --blue-500: #0096e2;
  --blue-700: #0078b8;
  --blue-950: #000f1c;
  --pink-300: #f7bfd6;
  --pink-400: #f09abd;
  --pink-600: #d85c96;
  --page-bg: #000f1c;
  --surface: #042238;
  --ambient-a: rgba(0, 150, 226, 0.28);
  --ambient-b: rgba(240, 154, 189, 0.085);
  --screen-blue-wash: rgba(0, 150, 226, 0.1);
  --screen-pink-wash: rgba(240, 154, 189, 0.038);
  --grid-opacity: 0.17;
  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: rgba(255, 255, 255, 0.6);
  --stat-color: var(--blue-300);
  --line: rgba(158, 229, 255, 0.2);
  --line-strong: rgba(0, 150, 226, 0.44);
  --shadow: rgba(0, 0, 0, 0.24);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color-scheme: light;
}

@media all {
  :root {
    --page-bg: #ffffff;
    --surface: #f1f9ff;
    --ambient-a: rgba(0, 150, 226, 0.18);
    --ambient-b: rgba(53, 194, 255, 0.07);
    --screen-blue-wash: rgba(0, 150, 226, 0.1);
    --screen-pink-wash: rgba(53, 194, 255, 0.035);
    --grid-opacity: 0.24;
    --text-main: #06182c;
    --text-soft: rgba(6, 24, 44, 0.76);
    --text-muted: rgba(6, 24, 44, 0.56);
    --kicker-color: #0078b8;
    --stat-color: #0078b8;
    --line: rgba(0, 150, 226, 0.18);
    --line-strong: rgba(0, 150, 226, 0.42);
    --shadow: rgba(0, 70, 120, 0.16);
    color-scheme: light;
  }

  .screen:nth-of-type(1) {
    --section-a: rgba(0, 150, 226, 0.16);
    --section-b: rgba(53, 194, 255, 0.055);
  }

  .screen:nth-of-type(2) {
    --section-a: rgba(0, 150, 226, 0.18);
    --section-b: rgba(0, 150, 226, 0.06);
  }

  .screen:nth-of-type(3) {
    --section-a: rgba(0, 150, 226, 0.12);
    --section-b: rgba(0, 150, 226, 0.1);
  }

  .screen:nth-of-type(4) {
    --section-a: rgba(0, 150, 226, 0.09);
    --section-b: rgba(53, 194, 255, 0.055);
  }

  .screen:nth-of-type(5) {
    --section-a: rgba(0, 150, 226, 0.18);
    --section-b: rgba(53, 194, 255, 0.04);
  }

  .screen:nth-of-type(6) {
    --section-a: rgba(0, 150, 226, 0.11);
    --section-b: rgba(0, 150, 226, 0.15);
  }

  .screen:nth-of-type(7) {
    --section-a: rgba(0, 150, 226, 0.12);
    --section-b: rgba(0, 150, 226, 0.06);
  }

  .screen:nth-of-type(8) {
    --section-a: rgba(0, 150, 226, 0.18);
    --section-b: rgba(53, 194, 255, 0.055);
  }

  .screen:nth-of-type(9) {
    --section-a: rgba(0, 150, 226, 0.12);
    --section-b: rgba(0, 150, 226, 0.16);
  }
}

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

html {
  scroll-behavior: smooth;
  background: var(--page-bg);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text-main);
  background: var(--page-bg);
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus:not(:focus-visible) {
  outline: none;
}

button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--line-strong);
  outline-offset: 4px;
}

.experience {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 7%, var(--ambient-a), transparent 34rem),
    radial-gradient(circle at 92% 36%, rgba(0, 150, 226, 0.1), transparent 30rem),
    radial-gradient(circle at 86% 72%, var(--ambient-b), transparent 34rem),
    linear-gradient(145deg, rgba(0, 150, 226, 0.07) 0%, transparent 36%),
    linear-gradient(180deg, #000d18 0%, #00223a 48%, #001221 100%),
    var(--page-bg);
}

.wordmark {
  position: absolute;
  top: 2rem;
  left: max(6vw, 1.25rem);
  z-index: 20;
  color: transparent;
  background: linear-gradient(135deg, var(--blue-500) 0%, #ffffff 50%, var(--pink-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
  pointer-events: none;
}

.top-actions {
  position: absolute;
  top: 1.55rem;
  right: max(6vw, 1.25rem);
  z-index: 21;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.top-action {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  padding: 0.68rem 1rem;
  font-size: 0.88rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.top-action:hover {
  border-color: var(--line-strong);
  background: rgba(0, 150, 226, 0.14);
  transform: translateY(-2px);
}

.top-action-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-300));
  color: #ffffff;
}

@media all {
  .top-action {
    border-color: rgba(0, 150, 226, 0.22);
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue-700);
    box-shadow: 0 8px 20px rgba(0, 70, 120, 0.08);
  }

  .top-action:hover {
    border-color: rgba(0, 150, 226, 0.4);
    background: #eefaff;
    color: #045b8c;
  }

  .top-action-primary {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-300));
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 150, 226, 0.18);
  }
}

.screen {
  position: relative;
  z-index: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) max(6vw, 1.25rem);
  border-bottom: 1px solid var(--line);
  background: var(--section-bg, transparent);
}

.screen.feature-screen {
  --panel-radius: 18px;
  --panel-ratio: 4 / 5;
  --panel-width: min(34rem, 86vw);
  --panel-shift: 0;
}

.screen:nth-of-type(1) {
  --section-a: rgba(0, 150, 226, 0.18);
  --section-b: rgba(240, 154, 189, 0.12);
}

.screen:nth-of-type(2) {
  --section-a: rgba(0, 150, 226, 0.22);
  --section-b: rgba(255, 255, 255, 0.04);
}

.screen:nth-of-type(3) {
  --section-a: rgba(240, 154, 189, 0.16);
  --section-b: rgba(0, 150, 226, 0.12);
}

.screen:nth-of-type(4) {
  --section-a: rgba(0, 150, 226, 0.12);
  --section-b: rgba(240, 154, 189, 0.2);
}

.screen:nth-of-type(5) {
  --section-a: rgba(0, 150, 226, 0.2);
  --section-b: rgba(240, 154, 189, 0.08);
}

.screen:nth-of-type(6) {
  --section-a: rgba(240, 154, 189, 0.14);
  --section-b: rgba(0, 150, 226, 0.18);
}

.screen:nth-of-type(7) {
  --section-a: rgba(0, 150, 226, 0.15);
  --section-b: rgba(255, 255, 255, 0.05);
}

.screen:nth-of-type(8) {
  --section-a: rgba(0, 150, 226, 0.22);
  --section-b: rgba(240, 154, 189, 0.18);
}

.screen:nth-of-type(9) {
  --section-a: rgba(240, 154, 189, 0.18);
  --section-b: rgba(0, 150, 226, 0.2);
}

.screen:nth-of-type(2) {
  grid-template-columns: minmax(19rem, 0.82fr) minmax(0, 1fr);
  --panel-radius: 12px;
  --panel-ratio: 3 / 4;
  --panel-width: min(29rem, 78vw);
}

.screen:nth-of-type(3) {
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.12fr);
  --panel-radius: 8px;
  --panel-ratio: 16 / 10;
  --panel-width: min(42rem, 88vw);
  --panel-shift: -2rem;
}

.screen:nth-of-type(4) {
  --panel-radius: 22px;
  --panel-ratio: 1 / 1;
  --panel-width: min(31rem, 82vw);
}

.screen:nth-of-type(5) {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  --panel-radius: 10px;
  --panel-ratio: 16 / 8.6;
  --panel-width: min(58rem, 92vw);
}

.screen:nth-of-type(5) .screen-copy,
.screen:nth-of-type(5) .screen-copy h2,
.screen:nth-of-type(5) .screen-copy p {
  margin-right: auto;
  margin-left: auto;
}

.screen:nth-of-type(5) .screen-copy {
  max-width: 52rem;
}

.screen:nth-of-type(5) .screen-copy h2 {
  max-width: 13ch;
}

.screen:nth-of-type(6) {
  grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1fr);
  --panel-radius: 8px;
  --panel-ratio: 1 / 1;
  --panel-width: min(31rem, 78vw);
}

.screen:nth-of-type(7) {
  grid-template-columns: minmax(0, 0.92fr) minmax(23rem, 1.06fr);
  --panel-radius: 8px;
  --panel-ratio: 5 / 3.7;
  --panel-width: min(39rem, 88vw);
}

.screen:nth-of-type(8) {
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1fr);
}

.screen:nth-of-type(9) {
  min-height: 82svh;
}

.screen.feature-screen {
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.92fr);
  justify-items: initial;
  text-align: left;
  --panel-radius: 8px;
  --panel-ratio: 1 / 1;
  --panel-width: min(31rem, 78vw);
  --panel-shift: 0;
}

.screen.feature-screen .screen-copy,
.screen.feature-screen .screen-copy h2,
.screen.feature-screen .screen-copy p {
  margin-right: 0;
  margin-left: 0;
}

.screen.feature-screen .screen-copy {
  max-width: 43rem;
}

.screen.feature-screen .screen-copy h2 {
  max-width: 12ch;
}

.screen.feature-screen.screen-reverse {
  grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1fr);
}

@media all {
  .screen {
    border-bottom-color: rgba(0, 150, 226, 0.12);
  }

  .screen:nth-of-type(1) {
    --section-bg:
      radial-gradient(circle at 82% 24%, rgba(0, 150, 226, 0.08), transparent 28rem),
      linear-gradient(180deg, #ffffff 0%, #eefaff 100%);
    --section-a: rgba(0, 150, 226, 0.22);
    --section-b: rgba(53, 194, 255, 0.055);
  }

  .screen:nth-of-type(2) {
    --section-bg:
      linear-gradient(102deg, rgba(0, 150, 226, 0.12) 0 34%, transparent 34%),
      linear-gradient(180deg, #f6fcff 0%, #ffffff 100%);
    --section-a: rgba(0, 150, 226, 0.24);
    --section-b: rgba(0, 150, 226, 0.08);
  }

  .screen:nth-of-type(3) {
    --section-bg:
      linear-gradient(180deg, #ffffff 0%, #f8fdff 46%, #ffffff 100%),
      linear-gradient(104deg, transparent 0 68%, rgba(0, 150, 226, 0.052) 68% 86%, transparent 86% 100%);
    --section-a: rgba(0, 150, 226, 0.12);
    --section-b: rgba(0, 150, 226, 0.16);
  }

  .screen:nth-of-type(4) {
    --section-bg:
      radial-gradient(ellipse at 78% 50%, rgba(0, 150, 226, 0.13), transparent 31rem),
      linear-gradient(128deg, transparent 0 48%, rgba(0, 150, 226, 0.08) 48% 70%, transparent 70%),
      linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    --section-a: rgba(0, 150, 226, 0.14);
    --section-b: rgba(53, 194, 255, 0.055);
  }

  .screen:nth-of-type(5) {
    --section-bg:
      radial-gradient(ellipse at 50% 70%, rgba(0, 150, 226, 0.12), transparent 38rem),
      linear-gradient(180deg, #edf9ff 0%, #ffffff 54%, #f8fdff 100%);
    --section-a: rgba(0, 150, 226, 0.24);
    --section-b: rgba(53, 194, 255, 0.04);
  }

  .screen:nth-of-type(6) {
    --section-bg:
      linear-gradient(135deg, rgba(0, 150, 226, 0.08) 0 26%, transparent 26% 72%, rgba(0, 150, 226, 0.08) 72%),
      linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
    --section-a: rgba(0, 150, 226, 0.11);
    --section-b: rgba(0, 150, 226, 0.18);
  }

  .screen:nth-of-type(7) {
    --section-bg:
      linear-gradient(90deg, rgba(0, 150, 226, 0.08), transparent 42%),
      linear-gradient(180deg, #f5fbff 0%, #ebf9ff 100%);
    --section-a: rgba(0, 150, 226, 0.18);
    --section-b: rgba(0, 150, 226, 0.08);
  }

  .screen:nth-of-type(8) {
    --section-bg:
      radial-gradient(circle at 22% 50%, rgba(0, 150, 226, 0.12), transparent 28rem),
      linear-gradient(110deg, rgba(0, 150, 226, 0.1) 0 38%, rgba(0, 150, 226, 0.035) 38% 100%),
      linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
    --section-a: rgba(0, 150, 226, 0.24);
    --section-b: rgba(53, 194, 255, 0.055);
  }

  .screen:nth-of-type(9) {
    --section-bg:
      radial-gradient(circle at 50% 0%, rgba(0, 150, 226, 0.11), transparent 28rem),
      linear-gradient(180deg, #f8fdff 0%, #ffffff 44%, #eefaff 100%);
    --section-a: rgba(0, 150, 226, 0.12);
    --section-b: rgba(0, 150, 226, 0.2);
  }

  .screen:nth-of-type(1)::before {
    background:
      radial-gradient(circle at 14% 24%, rgba(0, 150, 226, 0.22), transparent 25rem),
      radial-gradient(circle at 86% 74%, rgba(53, 194, 255, 0.055), transparent 28rem);
  }

  .screen:nth-of-type(2)::before {
    background:
      linear-gradient(102deg, rgba(0, 150, 226, 0.12) 0 36%, transparent 36% 100%),
      radial-gradient(circle at 76% 22%, rgba(0, 150, 226, 0.18), transparent 23rem);
  }

  .screen:nth-of-type(3)::before {
    background:
      radial-gradient(circle at 18% 74%, rgba(53, 194, 255, 0.055), transparent 26rem),
      radial-gradient(ellipse at 82% 42%, rgba(0, 150, 226, 0.082), transparent 26rem),
      linear-gradient(104deg, transparent 0 70%, rgba(0, 150, 226, 0.05) 70% 86%, transparent 86% 100%);
  }

  .screen:nth-of-type(4)::before {
    background:
      radial-gradient(circle at 84% 26%, rgba(0, 150, 226, 0.16), transparent 25rem),
      linear-gradient(128deg, transparent 0 52%, rgba(0, 150, 226, 0.08) 52% 74%, transparent 74%);
  }

  .screen:nth-of-type(5)::before {
    background:
      radial-gradient(circle at 12% 18%, rgba(0, 150, 226, 0.2), transparent 24rem),
      radial-gradient(circle at 82% 82%, rgba(53, 194, 255, 0.045), transparent 24rem);
  }

  .screen:nth-of-type(6)::before {
    background:
      linear-gradient(135deg, rgba(0, 150, 226, 0.06) 0 30%, transparent 30% 72%, rgba(0, 150, 226, 0.1) 72%),
      radial-gradient(circle at 22% 70%, rgba(0, 150, 226, 0.14), transparent 26rem);
  }

  .screen:nth-of-type(7)::before {
    background:
      radial-gradient(circle at 76% 34%, rgba(0, 150, 226, 0.19), transparent 26rem),
      linear-gradient(180deg, rgba(0, 150, 226, 0.08), transparent 46%);
  }

  .screen:nth-of-type(8)::before {
    background:
      radial-gradient(circle at 18% 22%, rgba(0, 150, 226, 0.2), transparent 26rem),
      radial-gradient(circle at 82% 78%, rgba(53, 194, 255, 0.055), transparent 26rem);
  }

  .screen:nth-of-type(9)::before {
    background:
      radial-gradient(circle at 30% 24%, rgba(53, 194, 255, 0.055), transparent 26rem),
      radial-gradient(circle at 74% 78%, rgba(0, 150, 226, 0.2), transparent 28rem);
  }

  .screen:nth-of-type(odd)::after {
    background-size: 78px 78px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 76%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 76%);
  }

  .screen:nth-of-type(even)::after {
    background-size: 56px 56px;
    mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.56), transparent 76%);
    -webkit-mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.56), transparent 76%);
  }

  .screen:nth-of-type(2) .visual-panel,
  .screen:nth-of-type(6) .visual-panel {
    transform: none;
  }

  .screen:nth-of-type(3) .visual-panel,
  .screen:nth-of-type(5) .visual-panel {
    transform: none;
  }

  .screen:nth-of-type(4) .visual-panel {
    transform: none;
  }
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 28%, var(--section-a, var(--screen-blue-wash)), transparent 28rem),
    radial-gradient(circle at 84% 72%, var(--section-b, var(--screen-pink-wash)), transparent 30rem),
    linear-gradient(115deg, var(--screen-blue-wash), transparent 42%),
    linear-gradient(245deg, var(--screen-pink-wash), transparent 38%);
  opacity: 0.72;
}

.screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: var(--grid-opacity);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 84%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 84%);
}

.screen > * {
  position: relative;
  z-index: 1;
}

.screen-reverse {
  grid-template-columns: minmax(20rem, 0.92fr) minmax(0, 1fr);
}

.screen-reverse .screen-copy {
  order: 2;
}

.screen-reverse .screen-visual,
.screen-reverse .stats-list {
  order: 1;
}

.hero-screen {
  grid-template-areas:
    "copy visual"
    "actions visual";
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.92fr);
  grid-template-rows: auto auto;
  align-content: center;
}

.hero-screen .screen-copy {
  grid-area: copy;
}

.hero-screen .screen-visual {
  grid-area: visual;
}

.hero-actions {
  grid-area: actions;
  justify-content: flex-start;
}

.mobile-hero-links {
  display: none;
}

.mobile-download-buttons {
  display: none;
}

.download-screen {
  min-height: 100svh;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  border-bottom: 0;
  padding-bottom: 2rem;
}

.download-screen .screen-copy {
  width: min(52rem, 100%);
  max-width: 52rem;
  justify-self: center;
  text-align: center;
}

.download-screen .screen-copy h2,
.download-screen .screen-copy p {
  margin-right: auto;
  margin-left: auto;
}

.download-screen .download-buttons,
.download-screen .contact-row {
  justify-content: center;
}

.screen-copy {
  max-width: 43rem;
}

.screen-kicker {
  margin-bottom: 1rem;
  color: var(--kicker-color, var(--blue-200));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.screen-copy h1,
.screen-copy h2 {
  color: var(--text-main);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.screen-copy h2:first-child {
  margin-top: 0;
}

.screen-copy h1 {
  max-width: 13ch;
  font-size: 5.8rem;
}

.screen-copy h2 {
  max-width: 12ch;
  font-size: 4.65rem;
}

.screen-copy p:not(.screen-kicker) {
  max-width: 34rem;
  margin-top: 1.35rem;
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.72;
}

.screen-visual {
  position: relative;
  min-height: min(68svh, 42rem);
  display: grid;
  place-items: center;
}

.ambient-ring {
  position: absolute;
  width: min(38rem, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 150, 226, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 150, 226, 0.18), transparent 48%),
    radial-gradient(circle at 68% 25%, rgba(240, 154, 189, 0.18), transparent 30%);
  transform: rotate(-8deg);
}

@media all {
  .ambient-ring {
    border-color: rgba(0, 150, 226, 0.18);
    background:
      radial-gradient(circle, rgba(0, 150, 226, 0.14), transparent 48%),
      radial-gradient(circle at 68% 25%, rgba(53, 194, 255, 0.045), transparent 30%);
  }
}

.device-showcase,
.visual-panel {
  position: relative;
  width: min(28rem, 84vw);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 24px 62px var(--shadow), 0 0 42px rgba(0, 150, 226, 0.1);
}

.hero-visual .device-showcase {
  width: min(25rem, 78vw);
}

.visual-panel {
  width: var(--panel-width);
  aspect-ratio: var(--panel-ratio);
  border-radius: var(--panel-radius);
  transform: translateY(var(--panel-shift));
}

.device-showcase img,
.visual-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-screen .visual-panel::before,
.feature-screen .visual-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.feature-screen .visual-panel::before {
  inset: -1rem;
  z-index: -1;
  width: auto;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  opacity: 0.58;
}

.feature-screen .visual-panel::after {
  top: 1rem;
  right: 1rem;
  left: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 229, 255, 0.4), transparent);
  opacity: 0.6;
}

.screen:nth-of-type(3) .visual-panel::before {
  inset: -1rem;
  width: auto;
  border-radius: 8px;
  opacity: 0.32;
}

.screen:nth-of-type(3) .visual-panel::after {
  top: 0.9rem;
  right: 12%;
  left: 12%;
  background: radial-gradient(ellipse at center, rgba(158, 229, 255, 0.34), transparent 72%);
  opacity: 0.36;
}

.screen:nth-of-type(4) .visual-panel::before {
  inset: -1rem;
  width: auto;
  border-radius: 8px;
}

.screen:nth-of-type(5) .visual-panel::before {
  inset: -1rem;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
}

.screen:nth-of-type(6) .visual-panel::before {
  inset: -1rem;
  width: auto;
  border-radius: 8px;
}

.screen:nth-of-type(7) .visual-panel::before {
  inset: -1rem;
  width: auto;
  border-radius: 8px;
}

.screen-actions,
.download-buttons,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.download-buttons.mobile-download-buttons {
  display: none;
}

.primary-action,
.store-button,
.contact-row a {
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.82rem 1.05rem;
  color: #ffffff;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.primary-action,
.store-button {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-300));
  box-shadow: 0 8px 18px rgba(0, 150, 226, 0.18);
}

.primary-action:hover,
.store-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 150, 226, 0.22);
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  width: min(40rem, 100%);
}

.stats-list div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stats-list strong,
.stats-list span {
  display: block;
}

.stats-list strong {
  color: var(--stat-color);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.stats-list span {
  margin-top: 0.5rem;
  color: var(--text-soft);
  font-weight: 750;
}

.contact-row a {
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: transparent;
  font-size: 0.92rem;
}

.contact-row a:hover {
  border-color: var(--line-strong);
  background: rgba(0, 150, 226, 0.14);
  transform: translateY(-2px);
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.legal-row a {
  transition: color 0.2s ease;
}

.legal-row a:hover {
  color: var(--text-main);
}

.scroll-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  gap: 1rem;
  width: 100%;
  color: var(--text-muted);
  margin-top: 2rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.scroll-legal div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.scroll-legal a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.scroll-legal a:hover {
  color: var(--text-main);
}

.store-button i,
.contact-row i,
.primary-action i {
  font-size: 1.25rem;
}

@media (max-width: 1120px) {
  .screen-copy h1 {
    font-size: 4.5rem;
  }

  .screen-copy h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 820px) {
  .experience,
  .screen,
  .screen-copy,
  .stats-list,
  .screen-actions,
  .download-buttons,
  .contact-row,
  .scroll-legal,
  .mobile-hero-links,
  .mobile-download-buttons {
    min-width: 0;
    max-width: 100%;
  }

  .screen-copy p,
  .stats-list strong,
  .stats-list span,
  .store-button,
  .contact-row a,
  .top-action,
  .scroll-legal p,
  .scroll-legal a {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .screen-copy h1,
  .screen-copy h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .wordmark {
    top: 1.25rem;
    left: 1rem;
    font-size: 1.15rem;
  }

  .top-actions {
    display: none;
  }

  .top-action {
    min-height: 2.25rem;
    width: 100%;
    padding: 0.58rem 0.65rem;
    font-size: clamp(0.68rem, 2.6vw, 0.78rem);
    white-space: nowrap;
  }

  .screen,
  .screen-reverse {
    min-height: clamp(23.5rem, 56svh, 33rem);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    padding: 2.35rem 1.35rem;
    text-align: center;
  }

  .hero-screen {
    grid-template-areas:
      "copy"
      "mobile-links";
    grid-template-columns: 1fr;
    min-height: clamp(31rem, 84svh, 41rem);
    align-content: center;
    padding-top: 4.85rem;
    padding-bottom: 2rem;
  }

  .screen-visual,
  .hero-screen .screen-visual {
    display: none;
  }

  .hero-actions {
    display: none;
  }

  .mobile-hero-links {
    grid-area: mobile-links;
    display: grid;
    width: min(100%, 28rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0.35rem auto 0;
  }

  .mobile-hero-links .top-action {
    min-height: 2.85rem;
    padding: 0.82rem 1.05rem;
    font-size: 0.9rem;
    font-weight: 850;
  }

  .screen-reverse .screen-copy,
  .screen-reverse .stats-list {
    order: initial;
  }

  .screen-copy {
    width: min(100%, 36rem);
    max-width: 36rem;
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .screen-copy h1,
  .screen-copy h2,
  .screen-copy p:not(.screen-kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .download-screen .screen-copy {
    text-align: center;
  }

  .download-screen {
    min-height: clamp(31rem, 76svh, 39rem);
    align-content: center;
    padding-top: 2.85rem;
    padding-bottom: 1.4rem;
  }

  .download-screen .screen-copy h2,
  .download-screen .screen-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .download-screen .download-buttons,
  .download-screen .contact-row {
    justify-content: center;
  }

  .download-buttons.mobile-download-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1.15rem;
  }

  .screen-copy h1 {
    max-width: 17ch;
    font-size: clamp(2.4rem, 9.4vw, 3.15rem);
    line-height: 1.02;
  }

  .screen-copy h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 7.6vw, 2.6rem);
    line-height: 1.06;
  }

  .screen-copy p:not(.screen-kicker) {
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.62;
  }

  .device-showcase {
    width: min(16rem, 76vw);
  }

  .visual-panel {
    width: min(21rem, 82vw);
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }

  .stats-list {
    width: min(100%, 21rem);
    grid-template-columns: 1fr;
    gap: 0.72rem;
    text-align: center;
  }

  .stats-list div {
    padding-top: 0.72rem;
  }

  .stats-list strong {
    font-size: 1.55rem;
    line-height: 1.04;
  }

  .stats-list span {
    margin-top: 0.3rem;
    font-size: 0.88rem;
    line-height: 1.32;
  }

  .screen.feature-screen,
  .screen.feature-screen.screen-reverse,
  .stats-screen,
  .download-screen {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .screen.feature-screen .screen-copy,
  .screen.feature-screen .screen-copy h2,
  .screen.feature-screen .screen-copy p:not(.screen-kicker),
  .stats-screen .screen-copy,
  .stats-screen .screen-copy h2,
  .download-screen .screen-copy,
  .download-screen .screen-copy h2,
  .download-screen .screen-copy p:not(.screen-kicker) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .screen.feature-screen .screen-copy,
  .stats-screen .screen-copy,
  .download-screen .screen-copy {
    width: min(100%, 36rem);
    max-width: 36rem;
  }

  .screen.feature-screen .screen-copy h2,
  .screen:nth-of-type(5) .screen-copy h2,
  .stats-screen .screen-copy h2,
  .download-screen .screen-copy h2 {
    max-width: 18ch;
  }

  .screen.feature-screen .screen-copy p:not(.screen-kicker),
  .download-screen .screen-copy p:not(.screen-kicker) {
    max-width: 29rem;
  }
}

@media (max-width: 520px) {
  .wordmark {
    font-size: 1.08rem;
  }

  .screen,
  .screen-reverse {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .screen-copy {
    width: min(100%, 26rem);
  }

  .hero-screen {
    min-height: clamp(29rem, 80svh, 38rem);
    padding-top: 4.45rem;
  }

  .screen-copy h1 {
    max-width: 18ch;
    font-size: 2.08rem;
    line-height: 1.04;
  }

  .screen-copy h2 {
    max-width: 18ch;
    font-size: 1.78rem;
    line-height: 1.08;
  }

  .screen-copy p:not(.screen-kicker) {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .screen-actions,
  .download-buttons,
  .contact-row {
    flex-direction: column;
  }

  .mobile-hero-links {
    grid-template-columns: 1fr;
  }

  .primary-action,
  .store-button,
  .contact-row a,
  .mobile-hero-links .top-action {
    width: 100%;
  }

  .scroll-legal {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .scroll-legal div {
    justify-content: center;
  }

  .stats-screen {
    min-height: clamp(22.5rem, 52svh, 30rem);
  }

  .stats-list {
    width: min(100%, 18.5rem);
    gap: 0.62rem;
  }

  .stats-list strong {
    font-size: 1.36rem;
  }

  .stats-list span {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .screen,
  .screen-reverse {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .screen-copy h1 {
    font-size: 1.92rem;
  }

  .screen-copy h2 {
    font-size: 1.58rem;
  }

  .store-button,
  .contact-row a,
  .mobile-hero-links .top-action {
    min-height: 2.65rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 820px) {
  .screen,
  .screen-reverse,
  .screen.feature-screen,
  .screen.feature-screen.screen-reverse,
  .stats-screen,
  .download-screen {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .screen > .screen-copy,
  .screen-reverse > .screen-copy,
  .screen.feature-screen > .screen-copy,
  .stats-screen > .screen-copy,
  .download-screen > .screen-copy {
    width: min(100%, 34rem);
    max-width: 34rem;
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .screen-copy h1,
  .screen-copy h2,
  .screen-copy p,
  .screen.feature-screen .screen-copy h2,
  .screen.feature-screen .screen-copy p,
  .screen:nth-of-type(5) .screen-copy h2,
  .stats-screen .screen-copy h2,
  .download-screen .screen-copy h2,
  .download-screen .screen-copy p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .screen-copy h1 {
    max-width: 18ch;
  }

  .screen-copy h2,
  .screen.feature-screen .screen-copy h2,
  .screen:nth-of-type(5) .screen-copy h2,
  .stats-screen .screen-copy h2,
  .download-screen .screen-copy h2 {
    max-width: 19ch;
  }

  .screen-copy p:not(.screen-kicker),
  .screen.feature-screen .screen-copy p:not(.screen-kicker),
  .download-screen .screen-copy p:not(.screen-kicker) {
    max-width: 30rem;
  }

  .screen-kicker,
  .screen-actions,
  .download-buttons,
  .contact-row {
    justify-content: center;
    text-align: center;
  }

  .stats-list {
    display: none;
  }

  .stats-screen {
    min-height: clamp(15rem, 34svh, 22rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    justify-content: center;
    justify-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .stats-screen > .screen-copy {
    width: min(100%, 26rem);
    max-width: 26rem;
    order: 0;
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .stats-screen .screen-copy h2 {
    display: block;
    width: 100%;
    max-width: 19ch;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media (max-width: 1280px) {
  .stats-screen {
    min-height: clamp(15rem, 34svh, 22rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    justify-content: center;
    justify-items: center;
    place-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-right: max(1.25rem, 5vw);
    padding-left: max(1.25rem, 5vw);
    text-align: center;
  }

  .stats-screen .stats-list {
    display: none !important;
  }

  .stats-screen.screen-reverse .screen-copy,
  .stats-screen > .screen-copy {
    order: 0;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 36rem;
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    place-items: center;
    text-align: center;
    transform: none;
  }

  .stats-screen .screen-copy h2 {
    display: block;
    width: 100%;
    max-width: 19ch;
    margin-right: auto;
    margin-left: auto;
    justify-self: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
