:root {
  --bg: #0b0a09;
  --bg-2: #14110f;
  --felt: #232621;
  --surface-0: #14110f;
  --surface-1: #1b1815;
  --surface-2: #23211d;
  --surface-3: #2d2a25;
  --card: rgba(17, 15, 13, 0.78);
  --card-soft: rgba(22, 19, 16, 0.82);
  --card-elevated: rgba(14, 12, 11, 0.88);
  --border: rgba(183, 146, 47, 0.18);
  --border-strong: rgba(183, 146, 47, 0.42);
  --accent: #e3c260;
  --accent-2: #7a6649;
  --accent-3: #594b39;
  --text: #f1e7d0;
  --body-copy: #f1e7d0;
  --muted: #b7ab96;
  --heading: #e3c260;
  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-2: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-3: 0 18px 40px rgba(0, 0, 0, 0.45);
  --glow: radial-gradient(circle at 18% 12%, rgba(183, 146, 47, 0.1), transparent 28%),
    radial-gradient(circle at 78% 14%, rgba(52, 59, 51, 0.08), transparent 26%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: var(--bg);
  background-image:
    linear-gradient(180deg, #080706 0%, #0d0b0a 28%, #14110f 100%);
  color: var(--text);
  font-family: var(--font-body), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.38), rgba(6, 6, 6, 0.38)),
    url("/images/premium/felt_bg_web_2560x1600.png") center/cover no-repeat;
  opacity: 0.9;
  z-index: -2;
}

body::after {
  background:
    var(--glow),
    radial-gradient(circle at top, rgba(255, 214, 126, 0.07), transparent 38%),
    radial-gradient(circle at bottom, rgba(0, 0, 0, 0.3), transparent 50%);
  z-index: -1;
}

h1,
h2,
h3,
h4 {
  color: var(--heading);
  font-family: var(--font-display), Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-content {
  flex: 1;
  width: 100%;
  padding: 0 0 88px;
}

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

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

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section-header--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  gap: 24px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.section-title {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
}

.section-description {
  max-width: 760px;
  color: var(--body-copy);
  font-size: 1.02rem;
  line-height: 1.72;
}

.page-shell header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(6, 12, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark-shell {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(227, 194, 96, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(11, 28, 23, 0.88);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-wordmark {
  display: block;
  width: 154px;
  height: auto;
}

.brand-kicker {
  font-size: 0.72rem;
  color: rgba(233, 243, 236, 0.72);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-beta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(227, 194, 96, 0.22);
  background: rgba(227, 194, 96, 0.08);
  color: #f6df9a;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: rgba(233, 243, 236, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link--quiet {
  color: rgba(233, 243, 236, 0.68);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 10px;
  border-radius: 14px;
}

.nav-drawer {
  display: none;
}

.hero-section {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: start;
}

.hero-card {
  background: linear-gradient(140deg, rgba(45, 211, 160, 0.08), rgba(230, 193, 98, 0.08)), var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-1);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  color: var(--body-copy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.chip--small {
  padding: 6px 10px;
  font-size: 0.76rem;
}

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

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.helper-text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.video-module {
  display: grid;
  gap: 10px;
}

.video-shell {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #020403;
  box-shadow: var(--shadow-2);
}

.video-frame {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  background: #000;
}

.video-placeholder {
  min-height: 320px;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 10px, rgba(255, 255, 255, 0.02) 10px, rgba(255, 255, 255, 0.02) 20px);
  border: 1px dashed var(--border);
}

.tab-list {
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 10px;
}

.tab {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  background: rgba(230, 193, 98, 0.12);
  color: var(--text);
  border-color: rgba(230, 193, 98, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.walkthrough-panel {
  margin-top: 6px;
  display: grid;
  gap: 12px;
}

.walkthrough-stepper-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.walkthrough-stepper-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.walkthrough-stepper-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.2);
}

.walkthrough-step {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: var(--card-soft);
  box-shadow: var(--shadow-1);
}

.walkthrough-media {
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 12px;
  display: grid;
  place-items: center;
  width: min(100%, clamp(220px, 60vw, 300px));
  margin-inline: auto;
  aspect-ratio: 9 / 19.5;
}

.walkthrough-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: var(--shadow-1);
}

.walkthrough-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed var(--border);
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 12px, rgba(255, 255, 255, 0.02) 12px, rgba(255, 255, 255, 0.02) 24px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  padding: 12px;
}

.walkthrough-step-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.walkthrough-step-dot {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}

.walkthrough-step-dot:hover {
  border-color: rgba(230, 193, 98, 0.5);
  color: var(--text);
}

.walkthrough-step-dot.active {
  color: var(--heading);
  border-color: rgba(230, 193, 98, 0.6);
  background: rgba(230, 193, 98, 0.16);
}

.walkthrough-step-dot-index {
  line-height: 1;
}

.founding-benefits {
  display: grid;
  gap: 16px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.benefit-card {
  background: linear-gradient(160deg, rgba(230, 193, 98, 0.06), rgba(45, 211, 160, 0.05));
}

.expectations-card {
  background: var(--card-soft);
}

.inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(230, 193, 98, 0.6);
  background: linear-gradient(130deg, rgba(230, 193, 98, 0.1), rgba(45, 211, 160, 0.08));
}

.inline-cta__actions {
  justify-self: end;
}

.role-fieldset {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.role-fieldset legend {
  padding: 0 6px;
  font-weight: 800;
  color: var(--heading);
}

.role-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.role-option {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
}

.role-option.selected {
  border-color: rgba(230, 193, 98, 0.6);
  box-shadow: 0 0 0 1px rgba(230, 193, 98, 0.35);
  background: linear-gradient(135deg, rgba(230, 193, 98, 0.08), rgba(45, 211, 160, 0.06));
}

.role-option input {
  margin: 0;
}

.role-label {
  color: var(--text);
}
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(183, 146, 47, 0.6);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #140d02;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    linear-gradient(135deg, #f7dea3 0%, #d4b261 42%, #8e5f24 100%);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -10px 20px rgba(90, 52, 14, 0.15);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.button:hover,
.btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 26px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 22px rgba(90, 52, 14, 0.2);
}

.button.secondary,
.btn.secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button.ghost,
.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.button--nav {
  min-height: 42px;
  padding: 10px 16px;
}

.button:disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(227, 194, 96, 0.05), rgba(12, 107, 63, 0.05)),
    rgba(10, 18, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 20px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(230, 193, 98, 0.06) 0%, rgba(5, 11, 10, 0) 80%);
}

.card::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 17px;
  border: 1px solid rgba(183, 146, 47, 0.12);
}

.card-stroke {
  border: 1px solid rgba(230, 193, 98, 0.45);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
}

.card h2,
.card h3 {
  margin-top: 0;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(230, 193, 98, 0.12);
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.list li:last-child {
  border-bottom: none;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 193, 98, 0.6), transparent);
  margin: 28px 0;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.feature-card {
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-1);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.accordion-item {
  background: var(--card-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion-answer {
  padding: 0 16px 16px;
  color: var(--muted);
}

.waitlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist label {
  font-weight: 700;
  color: var(--heading);
}

.input,
.select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0a1210;
  color: var(--text);
}

.status {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.status.success {
  background: rgba(45, 211, 160, 0.14);
  border: 1px solid rgba(45, 211, 160, 0.4);
  color: #bff6e4;
}

.status.error {
  background: rgba(217, 45, 32, 0.14);
  border: 1px solid rgba(217, 45, 32, 0.3);
  color: #fbc2c0;
}

.waitlist-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 18, 16, 0.3), rgba(10, 18, 16, 0)),
    linear-gradient(180deg, rgba(227, 194, 96, 0.04), rgba(12, 107, 63, 0.05));
}

.waitlist-section::before,
.waitlist-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.waitlist-section::before {
  inset: 10% auto auto -8%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 194, 96, 0.12), transparent 62%);
  filter: blur(24px);
}

.waitlist-section::after {
  inset: auto -10% 0 auto;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 107, 63, 0.2), transparent 66%);
  filter: blur(32px);
}

.waitlist-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 24px;
  align-items: start;
}

.waitlist-panel {
  min-width: 0;
}

.waitlist-panel--intro {
  display: grid;
  gap: 24px;
}

.waitlist-panel--form {
  align-self: stretch;
}

.waitlist-proof-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(227, 194, 96, 0.08), rgba(12, 107, 63, 0.07)),
    rgba(11, 28, 23, 0.84);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.waitlist-proof-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  border: 1px solid rgba(183, 146, 47, 0.12);
  pointer-events: none;
}

.waitlist-proof-card__media {
  display: grid;
  place-items: center;
  align-self: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 35% 30%, rgba(227, 194, 96, 0.16), transparent 58%),
    rgba(5, 11, 10, 0.82);
}

.waitlist-proof-card__copy {
  display: grid;
  gap: 12px;
}

.waitlist-proof-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.waitlist-proof-list li {
  position: relative;
  padding-left: 18px;
  color: var(--body-copy);
}

.waitlist-proof-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4df9b, #8cd3a0);
  box-shadow: 0 0 0 4px rgba(227, 194, 96, 0.12);
}

.waitlist-footnotes {
  display: grid;
  gap: 8px;
  max-width: 660px;
}

.waitlist-form {
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 28px;
}

.waitlist-form h3 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.waitlist-form label,
.waitlist-form legend {
  color: #f1dc9c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waitlist-hidden-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist-form .input,
.waitlist-form .select,
.waitlist-form textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 15, 13, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.waitlist-form .input::placeholder,
.waitlist-form textarea::placeholder {
  color: rgba(201, 214, 208, 0.54);
}

.waitlist-form .input:focus-visible,
.waitlist-form .select:focus-visible,
.waitlist-form textarea:focus-visible {
  border-color: rgba(227, 194, 96, 0.62);
  box-shadow:
    0 0 0 4px rgba(227, 194, 96, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.waitlist-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--body-copy);
}

.waitlist-consent input {
  margin: 4px 0 0;
}

.waitlist-consent__copy {
  line-height: 1.7;
}

.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.7)),
    rgba(5, 11, 10, 0.62);
  backdrop-filter: blur(14px);
}

.waitlist-modal__card {
  width: min(100%, 620px);
  padding: 28px;
}

.waitlist-modal__label {
  display: block;
  margin: 14px 0 8px;
}

.waitlist-modal__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-card {
  line-height: 1.7;
  background: linear-gradient(160deg, rgba(45, 211, 160, 0.06), rgba(230, 193, 98, 0.05)), var(--card);
  border-color: var(--border);
  box-shadow: var(--shadow-2);
}

.legal-card h1,
.legal-card h2,
.legal-card h3 {
  color: var(--heading);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-card p {
  margin-bottom: 12px;
}

.legal-card ul {
  margin: 8px 0 12px 18px;
}

.legal-card li {
  margin-bottom: 6px;
  color: var(--muted);
}

.progress-shell {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(120deg, var(--accent), #c9a754, #915d23);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.blog-index-stack {
  display: grid;
  gap: 16px;
}

.blog-featured {
  border: 1px solid rgba(230, 193, 98, 0.45);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(140deg, rgba(230, 193, 98, 0.12), rgba(45, 211, 160, 0.08));
  box-shadow: var(--shadow-1);
}

.blog-controls {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 10px;
}

.blog-search-label {
  color: var(--heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.blog-search-input {
  background: rgba(0, 0, 0, 0.24);
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  row-gap: 10px;
}

.blog-filter-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}

.blog-filter-pill:hover {
  color: var(--text);
  border-color: rgba(230, 193, 98, 0.45);
}

.blog-filter-pill.active {
  color: var(--heading);
  background: rgba(230, 193, 98, 0.14);
  border-color: rgba(230, 193, 98, 0.6);
  box-shadow: inset 0 0 0 1px rgba(230, 193, 98, 0.28);
}

.blog-results-count {
  font-size: 0.9rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(150deg, rgba(230, 193, 98, 0.08), rgba(45, 211, 160, 0.08));
  box-shadow: var(--shadow-1);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-2);
}

.blog-card .pill {
  margin-bottom: 6px;
}

.blog-card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.blog-read-time {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-pill {
  padding: 4px 10px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.blog-load-more {
  justify-self: start;
}

.blog-content {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.blog-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 4px 0 12px;
}

.blog-content .blog-heading {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 10px 0 2px;
}

.blog-content h2.blog-heading {
  font-size: 1.5rem;
}

.blog-content h3.blog-heading {
  font-size: 1.2rem;
}

.blog-content h4.blog-heading {
  font-size: 1.05rem;
}

.blog-paragraph {
  color: var(--muted);
  line-height: 1.65;
}

.blog-list {
  margin: 0 0 6px 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.blog-list li {
  line-height: 1.6;
}

.blog-content a {
  color: var(--heading);
  text-decoration: underline;
}

.link-underline {
  color: var(--heading);
  text-decoration: underline;
  font-weight: 700;
}

.link-underline:hover {
  color: var(--text);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.tag {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.region-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(160deg, rgba(45, 211, 160, 0.06), rgba(230, 193, 98, 0.05));
  box-shadow: var(--shadow-1);
}

.region-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.region-name {
  font-weight: 800;
  color: var(--text);
}

.region-meta {
  font-size: 13px;
}

.region-progress {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.region-progress__numbers {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.pill-open {
  background: rgba(45, 211, 160, 0.14);
  border: 1px solid rgba(45, 211, 160, 0.32);
}

.pill-beta {
  background: rgba(230, 193, 98, 0.16);
  border: 1px solid rgba(230, 193, 98, 0.4);
}

.pill-waitlist {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.regions-block {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.regions-other {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.regions-other__summary {
  cursor: pointer;
  padding: 14px 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  color: var(--heading);
}

.regions-other__summary::-webkit-details-marker {
  display: none;
}

.regions-other[open] .regions-other__summary {
  border-bottom: 1px solid var(--border);
}

.regions-other__body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.regions-filter-card {
  padding: 16px;
}

.regions-mobile {
  display: none;
}

.region-accordion {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-soft);
}

.region-accordion__summary {
  cursor: pointer;
  padding: 12px 14px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name pill"
    "pct pct"
    "bar bar";
  gap: 6px 10px;
}

.region-accordion__summary::-webkit-details-marker {
  display: none;
}

.region-accordion__name {
  grid-area: name;
  font-weight: 800;
  color: var(--text);
}

.region-accordion__pill {
  grid-area: pill;
  justify-self: end;
}

.region-accordion__pct {
  grid-area: pct;
  font-size: 12px;
}

.region-accordion__bar {
  grid-area: bar;
  display: block;
}

.region-accordion__bar .progress-shell {
  display: block;
  height: 10px;
}

.region-accordion__body {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}

.region-accordion__meta {
  font-size: 12px;
}

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

.region-accordion__stat {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
}

.region-accordion__progress {
  font-size: 12px;
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 18, 16, 0), rgba(10, 18, 16, 0.72) 18%, #040806 100%);
  padding: 52px 0 56px;
}

.footer::after {
  content: "";
  position: absolute;
  inset: auto -8% -38% auto;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 194, 96, 0.08), transparent 64%);
  filter: blur(20px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(0, 1.06fr);
  gap: 32px;
  align-items: start;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 16px;
  max-width: 440px;
}

.footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand__title {
  color: var(--heading);
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 0.96;
}

.footer-brand__kicker {
  color: rgba(233, 243, 236, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand__note {
  max-width: 420px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-links__group {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links__label {
  color: #f4df9b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links__group a {
  color: rgba(233, 243, 236, 0.74);
  font-weight: 700;
  transition: color 140ms ease, transform 140ms ease;
}

.footer-links__group a:hover {
  color: var(--text);
  transform: translateX(1px);
}

.mobile-cta-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  display: none;
  background: rgba(5, 11, 10, 0.94);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
}

.waitlist-in-view .mobile-cta-bar {
  display: none !important;
}

.mobile-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-page {
  display: grid;
}

.home-hero {
  padding-top: 40px;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 32px;
  align-items: center;
}

.home-hero__copy {
  display: grid;
  gap: 20px;
}

.home-hero__title {
  max-width: 12ch;
  font-size: clamp(3.35rem, 7vw, 6.2rem);
}

.home-hero__intro {
  max-width: 680px;
  color: var(--body-copy);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.home-hero__tertiary {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: rgba(233, 243, 236, 0.86);
}

.home-hero__helper,
.home-hero__boundary {
  max-width: 620px;
}

.home-hero__chips,
.waitlist-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stat-card {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(12, 33, 25, 0.72);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-stat-card__label {
  margin-bottom: 8px;
  color: #f4df9b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stat-card p {
  color: var(--body-copy);
  line-height: 1.7;
}

.home-hero__media {
  min-width: 0;
}

.hero-stage {
  position: relative;
  min-height: 760px;
}

.hero-stage__glow {
  position: absolute;
  inset: 6% 10% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(227, 194, 96, 0.2), transparent 42%),
    radial-gradient(circle at center, rgba(12, 107, 63, 0.2), transparent 60%);
  filter: blur(30px);
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(227, 194, 96, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(5, 11, 10, 0.92);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.phone-frame--primary {
  top: 20px;
  left: 18px;
  width: clamp(280px, 30vw, 344px);
  transform: rotate(-6deg);
}

.phone-frame--secondary {
  right: 12px;
  top: 150px;
  width: clamp(220px, 24vw, 284px);
  transform: rotate(8deg);
}

.phone-frame__chrome {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 1;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.phone-frame__chrome span {
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-frame__image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-note {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    rgba(11, 28, 23, 0.88);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-note--host {
  right: 0;
  bottom: 40px;
  width: min(340px, 78%);
  padding: 18px;
}

.hero-note--host h3,
.hero-note--badge p {
  margin-top: 10px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.hero-note__media {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-note__media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-note--badge {
  left: 0;
  bottom: 72px;
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  gap: 16px;
  width: min(360px, 84%);
  padding: 16px 18px;
}

.hero-note__badge {
  width: 100%;
  height: auto;
}

.hero-note__eyebrow {
  color: #f4df9b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.feature-mosaic__card,
.feature-mosaic__media {
  position: relative;
  grid-column: span 4;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(227, 194, 96, 0.07), rgba(12, 107, 63, 0.06)),
    rgba(11, 28, 23, 0.78);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-mosaic__card--wide {
  grid-column: span 8;
}

.feature-mosaic__index {
  margin-bottom: 14px;
  color: rgba(244, 223, 155, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-mosaic__card h3,
.feature-mosaic__media h3,
.editorial-pillar h3,
.story-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.02;
}

.feature-mosaic__card p,
.feature-mosaic__media p,
.editorial-pillar p,
.story-card p {
  margin-top: 10px;
  line-height: 1.75;
}

.feature-mosaic__media {
  display: grid;
  align-content: start;
  gap: 12px;
}

.feature-mosaic__screen {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 10, 0.9);
}

.feature-mosaic__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-section::before {
  content: "";
  position: absolute;
  inset: 12% -18% 8% auto;
  width: 55vw;
  max-width: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 194, 96, 0.08), transparent 58%);
  filter: blur(10px);
  pointer-events: none;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
}

.editorial-copy {
  display: grid;
  gap: 20px;
}

.editorial-pillars {
  display: grid;
  gap: 14px;
}

.editorial-pillar {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(12, 33, 25, 0.72);
}

.editorial-visuals {
  display: grid;
  gap: 16px;
}

.editorial-screen {
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(11, 28, 23, 0.82);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.editorial-screen--main img {
  margin-top: 14px;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-screen--quote p:first-of-type {
  margin-top: 12px;
  color: #f8e5af;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.launch-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
}

.launch-map-card,
.launch-region-card,
.launch-map-empty {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(227, 194, 96, 0.06), rgba(12, 107, 63, 0.06)),
    rgba(11, 28, 23, 0.84);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.launch-map-card {
  padding: 24px;
}

.launch-map-card__header {
  max-width: 560px;
}

.launch-map-card__title {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.launch-map-stage {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  justify-items: center;
}

.launch-map {
  width: min(100%, 380px);
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.28));
}

.launch-map__shape {
  fill: url(#ca-map-fill);
  stroke: rgba(227, 194, 96, 0.36);
  stroke-width: 3;
}

.launch-map__spine {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 3;
  stroke-linecap: round;
}

.launch-map__pin circle:first-child {
  stroke-width: 2;
}

.launch-map__pin circle:last-child {
  fill: #fff;
}

.launch-map__pin--open circle:first-child {
  fill: rgba(135, 252, 162, 0.2);
  stroke: rgba(135, 252, 162, 0.86);
}

.launch-map__pin--open circle:last-child {
  fill: rgba(135, 252, 162, 1);
}

.launch-map__pin--beta circle:first-child {
  fill: rgba(227, 194, 96, 0.2);
  stroke: rgba(227, 194, 96, 0.86);
}

.launch-map__pin--beta circle:last-child {
  fill: rgba(227, 194, 96, 1);
}

.launch-map__pin--waitlist circle:first-child {
  fill: rgba(76, 201, 240, 0.14);
  stroke: rgba(76, 201, 240, 0.72);
}

.launch-map__pin--waitlist circle:last-child {
  fill: rgba(76, 201, 240, 1);
}

.launch-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.launch-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--body-copy);
  font-size: 0.92rem;
  font-weight: 700;
}

.launch-map-legend__swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.launch-map-legend__swatch--open {
  background: var(--accent-2);
}

.launch-map-legend__swatch--beta {
  background: var(--accent);
}

.launch-map-legend__swatch--waitlist {
  background: var(--accent-3);
}

.launch-map-stack {
  display: grid;
  gap: 14px;
}

.launch-region-card {
  padding: 18px;
}

.launch-region-card__topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.launch-region-card__name {
  color: var(--text);
  font-size: 1.52rem;
  line-height: 1.02;
}

.launch-region-card__meta,
.launch-region-card__progress {
  color: var(--muted);
  font-size: 0.88rem;
}

.launch-region-card__progress {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.launch-region-card__actions {
  margin-top: 14px;
}

.launch-map-empty {
  padding: 28px;
}

.how-it-works-home .story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(11, 28, 23, 0.8);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.story-card__kicker {
  margin-bottom: 10px;
  color: rgba(244, 223, 155, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-card__media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 10, 0.9);
}

.story-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

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

.resource-card,
.proof-card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(12, 33, 25, 0.76);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.resource-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.resource-card__tags,
.blog-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-proof-final__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.proof-card h3,
.resource-card h3,
.waitlist-proof-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.02;
}

.proof-card p,
.resource-card p {
  margin-top: 10px;
  line-height: 1.75;
}

.resource-card,
.proof-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.resource-card .link-underline {
  margin-top: auto;
}

.home-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-drawer {
    display: block;
    background: rgba(5, 11, 10, 0.96);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
  }

  .nav-drawer .nav-links {
    display: grid;
    gap: 10px;
  }

  .nav-drawer .nav-actions {
    display: grid;
    margin-top: 12px;
  }

  .hero-section {
    padding-top: 60px;
  }

  .section {
    padding: 64px 0;
  }

  .home-hero__grid,
  .editorial-grid,
  .home-proof-final__grid,
  .launch-map-shell,
  .waitlist-shell,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .feature-mosaic__card,
  .feature-mosaic__media {
    grid-column: span 6;
  }

  .feature-mosaic__card--wide {
    grid-column: span 12;
  }

  .launch-map-stack,
  .resource-grid,
  .home-proof-final__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .section-header--split,
  .home-hero__stats,
  .resource-grid,
  .home-proof-final__cards,
  .footer-links,
  .launch-map-stack {
    grid-template-columns: 1fr;
  }

  .home-hero__title {
    max-width: 14ch;
  }

  .hero-stage {
    min-height: 680px;
    max-width: 720px;
    margin: 0 auto;
  }

  .phone-frame--primary {
    left: 4px;
  }

  .phone-frame--secondary {
    right: 0;
    top: 160px;
  }

  .hero-note--badge {
    bottom: 92px;
  }

  .hero-note--host {
    right: 12px;
    bottom: 20px;
  }

  .feature-mosaic__card,
  .feature-mosaic__media,
  .feature-mosaic__card--wide {
    grid-column: span 12;
  }

  .how-it-works-home .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .waitlist-proof-card {
    grid-template-columns: 120px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 24px));
  }

  .section {
    padding: 56px 0;
  }

  .page-content {
    padding-bottom: 104px;
  }

  .nav {
    padding: 12px;
  }

  .brand-beta {
    display: none;
  }

  .brand-wordmark {
    width: 130px;
  }

  .brand-kicker {
    font-size: 0.64rem;
  }

  .nav-drawer {
    padding: 14px 12px 16px;
  }

  .nav-drawer .nav-link,
  .nav-drawer .button,
  .nav-drawer .nav-actions {
    width: 100%;
  }

  .nav-drawer .nav-actions {
    gap: 10px;
  }

  .nav-drawer .button,
  .nav-drawer .nav-link {
    justify-content: flex-start;
  }

  .home-hero {
    padding-top: 24px;
  }

  .home-hero__title {
    font-size: clamp(2.6rem, 16vw, 4.6rem);
  }

  .home-hero__intro {
    font-size: 1rem;
  }

  .home-hero__tertiary {
    gap: 12px;
  }

  .hero-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
    align-items: end;
    gap: 14px;
    min-height: 0;
    padding: 18px 0 0;
  }

  .hero-stage__glow {
    inset: 4% -4% 26%;
  }

  .phone-frame,
  .hero-note {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .phone-frame--primary {
    grid-column: 1;
  }

  .phone-frame--secondary {
    grid-column: 2;
    margin-top: 44px;
  }

  .hero-note--badge,
  .hero-note--host {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero-note--badge {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .how-it-works-home .story-grid,
  .launch-map-shell,
  .launch-map-stack,
  .resource-grid,
  .home-proof-final__cards,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card__media {
    max-width: 240px;
  }

  .launch-map-card,
  .launch-region-card,
  .launch-map-empty,
  .resource-card,
  .proof-card,
  .waitlist-proof-card,
  .waitlist-form {
    padding: 18px;
    border-radius: 22px;
  }

  .waitlist-proof-card {
    grid-template-columns: 1fr;
  }

  .waitlist-proof-card__media {
    max-width: 180px;
  }

  .waitlist-modal {
    padding: 16px;
  }

  .waitlist-modal__actions {
    flex-direction: column;
  }

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

  .regions-desktop {
    display: none;
  }

  .regions-mobile {
    display: grid;
    gap: 12px;
  }

  .mobile-cta-bar {
    display: block;
  }

  .blog-featured {
    padding: 14px;
  }

  .blog-controls {
    padding: 12px;
  }

  .blog-filter-row {
    gap: 10px;
  }

  .blog-filter-pill {
    min-height: 36px;
  }

  .inline-cta {
    grid-template-columns: 1fr;
  }

  .inline-cta__actions {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .brand-kicker {
    display: none;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .phone-frame--secondary {
    grid-column: 1;
    margin-top: 0;
  }

  .hero-note--badge {
    grid-template-columns: 1fr;
  }

  .mobile-cta-actions,
  .role-options {
    grid-template-columns: 1fr;
  }

  .waitlist-consent {
    grid-template-columns: 1fr;
  }
}

/* Reference-driven premium pass */

.page-shell header {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)),
    rgba(4, 8, 7, 0.88);
  border-bottom-color: rgba(183, 146, 47, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.nav {
  max-width: min(1420px, calc(100% - 20px));
  padding-block: 12px;
}

.nav-link {
  min-height: 34px;
  padding-inline: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link--quiet {
  letter-spacing: 0.08em;
}

.button--nav {
  min-height: 38px;
  padding-inline: 14px;
}

.home-page {
  gap: 26px;
  padding: 20px 0 0;
}

.home-board {
  position: relative;
  width: min(1410px, calc(100% - 26px));
  margin: 0 auto;
  padding: 58px 0;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(12, 17, 15, 0.7), rgba(9, 13, 12, 0.8)),
    url("/images/premium-background-shared.png") center/cover no-repeat;
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  isolation: isolate;
}

.home-board::before,
.home-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-board::before {
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 218, 126, 0.42), transparent);
}

.home-board::after {
  inset: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.home-board .container {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 60px));
}

.home-board__ambient,
.home-board__veil {
  position: absolute;
  inset: 0;
}

.home-board__ambient {
  z-index: 0;
}

.home-board__ambient-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.34;
  filter: saturate(0.85) brightness(0.58);
}

.home-board__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 9, 8, 0.94) 0%, rgba(5, 9, 8, 0.78) 28%, rgba(5, 9, 8, 0.56) 52%, rgba(5, 9, 8, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.14) 34%, rgba(0, 0, 0, 0.42));
}

.section-header--center {
  justify-items: center;
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.section-header--center .section-description {
  max-width: 690px;
}

.section-ornament {
  width: min(250px, 48vw);
  margin: 4px auto 2px;
  opacity: 0.95;
}

.section-ornament img {
  display: block;
  width: 100%;
  height: auto;
}

.section-ornament--hero {
  margin: 2px 0 0;
}

.section-ornament--hero img {
  margin-left: -18px;
}

.home-board--hero {
  padding-top: 64px;
  padding-bottom: 54px;
  background:
    linear-gradient(180deg, rgba(11, 16, 14, 0.6), rgba(11, 16, 14, 0.76)),
    url("/images/premium-background-shared.png") center/cover no-repeat;
}

.home-board--hero::before {
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 218, 126, 0.34), transparent);
}

.home-hero__grid {
  grid-template-columns: minmax(320px, 0.84fr) minmax(440px, 1.16fr);
  gap: 26px;
  align-items: center;
}

.home-hero__copy {
  gap: 16px;
  max-width: 500px;
}

.home-hero__title {
  max-width: 9ch;
  font-size: clamp(4rem, 6vw, 5.7rem);
  line-height: 0.9;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.34);
}

.home-hero__intro {
  max-width: 31rem;
  font-size: 1.02rem;
  line-height: 1.58;
  color: rgba(239, 233, 214, 0.86);
}

.home-hero .cta-grid {
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 12px;
}

.home-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(239, 233, 214, 0.82);
}

.home-hero__chips {
  gap: 8px;
}

.home-hero__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-stat-card {
  min-height: 126px;
  padding: 14px 14px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(6, 10, 9, 0.74);
  border-color: rgba(183, 146, 47, 0.14);
}

.hero-stat-card__label {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.hero-stat-card p {
  color: rgba(238, 234, 220, 0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

.home-hero__boundary {
  display: grid;
  gap: 6px;
  max-width: 32rem;
}

.home-hero__boundary p {
  font-size: 0.82rem;
}

.hero-stage {
  min-height: 620px;
}

.hero-stage__glow {
  inset: 8% 10% 18%;
  background:
    radial-gradient(circle at center, rgba(255, 201, 90, 0.22), transparent 42%),
    radial-gradient(circle at center, rgba(13, 80, 45, 0.18), transparent 62%);
  filter: blur(42px);
}

.phone-frame {
  border-color: rgba(215, 176, 81, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    rgba(3, 7, 6, 0.94);
}

.phone-frame--left,
.phone-frame--right {
  width: clamp(210px, 19vw, 258px);
  top: 124px;
}

.phone-frame--left {
  left: 8%;
  transform: rotate(-9deg);
}

.phone-frame--primary {
  top: 34px;
  left: 50%;
  width: clamp(270px, 23vw, 320px);
  transform: translateX(-50%);
  z-index: 2;
}

.phone-frame--right {
  right: 7%;
  transform: rotate(9deg);
}

.hero-stage__badge {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 4;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: min(420px, 86%);
  padding: 14px 16px;
  transform: translateX(-50%);
  border-radius: 18px;
  border: 1px solid rgba(183, 146, 47, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(6, 10, 9, 0.88);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-note__badge {
  width: 72px;
}

.hero-stage__badge p {
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.42;
}

.home-board--features {
  padding-top: 50px;
}

.feature-plaque-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-plaque {
  padding: 22px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(9, 13, 12, 0.8);
  text-align: center;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-plaque__icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  border-radius: 22px;
  color: #f4cd77;
  border: 1px solid rgba(183, 146, 47, 0.32);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 214, 113, 0.18), transparent 56%),
    rgba(14, 18, 16, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-plaque__icon svg {
  width: 36px;
  height: 36px;
}

.feature-plaque h3 {
  color: #f6df9a;
  font-size: 1.32rem;
  line-height: 1.02;
}

.feature-plaque p {
  margin-top: 10px;
  color: rgba(238, 234, 220, 0.76);
  font-size: 0.9rem;
  line-height: 1.52;
}

.feature-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: 22px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(8, 12, 11, 0.88);
}

.feature-showcase__copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.feature-showcase__copy h3 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
}

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

.feature-showcase__list li {
  position: relative;
  padding-left: 16px;
  color: rgba(238, 234, 220, 0.82);
}

.feature-showcase__list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6df9a, #b38233);
}

.feature-showcase__media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background: rgba(3, 7, 6, 0.96);
}

.feature-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16) 45%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.36));
}

.feature-showcase__ambient {
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  filter: brightness(0.8) saturate(0.9);
}

.feature-showcase__screen {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 1;
  width: clamp(230px, 23vw, 286px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(183, 146, 47, 0.28);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-showcase__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.home-board--editorial .editorial-grid {
  align-items: stretch;
}

.editorial-copy {
  gap: 18px;
}

.editorial-pillars {
  gap: 12px;
}

.editorial-pillar {
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.82);
}

.editorial-screen--photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.editorial-screen__ambient {
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: brightness(0.72) saturate(0.86);
}

.editorial-screen--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.16) 40%, rgba(0, 0, 0, 0.56)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.12));
}

.editorial-screen--photo > * {
  position: relative;
  z-index: 1;
}

.editorial-screen__device {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: clamp(210px, 20vw, 270px);
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(183, 146, 47, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.editorial-screen__device img {
  display: block;
  width: 100%;
  height: auto;
}

.home-board--regions .launch-map-card,
.home-board--regions .launch-region-card,
.home-board--regions .launch-map-empty {
  border-color: rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.84);
}

.launch-map-card__header {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.launch-map-stage {
  position: relative;
  padding: 18px 18px 14px;
  border-radius: 26px;
  border: 1px solid rgba(183, 146, 47, 0.12);
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 190, 77, 0.16), transparent 36%),
    radial-gradient(circle at 18% 16%, rgba(255, 222, 134, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 196, 75, 0.04), rgba(255, 196, 75, 0)),
    rgba(4, 8, 7, 0.92);
}

.launch-map-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(255, 204, 92, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 204, 92, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  pointer-events: none;
}

.launch-map {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  filter: drop-shadow(0 0 24px rgba(255, 176, 60, 0.16)) drop-shadow(0 18px 44px rgba(0, 0, 0, 0.26));
}

.launch-map__shape {
  stroke: rgba(255, 214, 113, 0.42);
}

.launch-map-stack {
  gap: 12px;
}

.launch-region-card {
  padding: 16px 18px;
  border-radius: 18px;
}

.launch-region-card__name {
  font-size: 1.28rem;
}

.launch-region-card__actions .button {
  min-height: 40px;
  padding-inline: 14px;
}

.home-board--story .story-card {
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.82);
}

.home-board--resources .resource-card {
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.82);
}

.home-board--resources .resource-card__meta {
  align-items: center;
}

@media (max-width: 1180px) {
  .home-board {
    width: min(1410px, calc(100% - 22px));
  }

  .home-board .container {
    width: min(1280px, calc(100% - 44px));
  }

  .home-hero__grid,
  .feature-showcase,
  .editorial-grid,
  .launch-map-shell {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    max-width: 580px;
  }

  .hero-stage {
    max-width: 860px;
    margin: 0 auto;
  }

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

  .feature-showcase__copy {
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .home-page {
    gap: 18px;
    padding-top: 12px;
  }

  .home-board {
    width: calc(100% - 14px);
    padding: 42px 0;
    border-radius: 24px;
  }

  .home-board::after {
    inset: 7px;
    border-radius: 18px;
  }

  .home-board .container {
    width: calc(100% - 26px);
  }

  .section-ornament {
    width: min(180px, 52vw);
  }

  .section-ornament--hero img {
    margin-left: -10px;
  }

  .home-hero__title {
    max-width: 10ch;
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .home-hero .cta-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__stats {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    display: grid;
    grid-template-columns: 0.82fr 1fr 0.82fr;
    align-items: end;
    gap: 8px;
    min-height: 0;
    padding-top: 12px;
  }

  .phone-frame,
  .hero-stage__badge {
    position: relative;
    inset: auto;
    transform: none;
  }

  .phone-frame {
    width: 100%;
    border-radius: 22px;
  }

  .phone-frame::after {
    inset: 8px;
    border-radius: 16px;
  }

  .phone-frame--left,
  .phone-frame--right {
    top: auto;
    width: 100%;
  }

  .phone-frame--left {
    left: auto;
    transform: translateY(34px);
  }

  .phone-frame--primary {
    left: auto;
    top: auto;
    width: 100%;
  }

  .phone-frame--right {
    right: auto;
    transform: translateY(34px);
  }

  .hero-stage__badge {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
  }

  .feature-plaque-grid {
    gap: 10px;
  }

  .feature-plaque {
    padding: 18px 14px 16px;
  }

  .feature-plaque h3 {
    font-size: 1.12rem;
  }

  .feature-plaque p {
    font-size: 0.84rem;
  }

  .feature-showcase {
    padding: 18px;
  }

  .feature-showcase__media {
    min-height: 320px;
  }

  .feature-showcase__screen {
    right: 14px;
    bottom: 14px;
    width: 180px;
  }

  .editorial-screen--photo {
    min-height: 400px;
  }

  .editorial-screen__device {
    right: 14px;
    bottom: 14px;
    width: 170px;
  }
}

@media (max-width: 520px) {
  .home-board {
    width: calc(100% - 10px);
    padding: 36px 0;
  }

  .home-board .container {
    width: calc(100% - 18px);
  }

  .feature-plaque-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-plaque__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
    border-radius: 18px;
  }

  .feature-plaque__icon svg {
    width: 30px;
    height: 30px;
  }

  .hero-stage {
    grid-template-columns: 1fr 1.08fr 1fr;
  }

  .hero-stage__badge {
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 12px;
  }
}

/* Premium pass v3: cinematic board composition */

.page-shell header {
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.94), rgba(5, 8, 7, 0.76));
  border-bottom-color: rgba(183, 146, 47, 0.16);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button--nav {
  min-height: 40px;
}

.section-header--tight {
  gap: 8px;
  margin-bottom: 28px;
}

.home-board--hero {
  padding-bottom: 42px;
}

.home-board__rule {
  height: 1px;
  width: 100%;
  margin: 10px 0 20px;
  background: linear-gradient(90deg, transparent, rgba(183, 146, 47, 0.54), transparent);
}

.home-hero__grid {
  gap: 40px;
  align-items: center;
}

.home-hero__title {
  max-width: 11ch;
  font-size: clamp(4rem, 6.5vw, 6.9rem);
}

.home-hero__intro {
  max-width: 52ch;
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  color: rgba(245, 238, 223, 0.9);
}

.hero-stat-card {
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 232, 174, 0.06), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.76);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-stat-card__label {
  color: rgba(246, 223, 154, 0.76);
}

.hero-stage {
  min-height: 700px;
}

.hero-plaque-shell {
  margin-top: 6px;
}

.hero-plaque-shell__header {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  margin-bottom: 16px;
}

.hero-plaque-shell__header p {
  margin: 0;
  color: rgba(233, 243, 236, 0.74);
  font-size: 0.98rem;
  line-height: 1.55;
}

.feature-plaque-grid--hero {
  gap: 14px;
}

.feature-plaque {
  min-height: 206px;
  padding: 22px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(183, 146, 47, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(255, 209, 110, 0.04), rgba(10, 18, 16, 0.02)),
    rgba(6, 9, 8, 0.9);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-plaque h3 {
  font-size: clamp(1.32rem, 1.7vw, 1.62rem);
  line-height: 1;
}

.feature-plaque p {
  max-width: 19ch;
  margin-inline: auto;
  color: rgba(233, 243, 236, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.club-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
}

.club-stage,
.trust-visual,
.journey-stage,
.journal-featured {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(183, 146, 47, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(5, 8, 7, 0.92);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.club-stage {
  min-height: 560px;
  padding: 28px;
}

.club-stage__ambient,
.trust-visual__ambient,
.launch-map-stage__ambient,
.journey-stage__ambient,
.journal-featured__ambient,
.waitlist-panel__ambient-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
  filter: brightness(0.72) saturate(0.92);
}

.club-stage__veil,
.trust-visual__veil,
.launch-map-stage__veil,
.journey-stage__veil,
.journal-featured__veil,
.waitlist-panel__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.56));
}

.club-stage__copy,
.journal-featured__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.club-stage__copy {
  max-width: 47%;
}

.club-stage__copy h3 {
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 0.96;
}

.club-stage__copy p {
  color: rgba(245, 238, 223, 0.86);
  line-height: 1.68;
}

.club-stage__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.club-stage__list li {
  position: relative;
  padding-left: 18px;
  color: rgba(233, 243, 236, 0.8);
}

.club-stage__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f6df9a, #b38233);
  box-shadow: 0 0 14px rgba(246, 223, 154, 0.24);
}

.club-stage__device,
.trust-visual__device {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  width: clamp(220px, 22vw, 288px);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(183, 146, 47, 0.28);
  background: rgba(4, 6, 5, 0.96);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.club-stage__device img,
.trust-visual__device img {
  display: block;
  width: 100%;
  height: auto;
}

.club-stack {
  display: grid;
  gap: 16px;
}

.club-note {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.86);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.club-note--quote p {
  margin-top: 10px;
  color: #f7e1a0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.club-note--quote span {
  display: block;
  margin-top: 12px;
  color: rgba(233, 243, 236, 0.7);
  font-size: 0.92rem;
}

.club-note__eyebrow {
  color: rgba(246, 223, 154, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.club-note h3,
.trust-pillar-card h3,
.journey-step h3,
.journal-card h3 {
  font-size: clamp(1.42rem, 2vw, 1.95rem);
  line-height: 1.02;
}

.club-note--stat {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.club-note__seal {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background: rgba(255, 233, 175, 0.04);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.82fr) minmax(0, 1.16fr);
  gap: 18px;
  align-items: stretch;
}

.trust-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.trust-pillar-grid {
  display: grid;
  gap: 14px;
  align-content: start;
}

.trust-pillar-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.84);
}

.trust-pillar-card__index,
.journey-step__number,
.launch-region-card__count,
.launch-map-summary span {
  color: #f5d98f;
  font-family: var(--font-display), Georgia, serif;
}

.trust-pillar-card__index {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.9;
}

.trust-visual {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 620px;
  padding: 22px;
}

.trust-visual__badge,
.trust-visual__quote,
.trust-visual__device {
  position: relative;
  z-index: 1;
}

.trust-visual__badge {
  width: max-content;
}

.trust-visual__quote {
  margin-top: 64px;
  max-width: 48%;
  color: #f7e1a0;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.launch-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
}

.launch-map-card--visual,
.launch-map-summary,
.launch-region-card {
  border-radius: 26px;
  border: 1px solid rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.84);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.launch-map-card--visual {
  padding: 22px;
}

.launch-map-stage--visual {
  position: relative;
  min-height: 520px;
  margin-top: 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background: rgba(3, 5, 4, 0.98);
}

.launch-map-legend {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(183, 146, 47, 0.14);
  background: rgba(6, 10, 9, 0.6);
  backdrop-filter: blur(16px);
}

.launch-map-sidebar {
  display: grid;
  gap: 14px;
}

.launch-map-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
}

.launch-map-summary span {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.9;
}

.launch-map-summary p {
  margin: 8px 0 0;
  color: rgba(233, 243, 236, 0.7);
}

.launch-map-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.launch-region-card {
  padding: 16px 18px 18px;
}

.launch-region-card__topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.launch-region-card__count {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background: rgba(255, 228, 162, 0.05);
  font-size: 1.5rem;
}

.launch-map-hotspot {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.launch-map-hotspot__pulse,
.launch-map-hotspot__pin {
  display: block;
  border-radius: 999px;
}

.launch-map-hotspot__pulse {
  width: 30px;
  height: 30px;
  margin-left: 6px;
  background: rgba(246, 223, 154, 0.12);
  box-shadow: 0 0 26px rgba(255, 190, 65, 0.46);
}

.launch-map-hotspot__pin {
  position: absolute;
  top: 6px;
  left: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 243, 209, 0.86);
  background: rgba(255, 183, 59, 0.9);
  box-shadow: 0 0 18px rgba(255, 183, 59, 0.46);
}

.launch-map-hotspot__label {
  position: absolute;
  top: -12px;
  left: 42px;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background: rgba(8, 12, 10, 0.72);
  backdrop-filter: blur(16px);
}

.launch-map-hotspot__label strong {
  color: #f8df97;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.launch-map-hotspot__label em {
  color: rgba(233, 243, 236, 0.72);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.launch-map-hotspot--open .launch-map-hotspot__pin {
  background: rgba(135, 252, 162, 0.92);
  box-shadow: 0 0 18px rgba(135, 252, 162, 0.38);
}

.launch-map-hotspot--waitlist .launch-map-hotspot__pin {
  background: rgba(76, 201, 240, 0.92);
  box-shadow: 0 0 18px rgba(76, 201, 240, 0.4);
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: center;
}

.journey-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.journey-copy__actions {
  margin-top: 8px;
}

.journey-stage {
  min-height: 560px;
  padding: 24px;
}

.journey-stage__phones {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1fr 0.86fr;
  gap: 10px;
  align-items: end;
  max-width: 760px;
  margin: 34px auto 0;
}

.phone-frame--journey-left {
  transform: translateY(38px) scale(0.92);
}

.phone-frame--journey-right {
  transform: translateY(38px) scale(0.92);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.journey-step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.82);
}

.journey-step__number {
  font-size: 2rem;
  line-height: 0.92;
}

.journal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 18px;
}

.journal-featured {
  min-height: 470px;
}

.journal-featured__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: end;
  min-height: 100%;
  max-width: 460px;
  padding: 28px;
}

.journal-featured__copy h3 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 0.96;
}

.journal-featured__copy p {
  color: rgba(245, 238, 223, 0.84);
  line-height: 1.68;
}

.journal-stack {
  display: grid;
  gap: 14px;
}

.journal-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.84);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.journal-card__meta,
.journal-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.journal-card__meta {
  margin-bottom: 12px;
  color: rgba(233, 243, 236, 0.72);
  font-size: 0.84rem;
}

.journal-card__tags {
  margin: 16px 0 14px;
}

.waitlist-panel--intro {
  position: relative;
  overflow: hidden;
  background: rgba(4, 6, 5, 0.96);
}

.waitlist-panel__ambient {
  position: absolute;
  inset: 0;
}

.waitlist-panel__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.waitlist-panel--form {
  border-color: rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.92);
}

.footer-brand__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-brand__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background: rgba(255, 232, 174, 0.05);
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

@media (max-width: 1180px) {
  .club-grid,
  .trust-grid,
  .launch-map-shell,
  .journey-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .club-stage__copy {
    max-width: 56%;
  }

  .trust-visual {
    grid-column: auto;
    grid-row: auto;
    min-height: 540px;
  }

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

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

@media (max-width: 760px) {
  .home-board--hero {
    padding-bottom: 32px;
  }

  .home-hero__title {
    font-size: clamp(3.4rem, 13vw, 5rem);
  }

  .hero-plaque-shell__header {
    justify-items: start;
    text-align: left;
  }

  .feature-plaque-grid--hero,
  .launch-map-stack {
    grid-template-columns: 1fr;
  }

  .feature-plaque {
    min-height: 0;
  }

  .club-stage,
  .journey-stage,
  .journal-featured {
    min-height: 0;
    padding: 18px;
  }

  .club-stage__copy,
  .trust-visual__quote,
  .journal-featured__copy {
    max-width: none;
  }

  .club-stage__device,
  .trust-visual__device {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(240px, 62vw);
    margin-top: 16px;
    margin-left: auto;
  }

  .club-note--stat {
    grid-template-columns: 1fr;
  }

  .trust-pillar-card,
  .journey-step {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .trust-visual {
    min-height: 420px;
    padding: 18px;
  }

  .trust-visual__quote {
    margin-top: 52px;
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .launch-map-stage--visual {
    min-height: 360px;
  }

  .launch-map-legend {
    left: 12px;
    right: 12px;
    top: 12px;
    justify-content: center;
  }

  .launch-map-hotspot__label {
    display: none;
  }

  .journey-stage__phones {
    grid-template-columns: 0.82fr 1fr 0.82fr;
    gap: 8px;
    margin-top: 14px;
  }

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

  .journal-featured__copy {
    padding: 20px;
  }

  .waitlist-panel__content {
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .nav-link {
    letter-spacing: 0.08em;
  }

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

  .club-stage__copy h3,
  .journal-featured__copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .trust-visual__quote {
    max-width: calc(100% - 20px);
  }

  .launch-map-stage--visual {
    min-height: 300px;
  }

  .launch-map-hotspot__pulse {
    width: 24px;
    height: 24px;
  }

  .launch-map-hotspot__pin {
    top: 4px;
    left: 10px;
    width: 14px;
    height: 14px;
  }

  .journey-step,
  .trust-pillar-card {
    padding: 16px;
  }
}

/* Premium pass v4: stronger editorial framing and lower-page composition */

.home-page {
  position: relative;
  isolation: isolate;
}

.home-page__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 179, 66, 0.12), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(30, 102, 72, 0.2), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(255, 202, 113, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.26), rgba(2, 4, 3, 0.08) 38%, rgba(2, 4, 3, 0.22));
}

.home-board {
  overflow: hidden;
  border-color: rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(3, 6, 5, 0.94);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 243, 211, 0.04),
    inset 0 0 0 1px rgba(183, 146, 47, 0.04);
}

.home-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 214, 137, 0.04), transparent 18%, transparent 82%, rgba(255, 214, 137, 0.04)),
    linear-gradient(180deg, rgba(255, 214, 137, 0.06), transparent 22%);
}

.home-board::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(183, 146, 47, 0.08);
  pointer-events: none;
}

.home-board--club::before,
.home-board--editorial::before,
.home-board--regions::before,
.home-board--story::before,
.home-board--resources::before {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 191, 95, 0.1), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(25, 90, 63, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(255, 214, 137, 0.04), transparent 18%, transparent 82%, rgba(255, 214, 137, 0.04)),
    linear-gradient(180deg, rgba(255, 214, 137, 0.05), transparent 20%);
}

.home-board__rule {
  background:
    linear-gradient(90deg, transparent, rgba(183, 146, 47, 0.68) 24%, rgba(255, 228, 171, 0.88) 50%, rgba(183, 146, 47, 0.68) 76%, transparent);
  opacity: 0.92;
}

.section-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.section-ledger__item {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.78);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.section-ledger__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 223, 151, 0.58), transparent);
}

.section-ledger__eyebrow {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-ledger__item p {
  margin: 12px 0 0;
  color: rgba(245, 238, 223, 0.9);
  font-size: 1rem;
  line-height: 1.56;
}

.section-ledger--club {
  margin-bottom: 18px;
}

.section-ledger--regions,
.section-ledger--journal {
  margin-bottom: 22px;
}

.feature-plaque {
  min-height: 164px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(6, 10, 9, 0.84);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.feature-plaque h3 {
  letter-spacing: 0.01em;
}

.feature-plaque p {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.club-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
}

.club-stage {
  min-height: 660px;
  padding: 30px;
}

.club-stage__copy {
  max-width: 48%;
}

.club-stage__copy h3 {
  max-width: 11ch;
  font-size: clamp(3rem, 4.2vw, 4.8rem);
  line-height: 0.92;
}

.club-stage__copy p,
.club-stage__list {
  max-width: 28rem;
}

.club-note {
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.84);
}

.club-note--quote p {
  font-size: clamp(2.4rem, 4.3vw, 4.1rem);
  line-height: 0.92;
}

.club-note--quote span {
  max-width: 28ch;
}

.trust-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.trust-copy {
  display: grid;
  gap: 16px;
}

.trust-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.trust-proof-strip__item {
  padding: 16px 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.8);
}

.trust-proof-strip__eyebrow {
  color: rgba(246, 223, 154, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-proof-strip__item p {
  margin: 10px 0 0;
  color: rgba(245, 238, 223, 0.9);
  line-height: 1.54;
}

.trust-visual {
  min-height: 620px;
  padding: 28px;
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(5, 8, 7, 0.92);
}

.trust-visual__quote {
  max-width: 11ch;
  margin-top: 92px;
  font-size: clamp(3rem, 4.8vw, 4.7rem);
  line-height: 0.92;
}

.trust-visual__device {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
}

.launch-map-shell {
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  gap: 18px;
}

.launch-map-card--visual,
.launch-map-summary,
.launch-region-card {
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.84);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.launch-map-stage--visual {
  min-height: 520px;
}

.launch-map-card__title {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 0.94;
}

.launch-map-summary {
  align-items: stretch;
  gap: 12px;
}

.launch-map-summary > div {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(183, 146, 47, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.launch-region-card__name {
  letter-spacing: 0.01em;
}

.journey-grid {
  gap: 20px;
}

.journey-copy {
  max-width: 480px;
}

.journey-stage {
  min-height: 620px;
  padding: 28px;
}

.journey-steps {
  margin-top: 22px;
}

.journey-step {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.84);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.journal-grid {
  gap: 18px;
}

.journal-featured {
  min-height: 540px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.journal-featured__copy {
  max-width: 28rem;
}

.journal-card h3 {
  max-width: 18ch;
}

.waitlist-panel--intro,
.waitlist-panel--form,
.home-proof-final__cards .proof-card {
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.waitlist-proof-card {
  border-color: rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.78);
}

.home-proof-final__grid {
  gap: 18px;
}

.proof-card {
  border-color: rgba(183, 146, 47, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.82);
}

@media (max-width: 1180px) {
  .section-ledger,
  .trust-proof-strip {
    grid-template-columns: 1fr;
  }

  .club-stage__copy {
    max-width: 56%;
  }
}

@media (max-width: 760px) {
  .section-ledger {
    margin-top: 20px;
  }

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

  .club-stage,
  .trust-visual,
  .journey-stage,
  .journal-featured {
    padding: 18px;
  }

  .club-stage__copy,
  .trust-visual__quote,
  .journal-featured__copy {
    max-width: none;
  }

  .club-stage__copy h3,
  .trust-visual__quote {
    max-width: none;
  }

  .trust-visual__device {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(240px, 62vw);
    margin-top: 16px;
    margin-left: auto;
  }

  .launch-map-stage--visual {
    min-height: 380px;
  }
}

@media (max-width: 520px) {
  .section-ledger {
    gap: 10px;
  }

  .section-ledger__item,
  .trust-proof-strip__item {
    min-height: 0;
    padding: 14px 14px 16px;
  }

  .club-stage__copy h3,
  .club-note--quote p,
  .trust-visual__quote,
  .launch-map-card__title,
  .journal-featured__copy h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* Premium pass v5: closer to the reference composition */

.page-shell header {
  background:
    linear-gradient(180deg, rgba(4, 6, 5, 0.96), rgba(4, 6, 5, 0.74));
  backdrop-filter: blur(18px);
}

.nav {
  max-width: min(1480px, calc(100% - 28px));
  padding: 10px 8px;
}

.brand {
  gap: 14px;
}

.brand-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.brand-beta {
  min-height: 24px;
  padding: 0 10px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  min-height: 32px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-link--quiet {
  opacity: 0.78;
}

.button--nav {
  min-height: 38px;
}

.home-hero__grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  align-content: start;
  max-width: 470px;
  padding-top: 26px;
}

.home-hero__title {
  max-width: 8ch;
  font-size: clamp(4.6rem, 7vw, 7.6rem);
  line-height: 0.88;
}

.home-hero__intro {
  max-width: 23ch;
  font-size: 1.14rem;
  line-height: 1.54;
}

.home-hero__links {
  gap: 18px;
}

.home-hero__chips {
  gap: 10px;
}

.home-hero__boundary {
  max-width: 28rem;
  padding-top: 12px;
  border-top: 1px solid rgba(183, 146, 47, 0.14);
}

.home-hero__mobile-stage {
  display: none;
}

.hero-stage {
  min-height: 860px;
  margin-right: -36px;
}

.hero-stage__glow {
  inset: 4% 2% 10%;
  background:
    radial-gradient(circle at center, rgba(255, 196, 82, 0.28), transparent 38%),
    radial-gradient(circle at center, rgba(15, 83, 56, 0.18), transparent 62%);
  filter: blur(54px);
}

.hero-stage__crest {
  position: absolute;
  top: 28px;
  left: 18px;
  z-index: 4;
  display: grid;
  gap: 8px;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(7, 10, 9, 0.72);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.hero-stage__crest span {
  color: rgba(246, 223, 154, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stage__crest strong {
  color: rgba(245, 238, 223, 0.94);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.phone-frame--left {
  top: 194px;
  left: 36px;
  width: clamp(220px, 21vw, 290px);
  transform: rotate(-12deg);
}

.phone-frame--primary {
  top: 86px;
  left: 208px;
  width: clamp(300px, 28vw, 374px);
}

.phone-frame--right {
  top: 196px;
  right: 26px;
  width: clamp(212px, 20vw, 278px);
  transform: rotate(9deg);
}

.hero-stage__ledger {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 4;
  display: grid;
  gap: 10px;
  width: min(292px, 34%);
}

.hero-stage__ledger-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 14px 14px 12px;
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(8, 11, 10, 0.72);
  backdrop-filter: blur(12px);
}

.hero-stage__ledger-count {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(183, 146, 47, 0.22);
  color: #f7dfa0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  background: rgba(255, 214, 124, 0.06);
}

.hero-stage__ledger-label {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage__ledger-item p {
  margin: 6px 0 0;
  color: rgba(233, 243, 236, 0.78);
  font-size: 0.9rem;
  line-height: 1.44;
}

.hero-stage__badge {
  left: auto;
  right: 30px;
  bottom: 24px;
  width: min(380px, 44%);
}

.hero-plaque-shell {
  position: relative;
  z-index: 3;
  margin-top: -22px;
}

.hero-plaque-shell__header {
  margin-bottom: 18px;
}

.hero-plaque-shell__header p {
  max-width: 34ch;
}

.feature-plaque-grid--hero {
  grid-template-columns: minmax(0, 1.22fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-plaque {
  position: relative;
  min-height: 188px;
  padding: 18px 16px 18px;
  text-align: left;
  align-content: start;
}

.feature-plaque--primary {
  background:
    linear-gradient(180deg, rgba(255, 214, 124, 0.06), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(255, 192, 88, 0.08), rgba(10, 18, 16, 0.02)),
    rgba(7, 10, 9, 0.92);
}

.feature-plaque__count {
  color: rgba(246, 223, 154, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-plaque__icon {
  margin-left: 0;
}

.feature-plaque h3 {
  max-width: 12ch;
}

.feature-plaque p {
  max-width: 18ch;
  margin-left: 0;
  margin-right: 0;
}

.section-ledger__item p,
.trust-proof-strip__item p {
  max-width: 24ch;
}

.launch-map-shell {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 20px;
}

.launch-map-card__header {
  max-width: 320px;
}

.launch-map-stage--visual {
  min-height: 640px;
}

.launch-map-route {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.launch-map-route__card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.7);
  backdrop-filter: blur(12px);
}

.launch-map-route__count {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(183, 146, 47, 0.22);
  color: #f7df9f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: rgba(255, 214, 124, 0.05);
}

.launch-map-route__card strong {
  display: block;
  color: rgba(245, 238, 223, 0.94);
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 700;
}

.launch-map-route__card span {
  display: block;
  margin-top: 4px;
  color: rgba(246, 223, 154, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-map-note {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.82);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.launch-map-note__eyebrow {
  color: rgba(246, 223, 154, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-map-note h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.94;
}

.launch-map-note p {
  margin-top: 12px;
  color: rgba(233, 243, 236, 0.78);
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-hero__copy {
    max-width: 560px;
    padding-top: 12px;
  }

  .hero-stage {
    margin-right: 0;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stage__ledger {
    width: min(280px, 32%);
  }

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

  .feature-plaque--primary {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .nav {
    max-width: calc(100% - 12px);
    padding: 10px 4px;
  }

  .brand-kicker,
  .brand-beta {
    display: none;
  }

  .brand-wordmark {
    width: 150px;
  }

  .nav-toggle {
    min-width: 84px;
    min-height: 44px;
    border-radius: 16px;
    border-color: rgba(183, 146, 47, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
      rgba(10, 14, 13, 0.84);
  }

  .home-hero__copy {
    max-width: none;
    padding-top: 0;
  }

  .home-hero__title {
    max-width: 8ch;
    font-size: clamp(3.4rem, 14vw, 5.4rem);
  }

  .home-hero__intro {
    max-width: none;
    font-size: 1.02rem;
  }

  .home-hero__mobile-stage {
    display: block;
    margin: 6px 0 2px;
  }

  .home-hero__media {
    display: none;
  }

  .hero-stage--mobile {
    position: relative;
    min-height: 330px;
    margin: 0;
    border-radius: 28px;
    border: 1px solid rgba(183, 146, 47, 0.18);
    background:
      radial-gradient(circle at 52% 32%, rgba(255, 194, 82, 0.14), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
      rgba(6, 9, 8, 0.84);
    overflow: hidden;
  }

  .hero-stage--mobile .phone-frame {
    position: absolute;
  }

  .phone-frame--compact-left {
    top: 76px;
    left: 10px;
    width: 34%;
    transform: rotate(-11deg);
  }

  .phone-frame--compact-primary {
    top: 18px;
    left: 30%;
    width: 42%;
    transform: none;
    z-index: 2;
  }

  .phone-frame--compact-right {
    top: 82px;
    right: 8px;
    width: 33%;
    transform: rotate(10deg);
  }

  .hero-plaque-shell {
    margin-top: 8px;
  }

  .hero-plaque-shell__header {
    justify-items: start;
    text-align: left;
  }

  .feature-plaque-grid--hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .feature-plaque--primary {
    grid-column: 1 / -1;
  }

  .feature-plaque {
    min-height: 0;
  }

  .launch-map-stage--visual {
    min-height: 460px;
  }

  .launch-map-route {
    grid-template-columns: 1fr 1fr;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 520px) {
  .brand-mark-shell {
    width: 42px;
    height: 42px;
  }

  .brand-wordmark {
    width: 136px;
  }

  .home-hero__title {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .home-hero__links {
    display: grid;
    gap: 8px;
  }

  .home-hero__chips {
    grid-template-columns: repeat(2, minmax(0, max-content));
    display: grid;
  }

  .hero-stage--mobile {
    min-height: 270px;
  }

  .launch-map-route {
    grid-template-columns: 1fr;
  }
}

/* Premium pass v6: make hero and rollout sections more image-led */

.hero-stage {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(255, 196, 82, 0.08), rgba(8, 10, 9, 0.08)),
    rgba(5, 8, 7, 0.92);
}

.hero-stage__table {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-stage__table-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: brightness(0.52) saturate(0.82) contrast(1.06);
  transform: scale(1.06);
}

.hero-stage__glow {
  z-index: 1;
}

.phone-frame {
  z-index: 2;
}

.phone-frame--left {
  top: 214px;
  left: 8px;
  width: clamp(208px, 20vw, 274px);
}

.phone-frame--primary {
  top: 72px;
  left: 194px;
  width: clamp(312px, 29vw, 392px);
}

.phone-frame--right {
  top: 220px;
  right: -10px;
  width: clamp(200px, 19vw, 266px);
}

.hero-stage__crest,
.hero-stage__ledger,
.hero-stage__badge {
  z-index: 4;
}

.hero-stage__ledger {
  top: 24px;
  right: 18px;
}

.hero-stage__badge {
  right: 18px;
  bottom: 18px;
}

.launch-map-stage--visual {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(6, 9, 8, 0.92);
}

.launch-map-stage__table {
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
  filter: brightness(0.44) saturate(0.74);
  transform: scale(1.08);
}

.launch-map-stage__ambient {
  opacity: 0.72;
  filter: brightness(0.78) saturate(0.98);
}

.launch-map-stage__veil {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.46)),
    radial-gradient(circle at center, rgba(255, 196, 82, 0.1), transparent 48%);
}

.launch-map-route__card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    rgba(8, 11, 10, 0.78);
}

@media (max-width: 760px) {
  .hero-stage--mobile {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
      rgba(5, 8, 7, 0.9);
  }

  .hero-stage--mobile .hero-stage__table-image {
    object-position: 56% center;
    opacity: 0.34;
    transform: scale(1.12);
  }

  .hero-stage--mobile .hero-stage__glow {
    inset: 14% 8% 18%;
  }

  .phone-frame--compact-left {
    left: -2px;
  }

  .phone-frame--compact-primary {
    left: 28%;
    width: 44%;
  }

  .phone-frame--compact-right {
    right: -2px;
  }
}

/* Milestone 1: homepage header + hero lock */

.home-page__atmosphere {
  background:
    linear-gradient(180deg, rgba(2, 5, 4, 0.88), rgba(2, 5, 4, 0.26) 26%, rgba(2, 5, 4, 0.54) 100%),
    url("/images/premium/bg_desktop_master_4096x2304.png") center top / cover no-repeat,
    radial-gradient(circle at 14% 16%, rgba(255, 179, 66, 0.12), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(30, 102, 72, 0.2), transparent 30%),
    radial-gradient(circle at 50% 58%, rgba(255, 202, 113, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.26), rgba(2, 4, 3, 0.08) 38%, rgba(2, 4, 3, 0.22));
}

.page-shell header {
  background:
    linear-gradient(180deg, rgba(4, 6, 5, 0.96), rgba(4, 6, 5, 0.74));
  backdrop-filter: blur(18px);
}

.nav {
  max-width: min(1480px, calc(100% - 28px));
  padding: 10px 8px;
}

.brand {
  gap: 14px;
}

.brand-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.brand-beta {
  min-height: 24px;
  padding: 0 10px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  min-height: 32px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button--nav {
  min-height: 38px;
}

.nav-actions {
  justify-content: flex-end;
}

.nav-drawer {
  padding: 0 18px 18px;
}

.nav-drawer .nav-actions {
  justify-content: stretch;
}

.nav-drawer .nav-actions .button {
  width: 100%;
  justify-content: center;
}

.home-board--hero .home-board__ambient-image {
  object-position: 74% center;
  opacity: 0.46;
  filter: saturate(0.92) brightness(0.5);
}

.home-board--hero .home-board__veil {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.96) 0%, rgba(5, 8, 7, 0.82) 34%, rgba(5, 8, 7, 0.38) 64%, rgba(5, 8, 7, 0.84) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.12) 36%, rgba(0, 0, 0, 0.42));
}

.homepage-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: center;
  min-height: 720px;
  padding-block: 12px 10px;
}

.homepage-hero__copy {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.homepage-hero__kicker {
  margin-bottom: -6px;
}

.homepage-hero__title {
  max-width: 9ch;
  font-size: clamp(3.8rem, 6vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #f0d79b;
}

.homepage-hero__intro {
  max-width: 31rem;
  color: rgba(233, 243, 236, 0.86);
  font-size: 1.06rem;
  line-height: 1.72;
}

.homepage-hero__support-copy {
  display: grid;
  gap: 8px;
  max-width: 32rem;
  padding-top: 14px;
  border-top: 1px solid rgba(183, 146, 47, 0.14);
}

.homepage-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.homepage-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.homepage-hero__stat {
  min-height: 132px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(8, 10, 9, 0.72);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.homepage-hero__stat-label {
  margin-bottom: 10px;
  color: rgba(246, 223, 154, 0.8);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.homepage-hero__stat p {
  color: rgba(233, 243, 236, 0.8);
  font-size: 0.94rem;
  line-height: 1.58;
}

.homepage-hero__media {
  position: relative;
  min-height: 720px;
}

.homepage-hero__stage {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
}

.homepage-hero__stage-glow {
  position: absolute;
  inset: 14% 4% 8%;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 191, 87, 0.28), transparent 34%),
    radial-gradient(circle at center, rgba(13, 95, 63, 0.24), transparent 58%);
  filter: blur(50px);
}

.homepage-hero__stage-note {
  position: absolute;
  top: 22px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 8px;
  max-width: 280px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(7, 10, 9, 0.72);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.homepage-hero__stage-note span {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.homepage-hero__stage-note strong {
  color: rgba(245, 238, 223, 0.94);
  font-size: 0.98rem;
  line-height: 1.54;
  font-weight: 600;
}

.homepage-hero__phone {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    rgba(10, 12, 11, 0.96);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.homepage-hero__phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.homepage-hero__phone--left {
  top: 188px;
  left: 22px;
  width: clamp(220px, 20vw, 280px);
  transform: rotate(-11deg);
}

.homepage-hero__phone--center {
  top: 86px;
  left: 208px;
  z-index: 2;
  width: clamp(286px, 26vw, 360px);
}

.homepage-hero__phone--right {
  top: 194px;
  right: 16px;
  width: clamp(208px, 19vw, 268px);
  transform: rotate(10deg);
}

.homepage-hero__phone-chrome {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 14px 0 8px;
}

.homepage-hero__phone-chrome span {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.homepage-hero__phone-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .homepage-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 26px;
  }

  .homepage-hero__copy {
    max-width: 620px;
  }

  .homepage-hero__media {
    min-height: 620px;
  }

  .homepage-hero__phone--left {
    left: 12px;
  }

  .homepage-hero__phone--center {
    left: 50%;
    transform: translateX(-50%);
  }

  .homepage-hero__phone--right {
    right: 12px;
  }
}

@media (max-width: 900px) {
  .homepage-hero__stats {
    grid-template-columns: 1fr;
  }

  .homepage-hero__media {
    min-height: 540px;
  }

  .homepage-hero__phone--left,
  .homepage-hero__phone--right {
    width: min(220px, 34vw);
  }

  .homepage-hero__phone--center {
    width: min(280px, 43vw);
  }
}

@media (max-width: 760px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 14px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle,
  .nav-drawer {
    display: flex;
  }

  .nav-drawer {
    flex-direction: column;
    gap: 14px;
  }

  .nav-drawer .nav-links {
    display: grid;
    justify-content: stretch;
    gap: 8px;
  }

  .nav-drawer .nav-link {
    justify-content: center;
  }

  .homepage-hero__title {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .homepage-hero__intro {
    font-size: 1rem;
  }

  .homepage-hero__media {
    min-height: 420px;
  }

  .homepage-hero__stage-note {
    position: static;
    margin-bottom: 18px;
  }

  .homepage-hero__phone {
    border-radius: 24px;
  }

  .homepage-hero__phone::after {
    inset: 8px;
    border-radius: 18px;
  }

  .homepage-hero__phone--left {
    top: 122px;
    left: 0;
    width: min(170px, 36vw);
  }

  .homepage-hero__phone--center {
    top: 42px;
    width: min(220px, 46vw);
  }

  .homepage-hero__phone--right {
    top: 132px;
    right: 0;
    width: min(164px, 34vw);
  }
}

@media (max-width: 560px) {
  .brand-kicker,
  .brand-beta {
    display: none;
  }

  .brand-wordmark {
    width: 148px;
  }

  .homepage-hero__media {
    min-height: 360px;
  }

  .homepage-hero__phone--left {
    top: 116px;
    left: -2px;
    width: min(144px, 35vw);
  }

  .homepage-hero__phone--center {
    top: 52px;
    width: min(184px, 44vw);
  }

  .homepage-hero__phone--right {
    top: 122px;
    right: -2px;
    width: min(140px, 34vw);
  }
}

/* Homepage refinement pass: compact header, lighter hero, locked feature band */
.page-shell header {
  background:
    linear-gradient(180deg, rgba(4, 6, 5, 0.94), rgba(4, 6, 5, 0.7));
  border-bottom: 1px solid rgba(183, 146, 47, 0.12);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: min(1480px, calc(100% - 20px));
  padding: 4px 4px;
}

.brand {
  gap: 8px;
}

.brand-copy,
.brand-copy,
.brand-kicker,
.brand-beta,
.brand-wordmark {
  display: none;
}

.brand-lockup {
  display: none;
}

.brand-mark-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(8, 16, 13, 0.78);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.brand-mark-shell__image {
  display: block;
  width: 22px;
  height: auto;
}

.brand-lockup--header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
}

.brand-lockup__mark {
  display: block;
  width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.brand-lockup__wordmark {
  display: block;
  width: 118px;
  height: auto;
  flex: 0 0 auto;
}

.nav-link {
  min-height: 26px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.button--nav {
  min-height: 32px;
  padding-inline: 13px;
}

.nav-actions {
  gap: 10px;
}

.home-board--hero .home-board__ambient-image {
  object-position: 72% center;
  opacity: 0.5;
  filter: saturate(0.96) brightness(0.54);
}

.home-board--hero {
  padding-bottom: 36px;
}

.home-page__atmosphere {
  background:
    linear-gradient(180deg, rgba(4, 7, 6, 0.76), rgba(4, 7, 6, 0.2) 24%, rgba(4, 7, 6, 0.42) 100%),
    radial-gradient(circle at 18% 18%, rgba(243, 165, 52, 0.16), transparent 24%),
    radial-gradient(circle at 80% 14%, rgba(42, 123, 87, 0.24), transparent 28%),
    radial-gradient(circle at 50% 76%, rgba(235, 163, 55, 0.08), transparent 30%),
    url("/images/premium/bg_desktop_master_4096x2304.png") center top / cover no-repeat,
    linear-gradient(180deg, rgba(2, 4, 3, 0.2), rgba(2, 4, 3, 0.12) 38%, rgba(2, 4, 3, 0.2));
}

.home-board--hero .home-board__veil {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.88) 0%, rgba(5, 8, 7, 0.72) 34%, rgba(5, 8, 7, 0.24) 62%, rgba(6, 10, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.28));
}

.homepage-hero__grid {
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: 28px;
  min-height: 680px;
  padding-block: 0 6px;
}

.homepage-hero__copy {
  gap: 16px;
  max-width: 486px;
}

.homepage-hero__kicker {
  margin-bottom: -2px;
}

.homepage-hero__title {
  max-width: 8ch;
  font-size: clamp(3.2rem, 5.4vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.homepage-hero__intro {
  max-width: 29rem;
  font-size: 0.98rem;
  line-height: 1.66;
}

.homepage-hero__support-copy {
  gap: 6px;
  max-width: 29rem;
  padding-top: 10px;
  border-top: 1px solid rgba(183, 146, 47, 0.12);
}

.homepage-hero__boundary {
  margin: 0;
  color: rgba(220, 230, 223, 0.64);
  font-size: 0.88rem;
  line-height: 1.55;
}

.homepage-hero__chips {
  gap: 8px;
}

.homepage-hero__chips .chip {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.homepage-hero__media {
  min-height: 660px;
}

.homepage-hero__stage-note {
  top: 16px;
  left: 12px;
  gap: 6px;
  max-width: 244px;
  padding: 10px 12px;
  border-radius: 18px;
}

.homepage-hero__stage-note strong {
  font-size: 0.9rem;
  line-height: 1.48;
}

.homepage-hero__phone--left {
  top: 198px;
  left: 34px;
  width: clamp(208px, 18vw, 252px);
}

.homepage-hero__phone--center {
  top: 92px;
  left: 208px;
  width: clamp(272px, 24vw, 334px);
}

.homepage-hero__phone--right {
  top: 206px;
  right: 28px;
  width: clamp(196px, 17vw, 244px);
}

.hero-plaque-shell {
  margin-top: -10px;
}

.premium-feature-band {
  display: grid;
  gap: 18px;
}

.premium-section-title {
  display: grid;
  gap: 8px;
}

.premium-section-title--center {
  justify-items: center;
  text-align: center;
}

.premium-section-title--left {
  justify-items: start;
  text-align: left;
}

.premium-section-title__eyebrow {
  color: rgba(246, 223, 154, 0.9);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-section-title__ornament {
  width: min(340px, 58vw);
  aspect-ratio: 15 / 1;
  position: relative;
  overflow: hidden;
  opacity: 0.82;
}

.premium-section-title__ornament img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(calc(var(--ornament-index, 0) * -16.6666667%));
}

.premium-section-title__ornament--1 {
  --ornament-index: 0;
}

.premium-section-title__ornament--2 {
  --ornament-index: 1;
}

.premium-section-title__ornament--3 {
  --ornament-index: 2;
}

.premium-section-title__ornament--4 {
  --ornament-index: 3;
}

.premium-section-title__ornament--5 {
  --ornament-index: 4;
}

.premium-section-title__ornament--6 {
  --ornament-index: 5;
}

.premium-section-title__heading {
  max-width: 15ch;
  margin: 0;
  color: #f1da9f;
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  line-height: 1.02;
}

.premium-section-title__description {
  max-width: 44rem;
  margin: 0;
  color: rgba(233, 243, 236, 0.72);
  font-size: 0.98rem;
  line-height: 1.62;
}

.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.premium-feature-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 198px;
  padding: 20px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(255, 201, 104, 0.05), rgba(8, 13, 12, 0.02)),
    rgba(7, 10, 9, 0.9);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.premium-feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 214, 113, 0.14), transparent 56%),
    rgba(8, 13, 12, 0.78);
}

.premium-feature-card__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.premium-feature-card h3 {
  max-width: 11ch;
  margin: 0;
  color: #f6df9a;
  font-size: clamp(1.24rem, 1.45vw, 1.52rem);
  line-height: 1.02;
}

.premium-feature-card p {
  max-width: 18ch;
  margin: 0;
  color: rgba(233, 243, 236, 0.74);
  font-size: 0.9rem;
  line-height: 1.58;
}

.homepage-regions {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 18px;
  align-items: stretch;
}

.homepage-regions__visual,
.homepage-regions__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(4, 8, 7, 0.92);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.homepage-regions__visual {
  min-height: 540px;
}

.homepage-regions__visual-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) brightness(0.82);
}

.homepage-regions__visual-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 6, 0.16), rgba(4, 7, 6, 0.08) 40%, rgba(4, 7, 6, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 7, 6, 0.5), transparent 34%, rgba(4, 7, 6, 0.2) 72%, rgba(4, 7, 6, 0.58) 100%);
}

.homepage-regions__visual-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  max-width: 28rem;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(250, 198, 97, 0.04), rgba(8, 14, 12, 0.02)),
    rgba(6, 10, 9, 0.76);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.homepage-regions__visual-copy h3 {
  margin: 0;
  color: #f3d899;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.homepage-regions__visual-copy p {
  margin: 0;
  color: rgba(233, 243, 236, 0.82);
  font-size: 0.98rem;
  line-height: 1.64;
}

.homepage-regions__visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.homepage-regions__visual-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background: rgba(255, 228, 164, 0.06);
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-regions__panel {
  display: grid;
  gap: 16px;
  padding: 22px;
  align-content: start;
}

.homepage-regions__panel-header {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(183, 146, 47, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(8, 12, 11, 0.54);
}

.homepage-regions__panel-eyebrow {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.homepage-regions__panel-header p {
  margin: 0;
  color: rgba(233, 243, 236, 0.72);
  font-size: 0.94rem;
  line-height: 1.58;
}

.homepage-regions__list {
  display: grid;
  gap: 12px;
}

.homepage-region-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(6, 10, 9, 0.84);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 243, 211, 0.03);
}

.homepage-region-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 210, 129, 0.84), rgba(245, 210, 129, 0));
}

.homepage-region-card--empty {
  min-height: 0;
}

.homepage-region-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.homepage-region-card h3 {
  margin: 0;
  color: #f1d496;
  font-size: 1.16rem;
  line-height: 1.08;
}

.homepage-region-card__meta {
  margin-top: 4px;
  color: rgba(220, 229, 223, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.homepage-region-card__progress {
  display: grid;
  gap: 8px;
}

.homepage-region-card__progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(233, 243, 236, 0.66);
  font-size: 0.84rem;
}

.homepage-region-card p {
  margin: 0;
  color: rgba(233, 243, 236, 0.74);
  font-size: 0.9rem;
  line-height: 1.58;
}

.homepage-regions__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 4px;
}

@media (max-width: 1180px) {
  .premium-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-hero__grid {
    gap: 24px;
  }

  .homepage-hero__media {
    min-height: 600px;
  }

  .homepage-regions {
    grid-template-columns: 1fr;
  }

  .homepage-regions__visual {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .nav {
    padding-inline: 12px;
  }

  .brand-mark-shell {
    width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .brand-mark-shell__image {
    width: 20px;
  }

  .brand-lockup--header {
    gap: 7px;
  }

  .brand-lockup__mark {
    width: 22px;
  }

  .brand-lockup__wordmark {
    width: 110px;
  }

  .homepage-hero__title {
    font-size: clamp(2.9rem, 12vw, 4.6rem);
  }

  .homepage-hero__intro {
    font-size: 0.96rem;
  }

  .homepage-hero__chips .chip {
    min-height: 32px;
    font-size: 0.68rem;
  }

  .premium-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .premium-feature-card {
    min-height: 0;
  }

  .premium-section-title--center {
    justify-items: start;
    text-align: left;
  }

  .homepage-regions__panel {
    padding: 18px;
  }

  .homepage-regions__visual {
    min-height: 380px;
  }

  .homepage-regions__visual-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 14px 13px;
  }

  .homepage-regions__actions {
    justify-content: stretch;
  }

  .homepage-regions__actions .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .brand-mark-shell {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .brand-mark-shell__image {
    width: 18px;
  }

  .brand-lockup__mark {
    width: 20px;
  }

  .brand-lockup__wordmark {
    width: 100px;
  }

  .homepage-hero__media {
    min-height: 360px;
  }

  .premium-section-title__description {
    font-size: 0.92rem;
  }

  .homepage-regions__visual {
    min-height: 320px;
  }

  .homepage-region-card__header {
    grid-template-columns: 1fr;
  }
}

/* Homepage refinement pass: richer trust section and warmer felt-room depth */

.brand-lockup--header {
  gap: 9px;
  min-height: 36px;
}

.brand-lockup__mark {
  width: 27px;
}

.brand-lockup__wordmark {
  width: 130px;
}

.home-page__atmosphere {
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.58), rgba(5, 8, 7, 0.2) 22%, rgba(5, 8, 7, 0.3) 56%, rgba(5, 8, 7, 0.58) 100%),
    radial-gradient(circle at 82% 14%, rgba(246, 176, 76, 0.12), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(39, 103, 77, 0.14), transparent 28%),
    url("/images/premium/bg_desktop_master_4096x2304.png") center top / cover no-repeat;
}

.home-board--hero .home-board__ambient-image {
  opacity: 0.58;
  filter: saturate(1.02) brightness(0.62);
}

.home-board--hero .home-board__veil {
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.84) 0%, rgba(5, 8, 7, 0.64) 34%, rgba(5, 8, 7, 0.18) 62%, rgba(6, 10, 8, 0.68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.24));
}

.home-board--trust-support::before {
  background:
    radial-gradient(circle at 22% 22%, rgba(244, 171, 74, 0.08), transparent 22%),
    radial-gradient(circle at 72% 36%, rgba(34, 103, 77, 0.18), transparent 28%);
}

.premium-trust {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(380px, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.premium-trust__copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.premium-trust__copy .premium-section-title__heading {
  max-width: 12ch;
}

.premium-trust__copy .premium-section-title__description {
  max-width: 34rem;
}

.premium-trust__principles {
  display: grid;
  gap: 12px;
}

.premium-trust__principle {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(250, 198, 97, 0.06), rgba(11, 18, 15, 0.02)),
    rgba(7, 11, 10, 0.82);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.premium-trust__principle-eyebrow {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-trust__principle p {
  margin: 0;
  color: rgba(233, 243, 236, 0.82);
  font-size: 0.96rem;
  line-height: 1.56;
}

.premium-trust__support {
  display: grid;
  gap: 8px;
  max-width: 34rem;
  padding-top: 2px;
}

.premium-trust__support p {
  margin: 0;
  color: rgba(233, 243, 236, 0.76);
  font-size: 0.97rem;
  line-height: 1.64;
}

.premium-trust__boundary {
  color: rgba(220, 230, 223, 0.62);
  font-size: 0.86rem;
}

.premium-trust__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-trust__stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 30px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(5, 8, 7, 0.92);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.premium-trust__stage-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) brightness(0.84);
}

.premium-trust__stage-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.24), rgba(5, 8, 7, 0.14) 36%, rgba(5, 8, 7, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.52), rgba(5, 8, 7, 0.16) 46%, rgba(5, 8, 7, 0.66)),
    radial-gradient(circle at 30% 28%, rgba(248, 177, 78, 0.14), transparent 26%),
    radial-gradient(circle at 64% 34%, rgba(35, 108, 78, 0.18), transparent 34%);
}

.premium-trust__stage-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 296px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(8, 12, 10, 0.74);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.premium-trust__stage-card span {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-trust__stage-card strong {
  color: rgba(247, 236, 207, 0.96);
  font-size: 1.54rem;
  line-height: 1.04;
}

.premium-trust__stage-card p {
  margin: 0;
  color: rgba(233, 243, 236, 0.8);
  font-size: 0.94rem;
  line-height: 1.58;
}

.premium-trust__stage-note {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background: rgba(7, 11, 10, 0.68);
  color: rgba(245, 238, 223, 0.9);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.premium-trust__device {
  position: absolute;
  right: 30px;
  bottom: -18px;
  z-index: 2;
  width: clamp(220px, 24vw, 314px);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(9, 12, 11, 0.96);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.premium-trust__device::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.premium-trust__device img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1180px) {
  .premium-trust {
    grid-template-columns: 1fr;
  }

  .premium-trust__stage {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .brand-lockup__mark {
    width: 24px;
  }

  .brand-lockup__wordmark {
    width: 118px;
  }

  .premium-trust__stage {
    min-height: 460px;
  }

  .premium-trust__stage-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .premium-trust__stage-note {
    top: 16px;
    left: 18px;
  }

  .premium-trust__device {
    right: 18px;
    bottom: 86px;
    width: min(210px, 46vw);
  }
}

@media (max-width: 560px) {
  .brand-lockup__mark {
    width: 22px;
  }

  .brand-lockup__wordmark {
    width: 110px;
  }

  .premium-trust__support p {
    font-size: 0.92rem;
  }

  .premium-trust__stage {
    min-height: 380px;
  }

  .premium-trust__stage-note {
    font-size: 0.66rem;
  }

  .premium-trust__stage-card strong {
    font-size: 1.28rem;
  }

  .premium-trust__device {
    right: 14px;
    bottom: 118px;
    width: min(170px, 44vw);
    border-radius: 26px;
  }

  .premium-trust__device::before {
    inset: 8px;
    border-radius: 18px;
  }
}

/* Homepage closeout pass: premium waitlist, quieter footer, and lower-page cleanup */

.journey-copy .premium-section-title__heading {
  max-width: 13ch;
}

.journey-copy .premium-section-title__description {
  max-width: 34rem;
}

.journey-stage__ambient {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) brightness(0.82);
}

.journey-stage__veil {
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.28), rgba(5, 8, 7, 0.16) 34%, rgba(5, 8, 7, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.48), rgba(5, 8, 7, 0.12) 48%, rgba(5, 8, 7, 0.52)),
    radial-gradient(circle at 38% 28%, rgba(245, 171, 69, 0.12), transparent 24%);
}

.home-board--waitlist::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(245, 171, 73, 0.1), transparent 20%),
    radial-gradient(circle at 78% 24%, rgba(32, 101, 76, 0.18), transparent 26%);
}

.premium-homepage-waitlist {
  display: grid;
  grid-template-columns: minmax(320px, 1.04fr) minmax(320px, 0.96fr);
  gap: 22px;
  align-items: stretch;
}

.premium-homepage-waitlist__intro,
.premium-homepage-waitlist__form-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(183, 146, 47, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(5, 8, 7, 0.92);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.premium-homepage-waitlist__intro {
  min-height: 100%;
}

.premium-homepage-waitlist__ambient {
  position: absolute;
  inset: 0;
}

.premium-homepage-waitlist__ambient-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  filter: saturate(1.04) brightness(0.68);
}

.premium-homepage-waitlist__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.24), rgba(5, 8, 7, 0.1) 34%, rgba(5, 8, 7, 0.76) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.56), rgba(5, 8, 7, 0.18) 46%, rgba(5, 8, 7, 0.62)),
    radial-gradient(circle at 20% 14%, rgba(245, 171, 73, 0.14), transparent 22%),
    radial-gradient(circle at 72% 28%, rgba(38, 114, 82, 0.16), transparent 30%);
}

.premium-homepage-waitlist__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  padding: 28px;
  align-content: start;
}

.premium-homepage-waitlist__content .premium-section-title__heading {
  max-width: 11ch;
}

.premium-homepage-waitlist__content .premium-section-title__description {
  max-width: 32rem;
}

.premium-homepage-waitlist__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-homepage-waitlist__highlights {
  display: grid;
  gap: 12px;
}

.premium-homepage-waitlist__highlight {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(183, 146, 47, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(7, 11, 10, 0.72);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.premium-homepage-waitlist__highlight::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 210, 129, 0.8), rgba(245, 210, 129, 0));
}

.premium-homepage-waitlist__highlight-eyebrow {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-homepage-waitlist__highlight p {
  margin: 0;
  color: rgba(233, 243, 236, 0.8);
  font-size: 0.95rem;
  line-height: 1.58;
}

.premium-homepage-waitlist__footnotes {
  display: grid;
  gap: 8px;
  max-width: 32rem;
}

.premium-homepage-waitlist__footnotes p {
  margin: 0;
  color: rgba(233, 243, 236, 0.76);
  font-size: 0.95rem;
  line-height: 1.64;
}

.premium-homepage-waitlist__boundary {
  color: rgba(220, 230, 223, 0.62);
  font-size: 0.86rem;
}

.premium-homepage-waitlist__form-shell {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(245, 171, 73, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(6, 10, 9, 0.9);
}

.premium-homepage-waitlist .waitlist-form {
  position: relative;
  min-height: 100%;
  gap: 12px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(140deg, rgba(250, 198, 97, 0.05), rgba(10, 16, 14, 0.02)),
    rgba(7, 11, 10, 0.88);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.05);
}

.premium-homepage-waitlist .waitlist-form h3 {
  color: #f3dc9f;
}

.premium-homepage-waitlist .waitlist-form label,
.premium-homepage-waitlist .waitlist-form legend {
  color: rgba(245, 238, 223, 0.9);
}

.premium-homepage-waitlist .waitlist-form .input,
.premium-homepage-waitlist .waitlist-form .select {
  background: rgba(9, 13, 12, 0.78);
  border-color: rgba(183, 146, 47, 0.14);
}

.premium-homepage-waitlist .role-option {
  background: rgba(9, 13, 12, 0.68);
  border-color: rgba(183, 146, 47, 0.14);
}

.premium-homepage-waitlist .role-option.selected {
  background:
    linear-gradient(180deg, rgba(255, 224, 155, 0.08), rgba(255, 224, 155, 0.02)),
    rgba(12, 18, 16, 0.88);
}

.footer {
  border-top: 1px solid rgba(183, 146, 47, 0.12);
  background:
    linear-gradient(180deg, rgba(6, 8, 7, 0.94), rgba(6, 8, 7, 0.98));
}

.footer-inner {
  gap: 28px;
  padding-block: 30px 34px;
}

.footer-brand {
  gap: 14px;
  max-width: 25rem;
}

.footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-brand__lockup-image {
  display: block;
  width: 168px;
  height: auto;
}

.footer-brand__note {
  max-width: 30rem;
}

.footer-links {
  gap: 26px;
}

.footer-links__group {
  gap: 10px;
}

.footer-links__label {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.footer-links__group a {
  color: rgba(233, 243, 236, 0.74);
}

@media (max-width: 1180px) {
  .premium-homepage-waitlist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .premium-homepage-waitlist__content,
  .premium-homepage-waitlist__form-shell,
  .premium-homepage-waitlist .waitlist-form {
    padding: 20px;
  }

  .footer-inner {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .premium-homepage-waitlist__highlight p,
  .premium-homepage-waitlist__footnotes p {
    font-size: 0.92rem;
  }

  .footer-brand__lockup-image {
    width: 150px;
  }
}

/* Homepage density pass: preserve long-form scroll, reduce oversized section height */

.page-shell--premium {
  width: 100%;
}

.page-shell--premium .page-content {
  padding-bottom: 56px;
}

.home-page > .section {
  padding-block: clamp(58px, 6vw, 74px);
}

.home-page > .home-hero {
  padding-top: clamp(38px, 4.8vw, 54px);
  padding-bottom: 28px;
}

.homepage-hero__grid {
  min-height: 624px;
  gap: 22px;
}

.homepage-hero__copy {
  gap: 14px;
}

.homepage-hero__intro {
  max-width: 27rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.homepage-hero__support-copy {
  padding-top: 8px;
}

.homepage-hero__chips .chip {
  min-height: 32px;
  padding-inline: 12px;
}

.homepage-hero__media {
  min-height: 608px;
}

.homepage-hero__stage-note {
  max-width: 226px;
  padding: 9px 11px;
}

.homepage-hero__phone--left {
  top: 186px;
  width: clamp(196px, 17vw, 236px);
}

.homepage-hero__phone--center {
  top: 86px;
  width: clamp(258px, 23vw, 320px);
}

.homepage-hero__phone--right {
  top: 194px;
  width: clamp(186px, 16vw, 228px);
}

.hero-plaque-shell {
  margin-top: -2px;
}

.premium-feature-band {
  gap: 16px;
}

.premium-feature-grid {
  gap: 12px;
}

.premium-feature-card {
  min-height: 182px;
  padding: 18px 16px 16px;
}

.premium-trust {
  gap: 20px;
}

.premium-trust__copy {
  gap: 16px;
}

.premium-trust__principles {
  gap: 10px;
}

.premium-trust__principle {
  padding: 14px 16px;
}

.premium-trust__stage {
  min-height: 504px;
}

.premium-trust__stage-card {
  left: 20px;
  bottom: 20px;
  padding: 16px 16px 18px;
}

.premium-trust__device {
  right: 24px;
  bottom: -10px;
  width: clamp(206px, 22vw, 286px);
}

.homepage-regions {
  gap: 16px;
}

.homepage-regions__visual {
  min-height: 492px;
}

.homepage-regions__panel {
  gap: 14px;
  padding: 20px;
}

.homepage-region-card {
  gap: 10px;
  padding: 14px;
}

.journey-grid {
  gap: 16px;
}

.journey-copy {
  gap: 14px;
}

.journey-stage {
  min-height: 500px;
  padding: 20px;
}

.journey-stage__phones {
  max-width: 700px;
  margin-top: 22px;
}

.journey-stage__phones .phone-frame {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
}

.phone-frame--journey-left {
  transform: translateY(22px) rotate(-7deg) scale(0.92);
}

.phone-frame--journey-primary {
  z-index: 2;
  transform: translateY(0) scale(0.98);
}

.phone-frame--journey-right {
  transform: translateY(22px) rotate(7deg) scale(0.92);
}

.journey-steps {
  gap: 10px;
  margin-top: 14px;
}

.journey-step {
  gap: 12px;
  padding: 16px;
}

.journey-step__content {
  display: grid;
  align-content: start;
  gap: 6px;
}

.journey-step__eyebrow {
  color: rgba(246, 223, 154, 0.8);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-board--story::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(246, 178, 80, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(39, 103, 77, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(255, 214, 137, 0.04), transparent 18%, transparent 82%, rgba(255, 214, 137, 0.04)),
    linear-gradient(180deg, rgba(255, 214, 137, 0.05), transparent 20%);
}

.home-board--waitlist::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(245, 171, 73, 0.14), transparent 20%),
    radial-gradient(circle at 78% 24%, rgba(32, 101, 76, 0.14), transparent 26%);
}

.premium-homepage-waitlist {
  gap: 18px;
}

.premium-homepage-waitlist__intro {
  display: grid;
}

.premium-homepage-waitlist__content {
  gap: 16px;
  padding: 24px;
}

.premium-homepage-waitlist__ambient-image {
  object-position: center 22%;
  opacity: 0.84;
  filter: saturate(1.08) brightness(0.72);
}

.premium-homepage-waitlist__veil {
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.24), rgba(5, 8, 7, 0.08) 28%, rgba(5, 8, 7, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.52), rgba(5, 8, 7, 0.16) 44%, rgba(5, 8, 7, 0.62)),
    radial-gradient(circle at 22% 14%, rgba(245, 171, 73, 0.16), transparent 22%);
}

.premium-homepage-waitlist__highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.premium-homepage-waitlist__highlight {
  min-height: 100%;
  align-content: start;
  padding: 14px 16px;
}

.premium-homepage-waitlist__form-shell {
  padding: 18px;
}

.premium-homepage-waitlist .waitlist-form {
  gap: 10px;
  padding: 22px;
}

.footer-inner {
  padding-block: 24px 28px;
}

@media (max-width: 1180px) {
  .home-page > .section {
    padding-block: 54px;
  }

  .homepage-hero__grid {
    min-height: 0;
    gap: 20px;
  }

  .homepage-hero__media {
    min-height: 520px;
  }

  .premium-trust__stage {
    min-height: 472px;
  }

  .homepage-regions__visual {
    min-height: 420px;
  }

  .journey-stage {
    min-height: 420px;
  }

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

@media (max-width: 760px) {
  .home-page__atmosphere {
    background:
      linear-gradient(180deg, rgba(5, 8, 7, 0.62), rgba(5, 8, 7, 0.22) 18%, rgba(5, 8, 7, 0.36) 54%, rgba(5, 8, 7, 0.64) 100%),
      radial-gradient(circle at 74% 10%, rgba(246, 176, 76, 0.1), transparent 22%),
      url("/images/premium/bg_mobile_master_1440x3200.png") center top / cover no-repeat;
  }

  .page-shell--premium .page-content {
    padding-bottom: 44px;
  }

  .home-page > .section {
    padding-block: 44px;
  }

  .home-page > .home-hero {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .hero-plaque-shell {
    margin-top: 8px;
  }

  .premium-trust__copy,
  .premium-homepage-waitlist__content {
    gap: 14px;
  }

  .premium-homepage-waitlist__highlights {
    grid-template-columns: 1fr;
  }

  .premium-trust__stage,
  .journey-stage {
    min-height: 380px;
  }

  .phone-frame--journey-left,
  .phone-frame--journey-right {
    transform: translateY(14px) rotate(0deg) scale(0.94);
  }

  .phone-frame--journey-primary {
    transform: scale(0.96);
  }

  .homepage-regions__visual {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .home-page > .section {
    padding-block: 38px;
  }

  .homepage-regions__visual-tag {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.68rem;
  }

  .journey-step__eyebrow {
    font-size: 0.64rem;
  }

  .premium-feature-card {
    padding: 16px 14px 14px;
  }

  .premium-trust__principle,
  .premium-homepage-waitlist__highlight {
    padding: 13px 14px;
  }

  .premium-homepage-waitlist__form-shell,
  .premium-homepage-waitlist .waitlist-form {
    padding: 16px;
  }
}

/* Premium-shell backdrop unification: use the shared felt background as the
   single full-bleed site surface, then let homepage boards sit on top of it. */
body[data-ui-variant="premium"]::before {
  inset: -2%;
  background: url("/images/premium/felt_bg_web_2560x1600.png") center top / cover no-repeat;
  opacity: 0.8;
  filter: saturate(0.72) brightness(0.38) blur(4px);
  transform: scale(1.03);
}

body[data-ui-variant="premium"]::after {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.82), rgba(11, 10, 9, 0.52) 22%, rgba(11, 10, 9, 0.62) 56%, rgba(11, 10, 9, 0.92) 100%),
    radial-gradient(circle at 18% 12%, rgba(183, 146, 47, 0.08), transparent 24%),
    radial-gradient(circle at 80% 14%, rgba(52, 59, 51, 0.08), transparent 22%);
}

.home-page {
  background: transparent;
}

.home-page__atmosphere {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.34), rgba(5, 8, 7, 0.08) 18%, rgba(5, 8, 7, 0.14) 54%, rgba(5, 8, 7, 0.44) 100%),
    radial-gradient(circle at 18% 18%, rgba(27, 84, 63, 0.14), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(245, 176, 78, 0.08), transparent 22%),
    radial-gradient(circle at 50% 56%, rgba(13, 35, 28, 0.18), transparent 38%);
}

.home-page__atmosphere::before {
  content: none;
}

@media (max-width: 760px) {
  body[data-ui-variant="premium"]::before {
    background-image: url("/images/premium/felt_bg_mobile_1440x3200.png");
    background-position: center top;
    opacity: 0.84;
    filter: saturate(0.74) brightness(0.4) blur(3px);
    transform: scale(1.02);
  }
}

/* Premium interior-route system */

.premium-route-page {
  display: grid;
  gap: 20px;
  padding: 16px 0 0;
}

.premium-route-page .section {
  padding-block: 0;
}

.premium-route-board {
  padding-block: 42px;
}

.premium-route-hero__grid,
.premium-route-section--split,
.premium-route-close__grid,
.premium-waitlist-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 20px;
  align-items: stretch;
}

.premium-route-hero__copy,
.premium-route-section__copy,
.premium-route-close__copy,
.premium-waitlist-page__intro {
  display: grid;
  align-content: start;
  gap: 14px;
}

.premium-route-hero__eyebrow,
.premium-route-close__eyebrow {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-route-hero__title,
.premium-route-close__title,
.premium-route-section__title {
  color: #f3dc9f;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(2.7rem, 4.9vw, 4.45rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0;
}

.premium-route-close__title,
.premium-route-section__title {
  font-size: clamp(1.95rem, 3.3vw, 3.05rem);
}

.premium-route-hero__description,
.premium-route-close__description {
  max-width: 38rem;
  color: rgba(241, 231, 208, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.premium-route-hero__actions,
.premium-route-close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.premium-route-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.premium-route-hero__ambient-image {
  object-position: center 26%;
  opacity: 0.72;
  filter: saturate(1.02) brightness(0.66);
}

.premium-route-hero__veil {
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.86) 0%, rgba(11, 10, 9, 0.58) 34%, rgba(11, 10, 9, 0.18) 60%, rgba(11, 10, 9, 0.72) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.08) 34%, rgba(11, 10, 9, 0.42));
}

.premium-route-hero__panel,
.premium-route-close__panel {
  display: grid;
  gap: 10px;
}

.premium-route-signal-list {
  display: grid;
  gap: 10px;
}

.premium-route-signal-card,
.premium-route-card,
.premium-faq-card,
.premium-route-close__point {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(17, 15, 13, 0.82);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 243, 211, 0.04);
}

.premium-route-signal-card__eyebrow,
.premium-route-card__eyebrow {
  color: rgba(246, 223, 154, 0.84);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.premium-route-signal-card h3,
.premium-route-card h3,
.premium-faq-card h3 {
  margin: 0;
  color: rgba(247, 232, 180, 0.96);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.16;
}

.premium-route-signal-card p,
.premium-route-card p,
.premium-faq-card p {
  margin: 0;
  color: rgba(241, 231, 208, 0.78);
  font-size: 0.96rem;
  line-height: 1.54;
}

.premium-route-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.premium-route-card-grid,
.premium-faq-grid,
.premium-region-grid {
  display: grid;
  gap: 12px;
}

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

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

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

.premium-route-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding-top: 4px;
}

.premium-route-link-list a {
  color: rgba(246, 223, 154, 0.88);
  font-weight: 600;
}

.premium-route-link-list a:hover {
  color: #f7df9c;
}

.premium-route-close__ambient-image {
  opacity: 0.72;
  filter: saturate(1.02) brightness(0.7);
}

.premium-route-close__veil {
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.72), rgba(11, 10, 9, 0.16) 44%, rgba(11, 10, 9, 0.72)),
    linear-gradient(180deg, rgba(11, 10, 9, 0.18), rgba(11, 10, 9, 0.72));
}

.premium-route-close__points {
  display: grid;
  gap: 8px;
}

.premium-waitlist-page__form,
.premium-waitlist-page__intro {
  min-width: 0;
}

.premium-waitlist-page__form .waitlist-form {
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    radial-gradient(circle at top right, rgba(183, 146, 47, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(17, 15, 13, 0.86);
}

.premium-waitlist-page__form .waitlist-form h3 {
  color: #f3dc9f;
}

.premium-waitlist-page__form .waitlist-form label,
.premium-waitlist-page__form .waitlist-form legend {
  color: rgba(245, 238, 223, 0.9);
}

.premium-waitlist-page__form .waitlist-form .input,
.premium-waitlist-page__form .waitlist-form .select,
.premium-waitlist-page__form .role-option {
  background: rgba(15, 13, 11, 0.78);
  border-color: rgba(183, 146, 47, 0.14);
}

.premium-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  gap: 18px;
}

.premium-blog-feature {
  position: relative;
  overflow: hidden;
  min-height: 396px;
  border-radius: 30px;
  border: 1px solid rgba(183, 146, 47, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(17, 15, 13, 0.9);
}

.premium-blog-feature__media,
.premium-blog-feature__veil {
  position: absolute;
  inset: 0;
}

.premium-blog-feature__image {
  object-fit: cover;
  object-position: center;
  opacity: 0.84;
  filter: saturate(1.02) brightness(0.72);
}

.premium-blog-feature__veil {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.78)),
    linear-gradient(90deg, rgba(11, 10, 9, 0.74), rgba(11, 10, 9, 0.12) 52%, rgba(11, 10, 9, 0.5));
}

.premium-blog-feature__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 100%;
  padding: 24px;
}

.premium-blog-feature__content h3 {
  margin: 0;
  color: #f3dc9f;
  font-size: clamp(1.7rem, 2.35vw, 2.35rem);
  line-height: 0.98;
}

.premium-blog-feature__content p {
  margin: 0;
  max-width: 34rem;
  color: rgba(241, 231, 208, 0.82);
}

.premium-blog-list {
  display: grid;
  gap: 14px;
}

.premium-article-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(183, 146, 47, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(17, 15, 13, 0.88);
}

.premium-article-body {
  color: rgba(241, 231, 208, 0.84);
}

.premium-article-body h1,
.premium-article-body h2,
.premium-article-body h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.premium-article-body p,
.premium-article-body li {
  color: rgba(241, 231, 208, 0.82);
  line-height: 1.74;
}

.premium-article-body a {
  color: #f4d58d;
}

.premium-article-body blockquote {
  margin: 18px 0;
  padding-left: 18px;
  border-left: 2px solid rgba(183, 146, 47, 0.3);
  color: rgba(241, 231, 208, 0.72);
}

@media (max-width: 1180px) {
  .premium-route-hero__grid,
  .premium-route-section--split,
  .premium-route-close__grid,
  .premium-waitlist-page,
  .premium-blog-grid {
    grid-template-columns: 1fr;
  }

  .premium-route-card-grid--four,
  .premium-route-card-grid--three,
  .premium-region-grid,
  .premium-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .premium-route-page {
    gap: 16px;
    padding-top: 10px;
  }

  .premium-route-board {
    padding-block: 34px;
  }

  .premium-route-hero__title,
  .premium-route-close__title,
  .premium-route-section__title {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .premium-route-hero__actions,
  .premium-route-close__actions {
    gap: 10px;
  }

  .premium-route-signal-card,
  .premium-route-card,
  .premium-faq-card,
  .premium-route-close__point,
  .premium-article-shell {
    padding: 14px;
  }

  .premium-route-card-grid--four,
  .premium-route-card-grid--three,
  .premium-route-card-grid--two,
  .premium-region-grid,
  .premium-faq-grid {
    grid-template-columns: 1fr;
  }

  .premium-waitlist-page__form .waitlist-form {
    padding: 18px;
  }

  .premium-blog-feature {
    min-height: 320px;
  }

  .premium-blog-feature__content {
    padding: 18px;
  }
}

/* Final premium-site pass: force the mockup palette and finish longform/legal surfaces. */

body[data-ui-variant="premium"] {
  --bg: #0b0a09;
  --bg-2: #14110f;
  --felt: #232621;
  --surface-0: #14110f;
  --surface-1: #1b1815;
  --surface-2: #23211d;
  --surface-3: #2d2a25;
  --surface-board: #100e0c;
  --surface-plaque: #15120f;
  --surface-editorial: #16120f;
  --surface-utility: #1a1613;
  --card: rgba(17, 15, 13, 0.8);
  --card-soft: rgba(22, 19, 16, 0.84);
  --card-elevated: rgba(14, 12, 11, 0.9);
  --border: rgba(183, 146, 47, 0.18);
  --border-strong: rgba(183, 146, 47, 0.4);
  --metal-bronze: #7a6649;
  --metal-gold-soft: #e3c260;
  --accent: #e3c260;
  --accent-2: #7a6649;
  --accent-3: #594b39;
  --text: #f1e7d0;
  --body-copy: rgba(241, 231, 208, 0.84);
  --muted: #b7ab96;
  --heading: #e3c260;
  --success: #73977d;
  --warning: #b7922f;
  --danger: #b26b56;
  --info: #7a6649;
  --depth-gradient: linear-gradient(180deg, #0b0a09 0%, #14110f 54%, #232621 100%);
  --card-sheen: linear-gradient(180deg, rgba(227, 194, 96, 0.1) 0%, rgba(17, 15, 13, 0) 82%);
  --board-ember: radial-gradient(circle at 50% 40%, rgba(183, 146, 47, 0.16), rgba(17, 15, 13, 0.08), transparent 72%);
  --accent-glow: radial-gradient(closest-side, rgba(183, 146, 47, 0.28), rgba(52, 59, 51, 0.14), transparent);
  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-2: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-3: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius-xs: 8px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --blur-frost: 12px;
  --opacity-overlay: 0.72;
  --gold-stroke: #b7922f;
}

body[data-ui-variant="premium"]::before {
  opacity: 0.9;
  filter: saturate(0.74) brightness(0.42);
  transform: scale(1.01);
}

body[data-ui-variant="premium"]::after {
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.84), rgba(11, 10, 9, 0.58) 20%, rgba(11, 10, 9, 0.56) 58%, rgba(11, 10, 9, 0.9) 100%),
    radial-gradient(circle at 20% 12%, rgba(183, 146, 47, 0.07), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(75, 81, 71, 0.08), transparent 22%);
}

.page-shell--premium .page-content {
  padding-bottom: 72px;
}

.page-shell--premium .page-content > * {
  position: relative;
  z-index: 1;
}

.premium-route-list {
  margin: 0;
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.premium-route-list li {
  color: rgba(241, 231, 208, 0.8);
  line-height: 1.68;
}

.premium-article-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.premium-article-sidebar {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 94px;
}

.premium-article-nav {
  padding: 18px 18px 16px;
}

.premium-article-nav ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.premium-article-nav li {
  margin: 0;
}

.premium-article-shell {
  max-width: none;
}

.premium-article-shell__title {
  margin: 8px 0 8px;
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
  line-height: 1;
}

.premium-article-shell__updated {
  margin: 0 0 18px;
  color: rgba(183, 171, 150, 0.82);
  font-size: 0.94rem;
}

.premium-article-body > * + * {
  margin-top: 14px;
}

.premium-article-body ul {
  padding-left: 20px;
}

.premium-article-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  color: #f2db9a;
}

@media (max-width: 1180px) {
  .premium-article-layout {
    grid-template-columns: 1fr;
  }

  .premium-article-sidebar {
    position: static;
    order: 2;
  }
}
