/* Motion Malibu RP — Landing */
:root {
  --bg: #07070c;
  --bg-elevated: #101018;
  --card: #14141f;
  --text: #f5f5fa;
  --muted: #9b9bb5;
  --line: rgba(255, 255, 255, 0.08);
  --purple: #a855f7;
  --purple-deep: #7c3aed;
  --purple-dim: rgba(168, 85, 247, 0.15);
  --blue: #4f46e5;          /* deep indigo-blue — not sky light */
  --blue-deep: #3730a3;
  --neutral: #8b8ba3;       /* soft gray-violet neutral */
  --neutral-dim: rgba(139, 139, 163, 0.18);
  --white: #ffffff;
  --rose: #c084fc;          /* soft purple-pink, not hot yellow */
  --green: #818cf8;         /* indigo accent (replaces bright green pops) */
  --max: 1120px;
  --radius: 18px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Page-only dark chrome for form controls/scrollbars — does NOT change macOS system appearance */
  color-scheme: dark;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Background glow */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(168, 85, 247, 0.26), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 40%, rgba(79, 70, 229, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(255, 255, 255, 0.04), transparent 50%);
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 12, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(168, 85, 247, 0.35);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.logo-mark {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-mark span {
  background: linear-gradient(90deg, #ffffff, #e9d5ff, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #fff;
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b86bff, #8b5cf6);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-white {
  background: #ffffff;
  color: #1a1030;
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.12);
}

.btn-white:hover {
  background: #f3e8ff;
}

.btn-blue {
  background: linear-gradient(135deg, #4f46e5, #3730a3);
  color: #fff;
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.35);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: var(--purple-dim);
  color: #e9d5ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero h1 .grad {
  background: linear-gradient(100deg, #ffffff 5%, #e9d5ff 35%, #a855f7 65%, #4f46e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: #d4d4e8;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-lead {
  max-width: 640px;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #c8c8dc;
}

.chip-purple { border-color: rgba(168, 85, 247, 0.45); color: #e9d5ff; }
.chip-blue { border-color: rgba(79, 70, 229, 0.45); color: #c7d2fe; }
.chip-neutral { border-color: rgba(139, 139, 163, 0.45); color: #d4d4e8; }
.chip-white { border-color: rgba(255, 255, 255, 0.35); color: #ffffff; }

/* Sections */
section {
  padding: 3.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--muted);
}

/* Cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.icon-purple { background: rgba(168, 85, 247, 0.2); }
.icon-blue { background: rgba(79, 70, 229, 0.22); }
.icon-neutral { background: rgba(139, 139, 163, 0.2); }
.icon-white { background: rgba(255, 255, 255, 0.08); }

/* Motion tiers */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.tier {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.4rem;
  background: var(--card);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tier::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
}

.tier-no::before { background: #6b6b80; }
.tier-minor::before { background: var(--blue); }
.tier-major::before {
  background: linear-gradient(90deg, var(--purple), var(--blue-deep));
}

.tier h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1.15rem;
}

.tier p {
  color: var(--muted);
  font-size: 0.9rem;
}

.tier ul {
  margin-top: 0.9rem;
  text-align: left;
  font-size: 0.88rem;
  color: #c8c8dc;
}

.tier li {
  padding: 0.25rem 0 0.25rem 1.1rem;
  position: relative;
}

.tier li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--purple);
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Mantra band */
.mantra {
  margin: 1rem 0 0;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(168, 85, 247, 0.14), rgba(79, 70, 229, 0.1), rgba(255, 255, 255, 0.04));
  text-align: center;
}

.mantra p {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.mantra span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

/* Path */
.path-list {
  display: grid;
  gap: 0.75rem;
}

.path-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
}

.path-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: var(--purple-dim);
  color: #e9d5ff;
}

.path-item h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.path-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* CTA / waitlist */
.cta-panel {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(168, 85, 247, 0.3);
  background:
    radial-gradient(ellipse 80% 80% at 20% 0%, rgba(168, 85, 247, 0.2), transparent 55%),
    var(--card);
  padding: 2.25rem 1.5rem;
  text-align: center;
}

.cta-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.cta-panel > p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 0.75rem;
}

.form-row input {
  flex: 1 1 220px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}

.form-row input:focus {
  border-color: rgba(168, 85, 247, 0.6);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-note a {
  color: #c4b5fd;
  text-decoration: underline;
}

#form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  min-height: 1.3em;
}

#form-status.ok { color: #c4b5fd; }
#form-status.err { color: #f87171; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

/* Placeholder notice (remove when live) */
.dev-banner {
  background: rgba(168, 85, 247, 0.12);
  border-bottom: 1px solid rgba(168, 85, 247, 0.28);
  color: #e9d5ff;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(10, 10, 16, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    text-align: center;
  }

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

  .grid-3,
  .tiers,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }
}

/* ========== INTERACTIVE UPGRADES ========== */

/* Sliding / rotating hero word */
.tagline-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  margin-bottom: 0.75rem;
}

.tagline-static {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: #d4d4e8;
  font-weight: 600;
}

.rotate-word {
  display: inline-block;
  min-width: 7.5ch;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #e9d5ff, #a855f7, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rotate-word.out {
  opacity: 0;
  transform: translateY(10px);
}

/* Marquee ticker */
.ticker-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin: 2rem 0 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 32s linear infinite;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker span {
  padding: 0.75rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ticker span em {
  font-style: normal;
  color: #c4b5fd;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Scroll reveal — ONLY when JS is active (otherwise page stays blank on iPhone file open) */
[data-reveal] {
  opacity: 1;
  transform: none;
}
html.js [data-reveal]:not(.revealed) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
html.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}
html.js [data-reveal="left"]:not(.revealed) { transform: translateX(-20px); }
html.js [data-reveal="right"]:not(.revealed) { transform: translateX(20px); }
html.js [data-reveal-delay="1"] { transition-delay: 0.06s; }
html.js [data-reveal-delay="2"] { transition-delay: 0.12s; }
html.js [data-reveal-delay="3"] { transition-delay: 0.18s; }
html.js [data-reveal-delay="4"] { transition-delay: 0.24s; }
html.js [data-reveal-delay="5"] { transition-delay: 0.3s; }

/* Clickable cards */
.card-interactive,
.tier-interactive {
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}

.card-interactive:focus-visible,
.tier-interactive:focus-visible,
.gallery-item:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.card-hint {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4b5fd;
}

/* Gallery / media */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
  min-height: 180px;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(168, 85, 247, 0.45);
}

.gallery-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(145deg, #1a1030, #12182a 50%, #1a1220);
}

.gallery-placeholder {
  width: 100%;
  height: 180px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.1)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.02) 8px,
      rgba(255, 255, 255, 0.02) 16px
    );
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}

.gallery-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.9);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* Modal */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  border: none;
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: #12121c;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 20px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal.open .modal-panel {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-panel h2 {
  font-size: 1.35rem;
  margin: 0 2rem 0.75rem 0;
  letter-spacing: -0.02em;
}

.modal-body {
  color: var(--muted);
  font-size: 0.95rem;
}

.modal-body p {
  margin-bottom: 0.75rem;
}

.modal-body ul {
  margin: 0.5rem 0 0.75rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.modal-body li {
  margin: 0.3rem 0;
}

.modal-caption {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #c8c8dc;
}

.media-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.media-frame iframe,
.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.media-placeholder-lg {
  padding: 2rem 1rem;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.media-placeholder-lg code {
  font-size: 0.8rem;
  color: #c4b5fd;
}

/* Soft pulse on primary CTA */
.btn-primary {
  animation: softPulse 3.5s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(168, 85, 247, 0.35); }
  50% { box-shadow: 0 8px 36px rgba(168, 85, 247, 0.55); }
}

@media (max-width: 820px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker,
  .btn-primary,
  .rotate-word,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ===== Shareable site v2: inline content, league, paths ===== */

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

.feature-card {
  text-align: left;
  cursor: default;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.inline-list {
  list-style: none;
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.inline-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.inline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.85;
}

.tiers-live .tier {
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tiers-live .tier:hover,
.tiers-live .tier.is-active {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.45);
}
.tier-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--rose);
  font-style: italic;
}

.subhead {
  margin: 2.5rem 0 0.4rem;
  font-size: 1.15rem;
  color: #fff;
}
.subhead-lead {
  margin-bottom: 1.25rem;
  max-width: 40rem;
  font-size: 0.95rem;
}

/* Home franchises */
.home-franchises {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin: 1.5rem 0 2rem;
}
.franchise-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.franchise-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-3px);
}
.franchise-card img {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.franchise-tag {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.franchise-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}
.franchise-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.vs-pill {
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--purple), var(--blue-deep));
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}

/* NPC team grid */
.npc-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.npc-team {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.npc-team:hover,
.npc-team:focus-visible,
.npc-team.is-hot {
  outline: none;
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.5);
  box-shadow: 0 14px 36px rgba(79, 70, 229, 0.18);
}
.npc-team img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.npc-team h4 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}
.npc-team p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.schedule-card {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.12), rgba(20, 20, 31, 0.95));
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
}
.schedule-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

/* Paths interactive shell */
.path-shell {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.path-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--line);
}
.path-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.path-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.path-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue-deep));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.35);
}
.path-panels {
  padding: 1.5rem 1.35rem 1.6rem;
  min-height: 320px;
}
.path-panel[hidden] {
  display: none !important;
}
.path-panel-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
  animation: pathIn 0.35s ease;
}
@keyframes pathIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.path-kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.4rem;
}
.path-panel h3 {
  font-size: 1.55rem;
  margin: 0 0 0.4rem;
}
.path-lead {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 34rem;
}
.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}
.option-pills span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--purple-dim);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #e9d5ff;
}
.step-rail {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
}
.step-rail li {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}
.step-rail strong {
  color: #fff;
}
.mini-logos {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.mini-logos img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.npc-cast {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
}
.npc-cast h4 {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
}
.npc-player {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}
.npc-player:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.npc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: color-mix(in srgb, var(--c, var(--purple)) 25%, #14141f);
  border: 1px solid color-mix(in srgb, var(--c, var(--purple)) 55%, transparent);
  color: #fff;
  flex-shrink: 0;
}
.npc-player strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.npc-player span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .home-franchises {
    grid-template-columns: 1fr;
  }
  .vs-pill {
    justify-self: center;
  }
  .npc-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .path-panel-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .npc-team-grid {
    grid-template-columns: 1fr;
  }
  .path-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .path-tab {
    white-space: nowrap;
  }
}

/* Buttons that used to be interactive cards */
button.card,
button.tier {
  font: inherit;
  color: inherit;
  text-align: left;
  width: 100%;
}


/* ===== Phone-first hardening ===== */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  max-width: 100vw;
}
img, video, svg {
  max-width: 100%;
  height: auto;
}
.nav-inner {
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}
@media (max-width: 820px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max));
  }
  .hero {
    padding: 2.25rem 0 2rem;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }
  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .hero-meta {
    justify-content: center;
    gap: 0.4rem;
  }
  .chip {
    font-size: 0.72rem;
  }
  .section-head h2 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }
  .mantra {
    padding: 1rem;
    font-size: 0.95rem;
  }
  .franchise-card {
    flex-direction: column;
    text-align: center;
  }
  .franchise-card img {
    width: 72px;
    height: 72px;
  }
  .path-shell {
    border-radius: 16px;
  }
  .path-panels {
    padding: 1rem 0.85rem 1.15rem;
  }
  .path-panel h3 {
    font-size: 1.25rem;
  }
  .option-pills span {
    font-size: 0.72rem;
  }
  .npc-avatar {
    width: 40px;
    height: 40px;
  }
  .cta-panel {
    padding: 1.25rem 1rem;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row input,
  .form-row .btn {
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .tiers-live .tier:hover,
  .tiers-live .tier.is-active {
    transform: none;
  }
  .feature-card:hover {
    transform: none;
  }
}
@media (max-width: 560px) {
  .npc-team-grid {
    grid-template-columns: 1fr !important;
  }
  .home-franchises {
    grid-template-columns: 1fr !important;
  }
  .path-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .path-tabs::-webkit-scrollbar { display: none; }
  .path-tab {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 0.6rem 0.9rem;
    font-size: 0.75rem;
  }
}

.path-panel { display: none; }
.path-panel.is-active { display: block; }
.path-tab { -webkit-tap-highlight-color: rgba(168,85,247,0.35); touch-action: manipulation; cursor: pointer; }

/* ========== Multi-page + lookbooks ========== */
.nav-links a.is-current {
  color: #fff;
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(168, 85, 247, 0.12);
}
.page-hero {
  padding: 2.5rem 0 1rem;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  line-height: 1.12;
  margin: 0.35rem 0 0.75rem;
}
.page-section {
  padding: 2rem 0 3rem;
}
.site-card {
  display: block;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.site-card:hover {
  border-color: rgba(168, 85, 247, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  margin-top: 1rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}
.footer-links a:hover {
  color: #fff;
}
.muted { color: var(--muted); }

/* Lookbook cards */
.look-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .look-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .look-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.look-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.look-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}
.look-photo {
  aspect-ratio: 3/4;
  background: #0c0c14;
  overflow: hidden;
}
.look-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.look-photo.you-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2a1540, #12081c);
  color: #c4b5fd;
  font-weight: 700;
  text-align: center;
  padding: 1.5rem;
}
.look-photo.you-photo small {
  display: block;
  margin-top: 0.4rem;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}
.look-body { padding: 0.9rem 1rem 1.15rem; flex: 1; }
.look-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c4b5fd;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.45rem;
}
.look-body h3 {
  margin: 0 0 0.15rem;
  font-size: 1.1rem;
}
.look-role {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0 0 0.65rem;
}
.look-dl { margin: 0; }
.look-field { margin-top: 0.4rem; }
.look-field dt {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.look-field dd {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
}

/* City places */
.place-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .place-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .place-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.place-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.place-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}
.place-photo {
  aspect-ratio: 16/10;
  background: #0c0c14;
  overflow: hidden;
}
.place-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place-body { padding: 0.85rem 1rem 1.1rem; }
.place-body h3 { margin: 0.25rem 0 0.3rem; font-size: 1.05rem; }
.place-body p { color: var(--muted); font-size: 0.88rem; margin: 0; }

/* ========== Home cinematic upgrade ========== */
.page-home .hero-lead.home-lead {
  margin-left: 0;
  text-align: left;
  max-width: 34rem;
}
.page-home .hero-cta.home-cta,
.page-home .hero-meta {
  justify-content: flex-start;
}
.page-home .home-hero-copy .eyebrow {
  margin-bottom: 1rem;
}
.page-home .home-hero-copy h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  text-align: left;
}
.page-home .tagline-row {
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 1rem;
}

.home-hero {
  position: relative;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) brightness(0.45);
  transform: scale(1.04);
}
.home-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7,7,12,.94) 0%, rgba(7,7,12,.78) 42%, rgba(7,7,12,.35) 72%, rgba(7,7,12,.55) 100%),
    radial-gradient(ellipse 60% 80% at 80% 40%, rgba(168,85,247,.22), transparent 55%);
}
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .home-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}
.home-hero-copy .hero-lead em {
  font-style: normal;
  color: #e9d5ff;
}

.home-hero-visual { min-width: 0; }
.hero-mosaic {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
}
.mosaic-main {
  grid-row: 1 / span 2;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  min-height: 280px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
}
.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}
.mosaic-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
}
.mosaic-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mosaic-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  flex: 1;
  min-height: 120px;
}
.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
}
.mosaic-tile span {
  position: absolute;
  left: 0.55rem;
  bottom: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.mosaic-logos {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.mosaic-logos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(168,85,247,.25);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

/* Proof strip */
.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(16,16,24,.75);
  backdrop-filter: blur(10px);
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
}
@media (min-width: 720px) {
  .proof-row { grid-template-columns: repeat(5, 1fr); }
}
.proof-item {
  text-align: center;
  padding: 0.35rem;
}
.proof-item strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.proof-item span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.home-mantra-wrap { margin-top: 2rem; }
.mantra-xl p { font-size: clamp(1.35rem, 3vw, 1.75rem); }

/* Pillars */
.pillar-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pillar-grid { grid-template-columns: 1fr 1fr; }
}
.pillar-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.pillar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(168,85,247,.45);
  text-decoration: none;
}
.pillar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pillar-card:hover img { transform: scale(1.05); }
.pillar-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, transparent 20%, rgba(7,7,12,.88) 100%);
}
.pillar-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #c4b5fd;
  margin-bottom: 0.25rem;
}
.pillar-overlay h3 {
  font-size: 1.45rem;
  margin: 0 0 0.3rem;
}
.pillar-overlay p {
  margin: 0;
  color: #c8c8dc;
  font-size: 0.92rem;
  max-width: 22rem;
}

/* Rivalry */
.rivalry-stage {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .rivalry-stage {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.25rem;
  }
}
.rival-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
}
.rival-logo {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(168,85,247,.3);
  flex-shrink: 0;
}
.rival-card h3 { margin: 0.2rem 0 0.35rem; font-size: 1.25rem; }
.rival-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.rival-vs {
  text-align: center;
  padding: 0.5rem;
}
.rival-vs span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #a855f7, #4f46e5);
  box-shadow: 0 8px 28px rgba(168,85,247,.35);
}
.rival-vs small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}
.rival-cta { margin-top: 1.25rem; }

/* Cast strip */
.split-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}
.cast-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
@media (min-width: 720px) {
  .cast-strip { grid-template-columns: repeat(6, 1fr); }
}
.cast-thumb {
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.cast-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(168,85,247,.45);
  text-decoration: none;
}
.cast-thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.cast-thumb span {
  display: block;
  padding: 0.45rem 0.5rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: #d4d4e8;
}

/* Room grid */
.room-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .room-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .room-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.room-card {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(20,20,31,.95), rgba(12,12,18,.98));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.room-card:hover {
  border-color: rgba(168,85,247,.45);
  transform: translateY(-2px);
  text-decoration: none;
}
.room-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #a855f7;
}
.room-card h3 {
  margin: 0.35rem 0 0.3rem;
  font-size: 1.15rem;
}
.room-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Final CTA */
.home-final-cta {
  padding: 1rem 0 3.5rem;
}
.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(168,85,247,.35);
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(168,85,247,.22), transparent 50%),
    linear-gradient(135deg, #14141f, #0c0c14);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.final-cta-inner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.15;
  margin: 0.4rem 0 0.5rem;
}
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 720px) {
  .home-hero {
    min-height: auto;
    padding-top: 1.5rem;
  }
  .page-home .home-hero-copy h1,
  .page-home .tagline-row,
  .page-home .hero-lead.home-lead {
    text-align: center;
  }
  .page-home .hero-cta.home-cta,
  .page-home .hero-meta,
  .page-home .tagline-row {
    justify-content: center;
  }
  .mosaic-main { grid-row: auto; min-height: 200px; }
  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .mosaic-main { grid-column: 1 / -1; grid-row: auto; }
  .mosaic-stack { flex-direction: row; grid-column: 1 / -1; }
  .mosaic-tile { min-height: 100px; }
  .split-head { align-items: flex-start; }
  .final-cta-inner { text-align: center; justify-content: center; }
  .final-cta-actions { justify-content: center; width: 100%; }
}

/* Join funnel */
.status-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: #d1fae5;
}
.home-status { margin-bottom: 1.1rem; }
.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
}
.status-sep { opacity: 0.45; }

.join-steps {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .join-steps { grid-template-columns: 1fr 1fr 1fr; }
}
.join-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.15rem 1.3rem;
}
.join-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #c4b5fd;
  margin-bottom: 0.45rem;
}
.join-step h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.join-step p { color: var(--muted); font-size: 0.9rem; margin: 0 0 1rem; }
.join-step .btn { margin-top: 0.15rem; }
.join-step code {
  font-size: 0.78rem;
  color: #e9d5ff;
  background: rgba(168,85,247,.12);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

.pay-clarity {
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem 1.3rem;
  border-radius: 20px;
  border: 1px solid rgba(168,85,247,.3);
  background: linear-gradient(135deg, rgba(168,85,247,.1), rgba(20,20,31,.95));
}
@media (min-width: 800px) {
  .pay-clarity { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}
.pay-clarity h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  line-height: 1.2;
  margin: 0.35rem 0 0.5rem;
}
.pay-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pay-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.pay-list li:last-child { border-bottom: 0; }
.pay-list strong { color: #fff; }
.pay-clarity-compact {
  margin-top: 1rem;
  display: block;
  padding: 1rem 1.15rem;
}
.pay-clarity-compact p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.pay-clarity-compact strong { color: #e9d5ff; }

.apply-panel { text-align: left; }
.apply-form { margin-top: 1rem; }
.owner-desk {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(168,85,247,.35);
}
.owner-desk h3 {
  margin: 0 0 .35rem;
  font-size: .95rem;
  color: #e9d5ff;
}
.owner-preview {
  margin-top: .75rem;
  max-height: 220px;
  overflow: auto;
  font-size: .72rem;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .65rem .75rem;
  color: #c4c4d4;
  white-space: pre-wrap;
  word-break: break-word;
}
.apply-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .apply-grid { grid-template-columns: 1fr 1fr; }
}
.apply-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.apply-grid label.full { grid-column: 1 / -1; }
.apply-grid input,
.apply-grid select,
.apply-grid textarea {
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
}
.apply-grid textarea { resize: vertical; min-height: 5rem; }
.apply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.rules-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .rules-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .rules-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.rule-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}
.rule-card h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.rule-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* Socials + FAQ sitewide */
.footer-handle {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c4b5fd;
  letter-spacing: 0.04em;
}
.footer-inner {
  align-items: flex-start;
}
.footer-col { min-width: 140px; }
.footer-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.social-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--line);
  margin-top: 1.25rem;
}
.social-bar-page {
  border-top: 0;
  margin-top: 0;
  justify-content: flex-start;
}
.social-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: #d4d4e8;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.social-chip:hover {
  border-color: rgba(168,85,247,0.45);
  background: rgba(168,85,247,0.12);
  color: #fff;
  text-decoration: none;
}

.faq-list { max-width: 720px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1.05rem;
  margin-bottom: 0.65rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: #a855f7;
  font-weight: 800;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0.65rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.faq-item a { color: #c4b5fd; }

@media (max-width: 720px) {
  .footer-inner { flex-direction: column; }
  .nav-links {
    max-height: 70vh;
    overflow-y: auto;
  }
}
