:root {
  color-scheme: dark;
  --bg: #0f1419;
  --surface: #1a2332;
  --surface-raised: #243044;
  --border: #2d3a4d;
  --text: #e8edf4;
  --muted: #9aa8bc;
  --accent: #e63946;
  --accent-hover: #ff4d5a;
  --accent-dim: #8b2635;
  --gold: #f4c542;
  --success: #3dd68c;
  --on-accent: #fff;
  --overlay: rgba(0, 0, 0, 0.55);
  --radius: 10px;
  --font: system-ui, -apple-system, "Segoe UI", sans-serif;
  --max-width: 960px;
  --nav-height: 3.25rem;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-raised: #f6f6f6;
  --border: #e5e5e5;
  --text: #1a2332;
  --muted: #5c6b80;
  --accent: #c41e3a;
  --accent-hover: #a01830;
  --accent-dim: #f5d0d6;
  --gold: #b8860b;
}

@media (prefers-color-scheme: light) {
  :root[data-theme="auto"] {
    color-scheme: light;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-raised: #f6f6f6;
    --border: #e5e5e5;
    --text: #1a2332;
    --muted: #5c6b80;
    --accent: #c41e3a;
    --accent-hover: #a01830;
    --accent-dim: #f5d0d6;
    --gold: #b8860b;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

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

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.site-nav-bar {
  position: relative;
  z-index: 103;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--nav-height);
  padding: 0.5rem 1rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--text);
  cursor: pointer;
}

.icon-btn:hover {
  border-color: var(--accent);
}

.site-nav-toggle {
  display: none;
}

.site-nav-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  min-width: 0;
}

.site-nav-brand span {
  color: var(--gold);
}

.site-nav-brand-short {
  display: none;
}

.site-nav-end {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.site-nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.site-nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav.is-open .site-nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-open .site-nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .site-nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 101;
  border: 0;
  padding: 0;
  background: var(--overlay);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.site-nav.is-open .site-nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 102;
  max-height: calc(100dvh - var(--nav-height));
  overflow-y: auto;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-0.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.site-nav.is-open .site-nav-drawer {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.site-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 1rem 1rem;
}

.site-nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--border);
}

.site-nav-links a:last-child {
  border-bottom: none;
}

.site-nav-links a:hover,
.site-nav-links a[aria-current="page"] {
  color: var(--accent);
}

.site-nav-links a[aria-current="page"] {
  font-weight: 600;
}

.site-nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
}

.site-nav-submenu {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-nav-parent {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--border);
}

.site-nav-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.site-nav-group .site-nav-parent:last-child,
.site-nav-submenu .site-nav-sublink:last-child {
  border-bottom: none;
}

.site-nav-sublink {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.7rem 0.5rem 0.7rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.site-nav-sublink:last-child {
  border-bottom: none;
}

.site-nav-sublink:hover,
.site-nav-sublink[aria-current="page"] {
  color: var(--accent);
}

.site-nav-sublink[aria-current="page"] {
  font-weight: 600;
}

@media (max-width: 879px) {
  .site-nav {
    background: var(--surface);
    backdrop-filter: none;
  }

  .site-nav-bar {
    background: var(--surface);
  }

  .site-nav.is-open {
    border-bottom-color: var(--border);
  }

  .site-nav-brand-full {
    display: none;
  }

  .site-nav-brand-short {
    display: inline;
  }

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

  .site-nav-submenu {
    margin-left: 0.75rem;
    padding-left: 0.85rem;
  }

  .site-nav-links .site-nav-sublink {
    padding: 0.75rem 0.5rem 0.75rem 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    border-bottom: none;
  }

  .site-nav-links .site-nav-parent {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }
}

@media (min-width: 880px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.25rem;
    overflow: visible;
  }

  .site-nav-bar {
    display: contents;
  }

  .site-nav-end {
    order: 3;
  }

  .site-nav-brand {
    order: 1;
    white-space: nowrap;
  }

  .site-nav-drawer {
    display: contents;
    position: static;
    max-height: none;
    overflow: visible;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav-backdrop {
    display: none !important;
  }

  body.nav-open {
    overflow: auto;
  }

  .site-nav-links {
    order: 2;
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem 1rem;
    padding: 0;
    overflow: visible;
  }

  .site-nav-links a {
    padding: 0;
    font-size: 0.925rem;
    font-weight: 400;
    border-bottom: none;
    color: var(--muted);
  }

  .site-nav-links a[aria-current="page"] {
    font-weight: 600;
  }

  .site-nav-group {
    position: relative;
    align-items: stretch;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .site-nav-parent {
    padding: 0;
    font-size: 0.925rem;
    font-weight: 400;
    border-bottom: none;
    color: var(--muted);
  }

  .site-nav-parent:hover,
  .site-nav-group:hover .site-nav-parent,
  .site-nav-group.is-active .site-nav-parent,
  .site-nav-parent[aria-current="page"] {
    color: var(--accent);
  }

  .site-nav-group.is-active .site-nav-parent,
  .site-nav-parent[aria-current="page"] {
    font-weight: 600;
  }

  .site-nav-submenu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    z-index: 110;
    min-width: 12rem;
    padding: 0.5rem;
    gap: 0.2rem;
    margin-left: 0;
    border-left: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }

  .site-nav-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -0.5rem;
    height: 0.5rem;
  }

  .site-nav-group:hover .site-nav-submenu,
  .site-nav-group:focus-within .site-nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav-sublink {
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    border-bottom: none;
    border-radius: 6px;
    white-space: nowrap;
  }

  .site-nav-sublink:hover {
    background: var(--surface-raised);
  }
}

.theme-dropdown {
  position: relative;
}

.theme-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 110;
  min-width: 8.5rem;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.theme-menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
}

.theme-menu-item:hover {
  background: var(--surface-raised);
}

.theme-menu-item[aria-checked="true"] {
  color: var(--accent);
  font-weight: 600;
}

.theme-icon {
  display: block;
}

.page-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
}

.page-wrap--host {
  max-width: none;
  padding: 0 0 3rem;
}

.hero {
  padding: 0 0 1rem;
}

.hero + .panel,
.hero + .content-section,
.hero + .lane-section {
  margin-top: 0;
}

.hero + p {
  margin-top: 0;
}

.home-intro {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  line-height: 1.6;
}

.home-intro + .panel,
.home-intro + .content-section {
  margin-top: 0;
}

.hero-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.event-summary {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.event-summary-dates,
.event-summary-meta {
  margin: 0;
}

.event-summary-meta {
  margin-top: 0.35rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.hero-lead {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: var(--muted);
}

.hero-body {
  margin: 0 0 1.5rem;
  max-width: 42rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

@media (max-width: 479px) {
  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--on-accent);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.panel,
.content-section {
  margin: 0;
  padding: 2.5rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.panel + .panel,
.content-section + .content-section,
.about-section + .about-section,
.poster-wall {
  border-top: 1px solid var(--border);
}

.panel h2,
.content-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.panel h3,
.content-section h3 {
  margin: 1.25rem 0 0.35rem;
  font-size: 1.05rem;
}

.panel p,
.panel li,
.content-section p,
.content-section li {
  color: var(--text);
}

.panel .muted,
.content-section .muted {
  color: var(--muted);
}

.about-section {
  margin: 0;
  padding: 2.5rem 0;
}

.about-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.about-section p {
  margin: 0 0 1rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.hero + .about-section {
  margin-top: 0;
}

.poster-wall {
  margin: 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.poster-wall h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

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

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.poster-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.poster-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--surface);
}

.poster-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
}

.poster-year {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.poster-venue {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.35;
}

@media (min-width: 640px) {
  .poster-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.lane-section {
  margin: 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .lane-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
  }

  .lane-header {
    grid-column: 1 / -1;
  }

  .lane-section .role-card {
    margin: 0;
    height: 100%;
  }
}

.lane-header h2 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.lane-header p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.role-card {
  margin: 1rem 0;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}

.role-card:last-child {
  border-bottom: none;
}

.role-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.role-card dl {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.role-card dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.role-card dd {
  margin: 0 0 0.5rem;
}

.role-card .role-note {
  margin: 0.5rem 0 0;
  padding: 0.5rem 0.65rem;
  background: var(--notice-bg, rgba(154, 168, 188, 0.12));
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.role-card.phase2 {
  border-bottom-style: dashed;
  opacity: 0.92;
}

.steps-list {
  padding-left: 1.25rem;
}

.steps-list li {
  margin: 0.35rem 0;
}

.co-chairs {
  display: grid;
  gap: 1.25rem 2rem;
}

@media (min-width: 640px) {
  .co-chairs {
    grid-template-columns: 1fr 1fr;
  }
}

.co-chair-name,
.co-chair-title {
  margin: 0;
  line-height: 1.25;
}

.co-chair-name {
  font-weight: 600;
  font-size: 1rem;
}

.co-chair-title {
  font-size: 0.95rem;
  color: var(--muted);
}

.faq-item {
  margin: 1rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.faq-item p + p {
  margin-top: 0.65rem;
}

.site-footer {
  margin-top: 3rem;
  padding: 1.5rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  margin-bottom: 1rem;
}

.site-footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.site-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.15s, border-color 0.15s;
}

.site-footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-social-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.site-footer-nav a,
.site-footer-meta a {
  color: var(--text);
  text-decoration: none;
}

.site-footer-nav a:hover,
.site-footer-meta a:hover {
  color: var(--gold);
}

.site-footer-meta {
  margin: 0;
}

.sponsor-tier {
  margin: 2rem 0;
}

.sponsor-tier h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--gold);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .sponsor-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.sponsor-card:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.sponsor-card img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.build-subnav {
  margin-bottom: 0.75rem;
}

.build-subnav a {
  font-size: 0.9rem;
  text-decoration: none;
}

.error-panel {
  padding: 1rem;
  border: 1px solid var(--danger, #f87171);
  border-radius: var(--radius);
  color: var(--danger, #f87171);
}

.hero-lead {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1rem 0 0.75rem;
}

.hero-subhead {
  margin-top: 1rem;
  color: var(--gold);
}

.notice-banner {
  margin: 1rem 0 0;
  padding: 0.5rem 0 0.5rem 0.85rem;
  background: transparent;
  border: none;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.ladder-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

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

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

.ladder-card {
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  min-width: 0;
}

.ladder-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.ladder-subtitle {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.ladder-card dl {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.ladder-card dt {
  font-weight: 600;
  margin-top: 0.5rem;
}

.ladder-card dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
}

.zone-grid,
.package-grid,
.case-study-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .zone-grid,
  .package-grid,
  .case-study-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

@media (min-width: 1200px) {
  .case-study-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

.zone-listing-card,
.case-study-card,
.package-template-card {
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  min-width: 0;
}

.zone-listing-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 0.75rem;
}

.zone-size-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--on-accent);
  background: var(--accent);
  border-radius: 4px;
}

.zone-listing-id,
.case-study-persona {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
}

.zone-included-label {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.zone-included {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.amenity-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.amenity-grid dt {
  font-weight: 600;
  color: var(--muted);
}

.amenity-grid dd {
  margin: 0;
}

.case-study-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.case-study-dl {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.case-study-dl dt {
  font-weight: 600;
  margin-top: 0.5rem;
}

.case-study-dl dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.sku-stack {
  margin: 0.25rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.sku-stack li {
  margin: 0.2rem 0;
}

.sku-stack code {
  font-size: 0.82rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

.turnkey-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.turnkey-table th,
.turnkey-table td {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.turnkey-table thead th {
  background: var(--surface-raised);
  font-weight: 600;
}

.turnkey-table tbody th {
  font-weight: 600;
  background: color-mix(in srgb, var(--surface-raised) 60%, transparent);
}

.addon-category {
  margin-top: 1.25rem;
}

.addon-tier-desc {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
}


.addon-category h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--gold);
}

.addon-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.addon-item:last-child {
  border-bottom: 0;
}

.addon-name {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
}

.apply-block {
  margin-top: 0.5rem;
}

.apply-block--prominent {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.steps-list--compact {
  margin-bottom: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero--host .hero-lead {
  font-size: 1.2rem;
  max-width: 36rem;
}

.host-hero {
  position: relative;
  min-height: clamp(280px, 42vw, 480px);
  background-color: var(--surface);
  background-size: cover;
  background-position: center;
  margin: 0 0 0;
}

.host-hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--bg) 92%, transparent) 0%, color-mix(in srgb, var(--bg) 35%, transparent) 55%, transparent 100%);
}

.host-hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.host-hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.host-hero-tagline {
  margin: 0.75rem 0 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--muted);
  max-width: 32rem;
}

.host-prompts-section {
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.host-prompt-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.host-prompt-btn {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}

.host-prompt-vendor {
  margin-left: 0;
  padding: 0.35rem 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.host-prompt-vendor:hover {
  color: var(--accent);
}

@media (min-width: 640px) {
  .host-prompt-vendor {
    margin-left: auto;
  }
}

.host-doc-layout {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.host-doc-toc {
  display: none;
}

.host-doc-main {
  min-width: 0;
}

.host-doc-section {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
  padding: 2.5rem 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.host-doc-main > .host-doc-section + .host-doc-section {
  border-top: 1px solid var(--border);
}

.host-doc-main > .host-doc-section:first-child {
  padding-top: 2rem;
}

@media (min-width: 1100px) {
  .host-doc-layout {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

  .host-doc-toc {
    display: block;
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
    padding: 0.5rem 0;
  }

  .host-doc-toc-label {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 600;
  }

  .host-doc-toc-link {
    display: block;
    padding: 0.35rem 0;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    border-left: 2px solid transparent;
    padding-left: 0.65rem;
    margin-left: -0.65rem;
  }

  .host-doc-toc-link:hover {
    color: var(--text);
  }

  .host-doc-toc-link.is-active {
    color: var(--accent);
    border-left-color: var(--accent);
    font-weight: 600;
  }
}

.host-story-card {
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: opacity 0.2s ease;
}

.host-story-card.is-dimmed {
  opacity: 0.45;
}

.host-story-card.is-highlighted {
  border-bottom-color: var(--gold);
}

.host-story-thumb {
  height: 120px;
  background-size: cover;
  background-position: center 30%;
}

.host-story-body {
  padding: 1rem 1.1rem;
}

.host-zone-modes-grid {
  gap: 1rem;
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

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

.host-zone-mode-card {
  padding: 1.1rem 1.15rem;
  background: color-mix(in srgb, var(--gold) 6%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--gold) 22%, var(--border));
  border-radius: var(--radius);
}

.host-zone-mode-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.panel--zone-modes {
  scroll-margin-top: 1rem;
}

.host-path-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

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

.host-path-card {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 0;
}

.host-path-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
}

.host-path-fit {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.host-path-dl {
  margin: 0 0 1rem;
  flex: 1;
}

.host-path-dl dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 0.55rem;
}

.host-path-dl dt:first-child {
  margin-top: 0;
}

.host-path-dl dd {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
}

.host-path-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
}

.host-essentials-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

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

.faq-item--compact {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-item--compact h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.faq-item--compact p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.host-story-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  grid-template-columns: 1fr;
}

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

.host-story-path {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.host-story-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.host-story-meta {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.host-story-meta span {
  color: var(--text);
  font-weight: 600;
}

.host-details-stack {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.host-detail {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.host-detail summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 600;
  list-style: none;
}

.host-detail summary::-webkit-details-marker {
  display: none;
}

.host-detail summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}

.host-detail[open] summary::after {
  content: "−";
}

.host-detail-body {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border);
}

.host-detail-body > :first-child {
  margin-top: 0.85rem;
}

.host-extras-group {
  margin-top: 1rem;
}

.host-extras-group h4 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: var(--gold);
}

.host-extras-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.92rem;
}

.host-extras-list li {
  margin-bottom: 0.45rem;
}

.host-stack-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.92rem;
}

.host-stack-list li {
  margin-bottom: 0.55rem;
}

.zone-listing-card--compact .zone-included {
  margin-top: 0.65rem;
}

.site-dialog {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  max-width: min(28rem, calc(100vw - 2rem));
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.site-dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.site-dialog-inner {
  margin: 0;
}

.site-dialog-header {
  padding: 1.1rem 1.25rem 0.5rem;
}

.site-dialog-header h2 {
  margin: 0;
  font-size: 1.15rem;
}

.site-dialog-body {
  padding: 0.5rem 1.25rem 1rem;
}

.site-dialog-body p {
  margin: 0;
  line-height: 1.55;
}

.site-dialog-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0 1.25rem 1.15rem;
}

.host-diy-section .host-diy-lead {
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.zone-pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .zone-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }
}

.zone-tier-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.15rem 1rem 1rem;
}

.zone-tier-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.zone-tier-header-main {
  min-width: 0;
}

.zone-tier-header .zone-availability-badge {
  flex-shrink: 0;
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.zone-tier-name {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.zone-tier-audience {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  white-space: nowrap;
}

.zone-tier-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7.75rem;
  padding: 0.15rem 0 0.35rem;
}

.zone-tier-diagram .zone-diagram-svg--tier {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.zone-tier-price {
  margin: 0.35rem 0 0.15rem;
  padding: 0.65rem 0 0.5rem;
  border-top: 1px solid var(--border);
}

.zone-tier-price-main {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  line-height: 1.2;
}

.zone-tier-price-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.zone-tier-price-amount {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.zone-tier-price-detail {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  line-height: 1.35;
}

.zone-tier-stats {
  display: grid;
  gap: 0.65rem;
  margin: 0.5rem 0 0;
  grid-template-columns: 1fr;
}

.zone-tier-stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 0.15rem;
}

.zone-tier-stats dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.host-help-lead {
  font-size: 1.05rem;
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

.host-help-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
}

.help-addon-card-header {
  justify-content: flex-start;
}

.help-addon-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.help-addon-tab {
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
}

.help-addon-slide-desc {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.host-addon-list--cols {
  display: grid;
  gap: 0 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .host-addon-list--cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.host-addon-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.host-addon-name {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.host-addon-desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.zone-size-card {
  margin-top: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.zone-size-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.zone-size-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.zone-size-tab {
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

.zone-size-tab:hover {
  color: var(--text);
}

.zone-size-tab.is-active {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface-raised);
}

.zone-size-card-remaining {
  font-size: 0.82rem;
}

.zone-size-card-body {
  padding: 1rem 1.15rem 1.15rem;
}

.zone-carousel-track {
  display: grid;
  grid-template-columns: 1fr;
}

.zone-carousel-slide {
  display: none;
  grid-row: 1;
  grid-column: 1;
}

.zone-carousel-slide.is-active {
  display: block;
}

.zone-carousel-diagram {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0 0.5rem;
}

.zone-diagram-plaza-hint {
  font-size: 9px;
  fill: var(--muted);
}

.zone-carousel-stats {
  display: grid;
  gap: 0.75rem;
  margin: 0.75rem 0 0;
  grid-template-columns: 1fr;
}

.zone-carousel-stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 0.15rem;
}

.zone-carousel-stats dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.host-diy-inventory-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
}

.zone-availability-badge {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--border));
  background: color-mix(in srgb, var(--gold) 10%, var(--surface));
  color: var(--accent);
  white-space: nowrap;
}

.zone-availability-badge--sold-out {
  border-color: var(--border);
  background: var(--surface-raised);
  color: var(--muted);
}

.zone-diagram-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}

.zone-diagram-plaza {
  fill: color-mix(in srgb, var(--gold) 12%, var(--surface));
  stroke: var(--border);
  stroke-width: 1.5;
}

.zone-diagram-plaza-label {
  font-size: 11px;
  fill: var(--muted);
}

.zone-diagram-spot {
  fill: var(--surface-raised);
  stroke: var(--border);
  stroke-width: 1.5;
}

.zone-diagram-spot-label {
  fill: var(--muted);
  font-weight: 600;
  pointer-events: none;
}

.zone-diagram-spot--open {
  fill: color-mix(in srgb, var(--gold) 28%, var(--surface));
  stroke: var(--gold);
}

.zone-diagram-cook-icon {
  pointer-events: none;
}

.home-cta-columns {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.home-cta-columns > .content-section {
  margin: 0;
  padding: 0;
  border-top: none;
}

.home-cta-columns > .content-section + .content-section {
  border-top: none;
}

@media (min-width: 720px) {
  .home-cta-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
  }

  .home-cta-columns > .home-cta-column:first-child {
    padding-right: 1rem;
  }

  .home-cta-columns > .home-cta-column:last-child {
    padding-left: 1rem;
  }
}

@media (max-width: 719px) {
  .home-cta-columns > .content-section + .content-section {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
  }
}
