:root {
  color-scheme: dark;
  --obsidian: #040507;
  --ink: #0a0b0f;
  --smoke: #101116;
  --slate: #1a1b21;
  --glass: rgba(29, 31, 39, 0.58);
  --glass-strong: rgba(29, 31, 39, 0.82);
  --glass-soft: rgba(255, 255, 255, 0.06);
  --linen: #f6f0e8;
  --muted: rgba(246, 240, 232, 0.72);
  --faint: rgba(246, 240, 232, 0.5);
  --gold: #d9bb73;
  --gold-2: #f2dc9b;
  --wine: #9b3658;
  --jade: #53a58e;
  --blue: #8da8cf;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.26);
  --hairline: rgba(255, 255, 255, 0.08);
  --radius: 8px;
  --radius-control: 8px;
  --control-height: 44px;
  --max: 1180px;
  --tahoe-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.038)), rgba(18, 19, 25, 0.76);
  --tahoe-surface-raised: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.052)), rgba(25, 27, 34, 0.84);
  --tahoe-control: linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.038)), rgba(10, 11, 15, 0.86);
  --tahoe-control-hover: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.052)), rgba(255, 255, 255, 0.07);
  --tahoe-highlight: rgba(255, 255, 255, 0.18);
  --tahoe-focus: rgba(242, 220, 155, 0.44);
  --tahoe-blur: 28px;
  --shadow-soft: 0 22px 80px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --shadow-hard: 0 34px 120px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--obsidian);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--linen);
  background:
    linear-gradient(140deg, rgba(217, 187, 115, 0.14), transparent 28%),
    linear-gradient(220deg, rgba(155, 54, 88, 0.09), transparent 32%),
    linear-gradient(20deg, rgba(83, 165, 142, 0.055), transparent 34%),
    linear-gradient(180deg, #06070a, #0c0d12 42%, #07080b);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 20%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.08), transparent 44%);
  mix-blend-mode: screen;
  opacity: 0.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--linen);
  background: rgba(217, 187, 115, 0.28);
}

:focus-visible {
  outline: 2px solid var(--tahoe-focus);
  outline-offset: 3px;
}

button:disabled,
.button[aria-disabled="true"],
.button.disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 14px;
  left: max(16px, env(safe-area-inset-left));
  right: max(16px, env(safe-area-inset-right));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tahoe-surface-raised);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
}

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

.brand img {
  width: 220px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  margin-left: 0;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

nav a,
.header-action {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

nav a:hover {
  color: var(--linen);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.header-action {
  color: #171107;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 10px 28px rgba(217, 187, 115, 0.18);
}

.header-action:hover,
.button:hover,
.provider-row button:hover {
  transform: translateY(-1px);
}

main {
  position: relative;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(92vh, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(292px, 380px);
  gap: 48px;
  align-items: end;
  padding: 132px clamp(22px, 6vw, 84px) 74px;
  background-image: url("assets/hero-lounge.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.72) 48%, rgba(5, 6, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.02), rgba(5, 6, 8, 0.92)),
    linear-gradient(135deg, rgba(217, 187, 115, 0.24), transparent 34%),
    linear-gradient(20deg, rgba(155, 54, 88, 0.14), transparent 42%);
}

.hero-content,
.hero-intel {
  position: relative;
  min-width: 0;
}

.hero-content {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, "Segoe UI", sans-serif;
  font-size: 96px;
  font-weight: 820;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 54px;
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: 0;
}

h4 {
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 26px;
  color: rgba(247, 241, 232, 0.86);
  font-size: 22px;
  line-height: 1.36;
}

.hero-actions,
.site-footer div,
.dashboard-actions,
.search-row,
.form-row,
.panel-head,
.notice,
.dashboard-top {
  display: flex;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--linen);
  background: var(--tahoe-control-hover);
  box-shadow: inset 0 1px 0 var(--tahoe-highlight), 0 14px 30px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button.primary {
  color: #171107;
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52), 0 18px 48px rgba(217, 187, 115, 0.23);
}

.button.glass {
  color: var(--linen);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
}

.button.danger {
  color: #ffeef3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(155, 54, 88, 0.18);
  border-color: rgba(155, 54, 88, 0.56);
}

.button:hover,
.header-action:hover,
.provider-row button:hover {
  border-color: rgba(255, 255, 255, 0.24);
  filter: brightness(1.04);
}

.button.mini {
  min-height: 36px;
  padding: 8px 11px;
  font-size: 12px;
}

.hero-intel {
  align-self: end;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(13, 14, 18, 0.68);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(34px) saturate(1.55);
  -webkit-backdrop-filter: blur(34px) saturate(1.55);
}

.hero-intel::before {
  content: "";
  height: 30px;
  margin: -4px -4px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 12px 50%, #ff6159 0 5px, transparent 6px),
    radial-gradient(circle at 29px 50%, #ffbd2f 0 5px, transparent 6px),
    radial-gradient(circle at 46px 50%, #28c840 0 5px, transparent 6px);
}

.intel-top,
.intel-line {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.intel-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.intel-top {
  display: grid;
  gap: 2px;
}

.intel-top span,
.intel-line span {
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.intel-top strong {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0;
}

.intel-line strong {
  min-width: 0;
  color: var(--linen);
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}

.command-strip {
  position: relative;
  z-index: 5;
  width: min(var(--max), calc(100% - 44px));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(12, 13, 17, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
}

.command-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 6px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.command-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 187, 115, 0.48);
  background: rgba(217, 187, 115, 0.09);
}

.command-icon {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #171107;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-size: 11px;
  font-weight: 860;
}

.command-item strong,
.command-item small {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.command-item strong {
  color: var(--linen);
  font-weight: 780;
}

.command-item small {
  color: var(--muted);
  font-size: 12px;
}

.story-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(0, 0.86fr);
  gap: 54px;
  align-items: center;
  padding: 112px clamp(22px, 6vw, 84px) 96px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(6, 7, 10, 0.96), rgba(8, 9, 12, 0.86) 46%, rgba(42, 17, 27, 0.78)),
    rgba(8, 9, 12, 0.98);
}

.story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.story-stage,
.story-copy,
.story-rail {
  position: relative;
  z-index: 1;
}

.story-stage {
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(217, 187, 115, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 11, 15, 0.78);
  box-shadow: var(--shadow-hard);
}

.story-stage img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08) brightness(0.72);
}

.story-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 34%, rgba(5, 6, 8, 0.86)),
    radial-gradient(circle at 28% 28%, rgba(217, 187, 115, 0.18), transparent 32%);
}

.story-glass {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(6, 7, 10, 0.64);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
}

.story-glass span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.story-glass strong {
  color: var(--linen);
  font-size: 25px;
  line-height: 1.08;
}

.story-glass small {
  color: var(--muted);
  font-size: 13px;
}

.story-copy {
  max-width: 650px;
  justify-self: end;
}

.story-copy h2 {
  max-width: 610px;
}

.story-copy p:last-of-type {
  color: var(--muted);
  font-size: 19px;
}

.story-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.story-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), 100%);
  margin: 10px auto 0;
}

.story-step {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032)),
    rgba(12, 13, 17, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.story-step span {
  width: fit-content;
  margin-bottom: auto;
  padding: 6px 9px;
  color: var(--gold-2);
  border: 1px solid rgba(217, 187, 115, 0.3);
  border-radius: 999px;
  background: rgba(217, 187, 115, 0.08);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
}

.story-step strong {
  color: var(--linen);
  font-size: 22px;
  line-height: 1.08;
}

.story-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.emotion-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  padding: 108px clamp(22px, 6vw, 84px) 92px;
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(155, 54, 88, 0.12), transparent 40%),
    rgba(8, 9, 12, 0.98);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.emotion-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.emotion-copy,
.emotion-grid {
  position: relative;
  z-index: 1;
}

.emotion-copy h2 {
  max-width: 620px;
}

.emotion-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.emotion-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(210px, 0.76fr) minmax(0, 0.86fr);
  gap: 12px;
  align-items: stretch;
}

.emotion-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(18, 19, 24, 0.74);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px) saturate(1.36);
  -webkit-backdrop-filter: blur(24px) saturate(1.36);
}

.emotion-card span {
  margin-bottom: auto;
  color: var(--gold-2);
  font-weight: 860;
}

.emotion-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
}

.emotion-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.emotion-card.image-card {
  min-height: 390px;
  padding: 0;
  overflow: hidden;
  transform: translateY(-22px);
}

.emotion-card.image-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
}

.band,
.account-shell,
.venue-band {
  position: relative;
  padding: 92px clamp(22px, 6vw, 84px);
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(9, 10, 14, 0.98);
  border-block: 1px solid var(--hairline);
}

.trust-band {
  padding: 86px clamp(22px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
  background:
    linear-gradient(120deg, rgba(217, 187, 115, 0.09), transparent 36%),
    rgba(8, 9, 12, 0.96);
  border-bottom: 1px solid var(--hairline);
}

.trust-copy,
.trust-grid {
  max-width: var(--max);
}

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

.trust-grid article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(17, 19, 25, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px) saturate(1.28);
  -webkit-backdrop-filter: blur(20px) saturate(1.28);
}

.trust-grid article span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold-2);
  font-weight: 860;
}

.trust-grid article strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.trust-grid article p {
  margin-bottom: 0;
  color: var(--muted);
}

.safety-band {
  position: relative;
  padding: 96px clamp(22px, 6vw, 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: stretch;
  background:
    linear-gradient(120deg, rgba(83, 165, 142, 0.105), transparent 34%),
    linear-gradient(250deg, rgba(217, 187, 115, 0.08), transparent 40%),
    rgba(7, 8, 11, 0.98);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.safety-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}

.safety-copy,
.safety-console {
  position: relative;
  z-index: 1;
}

.safety-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
}

.safety-copy h2 {
  max-width: 640px;
}

.safety-copy p:last-of-type {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
}

.safety-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.safety-console {
  min-height: 560px;
  padding: 14px;
  border: 1px solid rgba(83, 165, 142, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.036)),
    rgba(9, 10, 14, 0.78);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(28px) saturate(1.38);
  -webkit-backdrop-filter: blur(28px) saturate(1.38);
}

.safety-console-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -2px -2px 14px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.safety-console-bar strong {
  color: var(--jade);
}

.consent-ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.consent-ladder article,
.safety-signal-grid div {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.028)),
    rgba(12, 13, 17, 0.7);
}

.consent-ladder article {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.consent-ladder span,
.safety-signal-grid span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.consent-ladder strong {
  display: block;
  margin: 34px 0 8px;
  font-size: 20px;
  line-height: 1.05;
}

.consent-ladder p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.safety-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.safety-signal-grid div {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 14px;
}

.safety-signal-grid strong {
  font-size: 18px;
  line-height: 1.1;
}

.safety-signal-grid small {
  color: var(--muted);
  font-size: 12px;
}

.section-grid,
.invite-band {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 62px;
  align-items: start;
}

.section-grid p,
.invite-band p,
.venue-copy p,
.account-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.stat-strip {
  max-width: var(--max);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-strip div,
.product-card,
.policy-list div,
.auth-card,
.panel,
.notice,
.member-result,
.map-list div,
.plan-card,
.invite-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tahoe-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(var(--tahoe-blur)) saturate(1.35);
  -webkit-backdrop-filter: blur(var(--tahoe-blur)) saturate(1.35);
}

.stat-strip div,
.policy-list div {
  min-height: 94px;
  padding: 16px;
}

.stat-strip strong,
.policy-list strong {
  display: block;
  color: var(--linen);
  font-size: 17px;
  font-weight: 760;
}

.stat-strip span,
.policy-list span {
  color: var(--muted);
  font-size: 13px;
}

.access-band {
  position: relative;
  padding: 96px clamp(22px, 6vw, 84px);
  background:
    linear-gradient(125deg, rgba(155, 54, 88, 0.12), transparent 32%),
    linear-gradient(235deg, rgba(217, 187, 115, 0.12), transparent 38%),
    rgba(7, 8, 11, 0.98);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.access-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, black 16%, black 84%, transparent);
}

.access-copy,
.access-tier-grid,
.payment-rail {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
}

.access-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 24px;
}

.access-copy h2 {
  margin-bottom: 0;
  max-width: 760px;
}

.access-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.access-tier {
  min-height: 506px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.036)),
    rgba(17, 19, 25, 0.74);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px) saturate(1.34);
  -webkit-backdrop-filter: blur(24px) saturate(1.34);
}

.access-tier.featured-tier {
  border-color: rgba(217, 187, 115, 0.58);
  background:
    linear-gradient(180deg, rgba(217, 187, 115, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(18, 17, 20, 0.78);
}

.access-tier.circle-tier {
  border-color: rgba(126, 155, 192, 0.5);
}

.tier-kicker {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.access-tier h3 {
  margin: 24px 0 12px;
  font-size: 38px;
}

.access-tier p {
  color: var(--muted);
}

.access-tier ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.access-tier li {
  position: relative;
  min-height: 32px;
  padding-left: 26px;
  color: var(--linen);
  font-size: 14px;
}

.access-tier li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(217, 187, 115, 0.36);
}

.access-tier .button {
  margin-top: auto;
}

.payment-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.payment-rail span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.app-band {
  background:
    linear-gradient(180deg, rgba(9, 10, 14, 0.94), rgba(5, 6, 8, 0.98)),
    var(--ink);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 30px;
}

.product-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  min-height: 264px;
  padding: 20px;
  overflow: hidden;
}

.product-card::before,
.plan-card::before,
.member-result::before,
.map-list div::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

.product-card p,
.plan-card p,
.member-result span,
.map-list span {
  color: var(--muted);
}

.card-number {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--gold-2);
  font-weight: 860;
}

.product-card.wine {
  border-color: rgba(155, 54, 88, 0.58);
}

.product-card.jade {
  border-color: rgba(83, 165, 142, 0.58);
}

.product-card.steel {
  border-color: rgba(126, 155, 192, 0.52);
}

.app-showcase {
  max-width: var(--max);
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.mobile-preview,
.web-preview,
.platform-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.036)),
    rgba(17, 19, 25, 0.74);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px) saturate(1.34);
  -webkit-backdrop-filter: blur(24px) saturate(1.34);
}

.mobile-preview {
  grid-row: span 2;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border-color: rgba(217, 187, 115, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 8, 11, 0.9);
}

.mobile-status,
.mobile-tabbar,
.mobile-member-stack article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mobile-status {
  min-height: 34px;
  color: var(--muted);
  font-size: 12px;
}

.mobile-status strong {
  color: var(--linen);
  font-size: 13px;
}

.mobile-hero-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid rgba(217, 187, 115, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.05), rgba(5, 6, 8, 0.76)),
    url("assets/hero-lounge.png") center / cover;
  overflow: hidden;
}

.mobile-hero-card h3 {
  margin: 16px 0 8px;
  font-size: 28px;
}

.mobile-hero-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.mobile-member-stack {
  display: grid;
  gap: 8px;
}

.mobile-member-stack article {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.member-dot {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #171107;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-size: 12px;
  font-weight: 860;
}

.member-dot.jade {
  color: #04120e;
  background: linear-gradient(180deg, rgba(111, 210, 179, 0.96), rgba(83, 165, 142, 0.96));
}

.mobile-member-stack div {
  min-width: 0;
  flex: 1;
}

.mobile-member-stack strong,
.mobile-member-stack small {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mobile-member-stack small {
  color: var(--muted);
}

.mobile-tabbar {
  margin-top: auto;
  min-height: 52px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.mobile-tabbar span {
  flex: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.web-preview {
  min-height: 420px;
  padding: 14px;
}

.web-preview-bar {
  height: 32px;
  margin: -2px -2px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14px 50%, #ff6159 0 5px, transparent 6px),
    radial-gradient(circle at 31px 50%, #ffbd2f 0 5px, transparent 6px),
    radial-gradient(circle at 48px 50%, #28c840 0 5px, transparent 6px);
}

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

.web-panel {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(10, 11, 15, 0.68);
}

.web-panel.wide {
  grid-column: span 2;
}

.web-panel span {
  margin-bottom: auto;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.web-panel strong {
  font-size: 22px;
  line-height: 1.1;
}

.web-panel i {
  height: 7px;
  display: block;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.web-panel i b {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), var(--jade));
}

.platform-strip {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.platform-strip span {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.experience-band {
  position: relative;
  padding: 104px clamp(22px, 6vw, 84px);
  background:
    linear-gradient(130deg, rgba(217, 187, 115, 0.1), transparent 36%),
    linear-gradient(235deg, rgba(126, 155, 192, 0.09), transparent 40%),
    linear-gradient(180deg, rgba(8, 9, 12, 0.98), rgba(6, 7, 10, 1));
  border-block: 1px solid var(--hairline);
  overflow: hidden;
}

.experience-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.experience-shell {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(300px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.experience-copy {
  grid-row: span 2;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(217, 187, 115, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.034)),
    rgba(14, 15, 19, 0.76);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
}

.experience-copy h2 {
  max-width: 640px;
  font-size: 48px;
}

.experience-copy p:last-of-type {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
}

.experience-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.experience-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.flow-step {
  min-height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(18, 19, 25, 0.74);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
}

.flow-step span {
  margin-bottom: auto;
  color: var(--gold-2);
  font-weight: 860;
}

.flow-step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.08;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.flow-step.wine {
  border-color: rgba(155, 54, 88, 0.5);
}

.flow-step.jade {
  border-color: rgba(83, 165, 142, 0.52);
}

.flow-step.steel {
  border-color: rgba(126, 155, 192, 0.5);
}

.experience-map {
  position: relative;
  min-height: 398px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 7, 10, 0.86);
  box-shadow: var(--shadow-hard);
}

.experience-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.05), rgba(5, 6, 8, 0.72)),
    linear-gradient(90deg, rgba(5, 6, 8, 0.74), transparent 52%);
}

.experience-map img {
  width: 100%;
  height: 100%;
  min-height: 398px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.08) brightness(0.75);
}

.room-glass,
.room-readout,
.room-person {
  position: absolute;
  z-index: 2;
}

.room-glass {
  top: 18px;
  left: 18px;
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border: 1px solid rgba(217, 187, 115, 0.34);
  border-radius: var(--radius);
  background: rgba(7, 8, 11, 0.64);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.room-glass span,
.room-readout span {
  color: var(--faint);
  font-size: 12px;
}

.room-glass strong {
  color: var(--linen);
  font-size: 24px;
}

.room-person {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #171107;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 0 0 8px rgba(217, 187, 115, 0.12), 0 18px 44px rgba(0, 0, 0, 0.46);
  font-size: 13px;
  font-weight: 860;
}

.room-person-b,
.room-person-d {
  color: var(--linen);
  background: linear-gradient(180deg, rgba(155, 54, 88, 0.94), rgba(86, 23, 44, 0.96));
}

.room-person-c {
  color: #04120e;
  background: linear-gradient(180deg, rgba(111, 210, 179, 0.96), rgba(83, 165, 142, 0.96));
}

.room-person-a {
  right: 28%;
  top: 26%;
}

.room-person-b {
  right: 16%;
  top: 48%;
}

.room-person-c {
  right: 42%;
  top: 56%;
}

.room-person-d {
  right: 30%;
  bottom: 22%;
}

.room-readout {
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 8, 11, 0.68);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
}

.room-readout div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.room-readout strong {
  color: var(--linen);
  font-size: 24px;
}

.venue-band {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 650px);
  gap: 78px;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(83, 165, 142, 0.1), transparent 34%),
    linear-gradient(180deg, #080b0b, #07080b);
  border-block: 1px solid var(--hairline);
}

.device {
  min-height: 650px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(6, 7, 10, 0.86);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
}

.device-bar {
  height: 32px;
  margin: -2px -2px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14px 50%, #ff6159 0 5px, transparent 6px),
    radial-gradient(circle at 31px 50%, #ffbd2f 0 5px, transparent 6px),
    radial-gradient(circle at 48px 50%, #28c840 0 5px, transparent 6px);
}

.map-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: var(--slate);
}

.map-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.82);
}

.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  color: #15110a;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-size: 12px;
  font-weight: 860;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 0 9px rgba(217, 187, 115, 0.15);
}

.pin-a {
  left: 28%;
  top: 36%;
}

.pin-b {
  right: 24%;
  top: 30%;
  background: linear-gradient(180deg, #79cdb7, var(--jade));
  color: white;
}

.pin-c {
  left: 46%;
  bottom: 24%;
  background: linear-gradient(180deg, #c85277, var(--wine));
  color: white;
}

.device-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.device-row span {
  color: var(--muted);
}

.device-row strong,
.device-row.muted-row strong {
  color: var(--linen);
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.invite-band {
  align-items: center;
}

.invite-form,
.auth-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: var(--control-height);
  color: var(--linen);
  background: var(--tahoe-control);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  padding: 10px 12px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 0 rgba(0, 0, 0, 0.28);
  caret-color: var(--gold-2);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, filter 160ms ease;
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(246, 240, 232, 0.68) 50%),
    linear-gradient(135deg, rgba(246, 240, 232, 0.68) 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.038)),
    rgba(10, 11, 15, 0.86);
  background-position:
    calc(100% - 17px) 50%,
    calc(100% - 12px) 50%,
    0 0;
  background-size:
    5px 5px,
    5px 5px,
    auto;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(246, 240, 232, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 187, 115, 0.64);
  box-shadow: 0 0 0 4px rgba(217, 187, 115, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

input:hover,
select:hover,
textarea:hover {
  filter: brightness(1.04);
}

input[type="checkbox"],
input[type="radio"] {
  width: 17px;
  min-height: 17px;
  height: 17px;
  accent-color: var(--gold);
}

input[type="range"] {
  height: 28px;
  padding: 0;
  accent-color: var(--gold);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--gold-2);
  font-size: 13px;
}

.application-band {
  position: relative;
  padding: 100px clamp(22px, 6vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(155, 54, 88, 0.2), transparent 28%),
    linear-gradient(120deg, rgba(217, 187, 115, 0.115), transparent 36%),
    linear-gradient(180deg, rgba(15, 16, 21, 0.98), rgba(7, 8, 11, 1));
}

.application-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.application-band::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: min(880px, 88vw);
  height: 360px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(217, 187, 115, 0.2), transparent 72%);
  filter: blur(14px);
}

.application-copy,
.application-sequence,
.application-note {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.application-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.58fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 28px;
}

.application-copy h2 {
  max-width: 680px;
}

.application-intro {
  display: grid;
  gap: 18px;
  justify-self: end;
  max-width: 510px;
}

.application-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.application-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.application-sequence {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.application-step {
  position: relative;
  min-height: 245px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(217, 187, 115, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.028)),
    rgba(9, 10, 14, 0.76);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(1.28);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
}

.application-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(83, 165, 142, 0.72), rgba(155, 54, 88, 0.62));
}

.application-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  font-size: 12px;
  font-weight: 920;
}

.application-step strong {
  display: block;
  color: var(--linen);
  font-size: 22px;
  line-height: 1.08;
}

.application-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.application-note {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(83, 165, 142, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(83, 165, 142, 0.12), rgba(217, 187, 115, 0.08)),
    rgba(10, 11, 15, 0.78);
}

.application-note span {
  color: var(--jade);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.application-note strong {
  max-width: 760px;
  color: var(--linen);
  font-size: 18px;
  line-height: 1.35;
}

.account-shell {
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(13, 15, 20, 0.98), rgba(6, 7, 10, 1));
}

.account-copy,
.dashboard {
  max-width: var(--max);
  margin: 0 auto;
}

.account-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.58fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 26px;
}

.runtime-diagnostic {
  max-width: var(--max);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(217, 187, 115, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(11, 12, 16, 0.76);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
}

.runtime-diagnostic[data-state="ok"] {
  border-color: rgba(83, 165, 142, 0.48);
}

.runtime-diagnostic[data-state="warning"] {
  border-color: rgba(242, 220, 155, 0.58);
}

.runtime-diagnostic[data-state="error"] {
  border-color: rgba(155, 54, 88, 0.58);
}

.runtime-pulse {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 7px rgba(217, 187, 115, 0.11), 0 0 28px rgba(217, 187, 115, 0.46);
}

.runtime-diagnostic[data-state="ok"] .runtime-pulse {
  background: var(--jade);
  box-shadow: 0 0 0 7px rgba(83, 165, 142, 0.13), 0 0 28px rgba(83, 165, 142, 0.42);
}

.runtime-diagnostic[data-state="error"] .runtime-pulse {
  background: var(--wine);
  box-shadow: 0 0 0 7px rgba(155, 54, 88, 0.15), 0 0 28px rgba(155, 54, 88, 0.44);
}

.runtime-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.runtime-copy strong {
  font-size: 14px;
  letter-spacing: 0;
}

.runtime-copy span {
  color: var(--muted);
  font-size: 13px;
}

.runtime-copy small {
  color: var(--faint);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.runtime-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.auth-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hidden {
  display: none !important;
}

.dashboard {
  position: relative;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(10, 11, 15, 0.74);
  box-shadow: var(--shadow-hard);
  backdrop-filter: blur(30px) saturate(1.45);
  -webkit-backdrop-filter: blur(30px) saturate(1.45);
}

.dashboard::before {
  content: "";
  display: block;
  height: 32px;
  margin: -4px -4px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 13px 50%, #ff6159 0 5px, transparent 6px),
    radial-gradient(circle at 31px 50%, #ffbd2f 0 5px, transparent 6px),
    radial-gradient(circle at 49px 50%, #28c840 0 5px, transparent 6px);
}

.dashboard-top {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.dashboard-top h2 {
  margin-bottom: 6px;
  font-size: 38px;
}

.dashboard-top p {
  margin-bottom: 0;
  color: var(--muted);
}

.dashboard-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.notice {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 13px;
  border-color: rgba(217, 187, 115, 0.28);
  background:
    linear-gradient(180deg, rgba(217, 187, 115, 0.16), rgba(217, 187, 115, 0.06)),
    rgba(12, 13, 17, 0.72);
}

.notice span {
  flex: 1;
  color: var(--muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(320px, 1.1fr);
  gap: 14px;
}

.panel {
  min-width: 0;
  padding: 18px;
}

.profile-panel,
.subscription-panel,
.preview-panel,
.passport-panel,
.compatibility-panel,
.table-planner-panel,
.itinerary-panel,
.invitation-panel,
.match-queue-panel,
.concierge-panel,
.privacy-panel,
.security-panel {
  min-height: 520px;
}

.discovery-panel,
.map-panel {
  min-height: 430px;
}

.panel-head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.panel-head h3,
.panel-head .eyebrow {
  margin-bottom: 0;
}

.meter {
  width: 116px;
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-2), var(--jade));
  transition: width 220ms ease;
}

.status-pill {
  max-width: 210px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 7px 10px;
  border: 1px solid rgba(217, 187, 115, 0.38);
  border-radius: var(--radius);
  color: var(--gold-2);
  background: rgba(217, 187, 115, 0.08);
  font-size: 12px;
  font-weight: 780;
}

.profile-form,
.plan-grid,
.map-list,
.results-grid {
  display: grid;
  gap: 10px;
}

.profile-form {
  gap: 12px;
}

.member-preview {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(217, 187, 115, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(8, 9, 12, 0.84);
}

.preview-orb {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #171107;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 18px 44px rgba(217, 187, 115, 0.18);
  font-size: 25px;
  font-weight: 860;
}

.member-preview strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
}

.member-preview span,
.member-preview p {
  color: var(--muted);
}

.preview-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-interests span,
.check-row {
  display: inline-flex;
  align-items: center;
}

.preview-interests span {
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(217, 187, 115, 0.24);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(217, 187, 115, 0.08);
  font-size: 12px;
  font-weight: 760;
}

.compatibility-panel {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    radial-gradient(circle at 12% 14%, rgba(217, 187, 115, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(9, 10, 14, 0.78);
}

.compatibility-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1.18fr);
  gap: 14px;
  align-items: stretch;
}

.compatibility-form {
  display: grid;
  gap: 12px;
}

.compatibility-output {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(217, 187, 115, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.16), transparent 34%),
    linear-gradient(225deg, rgba(83, 165, 142, 0.12), transparent 42%),
    rgba(8, 9, 12, 0.84);
}

.compatibility-score {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.compatibility-score span {
  color: var(--gold-2);
  font-size: 46px;
  font-weight: 920;
  line-height: 1;
}

.compatibility-score i {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.compatibility-score b {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-2), var(--jade));
  transition: width 220ms ease;
}

.compatibility-output strong {
  color: var(--linen);
  font-size: 25px;
  line-height: 1.1;
}

.compatibility-output p {
  margin: 0;
  color: var(--muted);
}

.compatibility-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compatibility-signals span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(83, 165, 142, 0.28);
  border-radius: 999px;
  color: #9ee0cc;
  background: rgba(83, 165, 142, 0.08);
  font-size: 12px;
  font-weight: 760;
}

.table-planner-panel {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    radial-gradient(circle at 88% 12%, rgba(83, 165, 142, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.032)),
    rgba(9, 10, 14, 0.78);
}

.table-planner-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(340px, 1.22fr);
  gap: 14px;
  align-items: stretch;
}

.table-planner-form {
  display: grid;
  gap: 12px;
}

.table-plan-output {
  min-height: 310px;
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(260px, 1.08fr);
  gap: 14px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(83, 165, 142, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(83, 165, 142, 0.13), transparent 38%),
    linear-gradient(225deg, rgba(217, 187, 115, 0.13), transparent 42%),
    rgba(8, 9, 12, 0.84);
}

.table-plan-top {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.table-plan-top span {
  display: block;
  color: var(--jade);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.table-plan-top strong {
  color: var(--gold-2);
  font-size: 54px;
  line-height: 1;
}

.table-plan-top p,
.table-plan-brief p {
  margin: 0;
  color: var(--muted);
}

.table-seat-map {
  position: relative;
  min-height: 246px;
  border: 1px solid rgba(217, 187, 115, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at center, rgba(217, 187, 115, 0.2), transparent 54%),
    rgba(255, 255, 255, 0.045);
}

.table-seat-map::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  height: 34%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(217, 187, 115, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(217, 187, 115, 0.16), rgba(217, 187, 115, 0.04)),
    rgba(9, 10, 14, 0.78);
  box-shadow: inset 0 0 34px rgba(217, 187, 115, 0.08);
}

.table-seat {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #15110a;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(217, 187, 115, 0.1);
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.table-seat.host {
  color: white;
  background: linear-gradient(180deg, #77cbb5, var(--jade));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(83, 165, 142, 0.12);
}

.table-seat.connector {
  color: white;
  background: linear-gradient(180deg, #c85277, var(--wine));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32), 0 0 0 8px rgba(155, 54, 88, 0.14);
}

.table-plan-brief {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.table-plan-brief strong {
  color: var(--linen);
  font-size: 16px;
}

.passport-panel {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    radial-gradient(circle at 82% 10%, rgba(217, 187, 115, 0.16), transparent 26%),
    radial-gradient(circle at 18% 78%, rgba(83, 165, 142, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(8, 9, 12, 0.82);
}

.passport-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1.28fr);
  gap: 14px;
  align-items: stretch;
}

.passport-card {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 260px;
  padding: 18px;
  border: 1px solid rgba(217, 187, 115, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.passport-card strong {
  color: var(--linen);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.passport-card p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
}

.passport-score {
  display: grid;
  gap: 10px;
}

.passport-score span {
  color: var(--gold-2);
  font-size: 64px;
  font-weight: 920;
  line-height: 0.95;
}

.passport-score i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.passport-score b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--wine), var(--gold-2), var(--jade));
  transition: width 220ms ease;
}

.passport-checklist {
  display: grid;
  grid-template-columns: repeat(5, minmax(132px, 1fr));
  gap: 10px;
}

.passport-check {
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 146px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.passport-check span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.passport-check strong {
  color: var(--linen);
  font-size: 17px;
  line-height: 1.05;
}

.passport-check small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.passport-check[data-state="ok"] {
  border-color: rgba(83, 165, 142, 0.32);
  background:
    linear-gradient(180deg, rgba(83, 165, 142, 0.14), rgba(83, 165, 142, 0.045)),
    rgba(255, 255, 255, 0.035);
}

.passport-check[data-state="pending"] {
  border-color: rgba(217, 187, 115, 0.22);
}

.itinerary-panel {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    radial-gradient(circle at 18% 12%, rgba(155, 54, 88, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.032)),
    rgba(9, 10, 14, 0.78);
}

.itinerary-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(340px, 1.22fr);
  gap: 14px;
  align-items: stretch;
}

.itinerary-form {
  display: grid;
  gap: 12px;
}

.itinerary-output {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(320px, 1.38fr);
  gap: 14px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(217, 187, 115, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.14), transparent 34%),
    linear-gradient(225deg, rgba(155, 54, 88, 0.13), transparent 42%),
    rgba(8, 9, 12, 0.84);
}

.itinerary-top {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.itinerary-top span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.itinerary-top strong {
  color: var(--linen);
  font-size: 56px;
  line-height: 1;
}

.itinerary-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: itinerary;
}

.itinerary-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  counter-increment: itinerary;
}

.itinerary-timeline li::before {
  content: counter(itinerary, decimal-leading-zero);
  position: absolute;
  right: 10px;
  top: 8px;
  color: rgba(247, 241, 232, 0.16);
  font-size: 28px;
  font-weight: 920;
}

.itinerary-timeline time {
  color: var(--jade);
  font-size: 12px;
  font-weight: 860;
}

.itinerary-timeline strong {
  display: block;
  margin-bottom: 4px;
  color: var(--linen);
  font-size: 16px;
}

.itinerary-timeline span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.itinerary-brief {
  grid-column: 1 / -1;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(83, 165, 142, 0.22);
  border-radius: var(--radius);
  background: rgba(83, 165, 142, 0.065);
}

.itinerary-brief strong {
  color: var(--linen);
  font-size: 16px;
}

.itinerary-brief p {
  margin: 0;
  color: var(--muted);
}

.invitation-panel {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    radial-gradient(circle at 78% 14%, rgba(217, 187, 115, 0.15), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(155, 54, 88, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.032)),
    rgba(8, 9, 12, 0.82);
}

.invitation-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  gap: 14px;
  align-items: stretch;
}

.invitation-form {
  display: grid;
  gap: 12px;
}

.invitation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.invitation-output {
  display: grid;
  grid-template-columns: minmax(170px, 0.52fr) minmax(320px, 1.48fr);
  gap: 14px;
  min-height: 360px;
  padding: 18px;
  border: 1px solid rgba(217, 187, 115, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.15), transparent 38%),
    linear-gradient(225deg, rgba(83, 165, 142, 0.1), transparent 46%),
    rgba(8, 9, 12, 0.86);
}

.invitation-top {
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.invitation-top span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 860;
  text-transform: uppercase;
}

.invitation-top strong {
  color: var(--linen);
  font-size: 54px;
  line-height: 1;
}

.invitation-draft {
  min-height: 210px;
  resize: vertical;
  color: var(--linen);
  font-size: 15px;
  line-height: 1.62;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.invitation-brief-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
}

.invitation-brief-grid span {
  min-height: 84px;
  display: grid;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  line-height: 1.45;
}

.invitation-mail {
  grid-column: 1 / -1;
  justify-self: start;
}

.form-row > * {
  flex: 1;
  min-width: 0;
}

.plan-card {
  position: relative;
  padding: 15px;
}

.plan-card h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.plan-card p {
  margin-bottom: 12px;
  font-size: 14px;
}

.plan-price {
  color: var(--gold-2);
  font-size: 21px;
  font-weight: 860;
}

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

.provider-row button {
  min-height: 36px;
  color: var(--linen);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.provider-row button:hover {
  border-color: rgba(217, 187, 115, 0.58);
  background: rgba(217, 187, 115, 0.1);
}

.plan-card.active-plan {
  border-color: rgba(217, 187, 115, 0.58);
  background:
    linear-gradient(180deg, rgba(217, 187, 115, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(17, 19, 25, 0.78);
}

.plan-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(83, 165, 142, 0.38);
  border-radius: 999px;
  color: #9ee0cc;
  background: rgba(83, 165, 142, 0.09);
  font-size: 11px;
  font-weight: 760;
}

.search-row,
.presence-controls {
  margin-bottom: 14px;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 14px;
}

.filter-row label:first-child {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.filter-row input[type="range"] {
  grid-column: 1 / -1;
  min-height: 24px;
  padding: 0;
  accent-color: var(--gold);
  background: transparent;
  border: 0;
}

.check-row {
  min-height: 44px;
  justify-content: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  white-space: nowrap;
}

.check-row input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--gold);
}

.search-row input,
.presence-controls label {
  flex: 1;
}

.search-row select {
  max-width: 150px;
}

.presence-controls {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1.2fr) auto;
  gap: 10px;
  align-items: end;
}

.presence-controls label {
  min-width: 0;
}

.presence-controls select {
  width: 100%;
}

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

.advanced-filter-panel,
.swipe-shell {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(217, 187, 115, 0.16);
  border-radius: var(--radius);
  background: var(--tahoe-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(var(--tahoe-blur)) saturate(1.32);
  -webkit-backdrop-filter: blur(var(--tahoe-blur)) saturate(1.32);
}

.advanced-filter-head,
.swipe-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.advanced-filter-head div,
.swipe-head div {
  display: grid;
  gap: 3px;
}

.advanced-filter-head strong,
.swipe-head strong {
  color: var(--linen);
  font-size: 18px;
}

.advanced-filter-head span,
.swipe-head span:not(.status-pill) {
  color: var(--muted);
  font-size: 13px;
}

.advanced-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(145px, 1fr));
  gap: 10px;
}

.advanced-filter-grid label {
  min-width: 0;
}

.advanced-filter-grid input,
.advanced-filter-grid select {
  width: 100%;
}

.swipe-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 26% 18%, rgba(217, 187, 115, 0.16), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(155, 54, 88, 0.12), transparent 32%),
    rgba(8, 9, 12, 0.84);
  touch-action: pan-y;
}

.swipe-card,
.swipe-empty {
  position: absolute;
  inset: 12px;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 14, 0.92);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, opacity 180ms ease;
  user-select: none;
}

.swipe-card.dragging {
  transition: none;
}

.swipe-card::after {
  content: attr(data-decision);
  position: absolute;
  right: 18px;
  top: 18px;
  min-width: 74px;
  padding: 8px 10px;
  border: 1px solid rgba(217, 187, 115, 0.28);
  border-radius: var(--radius);
  color: var(--gold-2);
  background: rgba(8, 9, 12, 0.66);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  opacity: var(--decision-opacity, 0);
}

.swipe-photo {
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  color: #171107;
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.9), rgba(83, 165, 142, 0.72)),
    rgba(217, 187, 115, 0.8);
  background-size: cover;
  background-position: center;
  font-size: 74px;
  font-weight: 920;
}

.swipe-copy {
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.swipe-copy h4 {
  margin: 0;
  color: var(--linen);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
}

.swipe-copy p {
  margin: 0;
  color: var(--muted);
}

.swipe-meta,
.swipe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.swipe-meta span,
.swipe-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(217, 187, 115, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(217, 187, 115, 0.06);
  font-size: 12px;
}

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

.swipe-empty {
  grid-template-columns: 1fr;
  align-content: center;
  text-align: center;
}

.swipe-empty strong {
  color: var(--linen);
  font-size: 28px;
}

.swipe-empty p {
  max-width: 48ch;
  margin: 0 auto;
  color: var(--muted);
}

.match-queue-panel {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    radial-gradient(circle at 12% 12%, rgba(83, 165, 142, 0.12), transparent 27%),
    radial-gradient(circle at 86% 22%, rgba(217, 187, 115, 0.16), transparent 29%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.032)),
    rgba(8, 9, 12, 0.82);
}

.match-queue-intro {
  display: grid;
  gap: 5px;
  max-width: 760px;
  margin-bottom: 14px;
}

.match-queue-intro strong {
  color: var(--linen);
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.04;
}

.match-queue-intro p {
  margin: 0;
  color: var(--muted);
}

.match-queue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 10px;
}

.match-queue-card {
  position: relative;
  min-height: 236px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--tahoe-surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(var(--tahoe-blur)) saturate(1.32);
  -webkit-backdrop-filter: blur(var(--tahoe-blur)) saturate(1.32);
  overflow: hidden;
}

.match-queue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 18%, rgba(217, 187, 115, 0.16), transparent 32%);
  pointer-events: none;
}

.match-queue-card > * {
  position: relative;
  z-index: 1;
}

.match-queue-card span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.match-queue-card strong {
  display: block;
  color: var(--linen);
  font-size: 20px;
  line-height: 1.05;
}

.match-queue-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.match-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.match-score b {
  color: var(--gold-2);
  font-size: 30px;
  line-height: 1;
}

.match-score i {
  flex: 1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.match-score i em {
  display: block;
  width: var(--match-score, 70%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--wine), var(--gold-2), var(--jade));
}

.match-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.match-reasons small {
  padding: 5px 7px;
  border: 1px solid rgba(217, 187, 115, 0.19);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(217, 187, 115, 0.06);
  font-size: 11px;
}

.match-queue-card .button {
  width: 100%;
  justify-content: center;
}

.match-queue-card.empty {
  grid-column: 1 / -1;
  min-height: 160px;
}

.member-result,
.map-list div {
  padding: 12px;
}

.member-result strong,
.map-list strong {
  display: block;
  font-weight: 760;
}

.web-map {
  position: relative;
  min-height: 274px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 187, 115, 0.16), transparent 30%),
    linear-gradient(225deg, rgba(83, 165, 142, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(9, 21, 23, 0.94), rgba(8, 8, 11, 0.98));
  isolation: isolate;
}

.map-hud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 10px;
}

.map-hud div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.map-hud span,
.map-hud strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.map-hud span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.map-hud strong {
  color: var(--linen);
  font-size: 13px;
}

.privacy-preset-grid,
.concierge-form,
.security-form {
  display: grid;
  gap: 10px;
}

.privacy-preset-grid button {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--linen);
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.privacy-preset-grid button:hover,
.privacy-preset-grid button.active {
  transform: translateY(-1px);
  border-color: rgba(217, 187, 115, 0.52);
  background: rgba(217, 187, 115, 0.09);
}

.privacy-preset-grid button strong {
  font-size: 15px;
}

.privacy-preset-grid button span {
  color: var(--muted);
  font-size: 13px;
}

.web-map::before,
.web-map::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
}

.web-map::before {
  border: 1px solid rgba(217, 187, 115, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(217, 187, 115, 0.06),
    0 0 0 84px rgba(83, 165, 142, 0.05);
}

.web-map::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 0 72%, transparent 74%);
}

.web-map img {
  width: 100%;
  height: 274px;
  object-fit: cover;
  opacity: 0.22;
  filter: saturate(0.6) contrast(1.12) brightness(0.82);
}

.map-compass,
.map-center,
.map-legend,
.map-meta,
.map-empty {
  position: absolute;
  z-index: 3;
}

.map-compass {
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(8, 9, 11, 0.72);
  font-size: 12px;
  font-weight: 860;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.map-center {
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, #77cbb5, var(--jade));
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(83, 165, 142, 0.15), 0 14px 34px rgba(0, 0, 0, 0.35);
}

.map-center span {
  font-size: 10px;
  font-weight: 860;
  text-transform: uppercase;
}

.map-legend {
  left: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 28px);
}

.map-legend span,
.map-meta,
.map-empty {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(8, 9, 11, 0.68);
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  font-size: 11px;
  font-weight: 760;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
}

.legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

.legend-dot.exact {
  background: var(--wine);
}

.legend-dot.group {
  background: var(--jade);
}

.legend-dot.approximate {
  background: var(--gold);
}

.map-meta {
  top: 14px;
  left: 14px;
  padding: 8px 10px;
}

.map-empty {
  left: 50%;
  top: 50%;
  padding: 10px 12px;
  transform: translate(-50%, calc(-50% + 42px));
}

.map-dot {
  position: absolute;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #15110a;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  font-size: 12px;
  font-weight: 860;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(217, 187, 115, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.map-dot:hover,
.map-dot.active {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42), 0 0 0 12px rgba(217, 187, 115, 0.18);
}

.map-dot.exact,
.map-dot.sameVenueMember {
  color: white;
  background: linear-gradient(180deg, #c85277, var(--wine));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 0 9px rgba(155, 54, 88, 0.22);
}

.map-dot.group {
  color: white;
  background: linear-gradient(180deg, #77cbb5, var(--jade));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 0 9px rgba(83, 165, 142, 0.18);
}

.map-dot.venue {
  border-radius: var(--radius);
}

.map-dot.venue:hover,
.map-dot.venue.active {
  transform: translate(-50%, -50%) scale(1.12);
}

.map-dot.edge::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
}

.map-list {
  margin-top: 10px;
}

.map-list small {
  display: block;
  margin-top: 5px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 760;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(22px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--hairline);
  background: rgba(5, 6, 8, 0.72);
}

.site-footer img {
  width: 210px;
}

.support-page {
  background: var(--ink);
}

.support-main {
  min-height: 100vh;
  padding: 138px clamp(22px, 6vw, 84px) 84px;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.62)),
    url("assets/hero-lounge.png") center / cover;
}

.support-hero {
  max-width: 780px;
  margin-bottom: 44px;
}

.support-hero h1 {
  font-size: 78px;
}

.support-hero p {
  color: var(--muted);
  font-size: 19px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--max);
}

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

  .brand img {
    width: 190px;
  }

  nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .story-band,
  .section-grid,
  .invite-band,
  .venue-band,
  .account-copy,
  .access-copy,
  .app-showcase,
  .safety-band,
  .experience-shell,
  .application-copy,
  .runtime-diagnostic,
  .auth-grid,
  .passport-grid,
  .passport-checklist,
  .compatibility-grid,
  .table-planner-grid,
  .table-plan-output,
  .itinerary-grid,
  .itinerary-output,
  .invitation-grid,
  .invitation-output,
  .invitation-brief-grid,
  .emotion-band,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92vh;
    height: auto;
    padding-top: 152px;
  }

  .hero-intel,
  .device {
    max-width: 430px;
  }

  .product-grid,
  .story-rail,
  .web-preview-grid,
  .platform-strip,
  .safety-signal-grid,
  .access-tier-grid,
  .payment-rail,
  .experience-flow,
  .application-sequence,
  .stat-strip,
  .support-grid,
  .policy-list,
  .results-grid,
  .match-queue-grid,
  .advanced-filter-grid,
  .swipe-card,
  .command-strip,
  .trust-grid,
  .emotion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .emotion-card.image-card {
    min-height: 320px;
    transform: none;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .safety-copy,
  .safety-console {
    min-height: auto;
  }

  .experience-copy {
    grid-row: auto;
    min-height: 460px;
  }

  .platform-strip {
    grid-column: auto;
  }

  .mobile-preview {
    grid-row: auto;
  }

  .runtime-actions {
    justify-content: flex-start;
  }

  .story-copy {
    justify-self: start;
    max-width: 760px;
  }

  .story-stage,
  .story-stage img {
    min-height: 480px;
  }

  .application-intro {
    justify-self: start;
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    left: 14px;
    right: auto;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    overflow: hidden;
  }

  .brand img {
    width: 174px;
  }

  nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
  }

  nav a {
    min-height: 34px;
    min-width: 0;
    padding: 7px 6px;
    font-size: 11px;
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: 50px;
    line-height: 0.98;
  }

  h2,
  .dashboard-top h2,
  .support-hero h1 {
    font-size: 34px;
  }

  h3 {
    font-size: 20px;
  }

  .hero .eyebrow {
    max-width: 34ch;
  }

  .hero {
    min-height: 88vh;
    height: auto;
    grid-template-columns: 1fr;
    padding: 278px 20px 54px;
  }

  .hero-content,
  .hero-intel {
    justify-self: start;
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-copy {
    max-width: 34ch;
    font-size: 18px;
  }

  .intel-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .intel-line strong {
    text-align: left;
  }

  .hero-actions,
  .story-actions,
  .site-footer,
  .dashboard-top,
  .panel-head,
  .notice,
  .form-row,
  .search-row,
  .presence-controls,
  .application-actions,
  .filter-row,
  .map-hud {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .story-actions .button,
  .dashboard-actions .button,
  .notice .button,
  .application-actions .button,
  .search-row select,
  .presence-controls .button {
    width: 100%;
    max-width: none;
  }

  .product-grid,
  .story-rail,
  .web-preview-grid,
  .platform-strip,
  .consent-ladder,
  .safety-signal-grid,
  .access-tier-grid,
  .passport-grid,
  .passport-checklist,
  .compatibility-grid,
  .table-planner-grid,
  .itinerary-grid,
  .itinerary-output,
  .invitation-grid,
  .invitation-output,
  .invitation-brief-grid,
  .payment-rail,
  .experience-flow,
  .application-sequence,
  .stat-strip,
  .support-grid,
  .policy-list,
  .results-grid,
  .match-queue-grid,
  .advanced-filter-grid,
  .swipe-card,
  .provider-row,
  .command-strip,
  .trust-grid,
  .emotion-grid {
    grid-template-columns: 1fr;
  }

  .command-strip {
    width: calc(100% - 40px);
    margin-top: -26px;
  }

  .command-item {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .command-icon {
    width: 34px;
    height: 34px;
  }

  .band,
  .story-band,
  .account-shell,
  .venue-band,
  .trust-band,
  .safety-band,
  .emotion-band,
  .application-band,
  .access-band,
  .experience-band {
    padding: 68px 20px;
  }

  .access-tier {
    min-height: auto;
  }

  .story-stage,
  .story-stage img {
    min-height: 380px;
  }

  .story-step {
    min-height: auto;
  }

  .table-seat-map {
    min-height: 220px;
  }

  .table-seat {
    width: 40px;
    height: 40px;
  }

  .itinerary-timeline li {
    grid-template-columns: 1fr;
  }

  .access-tier h3 {
    font-size: 31px;
  }

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

  .safety-actions .button {
    width: 100%;
    max-width: none;
  }

  .consent-ladder article,
  .safety-signal-grid div,
  .application-step {
    min-height: auto;
  }

  .application-note {
    display: grid;
    justify-content: stretch;
  }

  .mobile-preview {
    min-height: auto;
  }

  .mobile-hero-card {
    min-height: 220px;
  }

  .web-panel,
  .web-panel.wide {
    grid-column: auto;
    min-height: 140px;
  }

  .platform-strip span {
    min-height: 58px;
  }

  .experience-copy {
    min-height: 420px;
    padding: 20px;
  }

  .experience-copy h2 {
    font-size: 34px;
  }

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

  .room-readout {
    grid-template-columns: 1fr;
  }

  .experience-actions .button {
    width: 100%;
    max-width: none;
  }

  .experience-map,
  .experience-map img {
    min-height: 430px;
  }

  .room-readout {
    display: grid;
  }

  .room-readout div {
    min-height: 58px;
  }

  .room-person {
    width: 36px;
    height: 36px;
  }

  .emotion-card,
  .emotion-card.image-card,
  .emotion-card.image-card img {
    min-height: 260px;
  }

  .device {
    min-height: auto;
  }

  .web-map,
  .web-map img {
    min-height: 250px;
    height: 250px;
  }
}
