/* ═══════════════════════════════════════════
   HERO.CSS — Hero Section
   Project Shadman Platform
═══════════════════════════════════════════ */

/* ── Hero Wrapper ── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--g900);
  display: flex;
  align-items: center;
  overflow: hidden;
}

#starCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 160, 40, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(22, 61, 34, 0.8) 0%, transparent 70%);
}

/* ── Hero Layout ── */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-content {
  color: var(--white);
}

/* ── Eyebrow Badge ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 160, 40, 0.1);
  border: 1px solid rgba(201, 160, 40, 0.3);
  color: var(--gold2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── Headline ── */
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold2);
}

.hero h1 .line2 {
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subheading ── */
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ── CTA Buttons ── */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Trust Pills ── */
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 500;
}

.trust-pill svg {
  flex-shrink: 0;
}

/* ── Route Badges ── */
.hero-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.route-badge {
  background: var(--g800);
  border: 1px solid rgba(201, 160, 40, 0.25);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  cursor: default;
}

.route-badge:hover {
  border-color: var(--gold);
  color: var(--gold2);
}

.route-badge .arr {
  color: var(--gold);
  font-size: 0.65rem;
}