/* ============================================
   AXYTHRA — HERO SECTION
   Edit only this file for hero changes
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: var(--space-xl) 0 var(--space-lg);
}

/* --- Floating Shapes --- */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.shape-circle-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #38BDF8, transparent);
  top: -150px;
  right: -100px;
  animation-duration: 10s;
}

.shape-circle-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #818CF8, transparent);
  bottom: -100px;
  left: -80px;
  animation-duration: 12s;
  animation-delay: -3s;
}

.shape-triangle-1 {
  width: 0;
  height: 0;
  border-radius: 0;
  background: none;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #38BDF8;
  opacity: 0.2;
  top: 20%;
  right: 15%;
  animation-duration: 9s;
  animation-delay: -1s;
}

.shape-triangle-2 {
  width: 0;
  height: 0;
  border-radius: 0;
  background: none;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 45px solid #C084FC;
  opacity: 0.25;
  bottom: 30%;
  right: 25%;
  animation-duration: 11s;
  animation-delay: -5s;
}

.shape-dot-grid {
  width: 200px;
  height: 200px;
  border-radius: 0;
  background: radial-gradient(circle, #818CF8 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  top: 40%;
  right: 8%;
  animation: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

/* --- Hero Content --- */
.hero-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

/* --- Badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--color-accent-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

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

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

/* --- Headline --- */
.hero-headline {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.headline-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.8s cubic-bezier(0.6, 0.04, 0.12, 0.96) forwards;
}

.gradient-text {
  background: linear-gradient(135deg, #38BDF8, #818CF8, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal-1 { animation-delay: 0.2s; }
.reveal-2 { animation-delay: 0.45s; }
.reveal-3 { animation-delay: 0.7s; }

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Subheading --- */
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.6, 0.04, 0.12, 0.96) 0.95s forwards;
}

/* --- CTA Buttons --- */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.6, 0.04, 0.12, 0.96) 1.1s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: var(--color-accent-primary);
  color: #0F172A;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
}

.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.35);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-text-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--color-bg-tertiary);
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  opacity: 1;
  border-color: var(--color-accent-secondary);
  color: var(--color-accent-secondary);
  transform: translateY(-2px);
}

/* --- Stats Row --- */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.6, 0.04, 0.12, 0.96) 1.25s forwards;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-bg-tertiary);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 4rem;
    min-height: auto;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* --- Particles --- */
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* --- Tools Strip --- */
.hero-tools {
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.6, 0.04, 0.12, 0.96) 1.4s forwards;
}

.hero-tools-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.hero-tools-logos {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: nowrap;
  overflow: visible;
}

.tool-logo {
  height: 28px;
  width: auto;
  opacity: 1;
  transition: opacity var(--transition-base);
  flex-shrink: 0;
  mix-blend-mode: lighten;
}

.tool-logo:hover {
  opacity: 1;
}

.ai-news-radar {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
}

.radar-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
}

.radar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 2s ease-in-out infinite;
}

.radar-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-bg-tertiary);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.radar-badge {
  font-size: 10px;
  color: var(--color-text-muted);
  background: var(--color-bg-primary);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-bg-tertiary);
}

@media (max-width: 1024px) {
  .ai-news-radar { display: none; }
  .container.hero-container {
    grid-template-columns: 1fr !important;
  }
}

rssapp-list {
  --rssapp-background-color: transparent !important;
  --rssapp-font-color: #F8FAFC !important;
}

rssapp-list img,
rssapp-list .rssapp-item-image,
rssapp-list .rssapp-item-thumbnail {
  display: none !important;
}

rssapp-list .rssapp-item-title {
  font-size: 12px !important;
  line-height: 1.5 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

rssapp-list .rssapp-header {
  display: none !important;
}