:root {
  color-scheme: dark;
  --bg: #050b14;
  --bg-soft: #091321;
  --panel: #0c1828;
  --panel-2: #101f31;
  --text: #f7fbff;
  --muted: #9eb0c4;
  --line: rgba(164, 195, 224, 0.16);
  --orange: #ffad1f;
  --orange-hot: #ff7a18;
  --green: #6bea74;
  --blue: #2a9cff;
  --max: 1240px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(31, 130, 221, 0.13), transparent 26rem),
    radial-gradient(circle at 85% 38%, rgba(255, 145, 23, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.15;
  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: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #c8d5e2;
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  transition: color 160ms ease, transform 160ms ease;
}

nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #07111f;
}

.nav-cta:hover {
  color: #07111f;
  transform: translateY(-1px);
}

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

.hero-banner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: #0d65c6;
  box-shadow:
    0 42px 90px rgba(0, 71, 170, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.15);
}

.hero-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 55%, rgba(2, 9, 17, 0.26));
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding: clamp(62px, 8vw, 108px) clamp(6px, 3vw, 42px) 100px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-copy > .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(107, 234, 116, 0.24);
  border-radius: 999px;
  background: rgba(107, 234, 116, 0.07);
  color: #a8f4ae;
  letter-spacing: 0.04em;
  text-transform: none;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: "Arial Black", Impact, ui-sans-serif, sans-serif;
  font-size: clamp(3.6rem, 8vw, 7.7rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

h1 span,
h2 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 26px;
  color: #c3d2df;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.release {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.release span {
  color: var(--orange);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
nav a:focus-visible,
footer a:focus-visible {
  outline: 3px solid rgba(42, 156, 255, 0.7);
  outline-offset: 4px;
}

.button-primary {
  background: linear-gradient(135deg, #ffc147, var(--orange-hot));
  color: #201000;
  box-shadow: 0 14px 38px rgba(255, 138, 22, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(255, 138, 22, 0.33);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: #eef7ff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 162px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(4, 10, 18, 0.62);
  color: #f1f6fb;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.06;
  text-decoration: none;
}

.store-pill-active {
  border-color: rgba(49, 214, 144, 0.42);
  background: rgba(27, 113, 80, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.store-pill-active:hover {
  transform: translateY(-2px);
  border-color: rgba(49, 214, 144, 0.72);
  background: rgba(27, 113, 80, 0.34);
}

.store-pill-active:focus-visible {
  outline: 3px solid rgba(49, 214, 144, 0.42);
  outline-offset: 3px;
}

.store-pill small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 650;
}

.store-mark,
.play-mark {
  color: #fff;
  font-size: 1.1rem;
}

.play-mark {
  color: var(--green);
}

.teaser-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 342px);
}

.phone-glow {
  position: absolute;
  inset: 10% -20%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 60% 25%, rgba(42, 156, 255, 0.42), transparent 42%),
    radial-gradient(circle at 38% 75%, rgba(255, 151, 29, 0.23), transparent 43%);
  filter: blur(38px);
}

.phone {
  position: relative;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 46px;
  background: #020508;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
  transform: rotate(2deg);
}

.phone video {
  width: 100%;
  aspect-ratio: 1280 / 2180;
  border-radius: 38px;
  background: #07111f;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 30%;
  height: 22px;
  border-radius: 999px;
  background: #020508;
  transform: translateX(-50%);
}

.teaser-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.teaser-caption span {
  color: var(--orange);
}

.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 173, 31, 0.28);
  background: var(--orange);
  color: #1d1000;
  transform: rotate(-1deg) scale(1.02);
}

.marquee > div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span,
.marquee i {
  display: inline-block;
  padding-block: 15px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.marquee span {
  padding-inline: 28px;
}

.marquee i {
  color: rgba(29, 16, 0, 0.52);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding-block: clamp(100px, 12vw, 160px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading h2,
.maker-card h2,
.cta-copy h2 {
  margin-bottom: 24px;
  font-family: "Arial Black", Impact, ui-sans-serif, sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.maker-card > div > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(42, 156, 255, 0.13), transparent 43%),
    var(--panel);
}

.feature-card-wide {
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 173, 31, 0.18), transparent 38%),
    linear-gradient(145deg, #122236, #0a1421);
}

.feature-number {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.12);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.feature-card p:last-child {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-card-image {
  grid-column: 1 / -1;
  min-height: 520px;
  padding: 0;
}

.feature-card-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 10, 18, 0.93) 0%, rgba(4, 10, 18, 0.66) 42%, rgba(4, 10, 18, 0.05) 75%);
}

.feature-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-copy {
  position: absolute;
  bottom: clamp(30px, 5vw, 60px);
  left: clamp(28px, 5vw, 58px);
  z-index: 2;
  max-width: 480px;
}

.truth-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.truth-strip span::after {
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.22);
  content: "•";
}

.truth-strip strong {
  color: var(--green);
}

.screens-section {
  overflow: visible;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.section-heading-row > p {
  max-width: 270px;
  padding-bottom: 10px;
}

.screen-gallery {
  display: grid;
  grid-auto-columns: minmax(220px, 280px);
  grid-auto-flow: column;
  gap: 22px;
  width: calc(100vw - max(18px, (100vw - var(--max)) / 2));
  overflow-x: auto;
  padding: 8px max(18px, calc((100vw - var(--max)) / 2)) 30px 2px;
  scroll-padding-left: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 173, 31, 0.65) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.screen-gallery figure {
  margin: 0;
  scroll-snap-align: start;
}

.screen-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #0c1828;
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: top center;
}

.screen-gallery figcaption {
  padding: 14px 6px 0;
  color: #dbe7f2;
  font-size: 0.86rem;
  font-weight: 750;
}

.swipe-hint {
  margin: 4px 0 0;
  color: #6f8296;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.maker-section {
  padding-top: 50px;
}

.maker-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 7% 50%, rgba(42, 156, 255, 0.2), transparent 25rem),
    var(--panel);
}

.maker-icon img {
  width: 100%;
  border-radius: 42px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.maker-card h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 110px;
  padding: clamp(34px, 7vw, 82px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  background: #0c6ed2;
}

.cta-art {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.94) 0%, rgba(3, 10, 18, 0.72) 38%, rgba(3, 10, 18, 0.08) 75%),
    linear-gradient(to top, rgba(3, 10, 18, 0.7), transparent 55%),
    url("/assets/chart-surf.webp") center / cover no-repeat;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(3.7rem, 9vw, 8rem);
}

.cta-copy > p:not(.eyebrow) {
  margin: 0 0 28px;
  font-size: 1.1rem;
  font-weight: 800;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 52px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

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

.footer-links a:hover {
  color: #fff;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 5px 0 0;
  color: #66798d;
  line-height: 1.55;
}

@media (max-width: 880px) {
  nav > a:not(.nav-cta) {
    display: none;
  }

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

  .teaser-wrap {
    width: min(76vw, 350px);
  }

  .feature-card-image::after {
    background: linear-gradient(to top, rgba(4, 10, 18, 0.96) 0%, rgba(4, 10, 18, 0.55) 60%, rgba(4, 10, 18, 0.08));
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    max-width: 500px;
  }

  .maker-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > p:not(.disclaimer) {
    display: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
  }

  .brand span {
    max-width: 110px;
    font-size: 0.83rem;
    line-height: 1.05;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 0.79rem;
  }

  .hero {
    width: min(100% - 24px, var(--max));
    margin-top: 16px;
  }

  .hero-banner {
    border-radius: 18px;
  }

  .hero-banner img {
    min-height: 154px;
    object-fit: cover;
    object-position: center;
  }

  .hero-grid {
    gap: 56px;
    padding: 62px 2px 86px;
  }

  h1 {
    font-size: clamp(3.25rem, 17.5vw, 5rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .store-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-pill {
    min-width: 0;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
  }

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

  .feature-card {
    min-height: 330px;
  }

  .feature-card-image {
    grid-column: auto;
    min-height: 560px;
  }

  .feature-card-image img {
    object-position: 64% center;
  }

  .image-card-copy {
    right: 28px;
  }

  .truth-strip {
    justify-content: flex-start;
  }

  .truth-strip span::after {
    display: none;
  }

  .truth-strip span,
  .truth-strip strong {
    flex: 1 1 42%;
  }

  .screen-gallery {
    grid-auto-columns: minmax(218px, 68vw);
  }

  .maker-card {
    grid-template-columns: 1fr;
  }

  .maker-icon img {
    width: 112px;
    border-radius: 30px;
  }

  .final-cta {
    min-height: 620px;
    margin-bottom: 70px;
  }

  .cta-art {
    background:
      linear-gradient(to top, rgba(3, 10, 18, 0.98) 0%, rgba(3, 10, 18, 0.55) 60%, rgba(3, 10, 18, 0.12)),
      url("/assets/chart-surf.webp") 57% center / cover no-repeat;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee > div {
    animation: none;
  }

  .button,
  nav a {
    transition: none;
  }
}
