/* ════════════════════════════════════════════════════════════
   NOVA HERO — Complete Redesign
   Full-viewport, dramatic gradient, bold typography
   Replace existing .nova-hero section in style.css
════════════════════════════════════════════════════════════ */

/* ── Hero Container ── */
.nova-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0D0D14;
}

/* ── Animated gradient background ── */
.nova-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(123,47,190,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(255,77,109,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(255,209,102,0.12) 0%, transparent 50%);
  pointer-events: none;
  animation: novaAurora 8s ease-in-out infinite alternate;
}
@keyframes novaAurora {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: .8; transform: scale(1.05); }
}

/* ── Grid noise texture overlay ── */
.nova-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}

/* ── Inner grid layout ── */
.nova-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px 80px;
  width: 100%;
}

/* ── Text side animations ── */
.nova-hero-text {
  animation: novaFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes novaFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Eyebrow tag ── */
.nova-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,77,109,0.12);
  border: 1px solid rgba(255,77,109,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF8FA3;
  margin-bottom: 24px;
}

/* ── Main headline ── */
.nova-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.nova-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF4D6D, #C084FC, #7B2FBE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

/* ── Sub text ── */
.nova-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

/* ── CTA Buttons ── */
.nova-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.nova-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF4D6D, #7B2FBE);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 15px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 32px rgba(255,77,109,0.35);
}
.nova-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF6B85, #9B4FDE);
  opacity: 0;
  transition: opacity .3s;
}
.nova-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(255,77,109,0.45);
}
.nova-btn-primary:hover::before { opacity: 1; }
.nova-btn-primary span { position: relative; z-index: 1; }

.nova-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  transition: all .3s;
}
.nova-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  color: white;
}

/* ── Social proof row ── */
.nova-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.nova-hero-avatars {
  display: flex;
}
.nova-hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #0D0D14;
  margin-right: -8px;
  background: linear-gradient(135deg, #FF4D6D, #7B2FBE);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  color: white;
}
.nova-hero-social-text {
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
}
.nova-hero-social-text strong {
  color: rgba(255,255,255,0.8);
}
.nova-hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
}
.nova-hero-stars { color: #FFD166; letter-spacing: 1px; }

/* ── Visual side ── */
.nova-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: novaFadeUp 0.8s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}

/* ── Product card ── */
.nova-hero-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  position: relative;
  transform: rotate(1.5deg);
  transition: transform .5s cubic-bezier(0.16,1,0.3,1);
}
.nova-hero-card:hover { transform: rotate(0deg) translateY(-8px); }
.nova-hero-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Card gradient overlay on image */
.nova-hero-card::before {
  content: '';
  position: absolute;
  bottom: 90px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(13,13,20,0.8));
  pointer-events: none;
  z-index: 1;
}

.nova-hero-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg,#FF4D6D,#7B2FBE);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}
.nova-hero-card-info {
  padding: 16px 20px 20px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nova-hero-card-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.nova-hero-card-info .price {
  font-size: .85rem;
  color: rgba(255,255,255,0.45);
}
.nova-hero-card-info .price strong {
  color: #FF8FA3;
  font-weight: 700;
}

/* ── Floating decorative elements ── */
.nova-hero-float-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,77,109,0.15);
  border-radius: 50%;
  filter: blur(30px);
  animation: novaFloat 4s ease-in-out infinite;
}
.nova-hero-float-2 {
  position: absolute;
  bottom: 20px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: rgba(123,47,190,0.2);
  border-radius: 50%;
  filter: blur(24px);
  animation: novaFloat 5s 1s ease-in-out infinite;
}
@keyframes novaFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-16px) scale(1.1); }
}

/* ── Scroll indicator ── */
.nova-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.nova-hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: novaScroll 2s ease-in-out infinite;
}
@keyframes novaScroll {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}
.nova-hero-scroll-text {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .nova-hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 32px 60px;
    text-align: center;
  }
  .nova-hero-sub { margin: 0 auto 36px; }
  .nova-hero-actions { justify-content: center; }
  .nova-hero-social-proof { justify-content: center; }
  .nova-hero-visual { display: none; }
}
@media(max-width: 768px) {
  .nova-hero-inner { padding: 70px 20px 50px; }
  .nova-h1 { font-size: clamp(36px, 11vw, 52px); }
}
