/* ============================================
   ROZY PEDS - Home Page Styles
   ============================================ */

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 2rem 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 144, 255, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 50%, rgba(30, 144, 255, 0.05) 0%, transparent 60%),
              var(--black);
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--black));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 12px;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px var(--blue-glow);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-cta {
  font-size: 1.05rem;
  padding: 16px 40px;
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  text-shadow: 0 0 20px var(--blue-glow);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 4px;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== MARQUEE BAND ===== */
.marquee-band {
  background: var(--blue);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
}

.marquee-dot {
  color: rgba(255,255,255,0.5) !important;
  font-size: 0.5rem !important;
  vertical-align: middle;
}

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

/* ===== FEATURED SECTION ===== */
.featured-section {
  padding: 100px 0;
  background: var(--black);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 100px 0;
  background: var(--surface-2);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(30, 144, 255, 0.04) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.why-card {
  padding: 2rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--black);
}

.cta-box {
  background: var(--surface-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 1rem 0;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 100px 1.5rem 60px; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 3rem 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-primary,
  .cta-actions .discord-btn { width: 100%; max-width: 280px; justify-content: center; }
  .featured-section { padding: 60px 0; }
  .why-section { padding: 60px 0; }
  .cta-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 6px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .marquee-track { gap: 1.2rem; }
  .marquee-track span { font-size: 0.7rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .why-card { padding: 1.5rem; }
}
