/* ═══════════════════════════════════════════════════════════
   Splash / Landing Page — Frosted Glass Treatment
   ═══════════════════════════════════════════════════════════ */

/* Nav */
.splash-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(8,12,21,.55);
  backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.splash-nav .nav-logo { font-size: 18px; font-weight: 800; }
.splash-nav .nav-logo .accent {
  background: linear-gradient(90deg, #ffb347 0%, #f5944a 20%, #ff7eb3 40%, #e87bc8 55%, #c98ef0 72%, #a8b4f8 88%, #5ce0d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.splash-nav .live-dot {
  display: inline-block; width: 6px; height: 6px;
  background: #ff3b30; border-radius: 50%;
  margin-left: 2px; vertical-align: middle;
  position: relative; top: 0px;
  box-shadow: 0 0 4px rgba(255,59,48,.6);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(255,59,48,.6); }
  50%      { opacity: .4; box-shadow: 0 0 8px rgba(255,59,48,.3); }
}
.splash-signin-btn {
  background: rgba(255,255,255,.1); color: var(--text); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 8px 18px;
  font-weight: 700; font-size: 13px; cursor: pointer;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.splash-signin-btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.22);
}

/* Hero */
.splash-hero {
  padding: 160px 24px 80px; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.splash-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 107, 157, .08);
  border: 1px solid rgba(255,107,157,.15);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  letter-spacing: .03em; margin-bottom: 24px;
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success); animation: pulse-dot 2s ease infinite;
}
.splash-h1 {
  font-size: clamp(36px, 8vw, 56px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 40px;
}
/* Typewriter cycling word */
.splash-cycle-word {
  display: inline-block;
  min-width: 2ch;
  color: var(--text, #f0f2f8);
  -webkit-text-fill-color: var(--text, #f0f2f8);
}
.splash-cycle-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--vita-i);
  animation: cursorBlink .8s ease-in-out infinite;
  margin-left: -2px;
  -webkit-text-fill-color: var(--vita-i);
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.splash-sub {
  font-size: clamp(16px, 3.5vw, 20px); color: var(--muted);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.5;
}

/* ─── CTA Button — holographic satin finish ─────────────── */
.splash-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 14px; padding: 18px 40px;
  font-size: 17px; font-weight: 700; cursor: pointer;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 0 20px rgba(168,85,247,.2), 0 4px 16px rgba(0,0,0,.3);
}

/* RGB animated border glow */
.splash-cta::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 16px;
  background: conic-gradient(from var(--rgb-angle, 0deg), #f97316, #ec4899, #a855f7, #3b82f6, #10b981, #f97316);
  opacity: .4;
  transition: opacity .4s ease;
  animation: rgbRotate 4s linear infinite;
  z-index: -1;
}

/* Inner fill to mask center of conic gradient */
.splash-cta::after {
  content: '';
  position: absolute; inset: 1.5px;
  border-radius: 13px;
  background: rgba(8,12,21,.85);
  z-index: -1;
}

.splash-cta:hover {
  box-shadow:
    0 0 30px rgba(168,85,247,.4),
    0 0 60px rgba(236,72,153,.2),
    0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(255,255,255,.4);
}
.splash-cta:hover::before { opacity: .8; }
.splash-cta:hover svg { stroke: #fff; }

@keyframes rgbRotate {
  to { --rgb-angle: 360deg; }
}
@property --rgb-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes holoWash {
  0%   { background-position: 0% 30%, 100% 70%, 40% 0%, 60% 100%; }
  25%  { background-position: 40% 60%, 60% 30%, 80% 50%, 20% 40%; }
  50%  { background-position: 80% 40%, 20% 60%, 50% 80%, 70% 20%; }
  75%  { background-position: 60% 70%, 40% 40%, 20% 30%, 80% 60%; }
  100% { background-position: 100% 50%, 0% 50%, 60% 100%, 40% 0%; }
}

/* ─── Mask Reveal Word Animation ──────────────────────── */
.mask-reveal-active {
  opacity: 1;
  transform: scale(1);
  -webkit-mask-image: linear-gradient(to right, black 0%, black var(--reveal-pct, 100%), transparent calc(var(--reveal-pct, 100%) + 15%));
  mask-image: linear-gradient(to right, black 0%, black var(--reveal-pct, 100%), transparent calc(var(--reveal-pct, 100%) + 15%));
  animation: maskRevealIn .6s ease-out forwards;
}
.mask-reveal-exit {
  opacity: 0;
  transform: scale(.98);
  transition: opacity .3s ease, transform .3s ease;
}
@keyframes maskRevealIn {
  from {
    --reveal-pct: 0%;
  }
  to {
    --reveal-pct: 100%;
  }
}
@property --reveal-pct {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

.splash-note {
  font-size: 13px; color: var(--muted); margin-top: 14px;
}
.splash-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  padding: 24px 0 8px; margin: 10px 0 0;
}
.splash-stat { text-align: center; }
.splash-stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--accent); }
.splash-stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* ─── Feature Cards — Frosted Glass + RGB Halo ──────────── */
.splash-features { padding: 0 24px 48px; max-width: 800px; margin: 16px auto 0; }
.splash-section-label {
  text-align: center; font-size: 14px; text-transform: uppercase;
  letter-spacing: .12em; color: var(--muted); margin-bottom: 32px;
}
.splash-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* --- Card with RGB halo pseudo-elements --- */
@property --halo-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.splash-card {
  position: relative;
  background: rgba(10, 14, 24, .92);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .4s ease;
  will-change: transform;
  overflow: visible;
  cursor: pointer;
}
/* Lava lamp halo — multiple blurred blobs that drift independently */
.splash-card::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: calc(var(--radius) + 20px);
  background:
    radial-gradient(ellipse 120px 100px at 20% 30%, rgba(255,179,71,.35), transparent 70%),
    radial-gradient(ellipse 100px 120px at 80% 70%, rgba(255,107,157,.3), transparent 70%),
    radial-gradient(ellipse 90px 110px at 50% 20%, rgba(196,113,237,.25), transparent 70%),
    radial-gradient(ellipse 110px 90px at 70% 40%, rgba(255,200,100,.2), transparent 70%);
  filter: blur(24px);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: -1;
  pointer-events: none;
  animation: lavaShift 8s ease-in-out infinite alternate;
}
/* Holographic satin border — soft washes of color that glint on hover */
.splash-card::after {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: calc(var(--radius) + 1.5px);
  padding: 1.5px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(255,179,71,.5), transparent 65%),
    radial-gradient(ellipse 55% 70% at 80% 60%, rgba(255,107,157,.4), transparent 65%),
    radial-gradient(ellipse 50% 65% at 50% 80%, rgba(196,113,237,.35), transparent 65%);
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  animation: holoCardBorder 8s ease-in-out infinite alternate;
}
.splash-card:hover::before { opacity: .4; }
.splash-card:hover::after  { opacity: .45; }
.splash-card:hover {
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.03);
  transform: perspective(800px) translateY(-4px) scale(1.015);
}

@keyframes lavaShift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 0%, 80% 50%; }
  25%  { background-position: 30% 60%, 70% 20%, 20% 80%, 50% 30%; }
  50%  { background-position: 70% 30%, 20% 80%, 80% 50%, 30% 70%; }
  75%  { background-position: 40% 80%, 50% 40%, 60% 20%, 40% 60%; }
  100% { background-position: 100% 100%, 0% 0%, 50% 100%, 20% 50%; }
}
@keyframes holoCardBorder {
  0%   { background-position: 0% 20%, 100% 80%, 50% 100%; }
  33%  { background-position: 60% 70%, 40% 20%, 80% 30%; }
  66%  { background-position: 100% 40%, 0% 60%, 30% 70%; }
  100% { background-position: 30% 90%, 70% 10%, 50% 50%; }
}

/* Card inner content — above pseudo elements */
.splash-card .splash-card-inner {
  position: relative; z-index: 1;
}
.splash-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.splash-card-icon.blue { background: linear-gradient(135deg, rgba(124,156,255,.22) 0%, rgba(99,102,241,.15) 100%); }
.splash-card-icon.warm { background: linear-gradient(135deg, rgba(245,192,110,.22) 0%, rgba(245,158,11,.15) 100%); }
.splash-card-icon.green { background: linear-gradient(135deg, rgba(74,222,128,.22) 0%, rgba(16,185,129,.15) 100%); }
.splash-card-icon.pink { background: linear-gradient(135deg, rgba(232,121,168,.22) 0%, rgba(139,92,246,.15) 100%); }
.splash-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.splash-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ─── How It Works — Frosted Glass ──────────────────────── */
.splash-how { padding: 80px 24px; max-width: 720px; margin: 0 auto; }
.splash-how h2 {
  font-size: clamp(26px, 5vw, 36px); font-weight: 800;
  text-align: center; margin-bottom: 12px; letter-spacing: -.02em;
}
.splash-how-sub {
  text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 48px;
}
.splash-steps { display: flex; flex-direction: column; gap: 16px; }
.splash-step {
  display: flex; gap: 18px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(74,26,107,.18) 0%, rgba(45,27,105,.12) 50%, rgba(17,24,39,.35) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(139,92,246,.12);
  border-radius: var(--radius); padding: 22px;
  transition: border-color .3s, background .3s, box-shadow .3s, transform .25s ease;
}
.splash-step:hover {
  border-color: rgba(139,92,246,.25);
  background: linear-gradient(135deg, rgba(74,26,107,.28) 0%, rgba(45,27,105,.20) 50%, rgba(17,24,39,.5) 100%);
  box-shadow: 0 4px 20px rgba(139,92,246,.1);
  transform: translateY(-2px) scale(1.01);
}
.splash-step:active { transform: translateY(0) scale(.99); }
.splash-step:hover p { color: rgba(255,255,255,.85); }
.splash-step-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,157,.2) 0%, rgba(139,92,246,.2) 100%);
  color: var(--accent);
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.splash-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.splash-step p { font-size: 14px; color: var(--muted); line-height: 1.5; transition: color .3s; }

/* ─── Step Previews — Interactive Phone Mockups ────────── */
.step-tap-hint {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  color: var(--vita-i);
  opacity: .6;
  margin-left: 8px;
  vertical-align: middle;
  transition: opacity .3s;
}
.splash-step[data-preview] { cursor: pointer; flex-wrap: wrap; }
.splash-step[data-preview] > div:not(.splash-step-num):not(.step-preview) { flex: 1; min-width: 0; }
.splash-step[data-preview]:hover .step-tap-hint { opacity: 1; }
.splash-step.step-open .step-tap-hint { opacity: 0; }

/* Preview container — hidden by default, slides open */
.step-preview {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease, margin .3s ease;
  opacity: 0;
  margin-top: 0;
}
.splash-step.step-open .step-preview {
  opacity: 1;
  margin-top: 16px;
}

/* Phone frame */
.step-phone {
  width: 260px;
  margin: 0 auto;
  border-radius: 28px;
  border: 2px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.6);
  padding: 16px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}
.step-phone::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
}
.sp-screen {
  padding-top: 10px;
}

/* ── Sign-up mockup (step 1) ── */
.sp-logo {
  text-align: center; font-size: 20px; font-weight: 800; margin-bottom: 10px;
}
.sp-logo span {
  background: linear-gradient(90deg, #ffb347, #ff7eb3, #c98ef0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sp-title {
  text-align: center; font-size: 15px; font-weight: 700; margin-bottom: 4px;
}
.sp-sub {
  text-align: center; font-size: 11px; color: var(--muted); margin-bottom: 14px;
}
.sp-google-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 10px;
  background: #fff; color: #333;
  border: none; border-radius: 10px;
  font-size: 12px; font-weight: 600; font-family: inherit;
  cursor: default;
}
.sp-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 12px 0; font-size: 10px; color: var(--muted);
}
.sp-divider span { flex: 1; height: 1px; background: var(--border); }
.sp-input {
  width: 100%; padding: 9px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted); font-size: 11px;
  margin-bottom: 8px;
}
.sp-input-pw {
  width: 100%; padding: 9px 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted); font-size: 11px;
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: space-between;
}
.sp-eye-icon {
  opacity: .4; flex-shrink: 0;
}
.sp-cta-btn {
  width: 100%; padding: 10px;
  background: linear-gradient(135deg, #ff6b9d, #c471ed);
  color: #fff; border: none; border-radius: 8px;
  font-size: 12px; font-weight: 700; font-family: inherit;
  cursor: default;
}
.sp-link {
  text-align: center; font-size: 10px; color: var(--muted); margin-top: 8px;
}

/* ── Profile mockup (step 2) ── */
.sp-profile-card { text-align: center; }
.sp-profile-photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #7c9cff, #c471ed);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
  margin: 0 auto 10px;
}
.sp-profile-name { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.sp-profile-handle { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.sp-profile-bio { font-size: 11px; color: var(--text-dim); margin-bottom: 12px; }
.sp-profile-stats {
  display: flex; justify-content: center; gap: 16px; margin-bottom: 12px;
}
.sp-profile-stats div { font-size: 11px; color: var(--muted); }
.sp-profile-stats strong { color: var(--text); font-weight: 700; display: block; font-size: 14px; }
.sp-profile-badges {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 14px; flex-wrap: wrap;
}
.sp-badge {
  display: inline-block; padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px; font-size: 10px; color: var(--text-dim);
}
.sp-add-friend {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #ff6b9d, #c471ed);
  color: #fff; border: none; border-radius: 10px;
  font-size: 12px; font-weight: 700; font-family: inherit;
  cursor: default;
}
.sp-mutual {
  font-size: 10px; color: var(--muted); margin-top: 10px;
}

/* ── Event card mockup (step 3) ── */
.sp-event-card {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}
.sp-event-gradient {
  height: 60px;
  background: linear-gradient(135deg, #1e1b4b, #581c87, #312e81);
}
.sp-event-badge {
  display: inline-block; margin: -10px 0 0 12px;
  padding: 3px 10px;
  background: rgba(139,92,246,.25);
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 100px;
  font-size: 9px; font-weight: 700; letter-spacing: .06em;
  color: #c4b5fd;
}
.sp-event-title {
  font-size: 15px; font-weight: 700;
  padding: 8px 12px 4px;
}
.sp-event-meta {
  display: flex; align-items: center; gap: 4px;
  padding: 0 12px 10px;
  font-size: 10px; color: var(--muted);
}
.sp-event-friends {
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px 10px;
}
.sp-friend-dots {
  display: flex;
}
.sp-friend-dots span {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #fff;
  margin-right: -6px;
  border: 2px solid rgba(0,0,0,.5);
}
.sp-friend-text { font-size: 10px; color: var(--text-dim); }

/* Vote buttons */
.sp-vote-btns {
  display: flex; gap: 6px;
  padding: 0 12px 12px;
}
.sp-vote {
  flex: 1; padding: 7px 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 10px; font-weight: 600; color: var(--muted);
  cursor: default; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.sp-vote-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
}
.sp-vote-dot.y { background: #facc15; }
.sp-vote-dot.r { background: #f87171; }
.sp-vote.going.active {
  background: rgba(74,222,128,.12);
  border-color: rgba(74,222,128,.3);
  color: #4ade80;
}

/* ── Crew dashboard mockup (step 4) ── */
.sp-crew-dash { padding: 2px 0; }
.sp-crew-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.sp-crew-emoji {
  font-size: 28px;
}
.sp-crew-name { font-size: 14px; font-weight: 700; }
.sp-crew-sub { font-size: 10px; color: var(--muted); margin-top: 1px; }
.sp-crew-members {
  display: flex; gap: 0; margin-bottom: 12px;
}
.sp-crew-members span {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff;
  margin-right: -4px;
  border: 2px solid rgba(0,0,0,.5);
}
.sp-crew-tabs {
  display: flex; gap: 0; margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sp-crew-tabs span {
  flex: 1; text-align: center;
  padding: 6px 0; font-size: 9px; font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color .2s;
}
.sp-crew-tabs span.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Bento grid */
.sp-crew-bento {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.sp-bento-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px;
}
.sp-bento-card.full {
  grid-column: 1 / -1;
}
.sp-bento-label { font-size: 10px; font-weight: 600; margin-bottom: 4px; }
.sp-bento-val { font-size: 9px; color: var(--muted); margin-bottom: 6px; }
.sp-bento-bar {
  height: 4px; border-radius: 4px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.sp-bento-bar div {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, #ff6b9d, #c471ed);
}
.sp-chat-line {
  font-size: 10px; color: var(--text-dim); margin-bottom: 4px; line-height: 1.4;
}
.sp-chat-line strong { color: var(--text); font-weight: 600; }

/* ─── The Vibe — Frosted Glass ──────────────────────────── */
.splash-vibe { padding: 80px 24px; max-width: 720px; margin: 0 auto; }
.splash-vibe h2 {
  font-size: clamp(26px, 5vw, 36px); font-weight: 800;
  text-align: center; margin-bottom: 12px; letter-spacing: -.02em;
}
.splash-vibe-sub {
  text-align: center; color: var(--muted); font-size: 16px; margin-bottom: 48px;
}
.splash-vibe-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 520px) { .splash-vibe-grid { grid-template-columns: 1fr; } }
.vibe-card {
  background: rgba(17, 24, 39, .35);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 20px; text-align: center;
  transition: border-color .3s, background .3s;
}
.vibe-card:hover {
  background: rgba(17, 24, 39, .5);
}
.vibe-card.yes { border-color: rgba(74,222,128,.2); }
.vibe-card.yes:hover { border-color: rgba(74,222,128,.35); }
.vibe-card.no { border-color: rgba(248,113,113,.1); opacity: .6; }
.vibe-card.no h3 { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(248,113,113,.4); }
.vibe-emoji { font-size: 28px; margin-bottom: 10px; }
.vibe-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.vibe-card p { font-size: 13px; color: var(--muted); line-height: 1.45; }
.vibe-detail {
  max-height: 0; overflow: hidden;
  font-size: 12px; color: var(--text-dim); line-height: 1.6;
  transition: max-height .35s cubic-bezier(.2,.8,.2,1), margin .3s ease;
  margin-top: 0;
}
.vibe-card.vibe-open .vibe-detail {
  margin-top: 10px;
}
.vibe-card.vibe-open {
  border-color: rgba(255,107,157,.3);
}

/* ─── FAQ — Frosted Glass ───────────────────────────────── */
.splash-faq { padding: 80px 24px; max-width: 720px; margin: 0 auto; }
.splash-faq h2 {
  font-size: clamp(26px, 5vw, 36px); font-weight: 800;
  text-align: center; margin-bottom: 40px; letter-spacing: -.02em;
}
.faq-list {
  background: rgba(17, 24, 39, .3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 4px 20px;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,.05); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--text); width: 100%; text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-arrow { font-size: 18px; color: var(--muted); transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
  font-size: 15px; color: var(--text-dim); line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 18px; }

/* ─── Galactic Preview Section ──────────────────────────── */
.splash-galaxy {
  position: relative;
  padding: 0;
  margin: 80px 0 0;
  overflow: hidden;
}
.galaxy-inner {
  position: relative;
  width: 100%;
  height: 540px;
  background: radial-gradient(ellipse at 50% 50%, rgba(17,20,30,1) 0%, rgba(8,10,18,1) 100%);
  border-top: 1px solid rgba(196,113,237,.08);
  border-bottom: 1px solid rgba(196,113,237,.08);
}
#galaxyCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.galaxy-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 25;
  background: radial-gradient(ellipse at 50% 50%, rgba(8,10,18,.88) 0%, rgba(8,10,18,.93) 50%, rgba(8,10,18,.97) 100%);
}
.galaxy-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 10px;
  color: var(--text, #f0f2f8);
}
.galaxy-title .vita-gradient {
  background: linear-gradient(135deg, #f5a623, #ff6b9d, #c471ed, #7c9cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.galaxy-sub {
  font-size: 15px;
  color: var(--muted, #7b8ba5);
  max-width: 420px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.galaxy-cta {
  font-size: 14px !important;
  padding: 12px 28px !important;
}
@media (max-width: 600px) {
  .galaxy-inner { height: 440px; }
}

/* ─── Solar system labels, detail card, cursor ─────────── */
.galaxy-event-label {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 10;
}
.galaxy-event-label.visible {
  opacity: 1;
  transform: translateY(0);
}
.galaxy-event-label .gel-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 6px 10px;
  white-space: nowrap;
}
.galaxy-event-label .gel-name {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}
.galaxy-event-label .gel-time {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  font-weight: 500;
}

.galaxy-detail-card {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92) translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 20;
}
.galaxy-detail-card.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.galaxy-detail-card .gdc-inner {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 160px;
}
.galaxy-detail-card .gdc-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.galaxy-detail-card .gdc-date {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}
.galaxy-detail-card .gdc-venue {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}
.galaxy-detail-card .gdc-friends {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  background: rgba(255,179,71,0.15);
  border: 1px solid rgba(255,179,71,0.25);
  border-radius: 20px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
  color: #ffb347;
}

.galaxy-cursor-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px 4px rgba(255,255,255,0.6), 0 0 24px 8px rgba(124,156,255,0.3);
  pointer-events: none;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galaxy-cursor-dot.visible {
  opacity: 1;
}

/* ─── Bottom CTA ────────────────────────────────────────── */
.splash-bottom-cta {
  text-align: center; padding: 80px 24px 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,154,120,.04) 100%);
}
.splash-bottom-cta h2 {
  font-size: clamp(28px, 6vw, 42px); font-weight: 800;
  margin-bottom: 16px; letter-spacing: -.02em;
}
.splash-bottom-cta p {
  color: var(--muted); font-size: 17px; margin-bottom: 32px;
  max-width: 460px; margin-left: auto; margin-right: auto;
}

/* ─── Brand Meaning ─────────────────────────────────────── */
.splash-meaning {
  text-align: center; padding: 60px 24px 20px;
  max-width: 480px; margin: 0 auto;
}
.meaning-word {
  font-size: clamp(28px, 5vw, 38px); font-weight: 800;
  letter-spacing: .01em; margin-bottom: 14px;
  opacity: .85;
}
.vita-gradient {
  background: linear-gradient(90deg, #ffb347 0%, #f5944a 20%, #ff7eb3 40%, #e87bc8 55%, #c98ef0 72%, #a8b4f8 88%, #5ce0d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.meaning-text {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  font-style: normal;
}
.meaning-text em {
  color: var(--text-dim); font-style: italic;
}

/* ─── Footer ────────────────────────────────────────────── */
.splash-footer {
  text-align: center; padding: 48px 24px 64px;
  font-size: 13px; color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.05);
}
.splash-footer p + p { margin-top: 4px; }

.splash-footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px 16px;
  max-width: 720px;
  margin: 24px auto;
  text-align: left;
}
.splash-footer-links .footer-col {
  display: flex; flex-direction: column; gap: 6px;
}
.splash-footer-links .footer-col strong {
  color: var(--text-primary, #e8eaed);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.splash-footer-links .footer-col a {
  color: var(--muted); text-decoration: none; font-size: 13px;
  transition: color .2s;
}
.splash-footer-links .footer-col a:hover { color: var(--accent, #a78bfa); }

.footer-copy {
  margin-top: 24px; font-size: 12px; opacity: 0.6;
}

/* ─── Event Ticker — location-aware scrolling preview ──── */
.event-ticker-section {
  position: relative;
  padding: 0 0 10px;
  overflow: hidden;
}
.ticker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 14px;
  font-size: 14px;
  color: var(--text-dim);
}
.ticker-location-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.ticker-location-label strong {
  color: var(--text);
}
.ticker-track-wrap {
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 14px;
  will-change: transform;
  padding: 4px 0;
}
.ticker-card {
  flex-shrink: 0;
  width: 240px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  cursor: default;
}
.ticker-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.ticker-card-img {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, var(--surface2), var(--surface3));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticker-card-emoji {
  font-size: 28px;
  opacity: .6;
}
.ticker-card-body {
  padding: 10px 12px 12px;
}
.ticker-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.ticker-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ticker-card-date {
  font-size: 11px;
  color: var(--vita-i);
  font-weight: 600;
}
.ticker-card-venue {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Fade edges */
.ticker-fade-left, .ticker-fade-right {
  position: absolute;
  top: 30px; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.ticker-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.ticker-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════
   Scrapbook Cards — Hero section event previews
   ═══════════════════════════════════════════════════════════ */

/* Wrapper */
.splash-scrapbook {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 20px;
  z-index: 2;
  overflow: visible;
}

/* ── Desktop: 3 cards side-by-side ── */
.sb-desktop {
  display: none !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: flex-start;
  gap: 22px;
  padding: 10px 0 0;
  position: relative;
}
@media (min-width: 900px) {
  .sb-desktop { display: flex !important; }
  .sb-mobile { display: none !important; }
}

.sb-desktop .sb-card {
  width: 320px;
  flex-shrink: 0;
  flex-grow: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.sb-desktop .sb-card.show {
  opacity: 1;
  transform: translateY(0);
}
/* Center card raised */
.sb-desktop .sb-card:nth-child(2).show {
  transform: translateY(-22px);
}
/* Left card slight tilt */
.sb-desktop .sb-card:nth-child(1) {
  transform: translateY(24px) rotate(-1.5deg);
}
.sb-desktop .sb-card:nth-child(1).show {
  transform: translateY(8px) rotate(-1.5deg);
}
/* Right card slight tilt */
.sb-desktop .sb-card:nth-child(3) {
  transform: translateY(24px) rotate(1.5deg);
}
.sb-desktop .sb-card:nth-child(3).show {
  transform: translateY(8px) rotate(1.5deg);
}

/* ── Animated cursors ── */
.sb-cursor {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.sb-cursor.visible { opacity: 1; }
.sb-cursor svg {
  width: 18px; height: 18px;
  display: block;
}
.sb-cursor-label {
  position: absolute;
  top: 18px; left: 14px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
  color: #fff;
  letter-spacing: .02em;
}

/* ── Mobile: phone frame ── */
.sb-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 8px;
}
.sb-phone {
  width: 100%;
  max-width: 370px;
  background: rgba(19, 22, 28, .95);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.1);
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.sb-phone-notch {
  width: 80px; height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
  margin: 0 auto 8px;
}
.sb-phone-screen {
  background: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: none;
}
.sb-phone-screen::-webkit-scrollbar { display: none; }
.sb-scroll-hint {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  padding: 8px 0 0;
  opacity: .6;
}

/* ── Card chrome ── */
.sb-card {
  background: rgba(19, 22, 28, .95);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
}
/* Mobile: no border-radius, stacked */
.sb-phone-screen .sb-card {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sb-phone-screen .sb-card:last-child { border-bottom: none; }

/* Desktop hover lift */
.sb-desktop .sb-card {
  transition: opacity .6s ease, transform .6s ease, box-shadow .3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.sb-desktop .sb-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.55);
}

/* Grip bar */
.sb-grip {
  padding: 7px 12px;
  background: linear-gradient(180deg, rgba(26,31,40,1), rgba(20,24,33,1));
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.sb-grip .sb-type { color: #cfd7ea; font-weight: 700; }

/* Thumbnail */
.sb-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0f1218 center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Body */
.sb-body { padding: 12px 14px; }
.sb-body h3 { margin: 0 0 4px; font-size: 15px; font-weight: 700; line-height: 1.2; }
.sb-meta { font-size: 11px; color: var(--muted); margin-bottom: 8px; line-height: 1.4; }
.sb-desc { font-size: 12px; color: #cfd5e2; margin: 0 0 10px; line-height: 1.4; font-style: italic; }

/* Vote buttons */
.sb-votes { display: flex; gap: 6px; margin-bottom: 8px; }
.sb-vbtn {
  flex: 1;
  border: 1px solid rgba(255,255,255,.08);
  background: #0f1218;
  color: var(--text);
  padding: 6px 4px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  transition: all .2s;
  font-family: inherit;
}
.sb-vbtn .sb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sb-vbtn.g .sb-dot { background: var(--success, #2ecc71); }
.sb-vbtn.y .sb-dot { background: #f1c40f; }
.sb-vbtn.r .sb-dot { background: #ff5a5f; }
.sb-vbtn.active.g { border-color: var(--success, #2ecc71); background: rgba(46,204,113,.12); }
.sb-vbtn.active.y { border-color: #f1c40f; background: rgba(241,196,15,.12); }
.sb-vbtn.active.r { border-color: #ff5a5f; background: rgba(255,90,95,.12); }
.sb-vbtn:hover { border-color: rgba(255,255,255,.15); }

/* Chips */
.sb-chips { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 4px; }
.sb-chip {
  font-size: 10px; font-weight: 800;
  padding: 3px 6px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0f1218;
  letter-spacing: .04em;
}
.sb-chip.g { border-color: var(--success, #2ecc71); color: var(--success, #2ecc71); }
.sb-chip.y { border-color: #f1c40f; color: #f1c40f; }
.sb-chip.r { border-color: #ff5a5f; color: #ff5a5f; }

/* Stickers row */
.sb-stickers {
  padding: 6px 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  background: #0f1218;
  font-size: 16px;
}
.sb-stickers .sb-sticker {
  cursor: pointer;
  transition: transform .15s;
}
.sb-stickers .sb-sticker:hover { transform: scale(1.3); }
.sb-stickers .sb-add-sticker {
  margin-left: auto;
  background: transparent;
  border: 1px dashed rgba(255,255,255,.08);
  color: var(--muted);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}
.sb-stickers .sb-add-sticker:hover { border-color: var(--muted); color: var(--text); }

/* Comments section */
.sb-comments {
  border-top: 1px solid rgba(255,255,255,.06);
}
.sb-comments-toggle {
  width: 100%; background: transparent;
  border: none; color: var(--muted);
  font-size: 10px; font-weight: 600;
  padding: 7px 14px; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  letter-spacing: .06em; text-transform: uppercase;
  font-family: inherit;
}
.sb-comments-toggle:hover { color: var(--text); }
.sb-comments-toggle .sb-arrow { transition: transform .2s; font-size: 8px; }
.sb-comments-toggle.open .sb-arrow { transform: rotate(180deg); }
.sb-comments-body {
  display: none; padding: 8px 14px 10px;
}
.sb-comments-body.open { display: block; }
.sb-comment-item {
  margin-top: 6px;
  padding: 8px 10px;
  background: #0c0f14;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.03);
}
.sb-comment-item .sb-cby { font-size: 11px; font-weight: 700; color: #cfd7ea; margin-bottom: 2px; }
.sb-comment-item .sb-ctxt { font-size: 12px; color: #dde3f0; line-height: 1.4; }

/* Crew badge pill */
.sb-crew-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto 0;
}
.sb-crew-pill-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(19, 22, 28, .8);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  font-weight: 600;
}
.sb-crew-avatars {
  display: flex;
}
.sb-crew-avatars .sb-av {
  width: 24px; height: 24px;
  border-radius: 50%;
  margin-left: -6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  border: 2px solid var(--bg, #0b0d10);
  color: #fff;
}
.sb-crew-avatars .sb-av:first-child { margin-left: 0; }

/* CTA wrapper below cards */
.splash-cta-wrap {
  text-align: center;
  padding: 56px 24px 0;
  position: relative;
  z-index: 5;
}

/* ─── Disable parallax on mobile/touch ──────────────────── */
@media (max-width: 768px) {
  .splash-card { transform: none !important; }
  .splash-card::before, .splash-card::after { display: none; }
}

/* ─── Mobile spacing — tighten up the splash page ────────── */
@media (max-width: 600px) {
  .splash-hero {
    padding: 90px 20px 40px;
  }
  .splash-sub {
    margin-bottom: 28px;
  }
  .splash-features {
    padding: 20px 20px 60px;
  }
  .splash-how {
    padding: 50px 20px;
  }
  .splash-vibe {
    padding: 50px 20px;
  }
  .splash-faq {
    padding: 50px 20px;
  }
  .splash-bottom-cta {
    padding: 50px 20px 80px;
  }
}
