:root {
  --bg: #131110;
  --bg-deep: #080706;
  --panel: rgba(242, 237, 228, 0.035);
  --panel-strong: rgba(242, 237, 228, 0.07);
  --bone: #f2ede4;
  --bone-soft: rgba(242, 237, 228, 0.72);
  --muted: #8a8378;
  --muted-2: #6f6a60;
  --line: rgba(242, 237, 228, 0.12);
  --line-strong: rgba(242, 237, 228, 0.24);
  --accent: #e8dcc4;
  --accent-warm: #d4c29a;
  --red: #8f3030;
  --serif: "Cormorant", "Cormorant Garamond", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(212, 194, 154, 0.18), transparent 42rem),
    radial-gradient(ellipse at 92% 32%, rgba(143, 48, 48, 0.16), transparent 32rem),
    linear-gradient(180deg, #161310 0%, #0c0b0a 58%, #070606 100%);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-scrolled .nav {
  background: rgba(8, 7, 6, 0.72);
  border-color: rgba(242, 237, 228, 0.11);
  backdrop-filter: blur(18px);
}

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

button,
input {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.72 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.container.narrow {
  width: min(720px, calc(100% - 48px));
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bone);
}

.wordmark.large {
  gap: 16px;
  align-items: center;
}

.mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
}

.wordmark.large .mark {
  width: 46px;
  height: 46px;
  margin-top: 2px;
}

.wordmark-stack {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wordmark-text {
  font-size: 27px;
  line-height: 1;
  font-style: italic;
  letter-spacing: -0.02em;
}

.dot,
.accent {
  color: var(--accent);
}

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

.nav-links a,
.eyebrow,
.mono,
.step-index,
.city-meta,
.field label,
.field-label,
.footer-links,
.footer-base {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  transition: color 0.2s ease;
}

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

.nav-links .nav-cta {
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--bone);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 118px 24px 76px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 16%;
  background: radial-gradient(ellipse at center, rgba(232, 220, 196, 0.1), transparent 60%);
  filter: blur(20px);
  animation: breathe 7s ease-in-out infinite;
}

.hero-arch {
  position: absolute;
  width: clamp(360px, 62vw, 780px);
  color: rgba(242, 237, 228, 0.055);
  animation: archFloat 9s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-title {
  margin: 0;
  font-size: clamp(84px, 13vw, 188px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.045em;
}

.italic {
  font-style: italic;
}

.line,
.mask {
  display: block;
  overflow: hidden;
}

.mask-i {
  display: inline-block;
  transform: translateY(110%);
  animation: titleIn 1.2s var(--ease) forwards;
}

.line:nth-child(2) .mask-i {
  animation-delay: 0.14s;
}

.hero-sub {
  width: min(760px, 100%);
  margin: clamp(26px, 4vw, 44px) auto 0;
  color: var(--bone-soft);
  font-size: clamp(24px, 3.15vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease), background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.btn-solid {
  background: var(--bone);
  color: var(--bg-deep);
  border-color: var(--bone);
}

.btn-solid::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  animation: sheen 4.8s ease-in-out infinite;
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
}

.btn-block {
  width: 100%;
}

.section {
  position: relative;
  padding: clamp(80px, 11vw, 150px) 0;
  border-top: 1px solid rgba(242, 237, 228, 0.08);
}

.section-head {
  margin-bottom: clamp(34px, 6vw, 70px);
}

.section-head.center {
  text-align: center;
}

.section-title,
.split-title {
  margin: 0;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.section-sub {
  margin: 18px auto 0;
  max-width: 540px;
  color: var(--bone-soft);
  font-size: 25px;
  line-height: 1.25;
}

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

.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: clamp(22px, 4vw, 42px) 0;
  border-bottom: 1px solid rgba(242, 237, 228, 0.09);
}

.step-index {
  color: var(--muted);
  font-size: 13px;
  padding-top: 8px;
}

.step-name {
  margin: 0;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.88;
  font-weight: 500;
}

.step-desc {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.3;
}

.split {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  padding: clamp(54px, 8vw, 96px) 0;
}

.split-copy {
  flex: 0 0 auto;
  width: 370px; /* fixed so all three clusters share one width and centre evenly */
  max-width: 100%;
  min-width: 0;
}

.split-title {
  margin-top: 16px;
}

.split-title.row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22em;
}

.rline {
  display: block;
}

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

.split-list li {
  color: var(--bone-soft);
  font-size: 24px;
  line-height: 1.25;
}

.split-visual {
  flex: 0 0 auto; /* phone keeps its natural width */
  display: flex;
  align-items: center;
  perspective: 900px;
}

.phone {
  position: relative;
  width: min(360px, 88vw);
  aspect-ratio: 0.466;
  padding: 12px;
  /* titanium-tone metallic edge */
  border: 1.5px solid rgba(204, 196, 182, 0.22);
  border-radius: 56px;
  background: linear-gradient(158deg, #060606 0%, #1d1a16 100%);
  box-shadow:
    0 48px 140px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.055);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease);
}

/* Dynamic Island — iPhone 17 pill cutout */
.phone-island {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: 100px;
  height: 31px;
  transform: translateX(-50%);
  border-radius: 100px;
  background: #020202;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.04);
}

.phone-screen {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 44px;
  background: #100e0d;
  border: 1px solid rgba(242, 237, 228, 0.07);
  padding: 70px 20px 22px;
  overflow: hidden;
}

.app-eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.app-title {
  margin: 10px 0 18px;
  font-size: 45px;
  line-height: 0.92;
}

.app-cover {
  position: relative;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(242, 237, 228, 0.1);
  background: #201b17;
}

.app-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(0.9);
}

.app-cover-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58));
}

.app-venue {
  margin: 18px 0 4px;
  font-size: 28px;
  line-height: 1;
}

.app-line {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 19px;
}

.app-going {
  margin-top: -14px;
}

.phone-screen > .app-btn {
  margin-top: auto;
}

.app-btn {
  width: 100%;
  min-height: 48px;
  border: 0;
  background: var(--bone);
  color: var(--bg-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.app-btn.ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line);
}

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

.door-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(242, 237, 228, 0.08);
}

.door-row.is-selected {
  border-color: rgba(212, 194, 154, 0.42);
  background:
    linear-gradient(90deg, rgba(212, 194, 154, 0.13), rgba(242, 237, 228, 0.035)),
    rgba(212, 194, 154, 0.035);
  box-shadow:
    0 0 0 1px rgba(212, 194, 154, 0.08) inset,
    0 18px 44px rgba(212, 194, 154, 0.08);
}

.ava {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.door-bars {
  display: grid;
  gap: 6px;
}

.door-bars i {
  display: block;
  height: 5px;
  background: rgba(242, 237, 228, 0.2);
}

.vip {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
}

.door-actions {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 18px;
}

#hosts .phone-screen {
  padding-bottom: 30px;
}

/* ── Promoter phone screen ─────────────────────────────── */
.app-money {
  margin: 10px 0 4px;
  font-size: 44px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.app-money-sub {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  flex-shrink: 0;
}

/* 2×2 stats grid using flex-wrap so it works inside flex phone-screen */
.promo-stats {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 1px;
  width: 100%;
  background: rgba(242, 237, 228, 0.12);
  margin-bottom: 16px;
  border: 1px solid rgba(242, 237, 228, 0.12);
}

.promo-stat {
  flex: 0 0 calc(50% - 0.5px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 11px;
  background: #100e0d;
  box-sizing: border-box;
}

.promo-stat strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 0.9;
  color: var(--bone);
}

.promo-stat span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-night {
  border: 1px solid rgba(242, 237, 228, 0.1);
  padding: 12px;
  background: rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.promo-night-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.promo-night-date {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.promo-link {
  padding: 8px 10px;
  border: 1px solid rgba(242, 237, 228, 0.1);
  color: var(--bone-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

/* Side-by-side Copy / Share using flex */
.promo-actions {
  display: flex;
  gap: 8px;
}

.promo-actions .app-btn {
  flex: 1;
  min-height: 38px;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 8px 6px;
}

.creator-panel {
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 12% 0%, rgba(232, 220, 196, 0.075), transparent 22rem),
    linear-gradient(155deg, rgba(242, 237, 228, 0.045), rgba(242, 237, 228, 0.018));
  box-shadow: 0 40px 130px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease);
}

.creator-label {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.creator-money {
  margin: 28px 0 18px;
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.88;
}

.creator-copy {
  max-width: 460px;
  margin: 0;
  color: var(--bone-soft);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.22;
}

.creator-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  margin: 40px 0;
}

.creator-stats div {
  display: grid;
  gap: 8px;
}

.creator-stats strong {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.9;
}

.creator-stats span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.creator-night {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.36);
}

.creator-night-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--bone);
  font-size: 28px;
  line-height: 1.05;
}

.creator-night-head span:last-child {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.creator-link {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--bone-soft);
  font-size: clamp(13px, 1.8vw, 18px);
  text-transform: none;
  letter-spacing: 0.02em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.creator-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.creator-actions span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(242, 237, 228, 0.1);
}

.cities {
  padding-top: 0;
}

.cities .section-head {
  min-height: clamp(190px, 24vw, 300px);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.city {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
  border-right: 1px solid rgba(242, 237, 228, 0.1);
  border-bottom: 1px solid rgba(242, 237, 228, 0.1);
}

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

.city-name {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.9;
  white-space: nowrap;
}

.city-meta {
  color: var(--muted);
  font-size: 12px;
}

.ornament-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.ornament {
  width: 70px;
  color: var(--accent);
}

.waitlist-form {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.field {
  display: grid;
  gap: 9px;
}

.field label,
.field-label {
  color: var(--muted);
  font-size: 12px;
}

.field input {
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--line);
  background: rgba(242, 237, 228, 0.025);
  color: var(--bone);
  padding: 14px 16px;
  outline: 0;
  font-size: 27px;
}

.field input:focus {
  border-color: var(--line-strong);
}

.field input::placeholder {
  color: rgba(138, 131, 120, 0.72);
}

/* ── Custom city dropdown ──────────────────────────────── */
.cs {
  position: relative;
  user-select: none;
}

.cs-btn {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(242, 237, 228, 0.025);
  color: var(--bone-soft);
  font-family: var(--serif);
  font-size: 27px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.18s ease;
}

.cs-btn:focus {
  outline: none;
  border-color: var(--line-strong);
}

.cs.is-open .cs-btn {
  border-color: var(--line-strong);
}

.cs-val {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cs.has-value .cs-val {
  color: var(--bone);
}

.cs-chevron {
  width: 12px;
  height: 8px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.22s var(--ease);
}

.cs.is-open .cs-chevron {
  transform: rotate(180deg);
}

/* dropdown panel */
.cs-list {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 30;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #0e0c0b;
  border: 1px solid var(--line-strong);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}

.cs.is-open .cs-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cs-opt {
  padding: 16px 18px;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--bone-soft);
  cursor: pointer;
  border-bottom: 1px solid rgba(242, 237, 228, 0.07);
  transition: background 0.14s ease, color 0.14s ease, padding-left 0.14s ease;
}

.cs-opt:last-child {
  border-bottom: none;
}

.cs-opt:hover {
  background: rgba(242, 237, 228, 0.05);
  color: var(--bone);
  padding-left: 24px;
}

.cs-opt.is-active {
  color: var(--accent);
  background: rgba(232, 220, 196, 0.06);
}

/* ── Request Access → Requested state ─────────────────── */
.btn-solid.is-requested {
  background: var(--bg-deep);
  color: var(--muted);
  border-color: var(--line);
  cursor: default;
  pointer-events: none;
  transform: none;
}

.btn-solid.is-requested::after {
  display: none;
}

.chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.chip {
  min-height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chip.is-active {
  background: var(--bone);
  color: var(--bg-deep);
  border-color: var(--bone);
}

.form-note {
  min-height: 26px;
  margin: 0;
  color: var(--accent);
  text-align: center;
  font-size: 20px;
}

.waitlist-done {
  margin-top: 34px;
  padding: 34px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--panel);
}

.done-title {
  margin: 18px 0 0;
  font-size: 52px;
  line-height: 0.95;
  font-weight: 500;
}

.done-sub {
  margin: 14px auto 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.25;
}

.footer {
  padding: 70px 0 28px;
  border-top: 1px solid rgba(242, 237, 228, 0.1);
}

.footer-brand {
  display: flex;
}

.footer-inner,
.footer-base {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.footer-tag {
  display: block;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.2;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--bone);
}

.footer-base {
  margin-top: 42px;
  color: var(--muted-2);
  font-size: 11px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}

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

@keyframes titleIn {
  to { transform: translateY(0); }
}

@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes archFloat {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-14px); opacity: 1; }
}

@keyframes sheen {
  0% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}

@media (max-width: 880px) {
  .nav {
    top: 10px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 118px;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .split-copy {
    width: 100%;
    max-width: 100%;
  }

  .split.reverse .split-copy {
    order: 2;
  }

  .split.reverse .split-visual {
    order: 1;
  }

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

  .city {
    min-height: 150px;
    border-right: 0;
  }

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

  .footer-inner,
  .footer-base {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container,
  .container.narrow,
  .split {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    width: calc(100% - 20px);
    padding: 10px;
  }

  .mark {
    width: 42px;
    height: 42px;
  }

  .wordmark-text {
    font-size: 24px;
  }

  .hero-title {
    font-size: clamp(72px, 20vw, 100px);
  }

  .hero-sub {
    font-size: 27px;
  }

  .hero-cta,
  .hero-cta .btn {
    width: 100%;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .phone {
    width: min(330px, 92vw);
  }

  .promo-actions {
    flex-direction: column;
  }
}
