@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0b0d0f;
  --ink-soft: #111418;
  --surface: #171b20;
  --surface-2: #1e242b;
  --line: #2a313a;
  --line-bright: #39434f;
  --paper: #f3f5f7;
  --text: #f5f7f9;
  --muted: #a7b0bb;
  --muted-2: #7f8996;
  --volt: #d6ff3f;
  --volt-soft: rgba(214, 255, 63, 0.12);
  --blue: #5aa5ff;
  --coral: #ff8e7b;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --body: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 2%, rgba(214, 255, 63, 0.1), transparent 25rem),
    radial-gradient(circle at 0% 38%, rgba(90, 165, 255, 0.07), transparent 28rem),
    var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--volt);
  color: var(--ink);
  font-weight: 800;
}

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

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--volt);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

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

.section-tight {
  padding: 76px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}

.section-head.center {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: var(--display);
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.8vw, 92px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 880;
  letter-spacing: -0.052em;
  line-height: 0.99;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 650px;
  color: #c7ced6;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.48;
}

.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.accent {
  color: var(--volt);
}

.blue {
  color: var(--blue);
}

.coral {
  color: var(--coral);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 13, 15, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #c2c9d1;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  padding: 12px 19px;
  background: var(--volt);
  color: var(--ink) !important;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.nav-cta {
  min-height: 44px;
  border-radius: 999px;
  padding: 9px 17px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(214, 255, 63, 0.2);
}

.button.secondary {
  border-color: var(--line-bright);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text) !important;
}

.button.secondary:hover {
  border-color: rgba(214, 255, 63, 0.65);
  box-shadow: none;
}

.button.small {
  min-height: 43px;
  border-radius: 13px;
  padding: 9px 15px;
  font-size: 15px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-button {
  flex-direction: column;
  gap: 4px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: clip;
  padding: 82px 0 76px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -18rem;
  right: -10rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 255, 63, 0.19), rgba(214, 255, 63, 0) 66%);
  content: "";
  filter: blur(8px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
  gap: 84px;
  align-items: center;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  border: 1px solid rgba(214, 255, 63, 0.27);
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--volt-soft);
  color: var(--volt);
  font-size: 13px;
  font-weight: 850;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--volt);
  box-shadow: 0 0 12px var(--volt);
}

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

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted-2);
  font-size: 14px;
}

.hero-note span::before {
  margin-right: 6px;
  color: var(--volt);
  content: "✓";
  font-weight: 900;
}

.phone-wrap {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
}

.phone-wrap::before,
.phone-wrap::after {
  position: absolute;
  border: 1px solid rgba(214, 255, 63, 0.18);
  border-radius: 50%;
  content: "";
}

.phone-wrap::before {
  width: 540px;
  height: 540px;
}

.phone-wrap::after {
  width: 390px;
  height: 390px;
  border-color: rgba(90, 165, 255, 0.17);
}

.phone {
  position: relative;
  z-index: 2;
  width: 326px;
  height: 650px;
  overflow: hidden;
  border: 9px solid #252a31;
  border-radius: 51px;
  background: #090b0d;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 50%;
  width: 108px;
  height: 27px;
  border-radius: 999px;
  background: #050607;
  content: "";
  transform: translateX(-50%);
}

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

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  padding: 13px 15px;
  background: rgba(23, 27, 32, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  display: block;
  font-family: var(--display);
  font-size: 15px;
}

.floating-card span {
  color: var(--muted);
  font-size: 12px;
}

.floating-card.one {
  top: 120px;
  right: -25px;
}

.floating-card.two {
  bottom: 92px;
  left: -38px;
}

.float-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--volt);
  color: var(--ink);
}

.proof-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.018);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.065);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.lab {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #171b20, #101317);
  box-shadow: var(--shadow);
}

.lab-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 26px 30px;
}

.lab-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-badge {
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--volt);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lab-sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.lab-controls {
  padding: 34px;
}

.sport-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.sport-tab,
.tour-tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  padding: 9px 14px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.sport-tab[aria-selected="true"],
.tour-tab[aria-selected="true"] {
  border-color: var(--volt);
  background: var(--volt);
  color: var(--ink);
}

.control {
  margin-bottom: 25px;
}

.control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 11px;
}

.control label {
  font-size: 15px;
  font-weight: 800;
}

.control output {
  color: var(--volt);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 900;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--volt);
}

.toggle-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.toggle {
  position: relative;
}

.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle label {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  padding: 12px 14px;
  background: var(--ink-soft);
  color: var(--muted);
}

.toggle input:checked + label {
  border-color: rgba(214, 255, 63, 0.58);
  background: var(--volt-soft);
  color: var(--text);
}

.toggle input:focus-visible + label {
  outline: 3px solid var(--volt);
  outline-offset: 3px;
}

.score-panel {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  padding: 42px;
  background:
    radial-gradient(circle at 50% 20%, rgba(214, 255, 63, 0.16), transparent 55%),
    #121519;
}

.score-ring {
  position: relative;
  display: grid;
  width: 214px;
  height: 214px;
  margin: 0 auto 28px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--volt) var(--score, 84%), var(--surface-2) 0);
  transition: background 220ms ease;
}

.score-ring::after {
  position: absolute;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: #121519;
  content: "";
}

.score-value {
  position: relative;
  z-index: 1;
  text-align: center;
}

.score-value strong {
  display: block;
  color: var(--volt);
  font-family: var(--display);
  font-size: 57px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.score-value span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

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

.reason-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd2d9;
  font-size: 14px;
}

.reason-list li::before {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--volt-soft);
  color: var(--volt);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.demo-note {
  margin: 21px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  text-align: center;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.tour-copy {
  display: grid;
  gap: 8px;
}

.tour-tab {
  width: 100%;
  border-radius: 17px;
  padding: 17px 18px;
  text-align: left;
}

.tour-tab strong {
  display: block;
  color: inherit;
  font-family: var(--display);
  font-size: 17px;
}

.tour-tab span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

.tour-tab[aria-selected="true"] span {
  color: rgba(11, 13, 15, 0.7);
}

.tour-stage {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(214, 255, 63, 0.12), transparent 58%),
    var(--ink-soft);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.tour-phone {
  width: 315px;
  height: 646px;
  overflow: hidden;
  border: 8px solid #2b3139;
  border-radius: 48px;
  background: #07090b;
  box-shadow: var(--shadow);
}

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

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

.feature-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(23, 27, 32, 0.78);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 15px;
  background: var(--volt-soft);
  font-size: 23px;
}

.feature-icon.icon-word {
  width: auto;
  min-width: 68px;
  padding-inline: 14px;
  border: 1px solid rgba(216, 255, 0, 0.28);
  border-radius: 13px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.sport-mark,
.label-mark,
.proof-mark,
.safety-mark {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--volt);
  color: var(--ink);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.sport-mark {
  min-width: 34px;
  height: 24px;
  margin-right: 8px;
}

.sport-tab[aria-selected="true"] .sport-mark {
  background: var(--ink);
  color: var(--volt);
}

.label-mark {
  min-width: 32px;
  height: 22px;
}

.proof-mark {
  min-width: 38px;
  height: 25px;
  margin-right: 10px;
  vertical-align: 3px;
}

.safety-mark {
  min-width: 52px;
  height: 30px;
  padding-inline: 9px;
}

.feature-icon.rating {
  width: auto;
  padding-inline: 14px;
  color: var(--volt);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.groups-layout,
.safety-layout,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 78px;
  align-items: center;
}

.groups-shot {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
}

.groups-shot::before {
  position: absolute;
  z-index: -1;
  inset: 12% -20% 10%;
  border-radius: 50%;
  background: rgba(90, 165, 255, 0.11);
  content: "";
  filter: blur(30px);
}

.groups-shot img {
  border: 8px solid #2b3139;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  display: flex;
  gap: 12px;
  color: #c9d0d8;
}

.check-list li::before {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--volt-soft);
  color: var(--volt);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.city-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.city-selector {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(214, 255, 63, 0.09), transparent 55%);
}

.field {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line-bright);
  border-radius: 15px;
  padding: 12px 15px;
  background: var(--ink);
  color: var(--text);
}

.field::placeholder {
  color: var(--muted-2);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.city-card {
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px;
  text-decoration: none;
}

.city-card:nth-child(3n) {
  border-right: 0;
}

.city-card:hover {
  background: rgba(255, 255, 255, 0.025);
}

.city-tag {
  display: inline-flex;
  margin-bottom: 38px;
  border: 1px solid rgba(214, 255, 63, 0.33);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--volt);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.city-tag.live {
  background: var(--volt);
  color: var(--ink);
}

.city-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.city-link {
  color: var(--volt);
  font-size: 14px;
  font-weight: 800;
}

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

.safety-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 22px;
  background: var(--surface);
}

.safety-card strong {
  display: block;
  margin: 13px 0 6px;
  font-family: var(--display);
  font-size: 17px;
}

.safety-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 255, 63, 0.24);
  border-radius: var(--radius-lg);
  padding: 46px;
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 255, 63, 0.14), transparent 40%),
    var(--surface);
}

.story-mark {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 24px;
  background: var(--ink);
}

.story-mark img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.story-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.story-copy p {
  color: #c8cfd7;
}

.story-by {
  margin-top: 23px;
  color: var(--muted);
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 0 22px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 35px 20px 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  margin-right: -28px;
  color: var(--volt);
  content: "+";
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--muted);
}

.cta-section {
  padding: 60px 0 110px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 62px;
  background: var(--volt);
  color: var(--ink);
}

.cta-box::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(11, 13, 15, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-box h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-box p {
  position: relative;
  z-index: 1;
  max-width: 630px;
  font-size: 19px;
}

.cta-box .button {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: var(--text) !important;
}

.waitlist-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(190px, 0.7fr) auto;
  gap: 10px;
  max-width: 880px;
  margin-top: 28px;
}

.waitlist-form .field {
  border-color: rgba(11, 13, 15, 0.25);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.form-message {
  position: relative;
  z-index: 2;
  display: none;
  margin: 14px 0 0;
  font-weight: 800;
}

.form-privacy {
  position: relative;
  z-index: 2;
  max-width: 880px !important;
  margin: 12px 0 0;
  color: rgba(11, 13, 15, 0.72);
  font-size: 13px !important;
  line-height: 1.5;
}

.form-privacy a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-message.show {
  display: block;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 64px 0 95px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.55fr);
  gap: 52px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.footer-col h3 {
  margin-bottom: 17px;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 11px;
  color: #c8cfd7;
  font-size: 15px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--volt);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 22px;
  color: var(--muted-2);
  font-size: 13px;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  padding: 10px;
  background: rgba(17, 20, 24, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(15px);
}

.mobile-cta .button {
  width: 100%;
}

.subhero {
  padding: 92px 0 68px;
}

.subhero h1 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 76px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted-2);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--muted);
}

.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  background: var(--surface);
}

.content-card + .content-card {
  margin-top: 16px;
}

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

.spot-card {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--surface);
}

.spot-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-content {
  padding: 70px 0 110px;
}

.legal-content h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-content h2 {
  margin-top: 48px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin-top: 30px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #c5ccd4;
}

.legal-content a {
  color: var(--volt);
}

.legal-content .updated,
.legal-content .muted {
  color: var(--muted);
}

.legal-content .box {
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: var(--surface);
}

.legal-content .box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .tour-layout,
  .groups-layout,
  .safety-layout,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .phone-wrap {
    min-height: 610px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .city-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .city-card:nth-child(2n) {
    border-right: 0;
  }

  .groups-layout .groups-shot {
    order: 2;
  }

  .story-layout {
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .mobile-cta.visible {
    display: block;
  }

  body {
    font-size: 16px;
  }

  .shell,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px;
    background: rgba(11, 13, 15, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px;
    border-radius: 12px;
  }

  .nav-links .nav-cta {
    margin-top: 7px;
  }

  .menu-button {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 50px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-grid {
    gap: 30px;
  }

  .phone-wrap {
    min-height: 555px;
  }

  .phone {
    width: 276px;
    height: 552px;
    border-radius: 44px;
  }

  .phone-wrap::before {
    width: 420px;
    height: 420px;
  }

  .phone-wrap::after {
    width: 300px;
    height: 300px;
  }

  .floating-card.one {
    top: 90px;
    right: -6px;
  }

  .floating-card.two {
    bottom: 60px;
    left: -2px;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  }

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

  .score-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .lab-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

  .city-card {
    border-right: 0 !important;
  }

  .city-selector,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .tour-stage {
    min-height: 590px;
  }

  .tour-phone {
    width: 274px;
    height: 561px;
  }

  .cta-box,
  .story-card,
  .content-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: 130px;
  }

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

@media (max-width: 480px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    display: grid;
    gap: 5px;
  }

  .floating-card {
    padding: 10px 11px;
  }

  .floating-card.one {
    right: -12px;
  }

  .floating-card.two {
    left: -12px;
  }

  .lab-controls,
  .score-panel {
    padding: 24px 19px;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }
}

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