:root {
  --navy-950: #050d19;
  --navy-900: #071426;
  --navy-850: #0a1a30;
  --navy-800: #10213a;
  --navy-700: #1a3150;
  --blue-600: #1167e8;
  --blue-500: #2f86ff;
  --blue-400: #78b4ff;
  --aqua-400: #62e1d5;
  --white: #f7faff;
  --slate-200: #d8e3f4;
  --slate-300: #b7c6dc;
  --slate-500: #7890ad;
  --border: rgba(159, 190, 231, 0.18);
  --card: rgba(15, 34, 59, 0.78);
  --shadow: 0 30px 80px rgba(0, 7, 18, 0.46);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(5, 13, 25, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-600));
  box-shadow: 0 10px 30px rgba(17, 103, 232, 0.38);
  color: var(--white);
  font-size: 18px;
}

.site-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--slate-300);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a,
.footer-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--white);
}

.site-nav .nav-contact {
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 810px;
  overflow: hidden;
  align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 74% 42%, rgba(17, 103, 232, 0.2), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900) 52%, #0b1c35);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(122, 164, 219, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 164, 219, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  right: -90px;
  width: 260px;
  height: 260px;
  background: rgba(47, 134, 255, 0.12);
}

.hero-glow-two {
  bottom: 5%;
  left: -130px;
  width: 300px;
  height: 300px;
  background: rgba(98, 225, 213, 0.07);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-400);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--aqua-400);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 5.4vw, 5.8rem);
  font-weight: 880;
}

h1 em {
  display: block;
  color: var(--blue-500);
  font-style: normal;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 850;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 820;
}

.hero-subtitle,
.section-heading > p:last-child,
.screenshots-copy > p,
.contact-card p {
  color: var(--slate-300);
}

.hero-subtitle {
  max-width: 630px;
  margin: 0 0 32px;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

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

.store-button {
  display: inline-flex;
  min-width: 205px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--white);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-950);
  font-size: 1.04rem;
  font-weight: 850;
  line-height: 1.12;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.store-button small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.64rem;
  font-weight: 650;
}

.store-button-outline {
  border-color: var(--border);
  background: rgba(13, 31, 54, 0.72);
  color: var(--white);
  box-shadow: none;
}

.store-icon {
  font-size: 1.45rem;
}

.store-play {
  color: var(--aqua-400);
}

.availability-note {
  margin: 10px 0 24px;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  color: var(--slate-300);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li::before {
  margin-right: 8px;
  color: var(--aqua-400);
  content: "✓";
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 8px solid #020812;
  border-radius: 44px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 42%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
}

.phone-back {
  top: 76px;
  left: 2%;
  width: 238px;
  height: 515px;
  transform: rotate(-7deg);
  opacity: 0.8;
}

.phone-front {
  top: 0;
  right: 3%;
  z-index: 2;
  width: 276px;
  height: 600px;
  transform: rotate(4deg);
}

.floating-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(11, 28, 51, 0.9);
  box-shadow: 0 18px 42px rgba(0, 7, 18, 0.32);
  backdrop-filter: blur(14px);
  color: var(--slate-200);
  font-size: 0.78rem;
  font-weight: 760;
}

.floating-badge span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--aqua-400);
  color: var(--navy-950);
}

.floating-badge strong {
  color: var(--aqua-400);
  font-size: 1rem;
}

.badge-top {
  top: 38px;
  left: -12px;
}

.badge-bottom {
  right: -18px;
  bottom: 34px;
}

.section {
  padding: 108px 0;
}

.features {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

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

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin: 0 auto;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(20, 43, 73, 0.82), rgba(10, 27, 49, 0.88));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(47, 134, 255, 0.08);
  content: "";
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(120, 180, 255, 0.38);
  background: linear-gradient(145deg, rgba(24, 50, 84, 0.9), rgba(11, 31, 56, 0.94));
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(120, 180, 255, 0.22);
  border-radius: 14px;
  background: rgba(17, 103, 232, 0.2);
  color: var(--blue-400);
  font-size: 1.24rem;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--slate-300);
  font-size: 0.94rem;
}

.screenshots {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 40%, rgba(47, 134, 255, 0.12), transparent 34%),
    var(--navy-900);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 80px;
}

.screenshots-copy > p {
  margin-bottom: 32px;
}

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

.mini-stat-grid div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
}

.mini-stat-grid strong,
.mini-stat-grid span {
  display: block;
}

.mini-stat-grid strong {
  color: var(--aqua-400);
  font-size: 1.05rem;
}

.mini-stat-grid span {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 700;
}

.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 26px;
}

.screenshot-card {
  margin: 0;
  text-align: center;
}

.screenshot-card-two {
  transform: translateY(46px);
}

.gallery-phone {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1206 / 2622;
  border-width: 7px;
  border-radius: 38px;
}

.screenshot-card figcaption {
  margin-top: 16px;
  color: var(--slate-300);
  font-size: 0.84rem;
  font-weight: 750;
}

.disclaimer-section {
  padding: 66px 0;
  background: var(--navy-950);
}

.disclaimer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(98, 225, 213, 0.24);
  border-radius: var(--radius-md);
  background: rgba(98, 225, 213, 0.055);
}

.disclaimer p {
  margin: 0;
  color: var(--slate-300);
}

.disclaimer strong {
  color: var(--white);
}

.disclaimer-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-400);
  color: var(--navy-950);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.contact-section {
  padding-top: 70px;
  background: var(--navy-950);
}

.contact-card {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 54px;
  border: 1px solid rgba(120, 180, 255, 0.3);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 0%, rgba(98, 225, 213, 0.16), transparent 30%),
    linear-gradient(135deg, #0f57bd, #0b3c88);
  box-shadow: 0 36px 90px rgba(0, 6, 18, 0.42);
}

.contact-card::after {
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

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

.contact-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.contact-card p {
  max-width: 600px;
  margin: 0;
  color: rgba(247, 250, 255, 0.78);
}

.eyebrow-light {
  color: rgba(247, 250, 255, 0.72) !important;
}

.contact-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--white);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 850;
  transition: transform 180ms ease;
}

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

.site-footer {
  padding: 78px 0 24px;
  background: var(--navy-950);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--border);
}

.footer-grid p {
  margin: 14px 0 0;
  color: var(--slate-500);
  font-size: 0.88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: var(--slate-500);
  font-size: 0.76rem;
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-body {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.legal-header {
  position: sticky;
  background: rgba(5, 13, 25, 0.92);
  backdrop-filter: blur(18px);
  border-color: var(--border);
}

.legal-main {
  min-height: 75vh;
  padding: 140px 0 90px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  justify-content: center;
  gap: 64px;
}

.legal-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.legal-aside p {
  margin: 0 0 10px;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-aside a {
  display: block;
  padding: 8px 0;
  color: var(--slate-300);
  font-size: 0.88rem;
  font-weight: 700;
}

.legal-aside a[aria-current="page"] {
  color: var(--blue-400);
}

.legal-article {
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(12, 29, 51, 0.74);
  box-shadow: var(--shadow);
}

.legal-article h1 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-effective-date {
  margin: 0 0 36px;
  color: var(--blue-400);
  font-size: 0.84rem;
  font-weight: 760;
}

.legal-article h2 {
  margin: 42px 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-article p,
.legal-article li {
  color: var(--slate-300);
}

.legal-article ul {
  padding-left: 22px;
}

.legal-article a {
  color: var(--blue-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-article strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

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

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

  .hero-visual {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .screenshots-copy {
    max-width: 680px;
  }

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

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .legal-aside {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
  }

  .legal-aside p {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .menu-button {
    display: block;
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    transform: translateY(-16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(7, 20, 38, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .site-nav .nav-contact {
    padding: 12px;
    border: 0;
    border-radius: 10px;
  }

  .hero {
    padding-top: 120px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

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

  .store-button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-visual {
    min-height: 490px;
  }

  .phone-front {
    right: 1%;
    width: 220px;
    height: 478px;
    border-radius: 37px;
  }

  .phone-back {
    top: 62px;
    left: 0;
    width: 184px;
    height: 398px;
    border-radius: 34px;
  }

  .badge-top {
    top: 16px;
  }

  .badge-bottom {
    right: 0;
    bottom: 0;
  }

  .section {
    padding: 80px 0;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 24px;
  }

  .screenshot-gallery {
    gap: 10px;
  }

  .gallery-phone {
    border-width: 5px;
    border-radius: 26px;
  }

  .phone-speaker {
    top: 8px;
    height: 18px;
  }

  .screenshot-card figcaption {
    font-size: 0.72rem;
  }

  .disclaimer {
    align-items: flex-start;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .contact-button {
    width: 100%;
    justify-content: space-between;
    font-size: 0.8rem;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .legal-main {
    padding-top: 116px;
  }

  .legal-article {
    padding: 28px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
