/* Putt Putt Bar Crawl — bright & fun marketing site */
:root {
  --bg: #FFFBF5;
  --bg2: #EAF8FF;
  --bg-sky: #D4F0FF;
  --card: #FFFFFF;
  --border: rgba(26, 43, 61, 0.1);
  --text: #1A2B3D;
  --muted: #5A6B7D;
  --teal: #00A8BA;
  --teal-dark: #087A8A;
  --teal-light: #B8EFF5;
  --green: #22C55E;
  --green-light: #DCFCE7;
  --coral: #FF5C8A;
  --coral-light: #FFE4EC;
  --sun: #FFB020;
  --sun-light: #FFF3D6;
  --purple: #8B5CF6;
  --shadow: 0 8px 32px rgba(26, 43, 61, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 43, 61, 0.12);
  --radius: 20px;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --touch: 44px;
  --site-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--site-header-h) + 16px);
}

body {
  font-family: var(--font-body);
  padding-top: var(--site-header-h);
  background:
    radial-gradient(900px 600px at 0% 0%, rgba(255, 184, 32, 0.18), transparent 55%),
    radial-gradient(800px 500px at 100% 10%, rgba(255, 92, 138, 0.12), transparent 50%),
    radial-gradient(700px 500px at 50% 100%, rgba(0, 168, 186, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
  line-height: 1.65;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(350px 350px at 85% 20%, rgba(255, 176, 32, 0.15), transparent 70%),
    radial-gradient(280px 280px at 10% 70%, rgba(0, 168, 186, 0.1), transparent 70%);
}

body > *:not(.page-glow):not(.site-header) { position: relative; z-index: 1; }

a { color: var(--teal-dark); text-decoration: none; font-weight: 600; }
a:hover { color: var(--coral); text-decoration: underline; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Header — fixed so it stays visible while scrolling */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 251, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26, 43, 61, 0.06);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.header-nav a:not(.btn) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 10px;
  border-radius: 10px;
}
.header-nav a:not(.btn):hover { color: var(--teal-dark); text-decoration: none; background: rgba(0, 168, 186, 0.08); }
.header-nav a.is-active {
  color: var(--teal-dark);
  background: rgba(0, 168, 186, 0.12);
  font-weight: 800;
}
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
}
.btn-nav {
  padding: 10px 16px;
  font-size: 14px;
  min-height: 40px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}
.brand span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand img { height: 42px; width: 42px; flex-shrink: 0; border-radius: 10px; }
.brand-logo { display: block; }
.brand:hover { text-decoration: none; color: var(--teal-dark); }
.menu-btn {
  display: none;
  background: var(--card);
  border: 2px solid var(--border);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
  min-height: var(--touch);
  min-width: var(--touch);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  min-height: var(--touch);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), #00C4D4);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 168, 186, 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(0, 168, 186, 0.45); color: #fff; }
.btn-secondary {
  background: var(--card);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* Sub-page intro */
.page-intro {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
}
.page-intro__inner { max-width: 720px; }
.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 14px;
}
.page-intro__lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}
.page-intro--split { padding-bottom: 36px; }
.page-intro__inner--split {
  max-width: 1140px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.page-intro__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}
.page-intro__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.page-intro-actions {
  padding: 0 0 28px;
  margin-top: -8px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
}
.page-intro-actions .hero-trust { margin-top: 18px; }

/* Full-bleed marketing hero */
.mkt-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: calc(var(--site-header-h) * -1);
  padding-top: var(--site-header-h);
  color: #fff;
}
.mkt-hero--compact { min-height: min(72vh, 560px); }
.mkt-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mkt-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  animation: mktHeroZoom 18s ease-out forwards;
}
.mkt-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 16, 28, 0.55) 0%, rgba(8, 16, 28, 0.28) 32%, rgba(8, 16, 28, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 16, 28, 0.72) 0%, rgba(8, 16, 28, 0.35) 55%, transparent 100%);
}
.mkt-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: clamp(36px, 8vw, 72px);
  max-width: 720px;
  margin-left: 0;
  animation: mktHeroIn 0.9s ease-out both;
  color: #fff;
}
.mkt-hero__brand,
.mkt-hero__title,
.mkt-hero__lead {
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 4px 24px rgba(0, 0, 0, 0.55);
}
.mkt-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 14px;
}
.mkt-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.98;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 14px;
  max-width: 14ch;
}
.mkt-hero__lead {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.45;
  max-width: 36ch;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
}
.mkt-hero__actions { margin-bottom: 0; }
.mkt-hero .btn-primary {
  color: #fff;
}
.mkt-hero .btn-secondary,
.btn-on-dark {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  backdrop-filter: blur(6px);
}
.mkt-hero .btn-secondary:hover,
.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
  color: #fff;
}

@keyframes mktHeroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mktHeroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

/* Small thumb rail (link chips under hero) */
.thumb-rail {
  padding: 18px 0 8px;
  margin-top: -22px;
  position: relative;
  z-index: 3;
}
.thumb-rail__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.thumb-rail__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.thumb-rail__link:hover {
  text-decoration: none;
  color: var(--teal-dark);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.thumb-rail__link img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* Photo mosaic for variety */
.mosaic {
  padding: 8px 0 40px;
}
.mosaic--tight { padding: 8px 0 28px; }
.mosaic__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 12px;
}
.mosaic__grid--three {
  grid-template-columns: repeat(3, 1fr);
}
.mosaic__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  display: block;
}
.mosaic__grid img:nth-child(odd) { aspect-ratio: 5 / 4; }
.mosaic__grid--three img { aspect-ratio: 4 / 3; }

/* Story band — copy + photo */
.story-band {
  padding: 48px 0 40px;
}
.story-band__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: center;
}
.story-band__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 10px 0 14px;
}
.story-band__copy p {
  font-size: 17px;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.55;
}
.story-band__media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
.story-band__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Visual steps (organize) */
.viz-steps {
  display: grid;
  gap: 28px;
  margin-top: 8px;
}
.viz-step {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}
.viz-step--flip { direction: rtl; }
.viz-step--flip > * { direction: ltr; }
.viz-step img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
  display: block;
}
.viz-step h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.viz-step p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 38ch;
}
.experience--visual { padding-top: 48px; }
.audience-grid--light .audience-card ul,
.audience-grid--light .audience-emoji { display: none; }
.audience-grid--light .audience-card p {
  margin-bottom: 18px;
  font-size: 15px;
}
.audience-grid--visual .audience-card {
  padding-top: 0;
  overflow: hidden;
}
.audience-card__img {
  width: calc(100% + 48px);
  max-width: none;
  margin: 0 -24px 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.how-band__links {
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hub-card--photo {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding-top: 0;
  justify-content: flex-end;
}
.hub-card__media {
  position: absolute;
  inset: 0 0 42%;
  background:
    linear-gradient(180deg, transparent 40%, var(--card) 100%),
    var(--hub-img) center / cover no-repeat;
  pointer-events: none;
}
.hub-card--photo h3,
.hub-card--photo p,
.hub-card--photo .hub-card__link {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-hero__media img,
  .mkt-hero__inner {
    animation: none;
  }
  .thumb-rail__link { transition: none; }
}

/* Hub cards (home explore section) */
.hub-section {
  padding: 48px 0 56px;
  background: rgba(255, 255, 255, 0.45);
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hub-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
  color: inherit;
}
.hub-card--muted { background: linear-gradient(165deg, var(--bg2), var(--card)); }
.hub-card__icon { font-size: 32px; margin-bottom: 12px; }
.hub-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.hub-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}
.hub-card__link {
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-dark);
}

/* Hero */
.hero { padding: 56px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-logo {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 18px;
  object-fit: contain;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(26, 43, 61, 0.12);
}
.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sun-light);
  color: #B45309;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 176, 32, 0.35);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 9vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--text);
}
.hero h1 span {
  color: var(--coral);
  display: block;
}
.hero-lead { font-size: clamp(16px, 2.5vw, 18px); color: var(--muted); margin-bottom: 16px; max-width: 540px; }
.hero-lead--secondary { margin-bottom: 24px; font-size: clamp(15px, 2.2vw, 17px); }
.hero-lead em { color: var(--text); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted); font-weight: 600; }
.hero-trust span { display: flex; align-items: center; gap: 6px; }

.hero-visual {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual.glow { border-color: rgba(0, 168, 186, 0.25); }
.hero-visual.floaty { animation: floatCard 6s ease-in-out infinite; }
.hero-ball {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 30px;
  animation: bobBall 3s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes bobBall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(10deg); }
}

.screen-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; font-weight: 700; }
.screen-event { font-weight: 800; font-size: 20px; margin-bottom: 14px; color: var(--text); }
.lb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.lb-row .rank { width: 26px; font-weight: 800; color: var(--muted); }
.lb-row .name { flex: 1; font-weight: 700; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-row .score { font-weight: 800; font-size: 18px; color: var(--teal); flex-shrink: 0; }
.lb-row.rank-1 .score { color: var(--green); }
.lb-row.rank-1 {
  background: var(--green-light);
  margin: 0 -10px;
  padding: 11px 10px;
  border-radius: 12px;
  border-bottom: none;
}
.lb-pulse {
  font-size: 11px;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 16px; }
.hero-stats div {
  text-align: center;
  padding: 10px 6px;
  background: var(--bg2);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.hero-stats strong { display: block; font-size: 20px; color: var(--teal-dark); }
.hero-stats span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }

/* Crawl route preview (hero) */
.crawl-preview .crawl-stop {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.crawl-preview .crawl-stop:last-of-type { border-bottom: none; }
.stop-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(0, 168, 186, 0.25);
}
.stop-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.stop-body strong { font-size: 15px; color: var(--text); }
.stop-hole { font-size: 13px; color: var(--muted); font-weight: 600; }
.stop-special { font-size: 12px; color: var(--teal-dark); font-weight: 700; }

/* Experience section */
.experience { background: linear-gradient(180deg, #fff, var(--bg2)); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 18px;
}
.exp-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.exp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.exp-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.exp-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.exp-card p { font-size: 14px; color: var(--muted); }
.experience-grid--six {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.spirit-box {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--green-light), var(--teal-light));
  border: 2px solid rgba(58, 158, 71, 0.25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.spirit-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.spirit-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.spirit-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 28px;
  position: relative;
  line-height: 1.45;
}
.spirit-list li::before {
  content: "⛳";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}

/* Audience cards with CTAs */
.audience-grid--three .audience-card { display: flex; flex-direction: column; }
.audience-grid--three .audience-card ul { flex: 1; margin-bottom: 20px; }
.audience-grid--three .audience-card .btn { width: 100%; margin-top: auto; }

/* Venue showcase */
.venue-showcase { background: var(--sun-light); }
.venue-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.venue-showcase-copy .section-tag { display: inline-block; margin-bottom: 10px; }
.venue-showcase-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.05;
}
.venue-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.venue-list li {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  padding-left: 22px;
  position: relative;
}
.venue-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.venue-card-demo {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.venue-card-demo__header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.venue-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.venue-card-demo__header strong { display: block; font-size: 17px; }
.venue-card-demo__header span { font-size: 13px; color: var(--muted); font-weight: 600; }
.venue-card-demo__hole { font-size: 14px; margin-bottom: 10px; color: var(--muted); }
.venue-card-demo__hole strong { color: var(--text); }
.venue-card-demo__desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.flash-special {
  background: var(--green-light);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 14px;
}
.venue-card-demo__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.venue-card-demo__tags .tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg2);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* Strip */
.strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, var(--teal-light), var(--coral-light), var(--sun-light));
}
.strip-inner p {
  text-align: center;
  font-size: clamp(16px, 3vw, 18px);
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
  padding: 0 8px;
}
.strip-inner strong { color: var(--text); font-weight: 800; }

/* Organizer purpose */
.organize-purpose {
  padding: clamp(48px, 8vw, 72px) 0;
  background: linear-gradient(180deg, var(--card) 0%, rgba(255, 255, 255, 0.6) 100%);
}
.organize-purpose__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
.organize-purpose__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.05;
}
.why-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.organize-purpose__list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.organize-purpose__list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.organize-purpose__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}
.organize-purpose__aside {
  display: grid;
  gap: 16px;
}
.organize-purpose__card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.organize-purpose__card--accent {
  border-color: var(--teal);
  background: linear-gradient(165deg, var(--teal-light), var(--card) 55%);
}
.organize-purpose__card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.organize-purpose__card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Audience */
.audience { background: rgba(255, 255, 255, 0.5); }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 20px; }
.audience-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.audience-card.highlight {
  border-color: var(--sun);
  background: linear-gradient(165deg, var(--sun-light), var(--card) 50%);
}
.audience-emoji { font-size: 36px; display: block; margin-bottom: 14px; }
.audience-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.audience-card > p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.audience-card ul { list-style: none; }
.audience-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.audience-card li::before { content: "→ "; color: var(--teal); font-weight: 800; }

/* Why */
.why { padding: 72px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.why-copy .section-tag { display: block; margin-bottom: 10px; }
.why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--text);
}
.why-lead { color: var(--muted); font-size: 17px; margin-bottom: 24px; }
.why-stats { display: grid; gap: 14px; }
.why-stat {
  padding: 16px 18px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 16px;
  border-left: 4px solid var(--teal);
  box-shadow: var(--shadow);
}
.why-stat strong { display: block; font-size: 20px; color: var(--teal-dark); margin-bottom: 2px; }
.why-stat span { font-size: 14px; color: var(--muted); }

.quote-stack { display: grid; gap: 16px; }
.quote-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0;
  box-shadow: var(--shadow);
}
.quote-card p { font-size: 16px; font-style: italic; color: var(--text); line-height: 1.55; margin-bottom: 12px; }
.quote-card footer { font-size: 13px; color: var(--muted); font-style: normal; font-weight: 600; }
.quote-card.accent {
  border-color: var(--coral);
  background: linear-gradient(135deg, var(--coral-light), var(--card));
}

/* Sections */
section { padding: 64px 0; }
.section-head { text-align: center; margin-bottom: 44px; padding: 0 8px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  margin-bottom: 10px;
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 999px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.05;
  color: var(--text);
}
.section-head p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 17px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 18px; }
.feature-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.feature-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-card.featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, var(--teal-light), var(--card) 40%);
}
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 15px; }
.feature-card--img {
  padding-top: 0;
  overflow: hidden;
}
.feature-card--img img {
  width: calc(100% + 44px);
  margin: 0 -22px 14px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.screens { background: linear-gradient(180deg, var(--bg-sky), transparent); }
.screen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 18px; }
.screen-card { text-align: center; padding: 16px 8px; }
.screen-mock {
  height: 120px;
  border-radius: 18px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--border);
  transition: transform 0.2s;
  color: var(--text);
}
.screen-mock span { font-size: 32px; }
.screen-card:hover .screen-mock { transform: scale(1.02); }
.screen-mock.bar { background: linear-gradient(135deg, var(--sun-light), #fff); }
.screen-mock.player { background: linear-gradient(135deg, var(--teal-light), var(--green-light)); }
.screen-mock.admin { background: linear-gradient(135deg, var(--coral-light), var(--teal-light)); }
.screen-mock.tv { background: linear-gradient(135deg, var(--green-light), var(--teal-light)); }

.screen-card--live {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.screen-card--live:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
  text-decoration: none;
}
.screen-preview {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: #fff;
  min-height: 180px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.screen-preview iframe {
  width: 100%;
  height: 200px;
  border: 0;
  pointer-events: none;
}
.screen-preview--ticker {
  min-height: 0;
  background: #12202c;
  border-color: rgba(26, 43, 61, 0.2);
}
.screen-preview--persona,
.screen-preview--tour {
  padding: 0;
  min-height: 0;
  background: #111;
}
.screen-preview--persona img,
.screen-preview--tour img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Mini live / course tickers (replaces marketing iframes) */
.demo-ticker {
  text-align: left;
  color: #F5F7FA;
  font-family: var(--font-body);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.demo-ticker__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(0, 168, 186, 0.22), transparent 70%);
}
.demo-ticker__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #12202c;
  background: #2DD4BF;
  padding: 3px 8px;
  border-radius: 4px;
}
.demo-ticker__live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #12202c;
  animation: demo-ticker-pulse 1.4s ease-in-out infinite;
}
.demo-ticker__live--course {
  background: #FFB020;
}
.demo-ticker__live--course::before { display: none; }
.demo-ticker__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: rgba(245, 247, 250, 0.92);
}
.demo-ticker__list {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  flex: 1;
}
.demo-ticker__list li {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}
.demo-ticker__list li:last-child { border-bottom: 0; }
.demo-ticker__list--course li {
  grid-template-columns: 28px 1fr;
}
.demo-ticker__rank {
  font-family: var(--font-display);
  font-size: 18px;
  color: #2DD4BF;
  letter-spacing: 0.02em;
}
.demo-ticker__name {
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-ticker__stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.demo-ticker__sub {
  font-size: 11px;
  color: rgba(245, 247, 250, 0.62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-ticker__meta {
  font-size: 11px;
  color: rgba(245, 247, 250, 0.55);
  font-variant-numeric: tabular-nums;
}
.demo-ticker__score {
  font-family: var(--font-display);
  font-size: 20px;
  color: #FFB020;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.demo-ticker__empty {
  display: block !important;
  padding: 28px 16px !important;
  color: rgba(245, 247, 250, 0.65);
  text-align: center;
  font-size: 13px;
}
@keyframes demo-ticker-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.screen-preview__emoji { font-size: 36px; }
.screen-preview__label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
}
.screen-card__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-dark);
}
.screen-card h3 { font-size: 16px; margin-bottom: 6px; font-weight: 800; }
.screen-card p { color: var(--muted); font-size: 14px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 20px; }
.step { text-align: center; padding: 20px 12px; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--teal-light), var(--green-light));
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 168, 186, 0.25);
}
.step h3 { font-size: 16px; margin-bottom: 6px; font-weight: 800; }
.step p { color: var(--muted); font-size: 14px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.pricing-grid--three {
  max-width: 1060px;
}
.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 20px 24px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing-note strong { color: var(--text); }
.price-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.highlight {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(0, 168, 186, 0.2);
  background: linear-gradient(180deg, var(--teal-light), var(--card) 35%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: #78350F;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card h3 { font-size: 20px; margin-bottom: 4px; font-weight: 800; }
.price-blurb { font-size: 14px; color: var(--muted); margin-bottom: 8px; min-height: 40px; }
.price-amount { font-family: var(--font-display); font-size: 48px; letter-spacing: 0.02em; color: var(--teal-dark); margin: 10px 0; }
.price-amount small { font-size: 16px; color: var(--muted); font-family: var(--font-body); }
.price-features { list-style: none; text-align: left; margin: 20px 0; }
.price-features li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--muted); font-size: 14px; }
.price-features li::before { content: "✓ "; color: var(--green); font-weight: 800; }
.price-card .btn { width: 100%; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 2px solid var(--border);
  padding: 2px 0;
  background: var(--card);
  margin-bottom: 8px;
  border-radius: 14px;
  padding: 0 18px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  font-size: 15px;
  color: var(--text);
  min-height: var(--touch);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); font-size: 15px; padding-bottom: 16px; line-height: 1.6; }
.faq-cat {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-dark);
  margin: 28px 0 12px;
}
.glossary-grid { display: grid; gap: 14px; max-width: 820px; margin: 0 auto; }
.glossary-item {
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.glossary-item dt { font-weight: 800; color: var(--teal-dark); margin-bottom: 8px; font-size: 16px; }
.glossary-item dd { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.cta-band {
  padding: 72px 0;
  text-align: center;
  background:
    radial-gradient(600px 350px at 50% 100%, rgba(0, 168, 186, 0.15), transparent 70%),
    linear-gradient(180deg, var(--sun-light), var(--bg2));
  border-top: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-band--photo {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(8, 16, 28, 0.78), rgba(8, 16, 28, 0.88)),
    var(--cta-bg) center / cover no-repeat;
  border-top: none;
}
.cta-emoji { display: block; font-size: 36px; margin-bottom: 14px; letter-spacing: 6px; }
.cta-inner { padding: 0 12px; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 6vw, 50px);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  color: var(--text);
}
.cta-inner p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 17px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band--photo .cta-inner,
.cta-band--photo .cta-inner h2,
.cta-band--photo .cta-inner p {
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.55),
    0 4px 20px rgba(0, 0, 0, 0.45);
}
.cta-band--photo .btn-primary { color: #fff; }
.cta-band--photo .btn-secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}
.cta-band--photo .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
  color: #fff;
}
.cta-inner .hero-actions { justify-content: center; }

.site-footer {
  border-top: 2px solid var(--border);
  padding: 36px 0 calc(36px + env(safe-area-inset-bottom));
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  background: var(--card);
}
.site-footer nav { margin-bottom: 14px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); font-weight: 600; padding: 4px 8px; }
.site-footer a:hover { color: var(--teal-dark); }

/* Tablet / phone — collapse header into Menu (no horizontal scroll) */
@media (max-width: 1024px) {
  .nav-cta-group { border-left: none; margin-left: 0; padding-left: 0; }
  .header-nav { gap: 4px; }

  body.nav-open { overflow: hidden; }

  .menu-btn { display: flex; align-items: center; justify-content: center; }
  .header-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    padding: 12px 0 4px;
    gap: 2px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    overflow: visible;
  }
  .header-nav.open,
  .header-nav.is-open { display: flex; }
  .header-nav a:not(.btn) {
    padding: 12px 8px;
    font-size: 16px;
    min-height: var(--touch);
    display: flex;
    align-items: center;
    border-radius: 10px;
  }
  .nav-cta-group {
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 10px;
    gap: 8px;
  }
  .header-nav .btn { width: 100%; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-copy { order: 1; }
  .route-disclosure--hero { order: 2; max-width: 480px; margin: 0 auto; width: 100%; }

  .thumb-rail {
    margin-top: -14px;
    padding: 14px 0 4px;
  }
  .thumb-rail__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .thumb-rail__link { flex: 0 0 auto; }
  .mosaic,
  .mosaic--tight {
    display: none;
  }
  .story-band__media {
    display: none;
  }
  .story-band__grid { grid-template-columns: 1fr; gap: 0; }
  .story-band {
    padding: 32px 0 24px;
  }
  .story-band__copy { text-align: center; }
  .story-band__copy p { margin-left: auto; margin-right: auto; }
  .story-band__copy .hero-actions { justify-content: center; }
  .viz-step,
  .viz-step--flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .viz-step > div { text-align: center; }
  .viz-step p { margin-left: auto; margin-right: auto; }

  .mkt-hero {
    min-height: min(78vh, 640px);
    align-items: flex-end;
  }
  .mkt-hero__inner {
    text-align: left;
    max-width: none;
  }
  .mkt-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .mkt-hero__actions .btn { width: 100%; }

  .route-disclosure > summary { list-style: none; cursor: pointer; }
  .route-disclosure > summary::-webkit-details-marker { display: none; }
  .route-disclosure__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 2px solid var(--border);
    background: var(--card);
    font-weight: 800;
    font-size: 15px;
    color: var(--teal-dark);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
  }
  .route-disclosure__summary::after {
    content: '▾';
    font-size: 12px;
    opacity: 0.7;
  }
  .route-disclosure[open] > .route-disclosure__summary::after {
    transform: rotate(180deg);
  }
  .route-disclosure:not([open]) .hero-visual {
    display: none;
  }

  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .organize-purpose__grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-stack { order: -1; }
  .venue-showcase-grid { grid-template-columns: 1fr; gap: 32px; }
  .venue-card-demo { order: -1; }
  section { padding: 52px 0; }
}

/* Mobile */
@media (max-width: 640px) {
  :root { --site-header-h: 64px; }

  .site-header {
    flex-wrap: wrap;
    padding: 10px 16px;
    z-index: 300;
  }
  .brand { font-size: 15px; }
  .brand img { height: 36px; }

  .hero { padding: 32px 0 40px; }
  .page-intro-actions .hero-actions { flex-direction: column; align-items: stretch; }
  .page-intro-actions .hero-actions .btn { width: 100%; }
  .page-intro-actions .hero-trust { justify-content: center; flex-direction: column; align-items: center; gap: 8px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { justify-content: center; flex-direction: column; align-items: center; gap: 8px; }
  .hero-visual.floaty { animation: none; }

  .strip-inner p { font-size: 16px; }
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 16px; }

  .cta-inner .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-inner .hero-actions .btn { width: 100%; }

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

/* Desktop: example route always visible, toggle hidden */
@media (min-width: 901px) {
  .route-disclosure__summary { display: none !important; }
  .route-disclosure { border: none; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats strong { font-size: 18px; }
  .lb-row .name { font-size: 13px; }
  .site-footer nav { gap: 12px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual.floaty, .hero-ball, .lb-pulse { animation: none; }
  .btn:hover, .feature-card:hover, .audience-card:hover, .price-card:hover { transform: none; }
}
