/*
 * SnagATime marketing site — v0 styles
 * Mirrors the design tokens from frontend/src/styles/tokens.css
 * Mobile-first; no framework.
 */

:root {
  /* Brand palette */
  --teal: #0D6E6E;
  --teal-light: #0F8080;
  --teal-dark: #094F4F;
  --teal-tint: #E6F4F4;
  --gold: #E8A020;
  --gold-light: #F5B842;
  --navy: #1A1F2E;
  --off-white: #F9F8F6;
  --paper: #FFFFFF;
  --surface-raised: #F7F8FA;

  /* Text */
  --ink: #0F172A;
  --ink-muted: #475569;
  --ink-soft: #6B7280;
  --rule: #E2E8F0;

  /* Semantic */
  --success: #2D9B6F;
  --warning: #D97706;
  --error: #DC2626;

  /* Type */
  --display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Type scale */
  --size-hero: clamp(2.5rem, 6vw, 4rem);
  --size-h1: clamp(2rem, 4vw, 3rem);
  --size-h2: 1.75rem;
  --size-h3: 1.375rem;
  --size-body: 1rem;
  --size-label: 0.875rem;
  --size-caption: 0.75rem;
  --size-eyebrow: 0.6875rem;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Layout */
  --container: 1120px;
  --touch-target-min: 44px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure the `hidden` HTML attribute always wins over component-level
   `display: grid/flex/inline-flex` rules. Without this, elements like
   .resource-gate-success (display: grid) and .btn (display: inline-flex)
   render visible even when their `hidden` attribute is set. */
[hidden] {
  display: none !important;
}

body {
  font-family: var(--body);
  font-size: var(--size-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--teal-light);
}

a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Layout ────────────────────────────────────────────────────────── */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--sp-8);
  }
}

section {
  padding: var(--sp-16) 0;
}

@media (min-width: 768px) {
  section {
    padding: var(--sp-20) 0;
  }
}

/* ── Header / nav ──────────────────────────────────────────────────── */

.site-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background-color: rgba(249, 248, 246, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .nav {
    padding: var(--sp-5) var(--sp-8);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-logo img {
  height: clamp(38px, 4vw, 54px);
  width: auto;
}

/* Mobile nav: swap the SnagATime wordmark for the standalone S icon,
   stop link labels from wrapping, and hide "Find a place" (the
   "Search nearby" CTA covers the same intent more prominently). */
.nav-logo-mark { display: none; }

@media (max-width: 767px) {
  .nav-logo-full { display: none; }
  .nav-logo-mark {
    display: inline-block;
    height: 36px;
    width: auto;
  }
  .nav-links a {
    white-space: nowrap;
  }
  .nav-find-li {
    display: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
  font-size: var(--size-label);
  font-weight: 500;
}

@media (min-width: 768px) {
  .nav-links {
    gap: var(--sp-6);
    font-size: var(--size-body);
  }
}

.nav-links a {
  color: var(--ink);
  padding: var(--sp-2) var(--sp-1);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--teal);
  color: var(--paper);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: var(--size-label);
  white-space: nowrap;
  transition: background 0.15s ease;
}

.nav-cta:hover {
  background: var(--teal-light);
  color: var(--paper);
}

.nav-links a.nav-cta {
  color: var(--paper);
}

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
  padding: var(--sp-16) 0 var(--sp-12);
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 160, 32, 0.06), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(13, 110, 110, 0.08), transparent 55%),
    var(--off-white);
}

.hero-operator {
  background:
    radial-gradient(circle at 85% 18%, rgba(232, 160, 32, 0.1), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(13, 110, 110, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0)),
    var(--off-white);
}

@media (min-width: 768px) {
  .hero {
    padding: var(--sp-24) 0 var(--sp-16);
  }
}

.hero-shell {
  display: grid;
  gap: var(--sp-8);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: var(--sp-10);
    align-items: center;
  }
}

.hero-copy {
  min-width: 0;
}

.hero-search-priority {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--body);
  font-size: var(--size-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-6);
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--teal);
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--size-hero);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: var(--sp-5);
}

.hero h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero-lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: var(--sp-8);
}

@media (min-width: 768px) {
  .hero-lede {
    font-size: 1.25rem;
  }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-2);
}

.hero-panel {
  position: relative;
  padding: var(--sp-6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(13, 110, 110, 0.14);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 110, 110, 0.06), transparent 45%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
}

.hero-panel-card {
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.hero-panel-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  color: var(--gold);
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  color: var(--ink);
}

.hero-panel-card p {
  color: var(--ink-muted);
  font-size: 0.975rem;
}

.hero-panel-metrics {
  display: grid;
  gap: var(--sp-3);
}

.hero-discovery .hero-panel,
.hero-find-search .hero-panel {
  align-self: start;
}

.discovery-launch {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5);
  margin-bottom: var(--sp-3);
  background:
    radial-gradient(circle at top right, rgba(232, 160, 32, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 244, 0.78));
  border: 1px solid rgba(13, 110, 110, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(26, 31, 46, 0.08);
}

.discovery-launch-priority {
  padding: var(--sp-4);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.discovery-launch-find {
  margin-bottom: var(--sp-5);
}

.discovery-launch-rail {
  margin-bottom: 0;
}

.discovery-form-row {
  display: grid;
  gap: var(--sp-4);
}

.discovery-field {
  display: grid;
  gap: 0;
}

.discovery-label {
  color: var(--ink);
  font-size: var(--size-label);
  font-weight: 700;
}

.discovery-select,
.discovery-input,
.results-sort-select,
.results-filter-select select {
  width: 100%;
  min-height: 56px;
  padding: 0 var(--sp-4);
  border: 1px solid rgba(13, 110, 110, 0.16);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.discovery-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3.5rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal) 50%),
    linear-gradient(135deg, var(--teal) 50%, transparent 50%),
    linear-gradient(180deg, rgba(13, 110, 110, 0.1), rgba(13, 110, 110, 0.02));
  background-position:
    calc(100% - 26px) calc(50% - 3px),
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 54px) 50%;
  background-size:
    7px 7px,
    7px 7px,
    1px 60%;
  background-repeat: no-repeat;
}

.discovery-input {
  font-family: var(--body);
  font-weight: 500;
}

.discovery-select:focus,
.discovery-input:focus,
.results-sort-select:focus,
.results-filter-select select:focus {
  outline: 3px solid rgba(13, 110, 110, 0.12);
  border-color: var(--teal);
}

.discovery-submit {
  width: 100%;
  justify-content: center;
}

.hero-cta-row-secondary {
  margin-top: 0;
}

/* Hero sport chips (player-discovery row under the search bar) */
.hero-sport-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.hero-sport-chips-label {
  font-size: var(--size-label);
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-sport-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: var(--size-label);
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  min-height: var(--touch-target-min);
}

.hero-sport-chip:hover,
.hero-sport-chip:focus-visible {
  border-color: var(--teal);
  color: var(--teal-dark);
  background: var(--teal-tint);
}

.hero-sport-chip.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.hero-sport-chip.is-active:hover,
.hero-sport-chip.is-active:focus-visible {
  background: var(--teal-dark);
  color: #fff;
}

/* Hero secondary link (single operator hand-off, replaces the
   former two-button secondary CTA row) */
.hero-secondary-link {
  display: inline-block;
  margin-top: var(--sp-5);
  font-size: var(--size-label);
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.hero-secondary-link:hover,
.hero-secondary-link:focus-visible {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.find-search-rail-section {
  padding: var(--sp-10) 0 var(--sp-4);
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 160, 32, 0.06), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(13, 110, 110, 0.08), transparent 55%),
    var(--off-white);
}

.find-search-rail {
  display: grid;
  gap: var(--sp-5);
  align-items: end;
}

.find-search-copy .hero-eyebrow {
  margin-bottom: var(--sp-3);
}

.find-search-copy h1 {
  max-width: none;
  margin-bottom: var(--sp-3);
}

.find-search-copy .hero-lede {
  margin-bottom: 0;
  max-width: 42rem;
}

@media (min-width: 900px) {
  .discovery-form-row {
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr) auto;
    align-items: center;
  }

  .discovery-submit {
    width: auto;
    min-width: 140px;
  }
}

@media (min-width: 1024px) {
  .find-search-rail {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: var(--sp-8);
  }
}

@media (min-width: 1024px) {
  .hero-discovery .hero-shell {
    align-items: start;
  }

  .hero-discovery .hero-copy {
    max-width: 44rem;
  }

  .hero-discovery .hero-panel {
    margin-top: var(--sp-2);
  }
}

.metric-chip {
  padding: var(--sp-4);
  background: rgba(230, 244, 244, 0.8);
  border: 1px solid rgba(13, 110, 110, 0.1);
  border-radius: var(--r-md);
}

.metric-chip-value {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-1);
}

.metric-chip-label {
  display: block;
  color: var(--ink-muted);
  font-size: var(--size-label);
}

.operator-hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.product-hero-frame {
  position: relative;
  padding: 16px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 160, 32, 0.16), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(13, 110, 110, 0.12), transparent 40%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 48px rgba(26, 31, 46, 0.12);
}

.product-hero-shell {
  position: relative;
  padding: var(--sp-4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 250, 0.96));
  border: 1px solid rgba(13, 110, 110, 0.16);
  border-radius: 28px;
  overflow: hidden;
}

.product-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: 12px 14px;
  margin-bottom: var(--sp-4);
  border-radius: 18px;
  background: rgba(247, 248, 250, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-hero-kicker,
.callout-tag,
.window-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.14);
}

.window-dots span:first-child { background: rgba(217, 119, 6, 0.55); }
.window-dots span:nth-child(2) { background: rgba(232, 160, 32, 0.64); }
.window-dots span:last-child { background: rgba(45, 155, 111, 0.72); }

.product-window-label {
  flex: 1;
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 600;
}

.product-window-mode {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.operator-console {
  display: grid;
  gap: var(--sp-4);
}

.operator-console-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--sp-4);
}

.operator-console-title {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.38rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.product-hero-live {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  border-radius: var(--r-full);
  background: rgba(230, 244, 244, 0.9);
  color: var(--teal-dark);
  font-size: var(--size-label);
  font-weight: 600;
}

.product-hero-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
}

.operator-console-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-3);
  margin: 0;
}

.summary-pill {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(247, 248, 250, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.summary-value {
  display: block;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.summary-label {
  display: block;
  color: var(--ink-muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.product-hero-sidecards,
.operator-console-side {
  display: grid;
  gap: var(--sp-3);
}

.product-hero-sidecards-inline {
  margin-top: var(--sp-4);
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.operator-console-grid {
  display: grid;
  gap: var(--sp-4);
  align-items: start;
}

.operator-console-main,
.operator-console-side {
  min-width: 0;
}

.hero-app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(13, 110, 110, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-app-button.primary {
  background: var(--teal);
  color: var(--paper);
  border-color: var(--teal);
}

.automation-window-title {
  margin-bottom: var(--sp-3);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kpi-strip {
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.hero-kpi-card {
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(244, 248, 248, 0.95), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(13, 110, 110, 0.12);
}

.hero-kpi-card.idle {
  border-color: rgba(232, 160, 32, 0.22);
  background: linear-gradient(180deg, rgba(255, 249, 238, 0.96), rgba(255, 255, 255, 0.98));
}

.hero-kpi-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kpi-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-kpi-card p {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.operator-preview-strip {
  display: grid;
  gap: var(--sp-3);
  align-items: stretch;
}

.operator-preview-kicker {
  margin-bottom: 8px;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.operator-preview-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.operator-preview-card p {
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.operator-preview-platform {
  margin-top: var(--sp-8);
}

.operator-preview-shot {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: var(--sp-3);
  height: 100%;
}

.preview-shot-frame {
  padding: 14px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 160, 32, 0.14), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(13, 110, 110, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(26, 31, 46, 0.08);
  height: 100%;
}

.preview-shot-frame.accent {
  background:
    radial-gradient(circle at 100% 0%, rgba(13, 110, 110, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.84);
}

.preview-shot-frame.subtle {
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 160, 32, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.84);
}

.preview-shot-window {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-height: 320px;
  height: 100%;
}

.preview-shot-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.preview-shot-title {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.preview-shot-subtitle {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.preview-shot-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(230, 244, 244, 0.92);
  border: 1px solid rgba(13, 110, 110, 0.14);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.preview-shot-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.preview-shot-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 248, 250, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.preview-shot-pill.active {
  background: rgba(230, 244, 244, 0.92);
  border-color: rgba(13, 110, 110, 0.14);
  color: var(--teal-dark);
}

.preview-calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
}

.preview-col-label {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-slot {
  min-height: 56px;
  padding: 10px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.preview-slot.booked {
  background: rgba(230, 244, 244, 0.92);
  color: var(--teal-dark);
}

.preview-slot.hold {
  background: rgba(255, 249, 238, 0.96);
  color: #8a5a0b;
}

.preview-slot.open {
  background: rgba(247, 248, 250, 0.98);
  color: var(--ink-muted);
}

.preview-slot.waitlist {
  background: rgba(240, 246, 255, 0.96);
  color: #244a8f;
}

.preview-access-stack,
.preview-plan-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}

.preview-access-card,
.preview-plan-card {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(247, 248, 250, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.preview-access-card.live {
  background: rgba(230, 244, 244, 0.92);
  border-color: rgba(13, 110, 110, 0.14);
}

.preview-access-card span,
.preview-plan-card span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.preview-access-card strong,
.preview-plan-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.25;
}

.preview-shot-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.preview-shot-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(247, 248, 250, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.operator-preview-caption {
  padding: 0 4px;
}

.operator-preview-caption strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.product-hero-board {
  display: grid;
  gap: var(--sp-3);
}

.hero-snapshot-shell {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(248, 250, 252, 0.92);
  overflow: hidden;
}

.hero-snapshot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(241, 245, 249, 0.95);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-snapshot-grid {
  display: grid;
  gap: 12px;
  padding: 16px;
}

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

.hero-snapshot-card {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-snapshot-card.live {
  border-color: rgba(13, 110, 110, 0.16);
}

.hero-snapshot-card.idle {
  background: rgba(255, 249, 238, 0.9);
  border-color: rgba(232, 160, 32, 0.16);
}

.hero-snapshot-bay {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-snapshot-booking {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-snapshot-state {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(230, 244, 244, 0.84);
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-snapshot-state.recover {
  background: rgba(255, 249, 238, 0.94);
  color: #8a5a0b;
}

.hero-snapshot-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 16px 16px;
}

.hero-snapshot-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 248, 250, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.automation-bay {
  padding: var(--sp-4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.automation-bay-live {
  border-color: rgba(13, 110, 110, 0.16);
}

.automation-bay-idle {
  background: rgba(248, 250, 252, 0.96);
}

.automation-bay-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.automation-bay-name {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.automation-bay-time {
  margin-top: 4px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.automation-bay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--r-full);
  background: rgba(13, 110, 110, 0.12);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.automation-bay-badge.idle {
  background: rgba(232, 160, 32, 0.16);
  color: #8a5a0b;
}

.automation-system-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.automation-system-row span {
  padding: 7px 11px;
  border-radius: var(--r-full);
  background: rgba(230, 244, 244, 0.84);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
}

.automation-note {
  padding: var(--sp-4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.07);
}

.automation-note.compact strong {
  font-size: 0.96rem;
  line-height: 1.3;
  margin-bottom: 0;
}

.automation-note.compact p {
  display: none;
}

.automation-note.accent {
  background: linear-gradient(180deg, rgba(230, 244, 244, 0.98), rgba(255, 255, 255, 0.95));
}

.automation-note strong {
  display: block;
  font-family: var(--display);
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--sp-2) 0;
}

.automation-note p {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .product-hero-frame {
    padding: 20px;
  }

  .product-hero-shell {
    padding: var(--sp-5);
  }

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

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

@media (min-width: 960px) {
  .product-window-mode {
    white-space: nowrap;
  }

  .product-hero-shell {
    padding: var(--sp-6);
  }

  .operator-hero-visual {
    max-width: 560px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.18fr) minmax(500px, 0.74fr);
    gap: var(--sp-8);
    align-items: start;
  }

  .operator-console-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(150px, 0.58fr);
    align-items: start;
  }

  .product-hero-frame {
    padding: 14px;
  }

  .product-hero-shell {
    padding: var(--sp-5);
  }

  .operator-console-title {
    font-size: 1.3rem;
  }

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

  .operator-console-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .product-window-bar,
  .operator-console-head {
    align-items: start;
    flex-direction: column;
  }

  .operator-console-stats {
    grid-template-columns: 1fr;
  }

  .operator-preview-strip {
    grid-template-columns: 1fr;
  }

  .preview-shot-header {
    flex-direction: column;
    align-items: start;
  }

  .hero-snapshot-head {
    flex-direction: column;
    align-items: start;
  }

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

/* ── Buttons ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--touch-target-min);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-sm);
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--size-body);
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--teal-light);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
}

.btn-secondary:hover {
  background: var(--off-white);
  border-color: var(--teal);
  color: var(--teal);
}

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

.btn-ghost:hover {
  color: var(--teal-dark);
}

.btn-ghost::after {
  content: "→";
  margin-left: var(--sp-1);
  transition: transform 0.15s ease;
}

.btn-ghost:hover::after {
  transform: translateX(2px);
}

/* ── State grid (directory teaser) ─────────────────────────────────── */

.section-head {
  margin-bottom: var(--sp-10);
  max-width: 60ch;
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section-head h1,
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--size-h1);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.section-head p {
  font-size: 1.0625rem;
  color: var(--ink-muted);
}

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

.player-use-grid {
  display: grid;
  gap: var(--sp-5);
}

@media (min-width: 900px) {
  .player-use-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.player-use-card {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 244, 244, 0.62));
  border: 1px solid rgba(13, 110, 110, 0.12);
  border-radius: var(--r-lg);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.player-use-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 110, 110, 0.22);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
  color: var(--ink);
}

.player-use-kicker {
  color: var(--teal);
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.player-use-card h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.player-use-card p {
  color: var(--ink-muted);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

@media (min-width: 640px) {
  .state-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .state-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.state-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-5);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  color: var(--ink);
  transition: all 0.15s ease;
}

.state-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.state-card .state-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}

.state-card .state-count {
  font-size: var(--size-label);
  color: var(--ink-soft);
}

.directory-note {
  margin-top: var(--sp-6);
  padding: var(--sp-5) var(--sp-6);
  background: var(--teal-tint);
  border-radius: var(--r-md);
  font-size: var(--size-label);
  color: var(--teal-dark);
  max-width: 70ch;
}

.state-grid-full {
  margin-bottom: 0;
}

.browse-states-section {
  padding-top: var(--sp-8);
}

.browse-state-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.browse-state-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 var(--sp-4);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 110, 110, 0.12);
  color: var(--teal-dark);
  font-size: var(--size-label);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.browse-state-chip:hover {
  border-color: rgba(13, 110, 110, 0.24);
  color: var(--teal);
}

/* ── Directory pages ──────────────────────────────────────────────── */

.hero-directory {
  padding-bottom: var(--sp-16);
}

.hero-state {
  padding-bottom: var(--sp-12);
}

.hero-club {
  padding-bottom: var(--sp-12);
}

@media (min-width: 1024px) {
  .hero-club .hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: start;
  }

  .hero-club .hero-copy {
    padding-top: var(--sp-2);
  }
}

.hero-directory .directory-search-shell {
  margin-top: var(--sp-8);
  margin-bottom: 0;
}

.hero-directory .directory-search-input {
  min-height: 82px;
}

@media (min-width: 900px) {
  .hero-directory .directory-search-shell {
    max-width: 56rem;
  }
}

.directory-search {
  position: relative;
}

.directory-search-shell {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
  background:
    radial-gradient(circle at top right, rgba(232, 160, 32, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 244, 0.82));
  border: 1px solid rgba(13, 110, 110, 0.14);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 40px rgba(26, 31, 46, 0.08);
}

@media (min-width: 900px) {
  .directory-search-shell {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: var(--sp-6);
  }
}

.directory-search-copy {
  min-width: 0;
}

.directory-search-help {
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.directory-search::before {
  content: "Search";
  position: absolute;
  left: var(--sp-5);
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  pointer-events: none;
}

.directory-search {
  margin-bottom: 0;
}

.directory-search-label {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.directory-search-input {
  width: 100%;
  min-height: 76px;
  padding: var(--sp-4) var(--sp-5) var(--sp-4) calc(var(--sp-5) + 74px);
  border: 1px solid rgba(13, 110, 110, 0.18);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 10px 24px rgba(26, 31, 46, 0.08);
}

.directory-search-input:focus {
  outline: 3px solid rgba(13, 110, 110, 0.12);
  border-color: var(--teal);
}

.directory-results-meta {
  margin-bottom: var(--sp-6);
  color: var(--ink-muted);
  font-size: var(--size-label);
  font-weight: 600;
}

.results-shell {
  display: grid;
  gap: var(--sp-6);
  padding: var(--sp-6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84));
  border: 1px solid rgba(13, 110, 110, 0.1);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.results-toolbar {
  display: grid;
  gap: var(--sp-4);
}

.results-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.results-summary {
  color: var(--ink-muted);
  max-width: 58ch;
}

.results-sort {
  display: grid;
  gap: var(--sp-2);
  max-width: 220px;
}

.results-sort-label {
  color: var(--ink);
  font-size: var(--size-label);
  font-weight: 700;
}

.results-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-2);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.results-filter-chip,
.results-filter-select {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 52px;
  padding: 0 var(--sp-4);
  border-radius: var(--r-full);
  background: var(--paper);
  border: 1px solid rgba(13, 110, 110, 0.12);
  color: var(--ink);
  font-size: var(--size-label);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.results-filter-chip input {
  accent-color: var(--teal);
}

.results-filter-select select {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--body);
  font-size: var(--size-label);
}

@media (min-width: 900px) {
  .results-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

.directory-empty {
  margin-top: var(--sp-6);
  padding: var(--sp-5) var(--sp-6);
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.18);
  border-radius: var(--r-md);
  color: #8A5A0B;
}

.state-card-rich {
  min-height: 152px;
  justify-content: flex-start;
}

.state-card-rich .state-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: var(--teal-tint);
  color: var(--teal);
  font-family: var(--mono);
  font-size: var(--size-label);
  font-weight: 700;
  margin-bottom: var(--sp-4);
}

.state-card-rich .state-meta {
  font-size: var(--size-label);
  color: var(--ink-muted);
  margin-top: var(--sp-2);
}

.directory-cities-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(230, 244, 244, 0.25));
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

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

@media (min-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 1024px) {
  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

.city-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-5);
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}

.city-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.city-card-name {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}

.city-card-meta {
  color: var(--ink-muted);
  font-size: var(--size-label);
}

.city-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 76px;
  padding: var(--sp-4) var(--sp-5);
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid rgba(13, 110, 110, 0.12);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(26, 31, 46, 0.06);
}

.city-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 var(--sp-3);
  border-radius: var(--r-full);
  background: var(--teal-tint);
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: var(--size-label);
  font-weight: 700;
  flex-shrink: 0;
}

.city-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.directory-results-section {
  background: rgba(255, 255, 255, 0.45);
  padding: var(--sp-4) 0 var(--sp-16);
}

@media (max-width: 899px) {
  .results-shell {
    padding: var(--sp-5);
    border-radius: 22px;
  }
}

.facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.facility-card {
  position: relative;
  display: grid;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px solid rgba(13, 110, 110, 0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 28px rgba(26, 31, 46, 0.06);
}

.facility-card-linkable {
  cursor: pointer;
}

.facility-card-hitarea {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
}

.facility-card-hitarea:focus-visible {
  outline: 3px solid rgba(13, 110, 110, 0.18);
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .facility-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--sp-8);
  }
}

.facility-card:hover {
  box-shadow: 0 18px 36px rgba(26, 31, 46, 0.1);
  border-color: rgba(13, 110, 110, 0.22);
  transform: translateY(-1px);
}

.facility-card > :not(.facility-card-hitarea) {
  position: relative;
  z-index: 1;
}

.facility-card-main {
  min-width: 0;
  pointer-events: none;
}

.facility-card-main * {
  pointer-events: none;
}

.facility-card-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}

.facility-market,
.facility-booking-badge,
.facility-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--size-caption);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.facility-market {
  background: rgba(13, 110, 110, 0.08);
  color: var(--teal-dark);
}

.facility-booking-badge {
  background: rgba(232, 160, 32, 0.12);
  color: #9a6606;
}

.facility-status-badge-featured {
  background: rgba(26, 31, 46, 0.08);
  color: var(--ink-900);
}

.facility-status-badge-verified {
  background: rgba(13, 110, 110, 0.12);
  color: var(--teal-dark);
}

.facility-card-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.facility-title-wrap {
  min-width: 0;
}

.facility-card h3 {
  font-family: var(--display);
  font-size: clamp(1.375rem, 2vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.facility-address {
  color: var(--ink-muted);
  font-size: 1rem;
}

.facility-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.facility-rating-score {
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ink);
}

.facility-rating-star {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.facility-rating-source {
  color: var(--ink-muted);
}

.facility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
}

.facility-tags li {
  padding: 9px 14px;
  background: #f1f5f9;
  color: var(--ink-muted);
  border-radius: var(--r-full);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.facility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.facility-actions-rail {
  align-items: stretch;
  position: relative;
}

@media (min-width: 900px) {
  .facility-actions-rail {
    flex-direction: column;
    width: 184px;
    flex-wrap: nowrap;
  }

  .facility-actions-rail .btn {
    width: 100%;
    justify-content: center;
  }
}

.btn-small {
  min-height: 46px;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--size-label);
}

.neighbor-section {
  padding-top: 0;
}

.neighbor-card {
  display: grid;
  gap: var(--sp-6);
  padding: var(--sp-8);
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--r-lg);
}

@media (min-width: 900px) {
  .neighbor-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.neighbor-card h2 {
  font-family: var(--display);
  font-size: var(--size-h2);
  margin-bottom: var(--sp-2);
}

.neighbor-card p {
  color: rgba(255, 255, 255, 0.75);
}

.neighbor-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.neighbor-link {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.neighbor-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--paper);
}

.neighbor-link-primary {
  background: var(--gold);
  color: var(--navy);
}

.neighbor-link-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ── How it works ──────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
  }
}

.step {
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal-tint);
  color: var(--teal);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.step h3 {
  font-family: var(--display);
  font-size: var(--size-h3);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--ink);
}

.step p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

/* ── Operator callout (on consumer pages) ──────────────────────────── */

.operator-callout {
  margin-top: var(--sp-12);
  padding: var(--sp-10) var(--sp-8);
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .operator-callout {
    padding: var(--sp-12) var(--sp-16);
  }
}

.operator-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(232, 160, 32, 0.15), transparent 55%);
  pointer-events: none;
}

.operator-callout > * {
  position: relative;
}

.operator-callout .callout-eyebrow {
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.operator-callout h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--size-h1);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: var(--sp-3);
  max-width: 22ch;
}

.operator-callout p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  max-width: 56ch;
  margin-bottom: var(--sp-6);
}

.operator-callout .btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.operator-callout .btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.operator-callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.operator-callout-inline {
  margin-top: 0;
}

.operator-talk-shell {
  display: grid;
  gap: var(--sp-8);
}

@media (min-width: 960px) {
  .operator-talk-shell {
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    align-items: start;
  }
}

.operator-talk-copy h2 {
  max-width: 14ch;
}

.operator-demo-form {
  margin-top: 0;
  padding: var(--sp-6);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.operator-demo-form .entry-field span {
  color: var(--ink);
}

.operator-demo-form .entry-field input,
.operator-demo-form .entry-field select,
.operator-demo-form .entry-field textarea {
  background: var(--paper);
  border-color: var(--rule);
  color: var(--ink);
}

.operator-demo-form .entry-field select {
  background-image:
    linear-gradient(180deg, rgba(230, 244, 244, 0.96), rgba(244, 248, 251, 0.98)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%23E8A020' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 18px 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 1px 2px rgba(26, 31, 46, 0.04);
}

.operator-demo-form .entry-field select:hover {
  background-image:
    linear-gradient(180deg, rgba(222, 241, 241, 1), rgba(240, 247, 249, 1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%23F3BC4B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.operator-demo-form .entry-field input::placeholder,
.operator-demo-form .entry-field textarea::placeholder {
  color: rgba(23, 37, 61, 0.42);
}

.operator-demo-form .entry-field input:focus,
.operator-demo-form .entry-field select:focus,
.operator-demo-form .entry-field textarea:focus {
  outline-color: rgba(232, 160, 32, 0.24);
  border-color: rgba(232, 160, 32, 0.34);
}

.operator-demo-form .entry-field select:focus {
  background-image:
    linear-gradient(180deg, rgba(230, 244, 244, 1), rgba(248, 252, 252, 1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%23E8A020' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.operator-demo-form .entry-form-status {
  border-color: rgba(15, 23, 42, 0.08);
}

.operator-demo-success {
  margin-top: 0;
}

.missing-page-section {
  padding: var(--sp-16) 0;
}

.missing-page-shell {
  display: grid;
  gap: var(--sp-8);
  align-items: stretch;
}

.missing-page-card,
.missing-page-visual {
  padding: var(--sp-8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(13, 110, 110, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.missing-page-card .hero-lede {
  margin-bottom: 0;
}

.missing-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.missing-preview-frame {
  display: grid;
  gap: var(--sp-4);
}

.missing-preview-search {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-height: 56px;
  padding: 0 var(--sp-4);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(13, 110, 110, 0.12);
  color: var(--ink-muted);
  font-weight: 600;
}

.missing-preview-search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  position: relative;
  flex: 0 0 auto;
}

.missing-preview-search-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: var(--teal);
  transform: rotate(45deg);
  border-radius: 999px;
}

.missing-preview-card {
  padding: var(--sp-5);
  border-radius: 20px;
  background: rgba(230, 244, 244, 0.72);
  border: 1px solid rgba(13, 110, 110, 0.1);
}

.missing-preview-card strong {
  display: block;
  margin-top: var(--sp-2);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.missing-preview-card p {
  margin-top: var(--sp-2);
  color: var(--ink-muted);
}

.missing-preview-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(13, 110, 110, 0.12);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.missing-preview-grid {
  display: grid;
  gap: var(--sp-3);
}

.missing-preview-mini {
  padding: var(--sp-4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.missing-preview-mini-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.missing-preview-mini strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
  .missing-page-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: var(--sp-10);
  }

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

/* ── Claim / add listing entry pages ──────────────────────────────── */

.entry-hero {
  padding-bottom: var(--sp-8);
}

.entry-hero-shell {
  display: grid;
  gap: var(--sp-8);
  align-items: start;
}

.entry-hero-points,
.entry-preview-grid {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.entry-point-card,
.entry-preview-card,
.entry-side-card,
.entry-form,
.entry-dashboard-preview {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.entry-point-card {
  padding: var(--sp-5);
}

.entry-point-card strong,
.entry-preview-card h3,
.entry-side-card h2 {
  display: block;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.entry-point-card p,
.entry-side-note,
.entry-preview-card li {
  color: var(--ink-muted);
}

.entry-side-card,
.entry-dashboard-preview {
  padding: var(--sp-6);
}

.entry-side-card h2,
.entry-dashboard-preview h2 {
  margin-bottom: var(--sp-4);
}

/* ── Simplified entry-page layout (used by /add-your-venue and
   /claim-listing) — a single centered hero section + the form
   rendered as a card beneath. Designed to feel direct: the form
   IS the page. */

.entry-page-hero {
  padding-block: var(--sp-12) var(--sp-16);
  background:
    radial-gradient(circle at 50% -10%, rgba(13, 110, 110, 0.06), transparent 50%),
    var(--off-white);
}

.entry-page-header {
  max-width: 36rem;
  margin: 0 auto var(--sp-8);
  text-align: center;
}

.entry-page-header .hero-eyebrow {
  justify-content: center;
}

.entry-page-header h1 {
  margin-bottom: var(--sp-3);
}

.entry-page-lede {
  font-size: var(--size-h3);
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
}

/* /claim-listing only: when opened with `?name=...` (i.e. operator
   clicked Claim from a specific venue page), JS swaps the default
   lede for this prefilled variant. Teal accent signals "we know
   which venue you're claiming." */
.entry-page-lede-prefilled {
  color: var(--ink);
}

.entry-page-lede-prefilled strong {
  color: var(--teal-dark);
  font-weight: 700;
}

/* The form-as-a-page-card variant: drops in-form padding to a
   single consistent rhythm and tightens the legend/fieldset
   visual structure.

   Note: combined-selector specificity (.entry-form.entry-form-page)
   used here to override the later-declared base .entry-form rule's
   `padding: var(--sp-6)` so this variant's generous padding actually
   applies. */
.entry-form.entry-form-page {
  max-width: 44rem;
  margin: 0 auto;
  padding: var(--sp-8);
}

@media (min-width: 768px) {
  .entry-form.entry-form-page {
    padding: var(--sp-10);
  }
}

.entry-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 var(--sp-8);
}

.entry-fieldset:last-of-type {
  margin-bottom: var(--sp-6);
}

.entry-fieldset-legend {
  display: block;
  padding: 0 0 var(--sp-3);
  margin-bottom: var(--sp-4);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border-bottom: 1px solid var(--rule);
  width: 100%;
}

.entry-form-footnote {
  margin: var(--sp-4) 0 0;
  color: var(--ink-soft);
  font-size: var(--size-label);
  text-align: center;
}

/* Trial cross-promo strip — appears at the top of /claim-listing
   and /add-your-venue to surface the trial flow as the natural
   next step. Subtle teal-tint band; doesn't compete with the
   page's primary form CTA. */
.trial-crosspromo-strip {
  background: var(--teal-tint);
  border-bottom: 1px solid rgba(13, 110, 110, 0.12);
  padding: var(--sp-3) 0;
}

.trial-crosspromo-strip p {
  margin: 0;
  text-align: center;
  font-size: var(--size-label);
  color: var(--ink);
}

.trial-crosspromo-strip a {
  font-weight: 600;
  color: var(--teal-dark);
}

/* Compact trial / waitlist form variant */
.entry-form-compact {
  margin-top: var(--sp-5);
}

.entry-form-compact .entry-form-grid {
  display: grid;
  gap: var(--sp-3);
}

.entry-side-footnote {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: var(--size-label);
  line-height: 1.5;
}

.entry-side-footnote a {
  color: var(--teal);
  font-weight: 500;
}

.entry-hero-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--size-h1);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.entry-steps {
  display: grid;
  gap: var(--sp-3);
  padding-left: 1.2rem;
  color: var(--ink-muted);
}

.entry-side-note {
  margin-top: var(--sp-5);
  font-size: 0.95rem;
}

.entry-form-section {
  padding-top: var(--sp-8);
}

.entry-form {
  margin-top: var(--sp-8);
  padding: var(--sp-6);
}

.entry-form-grid {
  display: grid;
  gap: var(--sp-4);
}

.entry-field {
  display: grid;
  gap: var(--sp-2);
}

.entry-field span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.entry-field input,
.entry-field select,
.entry-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.entry-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 52px;
  border-color: rgba(13, 110, 110, 0.18);
  background-image:
    linear-gradient(180deg, rgba(230, 244, 244, 0.96), rgba(244, 248, 251, 0.98)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%230D6E6E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, right 16px center;
  background-size: auto, 18px 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 1px 2px rgba(26, 31, 46, 0.04);
  cursor: pointer;
}

.entry-field select:hover {
  border-color: rgba(13, 110, 110, 0.28);
  background-image:
    linear-gradient(180deg, rgba(222, 241, 241, 1), rgba(240, 247, 249, 1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%23095353' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.entry-field textarea {
  min-height: 132px;
  resize: vertical;
}

.entry-field input:focus,
.entry-field select:focus,
.entry-field textarea:focus {
  outline: 2px solid rgba(13, 110, 110, 0.22);
  outline-offset: 1px;
  border-color: rgba(13, 110, 110, 0.3);
}

.entry-field select:focus {
  background-image:
    linear-gradient(180deg, rgba(230, 244, 244, 1), rgba(248, 252, 252, 1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75 9 11.25l4.5-4.5' stroke='%230D6E6E' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.entry-field-full {
  grid-column: 1 / -1;
}

.entry-checklist {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule);
}

.entry-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: var(--ink-muted);
}

.entry-check input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.entry-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.entry-form-status {
  margin-top: var(--sp-4);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(13, 110, 110, 0.14);
  background: rgba(230, 244, 244, 0.60);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.entry-form-status[data-tone="error"] {
  border-color: rgba(153, 27, 27, 0.18);
  background: rgba(254, 242, 242, 0.92);
  color: #7f1d1d;
}

.entry-form-status[data-tone="success"] {
  border-color: rgba(13, 110, 110, 0.18);
  background: rgba(236, 253, 245, 0.92);
  color: #115e59;
}

.entry-form-status[data-tone="info"] {
  border-color: rgba(13, 110, 110, 0.14);
  background: rgba(239, 246, 255, 0.92);
  color: #1e3a8a;
}

.entry-form-success {
  margin-top: var(--sp-6);
  padding: var(--sp-6);
  border-radius: 22px;
  border: 1px solid rgba(13, 110, 110, 0.12);
  background:
    linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(239, 246, 255, 0.92)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.entry-preview-card {
  padding: var(--sp-5);
}

.entry-preview-card ul {
  display: grid;
  gap: var(--sp-2);
  padding-left: 1.15rem;
}

.entry-preview-grid-two {
  margin-top: var(--sp-5);
}

.entry-claimed-preview {
  margin-top: var(--sp-8);
  padding: var(--sp-4);
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(247, 198, 92, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(241, 248, 251, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.entry-claimed-preview-shell {
  display: grid;
  gap: var(--sp-5);
}

.entry-claimed-sidebar,
.entry-claimed-card,
.entry-claimed-preview-card {
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.entry-claimed-sidebar {
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-5);
}

.entry-claimed-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.entry-claimed-brand img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.entry-claimed-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
}

.entry-claimed-brand small,
.entry-claimed-nav-item span,
.entry-claimed-card-head span,
.entry-claimed-fields label,
.entry-claimed-pricing label,
.entry-claimed-preview-card p {
  color: var(--ink-muted);
}

.entry-claimed-nav {
  display: grid;
  gap: var(--sp-3);
}

.entry-claimed-nav-item {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(246, 250, 252, 0.92);
  display: grid;
  gap: 3px;
}

.entry-claimed-nav-item strong {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.1;
}

.entry-claimed-nav-item.active {
  border-color: rgba(13, 110, 110, 0.16);
  background: rgba(230, 244, 244, 0.78);
}

.entry-claimed-nav-item:not(.active) {
  opacity: 0.72;
}

.entry-claimed-nav-item:not(.active) span {
  font-size: 0.78rem;
}

.entry-claimed-main {
  display: grid;
  gap: var(--sp-5);
}

.entry-claimed-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  align-items: center;
}

.entry-claimed-topbar h3 {
  margin-top: var(--sp-2);
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.entry-claimed-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.entry-claimed-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(13, 110, 110, 0.18);
  background: rgba(230, 244, 244, 0.86);
  color: var(--teal-active);
  font-weight: 700;
}

.entry-claimed-badge.muted {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(246, 250, 252, 0.96);
  color: var(--ink-soft);
}

.entry-claimed-grid,
.entry-claimed-preview-row {
  display: grid;
  gap: var(--sp-4);
}

.entry-claimed-card {
  padding: var(--sp-5);
}

.entry-claimed-card.warm {
  background:
    radial-gradient(circle at top right, rgba(247, 198, 92, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.96);
}

.entry-claimed-card-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.entry-claimed-card-head strong,
.entry-claimed-preview-card strong {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.08;
}

.entry-claimed-fields,
.entry-claimed-pricing {
  display: grid;
  gap: var(--sp-3);
}

.entry-claimed-fields div,
.entry-claimed-pricing div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(246, 250, 252, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.entry-claimed-fields label,
.entry-claimed-pricing label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.entry-claimed-fields span,
.entry-claimed-pricing strong {
  font-size: 1rem;
  color: var(--ink);
}

.entry-claimed-preview-card {
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-3);
}

.entry-claimed-link {
  color: var(--teal);
  font-weight: 700;
}

/* Laptop browser frame around the dashboard preview */
.entry-mockup-frame {
  margin-top: var(--sp-6);
  border-radius: 14px;
  background: #0e1116;
  border: 1px solid #252b35;
  box-shadow: 0 24px 64px rgba(17, 32, 58, 0.18);
  overflow: hidden;
}

.entry-mockup-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #1c2129 0%, #14181f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.entry-mockup-dots {
  display: inline-flex;
  gap: 6px;
}

.entry-mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.entry-mockup-dot.r { background: #ed6a5e; }
.entry-mockup-dot.y { background: #f5bf4f; }
.entry-mockup-dot.g { background: #62c554; }

.entry-mockup-urlbar {
  flex: 1;
  min-height: 24px;
  background: #232a36;
  border-radius: 6px;
  padding: 4px 10px;
  color: #b9c2d2;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.entry-mockup-urlbar::before {
  content: "🔒";
  font-size: 0.7rem;
  opacity: 0.7;
}

.entry-mockup-mode {
  color: #92a0b8;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.entry-mockup-frame .entry-claimed-preview {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: var(--sp-5);
}

/* Consolidated trial-unlock callout (replaces 3 redundant preview cards) */
.entry-claimed-trial-callout {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-5);
  border-radius: 18px;
  border: 1px solid rgba(13, 110, 110, 0.18);
  background: linear-gradient(135deg, rgba(230, 244, 244, 0.7), rgba(247, 198, 92, 0.12));
}

.entry-claimed-trial-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: var(--sp-2);
}

.entry-claimed-trial-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .entry-claimed-trial-callout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

/* Operator dashboard preview — embedded via iframe from
   /operator-mockups/operator-dashboard-mockup.html. The iframe's
   height is set via postMessage from the embedded page. */
.operator-dashboard-embed {
  margin-top: var(--sp-6);
  display: grid;
  gap: var(--sp-2);
}

.operator-dashboard-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(17, 32, 58, 0.18);
  background: #0e1116;
}

.operator-dashboard-embed-caption {
  margin: 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
}

.operator-dashboard-embed-caption a {
  color: var(--teal);
  font-weight: 600;
}

/* "What to expect next" callout — replaces the 5 info-card grid.
   margin-inline: auto centers the 720px-capped callout inside the
   1120px parent .container so it doesn't pin to the left edge on
   wide viewports (Gemini PR #128 review). */
.entry-what-next {
  margin-top: var(--sp-6);
  margin-inline: auto;
  padding: var(--sp-6);
  border-radius: 22px;
  border: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(241, 248, 251, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: var(--sp-3);
  max-width: 720px;
}

.entry-what-next h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.entry-what-next p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.entry-what-next .btn {
  justify-self: start;
  margin-top: var(--sp-2);
}

@media (min-width: 860px) {
  .entry-hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: var(--sp-10);
  }

  .entry-hero-points,
  .entry-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .entry-claimed-preview-shell {
    grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  }

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

  .entry-claimed-preview-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.listing-review-card {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-5) var(--sp-6);
  background: linear-gradient(180deg, rgba(230, 244, 244, 0.56), rgba(255, 255, 255, 0.98));
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.owner-note-section {
  padding-top: var(--sp-4);
  padding-bottom: 0;
}

.listing-owner-note {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.listing-owner-copy {
  display: grid;
  gap: 4px;
}

.listing-owner-copy strong {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
}

.listing-owner-copy span,
.listing-owner-actions,
.listing-owner-actions a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.listing-owner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.listing-owner-actions a {
  color: var(--teal);
  font-weight: 600;
}

.listing-owner-actions a:hover {
  color: var(--teal-light);
}

.listing-review-copy {
  display: grid;
  gap: var(--sp-2);
}

.listing-review-copy .callout-eyebrow {
  margin-bottom: 0;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
}

.listing-review-card h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.listing-review-card p {
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.55;
}

.listing-review-button {
  min-width: 0;
  justify-self: start;
}

@media (min-width: 900px) {
  .listing-review-card {
    grid-template-columns: 1fr auto;
    gap: var(--sp-5);
    padding: var(--sp-5) var(--sp-6);
  }

  .listing-owner-note {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .listing-review-button {
    justify-self: end;
  }
}

.club-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  color: var(--ink-soft);
  font-size: var(--size-label);
}

.club-breadcrumbs span {
  color: var(--ink-soft);
}

.club-address {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  margin-top: var(--sp-2);
}

.club-tags {
  margin-top: var(--sp-5);
}

.facility-rating-large {
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-4);
  font-size: 1.0625rem;
}

.club-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--sp-3);
}

.club-detail-item {
  padding: var(--sp-4);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--surface-soft);
}

.club-detail-item dt {
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}

.club-detail-item dd {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
}

.club-subhead {
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}

.club-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.club-highlights-list li {
  padding: var(--sp-2) var(--sp-3);
  background: var(--teal-tint);
  color: var(--teal-active);
  border-radius: 999px;
  font-size: var(--size-label);
  font-weight: 600;
}

.club-hours-grid {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--surface-soft);
}

.club-hours-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  border-top: 1px solid var(--rule);
}

.club-hours-row:first-child {
  border-top: 0;
}

.club-hours-row dt {
  color: var(--ink-soft);
  font-size: var(--size-label);
  font-weight: 600;
}

.club-hours-row dd {
  color: var(--ink);
  font-size: var(--size-label);
}

.club-hours-row-single {
  grid-template-columns: 1fr;
}

.club-hours-row-single dd {
  text-align: left;
}

.modal-open {
  overflow: hidden;
}

.review-modal[hidden] {
  display: none;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(3px);
}

.review-modal-dialog {
  position: relative;
  width: min(680px, calc(100vw - 32px));
  margin: min(10vh, 72px) auto 0;
  background: var(--paper);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-8);
  z-index: 1;
}

.review-modal-dialog h2 {
  font-family: var(--display);
  font-size: var(--size-h2);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

.review-modal-dialog p {
  color: var(--ink-soft);
  margin-bottom: var(--sp-6);
}

.review-modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--off-white);
  color: var(--ink-soft);
  font-size: 1.5rem;
  cursor: pointer;
}

.review-field {
  display: grid;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.review-field span {
  font-weight: 600;
  color: var(--ink);
}

.review-field input,
.review-field select,
.review-field textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.review-field textarea {
  resize: vertical;
  min-height: 120px;
}

.review-context {
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  padding: var(--sp-4);
  border-radius: 18px;
  background: rgba(246, 250, 252, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.review-context label,
.review-trust-note span,
.review-form-status {
  color: var(--ink-muted);
}

.review-context label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.review-context strong,
.review-trust-note strong {
  color: var(--ink);
}

.review-context span {
  color: var(--ink-soft);
  word-break: break-word;
}

.review-trust-note {
  display: grid;
  gap: 4px;
  margin-bottom: var(--sp-5);
  padding: var(--sp-4);
  border-radius: 18px;
  background: rgba(230, 244, 244, 0.64);
  border: 1px solid rgba(13, 110, 110, 0.10);
}

.review-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.review-form-status {
  margin-top: var(--sp-4);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(13, 110, 110, 0.14);
  background: rgba(239, 246, 255, 0.92);
  line-height: 1.5;
}

.review-form-status[data-tone="success"] {
  border-color: rgba(13, 110, 110, 0.18);
  background: rgba(236, 253, 245, 0.92);
  color: #115e59;
}

.review-form-status[data-tone="info"] {
  color: #1e3a8a;
}

/* ── Pricing ───────────────────────────────────────────────────────── */

#pricing {
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
  }
}

.tier-card {
  padding: var(--sp-8);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
}

.tier-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-md);
  position: relative;
}

.tier-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -12px;
  left: var(--sp-6);
  background: var(--teal);
  color: var(--paper);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
}

.tier-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--size-h3);
  color: var(--ink);
  margin-bottom: var(--sp-1);
}

.tier-tagline {
  font-size: var(--size-label);
  color: var(--ink-soft);
  margin-bottom: var(--sp-5);
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.tier-price .amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.tier-price .period {
  font-size: var(--size-label);
  color: var(--ink-muted);
}

.tier-features {
  list-style: none;
  margin-bottom: var(--sp-8);
  flex: 1;
}

.tier-features li {
  padding: var(--sp-2) 0;
  padding-left: var(--sp-6);
  position: relative;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.tier-card .btn {
  width: 100%;
}

/* ── Features (operator-side) ──────────────────────────────────────── */

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-8);
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature {
  padding: var(--sp-5);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.feature h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: var(--sp-2);
  color: var(--ink);
}

.feature p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (min-width: 900px) {
}

.hero-cta-row-operator {
  align-items: center;
}

.operator-path-grid {
  display: grid;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

@media (min-width: 960px) {
  .operator-path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.operator-path-card {
  display: grid;
  gap: var(--sp-4);
  align-content: start;
  padding: var(--sp-6);
  border-radius: 26px;
  border: 1px solid rgba(13, 110, 110, 0.12);
  background:
    radial-gradient(circle at top right, rgba(232, 160, 32, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.98));
  box-shadow: var(--shadow-sm);
}

.operator-path-card.featured {
  border-color: rgba(232, 160, 32, 0.24);
  box-shadow: 0 20px 44px rgba(26, 31, 46, 0.1);
}

.operator-path-kicker {
  color: var(--teal);
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.operator-path-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.operator-path-card p,
.operator-note-list li {
  color: var(--ink-muted);
}

.operator-talk-copy .operator-note-list li {
  color: rgba(255, 255, 255, 0.78);
}

.operator-path-list,
.operator-note-list {
  list-style: none;
  display: grid;
  gap: var(--sp-3);
}

.operator-path-list li,
.operator-note-list li {
  position: relative;
  padding-left: var(--sp-5);
}

.operator-path-list li::before,
.operator-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.operator-path-card .btn {
  margin-top: var(--sp-2);
}

@media (min-width: 900px) {
}

.operator-mockup-grid {
  display: grid;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
  align-items: start;
}

@media (min-width: 960px) {
  .operator-mockup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.operator-mockup-frame {
  overflow: visible;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  align-self: start;
}

.operator-mockup-frame iframe {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  height: auto;
  pointer-events: none;
}

@media (min-width: 960px) {
}

.operator-mockup-frame-phone {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

.operator-mockup-frame-phone-duo {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}

.operator-mockup-frame-laptop {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.operator-mockup-frame-tablet {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}


.operator-support-line {
  margin-top: var(--sp-8);
  text-align: center;
  color: var(--ink-muted);
  font-size: var(--size-label);
}

.operator-walkthrough {
  background: var(--paper);
}

.product-story-grid {
  display: grid;
  gap: var(--sp-8);
}

.product-story-card {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  padding: var(--sp-6);
  border: 1px solid rgba(13, 110, 110, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 160, 32, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.98));
  box-shadow: var(--shadow-sm);
}

@media (min-width: 960px) {
  .product-story-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: var(--sp-8);
    padding: var(--sp-8);
  }

  .product-story-card.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .product-story-card.reverse .product-story-copy {
    order: 2;
  }

  .product-story-card.reverse .product-screen {
    order: 1;
  }
}

.product-story-kicker {
  color: var(--teal);
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.product-story-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.product-story-copy p {
  color: var(--ink-muted);
  font-size: 1.04rem;
  line-height: 1.6;
  margin-bottom: var(--sp-5);
  max-width: 54ch;
}

.product-story-list {
  list-style: none;
  display: grid;
  gap: var(--sp-3);
}

.product-story-list li {
  position: relative;
  padding-left: var(--sp-5);
  color: var(--ink-muted);
}

.product-story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  transform: translateY(-50%);
}

.product-screen {
  padding: var(--sp-5);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(26, 31, 46, 0.98), rgba(19, 24, 37, 0.98));
  box-shadow: 0 24px 40px rgba(26, 31, 46, 0.16);
  color: rgba(248, 250, 252, 0.96);
  min-height: 320px;
}

.screen-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  color: rgba(230, 244, 244, 0.8);
  font-family: var(--mono);
  font-size: var(--size-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.screen-stack {
  display: grid;
  gap: var(--sp-3);
}

.screen-bay-row,
.rule-card {
  padding: var(--sp-4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-bay-row.live {
  background: rgba(13, 110, 110, 0.2);
  border-color: rgba(96, 211, 201, 0.26);
}

.screen-bay-row.idle {
  background: rgba(232, 160, 32, 0.12);
  border-color: rgba(232, 160, 32, 0.18);
}

.screen-bay-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.screen-bay-row strong,
.rule-card-head strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.screen-bay-row p {
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.92rem;
  margin-top: var(--sp-1);
}

.screen-bay-row span,
.rule-card-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 250, 252, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 64px repeat(2, 1fr);
  gap: var(--sp-3);
  align-items: stretch;
}

.calendar-time {
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  align-self: center;
}

.calendar-slot {
  min-height: 76px;
  padding: var(--sp-4);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.calendar-slot.booking {
  background: rgba(13, 110, 110, 0.24);
}

.calendar-slot.member {
  background: rgba(17, 24, 39, 0.12), rgba(13, 110, 110, 0.24);
}

.calendar-slot.upsell {
  background: rgba(232, 160, 32, 0.18);
  color: rgba(255, 245, 220, 0.98);
}

.calendar-slot.muted {
  opacity: 0.34;
}

.rule-card + .rule-card {
  margin-top: var(--sp-4);
}

.rule-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}

.rule-card ul {
  list-style: none;
  display: grid;
  gap: var(--sp-2);
}

.rule-card li {
  position: relative;
  padding-left: var(--sp-4);
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.92rem;
}

.rule-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(232, 160, 32, 0.92);
  transform: translateY(-50%);
}

.rule-card.muted {
  background: rgba(255, 255, 255, 0.04);
}

/* ── Operator page: parity tier + moat bands + promise grid ──────── */

/* Hero flywheel callout (line under the main lede) */
.hero-lede-flywheel {
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-4);
  padding-left: var(--sp-4);
  border-left: 3px solid var(--gold);
}

/* Parity tier — the table-stakes capability row */
.operator-parity-section {
  padding-block: var(--sp-16);
  background: var(--paper);
}

.parity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-10);
}

@media (min-width: 600px) {
  .parity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .parity-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.parity-tile {
  padding: var(--sp-5);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--off-white);
}

.parity-tile-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--size-h3);
  color: var(--teal-dark);
  margin-bottom: var(--sp-2);
}

.parity-tile p {
  color: var(--ink-muted);
  font-size: var(--size-label);
  margin: 0;
}

/* Moat intro (transition section between parity and moat bands) */
.operator-moat-intro {
  padding-block: var(--sp-16) var(--sp-8);
}

/* Moat bands — the 4 differentiators, each a horizontal band */
.operator-moat-band {
  padding-block: var(--sp-16);
}

/* Alternating moat bands get the paper background for visual rhythm */
.operator-moat-band-alt {
  background: var(--paper);
}

/* Directory entry points section (between founder + demo form) */
.operator-directory-entry {
  background: var(--paper);
}

.moat-band-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}

@media (min-width: 900px) {
  .moat-band-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: var(--sp-16);
  }
  .moat-band-shell-reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .moat-band-shell-reverse .moat-band-copy {
    order: 2;
  }
  .moat-band-shell-reverse .moat-band-visual {
    order: 1;
  }
}

.moat-band-copy h2 {
  margin-bottom: var(--sp-4);
}

.moat-band-copy p {
  color: var(--ink-muted);
  margin-bottom: var(--sp-4);
}

.moat-band-copy p strong {
  color: var(--ink);
  font-weight: 600;
}

.moat-band-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0 0;
  display: grid;
  gap: var(--sp-2);
}

.moat-band-list li {
  position: relative;
  padding-left: var(--sp-6);
  color: var(--ink-muted);
  font-size: var(--size-label);
}

.moat-band-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

.moat-band-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.moat-band-secondary-mocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
}

@media (min-width: 900px) {
  .moat-band-secondary-mocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Promise section — the "what we promise every club" trust device */
.operator-promise-section {
  padding-block: var(--sp-16);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  margin-top: var(--sp-10);
}

@media (min-width: 600px) {
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .promise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .promise-card:nth-child(4),
  .promise-card:nth-child(5) {
    grid-column: span 1;
  }
}

.promise-card {
  position: relative;
  padding: var(--sp-5) var(--sp-5) var(--sp-5) calc(var(--sp-5) + var(--sp-8));
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--paper);
}

.promise-card-mark {
  position: absolute;
  left: var(--sp-4);
  top: var(--sp-5);
  width: var(--sp-6);
  height: var(--sp-6);
  border-radius: var(--r-full);
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--size-label);
}

.promise-card-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--size-h3);
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.promise-card p {
  color: var(--ink-muted);
  font-size: var(--size-label);
  margin: 0;
}

/* ── Founder block ─────────────────────────────────────────────────── */

.founder {
  margin-top: var(--sp-12);
  padding: var(--sp-10);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  max-width: 70ch;
  box-shadow: var(--shadow-sm);
}

.founder-eyebrow {
  font-family: var(--mono);
  font-size: var(--size-caption);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.founder h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--size-h2);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}

.founder p {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.founder .signoff {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-5);
}

/* ── Legal pages (terms / privacy / merchant-terms) ────────────────── */

.legal {
  padding: var(--sp-12) 0;
}

.legal-content {
  max-width: 70ch;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: var(--size-h1);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}

.legal .meta {
  font-size: var(--size-label);
  color: var(--ink-soft);
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--rule);
}

.legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--size-h3);
  color: var(--ink);
  margin-top: var(--sp-10);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.legal h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-2);
}

.legal p,
.legal li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.legal ul,
.legal ol {
  margin: var(--sp-3) 0 var(--sp-3) var(--sp-6);
}

.legal a {
  color: var(--teal);
  text-decoration: underline;
}

.legal-crosslink {
  margin-top: var(--sp-12);
  padding: var(--sp-5) var(--sp-6);
  background: var(--teal-tint);
  border-radius: var(--r-md);
  font-size: var(--size-label);
  color: var(--teal-dark);
}

.legal-crosslink a {
  font-weight: 600;
}

/* ── Footer ────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--sp-16) 0 var(--sp-10);
  margin-top: var(--sp-16);
}


.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-10);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: var(--sp-4);
}

.footer-brand p {
  font-size: var(--size-label);
  color: rgba(255, 255, 255, 0.6);
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: var(--size-label);
  font-weight: 600;
  color: var(--paper);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: var(--sp-2);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--size-label);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--size-caption);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ── Resources ───────────────────────────────────────────────────── */

.hero-resources {
  padding-bottom: var(--sp-14);
}

.resource-cover-mock {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-6);
  border-radius: 28px;
  border: 1px solid rgba(13, 110, 110, 0.14);
  background:
    radial-gradient(circle at top right, rgba(232, 160, 32, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 244, 0.88));
  box-shadow: 0 18px 40px rgba(26, 31, 46, 0.08);
}

.resource-cover-badge,
.resource-format-badge,
.resource-vertical-badge,
.resource-audience-badge,
.resource-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(13, 110, 110, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.resource-chip:hover {
  background: rgba(230, 244, 244, 0.96);
  border-color: rgba(13, 110, 110, 0.32);
}

.resource-chip:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.resource-cover-vertical {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-cover-mock strong,
.resource-feature-copy h2,
.resource-gate-card h2,
.resource-article-shell h1 {
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: -0.03em;
}

.resources-featured,
.resources-browser,
.resources-operator-cta,
.resource-related-section,
.resource-article-body {
  padding: var(--sp-12) 0;
}

.resource-feature-card {
  display: grid;
  gap: var(--sp-8);
  padding: var(--sp-8);
  border-radius: 32px;
  border: 1px solid rgba(13, 110, 110, 0.12);
  background:
    radial-gradient(circle at top left, rgba(232, 160, 32, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 248, 0.92));
  box-shadow: 0 22px 46px rgba(26, 31, 46, 0.08);
}

.resource-meta-row,
.resource-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-bullets {
  display: grid;
  gap: var(--sp-2);
  color: var(--ink-soft);
  padding-left: 1.1rem;
}

.resource-cover-link {
  display: inline-block;
}

.resource-cover-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(13, 110, 110, 0.14);
  box-shadow: 0 22px 48px rgba(26, 31, 46, 0.12);
}

.hero-cover-image {
  max-width: 290px;
}

.resource-feature-visual {
  display: grid;
  place-items: center;
}

.resource-cover-stack {
  position: relative;
  width: min(100%, 360px);
  min-height: 340px;
}

.resource-cover-card {
  border-radius: 26px;
}

.resource-cover-card-back {
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  background: rgba(230, 244, 244, 0.82);
  border: 1px solid rgba(13, 110, 110, 0.08);
}

.resource-cover-card-front {
  position: relative;
  display: grid;
  gap: var(--sp-3);
  align-content: end;
  min-height: 340px;
  padding: var(--sp-6);
  background:
    radial-gradient(circle at top right, rgba(232, 160, 32, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 250, 0.94));
  border: 1px solid rgba(13, 110, 110, 0.14);
  box-shadow: 0 20px 44px rgba(26, 31, 46, 0.10);
}

.resource-cover-card-label {
  color: var(--teal-dark);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-cover-card strong {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.02;
}

.resource-cover-card p,
.resource-card p,
.resource-article-dek,
.resource-gate-note,
.resource-side-card p {
  color: var(--ink-muted);
}

.resource-grid {
  display: grid;
  gap: var(--sp-5);
}

.resource-card {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-radius: 24px;
  border: 1px solid rgba(13, 110, 110, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(26, 31, 46, 0.06);
}

.resource-card h3,
.resource-inline-cta h3,
.resource-side-card h3 {
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.resource-link {
  color: var(--teal-dark);
  font-weight: 700;
}

.resource-chip.active {
  background: rgba(230, 244, 244, 0.92);
}

.resource-article-shell,
.resource-ebook-shell {
  display: grid;
  gap: var(--sp-6);
}

.resource-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.resource-breadcrumbs a {
  color: var(--teal-dark);
}

.resource-article-body {
  background: rgba(255, 255, 255, 0.55);
}

.resource-article-layout {
  display: grid;
  gap: var(--sp-8);
}

.resource-prose {
  display: grid;
  gap: var(--sp-5);
  max-width: 46rem;
}

.resource-prose h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.resource-prose p,
.resource-prose li,
.resource-prose blockquote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.8;
}

.resource-prose ul,
.resource-prose ol {
  display: grid;
  gap: 12px;
  padding-left: 1.35rem;
}

.resource-prose blockquote {
  margin: 0;
  padding: var(--sp-5);
  border-left: 4px solid var(--teal);
  border-radius: 18px;
  background: rgba(230, 244, 244, 0.45);
  font-style: italic;
}

.resource-prose table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(13, 110, 110, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(26, 31, 46, 0.05);
}

.resource-prose thead {
  background: rgba(230, 244, 244, 0.72);
}

.resource-prose th,
.resource-prose td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(13, 110, 110, 0.10);
  font-size: 0.95rem;
  line-height: 1.55;
}

.resource-prose tr:last-child td {
  border-bottom: 0;
}

.resource-byline {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.resource-inline-cta,
.resource-side-card,
.resource-gate-card {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-radius: 24px;
  border: 1px solid rgba(13, 110, 110, 0.12);
  background:
    radial-gradient(circle at top right, rgba(232, 160, 32, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 248, 0.94));
  box-shadow: 0 16px 34px rgba(26, 31, 46, 0.07);
}

/* Gate-form layout: stack fields + submit + note with uniform breathing
   room. Default <form> is `display: block` with no inter-child gap, so
   the submit button used to crowd the last input. */
.resource-gate-form {
  display: grid;
  gap: var(--sp-4);
}

.resource-field {
  display: grid;
  gap: 8px;
}

.resource-field span {
  color: var(--ink);
  font-weight: 600;
}

.resource-field input,
.resource-field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(13, 110, 110, 0.18);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.resource-gate-success {
  display: grid;
  gap: var(--sp-4);
}

.resource-gate-feedback {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(13, 110, 110, 0.14);
  background: rgba(230, 244, 244, 0.60);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}

.resource-gate-feedback[data-tone="error"] {
  border-color: rgba(153, 27, 27, 0.18);
  background: rgba(254, 242, 242, 0.92);
  color: #7f1d1d;
}

.resource-gate-feedback[data-tone="success"] {
  border-color: rgba(13, 110, 110, 0.18);
  background: rgba(236, 253, 245, 0.92);
  color: #115e59;
}

.resource-gate-feedback[data-tone="info"] {
  border-color: rgba(13, 110, 110, 0.14);
  background: rgba(239, 246, 255, 0.92);
  color: #1e3a8a;
}

.resource-cover-showcase {
  margin-top: var(--sp-4);
  max-width: 360px;
}

.resource-cover-image-large {
  max-width: 380px;
}

.resource-cover-link-feature {
  width: min(100%, 380px);
}

.resource-cover-link-inline,
.resource-card-visual {
  width: 100%;
}

.resource-cover-image-inline {
  max-width: 260px;
  margin: 0 auto;
}

.resource-card-cover-image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.resource-card-visual-shell {
  display: grid;
  gap: var(--sp-4);
  min-height: 220px;
  padding: var(--sp-5);
  border-radius: 22px;
  border: 1px solid rgba(13, 110, 110, 0.12);
  background:
    radial-gradient(circle at top right, rgba(232, 160, 32, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 250, 0.94));
}

.resource-card-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.resource-card-status {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-article-preview {
  display: grid;
  gap: var(--sp-3);
  align-content: end;
  min-height: 100%;
}

.resource-article-preview strong {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.resource-article-preview p {
  color: var(--ink-muted);
}

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

.resource-preview-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(230, 244, 244, 0.82);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.resource-field em {
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 500;
}

@media (min-width: 900px) {
  .resource-feature-card,
  .resource-ebook-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }

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

  .resource-article-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
    align-items: start;
  }
}

/* ── Accessibility ─────────────────────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: var(--sp-4);
  background: var(--teal);
  color: var(--paper);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm);
  z-index: 100;
}

.skip-link:focus {
  top: var(--sp-4);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── ROI / Benchmark Calculator ───────────────────────────────────── */

/* ── ROI / Benchmark Calculator ───────────────────────────────────── */

.roi-page-body {
  background: var(--off-white);
}

/* Hero */
.roi-hero {
  padding-block: var(--sp-10) var(--sp-6);
}

.roi-hero-copy {
  max-width: 44rem;
}

.roi-hero h1 {
  margin-bottom: var(--sp-3);
}

.roi-hero-lede {
  font-size: var(--size-h3);
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
}

/* Sticky stats rail */
.roi-stats-rail {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-block: var(--sp-4);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}

.roi-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.roi-stat-card {
  padding: var(--sp-4) var(--sp-5);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  display: grid;
  gap: 4px;
}

.roi-stat-card-featured {
  background: linear-gradient(180deg, var(--teal-tint), var(--paper));
  border-color: rgba(13, 110, 110, 0.25);
}

.roi-stat-label {
  font-size: var(--size-eyebrow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.roi-stat-value {
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: block;
  margin: 2px 0 4px;
}

.roi-stat-card-featured .roi-stat-value {
  color: var(--teal-dark);
}

.roi-stat-note {
  margin: 0;
  font-size: var(--size-label);
  color: var(--ink-muted);
  line-height: 1.4;
}

/* Workbench (inputs + outputs) */
.roi-workbench {
  padding-block: var(--sp-10) var(--sp-12);
}

.roi-workbench-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.roi-inputs-col,
.roi-outputs-col {
  display: grid;
  gap: var(--sp-5);
  margin: 0;
  padding: 0;
}

/* Panels */
.roi-panel {
  padding: var(--sp-6);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
}

.roi-panel-head {
  margin-bottom: var(--sp-4);
}

.roi-panel-head h2 {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  color: var(--ink);
}

.roi-panel-dark {
  background: linear-gradient(180deg, #0e2b2b, #082020);
  border-color: rgba(255, 255, 255, 0.05);
  color: #e5f1f1;
}

.roi-panel-dark .roi-panel-head h2 {
  color: #fff;
}

.roi-panel-dark .section-eyebrow {
  color: #7dd5d5;
}

/* Field grid (reused across input panels) */
.roi-field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.roi-helper {
  margin: var(--sp-3) 0 0;
  color: var(--ink-soft);
  font-size: var(--size-label);
  line-height: 1.5;
}

/* Rent block (inside expenses panel) */
.roi-rent-block {
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--off-white);
  border: 1px solid var(--rule);
  margin-bottom: var(--sp-5);
}

.roi-benchmark-block {
  display: grid;
  gap: 4px;
}

.roi-benchmark-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--size-label);
}

.roi-benchmark-label {
  color: var(--ink-soft);
  font-weight: 600;
}

.roi-benchmark-row strong {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Expense table */
.roi-expense-table {
  margin-top: var(--sp-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
}

.roi-expense-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--off-white);
  font-size: var(--size-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}

.roi-expense-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--rule);
  align-items: center;
}

.roi-expense-row:last-child {
  border-bottom: 0;
}

.roi-expense-row input,
.roi-expense-row select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  font-size: var(--size-label);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

.roi-expense-row input:focus,
.roi-expense-row select:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.roi-expense-actions {
  margin-top: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}

/* Output rows */
.roi-output-rows {
  display: grid;
  gap: var(--sp-3);
}

.roi-output-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--rule);
  font-size: var(--size-body);
  color: var(--ink);
}

.roi-output-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.roi-output-row span {
  color: var(--ink-muted);
}

.roi-output-row strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.roi-output-row-emphasis strong {
  color: var(--teal-dark);
  font-size: 1.18rem;
}

/* Timeline */
.roi-timeline-group {
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.roi-timeline-row {
  display: grid;
  gap: 6px;
}

.roi-timeline-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--size-label);
}

.roi-timeline-copy strong {
  color: #fff;
  font-weight: 700;
}

.roi-timeline-copy span {
  color: rgba(229, 241, 241, 0.75);
}

.roi-timeline-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.roi-timeline-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
  transition: width 0.3s ease;
}

.roi-timeline-fill.muted {
  background: rgba(229, 241, 241, 0.35);
}

.roi-timeline-note {
  margin: 0;
  color: #b9d6d6;
  font-size: var(--size-label);
  line-height: 1.5;
}

/* Annual goal block */
.roi-goal-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--off-white);
  border: 1px solid var(--rule);
}

.roi-goal-stat {
  display: grid;
  gap: 2px;
}

.roi-goal-label {
  font-size: var(--size-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.roi-goal-stat strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.roi-goal-divider {
  height: 1px;
  background: var(--rule);
}

.roi-goal-note {
  margin: var(--sp-3) 0 0;
  font-size: var(--size-label);
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Inline benchmark line injected inside each .roi-expense-row by JS */
.roi-expense-avg-line {
  display: block;
  font-size: var(--size-caption);
  color: var(--ink-soft);
  line-height: 1.4;
}

.roi-expense-avg-line strong {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* CTA section */
.roi-cta-section {
  padding-block: var(--sp-8) var(--sp-10);
  background: var(--paper);
  border-top: 1px solid var(--rule);
}

.roi-cta-card {
  padding: var(--sp-8);
  background: linear-gradient(180deg, var(--teal-tint), var(--paper));
  border: 1px solid rgba(13, 110, 110, 0.25);
  border-radius: var(--r-lg);
  display: grid;
  gap: var(--sp-5);
}

.roi-cta-copy h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 4px 0 var(--sp-3);
  color: var(--ink);
}

.roi-cta-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--size-body);
  max-width: 38rem;
}

.roi-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* Footer strip (send + benchmark + disclaimer) */
.roi-footer-strip {
  padding-block: var(--sp-10);
  background: var(--off-white);
  border-top: 1px solid var(--rule);
}

.roi-share-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

.roi-share-block h3 {
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 4px 0 var(--sp-4);
  color: var(--ink);
}

.roi-share-block .btn {
  margin-top: var(--sp-4);
}

/* v2: single-block share section (no 2-col grid). The block now
   centers itself and constrains to a readable width since it's
   the only piece of content in the footer strip. */
.roi-footer-strip .roi-share-block {
  max-width: 44rem;
  margin-inline: auto;
}

/* Fine-print disclosure shown below the Send button. Replaces
   the two explicit-consent checkboxes from v1. Visually quiet
   but legally present. */
.roi-fine-print {
  margin: var(--sp-5) 0 0;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: var(--size-caption);
  line-height: 1.55;
}

/* SAT bookings info toggle: a small circular "i" button next to
   the field label. Click toggles the explanation panel below the
   input. Inline so it lives naturally inside the label span. */
.roi-field-with-info > span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.roi-info-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal-tint);
  border: 1px solid rgba(13, 110, 110, 0.2);
  color: var(--teal-dark);
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.roi-info-toggle:hover,
.roi-info-toggle:focus-visible {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  outline: none;
}

.roi-info-panel {
  margin-top: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: var(--teal-tint);
  border: 1px solid rgba(13, 110, 110, 0.2);
  color: var(--ink);
  font-size: var(--size-label);
  line-height: 1.5;
}

/* Success confirmation shown after the "Send me my results" POST.
   Replaces the button so the operator can't double-submit; copy
   tells them what's next. */
.roi-send-success {
  display: grid;
  gap: 4px;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--teal-tint);
  border: 1px solid rgba(13, 110, 110, 0.25);
  color: var(--ink);
}

.roi-send-success strong {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--teal-dark);
}

.roi-send-success span {
  font-size: var(--size-label);
  color: var(--ink-muted);
  line-height: 1.5;
}

.roi-checklist {
  display: grid;
  gap: var(--sp-3);
}

.roi-disclaimer {
  margin-top: var(--sp-8);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: var(--size-label);
  line-height: 1.55;
  max-width: 56rem;
}

/* Responsive */
@media (min-width: 720px) {
  .roi-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .roi-goal-block {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .roi-goal-divider {
    width: 1px;
    height: 48px;
    background: var(--rule);
  }
}

@media (min-width: 980px) {
  .roi-workbench-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: var(--sp-8);
  }

  .roi-outputs-col {
    position: sticky;
    top: 140px;
  }

  .roi-cta-card {
    grid-template-columns: minmax(0, 1.5fr) auto;
    align-items: center;
    gap: var(--sp-8);
  }
}

@media (max-width: 719px) {
  .roi-expense-head {
    display: none;
  }

  .roi-expense-row {
    grid-template-columns: 1fr;
  }
}
