:root {
  color-scheme: dark;
  --green: #5de431;
  --green-bright: #6af43a;
  --green-deep: #43c71f;
  --ink: #0b0f0c;
  --black: #070908;
  --surface: #111512;
  --surface-2: #171c18;
  --graphite: #252e28;
  --off-white: #f7faf7;
  --white: #ffffff;
  --muted: #9faa9f;
  --muted-light: #667168;
  --border: rgba(255, 255, 255, 0.11);
  --border-light: #dce5de;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --shadow-light: 0 28px 70px rgba(29, 52, 35, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stealth-page {
  display: none;
}

html[data-site-mode="stealth"] {
  min-height: 100%;
  overflow: hidden;
}

html[data-site-mode="stealth"] body {
  min-height: 100svh;
  overflow: hidden;
}

html[data-site-mode="stealth"] .full-site {
  display: none;
}

html[data-site-mode="stealth"] .stealth-page {
  position: relative;
  min-height: 100svh;
  padding: 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 70%, rgba(93, 228, 49, .11), transparent 30%),
    linear-gradient(180deg, #080b09 0%, #050706 100%);
}

.stealth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 56%, #000 0%, transparent 65%);
}

.stealth-atmosphere {
  position: absolute;
  z-index: -1;
  width: min(760px, 90vw);
  height: min(760px, 90vw);
  left: 50%;
  bottom: -48%;
  border-radius: 50%;
  background: rgba(93, 228, 49, .12);
  filter: blur(110px);
  transform: translateX(-50%);
}

.stealth-content {
  width: min(100%, 740px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 7vh, 72px);
  text-align: center;
}

.stealth-logo {
  width: clamp(170px, 22vw, 230px);
  height: auto;
  opacity: 0;
  animation: stealth-rise .8s .08s var(--ease) forwards;
}

.stealth-intro {
  opacity: 0;
  animation: stealth-rise .8s .2s var(--ease) forwards;
}

.stealth-intro h1 {
  margin: 0;
  font-size: clamp(44px, 7.5vw, 78px);
  line-height: .97;
  letter-spacing: -.06em;
}

.stealth-intro h1 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.stealth-signoff {
  position: absolute;
  right: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, .28);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

@keyframes stealth-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--green);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(7, 9, 8, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: 185px;
  display: inline-flex;
  justify-self: start;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c4cbc5;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.footer-links a {
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.header-cta {
  justify-self: end;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #071007;
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  box-shadow: 0 10px 35px rgba(93, 228, 49, 0.2);
  font-weight: 780;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s ease, filter .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 42px rgba(93, 228, 49, 0.3);
  filter: saturate(1.08);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 1.5px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto;
  min-height: calc(100vh - var(--header-height));
  padding: 32px 20px 50px;
  display: none;
  flex-direction: column;
  gap: 8px;
  background: rgba(7, 9, 8, .98);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu > a:not(.button) {
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 22px;
  font-weight: 750;
}

.mobile-menu .button {
  margin-top: 20px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 78px) 0 80px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 36%, rgba(31, 60, 36, .22), transparent 34%),
    linear-gradient(180deg, #080b09 0%, #050706 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 1100px;
  background: linear-gradient(180deg, rgba(93, 228, 49, .07), rgba(93, 228, 49, 0));
  transform: rotate(35deg);
  pointer-events: none;
}

.hero::before {
  left: -320px;
  top: -340px;
}

.hero::after {
  right: -330px;
  top: -160px;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 72%, transparent 100%);
}

.hero-glow {
  position: absolute;
  z-index: -3;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
  pointer-events: none;
}

.hero-glow-left {
  left: -330px;
  top: 430px;
  background: var(--green);
}

.hero-glow-right {
  right: -300px;
  top: 250px;
  background: var(--green-deep);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
}

.eyebrow,
.section-kicker,
.feature-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(93, 228, 49, .1);
}

.hero h1 {
  max-width: 930px;
  margin: 25px auto 22px;
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 870;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-copy > p {
  max-width: 720px;
  margin: 0 auto;
  color: #aeb7b0;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.62;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dfe5e0;
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}

.text-link span {
  color: var(--green);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green);
}

.role-strip {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #768078;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.role-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
}

.connection-stage {
  position: relative;
  margin-top: 74px;
  display: grid;
  grid-template-columns: minmax(245px, 1fr) minmax(292px, 346px) minmax(270px, 1fr);
  align-items: center;
  gap: 72px;
}

.connection-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 48%;
  width: 780px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(93, 228, 49, .07), transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(25px);
}

.connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.connection-lines path {
  fill: none;
  stroke: rgba(93, 228, 49, .8);
  stroke-width: 1.75;
  filter: drop-shadow(0 0 6px rgba(93, 228, 49, .35));
}

.connection-lines circle {
  fill: var(--black);
  stroke: var(--green);
  stroke-width: 2;
}

.profile-card,
.result-card,
.match-card,
.path-card {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  box-shadow: var(--shadow);
}

.profile-card {
  width: min(100%, 304px);
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
}

.profile-image-wrap {
  position: relative;
  aspect-ratio: 1.31 / 1;
  overflow: hidden;
}

.profile-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(7,9,8,.45));
}

.profile-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-label {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(93, 228, 49, .25);
  border-radius: 999px;
  color: var(--green);
  background: rgba(7, 9, 8, .74);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-label.inline {
  position: static;
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  font-size: 9px;
}

.profile-body {
  padding: 20px 20px 22px;
}

.profile-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.profile-heading h2 {
  margin-bottom: 4px;
  font-size: 26px;
  letter-spacing: -.04em;
}

.profile-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.verified {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071007;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

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

.check-list li,
.feature-list li,
.audience-card li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.feature-list li::before,
.audience-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .03em;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071007;
  background: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.check-list.compact li {
  color: #d9dfda;
  font-size: 12px;
  line-height: 1.35;
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 10px 10px 12px;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 45px;
  background: linear-gradient(150deg, #343a35, #090b0a 18%, #050605 82%, #252a26);
  box-shadow: 0 50px 110px rgba(0,0,0,.58), inset 0 0 0 1px rgba(255,255,255,.05);
}

.phone-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 10% -22% -10%;
  border-radius: 50%;
  background: rgba(93, 228, 49, .09);
  filter: blur(65px);
}

.phone-top {
  position: relative;
  height: 30px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #edf3ee;
  font-size: 10px;
  font-weight: 750;
}

.phone-island {
  position: absolute;
  left: 50%;
  top: 3px;
  width: 88px;
  height: 23px;
  border-radius: 99px;
  background: #000;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 445px;
  padding: 13px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(93, 228, 49, .035), transparent 30%),
    #0b0e0c;
}

.phone-title {
  margin: 0 2px 14px;
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  text-align: center;
  color: #e9efea;
}

.phone-title > span {
  color: #b6bdb7;
  font-size: 20px;
}

.phone-title strong {
  display: block;
  font-size: 13px;
}

.phone-title small {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
}

.match-card {
  margin-top: 9px;
  padding: 12px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,.22);
}

.match-type {
  margin-bottom: 9px;
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.match-main {
  display: grid;
  grid-template-columns: 49px 1fr auto;
  align-items: center;
  gap: 10px;
}

.match-main > picture,
.match-main > picture img {
  width: 49px;
  height: 59px;
  border-radius: 10px;
  object-fit: cover;
}

.match-copy {
  min-width: 0;
}

.match-copy strong {
  display: block;
  font-size: 11px;
  line-height: 1.2;
}

.match-copy > span {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #8d978f;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-tags {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.mini-tags b {
  padding: 3px 5px;
  border-radius: 5px;
  color: #acb4ad;
  background: rgba(255,255,255,.05);
  font-size: 6.5px;
  font-weight: 600;
}

.match-score {
  text-align: right;
}

.match-score strong {
  display: block;
  color: var(--green);
  font-size: 20px;
  letter-spacing: -.05em;
}

.match-score span {
  display: block;
  margin-top: 1px;
  color: #879089;
  font-size: 7px;
  text-transform: uppercase;
}

.path-card {
  margin-top: 9px;
  padding: 12px;
  border-radius: 15px;
}

.path-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.path-head strong {
  color: #a7b0a9;
  font-size: 7px;
}

.path-line {
  position: relative;
  margin: 13px 8px 8px;
  display: flex;
  justify-content: space-between;
}

.path-line::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 4px;
  height: 1px;
  background: #465048;
}

.path-line::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 30%;
  height: 1px;
  background: var(--green);
}

.path-line i {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid #858e87;
  border-radius: 50%;
  background: #0d100e;
}

.path-line i.active {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(93,228,49,.08);
}

.path-labels {
  display: flex;
  justify-content: space-between;
  color: #707a72;
  font-size: 6px;
}

.result-stack {
  display: grid;
  gap: 20px;
}

.result-card {
  min-height: 170px;
  padding: 14px;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 18px;
  border-radius: 22px;
}

.result-card picture,
.result-card picture img {
  width: 112px;
  height: 142px;
  border-radius: 14px;
  object-fit: cover;
}

.result-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.result-card p {
  margin-bottom: 17px;
  color: #8d978f;
  font-size: 11px;
  line-height: 1.5;
}

.result-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #cdd4ce;
  font-size: 11px;
}

.result-meta strong {
  color: var(--green);
  font-size: 11px;
}

.value-row {
  margin-top: 54px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.value-row > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 13px;
}

.value-icon {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93,228,49,.32);
  border-radius: 13px;
  color: var(--green);
  background: rgba(93,228,49,.045);
  font-size: 21px;
}

.value-row strong {
  font-size: 14px;
}

.value-row small {
  margin-top: 4px;
  color: #778179;
  font-size: 11px;
}

.section {
  position: relative;
  padding: 122px 0;
}

.section-light {
  color: var(--ink);
  background: var(--off-white);
}

.section-light::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .8;
  background:
    radial-gradient(circle at 8% 8%, rgba(93,228,49,.09), transparent 24%),
    radial-gradient(circle at 90% 80%, rgba(93,228,49,.07), transparent 22%);
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading-left {
  max-width: 700px;
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 15px 0 18px;
  font-size: clamp(38px, 4.6vw, 65px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 850;
}

.section-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted-light);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading-left p {
  margin-left: 0;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 55px rgba(25,50,31,.055);
}

.step-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(93,228,49,.09);
  filter: blur(30px);
}

.step-number {
  position: absolute;
  right: 26px;
  top: 22px;
  color: #d9e1db;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.05em;
}

.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(67,199,31,.24);
  border-radius: 17px;
  color: var(--green-deep);
  background: rgba(93,228,49,.085);
  font-size: 26px;
}

.step-card h3 {
  max-width: 260px;
  margin: 52px 0 15px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.step-card p {
  margin-bottom: 0;
  color: #667168;
  font-size: 15px;
  line-height: 1.7;
}

.features-section {
  background:
    radial-gradient(circle at 0% 33%, rgba(93,228,49,.075), transparent 23%),
    radial-gradient(circle at 100% 66%, rgba(93,228,49,.06), transparent 22%),
    #080b09;
}

.feature-block {
  min-height: 600px;
  padding: 64px 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.feature-block:last-child {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.feature-block-reverse .feature-copy {
  order: 2;
}

.feature-block-reverse .feature-visual {
  order: 1;
}

.feature-copy h3 {
  margin: 18px 0 22px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.feature-copy > p {
  max-width: 540px;
  margin-bottom: 28px;
  color: #9ca69e;
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-list li {
  color: #d9dfda;
  font-size: 14px;
}

.feature-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(93,228,49,.07), transparent 50%),
    rgba(255,255,255,.025);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle, #000 10%, transparent 76%);
}

.swipe-visual {
  display: grid;
  place-items: center;
}

.swipe-card {
  position: absolute;
  width: min(330px, 74%);
  min-height: 390px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 27px;
  background: #131814;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  transform-origin: 50% 90%;
}

.swipe-card-back,
.swipe-card-mid {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.swipe-card-back {
  transform: translateX(96px) rotate(8deg) scale(.92);
  opacity: .45;
}

.swipe-card-mid {
  transform: translateX(-84px) rotate(-7deg) scale(.95);
  opacity: .7;
}

.swipe-card-back span,
.swipe-card-mid span {
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.swipe-card-back strong,
.swipe-card-mid strong {
  margin-top: 8px;
  font-size: 23px;
  line-height: 1.1;
}

.swipe-card-back b,
.swipe-card-mid b {
  margin-top: 15px;
  color: var(--green);
  font-size: 12px;
}

.swipe-card-front {
  z-index: 2;
  overflow: hidden;
}

.swipe-image {
  position: relative;
  height: 215px;
  overflow: hidden;
}

.swipe-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, #131814);
}

.swipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.swipe-image span {
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 15px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #071007;
  background: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.swipe-info {
  padding: 0 22px;
}

.swipe-info small {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.swipe-info strong {
  display: block;
  margin-top: 5px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.swipe-info p {
  margin: 5px 0 0;
  color: #8c968e;
  font-size: 12px;
}

.swipe-actions {
  padding: 21px 22px 22px;
  display: flex;
  justify-content: center;
  gap: 17px;
}

.swipe-actions button {
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: #c8d0ca;
  background: rgba(255,255,255,.04);
  font-size: 20px;
}

.swipe-actions button:last-child {
  color: #071007;
  border-color: var(--green);
  background: var(--green);
}

.registry-visual {
  padding: 24px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
}

.registry-list,
.registry-detail {
  position: relative;
  z-index: 1;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  background: rgba(8,11,9,.78);
}

.registry-search {
  height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 11px;
  color: #667168;
  background: rgba(255,255,255,.035);
  font-size: 9px;
}

.registry-person {
  margin-top: 9px;
  padding: 9px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
}

.registry-person.active {
  border-color: rgba(93,228,49,.2);
  background: rgba(93,228,49,.055);
}

.registry-person img,
.avatar {
  width: 35px;
  height: 35px;
  border-radius: 9px;
  object-fit: cover;
}

.avatar {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
}

.avatar-orange { background: #8c5324; }
.avatar-blue { background: #214d75; }
.avatar-violet { background: #624079; }

.registry-person strong,
.registry-person small {
  display: block;
}

.registry-person strong {
  font-size: 9px;
}

.registry-person small {
  margin-top: 3px;
  color: #758078;
  font-size: 7px;
}

.registry-person b {
  color: var(--green);
  font-size: 10px;
}

.registry-head {
  margin-bottom: 13px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
}

.registry-head img {
  width: 56px;
  height: 66px;
  border-radius: 11px;
  object-fit: cover;
}

.registry-head small,
.registry-head strong,
.registry-head span {
  display: block;
}

.registry-head small {
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.registry-head strong {
  margin-top: 5px;
  font-size: 13px;
}

.registry-head span {
  margin-top: 4px;
  color: #78827a;
  font-size: 8px;
}

.credential-row {
  margin-top: 7px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  color: #bfc7c1;
  background: rgba(255,255,255,.025);
  font-size: 8px;
}

.credential-row b {
  color: var(--green);
  font-size: 7px;
}

.map-pins {
  position: relative;
  height: 105px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 60% 50%, rgba(93,228,49,.08), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.035), transparent);
}

.map-pins::before,
.map-pins::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 42% 58% 60% 40% / 42% 35% 65% 58%;
  transform: rotate(-12deg);
}

.map-pins::before {
  width: 54px;
  height: 77px;
  left: 44%;
  top: 12px;
}

.map-pins::after {
  width: 38px;
  height: 68px;
  left: 24%;
  top: 23px;
}

.map-pins i {
  position: absolute;
  z-index: 2;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border: 2px solid #071007;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(93,228,49,.13);
}

.map-pins span {
  position: absolute;
  left: 10px;
  bottom: 8px;
  color: #8f9991;
  font-size: 7px;
  font-weight: 700;
}

.progress-visual {
  padding: 34px;
}

.progress-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.progress-top span {
  font-size: 20px;
  font-weight: 780;
}

.progress-top strong {
  color: var(--green);
  font-size: 42px;
  line-height: .9;
  letter-spacing: -.06em;
}

.progress-meter {
  position: relative;
  z-index: 1;
  height: 8px;
  margin: 20px 0 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.progress-meter i {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-deep), var(--green-bright));
  box-shadow: 0 0 20px rgba(93,228,49,.3);
}

.milestones {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.milestones::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 26px;
  bottom: 25px;
  width: 1px;
  background: rgba(255,255,255,.1);
}

.milestones > div {
  min-height: 66px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}

.milestones > div.current {
  border-color: rgba(93,228,49,.25);
  background: rgba(93,228,49,.055);
}

.milestones > div > span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #536057;
  border-radius: 50%;
  color: #839087;
  background: #0c100d;
  font-size: 11px;
  font-weight: 800;
}

.milestones .done > span,
.milestones .current > span {
  color: #071007;
  border-color: var(--green);
  background: var(--green);
}

.milestones p {
  margin: 0;
}

.milestones strong,
.milestones small {
  display: block;
}

.milestones strong {
  font-size: 12px;
}

.milestones small {
  margin-top: 4px;
  color: #748077;
  font-size: 8px;
}

.coach-note {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 13px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(93,228,49,.14);
  border-radius: 15px;
  background: rgba(93,228,49,.035);
}

.coach-note img {
  width: 44px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.coach-note p {
  margin: 0;
}

.coach-note small,
.coach-note strong {
  display: block;
}

.coach-note small {
  color: var(--green);
  font-size: 7px;
  font-weight: 850;
  text-transform: uppercase;
}

.coach-note strong {
  margin-top: 4px;
  color: #bec7c0;
  font-size: 9px;
  line-height: 1.45;
}

.audience-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  min-height: 410px;
  padding: 34px;
  border: 1px solid var(--border-light);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-light);
}

.audience-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--green-deep);
  background: rgba(93,228,49,.1);
  font-size: 14px;
  font-weight: 900;
}

.audience-card h3 {
  margin: 54px 0 15px;
  font-size: 29px;
  letter-spacing: -.04em;
}

.audience-card > p {
  color: #667168;
  font-size: 15px;
  line-height: 1.7;
}

.audience-card ul {
  margin: 26px 0 0;
  padding: 24px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  list-style: none;
}

.audience-card li {
  color: #354139;
  font-size: 13px;
}

.sports-band {
  padding: 54px 0 62px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: #0b0e0c;
}

.sports-intro {
  text-align: center;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 820;
  letter-spacing: -.04em;
}

.sports-intro span {
  color: var(--green);
}

.sports-list {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.sports-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #97a199;
  background: rgba(255,255,255,.025);
  font-size: 11px;
  font-weight: 700;
}

.waitlist-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgba(93,228,49,.12), transparent 25%),
    radial-gradient(circle at 88% 70%, rgba(93,228,49,.08), transparent 23%),
    #070908;
}

.waitlist-wrap {
  position: relative;
  padding: 68px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}

.waitlist-wrap::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -160px;
  top: -180px;
  border-radius: 50%;
  background: rgba(93,228,49,.13);
  filter: blur(80px);
}

.waitlist-copy,
.waitlist-form {
  position: relative;
  z-index: 1;
}

.waitlist-copy h2 {
  margin: 18px 0 20px;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.waitlist-copy > p {
  max-width: 560px;
  color: #9ca69e;
  font-size: 17px;
  line-height: 1.75;
}

.waitlist-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.waitlist-points span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #89938b;
  background: rgba(255,255,255,.025);
  font-size: 10px;
  font-weight: 650;
}

.waitlist-form {
  padding: 26px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 25px;
  background: rgba(5,7,6,.58);
  backdrop-filter: blur(12px);
}

.waitlist-form label:not(.consent) {
  display: grid;
  gap: 8px;
  color: #cdd4ce;
  font-size: 12px;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  outline: 0;
  color: var(--white);
  background: rgba(255,255,255,.045);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.waitlist-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #91a095 50%), linear-gradient(135deg, #91a095 50%, transparent 50%);
  background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.waitlist-form select option {
  color: var(--white);
  background: #111512;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: rgba(93,228,49,.72);
  box-shadow: 0 0 0 4px rgba(93,228,49,.09);
}

.waitlist-form input::placeholder {
  color: #657068;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #8f9991;
  font-size: 10px;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--green);
}

.consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 18px;
  margin: -6px 0 0;
  color: var(--green);
  font-size: 11px;
  text-align: center;
}

.faq-section {
  background: #0a0d0b;
}

.faq-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.1);
}

.faq-list details {
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.faq-list summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  color: #e4eae5;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--green);
  font-size: 25px;
  font-weight: 350;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 0 28px;
  color: #8f9991;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050706;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand img {
  width: 175px;
}

.footer-brand p {
  margin: 10px 0 0;
  color: #69736b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: #8c968e;
  font-size: 12px;
  font-weight: 650;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #525c54;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

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

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

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

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .connection-stage {
    gap: 34px;
  }

  .connection-lines {
    opacity: .65;
  }

  .result-card {
    grid-template-columns: 86px 1fr;
    gap: 13px;
  }

  .result-card picture,
  .result-card picture img {
    width: 86px;
    height: 116px;
  }

  .result-card h3 {
    font-size: 16px;
  }

  .feature-block {
    gap: 55px;
  }

  .faq-layout {
    gap: 55px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 170px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .hero {
    padding-top: calc(var(--header-height) + 70px);
  }

  .connection-stage {
    max-width: 720px;
    grid-template-columns: minmax(210px, 1fr) minmax(270px, 320px);
    gap: 48px;
  }

  .result-stack {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, 1fr);
  }

  .result-card {
    min-height: 145px;
  }

  .connection-lines {
    display: none;
  }

  .profile-card {
    justify-self: end;
  }

  .value-row {
    max-width: 720px;
  }

  .feature-block,
  .feature-block-reverse {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 75px 0;
  }

  .feature-block-reverse .feature-copy,
  .feature-block-reverse .feature-visual {
    order: initial;
  }

  .feature-copy {
    max-width: 650px;
  }

  .feature-visual {
    min-height: 500px;
  }

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

  .step-card,
  .audience-card {
    min-height: auto;
  }

  .step-card h3,
  .audience-card h3 {
    margin-top: 38px;
  }

  .waitlist-wrap {
    padding: 50px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

  .hero {
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 17px;
  }

  .hero-actions .button {
    width: min(100%, 310px);
  }

  .role-strip {
    gap: 8px;
    font-size: 9px;
  }

  .connection-stage {
    margin-top: 55px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile-card {
    width: 100%;
    max-width: 390px;
    justify-self: center;
  }

  .phone-shell {
    max-width: 350px;
  }

  .result-stack {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .result-card {
    width: 100%;
    max-width: 390px;
    justify-self: center;
  }

  .value-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .section-heading p {
    font-size: 15px;
  }

  .step-card,
  .audience-card {
    padding: 26px;
  }

  .feature-block {
    padding: 58px 0;
  }

  .feature-copy h3 {
    font-size: 38px;
  }

  .feature-copy > p {
    font-size: 15px;
  }

  .feature-visual {
    min-height: 430px;
    border-radius: 25px;
  }

  .swipe-card {
    width: 76%;
    min-height: 360px;
  }

  .swipe-card-back {
    transform: translateX(50px) rotate(7deg) scale(.9);
  }

  .swipe-card-mid {
    transform: translateX(-48px) rotate(-6deg) scale(.94);
  }

  .registry-visual {
    min-height: auto;
    padding: 14px;
    grid-template-columns: 1fr;
  }

  .registry-list {
    display: none;
  }

  .registry-detail {
    min-height: 400px;
  }

  .progress-visual {
    padding: 22px;
  }

  .waitlist-wrap {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .waitlist-copy h2 {
    font-size: 42px;
  }

  .waitlist-form {
    padding: 19px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 155px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    letter-spacing: -.055em;
  }

  .match-main {
    grid-template-columns: 45px 1fr auto;
    gap: 8px;
  }

  .match-main > picture,
  .match-main > picture img {
    width: 45px;
    height: 54px;
  }

  .match-score strong {
    font-size: 18px;
  }

  .result-card {
    grid-template-columns: 90px 1fr;
  }

  .result-card picture,
  .result-card picture img {
    width: 90px;
    height: 120px;
  }

  .feature-copy h3 {
    font-size: 34px;
  }

  .swipe-card {
    width: 82%;
  }

  .swipe-card-back,
  .swipe-card-mid {
    opacity: .35;
  }

  .progress-top strong {
    font-size: 36px;
  }

  .faq-list summary {
    font-size: 14px;
  }
}

.simple-page,
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(93,228,49,.12), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(67,199,31,.08), transparent 24%),
    #070908;
}

.simple-page-main {
  min-height: 100vh;
  width: min(calc(100% - 32px), 720px);
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  place-content: center;
  gap: 46px;
}

.simple-logo {
  width: 190px;
  margin: 0 auto;
}

.simple-card {
  padding: 58px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.success-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #071007;
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(93,228,49,.08);
  font-size: 34px;
  font-weight: 900;
}

.simple-card h1 {
  margin: 18px 0;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1;
  letter-spacing: -.055em;
}

.simple-card p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: #9ca69e;
  font-size: 16px;
  line-height: 1.7;
}

.legal-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,9,8,.78);
  backdrop-filter: blur(20px);
}

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

.legal-header img {
  width: 175px;
}

.legal-main {
  padding: 90px 0 120px;
}

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

.legal-content h1 {
  margin: 20px 0 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.055em;
}

.legal-lead {
  margin-bottom: 52px;
  color: #a2aca4;
  font-size: 18px;
  line-height: 1.75;
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: 23px;
  letter-spacing: -.03em;
}

.legal-content p:not(.legal-lead) {
  color: #929c94;
  font-size: 15px;
  line-height: 1.8;
}

.legal-content .button {
  margin-top: 36px;
}

@media (max-width: 620px) {
  .simple-card {
    padding: 38px 22px;
  }

  .legal-header-inner {
    min-height: 70px;
  }

  .legal-header img {
    width: 145px;
  }

  .legal-header .text-link {
    font-size: 11px;
  }

  .legal-main {
    padding: 65px 0 90px;
  }
}
