/* ============================================================
 * ARES - Classified variant page styles
 * Red accent (#FF5252) instead of cyan (#00D4FF)
 * Same design system, different signal
 * ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.ares-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.ares-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(255, 82, 82, 0.08), transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(255, 82, 82, 0.04), transparent 60%),
    linear-gradient(180deg, #0A0E1A 0%, #0D0F1E 100%);
}

.ares-hero .hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 60px;
}

.ares-name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #FF5252;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 82, 82, 0.3);
}

.ares-accent {
  color: #FF5252;
  font-weight: 700;
}

/* ── Intro section ────────────────────────────────────────── */
.ares-intro {
  padding: 80px 0;
  background: linear-gradient(180deg, #0A0E1A 0%, #0D0F1E 100%);
  border-top: 1px solid rgba(255, 82, 82, 0.12);
}

.ares-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 0;
}

.ares-pillar {
  background: rgba(255, 82, 82, 0.04);
  border: 1px solid rgba(255, 82, 82, 0.15);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, background 0.3s;
}

.ares-pillar:hover {
  border-color: rgba(255, 82, 82, 0.3);
  background: rgba(255, 82, 82, 0.06);
}

.ares-pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.ares-pillar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.ares-pillar p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ── Architecture section ────────────────────────────────── */
.ares-arch {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 82, 82, 0.1);
}

.ares-arch-diagram {
  max-width: 1100px;
  margin: 40px auto 0;
  background: rgba(15, 20, 33, 0.6);
  border: 1px solid rgba(255, 82, 82, 0.15);
  border-radius: 16px;
  padding: 24px;
}

/* ── ARES vs ATLAS comparison ─────────────────────────────── */
.ares-vs {
  padding: 80px 0;
  background: linear-gradient(180deg, #0D0F1E 0%, #0A0E1A 100%);
  border-top: 1px solid rgba(255, 82, 82, 0.1);
}

.ares-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 40px auto 0;
}

@media (max-width: 768px) {
  .ares-comparison {
    grid-template-columns: 1fr;
  }
}

.ares-comp-col {
  background: rgba(15, 20, 33, 0.6);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.ares-comp-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.ares-comp-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.ares-comp-header span {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}

.ares-comp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ares-comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.ares-comp-list .check {
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Shared architecture box ──────────────────────────────── */
.ares-shared {
  margin-top: 40px;
  background: rgba(15, 20, 33, 0.4);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.ares-shared-header {
  text-align: center;
  margin-bottom: 24px;
}

.ares-shared-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}

.ares-shared-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 8px 24px;
}

.ares-shared-item {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.8;
  font-family: 'JetBrains Mono', monospace;
}

/* ── Internal ticketing section ───────────────────────────── */
.ares-ticketing {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 82, 82, 0.1);
}

.ares-ticketing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.ares-ticketing-card {
  background: rgba(255, 82, 82, 0.04);
  border: 1px solid rgba(255, 82, 82, 0.15);
  border-radius: 12px;
  padding: 24px;
}

.ares-ticketing-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FF5252;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ares-ticketing-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

/* ── Trust chips override for ARES ────────────────────────── */
.ares-hero .trust-chips .chip .dot {
  background: #FF5252;
}

/* ── Product sub-nav ──────────────────────────────────────── */
.product-subnav {
  background: var(--navy-2);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.product-subnav .container {
  display: flex;
  gap: 0;
  align-items: center;
}
.product-subnav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.product-subnav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.product-subnav a.active {
  color: #FF5252;
  border-bottom-color: #FF5252;
  background: rgba(255,82,82,0.06);
}
/* When ATLAS is active (on /quick-overview), use cyan accent */
.product-subnav a.active[data-accent="cyan"] {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
  background: rgba(0,212,255,0.06);
}

/* ── BitNet specs section ─────────────────────────────────── */
.ares-bitnet {
  padding: 80px 0;
  background: linear-gradient(180deg, #0D0F1E 0%, #0A0E1A 100%);
  border-top: 1px solid rgba(255,82,82,0.1);
}
.ares-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.ares-spec {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,82,82,0.04);
  border: 1px solid rgba(255,82,82,0.15);
  border-radius: 12px;
}
.ares-spec-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #FF5252;
  line-height: 1;
}
.ares-spec-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ── Architecture attributes ──────────────────────────────── */
.ares-arch-attrs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.ares-arch-attr {
  background: rgba(15,20,33,0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.ares-arch-attr .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FF5252;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ares-arch-attr .body {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ── Deployment scenarios ─────────────────────────────────── */
.ares-deployment {
  padding: 80px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,82,82,0.1);
}
.ares-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.ares-scenario {
  background: rgba(255,82,82,0.04);
  border: 1px solid rgba(255,82,82,0.15);
  border-radius: 12px;
  padding: 28px;
}
.ares-scenario-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.ares-scenario h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.ares-scenario p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}