/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Colors */
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  
  --lavender-50: #f5f3ff;
  --lavender-100: #ede9fe;
  --lavender-200: #ddd6fe;
  --lavender-300: #c4b5fd;
  --lavender-400: #a78bfa;
  --lavender-500: #8b5cf6;
  
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  
  --gold-100: #fef3c7;
  --gold-200: #fde68a;
  --gold-300: #fcd34d;
  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  
  --cream: #fffbf5;
  --cream-dark: #fef7ee;
  --white: #ffffff;
  --dark: #1a1025;
  --dark-soft: #2d1f3d;
  --text-primary: #3d2b50;
  --text-secondary: #7c6a8f;
  --text-light: #a99bbe;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 25%, #ede9fe 50%, #fdf2f8 75%, #fff1f2 100%);
  --gradient-pink: linear-gradient(135deg, #f9a8d4, #f472b6, #ec4899);
  --gradient-love: linear-gradient(135deg, #f472b6, #a78bfa);
  --gradient-warm: linear-gradient(135deg, #fda4af, #f9a8d4, #c4b5fd);
  --gradient-cta: linear-gradient(135deg, #ec4899, #8b5cf6);
  --gradient-dark: linear-gradient(135deg, #1a1025, #2d1f3d, #3d1f5c);
  
  /* Typography */
  --font-primary: 'Outfit', -apple-system, sans-serif;
  --font-cursive: 'Quicksand', sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --container-padding: clamp(1.5rem, 4vw, 3rem);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(244, 114, 182, 0.12);
  --shadow-medium: 0 8px 40px rgba(244, 114, 182, 0.18);
  --shadow-strong: 0 12px 60px rgba(244, 114, 182, 0.25);
  --shadow-glow: 0 0 40px rgba(244, 114, 182, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

/* ===== UTILITY ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-label {
  font-family: var(--font-cursive);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--pink-400);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== FLOATING HEARTS BACKGROUND ===== */
.floating-hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-heart {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.08;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.08;
  }
  90% {
    opacity: 0.08;
  }
  100% {
    transform: translateY(-100px) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244, 114, 182, 0.1);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(244, 114, 182, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink-500);
  letter-spacing: -0.02em;
}

.navbar-logo .logo-heart {
  font-size: 1.4rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.2); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
  60% { transform: scale(1); }
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-pink);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.navbar-links a:hover {
  color: var(--pink-500);
}

.navbar-links a:hover::after {
  width: 100%;
}

.btn-nav-cta {
  padding: 0.6rem 1.6rem;
  background: var(--gradient-cta);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-nav-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(236, 72, 153, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--pink-500);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.08) 0%, transparent 70%);
  animation: heroPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 70%);
  animation: heroPulse 10s ease-in-out infinite reverse;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(244, 114, 182, 0.1);
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pink-500);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: var(--pink-400);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .highlight {
  background: var(--gradient-love);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-cursive);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--pink-400);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  background: var(--gradient-cta);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid rgba(244, 114, 182, 0.25);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--pink-400);
  color: var(--pink-500);
  background: rgba(244, 114, 182, 0.05);
}

.hero-image-wrapper {
  position: relative;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  transition: var(--transition-smooth);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.hero-sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: sparkle 3s ease-in-out infinite;
}

.hero-sparkle:nth-child(2) { top: 10%; right: -10%; animation-delay: 0.5s; }
.hero-sparkle:nth-child(3) { bottom: 20%; left: -5%; animation-delay: 1s; }
.hero-sparkle:nth-child(4) { top: 30%; left: -8%; animation-delay: 1.5s; }

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works .section-subtitle {
  margin: 0 auto;
}

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

.step-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  background: var(--pink-50);
  border: 1px solid rgba(244, 114, 182, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-love);
  transform: scaleX(0);
  transition: var(--transition-smooth);
  transform-origin: left;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.step-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== THE CLACK SECTION ===== */
.the-clack {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.the-clack .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.clack-image-wrapper {
  position: relative;
}

.clack-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
}

.clack-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 4s ease-in-out infinite;
}

.clack-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.clack-badge-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.clack-badge-subtext {
  font-size: 0.8rem;
  color: var(--text-light);
}

.clack-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.clack-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 114, 182, 0.1);
  transition: var(--transition-smooth);
}

.clack-feature:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.clack-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--pink-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.clack-feature h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.clack-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== APP SECTION ===== */
.app-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(244, 114, 182, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.app-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-section .section-title {
  color: white;
}

.app-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.app-image-wrapper {
  display: flex;
  justify-content: center;
}

.app-image {
  max-width: 400px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: float 5s ease-in-out infinite;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.app-feature-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
}

.app-feature-icon {
  font-size: 1.5rem;
  min-width: 36px;
  text-align: center;
}

.app-feature-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ===== WRAPPED SECTION ===== */
.wrapped-section {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
}

.wrapped-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wrapped-image-wrapper {
  display: flex;
  justify-content: center;
}

.wrapped-image {
  max-width: 380px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  animation: float 6s ease-in-out infinite;
}

.wrapped-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.wrapped-stat {
  padding: 1.5rem;
  background: var(--pink-50);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(244, 114, 182, 0.1);
  transition: var(--transition-smooth);
}

.wrapped-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.wrapped-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.wrapped-stat h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.wrapped-stat p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  position: relative;
}

.collections .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.collections .section-subtitle {
  margin: 0 auto;
}

.collections-image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.collections-image {
  max-width: 700px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  transition: var(--transition-smooth);
}

.collections-image:hover {
  transform: scale(1.02);
}

.collection-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.collection-tier {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(244, 114, 182, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.collection-tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.collection-tier.featured {
  border-color: var(--pink-300);
  box-shadow: var(--shadow-soft);
}

.collection-tier.featured::before {
  content: '⭐ Popular';
  position: absolute;
  top: 12px;
  right: -28px;
  background: var(--gradient-cta);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
}

.tier-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.collection-tier h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink-500);
  margin-bottom: 0.25rem;
}

.tier-unit {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.collection-tier p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== UNBOXING SECTION ===== */
.unboxing {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
}

.unboxing .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.unboxing-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  transition: var(--transition-smooth);
}

.unboxing-image:hover {
  transform: scale(1.02) rotate(-1deg);
}

.unboxing-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.unboxing-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.unboxing-point-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--pink-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.unboxing-point h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.unboxing-point p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== CTA / WAITLIST ===== */
.waitlist-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 50%, rgba(244, 114, 182, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.waitlist-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.waitlist-emoji {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: heartbeat 2s ease-in-out infinite;
}

.waitlist-content .section-title {
  color: white;
  margin-bottom: 1rem;
}

.waitlist-content .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 2.5rem;
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.waitlist-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: white;
  font-size: 1rem;
  font-family: var(--font-primary);
  outline: none;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.waitlist-input:focus {
  border-color: var(--pink-400);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 20px rgba(244, 114, 182, 0.2);
}

.btn-waitlist {
  padding: 1rem 2rem;
  background: var(--gradient-cta);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
  white-space: nowrap;
}

.btn-waitlist:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
}

.waitlist-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.waitlist-success {
  display: none;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 114, 182, 0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.waitlist-success.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.waitlist-success h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.waitlist-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0 2rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink-400);
}

.footer-tagline {
  font-family: var(--font-cursive);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social:hover {
  background: var(--gradient-cta);
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
  text-align: center;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .the-clack .container,
  .app-section .container,
  .wrapped-section .container,
  .unboxing .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .clack-features,
  .app-features-list,
  .unboxing-points {
    align-items: center;
  }
  
  .clack-image-wrapper,
  .app-image-wrapper,
  .wrapped-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .collection-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 251, 245, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(244, 114, 182, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
  
  .collection-tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .wrapped-highlights {
    grid-template-columns: 1fr 1fr;
  }
  
  .waitlist-form {
    flex-direction: column;
  }
  
  .btn-waitlist {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .wrapped-highlights {
    grid-template-columns: 1fr;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-200);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-300);
}
