/* BLOBS — index page */
.blob { opacity: 0.16; }
.blob-1 { width: 520px; height: 520px; background: var(--orange); top: -220px; left: -180px; animation-delay: 0s; }
.blob-2 { width: 460px; height: 460px; background: var(--purple); bottom: -200px; right: -140px; animation-delay: -7s; }
.blob-3 { width: 380px; height: 380px; background: var(--teal); top: 55%; right: -160px; animation-delay: -13s; opacity: 0.1; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 130px 32px 80px; position: relative;
}
.hero-inner {
  max-width: 1300px; width: 100%;
  display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(241,164,60,0.12); border: 1px solid rgba(241,164,60,0.3);
  color: var(--orange); border-radius: 50px; padding: 7px 16px;
  font-size: 13px; font-weight: 700; margin-bottom: 22px; letter-spacing: 0.3px;
  animation: fadeUp 0.7s ease both;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(59,206,172,0.6); } 50% { box-shadow: 0 0 0 6px rgba(59,206,172,0); } }

.hero-subtitle { font-size: 15px; color: var(--orange-light); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; animation: fadeUp 0.7s 0.05s ease both; }

.hero-title { font-size: clamp(44px, 6.5vw, 84px); font-weight: 900; line-height: 0.98; letter-spacing: -2.5px; margin-bottom: 22px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; animation: titleReveal 0.9s cubic-bezier(.22,1,.36,1) both; }
.hero-title .line:nth-child(2) span { animation-delay: 0.12s; }
@keyframes titleReveal { from { transform: translateY(110%) rotate(4deg); opacity: 0; } to { transform: translateY(0) rotate(0); opacity: 1; } }

.hero-title .accent {
  background: linear-gradient(120deg, var(--orange), var(--orange-light) 60%, var(--pink));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-desc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 28px; max-width: 480px; animation: fadeUp 0.7s 0.25s ease both; }

.hero-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; animation: fadeUp 0.7s 0.32s ease both; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; fill: var(--orange); animation: starPop 0.4s ease both; }
.stars svg:nth-child(1){animation-delay:.4s} .stars svg:nth-child(2){animation-delay:.5s}
.stars svg:nth-child(3){animation-delay:.6s} .stars svg:nth-child(4){animation-delay:.7s} .stars svg:nth-child(5){animation-delay:.8s}
@keyframes starPop { from { transform: scale(0) rotate(-30deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
.rating-text { font-size: 14px; color: rgba(255,255,255,0.5); }
.rating-text strong { color: var(--white); }

.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 0.7s 0.4s ease both; }

/* HERO VISUAL */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-mockup-wrap { position: relative; width: 270px; animation: floatPhone 5s ease-in-out infinite; }
@keyframes floatPhone { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-18px) rotate(1deg); } }

.phone-glow {
  position: absolute; inset: -50px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(241,164,60,0.3) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.phone-mockup {
  width: 270px; background: #0d0d18; border-radius: 42px; padding: 12px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 50px 90px rgba(0,0,0,0.6);
  position: relative; z-index: 1;
}
.phone-screen { border-radius: 32px; overflow: hidden; aspect-ratio: 9/19.5; background: #1a1a1a; position: relative; }
.phone-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.phone-screen img.active { opacity: 1; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #0d0d18; border-radius: 0 0 20px 20px; z-index: 2; }

.app-icon-float {
  position: absolute; bottom: -22px; right: -34px; width: 76px; height: 76px;
  border-radius: 19px; overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,255,255,0.1);
  z-index: 3; animation: iconBob 3.5s ease-in-out infinite;
}
@keyframes iconBob { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(6deg); } }
.app-icon-float img { width: 100%; height: 100%; object-fit: cover; }

.orbit-chip {
  position: absolute; background: rgba(255,255,255,0.95); color: var(--navy);
  padding: 8px 14px; border-radius: 50px; font-size: 13px; font-weight: 800;
  display: flex; align-items: center; gap: 6px; box-shadow: 0 10px 24px rgba(0,0,0,0.3); z-index: 4;
}
.chip-1 { top: 8%; left: -42px; animation: floatChip 4s ease-in-out infinite; }
.chip-2 { bottom: 22%; left: -54px; animation: floatChip 4.6s ease-in-out infinite 0.6s; }
.chip-3 { top: 28%; right: -48px; animation: floatChip 4.2s ease-in-out infinite 1.2s; }
@keyframes floatChip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* MARQUEE */
.marquee-section { padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); overflow: hidden; }
.marquee { display: flex; gap: 50px; width: max-content; animation: scrollX 28s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: rgba(255,255,255,0.35); white-space: nowrap; letter-spacing: -0.5px; }
.marquee-item .em { font-size: 24px; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 110px 32px; }
.section-header { text-align: center; margin-bottom: 64px; max-width: 680px; margin-left: auto; margin-right: auto; padding-inline: 24px; }

/* STATS */
.stats-section { padding: 70px 32px; }
.stats-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 34px 20px; border-radius: var(--radius); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); transition: all 0.3s ease; }
.stat-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(241,164,60,0.25); }
.stat-num { font-size: clamp(36px, 5vw, 54px); font-weight: 900; line-height: 1; letter-spacing: -2px; background: linear-gradient(120deg, var(--orange), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 10px; font-weight: 600; }

/* SCREENSHOTS */
.screenshots-section { background: var(--navy-mid); position: relative; padding: 100px 0 90px; }
.screenshots-scroll { display: flex; gap: 26px; overflow-x: auto; padding: 30px 32px 50px; justify-content: safe center; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screenshot-item { flex: 0 0 230px; scroll-snap-align: center; border-radius: 26px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.4); transition: box-shadow 0.35s ease; animation: swim 5s ease-in-out infinite; }
.screenshot-item:nth-child(2) { animation-delay: -1.25s; }
.screenshot-item:nth-child(3) { animation-delay: -2.5s; }
.screenshot-item:nth-child(4) { animation-delay: -3.75s; }
@keyframes swim {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-16px) rotate(0.6deg); }
}
.screenshot-item:hover { box-shadow: 0 34px 70px rgba(0,0,0,0.55), 0 0 36px rgba(241,164,60,0.14); }
.screenshot-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.screenshot-item:hover img { transform: scale(1.06); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1300px; margin: 0 auto; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 34px 30px; transition: all 0.35s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--pink)); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.feature-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(241,164,60,0.2); transform: translateY(-6px); box-shadow: 0 22px 44px rgba(0,0,0,0.3); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(241,164,60,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 28px; transition: transform 0.35s ease; }
.feature-card:hover .feature-icon { transform: scale(1.15) rotate(-8deg); }
.feature-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.feature-card p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* COLLECTIONS BANNER */
.mechanics-section { background: var(--navy-mid); }
.collections-section { background: var(--navy); }
.collections-banner { max-width: 1300px; margin: 0 auto; border-radius: 32px; overflow: hidden; background: linear-gradient(135deg, #2a1a4a 0%, #1a1a3a 50%, #3a1f2e 100%); border: 1px solid rgba(255,255,255,0.08); position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 20px; }
.collections-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 70%); pointer-events: none; }
.collections-text { padding: 56px 50px; position: relative; z-index: 1; }
.collections-text .section-label { color: var(--purple); }
.collections-text h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px; }
.collections-text h2 .accent { background: linear-gradient(120deg, var(--purple), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.collections-text p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 28px; }
.btn-collections { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 50px; background: linear-gradient(120deg, var(--purple), var(--pink)); color: var(--white); font-weight: 800; font-size: 15px; text-decoration: none; transition: all 0.25s ease; }
.btn-collections:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(139,92,246,0.5); gap: 12px; }
.btn-collections svg { width: 16px; height: 16px; }

.collections-visual { padding: 40px; display: flex; justify-content: center; position: relative; z-index: 1; }
.collect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.collect-cell { width: 80px; height: 80px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 34px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); animation: cellFloat 3s ease-in-out infinite; }
.collect-cell:nth-child(2){animation-delay:.2s} .collect-cell:nth-child(3){animation-delay:.4s}
.collect-cell:nth-child(4){animation-delay:.6s} .collect-cell:nth-child(5){animation-delay:.8s}
.collect-cell:nth-child(6){animation-delay:1s} .collect-cell:nth-child(7){animation-delay:1.2s}
.collect-cell:nth-child(8){animation-delay:1.4s} .collect-cell:nth-child(9){animation-delay:1.6s}
@keyframes cellFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ABOUT */
.about-section { background: var(--navy-mid); }
.about-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { display: flex; justify-content: center; gap: 18px; }
.about-phone { width: 165px; background: #0d0d18; border-radius: 30px; padding: 8px; box-shadow: 0 22px 54px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); transition: transform 0.4s ease; }
.about-phone:first-child { transform: translateY(34px) rotate(-5deg); }
.about-phone:last-child { transform: translateY(-10px) rotate(4deg); }
.about-visual:hover .about-phone:first-child { transform: translateY(20px) rotate(-2deg); }
.about-visual:hover .about-phone:last-child { transform: translateY(-20px) rotate(2deg); }
.about-phone img { width: 100%; border-radius: 23px; display: block; }
.about-content p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 16px; }
.about-content p:last-child { margin-bottom: 0; }

/* RATING */
.rating-section { background: linear-gradient(135deg, #F1A43C 0%, #FF6B9D 130%); position: relative; overflow: hidden; }
.rating-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.big-rating { font-size: clamp(80px, 13vw, 130px); font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -5px; }
.big-stars { display: flex; justify-content: center; gap: 6px; margin: 16px 0; }
.big-stars svg { width: 32px; height: 32px; fill: var(--navy); }
.rating-section .section-title { color: var(--navy); }
.review-count { font-size: 16px; color: rgba(20,20,43,0.65); font-weight: 700; margin-top: 8px; }

/* CTA */
.cta-section { background: var(--navy); text-align: center; padding: 130px 32px; position: relative; }
.cta-inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.cta-icon { width: 100px; height: 100px; border-radius: 26px; overflow: hidden; margin: 0 auto 30px; box-shadow: 0 22px 54px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.08); animation: iconBob 3.5s ease-in-out infinite; }
.cta-icon img { width: 100%; height: 100%; object-fit: cover; }
.cta-title { font-size: clamp(34px, 5vw, 56px); font-weight: 900; letter-spacing: -1.8px; line-height: 1.08; margin-bottom: 16px; }
.cta-title .accent { background: linear-gradient(120deg, var(--orange), var(--orange-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 40px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* EVENTS GRID MODIFIER (3-col for 9 cards = 3×3) */
.features-grid--3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 980px) { .features-grid--3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .features-grid--3 { grid-template-columns: 1fr !important; } }

/* EVENTS CTA (in features section) */
.events-cta-wrap { text-align: center; margin-top: 48px; }
.btn-events-more { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: var(--white); font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.25s ease; }
.btn-events-more:hover { background: rgba(241,164,60,0.12); border-color: rgba(241,164,60,0.3); color: var(--orange); }
.btn-events-more svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.btn-events-more:hover svg { transform: translateX(4px); }

/* ABOUT FEATURE CARDS */
.about-feature-grid { max-width: 1300px; margin: 64px auto 0; }
.about-feature-header { text-align: center; margin-bottom: 48px; }
.about-feat-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; letter-spacing: -1px; line-height: 1.15; margin-top: 10px; }
.about-feat-title .accent { background: linear-gradient(120deg, var(--orange), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* RESPONSIVE */
@media (max-width: 980px) {
  nav { padding: 12px 18px; }
  .nav-links { gap: 16px; }
  .nav-links .nav-link { display: none; }
  .hero { padding: 110px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-badge, .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-rating, .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .section { padding: 70px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-banner { grid-template-columns: 1fr; }
  .collections-text { padding: 44px 30px; }
  .collections-visual { padding: 0 30px 44px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-visual { display: none; }
  .about-content .section-title { text-align: center !important; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .orbit-chip { display: none; }
  .store-btn { padding: 10px 16px; }
  .features-grid { grid-template-columns: 1fr; }
}
