/* ═══════════════════════════════════════════════════════════════════
   BAILAMOS! — marketing site
   Brand: warm, community-first. Salsa / Bachata / Latin social.
   Three switchable directions via [data-direction] on <html>.
   ═══════════════════════════════════════════════════════════════════ */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- theme tokens (EDITORIAL — default) ---------- */
:root {
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  --merlot: #5E1B25;
  --terra:  #D8623C;
  --terra-deep: #C2502C;
  --gold:   #BC8636;
  --sage:   #5F7A66;

  --page:        #F3E9D8;
  --page-alt:    #EADCC4;
  --hero:        radial-gradient(120% 90% at 78% 8%, #F8EEDC 0%, #F1E3CB 55%, #EAD9BC 100%);
  --surface:     #FFFDF9;
  --surface-2:   #FBF2E3;
  --line:        #E0D0B5;
  --line-strong: #D2BE9C;

  --display:  #4A1620;            /* big serif headlines */
  --text:     #2A1A14;
  --text-soft:#5C453C;
  --muted:    #937F71;

  --accent:      #D8623C;
  --accent-deep: #C2502C;
  --accent-soft: #F4D7C5;
  --on-accent:   #FFF6EE;

  --shadow-card: 0 22px 50px -26px rgba(74,22,32,0.40), 0 3px 10px rgba(74,22,32,0.06);
  --shadow-soft: 0 12px 30px -16px rgba(74,22,32,0.28);
  --shadow-pill: 0 12px 26px -10px rgba(216,98,60,0.50);

  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;

  --maxw: 1180px;
  --display-weight: 500;
  --display-italic: italic;
}

/* ---------- NIGHTLIFE — dark, vibrant, dramatic ---------- */
[data-direction="nightlife"] {
  --page:        #1A0C10;
  --page-alt:    #25121A;
  --hero:        radial-gradient(120% 100% at 75% 0%, #5E1B25 0%, #2E1117 48%, #160A0E 100%);
  --surface:     #271419;
  --surface-2:   #311A20;
  --line:        rgba(255,236,226,0.12);
  --line-strong: rgba(255,236,226,0.22);

  --display:  #FBEAD7;
  --text:     #F6E9DC;
  --text-soft:#D8C2B6;
  --muted:    #A98E83;

  --accent:      #E8794E;
  --accent-deep: #D8623C;
  --accent-soft: rgba(216,98,60,0.18);
  --on-accent:   #1A0C10;
  --gold:        #E0B25C;

  --shadow-card: 0 30px 60px -28px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.4);
  --shadow-soft: 0 16px 40px -20px rgba(0,0,0,0.6);
  --shadow-pill: 0 14px 30px -10px rgba(216,98,60,0.6);
}

/* ---------- CLEAN — bright, minimal, product-led ---------- */
[data-direction="clean"] {
  --page:        #FBFAF7;
  --page-alt:    #F3F1EB;
  --hero:        linear-gradient(180deg, #FFFFFF 0%, #F7F5F0 100%);
  --surface:     #FFFFFF;
  --surface-2:   #F6F4EE;
  --line:        #ECE7DD;
  --line-strong: #DFD8CA;

  --display:  #20140F;
  --text:     #20140F;
  --text-soft:#52443C;
  --muted:    #9B8F82;

  --accent:      #D8623C;
  --accent-deep: #C2502C;
  --accent-soft: #F6E2D6;
  --on-accent:   #FFFFFF;

  --shadow-card: 0 24px 60px -30px rgba(40,28,20,0.30), 0 2px 8px rgba(40,28,20,0.05);
  --shadow-soft: 0 14px 36px -20px rgba(40,28,20,0.20);
  --shadow-pill: 0 12px 26px -12px rgba(216,98,60,0.40);

  --display-italic: normal;
}

/* ═══════════════════════════ base ═══════════════════════════ */
body {
  font-family: var(--sans);
  background: var(--page);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.serif {
  font-family: var(--serif);
  font-style: var(--display-italic);
  font-weight: var(--display-weight);
  color: var(--display);
  letter-spacing: -0.01em;
  line-height: 1.04;
}

.eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 800; font-size: 15px; letter-spacing: 0.01em; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-pill); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(216,98,60,0.6); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line-strong); box-shadow: var(--shadow-soft); }
.btn-ghost:hover { transform: translateY(-2px); }

/* app store pills */
.stores { display: flex; gap: 14px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 18px; border-radius: 14px;
  background: var(--display); color: var(--page);
  box-shadow: var(--shadow-soft); transition: transform .18s ease;
}
[data-direction="nightlife"] .store { background: #0E0709; color: #F6E9DC; border: 1px solid rgba(255,255,255,0.08); }
.store:hover { transform: translateY(-2px); }
.store svg { width: 26px; height: 26px; flex-shrink: 0; }
.store .lab { line-height: 1.1; text-align: left; }
.store .lab .s { font-size: 10px; opacity: 0.75; font-weight: 600; display: block; margin-bottom: 3px; }
.store .lab .b { font-size: 16px; font-weight: 800; letter-spacing: 0.01em; }

/* ═══════════════════════════ nav ═══════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--page) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(150deg, #E0714A 0%, #C2391F 45%, #7E1530 100%);
  display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(150,40,30,0.6);
  position: relative; overflow: hidden;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 30% 20%, rgba(255,220,180,0.5), transparent 60%);
}
.brand .mark span { font-family: var(--serif); font-style: italic; font-size: 22px; color: #FFE9C9; position: relative; z-index: 1; }
.brand .word { font-family: var(--serif); font-style: italic; font-size: 27px; font-weight: 500; color: var(--display); letter-spacing: -0.01em; }
.brand .word b { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text-soft); transition: color .15s ease; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; }

/* ═══════════════════════════ hero ═══════════════════════════ */
.hero { background: var(--hero); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 88% 80%, color-mix(in srgb, var(--terra) 14%, transparent), transparent 70%),
    radial-gradient(30% 40% at 8% 18%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  padding: 64px 0 80px;
}
.hero-copy { max-width: 560px; }
.hero h1 { font-size: clamp(48px, 6.2vw, 84px); margin: 22px 0 0; }
.hero h1 .accent { color: var(--accent); }
.launch-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  padding: 10px 18px 10px 14px; border-radius: 999px;
  background: var(--accent-soft); border: 1.5px solid var(--accent);
  color: var(--accent-deep); font-size: 15px; font-weight: 800; letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -14px rgba(216,98,60,0.55);
}
.launch-badge svg { width: 17px; height: 17px; }
.launch-badge b { font-weight: 800; }
.launch-badge .lb-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(216,98,60,0.55); animation: pulseDot 2s ease-out infinite; }
@media (prefers-reduced-motion: reduce) { .launch-badge .lb-dot { animation: none; } }
.hero .lede { font-size: 19px; color: var(--text-soft); margin-top: 22px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 32px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; color: var(--text-soft); font-size: 13.5px; font-weight: 600; }
.proof-dots { display: flex; }
.proof-dots span {
  width: 30px; height: 30px; border-radius: 50%; margin-left: -8px;
  border: 2px solid var(--page); background: var(--accent-soft);
  display: grid; place-items: center; font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 14px;
}
.proof-dots span:first-child { margin-left: 0; }

.hero-art { display: flex; justify-content: center; position: relative; }

/* ═══════════════════════════ section scaffold ═══════════════════════════ */
section { position: relative; }
.band { padding: 96px 0; }
.band.alt { background: var(--page-alt); }
.sec-head { max-width: 680px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 4.4vw, 56px); margin-top: 14px; }
.sec-head p { font-size: 18px; color: var(--text-soft); margin-top: 18px; }

/* ═══════════════════════════ problem one-two ═══════════════════════════ */
.problem-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; }
.problem-count { font-family: var(--serif); font-style: italic; font-size: 120px; line-height: 0.8; color: var(--accent-soft); }
[data-direction="nightlife"] .problem-count { color: rgba(216,98,60,0.22); }

.problems { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.problem-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 0; overflow: hidden; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.problem-vis { height: 270px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.problem-body { padding: 30px 32px 34px; }
.problem-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.problem-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.problem-card h3 { font-family: var(--serif); font-style: var(--display-italic); font-weight: var(--display-weight); color: var(--display); font-size: 30px; line-height: 1.08; }
.problem-card p { font-size: 15.5px; color: var(--text-soft); margin-top: 14px; }

/* problem visual 1 — confused map of pins with no link */
.vis-map { position: absolute; inset: 0; background:
  repeating-linear-gradient(0deg, color-mix(in srgb, var(--muted) 8%, transparent) 0 1px, transparent 1px 38px),
  repeating-linear-gradient(90deg, color-mix(in srgb, var(--muted) 8%, transparent) 0 1px, transparent 1px 38px),
  var(--surface-2);
}
.vis-map .qm {
  position: absolute; font-family: var(--serif); font-style: italic; color: var(--muted);
  opacity: 0.5; font-size: 40px;
}
.pin {
  position: absolute; width: 34px; height: 34px; border-radius: 50% 50% 50% 2px;
  transform: rotate(45deg); border: 2px dashed var(--line-strong); background: var(--surface);
  display: grid; place-items: center;
}
.pin i { transform: rotate(-45deg); font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 15px; }

/* problem visual 2 — locked social posts */
.vis-social { position: absolute; inset: 0; background: var(--surface-2); padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: center; }
.post {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px;
  position: relative; box-shadow: var(--shadow-soft);
}
.post .row { display: flex; align-items: center; gap: 8px; }
.post .ava { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(140deg, var(--merlot), var(--terra)); flex-shrink: 0; }
.post .ln { height: 7px; border-radius: 4px; background: var(--line-strong); }
.post .media { height: 52px; border-radius: 9px; margin-top: 10px; background: linear-gradient(140deg, color-mix(in srgb, var(--merlot) 70%, #000), var(--terra)); }
.post.locked::after {
  content: ""; position: absolute; inset: 0; border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 60%, transparent); backdrop-filter: blur(2.5px);
}
.post .lock {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; color: var(--muted);
}
.post .lock svg { width: 26px; height: 26px; }

/* ═══════════════════════════ solution bridge ═══════════════════════════ */
.bridge { text-align: center; padding: 90px 0; background: var(--page-alt); }
.bridge .big { font-size: clamp(32px, 4.6vw, 58px); max-width: 900px; margin: 0 auto; }
.bridge .big em { color: var(--accent); font-style: var(--display-italic); }

/* ═══════════════════════════ how it works ═══════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; align-items: start; }
.step { text-align: center; }
.step-art { display: flex; justify-content: center; margin-bottom: 26px; }
.step-num {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: var(--on-accent); font-weight: 800; font-size: 15px;
  margin-bottom: 14px; box-shadow: var(--shadow-pill);
}
.step h3 { font-family: var(--serif); font-style: var(--display-italic); font-weight: var(--display-weight); color: var(--display); font-size: 27px; }
.step p { font-size: 15px; color: var(--text-soft); margin-top: 10px; max-width: 300px; margin-inline: auto; }

/* ═══════════════════════════ cities ═══════════════════════════ */
.cities-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.cities-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.cities-tabs { display: flex; gap: 26px; padding: 22px 26px 0; border-bottom: 1px solid var(--line); }
.cities-tab { padding-bottom: 14px; font-size: 13px; font-weight: 800; letter-spacing: 0.04em; color: var(--muted); display: flex; align-items: center; gap: 8px; position: relative; }
.cities-tab .cnt { font-family: var(--serif); font-style: italic; font-size: 16px; }
.cities-tab.on { color: var(--text); }
.cities-tab.on::after { content: ""; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--accent); }
.cities-tab .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.cities-tab .soon-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); opacity: 0.5; }

.crow { display: flex; align-items: center; gap: 14px; padding: 16px 26px; border-bottom: 1px solid var(--line); }
.crow:last-child { border-bottom: none; }
.crow .cdot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.crow .cdot.live { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.crow .cdot.soon { background: var(--muted); opacity: 0.5; }
.crow .cmain { flex: 1; min-width: 0; }
.crow .cname { font-family: var(--serif); font-style: var(--display-italic); font-weight: var(--display-weight); font-size: 22px; color: var(--display); line-height: 1; display: flex; align-items: center; gap: 9px; }
.crow .csub { font-size: 12px; color: var(--muted); margin-top: 5px; }
.tagchip { font-size: 8.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 6px; border-radius: 5px; }
.tagchip.home { color: var(--accent); border: 1px solid var(--accent); }
.tagchip.new { color: var(--sage); border: 1px solid var(--sage); }
.crow .cnum { text-align: right; }
.crow .cnum b { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--accent); font-weight: 500; }
.crow .cnum span { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.notify {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px; border-radius: 11px;
  font-size: 11.5px; font-weight: 800; border: 1px solid var(--line-strong); color: var(--text-soft);
  background: var(--surface-2); transition: all .15s ease;
}
.notify.on { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.notify svg { width: 14px; height: 14px; }

.cities-foot { display: flex; align-items: center; justify-content: space-between; padding: 16px 26px; background: var(--merlot); }
.cities-foot .ft { color: #F6E9DC; }
.cities-foot .ft b { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 19px; display: block; }
.cities-foot .ft span { font-size: 12px; opacity: 0.8; }
.cities-foot .req { padding: 10px 18px; border-radius: 11px; background: var(--terra); color: #FFF6EE; font-weight: 800; font-size: 13px; }

/* ═══════════════════════════ founder story ═══════════════════════════ */
.story { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.story-photo {
  margin: 0; position: sticky; top: 104px;
}
.story-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-soft); border: 1px solid var(--line); display: block; }
.story-photo figcaption { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted); margin-top: 12px; }

.story blockquote { font-family: var(--serif); font-style: var(--display-italic); font-weight: var(--display-weight); color: var(--display); font-size: clamp(26px, 3vw, 38px); line-height: 1.16; margin: 18px 0 0; }
.story .by { margin-top: 26px; font-size: 15px; color: var(--text-soft); }
.story .by b { color: var(--text); }
.story-p { font-size: 16px; color: var(--text-soft); margin-top: 20px; }
.story-punch { font-family: var(--serif); font-style: var(--display-italic); font-weight: var(--display-weight); color: var(--display); font-size: 23px; line-height: 1.2; }

/* ═══════════════════════════ final CTA ═══════════════════════════ */
.cta {
  background: var(--merlot); color: #F6E9DC; border-radius: 34px;
  padding: 72px 56px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card); margin: 0 auto;
}
.cta::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% -10%, rgba(216,98,60,0.45), transparent 70%); }
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-family: var(--serif); font-style: italic; font-weight: 500; color: #FFE9C9; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; }
.cta p { font-size: 18px; color: rgba(246,233,220,0.82); margin: 18px auto 0; max-width: 480px; }
.cta .stores { justify-content: center; margin-top: 34px; }
.cta .store { background: #0E0709; color: #F6E9DC; }
.cta .micro { margin-top: 22px; font-size: 13px; color: rgba(246,233,220,0.6); }

/* ═══════════════════════════ footer ═══════════════════════════ */
.foot { padding: 56px 0 50px; }
.foot-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot .tagline { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--display); margin-top: 14px; max-width: 280px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-soft); margin-bottom: 10px; }
.foot-col a:hover { color: var(--accent); }
.foot-bar { display: flex; align-items: center; justify-content: space-between; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }

/* ═══════════════════════════ reveal anim ═══════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ═══════════════════════════ responsive ═══════════════════════════ */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; padding: 40px 0 60px; }
  .hero-art { order: -1; }
  .problems { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .cities-grid { grid-template-columns: 1fr; gap: 40px; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .story-photo { max-width: 240px; position: static; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .band { padding: 72px 0; }
  .problem-count { font-size: 88px; }
  .cta { padding: 52px 26px; border-radius: 26px; }
  .nav-cta .btn span.full { display: none; }
  .nav-cta .btn span.short { display: inline !important; }
}

/* ═══════════ real-screenshot phone frames ═══════════ */
.shotframe {
  --fw: 290px;
  width: var(--fw); aspect-ratio: 1320 / 2868; flex-shrink: 0;
  border-radius: 50px; padding: 9px; position: relative;
  background: linear-gradient(160deg, #FBF8F1, #E7DCC9);
  box-shadow: 0 46px 90px -42px rgba(70,40,20,0.55), 0 12px 30px -16px rgba(60,30,20,0.22), inset 0 0 0 1.4px rgba(255,255,255,0.85);
}
[data-direction="nightlife"] .shotframe { background: linear-gradient(160deg, #2A1A18, #140C0D); box-shadow: 0 50px 100px -40px rgba(0,0,0,0.8), inset 0 0 0 1.4px rgba(255,255,255,0.06); }
.shotscreen { width: 100%; height: 100%; border-radius: 42px; overflow: hidden; background: #EFE6D5; }
.shotscreen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shotframe.floatme { animation: heroFloat 6.5s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .shotframe.floatme { animation: none; } }
.hero-art { perspective: 1400px; }
.step-art { display: flex; justify-content: center; }
.step-art .shotframe { --fw: 250px; }
@media (max-width: 940px) {
  .step-art .shotframe { --fw: 270px; }
}

/* ═══════════ feature row (Saved) ═══════════ */
.feature-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
.feature-art { display: flex; justify-content: center; perspective: 1400px; }
.feature-copy .eyebrow { display: block; }
.feature-copy h2 { font-size: clamp(34px, 4.2vw, 52px); margin-top: 14px; }
.feature-copy > p { font-size: 18px; color: var(--text-soft); margin-top: 18px; max-width: 460px; }
.ticks { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.ticks li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; color: var(--text); }
.ticks li .tk { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-top: 1px; }
.ticks li .tk svg { width: 13px; height: 13px; }
.ticks li b { font-weight: 800; }

/* ═══════════ creators ═══════════ */
.creator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 56px; }
.creator-feats { display: flex; flex-direction: column; gap: 22px; }
.cfeat { display: flex; gap: 16px; align-items: flex-start; }
.cfeat .ci { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); box-shadow: var(--shadow-soft); }
.cfeat .ci svg { width: 22px; height: 22px; }
.cfeat .cx h4 { font-family: var(--serif); font-style: var(--display-italic); font-weight: var(--display-weight); color: var(--display); font-size: 23px; line-height: 1.1; }
.cfeat .cx p { font-size: 15px; color: var(--text-soft); margin-top: 5px; max-width: 380px; }
.creator-art { display: flex; justify-content: center; align-items: center; position: relative; min-height: 560px; }
.creator-art .shotframe { --fw: 248px; position: absolute; }
.creator-art .shotframe.back { transform: translate(-78px, -26px) rotate(-5deg); z-index: 1; opacity: 0.97; }
.creator-art .shotframe.front { transform: translate(78px, 30px) rotate(4deg); z-index: 2; }
.creator-cta { margin-top: 34px; }

/* ═══════════ coming-soon stores ═══════════ */
.store-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,233,220,0.72); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 9px; }
.store-eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 0 rgba(216,98,60,0.6); animation: pulseDot 2s ease-out infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(216,98,60,0.55); } 100% { box-shadow: 0 0 0 12px rgba(216,98,60,0); } }
@media (prefers-reduced-motion: reduce) { .store-eyebrow .pulse { animation: none; } }
.store.soon { cursor: default; position: relative; }
.store.soon .lab .s { text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }

@media (max-width: 940px) {
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-art { order: -1; }
  .creator-grid { grid-template-columns: 1fr; gap: 30px; }
  .creator-art { min-height: 520px; margin-top: 20px; }
}

/* live pill + coming-soon badges + cta join */
.cnum .livepill {
  font-family: var(--sans); font-style: normal; font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 999px; padding: 4px 11px;
}
.soon-badge {
  display: inline-block; vertical-align: middle; font-family: var(--sans); font-style: normal;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: var(--surface-2); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 3px 9px; margin-left: 8px;
}
.cta-actions { margin-top: 30px; }
.cta-join {
  background: var(--terra); color: #FFF6EE; box-shadow: var(--shadow-pill);
  font-size: 16px; padding: 16px 30px;
}
.cta-join:hover { transform: translateY(-2px); }
.cta-actions + .store-eyebrow { margin-top: 34px; }

/* ═══════════════ waitlist modal ═══════════════ */
.wl-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.wl-overlay[hidden] { display: none; }
.wl-backdrop { position: absolute; inset: 0; background: rgba(36,18,12,0.55); backdrop-filter: blur(5px); opacity: 0; transition: opacity .24s ease; }
.wl-overlay.open .wl-backdrop { opacity: 1; }
.wl-card {
  position: relative; width: 100%; max-width: 440px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 26px;
  padding: 34px 32px 30px; box-shadow: 0 40px 90px -30px rgba(46,17,12,0.6);
  transform: translateY(16px) scale(0.97); opacity: 0; transition: transform .26s cubic-bezier(.2,.8,.2,1), opacity .26s ease;
}
.wl-overlay.open .wl-card { transform: none; opacity: 1; }
.wl-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--text-soft); background: var(--surface-2); transition: background .15s ease, color .15s ease; }
.wl-close:hover { background: var(--accent-soft); color: var(--accent); }
.wl-close svg { width: 17px; height: 17px; }
.wl-card .eyebrow { display: block; }
.wl-card h3 { font-size: 36px; margin-top: 10px; }
.wl-sub { font-size: 15px; color: var(--text-soft); margin-top: 12px; line-height: 1.5; }
.wl-card form { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.wl-field { display: flex; flex-direction: column; gap: 7px; }
.wl-lab { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.wl-field input[type="email"], .wl-field input[type="text"] {
  font: inherit; font-size: 16px; color: var(--text); background: var(--surface-2);
  border: 1.5px solid var(--line-strong); border-radius: 13px; padding: 13px 15px; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.wl-field input::placeholder { color: var(--muted); }
.wl-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.wl-roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wl-role { position: relative; cursor: pointer; }
.wl-role input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.wl-role span { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 50px; padding: 8px 10px; border-radius: 13px; font-size: 14px; font-weight: 700; color: var(--text-soft); background: var(--surface-2); border: 1.5px solid var(--line-strong); transition: all .15s ease; }
.wl-role input:checked + span { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.wl-role input:focus-visible + span { box-shadow: 0 0 0 4px var(--accent-soft); }
.wl-submit { justify-content: center; width: 100%; margin-top: 4px; font-size: 16px; }
.wl-submit:disabled { opacity: 0.7; cursor: default; }
.wl-error { color: #C2391F; font-size: 13.5px; font-weight: 700; margin: 0; }
.wl-fine { font-size: 12.5px; color: var(--muted); text-align: center; margin: 2px 0 0; }
.wl-success { text-align: center; padding: 18px 6px 8px; }
.wl-check { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.wl-check svg { width: 30px; height: 30px; }
.wl-success h3 { font-size: 32px; }
.wl-success p { font-size: 16px; color: var(--text-soft); margin-top: 12px; line-height: 1.5; }
.wl-success .wl-done { margin-top: 24px; justify-content: center; }
@media (max-width: 480px) { .wl-card { padding: 30px 22px 26px; } .wl-card h3 { font-size: 30px; } }
