:root {
  --ink: #07111f;
  --ink-soft: #10233d;
  --paper: #f4f8fb;
  --white: #ffffff;
  --blue: #176cf2;
  --blue-deep: #0647b9;
  --mint: #42e8cd;
  --cyan: #36bff4;
  --muted: #607089;
  --line: rgba(7, 17, 31, 0.12);
  --radius: 28px;
  --shadow: 0 30px 70px rgba(14, 55, 102, 0.15);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 31, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.brand strong {
  color: var(--mint);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #000;
  box-shadow: 0 8px 24px rgba(23, 108, 242, 0.25);
}

.brand-mark img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
}

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

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

.site-nav .nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(66, 232, 205, 0.35);
  border-radius: 99px;
  color: var(--mint);
  background: rgba(66, 232, 205, 0.07);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 12%, rgba(23, 108, 242, 0.25), transparent 32%),
    linear-gradient(145deg, #07111f 0%, #09192d 58%, #07111f 100%);
}

.hero::after {
  position: absolute;
  right: -15%;
  bottom: -26%;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(66, 232, 205, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 840px;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
  padding-top: 94px;
}

.hero-copy {
  padding: 54px 0 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--mint);
}

.hero .eyebrow {
  color: var(--mint);
}

.hero h1,
.section-heading h2,
.steps-intro h2,
.safety-copy h2,
.cta-card h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em,
.section h2 em {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.75;
}

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

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

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

.button-primary {
  color: var(--ink);
  background: linear-gradient(120deg, var(--mint), #77f3de);
  box-shadow: 0 16px 38px rgba(66, 232, 205, 0.2);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
}

.hero-trust {
  display: flex;
  gap: 30px;
  margin-top: 48px;
}

.hero-trust div {
  display: grid;
  gap: 4px;
}

.hero-trust strong {
  font-size: 18px;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

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

.hero-glow-one {
  top: 12%;
  right: 13%;
  width: 340px;
  height: 340px;
  background: rgba(23, 108, 242, 0.19);
  filter: blur(80px);
}

.hero-glow-two {
  right: 35%;
  bottom: 7%;
  width: 280px;
  height: 280px;
  background: rgba(66, 232, 205, 0.09);
  filter: blur(80px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(66, 232, 205, 0.13);
  border-radius: 50%;
}

.orbit-one {
  width: 540px;
  height: 540px;
}

.orbit-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  transform: rotate(24deg);
}

.phone {
  position: relative;
  z-index: 3;
  width: 306px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: #06101c;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  transform: rotate(3deg);
}

.phone-top {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 50%;
  width: 84px;
  height: 22px;
  border-radius: 99px;
  background: #03070c;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 600px;
  overflow: hidden;
  padding: 42px 16px 78px;
  border-radius: 33px;
  color: var(--ink);
  background: #f4f7fb;
}

.phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-head div:first-child {
  display: grid;
  gap: 3px;
}

.phone-head small {
  color: #77869b;
  font-size: 9px;
}

.phone-head strong {
  font-size: 15px;
  letter-spacing: -0.035em;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 10px;
  font-weight: 800;
}

.search-pill {
  margin: 18px 0 13px;
  padding: 11px 13px;
  border: 1px solid #e7edf4;
  border-radius: 12px;
  color: #8090a5;
  background: white;
  font-size: 10px;
}

.sport-chips {
  display: flex;
  gap: 7px;
  overflow: hidden;
  margin-bottom: 14px;
}

.sport-chips span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid #e4eaf2;
  border-radius: 99px;
  color: #728199;
  background: #fff;
  font-size: 8px;
  font-weight: 700;
}

.sport-chips .active {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.event-card {
  overflow: hidden;
  border: 1px solid #e1e8f0;
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 28px rgba(30, 60, 100, 0.08);
}

.event-art {
  position: relative;
  display: grid;
  height: 150px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 108, 242, 0.25), rgba(66, 232, 205, 0.36)),
    #0b264a;
}

.event-art::before,
.event-art::after {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
}

.event-art::after {
  width: 80px;
  height: 80px;
}

.event-art strong {
  z-index: 2;
  font-size: 46px;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.24));
}

.event-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  padding: 5px 8px;
  border-radius: 99px;
  color: white;
  background: rgba(7, 17, 31, 0.55);
  font-size: 8px;
  backdrop-filter: blur(10px);
}

.event-copy {
  padding: 12px;
}

.event-copy > div {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-copy > div small {
  color: #78879b;
}

.event-copy h2 {
  margin: 6px 0 3px;
  font-size: 13px;
  letter-spacing: -0.03em;
}

.event-copy p {
  margin: 0;
  color: #79879a;
  font-size: 8px;
}

.event-card.compact {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.compact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  margin-left: 9px;
  border-radius: 14px;
  background: #eff4ff;
  font-size: 24px;
}

.compact .event-copy {
  flex: 1;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 66px;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid #e4eaf2;
  background: rgba(255, 255, 255, 0.95);
}

.phone-nav > span {
  display: grid;
  gap: 2px;
  place-items: center;
  color: #9aa6b5;
  font-size: 14px;
}

.phone-nav small {
  font-size: 6px;
}

.phone-nav .selected {
  color: var(--blue);
}

.phone-nav .add {
  width: 37px;
  height: 37px;
  border-radius: 13px;
  color: var(--ink);
  background: var(--mint);
  font-size: 23px;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: white;
  background: rgba(15, 36, 62, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.floating-card div:not(.avatar-stack) {
  display: grid;
  gap: 3px;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
}

.floating-card-top {
  top: 128px;
  right: 0;
}

.floating-card-bottom {
  bottom: 128px;
  left: 0;
  animation-delay: -2.2s;
}

.mini-icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--mint);
  font-size: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #173354;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 7px;
  font-weight: 800;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:nth-child(2) {
  background: #9d5fd7;
}

.avatar-stack span:nth-child(3) {
  color: var(--ink);
  background: var(--mint);
}

.sport-strip {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: white;
  background: var(--blue);
}

.sport-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 17px 28px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}

.sport-track i {
  color: var(--mint);
  font-style: normal;
}

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  max-width: 800px;
  grid-template-columns: 1fr auto;
  column-gap: 70px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.section-heading p:last-child {
  max-width: 310px;
  align-self: end;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  margin-top: 66px;
}

.feature-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 36px rgba(40, 72, 108, 0.06);
}

.feature-card-large {
  display: grid;
  grid-row: span 2;
  min-height: 698px;
  align-content: space-between;
  background: var(--ink);
  color: white;
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(7, 17, 31, 0.25);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card-large .feature-number {
  color: rgba(255, 255, 255, 0.3);
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card-large .card-kicker {
  color: var(--mint);
}

.feature-card h3 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(24px, 2.6vw, 37px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.feature-card > p:last-child,
.feature-card > div:last-child > p:last-child {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-card-large > div:last-child > p:last-child {
  color: rgba(255, 255, 255, 0.52);
}

.map-demo {
  position: relative;
  width: min(100%, 460px);
  height: 360px;
  overflow: hidden;
  margin: 20px auto 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.04) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.04) 50%, transparent 51%),
    #0d2138;
  background-size: 82px 82px;
}

.map-road {
  position: absolute;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  background: #17314f;
}

.road-one {
  top: 84px;
  left: -44px;
  width: 560px;
  transform: rotate(-18deg);
}

.road-two {
  top: 154px;
  left: -80px;
  width: 530px;
  transform: rotate(31deg);
}

.road-three {
  top: 200px;
  right: -110px;
  width: 470px;
  transform: rotate(-55deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid rgba(66, 232, 205, 0.14);
  border-radius: 50% 50% 50% 12px;
  background: var(--mint);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  transform: rotate(-45deg);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.pin-one {
  top: 65px;
  left: 65px;
}

.pin-two {
  top: 170px;
  right: 58px;
  background: var(--blue);
}

.pin-three {
  right: 180px;
  bottom: 42px;
  background: #ffca55;
}

.you-are-here {
  position: absolute;
  z-index: 2;
  top: 51%;
  left: 45%;
  width: 16px;
  height: 16px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 13px rgba(23, 108, 242, 0.22);
}

.match-visual {
  display: flex;
  min-height: 145px;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

.match-person {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 7px solid white;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue), #66a3ff);
  box-shadow: 0 12px 30px rgba(23, 108, 242, 0.2);
  font-size: 24px;
  font-weight: 800;
}

.person-two {
  background: linear-gradient(135deg, #04af96, var(--mint));
}

.match-score {
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 -10px;
  border: 5px solid white;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.calendar-visual {
  display: flex;
  min-height: 118px;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.calendar-visual span {
  display: grid;
  width: 48px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: white;
  font-size: 8px;
  font-weight: 800;
}

.calendar-visual .active {
  height: 82px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 0 13px 25px rgba(66, 232, 205, 0.25);
  transform: translateY(-4px);
}

.steps {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.steps::after {
  position: absolute;
  top: -200px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(66, 232, 205, 0.08);
  border-radius: 50%;
  content: "";
}

.steps-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.steps-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.steps-intro h2 {
  font-size: clamp(42px, 5vw, 67px);
}

.steps-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 27px 0 26px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.text-link {
  color: var(--mint);
  font-size: 14px;
  font-weight: 750;
}

.steps-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  min-height: 195px;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-list > li > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(66, 232, 205, 0.2);
  border-radius: 18px;
  color: var(--mint);
  background: rgba(66, 232, 205, 0.05);
  font-size: 13px;
  font-weight: 800;
}

.steps-list h3 {
  margin: 0 0 9px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.steps-list p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 100px;
}

.safety-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 48%, rgba(66, 232, 205, 0.17), transparent 32%),
    white;
  box-shadow: var(--shadow);
}

.safety-visual::before,
.safety-visual::after {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(23, 108, 242, 0.09);
  border-radius: 50%;
  content: "";
}

.safety-visual::after {
  width: 275px;
  height: 275px;
}

.shield {
  position: relative;
  z-index: 2;
  display: grid;
  width: 215px;
  height: 245px;
  place-items: center;
  padding-bottom: 22px;
  border-radius: 50% 50% 42% 42% / 38% 38% 62% 62%;
  color: white;
  background: var(--ink);
  box-shadow: 0 28px 60px rgba(7, 17, 31, 0.24);
  text-align: center;
}

.shield img {
  width: 88px;
  height: 88px;
  margin-bottom: -35px;
  object-fit: cover;
}

.shield span {
  font-size: 19px;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.safety-pill {
  position: absolute;
  z-index: 3;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(28, 62, 98, 0.11);
  font-size: 10px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.pill-one {
  top: 90px;
  left: 35px;
}

.pill-two {
  right: 26px;
  bottom: 125px;
}

.pill-three {
  bottom: 62px;
  left: 65px;
}

.safety-copy h2 {
  font-size: clamp(42px, 5vw, 65px);
}

.safety-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.check-list span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--blue-deep);
  background: rgba(66, 232, 205, 0.22);
  font-size: 13px;
}

.early-access {
  padding-top: 30px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 88px 70px;
  border-radius: 42px;
  color: white;
  background:
    radial-gradient(circle at 83% 22%, rgba(66, 232, 205, 0.19), transparent 24%),
    linear-gradient(130deg, #0b1c31, #07111f);
  box-shadow: 0 40px 85px rgba(10, 31, 57, 0.18);
}

.cta-card::before {
  position: absolute;
  right: -115px;
  bottom: -250px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(66, 232, 205, 0.12);
  border-radius: 50%;
  content: "";
}

.cta-card h2 {
  max-width: 720px;
  font-size: clamp(46px, 6vw, 76px);
}

.cta-card > p:not(.eyebrow) {
  max-width: 590px;
  margin: 27px 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 16px;
  line-height: 1.75;
}

.cta-logo {
  position: absolute;
  top: 50%;
  right: 80px;
  width: 250px;
  height: 250px;
  opacity: 0.27;
  transform: translateY(-50%);
}

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

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(66, 232, 205, 0.2);
  border-radius: 99px;
  color: var(--mint);
  background: rgba(66, 232, 205, 0.07);
  font-size: 12px;
  font-weight: 760;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(66, 232, 205, 0.45);
  animation: pulse 2s infinite;
}

.site-footer {
  padding: 44px 0 26px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-top {
  padding-bottom: 35px;
}

.footer-top p,
.footer-top > a:last-child {
  margin: 0;
  font-size: 12px;
}

.footer-top > a:last-child {
  color: var(--mint);
  font-weight: 700;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-28%);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(66, 232, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(66, 232, 205, 0);
  }
}

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

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

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

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

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

  .feature-card-large {
    grid-row: auto;
  }

  .steps-layout {
    gap: 50px;
  }

  .safety-grid {
    gap: 65px;
  }

  .safety-visual {
    min-height: 530px;
  }

  .cta-logo {
    right: 20px;
    opacity: 0.14;
  }
}

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

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    color: white;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(7, 17, 31, 0.97);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    max-height: 340px;
    padding: 9px;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
    border-radius: 11px;
  }

  .site-nav .nav-cta {
    margin-top: 3px;
    text-align: center;
  }

  .hero-grid {
    padding-top: 102px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    justify-content: space-between;
    gap: 12px;
  }

  .hero-trust strong {
    font-size: 15px;
  }

  .hero-trust span {
    font-size: 9px;
  }

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

  .phone {
    width: 275px;
  }

  .phone-screen {
    height: 542px;
  }

  .event-art {
    height: 125px;
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

  .floating-card-top {
    top: 86px;
    right: -5px;
  }

  .floating-card-bottom {
    bottom: 85px;
    left: -4px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .steps-intro h2,
  .safety-copy h2 {
    font-size: 43px;
  }

  .section-heading p:last-child {
    margin-top: 23px;
  }

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

  .feature-card {
    min-height: 320px;
    padding: 25px;
  }

  .feature-card-large {
    min-height: 610px;
  }

  .map-demo {
    height: 320px;
  }

  .steps-layout {
    grid-template-columns: 1fr;
  }

  .steps-intro {
    position: static;
  }

  .steps-list li {
    min-height: 170px;
    grid-template-columns: 60px 1fr;
    gap: 18px;
  }

  .steps-list > li > span {
    width: 52px;
    height: 52px;
  }

  .steps-list h3 {
    font-size: 22px;
  }

  .steps-list p {
    font-size: 13px;
  }

  .safety-visual {
    min-height: 470px;
    border-radius: 30px;
  }

  .safety-visual::before {
    width: 320px;
    height: 320px;
  }

  .shield {
    width: 180px;
    height: 210px;
  }

  .pill-one {
    top: 60px;
    left: 14px;
  }

  .pill-two {
    right: 10px;
    bottom: 100px;
  }

  .pill-three {
    bottom: 45px;
    left: 28px;
  }

  .cta-card {
    padding: 65px 28px;
    border-radius: 30px;
  }

  .cta-card h2 {
    font-size: 45px;
  }

  .cta-logo {
    top: 25px;
    right: -45px;
    width: 190px;
    height: 190px;
    transform: none;
  }

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

  .footer-top {
    gap: 18px;
  }

  .footer-bottom {
    gap: 8px;
  }
}

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

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

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