:root {
  color-scheme: light;
  --navy: #1c2b50;
  --ink: #111b33;
  --body: #526071;
  --muted: #7b8794;
  --teal: #00766e;
  --aqua: #17d7c7;
  --paper: #f7faf8;
  --white: #ffffff;
  --line: #d9e2e4;
  --night: #071225;
  --night-2: #101d38;
  --amber: #d7a642;
  --coral: #c46a57;
  --max: 1180px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 18, 37, 0.9);
  color: #ffffff;
  backdrop-filter: blur(20px);
}

.nav {
  width: min(100% - 36px, var(--max));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 780;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: var(--aqua);
  background: var(--aqua);
  color: #06152a;
}

.button.light {
  border-color: rgba(7, 18, 37, 0.16);
  background: #ffffff;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  overflow: hidden;
  background: var(--night);
  color: #ffffff;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 26%, rgba(23, 215, 199, 0.22), transparent 28%),
    radial-gradient(circle at 58% 82%, rgba(28, 43, 80, 0.82), transparent 34%),
    linear-gradient(135deg, #071225 0%, #08162c 44%, #0d203d 100%),
    var(--night);
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 18, 37, 1) 0%, rgba(7, 18, 37, 0.96) 36%, rgba(7, 18, 37, 0.68) 68%, rgba(7, 18, 37, 0.34) 100%),
    linear-gradient(180deg, rgba(7, 18, 37, 0) 0%, rgba(7, 18, 37, 0.52) 100%);
}

.hero-inner {
  position: relative;
  width: min(100% - 36px, var(--max));
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 74px 0 92px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 640px;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--aqua);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--aqua);
}

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

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.22rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 600px;
}

.hero-proof span {
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  z-index: 3;
  min-height: 690px;
  transform: translate3d(0, calc(var(--scroll, 0) * -22px), 0);
  transition: transform 80ms linear;
}

.phone-stage {
  position: absolute;
  inset: 0;
}

.clean-phone {
  position: absolute;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: #050b14;
  box-shadow: var(--shadow);
}

.clean-phone img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  border-radius: 34px;
  object-fit: cover;
  object-position: top center;
  background: #f2f5f7;
}

.hero-primary {
  right: 9%;
  top: 2%;
  width: min(355px, 52%);
}

.hero-secondary {
  left: 2%;
  top: 18%;
  width: min(245px, 38%);
}

.hero-tertiary {
  right: -4%;
  bottom: 8%;
  width: min(245px, 38%);
}

.device {
  position: absolute;
  width: 100%;
  max-width: 360px;
  filter: drop-shadow(var(--shadow));
}

.device.primary {
  right: 13%;
  top: 4%;
  width: 370px;
}

.device.secondary {
  left: 0;
  top: 22%;
  width: 245px;
  opacity: 0.94;
  transform: rotate(-7deg);
}

.device.tertiary {
  right: -5%;
  bottom: 10%;
  width: 252px;
  opacity: 0.96;
  transform: rotate(6deg);
}

.phone {
  position: relative;
  width: 100%;
  aspect-ratio: 1022 / 2082;
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.phone-screen {
  position: absolute;
  z-index: 10;
  left: 5.088%;
  top: 2.209%;
  width: 89.824%;
  height: 95.581%;
  overflow: hidden;
  border-radius: 13.725% / 6.332%;
  background: #eef2f5;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.metric-stack {
  position: absolute;
  left: 4%;
  bottom: 6%;
  width: min(410px, 52vw);
  display: grid;
  gap: 10px;
}

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  animation: metricSlide 9s ease-in-out infinite;
}

.metric:nth-child(2) {
  animation-delay: -3s;
}

.metric:nth-child(3) {
  animation-delay: -6s;
}

.metric strong {
  color: #ffffff;
}

.metric em {
  color: var(--aqua);
  font-style: normal;
  font-weight: 900;
}

.hero-tape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.tape-track {
  display: flex;
  width: max-content;
  animation: tapeScroll 28s linear infinite;
}

.tape-track span {
  padding: 15px 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 860;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: 96px 0;
  background: var(--paper);
}

.section.dark {
  background: var(--night-2);
  color: #ffffff;
}

.section.warm {
  border-top: 1px solid #e4dccd;
  border-bottom: 1px solid #e4dccd;
  background: #f3efe6;
}

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

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.dark h2,
.dark h3 {
  color: #ffffff;
}

h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.24;
}

.section-head p,
.body-copy,
.legal-intro {
  color: var(--body);
  font-size: 1.08rem;
}

.dark .section-head p,
.dark .body-copy,
.dark .feature-tile p {
  color: rgba(255, 255, 255, 0.72);
}

.screen-marquee {
  overflow: hidden;
  margin-top: 28px;
}

.screen-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: screenScroll 36s linear infinite;
}

.shot {
  width: 280px;
  overflow: hidden;
  border: 1px solid rgba(28, 43, 80, 0.14);
  border-radius: 8px;
  background: #eef2f5;
  box-shadow: 0 24px 60px rgba(28, 43, 80, 0.15);
}

.shot img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top center;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.screen-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(28, 43, 80, 0.14);
  border-radius: 8px;
  background: #edf2f4;
  box-shadow: 0 24px 60px rgba(28, 43, 80, 0.14);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
  object-position: top center;
}

.screen-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(7, 18, 37, 0.72);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 840;
  backdrop-filter: blur(12px);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-tile {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-index {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(23, 215, 199, 0.32);
  border-radius: 8px;
  background: rgba(23, 215, 199, 0.12);
  color: var(--aqua);
  font-weight: 900;
}

.split-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.product-visual {
  position: relative;
  min-height: 620px;
}

.product-phones .clean-phone {
  border-color: rgba(28, 43, 80, 0.18);
}

.product-back {
  left: 4%;
  top: 2%;
  width: 310px;
  opacity: 0.96;
}

.product-front {
  right: 4%;
  top: 88px;
  width: 300px;
}

.product-visual .device {
  max-width: none;
}

.product-visual .device.one {
  left: 4%;
  top: 0;
  width: 300px;
}

.product-visual .device.two {
  right: 4%;
  top: 80px;
  width: 300px;
}

.pro-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.pro-list article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.tag {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.privacy-lines {
  border-top: 1px solid #d6cfc0;
}

.privacy-lines article {
  padding: 24px 0;
  border-bottom: 1px solid #d6cfc0;
}

.privacy-lines p,
.pro-list p,
.legal-section p,
.legal-section li,
.faq p {
  color: var(--body);
}

.cta {
  background: var(--night);
  color: #ffffff;
}

.cta-inner {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 62px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #5a6676;
  font-size: 0.94rem;
}

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

.legal-hero {
  border-bottom: 1px solid var(--line);
  background: #edf6f4;
}

.legal-hero .wrap {
  max-width: 900px;
  padding: 78px 0 66px;
}

.legal-hero h1 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.legal-content {
  max-width: 900px;
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: 1.55rem;
  line-height: 1.12;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-section li + li {
  margin-top: 7px;
}

.support-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.support-panel p {
  margin-bottom: 0;
  color: var(--body);
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.faq article {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@keyframes metricSlide {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.72;
  }
  40%,
  70% {
    transform: translateX(18px);
    opacity: 1;
  }
}

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

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

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

@media (max-width: 1020px) {
  .hero-inner,
  .feature-layout,
  .split-product,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-bottom: 760px;
  }

  .hero-visual {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    min-height: 690px;
  }

  .hero-primary {
    right: 12%;
    width: 330px;
  }

  .hero-secondary {
    left: 7%;
    width: 230px;
  }

  .hero-tertiary {
    right: 3%;
    width: 220px;
  }

  .device.primary {
    right: 18%;
  }

  .device.secondary {
    left: 5%;
  }

  .device.tertiary {
    right: 1%;
  }
}

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

  .brand span {
    display: none;
  }

  .nav-links a:not(.nav-action) {
    display: none;
  }

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

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero::before {
    opacity: 1;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    min-height: calc(100svh - 68px);
    padding: 46px 0 500px;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 455px;
    bottom: 60px;
  }

  .hero-primary {
    right: 11%;
    top: 36px;
    width: 218px;
  }

  .hero-secondary {
    left: -18px;
    top: 130px;
    width: 158px;
  }

  .hero-tertiary {
    right: -28px;
    bottom: 8px;
    width: 158px;
  }

  .clean-phone {
    padding: 5px;
    border-radius: 30px;
  }

  .clean-phone img {
    border-radius: 24px;
  }

  .device.primary {
    right: 6%;
    top: 18px;
    width: 245px;
  }

  .device.secondary {
    left: -34px;
    top: 105px;
    width: 180px;
  }

  .device.tertiary {
    right: -48px;
    bottom: 16px;
    width: 170px;
  }

  .metric-stack {
    left: 0;
    bottom: 0;
    width: calc(100% - 28px);
  }

  .metric {
    padding: 11px 12px;
    font-size: 0.86rem;
  }

  .tape-track span {
    padding: 13px 22px;
  }

  .section {
    padding: 72px 0;
  }

  .wrap,
  .cta-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

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

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

  .screen-track {
    gap: 14px;
    animation-duration: 42s;
  }

  .shot {
    width: 230px;
  }

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

  .screen-card figcaption {
    left: 9px;
    bottom: 9px;
    font-size: 0.74rem;
  }

  .product-visual {
    min-height: 470px;
  }

  .product-back {
    left: 0;
    top: 0;
    width: 220px;
  }

  .product-front {
    right: -4px;
    top: 96px;
    width: 218px;
  }

  .product-visual .device.one {
    left: 0;
    width: 225px;
  }

  .product-visual .device.two {
    right: -28px;
    width: 225px;
  }

  .cta-inner,
  .support-panel {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }

  .cta .button,
  .support-panel .button {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
