/* ──────────────────────────────────────────────────────────────────────
   sections.css — hero, stats, features, steps, commands, support, cta, footer
   ──────────────────────────────────────────────────────────────────── */

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/banner.png');
  background-size: cover; background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 5, 5, 0.3) 0%,
    rgba(5, 5, 5, 0.7) 60%,
    rgba(5, 5, 5, 1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: rgba(220, 38, 38, 0.12);
  color: #fca5a5; border: 1px solid rgba(220, 38, 38, 0.3);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1; color: #fff;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: #ef4444; font-style: normal;
  text-shadow: 0 0 30px rgba(239, 68, 68, 0.5);
}
.hero p {
  font-size: 1.15rem;
  color: #a1a1aa;
  max-width: 600px; margin: 0 auto 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── STATS ─────────────────────────────────────────────────────────── */
.stats {
  padding: 3rem 0;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem; font-weight: 700;
  color: #fff; line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num em { color: #ef4444; font-style: normal; }
.stat-label {
  font-size: 0.85rem; color: #71717a;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── GENERIC SECTION ───────────────────────────────────────────────── */
section.section { padding: 6rem 0; position: relative; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  color: #ef4444;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem); color: #fff;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.section-header p { color: #a1a1aa; max-width: 600px; margin: 0 auto; }

/* ── FEATURES GRID ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ── HOW IT WORKS / STEPS ──────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}
.step {
  text-align: center;
  padding: 2rem 1rem;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border: 2px solid #dc2626;
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem; font-weight: 700;
  color: #ef4444;
  margin-bottom: 1.5rem;
  background: rgba(220, 38, 38, 0.05);
}
.step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; color: #fff;
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.step p { color: #a1a1aa; font-size: 0.94rem; }
.step code {
  color: #fca5a5;
  background: rgba(220, 38, 38, 0.1);
  padding: 2px 6px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
}

/* ── COMMANDS GRID ─────────────────────────────────────────────────── */
.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

/* ── SUPPORT CALLOUT ───────────────────────────────────────────────── */
.support-section { padding: 5rem 0; }
.support-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.015));
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.08);
  animation: support-pulse 3.5s ease-in-out infinite;
}
@keyframes support-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(220, 38, 38, 0.08); border-color: rgba(220, 38, 38, 0.35); }
  50%      { box-shadow: 0 0 60px rgba(220, 38, 38, 0.18); border-color: rgba(220, 38, 38, 0.55); }
}
.support-card .section-tag { margin-bottom: 1rem; }
.support-card h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: #fff;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.support-card h2 em {
  color: #ef4444; font-style: normal;
  text-shadow: 0 0 25px rgba(239, 68, 68, 0.4);
}
.support-card p {
  color: #d4d4d8;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── CTA SECTION ───────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 6rem 0;
  border-top: 1px solid rgba(220, 38, 38, 0.15);
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.08) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem); color: #fff;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.cta-section p { color: #a1a1aa; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ────────────────────────────────────────────────────────── */
footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; color: #71717a; font-size: 0.85rem; }
.footer-brand img { width: 28px; height: 28px; opacity: 0.8; }
.footer-credit {
  color: #52525b;
  font-size: 0.78rem;
  font-style: italic;
  margin-left: 0.5rem;
}
