:root {
  color-scheme: light;
  --ink: #10151c;
  --muted: #5b6472;
  --paper: #fbfcf8;
  --line: rgba(16, 21, 28, 0.14);
  --soft: rgba(255, 255, 255, 0.78);
  --green: #19b56b;
  --lime: #c9f24b;
  --aqua: #22c8d8;
  --coral: #ff6b4a;
  --amber: #f6b943;
  --blue: #2654d7;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(15, 25, 32, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.player {
  --theme: #19d879;
  --theme-2: #25d7e6;
  --theme-3: #ff7052;
  --deep: #07130f;
}

body.platform {
  --theme: #1db66f;
  --theme-2: #2464e8;
  --theme-3: #f4ad32;
  --deep: #07181d;
}

body.global {
  --theme: #00b875;
  --theme-2: #18b6cf;
  --theme-3: #ff6f4a;
  --deep: #111512;
}

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

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

[hidden] {
  display: none !important;
}

.netlify-hidden-form {
  display: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5vw;
  color: #ffffff;
  transition: background 0.2s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 850;
  font-size: 1rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.brand-mark::after {
  inset: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 720;
  font-size: 0.94rem;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.nav-cta,
.button,
button,
input,
textarea {
  font: inherit;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.13);
  color: inherit;
  font-weight: 820;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.button.primary {
  border-color: transparent;
  color: #07130f;
  background: linear-gradient(135deg, var(--theme), var(--lime));
}

.button.dark {
  color: #ffffff;
  border-color: transparent;
  background: #111820;
}

.button.light {
  color: #0c1512;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.86);
}

.button::after,
.nav-cta::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-left: 0.62rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.hero {
  min-height: clamp(620px, 86svh, 920px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background-color: var(--deep);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.32)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  padding: 7.2rem 5vw 4.7rem;
}

.hero.right {
  background-image:
    linear-gradient(270deg, rgba(2, 14, 20, 0.72), rgba(2, 14, 20, 0.16) 54%, rgba(2, 14, 20, 0.34)),
    var(--hero-image);
}

.hero.center {
  background-image:
    linear-gradient(90deg, rgba(4, 14, 13, 0.72), rgba(4, 14, 13, 0.18) 48%, rgba(4, 14, 13, 0.5)),
    var(--hero-image);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8vw 5.5rem 16vw;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--theme), var(--theme-2), transparent);
  opacity: 0.75;
  transform: rotate(-5deg);
  box-shadow: 0 0 28px var(--theme);
  z-index: -1;
}

.hero-copy {
  width: min(43rem, 100%);
  min-width: 0;
}

.hero.right .hero-copy {
  margin-left: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-weight: 860;
  color: var(--lime);
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 1.1rem;
  max-width: 12ch;
  font-size: 4.6rem;
  line-height: 0.92;
  font-weight: 920;
}

.hero.center h1 {
  max-width: 13ch;
}

.lead {
  margin-bottom: 1.55rem;
  max-width: 39rem;
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 100%;
}

.hero-proof li {
  min-width: 0;
  min-height: 2.35rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 740;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.band {
  padding: 4.5rem 5vw;
}

.band.alt {
  background: #eff8f3;
}

.band.dark-band {
  color: #ffffff;
  background: #10151c;
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  margin: 0;
  max-width: 13ch;
  font-size: 2.45rem;
  line-height: 1;
}

.section-head p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.dark-band .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(16, 21, 28, 0.08);
  overflow: hidden;
}

.card.pad {
  padding: 1.25rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.card p,
.card li {
  color: var(--muted);
}

.media-card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.media-card .pad {
  padding: 1.1rem;
}

.kicker {
  margin-bottom: 0.48rem;
  color: var(--theme-2);
  font-weight: 880;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.campaign-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.campaign-card h3 {
  font-size: 1.32rem;
}

.audience-map {
  display: grid;
  gap: 0.55rem;
}

.audience-row {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(16, 21, 28, 0.1);
}

.audience-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.audience-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  border-radius: 999px;
  color: #08120e;
  background: rgba(25, 216, 121, 0.16);
  font-size: 0.78rem;
  font-weight: 860;
}

.audience-row p {
  margin: 0;
  font-size: 0.93rem;
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-top: 3rem;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1.25rem;
  top: 1.15rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.visual-panel {
  min-height: 26rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 20% 20%, rgba(34, 200, 216, 0.2), transparent 30%),
    radial-gradient(circle at 74% 72%, rgba(255, 111, 74, 0.18), transparent 34%),
    #edf8f2;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.route-map {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(16, 21, 28, 0.12);
  background-image:
    linear-gradient(rgba(16, 21, 28, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 28, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 22% 8% 38% 6%;
  border-top: 5px solid var(--theme);
  border-right: 5px solid var(--theme-2);
  transform: skewY(-11deg);
  box-shadow: 0 0 26px rgba(29, 182, 111, 0.5);
}

.pin {
  position: absolute;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50% 50% 50% 0;
  border: 2px solid #ffffff;
  background: var(--theme-3);
  box-shadow: 0 10px 30px rgba(16, 21, 28, 0.22);
  transform: rotate(-45deg);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 50%;
  background: #ffffff;
}

.pin.one {
  left: 18%;
  top: 24%;
}

.pin.two {
  right: 24%;
  top: 34%;
  background: var(--theme-2);
}

.pin.three {
  left: 44%;
  bottom: 18%;
  background: var(--theme);
}

.phone {
  position: absolute;
  right: 7%;
  bottom: 10%;
  width: 11rem;
  aspect-ratio: 9 / 18;
  padding: 0.55rem;
  border-radius: 1.6rem;
  background: #111820;
  box-shadow: 0 24px 50px rgba(16, 21, 28, 0.34);
}

.phone-screen {
  height: 100%;
  border-radius: 1.1rem;
  background:
    linear-gradient(160deg, rgba(25, 216, 121, 0.35), rgba(37, 84, 215, 0.3)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent),
    #d6f5e4;
  position: relative;
  overflow: hidden;
}

.phone-screen::before,
.phone-screen::after {
  content: "";
  position: absolute;
  border: 2px solid #ffffff;
  opacity: 0.9;
}

.phone-screen::before {
  left: 22%;
  top: 18%;
  width: 56%;
  height: 38%;
  border-radius: 50%;
}

.phone-screen::after {
  left: 38%;
  bottom: 17%;
  width: 24%;
  height: 24%;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--theme-3);
}

.tabs {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.tabs button {
  min-height: 2.55rem;
  border: 0;
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  background: transparent;
  font-weight: 820;
  cursor: pointer;
}

.tabs button.is-active {
  color: #ffffff;
  background: var(--ink);
}

.panel {
  margin-top: 1.2rem;
}

.panel[hidden] {
  display: none;
}

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

.list li {
  padding-left: 1.55rem;
  position: relative;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--theme);
  box-shadow: 0 0 0 4px rgba(29, 182, 111, 0.12);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-weight: 680;
}

.estimator {
  padding: 1.25rem;
  border-radius: var(--radius);
  color: #ffffff;
  background: #111820;
}

.estimator h3 {
  margin-bottom: 0.4rem;
}

.estimator p {
  color: rgba(255, 255, 255, 0.68);
}

.field-row {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.field-row label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 760;
}

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

.estimate-output {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.estimate-output strong {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--lime);
}

.cta-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(10, 18, 22, 0.94), rgba(7, 37, 30, 0.9)),
    linear-gradient(90deg, var(--theme), var(--theme-2));
}

.cta-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.5fr);
  gap: 2rem;
  align-items: start;
}

.cta-band h2 {
  font-size: 2.55rem;
  line-height: 1;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 760;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 0.78rem 0.85rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.form option {
  color: #10151c;
  background: #ffffff;
}

.form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--lime);
  font-weight: 720;
}

.footer {
  padding: 2rem 5vw;
  color: rgba(255, 255, 255, 0.74);
  background: #080d11;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.launch-site {
  background: #f6fbf8;
}

.launch-hero {
  min-height: clamp(700px, 92svh, 980px);
  padding: 6.6rem 5vw 3.6rem;
  align-items: center;
  background-color: #05120f;
  background-image:
    linear-gradient(135deg, #04100d 0%, #073226 48%, #173f95 100%);
  background-position: center;
}

.launch-hero::before {
  inset: auto -8vw 4.2rem 14vw;
  opacity: 0.9;
}

.launch-hero-inner {
  width: min(1180px, 100%);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.56fr);
  gap: 3rem;
  align-items: center;
}

.launch-hero .hero-copy {
  width: auto;
}

.launch-hero h1 {
  max-width: 12ch;
  font-size: 5.9rem;
}

.launch-hero .lead {
  max-width: 33rem;
  font-size: 1.35rem;
}

.store-actions {
  margin-bottom: 1.5rem;
}

.hero-phone-showcase {
  justify-self: end;
  width: min(27rem, 100%);
  margin: 0;
}

.hero-phone-showcase img {
  width: 100%;
  height: auto;
  max-height: min(76svh, 740px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.hero-phone-showcase figcaption {
  width: max-content;
  max-width: 92%;
  margin: 0.8rem auto 0;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #07130f;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 850;
  text-align: center;
}

.button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.subtle {
  color: #10151c;
  border-color: rgba(16, 21, 28, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.intro-band {
  background:
    linear-gradient(180deg, #f7fcf9, #eff8f3);
}

.launch-intro h2,
.community-band h2 {
  margin-bottom: 1rem;
  font-size: 2.45rem;
  line-height: 1;
}

.launch-intro p,
.community-band p {
  color: var(--muted);
}

.big-tags {
  margin: 1.4rem 0 1.6rem;
}

.big-tags span {
  color: #0c1512;
  background: rgba(25, 216, 121, 0.1);
}

.dark-actions {
  margin-bottom: 0;
}

.store-feature {
  margin: 0;
  border: 1px solid rgba(16, 21, 28, 0.12);
  border-radius: var(--radius);
  background: #111820;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.store-feature img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #111820;
}

.store-feature figcaption {
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
}

.screenshot-band {
  background:
    radial-gradient(circle at 14% 20%, rgba(34, 200, 216, 0.14), transparent 26%),
    radial-gradient(circle at 84% 80%, rgba(25, 216, 121, 0.12), transparent 30%),
    #10151c;
}

.store-showcase {
  display: flex;
  gap: 1.1rem;
  align-items: stretch;
  overflow-x: auto;
  padding: 0.35rem 0.25rem 1.1rem;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(255, 255, 255, 0.42) rgba(255, 255, 255, 0.08);
}

.screenshot-card {
  display: flex;
  flex: 0 0 clamp(14rem, 22vw, 18rem);
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  scroll-snap-align: start;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.36);
}

.featured-shot {
  flex-basis: clamp(15rem, 24vw, 19rem);
}

.grid.four.steps .step {
  padding: 1.25rem 1.25rem 1.25rem 4.3rem;
}

.grid.four.steps .step::before {
  left: 1.25rem;
  top: 1.28rem;
}

.benefit-grid {
  align-items: stretch;
}

.benefit-card {
  min-height: 13rem;
}

.benefit-card h3 {
  font-size: 1.28rem;
}

.community-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 28, 24, 0.95), rgba(8, 44, 38, 0.94)),
    linear-gradient(90deg, var(--theme), var(--theme-2));
}

.community-band p {
  color: rgba(255, 255, 255, 0.75);
}

.community-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.community-flow span {
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #07130f;
  background: linear-gradient(135deg, var(--theme), var(--lime));
  font-weight: 840;
}

.creator-stack {
  display: grid;
  gap: 0.8rem;
}

.creator-stack article {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.creator-stack strong,
.creator-stack span {
  display: block;
}

.creator-stack strong {
  margin-bottom: 0.25rem;
  color: var(--lime);
  font-size: 1.08rem;
}

.creator-stack span {
  color: rgba(255, 255, 255, 0.76);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  color: var(--muted);
  font-weight: 760;
  font-size: 0.82rem;
}

.page-note {
  padding: 1rem;
  border-left: 4px solid var(--theme);
  background: rgba(255, 255, 255, 0.72);
}

.open-city-hero {
  min-height: clamp(620px, 78svh, 860px);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.32) 48%, rgba(0, 0, 0, 0.06) 74%, rgba(0, 0, 0, 0.18)),
    var(--hero-image);
  background-position: center right;
}

.open-city-band {
  background:
    linear-gradient(180deg, #f7fcf9, #eef8f2);
}

.open-city-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: 2rem;
  align-items: start;
}

.open-city-layout h2 {
  margin-bottom: 1rem;
  font-size: 2.45rem;
  line-height: 1;
}

.open-city-layout p {
  color: var(--muted);
}

.safety-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.safety-list article {
  padding: 1rem;
  border: 1px solid rgba(16, 21, 28, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.safety-list strong,
.safety-list span {
  display: block;
}

.safety-list strong {
  margin-bottom: 0.2rem;
}

.safety-list span {
  color: var(--muted);
}

.open-city-panel {
  scroll-margin-top: 6.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(16, 21, 28, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    #ffffff;
  box-shadow: var(--shadow);
}

.open-city-panel .form {
  color: var(--ink);
}

.open-city-panel .form h2 {
  margin-bottom: 0.45rem;
  font-size: 1.45rem;
}

.open-city-panel .form p {
  margin-bottom: 0.8rem;
}

.open-city-panel .form input,
.open-city-panel .form textarea,
.open-city-panel .form select {
  color: var(--ink);
  border-color: rgba(16, 21, 28, 0.18);
  background: #ffffff;
}

.open-city-panel .form textarea {
  min-height: 6.6rem;
}

.open-city-panel .form input::placeholder,
.open-city-panel .form textarea::placeholder {
  color: rgba(16, 21, 28, 0.44);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.field-hint {
  margin: -0.2rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.field-hint[data-state="pending"] {
  color: var(--blue);
}

.field-hint[data-state="success"] {
  color: #0a8050;
}

.field-hint[data-state="error"] {
  color: #b83219;
}

.open-city-panel .form input:disabled {
  cursor: not-allowed;
  color: rgba(16, 21, 28, 0.5);
  background: rgba(16, 21, 28, 0.04);
}

.open-city-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(16, 21, 28, 0.1);
  color: var(--muted);
  font-weight: 760;
}

.link-button {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 820;
  cursor: pointer;
}

.form-message[data-state="error"] {
  color: #ffcfbc;
}

.open-city-panel .form-message[data-state="error"] {
  color: #b83219;
}

.open-city-panel .form-message[data-state="success"] {
  color: #0a8050;
}

.open-city-panel .form-message[data-state="pending"] {
  color: var(--blue);
}

.button:disabled {
  cursor: wait;
  opacity: 0.64;
  transform: none;
}

.open-city-shortcut {
  width: 100%;
}

@media (max-width: 900px) {
  .topbar {
    position: absolute;
    padding-inline: 1.15rem;
  }

  .nav {
    display: none;
  }

  .hero,
  .hero.right,
  .hero.center {
    min-height: 84svh;
    padding-top: 6.2rem;
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.76)),
      var(--hero-image);
    background-position: center;
  }

  .launch-hero {
    min-height: auto;
    padding: 6rem 1.15rem 3rem;
    background-image: linear-gradient(155deg, #04100d 0%, #073226 55%, #173f95 100%);
  }

  .launch-hero-inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .launch-hero h1 {
    font-size: 3.05rem;
  }

  .launch-hero .lead {
    max-width: none;
    font-size: 1.08rem;
  }

  .hero-phone-showcase {
    justify-self: center;
    width: min(18rem, 74vw);
  }

  h1 {
    font-size: 2.75rem;
    line-height: 0.96;
  }

  .lead {
    font-size: 1.05rem;
  }

  .section-head,
  .split,
  .cta-band .wrap,
  .open-city-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .metric-strip,
  .store-showcase {
    grid-template-columns: 1fr;
  }

  .featured-shot {
    flex-basis: min(72vw, 19rem);
  }

  .store-showcase {
    margin-inline: -1.15rem;
    padding-inline: 1.15rem;
  }

  .screenshot-card {
    flex-basis: min(72vw, 18rem);
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .visual-panel {
    min-height: 22rem;
  }

  .phone {
    width: 8.5rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding-inline: 1.15rem;
  }

  .band {
    padding: 3rem 1.15rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .section-head h2,
  .cta-band h2,
  .launch-intro h2,
  .community-band h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .tabs {
    width: 100%;
  }

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

  .launch-hero-inner,
  .store-actions,
  .hero-proof {
    max-width: 22rem;
  }

  .launch-hero-inner {
    width: 100%;
    margin-inline: 0;
    justify-self: start;
  }

  .store-actions,
  .hero-proof {
    max-width: 100%;
  }

  .button,
  .tabs button {
    width: 100%;
  }

  .hero-proof {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-proof li {
    min-width: 0;
    text-align: center;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tabs {
    grid-auto-flow: row;
  }

  .audience-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .audience-label {
    justify-content: flex-start;
    width: max-content;
    padding-inline: 0.7rem;
  }

  .store-showcase {
    padding-bottom: 0.9rem;
  }

  .screenshot-card,
  .featured-shot {
    flex-basis: 78vw;
  }

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

.topbar.solid {
  position: sticky;
  top: 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 248, 0.94);
  backdrop-filter: blur(18px);
}

.topbar.solid .nav-cta {
  color: #07130f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--theme), var(--lime));
}
