/* =========================
   AXON PRODUCTS (FINAL CLEAN)
========================= */

:root {
  --axon-green: #9eff00;
  --axon-dark: #05070d;
  --axon-dark-2: #0a0f1c;
  --axon-glass: rgba(255,255,255,0.04);
  --axon-border: rgba(255,255,255,0.08);
}

/* =========================
   HERO
========================= */

.product-hero {
  background: radial-gradient(circle at top, var(--axon-dark-2), var(--axon-dark));
  padding: 6rem 0 4rem;
  text-align: center;
}

.hero-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.hero-media {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  max-width: 1000px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* =========================
   TYPOGRAPHY
========================= */

.section-title {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-copy {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 700px;
}

.eyebrow {
  color: var(--axon-green);
  font-weight: 600;
  letter-spacing: 1px;
}

/* =========================
   SPACING SYSTEM
========================= */

.section {
  margin-top: 8rem;
}

.product-summary {
  margin-top: 3rem;
  max-width: 600px;
}

.product-showcase {
  margin-top: 6rem;
}

/* =========================
   MODULE CARDS
========================= */

.product-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  margin-top: 4rem;
}

.module-card {
  position: relative;
  max-width: 520px;
  margin: 0 auto;

  padding: 2.5rem;
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );

  border: 1px solid var(--axon-border);
  backdrop-filter: blur(12px);

  transition: all 0.35s ease;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: var(--axon-green);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.module-card img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.module-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.module-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--axon-border);
  color: var(--axon-green);
}

/* =========================
   TABLE (PITCH SYSTEM)
========================= */

.module-specs-header {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  font-size: 0.65rem;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.pitch-row {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pitch {
  color: var(--axon-green);
  font-weight: 600;
}

/* =========================
   PREMIUM TABLE (FINAL)
========================= */

.pitch-table {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);
}

.pitch-head {
  padding: 1rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.4);
}

.pitch-table .pitch-row {
  position: relative;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.pitch-table .pitch-row:hover {
  background: rgba(255,255,255,0.03);
}

.pitch-table .pitch-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 2px;
  height: 40%;
  background: var(--axon-green);
  opacity: 0;
}

.pitch-table .pitch-row:hover::before {
  opacity: 0.6;
}

/* =========================
   FEATURES
========================= */

.features-strip {
  margin-top: 6rem;
  padding: 2.5rem;
  text-align: center;
}

/* =========================
   CTA
========================= */

.cta-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   SPECS GRID
========================= */

.specs-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.spec {
  padding: 1rem;
  border-radius: 10px;
  background: var(--axon-glass);
  border: 1px solid rgba(255,255,255,0.05);
}

.spec p {
  color: #ccc;
}

/* =========================
   BACKGROUND (PREMIUM)
========================= */

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background:
    radial-gradient(circle at 20% 30%, rgba(158,255,0,0.06), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(158,255,0,0.04), transparent 50%);

  z-index: -1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .product-modules {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .pitch-row,
  .module-specs-header {
    grid-template-columns: 60px 1fr 60px;
  }

}