/* ============================================
   SPLASH PAGE STYLES
   ============================================ */

.splash-body {
  background: var(--blue-light);
  overflow-x: hidden;
}

/* ---- Canvas BG ---- */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ---- Particles ---- */
.particles {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}

/* ---- Nav ---- */
.splash-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 56px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-light);
}
.splash-logo { height: 30px; }
.splash-nav-links { display: flex; align-items: center; gap: var(--space-md); }
.splash-nav-link {
  font-size: 13px; color: var(--black);
  transition: color var(--dur-fast);
}
.splash-nav-link:hover { color: var(--pink-dark); }

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px var(--space-xl) var(--space-xl);
  text-align: center;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  margin-bottom: var(--space-lg);
  font-weight: bold;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1.0;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-title-line {
  display: block;
  font-size: clamp(48px, 10vw, 100px);
  color: var(--white);
  text-shadow: 0 4px 24px rgba(241,119,174,0.4),
               0 2px 0 var(--pink-dark);
  letter-spacing: -0.02em;
}
.hero-title-on {
  font-size: clamp(30px, 5vw, 56px);
  color: var(--yellow);
  text-shadow: 0 2px 0 rgba(35,31,32,0.2);
}
.hero-title-internet {
  color: var(--pink-dark);
  text-shadow: 0 4px 24px rgba(241,119,174,0.5),
               0 2px 0 rgba(35,31,32,0.2);
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--white);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 6px rgba(35,31,32,0.15);
}

.hero-ctas {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}
.hero-cta-main {
  font-size: 16px;
  padding: 14px 32px;
  box-shadow: 0 8px 28px rgba(241,119,174,0.45);
}
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ---- Phone Mockup ---- */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.mockup-phone {
  width: 220px;
  height: 440px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(35,31,32,0.28),
              0 0 0 6px rgba(255,255,255,0.6),
              inset 0 2px 6px rgba(255,255,255,0.8);
  overflow: hidden;
  position: relative;
}
.mockup-notch {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 12px;
  background: var(--black);
  border-radius: var(--radius-pill);
  z-index: 2;
}
.mockup-screen {
  width: 100%; height: 100%;
  background: var(--pink-light);
  padding: 32px 10px 10px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
}
.mockup-nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border-radius: 8px;
  padding: 5px 8px;
}
.mockup-logo-sm {
  font-family: var(--font-display);
  font-size: 12px; color: var(--pink-dark); font-weight: bold;
}
.mockup-nav-icons { display: flex; gap: 5px; }
.mockup-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
}
.mockup-dot.pink { background: var(--pink-dark); }

.mockup-stories {
  display: flex; gap: 6px; padding: 4px 0;
}
.mockup-story-ring {
  width: 30px; height: 30px;
  border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--pink-dark);
}
.mockup-story-ring.yellow { border-color: var(--yellow); background: rgba(250,212,72,0.3); }
.mockup-story-ring.pink   { background: rgba(241,119,174,0.3); }
.mockup-story-ring.blue   { border-color: var(--blue); background: rgba(101,129,184,0.3); }

.mockup-horoscope-card {
  background: var(--yellow);
  border-radius: 10px; padding: 8px;
  display: flex; align-items: center; gap: 6px;
}
.mockup-h-icon { font-size: 16px; }
.mockup-h-text { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mockup-star-icon { font-size: 14px; }

.mockup-post {
  background: var(--white);
  border-radius: 10px; padding: 8px;
  display: flex; gap: 7px;
}
.mockup-avatar-sm {
  width: 22px; height: 22px;
  border-radius: 50%; flex-shrink: 0;
}
.mockup-avatar-sm.pink { background: var(--pink-med); }
.mockup-avatar-sm.blue { background: var(--blue-light); }
.mockup-post-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }

.mockup-line {
  height: 6px; border-radius: 3px;
  background: var(--pink-light);
}
.mockup-line.long  { width: 90%; }
.mockup-line.med   { width: 65%; }
.mockup-line.short { width: 45%; }

.mockup-actions-row {
  display: flex; gap: 8px; padding: 4px;
  font-size: 9px; color: var(--blue);
}
.mockup-heart { color: var(--pink-dark); }
.mockup-share { margin-left: auto; }

/* Float badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: bold;
  box-shadow: var(--shadow-pop);
  white-space: nowrap;
}
.float-badge-1 { top: 40px;  left: -90px; }
.float-badge-2 { top: 140px; right: -100px; }
.float-badge-3 { bottom: 60px; left: -80px; }

/* ---- Marquee ---- */
.marquee-band {
  position: relative; z-index: 1;
  background: var(--pink-dark);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}
.marquee-track {
  display: flex; align-items: center; gap: var(--space-xl);
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(even) { color: var(--yellow); }

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

/* ---- Features ---- */
.features {
  position: relative; z-index: 1;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--white);
}
.features-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.features-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--pink-dark);
  margin-bottom: var(--space-sm);
}
.features-sub {
  font-size: 16px; color: #666;
  margin-bottom: var(--space-2xl);
}
.features-sub em { color: var(--pink-dark); font-style: normal; font-weight: bold; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}
.feature-card {
  background: var(--pink-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: left;
  transition: transform var(--dur-med) var(--ease-bounce),
              box-shadow var(--dur-med);
}
.feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-pop);
}
.feature-icon { font-size: 28px; margin-bottom: var(--space-sm); }
.feature-card h3 {
  font-size: 15px; font-weight: bold;
  margin-bottom: var(--space-xs);
}
.feature-card p { font-size: 12px; line-height: 1.65; color: #444; }

.card-yellow { background: var(--yellow); }
.card-pink   { background: var(--pink-med); }
.card-blue   { background: var(--blue-light); }

/* ---- Account Types ---- */
.account-types {
  position: relative; z-index: 1;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--blue-light);
  text-align: center;
}
.account-types-inner { max-width: 900px; margin: 0 auto; }
.account-types h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: var(--space-xs);
}
.account-types-sub { color: rgba(255,255,255,0.75); margin-bottom: var(--space-xl); font-size: 15px; }

.account-types-grid {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
.account-type-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  width: 160px;
  display: flex; flex-direction: column;
  align-items: center; gap: var(--space-sm);
  text-align: center;
  transition: transform var(--dur-med) var(--ease-bounce),
              box-shadow var(--dur-med);
  cursor: pointer;
}
.account-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(241,119,174,0.3);
}
.account-type-icon { font-size: 36px; }
.account-type-card h3 { font-size: 15px; font-weight: bold; font-family: var(--font-display); }
.account-type-card p  { font-size: 11px; line-height: 1.55; color: #666; }
.account-type-card[data-type="lover"]    { border-top: 4px solid var(--pink-dark); }
.account-type-card[data-type="musician"] { border-top: 4px solid var(--yellow); }
.account-type-card[data-type="artist"]   { border-top: 4px solid var(--blue); }
.account-type-card[data-type="creator"]  { border-top: 4px solid var(--pink-med); }
.account-type-card[data-type="brand"]    { border-top: 4px solid var(--blue-light); }

/* ---- Manifesto ---- */
.manifesto {
  position: relative; z-index: 1;
  background: var(--black);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  overflow: hidden;
}
.manifesto::before {
  content: '♡';
  position: absolute; top: -30px; left: 50%;
  transform: translateX(-50%);
  font-size: 200px; opacity: 0.04;
  color: var(--pink-dark);
  pointer-events: none;
}
.manifesto-inner { position: relative; max-width: 700px; margin: 0 auto; }
.manifesto-quote {
  font-size: clamp(22px, 3.5vw, 38px);
  color: var(--white);
  line-height: 1.4;
  font-style: normal;
  margin-bottom: var(--space-md);
}
.manifesto-quote em { color: var(--yellow); font-style: normal; }
.manifesto-attr { color: var(--pink-med); font-size: 13px; margin-bottom: var(--space-xl); }
.manifesto-cta { font-size: 16px; padding: 14px 36px; }

/* ---- Footer ---- */
.splash-footer {
  position: relative; z-index: 1;
  background: var(--white);
  padding: var(--space-xl);
  display: flex; flex-direction: column;
  align-items: center; gap: var(--space-md);
  border-top: 2px solid var(--pink-light);
}
.footer-logo { height: 26px; }
.footer-links {
  display: flex; gap: var(--space-lg);
  font-size: 12px;
}
.footer-links a { color: #666; transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--pink-dark); }
.footer-copy { font-size: 11px; color: #999; text-align: center; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .splash-nav { padding: 0 var(--space-md); }
  .hero { padding: 90px var(--space-md) var(--space-xl); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .float-badge { display: none; }
  .features, .account-types, .manifesto { padding: var(--space-xl) var(--space-md); }
  .account-types-grid { gap: var(--space-sm); }
  .account-type-card { width: 140px; }
}
