:root {
  --ink: #05070c;
  --muted: #59616f;
  --line: #d9e2ee;
  --paper: #f7f9fc;
  --panel: #ffffff;
  --blue: #066cff;
  --blue-dark: #0041b8;
  --ice: #dcebff;
  --shadow: 0 24px 70px rgba(5, 13, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(5, 7, 12, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 249, 252, 0.86);
  border-bottom: 1px solid rgba(217, 226, 238, 0.8);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 184px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-nav a,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a.active,
.site-nav a:hover {
  background: var(--ink);
  color: white;
}

.nav-cta {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 30px rgba(6, 108, 255, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 7vw, 98px) clamp(18px, 5vw, 72px) clamp(32px, 6vw, 72px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 245, 255, 0.78)),
    linear-gradient(120deg, transparent 0 48%, rgba(6, 108, 255, 0.12) 48% 72%, transparent 72% 100%);
}

.page-hero {
  min-height: 72vh;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.page-hero.compact {
  min-height: 62vh;
}

.page-hero.host-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 1.02;
}

.page-hero.host-hero {
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(22px, 3.8vw, 54px);
  min-height: min(820px, calc(100vh - 82px));
}

.page-hero.host-hero > img {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: clamp(430px, 58vh, 660px);
  max-height: none;
  object-fit: cover;
  object-position: 58% center;
  border: 1px solid rgba(140, 156, 184, 0.26);
  border-radius: 34px;
  box-shadow: 0 34px 72px rgba(5, 7, 12, 0.18);
  filter: none;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(52px, 7.6vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(50px, 7vw, 104px);
}

.hero-lede,
.page-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  white-space: normal;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 34px rgba(6, 108, 255, 0.24);
}

.button.secondary {
  background: var(--ink);
  color: white;
}

.button.ghost {
  background: white;
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #273142;
  font-size: 13px;
  font-weight: 850;
}

.hero-visual,
.page-hero > img {
  position: relative;
  justify-self: center;
  width: min(100%, 720px);
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 4% 2%;
  background: linear-gradient(145deg, #0c111d 0%, #111826 52%, #066cff 100%);
  border-radius: 36px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
  animation: station-panel 7s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  width: min(92%, 620px);
  filter: drop-shadow(0 32px 48px rgba(5, 7, 12, 0.22));
  animation: product-float 6s ease-in-out infinite;
}

.stat-card {
  position: absolute;
  z-index: 2;
  width: min(220px, 42vw);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat-card.top {
  top: 12%;
  right: 0;
}

.stat-card.bottom {
  left: 0;
  bottom: 13%;
}

.stat-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.05;
}

.intro-strip,
.logo-band {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.intro-strip a,
.logo-band span {
  flex: 0 0 auto;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.plain-explainer,
.audience-section,
.use-case-section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background: white;
}

.how-visual-section,
.network-effect-section,
.host-ops-section,
.host-next-step-section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background: white;
}

.how-visual-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 243, 255, 0.9)),
    var(--paper);
}

.how-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  margin-top: 44px;
}

.wide-image-card {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.wide-image-card img,
.photo-panel img,
.use-case-grid.has-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-steps,
.network-grid,
.ops-grid,
.next-step-grid {
  display: grid;
  gap: 14px;
}

.visual-steps article,
.network-grid article,
.ops-grid article,
.next-step-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(5, 13, 30, 0.07);
}

.visual-steps span,
.network-grid span,
.ops-grid span {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--blue);
  font-weight: 950;
}

.visual-steps strong,
.network-grid strong,
.ops-grid strong,
.next-step-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.08;
}

.visual-steps p,
.network-grid p,
.ops-grid p,
.next-step-grid p {
  margin: 0;
  color: var(--muted);
}

.explainer-grid,
.audience-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.explainer-grid article,
.audience-grid a,
.use-case-grid article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(5, 13, 30, 0.07);
}

.use-case-grid.has-images article {
  min-height: 390px;
  display: grid;
  align-content: start;
  padding: 0;
}

.use-case-grid.has-images img {
  height: 190px;
  border-bottom: 1px solid var(--line);
}

.use-case-grid.has-images strong,
.use-case-grid.has-images p {
  padding-inline: 24px;
}

.use-case-grid.has-images strong {
  padding-top: 22px;
}

.use-case-grid.has-images p {
  padding-bottom: 26px;
}

.explainer-grid article::after,
.audience-grid a::after,
.use-case-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--ink));
}

.explainer-grid span,
.audience-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.explainer-grid h3,
.audience-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.explainer-grid p,
.audience-grid p,
.use-case-grid p {
  margin: 0;
  color: var(--muted);
}

.flow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.flow-copy {
  position: sticky;
  top: 118px;
}

.flow-copy h2,
.trust-section h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.flow-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.flow-steps {
  display: grid;
  gap: 14px;
}

.flow-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.flow-steps span {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 950;
}

.flow-steps strong {
  font-size: 28px;
  line-height: 1;
}

.flow-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.host-stats-section,
.host-value-section,
.host-checklist-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: white;
}

.nightlife-safety-section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #05070c 0%, #0d111a 58%, #061a3a 100%);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.nightlife-safety-copy h2 {
  margin: 0;
  max-width: 880px;
  color: white;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.95;
}

.nightlife-safety-copy p:not(.eyebrow),
.safety-grid p,
.safety-footnote {
  color: rgba(255, 255, 255, 0.72);
}

.nightlife-safety-copy p:not(.eyebrow) {
  max-width: 780px;
  font-size: clamp(17px, 1.7vw, 21px);
}

.safety-stat-panel {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  background: white;
  color: var(--ink);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.safety-stat-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--blue);
}

.safety-stat-panel span {
  display: block;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.safety-stat-panel strong {
  display: block;
  margin-top: 14px;
  color: var(--blue);
  font-size: clamp(76px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

.safety-stat-panel p {
  margin: 18px 0;
  color: #243244;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.safety-stat-panel a {
  color: var(--blue);
  font-weight: 900;
}

.safety-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.safety-grid article {
  min-height: 225px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.safety-grid span {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 950;
}

.safety-grid h3 {
  margin: 0 0 10px;
  color: white;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1;
}

.safety-grid p {
  margin: 0;
}

.safety-footnote {
  grid-column: 1 / -1;
  max-width: 1020px;
  margin: 0;
  font-size: 14px;
}

.host-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.host-stats-grid article {
  min-height: 245px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(234, 243, 255, 0.86)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(5, 13, 30, 0.08);
}

.host-stats-grid strong {
  display: block;
  color: var(--blue);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.9;
}

.host-stats-grid span {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.05;
}

.host-stats-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.host-value-grid,
.host-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.host-value-grid article,
.host-check-grid article {
  min-height: 225px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(5, 13, 30, 0.06);
}

.host-value-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.host-value-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.host-value-grid p,
.host-check-grid p {
  margin: 0;
  color: var(--muted);
}

.host-check-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.host-comparison-section,
.host-download-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

.host-download-section {
  margin: 0 clamp(18px, 5vw, 72px);
  border-radius: 34px;
}

.host-comparison-section h2,
.host-download-section h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.host-comparison-section p:not(.eyebrow),
.host-download-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.host-comparison-table {
  display: grid;
  gap: 12px;
}

.host-comparison-table div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
}

.host-comparison-table strong {
  color: white;
}

.host-comparison-table span {
  color: rgba(255, 255, 255, 0.76);
}

.host-download-section .button {
  justify-self: end;
}

.source-note-section {
  padding: 24px clamp(18px, 5vw, 72px) 0;
}

.source-note-section p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.source-note-section a {
  color: var(--blue);
  font-weight: 850;
}

.split-section,
.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-media {
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dark-panel {
  background: radial-gradient(circle at 55% 32%, rgba(6, 108, 255, 0.38), transparent 24rem), #080b12;
}

.blue-panel {
  background: radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.58), transparent 24rem), linear-gradient(145deg, #0559d9, #061429);
}

.photo-panel {
  background: #0a101b;
}

.section-media img {
  width: min(86%, 520px);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.35));
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.ops-grid,
.next-step-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
}

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

.use-case-grid.has-images strong {
  display: block;
  font-size: 22px;
  line-height: 1.08;
}

.section-copy h2,
.product-section h2,
.cta-panel h2,
.form-section h2,
.mission h2,
.section-heading h2,
.partner-tiers h2,
.partner-system h2,
.investment-section h2,
.timeline-section h2,
.learn-more h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading {
  max-width: 960px;
}

.section-heading p:not(.eyebrow),
.partner-tiers .section-heading p,
.investment-section > div > p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.venue-proof,
.partner-tiers,
.partner-system,
.revenue-split-section,
.investment-section,
.timeline-section,
.learn-more {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.venue-proof,
.partner-system,
.timeline-section {
  background: white;
}

.network-effect-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(6, 108, 255, 0.16), transparent 24rem),
    var(--ink);
  color: white;
}

.network-effect-section .section-heading p:not(.eyebrow),
.network-effect-section .network-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.network-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.network-grid article {
  min-height: 240px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.network-grid strong {
  color: white;
}

.revenue-split-section {
  background: radial-gradient(circle at 84% 16%, rgba(6, 108, 255, 0.18), transparent 24rem), var(--ink);
  color: white;
}

.revenue-split-section .section-heading p:not(.eyebrow),
.revenue-split-section .fine-print {
  color: rgba(255, 255, 255, 0.72);
}

.revenue-split-section h2 {
  color: white;
}

.revenue-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  margin-top: 44px;
}

.split-donut {
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 80%, rgba(255, 255, 255, 0.18) 80% 100%);
  box-shadow: 0 30px 80px rgba(6, 108, 255, 0.26);
}

.split-donut::before {
  content: "";
  position: absolute;
}

.split-donut > div {
  width: 64%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.split-donut strong {
  font-size: clamp(56px, 8vw, 92px);
  line-height: 0.9;
}

.split-donut span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.split-bar {
  display: grid;
  grid-template-columns: 4fr 1fr;
  min-height: 78px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.split-bar span {
  display: flex;
  align-items: center;
  padding: 0 28px;
  font-weight: 900;
}

.partner-share {
  background: var(--blue);
}

.voltara-share {
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.split-cards article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.split-cards span {
  display: block;
  margin-bottom: 12px;
  color: #7eb2ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-cards strong {
  display: block;
  font-size: 24px;
  line-height: 1.08;
}

.split-cards p {
  color: rgba(255, 255, 255, 0.72);
}

.fine-print {
  max-width: 980px;
  margin: 28px 0 0;
  font-size: 14px;
}

.reason-grid,
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.reason-grid article,
.system-grid article {
  min-height: 250px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.reason-grid span,
.investment-cards span,
.timeline span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reason-grid h3,
.system-grid h3,
.tier-grid h3,
.investment-cards h3,
.timeline h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.08;
}

.reason-grid p,
.system-grid p,
.tier-grid p,
.investment-cards p,
.timeline p,
.accordion-list p {
  margin: 0;
  color: var(--muted);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

.tier-grid article {
  padding: clamp(26px, 4vw, 42px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 46px rgba(5, 13, 30, 0.08);
}

.tier-grid .featured-tier {
  background: var(--ink);
  color: white;
}

.featured-tier p,
.featured-tier dd {
  color: rgba(255, 255, 255, 0.72);
}

.tier-label {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-grid dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.tier-grid dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.featured-tier dl div {
  border-color: rgba(255, 255, 255, 0.18);
}

.tier-grid dt {
  font-weight: 900;
}

.tier-grid dd {
  margin: 0;
  color: var(--muted);
}

.investment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  background: linear-gradient(135deg, #f7f9fc 0%, #eaf3ff 100%);
}

.investment-cards {
  display: grid;
  gap: 16px;
}

.investment-cards article {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(5, 13, 30, 0.08);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.timeline article {
  min-height: 270px;
  padding: 26px;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.accordion-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 40px;
}

.accordion-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(5, 13, 30, 0.06);
}

.accordion-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.accordion-list p {
  padding: 0 24px 24px;
}

.feature-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.feature-list article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.feature-list h3,
.three-up h2,
.steps h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.feature-list p,
.three-up p,
.steps p,
.cta-panel p,
.mission p,
.form-section p {
  color: var(--muted);
  font-size: 17px;
}

.logo-band {
  background: white;
  color: var(--ink);
  border-block: 1px solid var(--line);
}

.logo-band span {
  border-color: var(--line);
  color: var(--muted);
}

.product-section {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
  text-align: center;
}

.product-section h2 {
  margin-inline: auto;
}

.product-intro {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.8fr) 1fr;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  margin-top: 48px;
}

.product-card {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 108, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(6, 108, 255, 0.08) 1px, transparent 1px),
    white;
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.product-card::before {
  content: "LIVE RENTAL STATION";
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  background: var(--ink);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-features,
.spec-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.station-features article,
.spec-list li {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-weight: 850;
  text-align: left;
  box-shadow: 0 14px 32px rgba(5, 13, 30, 0.06);
}

.station-features span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.station-features strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.08;
}

.station-features p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.resource-section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: white;
}

.resource-section .section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

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

.resource-grid a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(5, 13, 30, 0.07);
}

.resource-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 108, 255, 0.34);
}

.resource-grid span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.resource-grid strong {
  display: block;
  font-size: 22px;
}

.resource-grid p {
  margin: 0;
  color: var(--muted);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(5, 7, 12, 0.98), rgba(5, 18, 42, 0.98)),
    var(--ink);
  color: white;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
}

.trust-list span {
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: white;
  color: var(--ink);
  font-weight: 950;
}

.trust-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(64px, 9vw, 128px);
  padding: clamp(32px, 5vw, 56px);
  background: var(--ink);
  color: white;
  border-radius: 34px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel .button.secondary {
  background: white;
  color: var(--ink);
}

.page-hero:not(.host-hero) > img:not(.logo-hero) {
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 30px 46px rgba(5, 7, 12, 0.2));
}

.logo-hero {
  width: min(100%, 620px);
  padding: 48px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.three-up,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.three-up article,
.steps article {
  min-height: 260px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(5, 13, 30, 0.08);
}

.three-up span,
.steps span {
  display: inline-flex;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--blue);
  font-weight: 900;
}

.form-section {
  align-items: start;
  background: white;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: #1f2835;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signup-form label:nth-last-of-type(1),
.signup-form button,
.form-note {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.form-next-steps {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 24px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.form-next-steps strong {
  font-size: 18px;
}

.form-next-steps span {
  color: var(--muted);
}

.mission {
  padding: clamp(64px, 9vw, 128px) clamp(18px, 5vw, 72px);
  background: white;
}

.mission p {
  max-width: 900px;
}

.legal-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(6, 108, 255, 0.14), transparent 32%),
    var(--paper);
}

.legal-hero {
  padding: clamp(96px, 13vw, 160px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 82px);
  background: linear-gradient(135deg, #05070c, #0b1530 64%, #06101f);
  color: white;
}

.legal-hero h1 {
  max-width: 940px;
  margin: 0;
  color: white;
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.legal-updated {
  margin-top: 22px;
  font-size: 14px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 290px) minmax(0, 900px);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.legal-toc {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 50px rgba(6, 15, 32, 0.06);
}

.legal-toc a {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.legal-toc a:hover {
  background: var(--paper);
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content section {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 20px 50px rgba(6, 15, 32, 0.05);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-content p {
  margin: 0 0 12px;
}

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

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(220px, auto) auto;
  gap: 34px;
  padding: 48px clamp(18px, 5vw, 72px);
  background: #05070c;
  color: white;
}

.footer-logo {
  width: 162px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  background: white;
  border-radius: 12px;
  padding: 8px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact strong {
  color: white;
}

.footer-contact a {
  color: #7eb2ff;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  body.nav-open .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: grid;
    border-radius: 24px;
  }

  body.nav-open .nav-cta {
    grid-column: 1 / -1;
    display: inline-flex;
  }

  .hero,
  .page-hero,
  .split-section,
  .split-section.reverse,
  .flow-section,
  .form-section,
  .how-visual-grid,
  .product-grid,
  .investment-section,
  .revenue-visual,
  .nightlife-safety-section,
  .host-comparison-section,
  .host-download-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .page-hero.host-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero.host-hero > img {
    height: clamp(340px, 58vw, 520px);
    object-position: center;
    border-radius: 28px;
  }

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

  .section-media {
    min-height: 480px;
  }

  .three-up,
  .steps,
  .explainer-grid,
  .audience-grid,
  .use-case-grid,
  .network-grid,
  .ops-grid,
  .next-step-grid,
  .safety-grid,
  .host-stats-grid,
  .host-value-grid,
  .host-check-grid,
  .reason-grid,
  .system-grid,
  .tier-grid,
  .split-cards,
  .resource-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .timeline article:last-child {
    border-bottom: 0;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .flow-copy {
    position: static;
  }

  .host-download-section .button {
    justify-self: start;
  }

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

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 148px;
    height: 52px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(46px, 16vw, 70px);
  }

  .page-hero.host-hero h1 {
    font-size: clamp(38px, 13vw, 54px);
    line-height: 1;
  }

  .page-hero.host-hero > img {
    height: clamp(280px, 72vw, 380px);
    border-radius: 22px;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stat-card {
    position: relative;
    width: 100%;
    inset: auto;
  }

  .hero-visual {
    align-content: center;
    gap: 12px;
    min-height: auto;
  }

  .hero-visual::before {
    inset: 80px 0 70px;
    border-radius: 26px;
  }

  .section-media,
  .product-card,
  .wide-image-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .tier-grid dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .split-bar {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .host-comparison-table div {
    grid-template-columns: 1fr;
  }

  .split-bar span {
    min-height: 54px;
    justify-content: center;
    text-align: center;
  }

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

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-content section {
    border-radius: 18px;
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.reveal-ready .reveal:not(.is-visible) {
  opacity: 0.72;
  transform: translateY(10px);
}

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

@keyframes station-panel {
  0%,
  100% {
    transform: rotate(-4deg) scale(1);
  }
  50% {
    transform: rotate(-2deg) scale(1.015);
  }
}

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