/* ============================================================
   hero.css — Landing page styles for demo.thiri.ai
   Layers on top of style.css (variables, reset, header)
   ============================================================ */

.hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0 24px;
  justify-content: flex-start;
}

/* ── Hero Main ───────────────────────────────────────────── */
.hero-main {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 24px;
  flex: 1;
}

/* ── Override default section styling from style.css ────── */
.hero-tagline-section,
.hero-cards-section,
.hero-cta-section {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  width: 100%;
}

/* ── Tagline ─────────────────────────────────────────────── */
.hero-tagline-section {
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  margin-top: 12px;
}

/* ── Plugin Cards ────────────────────────────────────────── */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  text-align: center;
}

.hero-card:hover {
  border-color: var(--gold-dim);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.15);
  transform: translateY(-2px);
}

.hero-card-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.hero-card-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-card-desc {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── CTA ─────────────────────────────────────────────────── */
.hero-cta-section {
  text-align: center;
}

.hero-cta-btn {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  border: 2px solid var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3em;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.hero-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s;
}

.hero-cta-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.35), 0 0 60px rgba(212, 160, 23, 0.15);
}

.hero-cta-btn:hover::before {
  opacity: 1;
}

.hero-cta-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-tagline {
    font-size: 22px;
  }

  .hero-cta-btn {
    padding: 16px 32px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .hero-tagline {
    font-size: 19px;
  }
}
