/* ============================================================
   AURELIIUS — PROGRAM DETAILS PAGE STYLES
   ============================================================ */

/* ── PROGRAM HERO ── */
.prog-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.prog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(26,143,255,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(255,140,0,0.06) 0%, transparent 50%),
              var(--bg-primary);
}

.prog-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
}

.prog-hero-content {
  position: relative;
  z-index: 1;
}

.prog-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.prog-hero-headline .tm {
  font-size: 0.4em;
  vertical-align: super;
  color: var(--blue-bright);
}

.prog-hero-sub {
  font-size: 1.2rem;
  color: var(--white-80);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.prog-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-bright);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-20);
}

/* ── PROGRAM SECTIONS ── */
.prog-section {
  padding: 100px 0;
}

/* ── SYMPTOM TABLE ── */
.symptom-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}

.symptom-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.symptom-table thead th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.symptom-table tbody td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--white-05);
  vertical-align: top;
  color: var(--white-80);
  line-height: 1.6;
}

.symptom-table tbody tr:hover {
  background: var(--white-05);
}

.symptom-quote {
  font-style: italic;
  color: var(--amber-bright);
  font-weight: 500;
  white-space: nowrap;
}

/* ── SOLUTION BOX ── */
.prog-solution {
  background: var(--bg-secondary);
}

.prog-solution-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ── TIMELINE ── */
.timeline {
  margin-top: 60px;
  position: relative;
}

.timeline-phase {
  display: flex;
  gap: 32px;
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.timeline-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-bright);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--blue-primary);
  border-radius: 50%;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.featured-phase .timeline-num {
  border-color: var(--amber);
  color: var(--amber-bright);
  box-shadow: 0 0 20px rgba(255,140,0,0.2);
}

.timeline-line {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(180deg, var(--blue-primary), var(--blue-dim));
  min-height: 40px;
}

.timeline-line.last {
  background: linear-gradient(180deg, var(--blue-primary), transparent);
}

.featured-phase .timeline-line {
  background: linear-gradient(180deg, var(--amber), var(--blue-dim));
}

.timeline-content {
  padding-bottom: 48px;
  flex: 1;
}

.timeline-days {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-bright);
  margin-bottom: 8px;
}

.featured-phase .timeline-days {
  color: var(--amber-bright);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.timeline-objective {
  color: var(--white-80);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.timeline-deliverables {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.featured-phase .timeline-deliverables {
  border-color: rgba(255,140,0,0.3);
}

.timeline-deliverables h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-bright);
  margin-bottom: 12px;
}

.featured-phase .timeline-deliverables h4 {
  color: var(--amber-bright);
}

.timeline-deliverables ul {
  list-style: none;
  padding: 0;
}

.timeline-deliverables li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--white-80);
  font-size: 0.9rem;
  line-height: 1.5;
}

.timeline-deliverables li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 700;
  font-family: monospace;
}

.featured-phase .timeline-deliverables li::before {
  color: var(--amber);
}

.timeline-done {
  font-size: 0.85rem;
  color: var(--white-50);
  padding: 12px 16px;
  background: var(--white-05);
  border-radius: var(--radius);
  line-height: 1.5;
}

/* ── ARTIFACTS GRID ── */
.artifacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.artifact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.artifact-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.featured-artifact {
  border-color: rgba(255,140,0,0.3);
}

.featured-artifact:hover {
  border-color: var(--amber);
}

.artifact-icon {
  font-size: 1.4rem;
  color: var(--blue-bright);
  margin-bottom: 16px;
}

.featured-artifact .artifact-icon {
  color: var(--amber);
}

.artifact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.artifact-card p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.5;
}

/* ── INVESTMENT ── */
.prog-investment {
  background: var(--bg-secondary);
}

.investment-block {
  text-align: center;
}

.price-hero {
  margin: 40px 0;
}

.price-display-large {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-display-large .currency {
  font-size: 0.4em;
  vertical-align: super;
  -webkit-text-fill-color: var(--white-50);
}

.investment-rationale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
  text-align: left;
}

.rationale-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.rationale-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--blue-bright);
}

.rationale-card p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.6;
}

.investment-integrity {
  font-style: italic;
  color: var(--amber-bright);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── PROGRAM CTA ── */
.prog-cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,143,255,0.08) 0%, transparent 60%),
              var(--bg-primary);
}

.prog-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.prog-cta-sub {
  font-size: 1.1rem;
  color: var(--white-80);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.prog-cta-disclaimer {
  font-size: 0.8rem;
  color: var(--white-50);
  margin-top: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.active {
  color: var(--blue-bright);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .artifacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .investment-rationale {
    grid-template-columns: repeat(2, 1fr);
  }
  .prog-hero-stats {
    gap: 24px;
  }
  .stat-num {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .prog-hero {
    min-height: 70vh;
    padding: 120px 0 60px;
  }
  .artifacts-grid {
    grid-template-columns: 1fr;
  }
  .investment-rationale {
    grid-template-columns: 1fr;
  }
  .timeline-phase {
    gap: 16px;
  }
  .timeline-marker {
    min-width: 44px;
  }
  .timeline-num {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .symptom-quote {
    white-space: normal;
  }
  .prog-hero-stats {
    gap: 16px;
  }
  .stat-num {
    font-size: 1.6rem;
  }
}
