/* ==========================================================================
   BEAM.MBA — Components Stylesheet
   Hero Visual, Cards, System Stepper, Dashboard, Phone Mockup, Modal
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. HERO COMPOSITION & ECOSYSTEM VISUAL
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

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

.hero-tagline-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.3vw, 1.85rem);
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  font-style: italic;
}

.hero-description {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-supporting-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  margin-top: 1.75rem;
  font-family: var(--font-sans-ui);
}

.hero-supporting-note svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Ecosystem Visual Canvas */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-canvas {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 540px;
}

/* Background Ambient Glow */
.ecosystem-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(200, 148, 69, 0.18) 0%, rgba(11, 10, 9, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Floating Ecosystem Cards */
.eco-card {
  position: absolute;
  background: rgba(20, 19, 17, 0.92);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.eco-card:hover {
  border-color: #DEB25E;
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(200, 148, 69, 0.22);
}

/* Card 1: Daily Ritual / Frequency */
.eco-card-ritual {
  top: 15px;
  left: 20px;
  width: 250px;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.eco-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.eco-label {
  font-family: var(--font-sans-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
}

.eco-metric-value {
  font-family: var(--font-sans-ui);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark-primary);
}

.eco-time-slots {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.eco-slot {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  text-align: center;
  color: var(--text-on-dark-secondary);
  transition: all 0.25s ease;
  cursor: pointer;
}

.eco-slot:hover {
  background: rgba(200, 148, 69, 0.15);
  border-color: rgba(200, 148, 69, 0.4);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.eco-slot.completed {
  background: var(--accent-gold-soft);
  border-color: var(--border-dark-gold);
  color: var(--accent-gold);
}

/* Card 2: Business Insight / Why It Matters */
.eco-card-insight {
  top: 145px;
  right: 10px;
  width: 290px;
  animation: floatSlow 7s ease-in-out infinite alternate-reverse;
  z-index: 3;
}

.insight-tag {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #DEB25E;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.insight-headline {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-on-dark-primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.insight-why {
  font-size: 0.78rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.45;
  padding-left: 0.65rem;
  border-left: 2px solid var(--accent-gold);
}

/* Card 3: 10-Question Daily Aptitude */
.eco-card-aptitude {
  bottom: 90px;
  left: 10px;
  width: 260px;
  animation: floatSlow 8s ease-in-out infinite alternate;
}

.quiz-pill-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.quiz-pill {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.quiz-pill:hover {
  transform: scaleY(1.6);
  filter: brightness(1.3);
  box-shadow: 0 0 10px rgba(200, 148, 69, 0.6);
}

.quiz-pill.correct {
  background: #C89445;
}

.quiz-pill.active {
  background: #ECC77D;
  box-shadow: 0 0 8px rgba(236, 199, 125, 0.6);
}

/* Card 4: Placement Readiness Compass */
.eco-card-readiness {
  bottom: 25px;
  right: 35px;
  width: 270px;
  background: linear-gradient(145deg, rgba(28, 26, 23, 0.95), rgba(16, 15, 13, 0.95));
  border: 1px solid var(--border-dark-gold);
}

.readiness-track {
  height: 6px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin-top: 0.6rem;
  overflow: hidden;
  position: relative;
}

.readiness-bar {
  height: 100%;
  width: 82%;
  background: linear-gradient(90deg, #C89445, #ECC77D);
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   02. THE PROBLEM SECTION ("THE CHALLENGE")
   -------------------------------------------------------------------------- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  margin-top: 3.5rem;
  align-items: center;
}

.problem-narrative {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-on-dark-secondary);
}

.problem-narrative p {
  margin-bottom: 1.5rem;
}

.problem-narrative strong {
  color: var(--text-on-dark-primary);
  font-weight: 600;
}

/* Contrast comparison visual */
.comparison-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
}

.comparison-header {
  font-family: var(--font-sans-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold-deep);
  margin-bottom: 1.5rem;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comparison-item {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.comparison-item.curriculum {
  background: rgba(28, 26, 24, 0.03);
  border-left: 3px solid #8F887D;
}

.comparison-item.curriculum:hover {
  background: rgba(28, 26, 24, 0.07);
  transform: translateX(6px);
  border-left-color: #ABA499;
}

.comparison-item.readiness {
  background: rgba(200, 148, 69, 0.08);
  border-left: 3px solid var(--accent-gold);
}

.comparison-item.readiness:hover {
  background: rgba(200, 148, 69, 0.15);
  transform: translateX(6px);
  border-left-color: #DEB25E;
  box-shadow: 0 4px 20px rgba(200, 148, 69, 0.18);
}

.comparison-item-label {
  font-family: var(--font-sans-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.comparison-item.curriculum .comparison-item-label {
  color: #6E685F;
}

.comparison-item.readiness .comparison-item-label {
  color: var(--accent-gold-deep);
}

.comparison-item-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-on-light-primary);
}

/* --------------------------------------------------------------------------
   03. "THE JOBS YOU ARE HIRED TO DO"
   -------------------------------------------------------------------------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.job-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(200, 148, 69, 0.18);
}

.job-number {
  font-family: var(--font-sans-ui);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(200, 148, 69, 0.25);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.job-card:hover .job-number {
  color: var(--accent-gold);
  transform: scale(1.08);
}

.job-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-on-light-primary);
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.job-description {
  font-size: 0.95rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.job-card-indicator {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 26, 24, 0.08);
  font-family: var(--font-sans-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-card:hover .job-card-indicator {
  opacity: 1;
  transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   04. "WHERE IT BREAKS DOWN" (Connected Journey)
   -------------------------------------------------------------------------- */
.breakdown-section {
  position: relative;
  background: transparent;
}

.breakdown-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.breakdown-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(200, 148, 69, 0.1) 0%, 
    rgba(200, 148, 69, 0.4) 50%, 
    rgba(200, 148, 69, 0.1) 100%);
  z-index: 1;
}

.breakdown-step {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  position: relative;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.breakdown-step:hover {
  border-color: #DEB25E;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 25px rgba(200, 148, 69, 0.16);
}

.breakdown-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #141311;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.breakdown-step:hover .breakdown-node {
  background: var(--accent-gold);
  color: #0B0A09;
  transform: scale(1.12);
  box-shadow: 0 0 16px rgba(200, 148, 69, 0.45);
}

.breakdown-title {
  font-family: var(--font-sans-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.65rem;
}

.breakdown-text {
  font-size: 0.92rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
}

/* Big Statement Callout */
.breakdown-pullquote {
  margin-top: 5rem;
  padding: 3rem;
  background: linear-gradient(180deg, rgba(20, 19, 17, 0.8) 0%, rgba(11, 10, 9, 0.95) 100%);
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.breakdown-pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.25;
  color: var(--text-on-dark-primary);
  max-width: 900px;
  margin: 0 auto;
}

.breakdown-pullquote p span {
  color: var(--accent-gold);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   05. THE BEAM SOLUTION (Sprint vs Habit)
   -------------------------------------------------------------------------- */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-top: 3.5rem;
  align-items: center;
}

.solution-contrast-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contrast-panel {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.contrast-panel.sprint {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.contrast-panel.sprint:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contrast-panel.habit {
  background: linear-gradient(135deg, rgba(200, 148, 69, 0.12), rgba(20, 19, 17, 0.95));
  border-color: var(--border-dark-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.contrast-panel.habit:hover {
  border-color: #DEB25E;
  transform: translateX(8px) scale(1.01);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55), 0 0 35px rgba(200, 148, 69, 0.25);
}

.contrast-badge {
  font-family: var(--font-sans-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

.contrast-panel.sprint .contrast-badge {
  color: #8F887D;
}

.contrast-panel.habit .contrast-badge {
  color: var(--accent-gold);
}

.contrast-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.5rem;
}

.contrast-desc {
  font-size: 0.92rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   06. THE FIVE-STEP BEAM SYSTEM (Interactive Connected Stepper)
   -------------------------------------------------------------------------- */
.system-stepper-container {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.system-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.system-step-btn {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.75rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.system-step-btn:hover {
  border-color: var(--accent-gold);
  transform: translateX(8px);
  background: #FFFFFF;
  box-shadow: 0 10px 28px rgba(200, 148, 69, 0.18);
}

.system-step-btn.active {
  background: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: 0 10px 28px rgba(200, 148, 69, 0.22);
}

.step-btn-num {
  font-family: var(--font-sans-ui);
  font-size: 1.25rem;
  font-weight: 800;
  color: #BDB7AB;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.system-step-btn:hover .step-btn-num,
.system-step-btn.active .step-btn-num {
  color: var(--accent-gold);
  transform: scale(1.12);
}

.step-btn-content h4 {
  font-family: var(--font-sans-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.25rem;
}

.step-btn-content p {
  font-size: 0.88rem;
  color: var(--text-on-light-secondary);
  line-height: 1.5;
}

/* System Live Preview Box */
.system-preview-pane {
  background: #11100E;
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--text-on-dark-primary);
  min-height: 480px;
  position: sticky;
  top: 120px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.preview-stage-tag {
  font-family: var(--font-sans-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.preview-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--text-on-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.preview-desc {
  font-size: 1.05rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.preview-mockup-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.preview-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.preview-card-header-title {
  font-family: var(--font-sans-ui);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-on-dark-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #1C1A17;
  padding: 0.65rem 1rem;
}

.preview-card-body {
  min-height: 230px;
}

/* --------------------------------------------------------------------------
   07. "WHAT CHANGES FOR YOUR INSTITUTION"
   -------------------------------------------------------------------------- */
.institutional-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.pillar-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-gold);
  opacity: 0.4;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--border-dark-gold);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(200, 148, 69, 0.15);
}

.pillar-card:hover::before {
  opacity: 1;
  width: 6px;
  box-shadow: 0 0 16px var(--accent-gold);
}

.pillar-heading {
  font-family: var(--font-sans-ui);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.85rem;
}

.pillar-heading span {
  color: var(--accent-gold);
}

.pillar-body {
  font-size: 1rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   08. BEAM CAMPUS DASHBOARD SECTION
   -------------------------------------------------------------------------- */
.dashboard-container {
  margin-top: 4rem;
  background: #12110F;
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.dashboard-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
}

.chrome-dots {
  display: flex;
  gap: 0.4rem;
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.chrome-title {
  font-family: var(--font-sans-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-on-dark-secondary);
  letter-spacing: 0.05em;
}

.chrome-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Dashboard Chrome Tabs (Overview / Students) */
.chrome-tabs {
  display: flex;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 0.25rem;
}

.chrome-tab {
  appearance: none;
  border: none;
  background: transparent;
  font-family: var(--font-sans-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-on-dark-secondary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
}

.chrome-tab:hover {
  color: var(--text-on-dark-primary);
}

.chrome-tab.active {
  background: var(--accent-gold);
  color: #1C1A17;
}

/* ==========================================================================
   REAL BEAM CAMPUS THEME — this panel is presented as an actual product
   screenshot inside the dark browser chrome above, so it deliberately
   reproduces the live dashboard's own design system (cream surfaces, pine
   green, system-ui) instead of the landing page's dark/gold editorial theme.
   ========================================================================== */
.real-dash {
  --rd-surface-0: #f9f9f7;
  --rd-surface-1: #fcfcfb;
  --rd-text: #0b0b0b;
  --rd-text-2: #52514e;
  --rd-text-muted: #898781;
  --rd-border: rgba(11, 11, 11, 0.10);
  --rd-gridline: #e1e0d9;
  --rd-pine: #1C6B54;
  --rd-gold: #B5771F;
  --rd-status-serious: #ec835a;
  --rd-status-critical: #d03b3b;
  background: var(--rd-surface-0);
  color: var(--rd-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 1.35rem 1.4rem 1.5rem;
  margin: 0 -1.5rem -1.5rem;
}

.real-dash .kpi-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.real-dash .kpi-row-5 { grid-template-columns: repeat(5, 1fr); }

.real-dash .kpi-tile {
  background: var(--rd-surface-1);
  border: 1px solid var(--rd-border);
  border-radius: 12px;
  padding: 11px 12px;
}

.real-dash .kpi-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rd-text-muted);
}

.real-dash .kpi-value {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 5px;
}

.real-dash .kpi-sub {
  font-size: 10px;
  color: var(--rd-text-2);
  margin-top: 3px;
}

.real-dash .kpi-tile.kpi-risk .kpi-value { color: var(--rd-status-serious); }

.real-dash .rd-card {
  background: var(--rd-surface-1);
  border: 1px solid var(--rd-border);
  border-radius: 14px;
  padding: 15px 16px;
  margin-bottom: 12px;
}

.real-dash .rd-card:last-child { margin-bottom: 0; }

.real-dash .rd-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
}

.real-dash .rd-card-head h2 { margin: 0; font-size: 12.5px; font-weight: 700; }
.real-dash .rd-card-head p { margin: 2px 0 0; font-size: 10.5px; color: var(--rd-text-muted); }

.real-dash .rd-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.real-dash .rd-grid-2 > .rd-card { margin-bottom: 0; }

.real-dash .rd-table-wrap { overflow-x: auto; }
.real-dash table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.real-dash th {
  text-align: left;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rd-text-muted);
  padding: 7px 8px;
  border-bottom: 1px solid var(--rd-gridline);
  white-space: nowrap;
}
.real-dash td {
  padding: 7px 8px;
  border-bottom: 1px solid var(--rd-gridline);
  white-space: nowrap;
}
.real-dash tbody tr:last-child td { border-bottom: none; }
.real-dash tbody tr[data-student] { cursor: pointer; transition: background 0.15s ease; }
.real-dash tbody tr[data-student]:hover { background: rgba(28, 107, 84, 0.05); }
.real-dash tbody tr.is-selected { background: rgba(28, 107, 84, 0.08); }
.real-dash .rd-muted { color: var(--rd-text-muted); }

.real-dash .status-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; }
.real-dash .status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.real-dash .div-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 19px; height: 19px; border-radius: 6px; font-weight: 700; font-size: 10px; color: #fff;
}

.real-dash .rd-filterbar {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  background: var(--rd-surface-1);
  border: 1px solid var(--rd-border);
  border-radius: 12px;
  padding: 10px 13px;
  margin-bottom: 12px;
}

.real-dash .rd-filter-group { display: flex; flex-direction: column; gap: 4px; }
.real-dash .rd-filter-group label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--rd-text-muted);
}
.real-dash .rd-filter-group select,
.real-dash .rd-filter-group input {
  font: inherit; font-size: 11.5px; padding: 6px 9px; border-radius: 8px;
  border: 1px solid var(--rd-border); background: var(--rd-surface-0); color: var(--rd-text); min-width: 140px;
}
.real-dash .rd-filter-summary { margin-left: auto; font-size: 10.5px; color: var(--rd-text-muted); align-self: center; }

.real-dash .rd-badge-demo {
  display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; background: #FDF3E3; color: var(--rd-gold); border: 1px solid #F0DDB8;
}

.real-dash .rd-spec-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--rd-gridline); }
.real-dash .rd-spec-row:last-child { border-bottom: none; }
.real-dash .rd-spec-name { flex: 0 0 auto; width: 190px; max-width: 42%; font-size: 11.5px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.real-dash .rd-spec-bar { flex: 1; height: 8px; border-radius: 5px; background: var(--rd-gridline); overflow: hidden; min-width: 40px; }
.real-dash .rd-spec-fill { display: block; height: 100%; border-radius: 5px; background: var(--rd-pine); }
.real-dash .rd-spec-value { flex: 0 0 auto; width: 42px; text-align: right; font-size: 11.5px; font-weight: 700; }
.real-dash .rd-spec-count { flex: 0 0 auto; width: 78px; text-align: right; font-size: 10px; color: var(--rd-text-muted); }

.real-dash .rd-export-row { display: flex; gap: 8px; flex-wrap: wrap; }
.real-dash .rd-btn-ghost {
  font: inherit; font-size: 10.5px; font-weight: 600; padding: 7px 11px; border-radius: 8px;
  border: 1px solid var(--rd-border); background: transparent; color: var(--rd-text); cursor: pointer;
}
.real-dash .rd-btn-ghost:hover { background: var(--rd-surface-0); }

.real-dash .rd-student-head {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  margin-bottom: 12px; padding-bottom: 11px; border-bottom: 1px solid var(--rd-border);
}
.real-dash .rd-student-name { font-size: 13px; font-weight: 800; }
.real-dash .rd-student-meta { font-size: 10.5px; color: var(--rd-text-2); margin-top: 2px; }

.real-dash .kpi-row-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------------------
   09. INSTITUTIONAL FEATURES (6 Modules Grid)
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 25px rgba(200, 148, 69, 0.15);
}

.feature-num {
  font-family: var(--font-sans-ui);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
  display: block;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-num {
  transform: scale(1.15);
  color: #DEB25E;
}

.feature-title {
  font-family: var(--font-sans-ui);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-on-light-primary);
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-on-light-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. STUDENT EXPERIENCE (Smartphone Mockup & Flow)
   -------------------------------------------------------------------------- */
.student-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: 3.5rem;
}

.ritual-journey-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ritual-node {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ritual-node:hover {
  background: rgba(200, 148, 69, 0.06);
  border-color: var(--border-dark-gold);
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.ritual-node.active {
  background: rgba(200, 148, 69, 0.12);
  border-color: var(--accent-gold);
  transform: translateX(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 148, 69, 0.15);
}

.ritual-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ritual-node:hover .ritual-icon,
.ritual-node.active .ritual-icon {
  background: var(--accent-gold);
  color: #0B0A09;
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(200, 148, 69, 0.5);
}

.ritual-details h4 {
  font-family: var(--font-sans-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.25rem;
}

.ritual-details p {
  font-size: 0.88rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.5;
}

/* Phone Mockup */
.phone-mockup-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 310px;
  height: 620px;
  background: #000000;
  border: 11px solid #1C1A17;
  border-radius: 46px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(200, 148, 69, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.phone-mockup:hover {
  transform: translateY(-8px) rotate(-0.5deg) scale(1.015);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(200, 148, 69, 0.25);
}

.phone-notch {
  width: 120px;
  height: 22px;
  background: #1C1A17;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}

/* ==========================================================================
   REAL APP THEME — this phone screen is presented as an actual product
   screenshot, so it reproduces the live app's own design system (paper/ink,
   pine/gold, Inter + Bricolage Grotesque + JetBrains Mono) rather than the
   landing page's dark/gold editorial theme used everywhere else on this site.
   ========================================================================== */
.real-phone-screen {
  --rp-paper: #F6F7F5; --rp-card: #FFFFFF; --rp-ink: #17181B; --rp-ink-2: #4A4D52; --rp-ink-3: #6B6F76;
  --rp-line: #E7E7E1; --rp-pine: #1C6B54; --rp-gold: #B5771F; --rp-gold-soft: #F8F1E4; --rp-bad: #C0453B;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--rp-ink);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.real-phone-screen .rp-hdr { background: var(--rp-ink); color: #F6F7F5; padding: 34px 18px 16px; flex-shrink: 0; }
.real-phone-screen .rp-wordmark { display: flex; align-items: center; gap: 7px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246, 247, 245, 0.6); }
.real-phone-screen .rp-wordmark .mk { width: 18px; height: 18px; border-radius: 6px; background: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.real-phone-screen .rp-wordmark .mk img { width: 100%; height: 100%; object-fit: contain; }
.real-phone-screen .rp-wordmark b { color: #F6F7F5; font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; text-transform: none; letter-spacing: -0.01em; }
.real-phone-screen .rp-streakrow { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 12px; }
.real-phone-screen .rp-streaknum { font-size: 42px; line-height: 0.9; font-weight: 800; letter-spacing: -0.03em; font-family: 'Bricolage Grotesque', sans-serif; }
.real-phone-screen .rp-streaklbl { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246, 247, 245, 0.55); margin-top: 5px; }
.real-phone-screen .rp-daymeta { text-align: right; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(246, 247, 245, 0.55); }
.real-phone-screen .rp-daymeta b { display: block; font-size: 12.5px; color: #F6F7F5; margin-bottom: 2px; text-transform: none; font-family: 'Bricolage Grotesque', sans-serif; }
.real-phone-screen .rp-hstrip { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.real-phone-screen .rp-hpill { flex: 1 1 calc(33.333% - 5px); min-width: 78px; display: flex; align-items: center; gap: 6px; background: rgba(246, 247, 245, 0.07); border: 1px solid rgba(246, 247, 245, 0.09); border-radius: 10px; padding: 7px 8px; overflow: hidden; }
.real-phone-screen .rp-hpill .k2 { display: block; font-family: 'JetBrains Mono', monospace; font-size: 7.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(246, 247, 245, 0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.real-phone-screen .rp-hpill .v2 { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 11.5px; margin-top: 1px; color: #F6F7F5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.real-phone-screen .rp-body { flex: 1; min-height: 0; overflow-y: auto; background: var(--rp-paper); padding: 13px 14px 20px; }

.real-phone-screen .rp-sechead { display: flex; align-items: center; gap: 8px; padding: 2px 1px 10px; }
.real-phone-screen .rp-sechead .nm { font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rp-ink-3); }
.real-phone-screen .rp-sechead .rule { flex: 1; height: 1px; background: var(--rp-line); }

.real-phone-screen .rp-card { background: var(--rp-card); border: 1px solid var(--rp-line); border-radius: 14px; overflow: hidden; position: relative; margin-bottom: 12px; }
.real-phone-screen .rp-card:last-child { margin-bottom: 0; }
.real-phone-screen .rp-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--rp-ac, var(--rp-gold)); }
.real-phone-screen .rp-cin { padding: 13px 14px 14px 16px; }
.real-phone-screen .rp-eye { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 8px; }
.real-phone-screen .rp-tag { font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rp-ac, var(--rp-gold)); }
.real-phone-screen .rp-meta { font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--rp-ink-3); letter-spacing: 0.04em; flex-shrink: 0; }
.real-phone-screen .rp-hl { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14.5px; line-height: 1.25; letter-spacing: -0.01em; }
.real-phone-screen .rp-sum { font-size: 11.5px; line-height: 1.5; color: var(--rp-ink-2); margin-top: 7px; }
.real-phone-screen .rp-whybtn { display: flex; align-items: center; gap: 6px; width: 100%; background: none; border: none; border-top: 1px dashed var(--rp-line); margin-top: 10px; padding: 9px 0 0; text-align: left; color: var(--rp-ac, var(--rp-gold)); font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.real-phone-screen .rp-whybody { font-size: 11px; line-height: 1.5; color: var(--rp-ink); background: var(--rp-gold-soft); border-radius: 9px; padding: 10px 11px; margin-top: 9px; }
.real-phone-screen .rp-whybody .k { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rp-ac, var(--rp-gold)); display: block; margin-bottom: 4px; font-weight: 700; }

.real-phone-screen .rp-opt { display: flex; align-items: center; gap: 9px; width: 100%; text-align: left; background: #FBFBF9; border: 1px solid var(--rp-line); border-radius: 10px; padding: 10px 11px; margin-top: 7px; font-size: 11.5px; color: var(--rp-ink); }
.real-phone-screen .rp-opt .b { width: 19px; height: 19px; border-radius: 50%; border: 1.5px solid var(--rp-line); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 600; color: var(--rp-ink-3); }
.real-phone-screen .rp-opt.correct { border-color: var(--rp-pine); background: #EAF3EF; }
.real-phone-screen .rp-opt.correct .b { background: var(--rp-pine); border-color: var(--rp-pine); color: #fff; }
.real-phone-screen .rp-opt.wrong { border-color: var(--rp-bad); background: #FBECEA; }
.real-phone-screen .rp-opt.wrong .b { background: var(--rp-bad); border-color: var(--rp-bad); color: #fff; }

.real-phone-screen .rp-reveal { margin-top: 11px; background: #EAF3EF; border-radius: 11px; padding: 11px 12px; }
.real-phone-screen .rp-reveal .k { font-family: 'JetBrains Mono', monospace; font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rp-pine); font-weight: 700; }
.real-phone-screen .rp-reveal .v { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 13px; margin: 4px 0 6px; }
.real-phone-screen .rp-reveal p { font-size: 11.5px; line-height: 1.5; color: var(--rp-ink); }

.real-phone-screen .rp-wcard { background: var(--rp-card); border: 1px solid var(--rp-line); border-radius: 13px; padding: 12px 13px; display: flex; flex-direction: column; gap: 5px; }
.real-phone-screen .rp-wcard .rp-sm { display: flex; align-items: center; gap: 7px; font-family: 'JetBrains Mono', monospace; font-size: 8.5px; color: var(--rp-ink-3); letter-spacing: 0.04em; text-transform: uppercase; }
.real-phone-screen .rp-wcard .rp-sm .fresh { color: var(--rp-gold); }
.real-phone-screen .rp-wcard .rp-st { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 14px; line-height: 1.25; letter-spacing: -0.01em; }
.real-phone-screen .rp-wcard .rp-ss { font-size: 11px; color: var(--rp-ink-2); line-height: 1.45; }

.real-phone-screen .rp-nav { display: flex; border-top: 1px solid var(--rp-line); background: rgba(255, 255, 255, 0.92); flex-shrink: 0; }
.real-phone-screen .rp-nav button { flex: 1; background: none; border: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--rp-ink-3); padding: 9px 0 10px; font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: 0.05em; font-weight: 600; }
.real-phone-screen .rp-nav button svg { width: 17px; height: 17px; }
.real-phone-screen .rp-nav button.on { color: var(--rp-pine); }

/* --------------------------------------------------------------------------
   11. THE DAILY HABIT VISUAL (Compounding Timeline)
   -------------------------------------------------------------------------- */
.timeline-section {
  position: relative;
  background: #0B0A09;
}

.timeline-nav {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3.5rem;
  margin-bottom: 3rem;
}

.timeline-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-checkpoint {
  position: relative;
  z-index: 2;
  background: #0B0A09;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.4rem;
  font-family: var(--font-sans-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-on-dark-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-checkpoint:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: #1C1A17;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 20px rgba(200, 148, 69, 0.4);
}

.timeline-checkpoint.active {
  border-color: #DEB25E;
  color: #0B0A09;
  background: var(--accent-gold);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 24px rgba(200, 148, 69, 0.55);
}

.timeline-display {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.timeline-display:hover {
  border-color: #DEB25E;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(200, 148, 69, 0.18);
}

.timeline-display-day {
  font-family: var(--font-sans-ui);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.timeline-display-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-on-dark-primary);
  margin-bottom: 1.25rem;
}

.timeline-display-desc {
  font-size: 1.1rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   12. CLOSING B2B CTA & MODAL
   -------------------------------------------------------------------------- */
.b2b-cta-card {
  background: linear-gradient(135deg, #181613 0%, #0E0D0C 100%);
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.b2b-cta-card:hover {
  border-color: rgba(200, 148, 69, 0.65);
  transform: translateY(-5px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.75), 0 0 50px rgba(200, 148, 69, 0.2);
}

.b2b-cta-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(200, 148, 69, 0.15) 0%, rgba(14, 13, 12, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.b2b-cta-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  color: var(--text-on-dark-primary);
  margin-bottom: 1.25rem;
}

.b2b-cta-desc {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text-on-dark-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Institutional Pilot Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #141311;
  border: 1px solid var(--border-dark-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-on-dark-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg) scale(1.15);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--text-on-dark-primary);
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.95rem;
  color: var(--text-on-dark-secondary);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-sans-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-on-dark-secondary);
  margin-bottom: 0.4rem;
}

.form-input, .form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans-body);
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.form-input:hover, .form-select:hover {
  border-color: rgba(200, 148, 69, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(200, 148, 69, 0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   13. INSTITUTIONAL FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: rgba(9, 8, 7, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  color: var(--text-on-dark-secondary);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-p {
  font-size: 0.92rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.65;
  margin-top: 1.25rem;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-sans-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-on-dark-primary);
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-list a {
  color: var(--text-on-dark-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
}

.footer-nav-list a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.footer-contact-item:hover {
  transform: translateX(3px);
}

.contact-label {
  font-family: var(--font-sans-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  color: var(--text-on-dark-muted);
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent-gold) !important;
}

/* --------------------------------------------------------------------------
   14. COMPOUNDING METRICS GRID & STORYTELLING HELPERS
   -------------------------------------------------------------------------- */
.compounding-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.compounding-metric-card {
  background: rgba(20, 19, 17, 0.7);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.compounding-metric-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(200, 148, 69, 0.16);
}

.compounding-metric-value {
  font-family: var(--font-sans-ui);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
  transition: all 0.3s ease;
}

.compounding-metric-card:hover .compounding-metric-value {
  transform: scale(1.08);
  color: #DEB25E;
}

.compounding-metric-label {
  font-size: 0.85rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.4;
}

.chapter-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 148, 69, 0.3) 50%, transparent 100%);
  margin: clamp(4rem, 8vw, 6rem) 0;
}

/* --------------------------------------------------------------------------
   RESPONSIVE OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .compounding-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .breakdown-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  .breakdown-flow::before {
    display: none;
  }
  .system-stepper-container {
    grid-template-columns: 1fr;
  }
  .system-preview-pane {
    position: static;
    margin-top: 2rem;
  }
  .real-dash .rd-grid-2 {
    grid-template-columns: 1fr;
  }
  .real-dash .kpi-row,
  .real-dash .kpi-row-5,
  .real-dash .kpi-row-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .student-section-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .compounding-metrics-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid, .solution-grid {
    grid-template-columns: 1fr;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .breakdown-flow {
    grid-template-columns: 1fr;
  }
  .institutional-pillars {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .real-dash .kpi-row,
  .real-dash .kpi-row-5,
  .real-dash .kpi-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .real-dash .rd-filter-group select,
  .real-dash .rd-filter-group input {
    min-width: 0;
  }
  .dashboard-chrome {
    flex-wrap: wrap;
    gap: 0.85rem;
  }
  .timeline-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .timeline-nav::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
