/* Barometer XP — Let's Talk Play (QR-chip landing).
   Standalone page. Reuses the discover brand tokens + shell, no scene engine. */

@font-face {
  font-family: 'Nunito Sans';
  src: url('fonts/nunito-sans.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --pink: #E91E8C;
  --pink-hot: #ff8fc7;
  --pink-hover: #ff3fa4;
  --pink-light: rgba(233, 30, 140, 0.12);
  --bg-page: #0d0d0d;
  --bg-card: #161616;
  --bg-raised: #1f1f1f;
  --text-1: #f5f5f5;
  --text-2: #a3a0a6;
  --border-1: #2a2a2a;
  --border-2: #444444;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font: 'Nunito Sans', 'Segoe UI', system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg-page); color: var(--text-1); font-family: var(--font); font-size: 16px; line-height: 1.6; margin: 0; }
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ═══════ header / shell ═══════ */
header.site { position: sticky; top: 0; z-index: 40; background: rgba(13,13,13,0.85); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(42,42,42,0.6); }
.site-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 56px; }
.wordmark { flex: 1; text-decoration: none; color: var(--text-1); display: flex; align-items: center; }
.wordmark img { height: 34px; width: auto; display: block; }
.purpose { font-weight: 800; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pink-hot); white-space: nowrap; }
.nav-cta { flex: 1; text-align: right; }
.btn { display: inline-block; background: var(--pink); color: #fff; font-family: inherit; font-weight: 800; font-size: 15px; border: none; border-radius: var(--radius-md); padding: 11px 24px; cursor: pointer; text-decoration: none; transition: background 0.15s ease; }
.btn:hover { background: var(--pink-hover); }
.btn:focus-visible { outline: 2px solid var(--pink-hot); outline-offset: 3px; }
.btn.small { font-size: 14px; padding: 8px 16px; }
.btn.ghost { background: transparent; border: 1px solid var(--pink); color: var(--pink-hot); }
.btn.ghost:hover { background: var(--pink-light); }

section { padding: 44px 0; }
.sect-title { font-size: clamp(18px, 2.2vw, 22px); font-weight: 900; margin: 0 0 18px; text-wrap: balance; }
.sect-lede { color: var(--text-2); font-size: 15px; margin: -8px 0 22px; max-width: 60ch; text-wrap: pretty; }
.band { background: #1a1622; border-top: 1px solid var(--pink); box-shadow: inset 0 40px 70px -45px rgba(233, 30, 140, 0.45); }

/* ═══════ hero ═══════ */
.hero { text-align: center; padding: 58px 0 32px; }
.hero h1 { font-size: clamp(30px, 6vw, 48px); font-weight: 900; line-height: 1.08; margin: 0 0 14px; text-wrap: balance; }
.hero h1 .xp { color: var(--pink); }
.hero-sub { color: var(--text-2); font-size: clamp(15px, 1.6vw, 17px); max-width: 46ch; margin: 0 auto; text-wrap: pretty; }

/* pulsing scroll cue that carries the eye from the hero into the hosts + booking */
.scroll-cue { display: flex; justify-content: center; margin-top: 34px; }
.scroll-cue svg { width: 30px; height: 30px; stroke: var(--pink-hot); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0.6; animation: cuebob 1.9s ease-in-out infinite; }
@keyframes cuebob { 0%, 100% { transform: translateY(-3px); opacity: 0.4; } 50% { transform: translateY(5px); opacity: 0.9; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue svg { animation: none; opacity: 0.7; } }

/* ═══════ hosts ═══════ */
.hosts-sect { padding-top: 8px; }
.hosts-lede { text-align: center; color: var(--text-2); font-size: 14px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 18px; }
.hosts { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.host { display: flex; gap: 16px; align-items: center; background: var(--bg-card); border: 1px solid var(--border-1); border-radius: var(--radius-lg); padding: 16px 20px; max-width: 400px; flex: 1 1 340px; }
.host img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--pink); }
.host-body { min-width: 0; }
.host .name { font-size: 18px; font-weight: 900; margin: 0; }
.host .role { color: var(--text-2); font-size: 12.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin: 2px 0 10px; }
.host .li { display: inline-flex; align-items: center; gap: 6px; color: var(--pink-hot); font-weight: 800; font-size: 13.5px; text-decoration: none; }
.host .li:hover { color: var(--pink-hover); }
.host .li svg { width: 16px; height: 16px; }

/* ═══════ calendly ═══════ */
#calendly { height: 1080px; border: 1px solid var(--border-1); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); margin-top: 6px; }
.calendly-inline-widget { min-width: 320px; width: 100%; height: 100%; }
.book-fallback { color: var(--text-2); font-size: 13.5px; text-align: center; margin: 14px 0 0; }

/* ═══════ explore banner (3 cards) ═══════ */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.xcard { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border-1); border-radius: var(--radius-lg); padding: 22px 22px 24px; transition: border-color 0.15s ease, transform 0.15s ease; }
.xcard:hover { border-color: var(--pink); transform: translateY(-2px); }
.xcard .xicon { width: 34px; height: 34px; color: var(--pink-hot); margin-bottom: 12px; }
.xcard h3 { font-size: 17px; font-weight: 900; margin: 0 0 7px; }
.xcard p { color: var(--text-2); font-size: 14px; line-height: 1.5; margin: 0 0 18px; flex: 1; }
.xcard .xlink { align-self: flex-start; color: var(--pink-hot); font-weight: 800; font-size: 14px; text-decoration: none; }
.xcard .xlink:hover { color: var(--pink-hover); }
.xcard .xlink::after { content: ' →'; }

/* ═══════ footer ═══════ */
footer.site { border-top: 1px solid var(--border-1); padding: 26px 0 40px; color: var(--text-2); font-size: 14px; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; }
.foot-logo { height: 24px; width: auto; display: block; opacity: 0.9; }
footer.site a { color: var(--text-2); }
footer.site a:hover { color: var(--pink-hover); }

/* ═══════ responsive ═══════ */
@media (max-width: 760px) {
  .explore-grid { grid-template-columns: 1fr; }
  .host { flex: 1 1 100%; }
  #calendly { height: 920px; }
  .hero { padding: 40px 0 24px; }
}
