/* =========================================================================
   WeOutside — Luxury Marketing Site
   Dallas–Fort Worth Nightlife · Culture • Connection • Community
   Fonts match the app: Playfair Display (display) + Space Mono (everything else)
   ========================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg:            #0A0A0A;
  --bg-2:          #0d0d0f;
  --surface:       #141414;
  --surface-2:     #1a1a1c;
  --surface-3:     #1E1E1E;
  --border:        #2A2A2A;
  --hairline:      rgba(212, 175, 55, 0.16);
  --hairline-soft: rgba(255, 255, 255, 0.07);

  --gold:          #D4AF37;
  --gold-light:    #F0C75E;
  --gold-deep:     #A8842A;
  --orange:        #FF6B2C;
  --orange-hot:    #FF4500;
  --red:           #FF3B30;
  --live:          #FF3B30;
  --success:       #34C759;

  --text:          #F7F5EF;
  --text-soft:     rgba(247, 245, 239, 0.80);
  --text-muted:    #9a968c;
  --text-dim:      #6a675f;

  --grad-gold:  linear-gradient(135deg, #F0C75E 0%, #D4AF37 45%, #A8842A 100%);
  --grad-heat:  linear-gradient(90deg, #D4AF37 0%, #FF6B2C 55%, #FF4500 100%);
  --grad-text:  linear-gradient(180deg, #F7EED2 0%, #E7C766 55%, #C79B2E 100%);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-mono:    'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --font-body:    'Space Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --container: 1200px;
  --radius:    18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px -24px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 20px 60px -20px rgba(212, 175, 55, 0.30);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: -0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background: layered gold + heat glows + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(212, 175, 55, 0.13), transparent 60%),
    radial-gradient(900px 620px at 8% 6%, rgba(255, 69, 0, 0.07), transparent 58%),
    radial-gradient(1200px 900px at 50% 118%, rgba(212, 175, 55, 0.06), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(212, 175, 55, 0.28); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0c0c0c; }
::-webkit-scrollbar-thumb { background: #23211c; border-radius: 10px; border: 3px solid #0c0c0c; }
::-webkit-scrollbar-thumb:hover { background: #3a3427; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--gold);
  color: #1a1206;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.skip-link:focus { left: 16px; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad-heat);
  z-index: 150;
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
}

/* ---------- Cursor glow (desktop) ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 90;
  background: radial-gradient(circle, rgba(212,175,55,0.10), rgba(212,175,55,0.04) 40%, transparent 70%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  will-change: transform;
  mix-blend-mode: screen;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: clamp(70px, 10vw, 138px); position: relative; }
.section--tight { padding-block: clamp(54px, 8vw, 92px); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }

.h-display { font-size: clamp(2.9rem, 8vw, 6rem); line-height: 0.97; letter-spacing: -0.025em; }
.h-section { font-size: clamp(2.05rem, 5vw, 3.5rem); letter-spacing: -0.02em; }

.gold-text {
  background: linear-gradient(100deg, #C79B2E 0%, #F7EED2 25%, #E7C766 50%, #F7EED2 65%, #C79B2E 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }

.lead {
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 52ch;
  letter-spacing: -0.2px;
}
.section-head { max-width: 720px; margin-bottom: clamp(38px, 6vw, 62px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .h-section { margin-top: 18px; }
.section-head p { margin: 20px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid transparent;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn > * { position: relative; z-index: 1; }
.btn:active { transform: translateY(1px) scale(0.99); }

/* shine sweep */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transition: transform .75s var(--ease);
  z-index: 0;
}
.btn:hover::before { transform: translateX(120%) skewX(-18deg); }

.btn--gold {
  background: var(--grad-gold);
  color: #1a1206;
  box-shadow: 0 12px 34px -12px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px -14px rgba(212, 175, 55, 0.72), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}
.btn--ghost::before { background: linear-gradient(90deg, transparent, rgba(212,175,55,0.18), transparent); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn--lg { --pad-y: 18px; padding-inline: 36px; font-size: 12.5px; }
.btn--sm { --pad-y: 11px; padding-inline: 20px; font-size: 11px; min-height: 44px; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s, transform .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.74);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hairline);
}
.nav.nav--hidden { transform: translateY(-100%); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(212,175,55,.25)); }
.brand__word { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; letter-spacing: 0.01em; line-height: 1; }
.brand__word b { color: var(--gold); font-weight: 700; }
.brand__tag {
  display: block; font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 2.4px; color: var(--text-muted); text-transform: uppercase; margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-soft); position: relative; transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none; background: #161616; border: 1px solid rgba(212,175,55,0.55);
  border-radius: 12px;
  width: 44px; height: 44px; color: var(--gold-light); align-items: center; justify-content: center;
  box-shadow: 0 4px 16px -6px rgba(0,0,0,0.7);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav__toggle:hover, .nav__toggle[aria-expanded="true"] { background: rgba(212,175,55,0.18); border-color: var(--gold); }
.nav__toggle svg { width: 20px; height: 20px; }

.mobile-menu {
  position: fixed; inset: 72px 0 auto 0; z-index: 99;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
  transform: translateY(-120%); visibility: hidden;
  transition: transform .45s var(--ease), visibility .45s;
  padding: 18px 24px 30px;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
@media (min-width: 1025px) { .mobile-menu { display: none; } }
.mobile-menu ul { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 4px; }
.mobile-menu a {
  display: block; padding: 14px 8px; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--text-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.mobile-menu .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(126px, 17vw, 200px);
  padding-bottom: clamp(64px, 9vw, 116px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0.72) 45%, rgba(10,10,10,0.94) 88%, var(--bg) 100%),
    image-set(url("../img/dallas-skyline.jpg") 1x);
  background-size: cover;
  background-position: center 30%;
  animation: kenburns 40s ease-in-out infinite alternate;
  will-change: transform;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 82% 8%, rgba(212,175,55,0.16), transparent 60%);
}
@keyframes kenburns {
  0%   { transform: scale(1.06) translateY(0); }
  100% { transform: scale(1.16) translateY(-14px); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__copy .lead { max-width: 46ch; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid var(--hairline); border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.07); backdrop-filter: blur(6px);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--text-soft); margin-bottom: 30px;
}
.hero h1 { margin-bottom: 26px; }
.hero__sub { margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note {
  margin-top: 26px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px 10px;
  min-width: 0; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .4px; color: var(--text-muted);
}

.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--live);
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6); animation: pulse 2s infinite; flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* ---------- Phone: real app welcome screen ---------- */
.hero__media { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(320px, 82%);
  aspect-ratio: 10 / 20.4;
  border-radius: 46px;
  padding: 12px;
  background: linear-gradient(160deg, #26221a, #0b0a08 62%);
  border: 1px solid rgba(212,175,55,0.24);
  box-shadow: var(--shadow-soft), 0 0 100px -34px rgba(212,175,55,0.5);
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone::before {
  content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 6px; border-radius: 6px; background: #050505; z-index: 4;
}
.phone__screen {
  height: 100%; border-radius: 36px; overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,0.06); background: #0a0a0a;
  display: flex; flex-direction: column;
}

/* real app welcome recreation */
.appw { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px 18px 20px; }
.appw__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.15) 42%, rgba(10,10,10,0.86) 78%, #0a0a0a 100%),
    url("../img/dallas-skyline.jpg");
  background-size: cover; background-position: center 34%;
}
.appw__logo { position: relative; z-index: 1; width: 118px; margin: 0 auto; }
.appw__hero { position: relative; z-index: 1; flex: 1; display: flex; align-items: center; justify-content: center; }
.appw__foot { position: relative; z-index: 1; }
.appw__divider { width: 30px; height: 1px; background: var(--gold); opacity: .85; margin: 0 0 12px; }
.appw__tag {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgba(255,255,255,0.74); margin-bottom: 16px;
}
.appw__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; border-radius: 999px; font-family: var(--font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: .3px; margin-bottom: 9px;
}
.appw__btn--phone { background: #F7F5EF; color: #0a0a0a; }
.appw__btn--google { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); color: #F7F5EF; }
.appw__btn--google .g {
  width: 17px; height: 17px; border-radius: 50%; background: #fff; color: #4285F4;
  display: grid; place-items: center; font-weight: 700; font-size: 10px; font-family: var(--font-display);
}
.appw__link { text-align: center; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.72); margin: 6px 0 12px; }
.appw__legal { text-align: center; font-family: var(--font-mono); font-size: 7.5px; line-height: 1.5; color: rgba(255,255,255,0.4); }
.phone__reflect {
  position: absolute; inset: 0; z-index: 5; pointer-events: none; border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), transparent 34%);
}

/* ---------- Marquee (neighborhoods) ---------- */
.marquee { border-block: 1px solid var(--hairline); padding-block: 20px; overflow: hidden; background: rgba(255,255,255,0.012); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap;
}
.marquee__item b { color: var(--gold); font-weight: 700; }
.marquee__item .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline); border-radius: var(--radius-lg); overflow: hidden;
}
.stat { background: var(--bg); padding: 34px 26px; text-align: center; }
.stat__num {
  font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); margin-top: 12px;
}

/* ---------- Flyers section (real events) ---------- */
.flyers-band { overflow: hidden; }
.flyer-row { display: flex; gap: 20px; width: max-content; padding: 6px 0; }
.flyer-row--a { animation: flyscroll 56s linear infinite; }
.flyer-row--b { animation: flyscroll 68s linear infinite reverse; margin-top: 20px; }
.flyers-viewport:hover .flyer-row { animation-play-state: paused; }
@keyframes flyscroll { to { transform: translateX(-50%); } }
.flyers-viewport { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }

.flyer {
  position: relative; flex: none; width: 232px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--hairline); background: var(--surface);
  box-shadow: 0 18px 40px -24px rgba(0,0,0,0.9);
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.flyer img { width: 100%; height: 300px; object-fit: cover; display: block; }
.flyer:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(212,175,55,0.5); box-shadow: 0 30px 60px -26px rgba(212,175,55,0.35); }
.flyer__cap {
  position: absolute; inset: auto 0 0 0; padding: 30px 14px 13px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.92));
  transform: translateY(8px); opacity: 0; transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.flyer:hover .flyer__cap { opacity: 1; transform: none; }
.flyer__name { font-family: var(--font-display); font-size: 1.02rem; line-height: 1.1; }
.flyer__meta { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-light); margin-top: 5px; }
.flyer__live {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 7.5px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 8px; border-radius: 999px; background: rgba(10,10,10,0.7); backdrop-filter: blur(4px);
  color: #fff; border: 1px solid var(--hairline);
}
.flyer__live .live-dot { width: 6px; height: 6px; }

/* ---------- Heat section ---------- */
.heat-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 78px); align-items: center; }
.heat-scale {
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-soft);
}
.heat-scale__bar {
  height: 16px; border-radius: 999px;
  background: linear-gradient(90deg, #3a3a3a 0%, #D4AF37 32%, #FF6B2C 66%, #FF4500 100%);
  position: relative; margin: 12px 0 8px; box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.heat-scale__knob {
  position: absolute; top: 50%; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--orange-hot); transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(255,69,0,0.5); transition: left 1.6s var(--ease); left: 8%;
}
.heat-scale__ticks {
  display: flex; justify-content: space-between; font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-top: 14px;
}
.heat-scale__ticks span { flex: 1; text-align: center; }
.heat-scale__ticks span:first-child { text-align: left; }
.heat-scale__ticks span:last-child { text-align: right; }
.heat-readout { display: flex; align-items: baseline; gap: 14px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--hairline-soft); }
.heat-readout__score {
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1;
  background: var(--grad-heat); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.heat-readout__label { font-family: var(--font-mono); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); font-size: 12px; }
.heat-list { display: grid; gap: 18px; margin-top: 12px; }
.heat-list__item { display: flex; gap: 16px; align-items: flex-start; }
.heat-list__chip {
  flex: none; font-family: var(--font-mono); font-size: 9px; font-weight: 700; letter-spacing: 1px;
  padding: 6px 10px; border-radius: 8px; min-width: 94px; text-align: center;
}
.chip-chill { background: rgba(255,255,255,0.07); color: var(--text-soft); }
.chip-active { background: rgba(240,199,94,0.16); color: var(--gold-light); }
.chip-heating { background: rgba(255,107,44,0.18); color: var(--orange); }
.chip-turnt { background: linear-gradient(90deg, rgba(255,107,44,0.28), rgba(255,69,0,0.28)); color: #ff8a5c; }
.heat-list__item p { margin: 0; font-size: 13px; color: var(--text-soft); }
.heat-list__item strong { color: var(--text); font-weight: 700; }

/* ---------- Feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  position: relative; border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  padding: 34px 30px 32px; overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s;
  transform-style: preserve-3d;
}
.feature::after {
  content: ""; position: absolute; inset: -1px -1px auto -1px; height: 2px;
  background: var(--grad-heat); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.feature:hover { border-color: rgba(212,175,55,0.4); background: linear-gradient(180deg, rgba(212,175,55,0.05), rgba(255,255,255,0.008)); }
.feature:hover::after { transform: scaleX(1); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(212,175,55,0.16), rgba(212,175,55,0.03));
  border: 1px solid var(--hairline); margin-bottom: 22px; color: var(--gold-light);
}
.feature__icon svg { width: 25px; height: 25px; }
.feature__tag {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); position: absolute; top: 30px; right: 28px;
}
.feature h3 { font-size: 1.5rem; margin-bottom: 12px; }
.feature p { margin: 0; font-size: 13px; color: var(--text-soft); line-height: 1.7; }

.spotlight {
  grid-column: span 3; display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px); align-items: center; padding: clamp(34px, 4vw, 52px);
}
.spotlight__media {
  border-radius: var(--radius); border: 1px solid var(--hairline);
  background: radial-gradient(120% 100% at 100% 0%, rgba(255,69,0,0.14), transparent 55%), var(--surface);
  aspect-ratio: 4 / 3; position: relative; overflow: hidden; display: grid; place-items: center;
}
/* radar sweep */
.spotlight__media::before {
  content: ""; position: absolute; inset: -30%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(212,175,55,0.14) 40deg, transparent 80deg);
  animation: radar 6s linear infinite;
}
@keyframes radar { to { transform: rotate(360deg); } }
.map-pin { position: absolute; width: 14px; height: 14px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); z-index: 1; }
.map-pin::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: rgba(0,0,0,0.35); }
.map-pin--pulse { animation: pinpulse 2.4s var(--ease) infinite; }
@keyframes pinpulse { 0%,100% { transform: rotate(-45deg) scale(1); } 50% { transform: rotate(-45deg) scale(1.28); } }
.spotlight__media > span:last-child { position: relative; z-index: 1; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { border: 1px solid var(--hairline); border-radius: var(--radius-lg); background: var(--surface); padding: 40px 30px 34px; position: relative; overflow: hidden; }
.step::before {
  counter-increment: step; content: "0" counter(step); font-family: var(--font-display);
  font-size: 3.4rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,0.5);
  display: block; margin-bottom: 20px;
}
.step h3 { font-size: 1.42rem; margin-bottom: 10px; }
.step p { margin: 0; font-size: 13px; color: var(--text-soft); }

/* ---------- Level ladder ---------- */
.levels { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.ladder { display: grid; gap: 10px; }
.rung {
  display: flex; align-items: center; gap: 16px; padding: 15px 20px;
  border: 1px solid var(--hairline-soft); border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.rung:hover { transform: translateX(8px); border-color: rgba(212,175,55,0.4); background: linear-gradient(90deg, rgba(212,175,55,0.08), transparent); }
.rung__lvl {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 1px;
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px;
  background: linear-gradient(160deg, rgba(212,175,55,0.2), rgba(212,175,55,0.04));
  border: 1px solid var(--hairline); color: var(--gold-light); flex: none;
}
.rung__title { font-family: var(--font-display); font-size: 1.28rem; }
.rung__xp { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: .5px; }
.rung--flame .rung__lvl { background: linear-gradient(160deg, rgba(255,107,44,0.35), rgba(255,69,0,0.12)); border-color: rgba(255,69,0,0.4); color: #ff8a5c; }
.rung--flame .rung__title { background: var(--grad-heat); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Promoter / B2B ---------- */
.promoter {
  border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  background: radial-gradient(90% 140% at 100% 0%, rgba(212,175,55,0.10), transparent 55%), linear-gradient(180deg, var(--surface), var(--bg-2));
  padding: clamp(38px, 5vw, 66px); display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 58px); align-items: center; box-shadow: var(--shadow-soft);
}
.promoter__list { display: grid; gap: 18px; margin: 30px 0 0; padding: 0; list-style: none; }
.promoter__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 13px; color: var(--text-soft); }
.check { flex: none; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: rgba(52,199,89,0.14); color: var(--success); margin-top: 1px; }
.check svg { width: 13px; height: 13px; }
.promoter__panel { border: 1px solid var(--hairline); border-radius: var(--radius); background: rgba(10,10,10,0.5); padding: 30px; }
.promoter__panel h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin: 0 0 20px; }
.metric { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid var(--hairline-soft); }
.metric:last-child { border-bottom: none; }
.metric__k { font-size: 12px; color: var(--text-soft); }
.metric__v { font-family: var(--font-display); font-size: 1.7rem; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--hairline); border-radius: 16px; background: var(--surface); overflow: hidden; transition: border-color .3s; }
.faq__item[open] { border-color: rgba(212,175,55,0.35); }
.faq__q {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 1.16rem; color: var(--text);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; border: 1px solid var(--hairline); border-radius: 8px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--gold); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity .3s, transform .3s; }
.faq__icon::before { width: 11px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 11px; }
.faq__item[open] .faq__icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq__a { padding: 0 26px 24px; color: var(--text-soft); font-size: 13px; line-height: 1.75; max-width: 66ch; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(52px, 8vw, 96px) clamp(28px, 5vw, 72px); text-align: center; border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(10,10,10,0.66), rgba(10,10,10,0.9)),
    url("../img/dallas-skyline.jpg");
  background-size: cover; background-position: center 40%;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 160% at 50% 120%, rgba(212,175,55,0.22), transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band__logo { width: 96px; height: auto; aspect-ratio: 600 / 527; margin: 0 auto 24px; opacity: .95; filter: drop-shadow(0 6px 20px rgba(212,175,55,.35)); }
.cta-band h2 { font-size: clamp(2.3rem, 5.5vw, 4rem); margin-bottom: 20px; }
.cta-band p { margin: 0 auto 38px; max-width: 44ch; color: var(--text-soft); }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); padding-block: clamp(56px, 7vw, 84px) 40px; margin-top: clamp(40px, 6vw, 80px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { color: var(--text-muted); font-size: 13px; max-width: 32ch; }
.footer__brand .eyebrow { margin-top: 22px; color: var(--text-muted); }
.footer__brand .eyebrow::before { background: linear-gradient(90deg, transparent, var(--text-muted)); }
.footer__col h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer__col a { font-size: 13px; color: var(--text-muted); transition: color .3s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 26px; border-top: 1px solid var(--hairline-soft);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.footer__bottom p { margin: 0; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .5px; color: var(--text-muted); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 44px; height: 44px; border: 1px solid var(--hairline); border-radius: 11px; display: grid; place-items: center; color: var(--text-muted); transition: all .3s var(--ease); }
.footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }

/* ---------- Legal pages ---------- */
.legal-hero { padding-top: clamp(130px, 16vw, 180px); padding-bottom: clamp(30px, 4vw, 48px); border-bottom: 1px solid var(--hairline); }
.legal-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 18px 0 16px; }
.legal-hero p { color: var(--text-muted); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .5px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; padding-block: clamp(46px, 6vw, 72px); }
.legal-toc { position: sticky; top: 100px; border: 1px solid var(--hairline); border-radius: var(--radius); padding: 22px; background: var(--surface); }
.legal-toc h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin: 0 0 16px; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; display: grid; gap: 3px; }
.legal-toc a { display: block; padding: 8px 10px; border-radius: 9px; font-size: 12px; color: var(--text-muted); counter-increment: toc; transition: all .25s; line-height: 1.4; }
.legal-toc a::before { content: counter(toc, decimal-leading-zero) "  "; font-family: var(--font-mono); font-size: 10px; color: var(--gold); }
.legal-toc a:hover, .legal-toc a.active { color: var(--text); background: rgba(212,175,55,0.08); }

.legal-body { max-width: 760px; }
.legal-body .intro { font-size: 1rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 40px; padding-bottom: 34px; border-bottom: 1px solid var(--hairline-soft); }
.legal-section { margin-bottom: 48px; scroll-margin-top: 100px; }
.legal-section h2 { font-size: 1.65rem; margin-bottom: 18px; display: flex; align-items: baseline; gap: 14px; }
.legal-section h2 .num { font-family: var(--font-mono); font-size: 12px; color: var(--gold); font-style: normal; }
.legal-section h3 { font-family: var(--font-mono); font-weight: 700; font-size: 0.92rem; letter-spacing: .3px; color: var(--text); margin: 26px 0 10px; text-transform: uppercase; }
.legal-body p { color: var(--text-soft); margin: 0 0 16px; font-size: 14px; line-height: 1.85; }
.legal-body ul { margin: 0 0 18px; padding-left: 0; list-style: none; display: grid; gap: 11px; }
.legal-body ul li { position: relative; padding-left: 26px; color: var(--text-soft); font-size: 14px; line-height: 1.75; }
.legal-body ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.legal-body a.inline { color: var(--gold-light); border-bottom: 1px solid rgba(240,199,94,0.35); }
.legal-body a.inline:hover { border-bottom-color: var(--gold-light); }
.legal-body strong { color: var(--text); }
.legal-callout { border: 1px solid var(--hairline); border-left: 3px solid var(--gold); border-radius: 12px; background: rgba(212,175,55,0.05); padding: 20px 24px; margin: 24px 0; }
.legal-callout p { margin: 0; font-size: 13px; color: var(--text-soft); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* tilt */
.tilt { transition: transform .3s var(--ease); transform-style: preserve-3d; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .phone { width: min(290px, 74%); }
  .heat-wrap { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .spotlight { grid-column: span 2; grid-template-columns: 1fr; }
  .levels { grid-template-columns: 1fr; }
  .promoter { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer__brand { grid-column: span 2; }
  .cursor-glow { display: none; }
}
@media (max-width: 1024px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 720px) {
  .nav__inner { gap: 12px; }
  .brand__tag { display: none; }
  .brand__logo { width: 34px; height: 34px; }
  .features { grid-template-columns: 1fr; }
  .spotlight { grid-column: span 1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .heat-list__chip { min-width: 86px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta-band .hero__actions { flex-direction: column; }
  .nav__cta .btn--gold { display: none; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .heat-list__item { flex-direction: column; gap: 8px; }
  .container { padding-inline: 16px; }
  .nav__inner { gap: 8px; }
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg, .phone, .flyer-row, .gold-text, .spotlight__media::before { animation: none !important; }
  .cursor-glow, .scroll-progress { display: none; }
}
