﻿/* ============================================================
   Spanish Language & Corporate Culture Landing Page Stylesheet
   spanish-language.css  |  v1.0.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Design Tokens - SCM Aligned */
  --canvas:          #F8FAFC;
  --surface:         #FFFFFF;
  --surface-2:       #EFF6FF;
  --border:          #E2E8F0;
  --border-gold:     rgba(245, 158, 11, 0.18);
  --border-crimson:  rgba(225, 29, 72, 0.18);
  
  --gold-primary:    #D97706;
  --gold-dim:        #FEF3C7;
  --gold-glow:       rgba(217,119,6,0.06);
  
  --crimson-accent:  #E11D48;
  --crimson-dim:     #FFE4E6;
  
  --text-primary:    #0F172A;
  --text-secondary:  #475569;
  --text-muted:      #94A3B8;
  
  --gold-prestige:   #9A7D2C;
  --white-pure:      #FFFFFF;

  /* Typography Stack - SCM Font Aligned */
  --font-head:     'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;
  --font-sans:     'Inter', sans-serif; /* Resolved font fallback bug */

  /* Geometry */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  
  --max-w:  1180px;
  --pad-x:  40px;
  --sec-py: 90px;
}

@media (max-width: 1024px) { :root { --pad-x: 24px; --sec-py: 70px; } }
@media (max-width: 768px)  { :root { --pad-x: 20px; --sec-py: 50px; } }

/* ─── RESET & GLOBAL STYLES ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background-color: var(--canvas);
}
body.sp-page {
  color: #F8FAFC !important;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background: var(--canvas) linear-gradient(to right, 
    rgba(225, 29, 72, 0.08) 0%,   /* Dimmed Crimson */
    rgba(225, 29, 72, 0.02) 20%, 
    transparent 40%, 
    transparent 60%, 
    rgba(245, 158, 11, 0.02) 80%, /* Dimmed Gold */
    rgba(245, 158, 11, 0.08) 100% 
  ) !important;
  background-attachment: fixed !important;
}

body.sp-page::before {
  content: '';
  position: fixed;
  top: 10%;
  left: -20%;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.12) 0%, transparent 70%) !important;
  filter: blur(140px) !important;
  pointer-events: none;
  z-index: 0;
  display: block !important;
}

body.sp-page::after {
  content: '';
  position: fixed;
  bottom: 10%;
  right: -20%;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%) !important;
  filter: blur(140px) !important;
  pointer-events: none;
  z-index: 0;
  display: block !important;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img, svg { display: block; max-width: 100%; }

/* Typography Utilities */
.sp-page h1, .sp-page h2, .sp-page h3, .sp-page h4 {
  font-family: var(--font-head) !important;
  color: var(--text-primary) !important;
}
.sp-serif, .sp-serif-font {
  font-family: var(--font-head) !important; /* Maps display headers to Outfit */
}
.sp-mono {
  font-family: var(--font-mono) !important;
}
/* Premium Text Gradients matching Spanish flag theme */
.sp-text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #FCD34D 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.sp-text-gradient-crimson {
  background: linear-gradient(135deg, var(--crimson-accent) 0%, #FDA4AF 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.sp-section {
  padding: var(--sec-py) 0;
  position: relative;
  z-index: 1;
}

.sp-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

/* ─── SECTION HEADER ────────────────────────────────────────────────────── */
.sp-section-header {
  margin-bottom: 56px;
  max-width: 650px;
}
.sp-section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sp-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson-accent);
  margin-bottom: 16px;
  display: block;
}
.sp-eyebrow.gold {
  color: var(--gold-primary);
}
.sp-section-title {
  font-family: var(--font-head) !important;
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.025em !important;
  color: var(--text-primary) !important;
}
.sp-section-title em {
  font-style: italic !important;
  font-weight: 800 !important;
  color: var(--gold-primary) !important;
}
.sp-section-subtitle {
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────── */
.sp-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 14px 30px !important;
  border-radius: var(--r-sm) !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  white-space: nowrap !important;
}
.sp-btn-primary {
  background-color: var(--gold-primary) !important;
  color: #050811 !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2) !important;
}
.sp-btn-primary:hover {
  background-color: #D97706 !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35) !important;
}
.sp-btn-outline {
  background-color: transparent !important;
  border: 1.5px solid rgba(245, 158, 11, 0.35) !important;
  color: var(--gold-primary) !important;
}
.sp-btn-outline:hover {
  background-color: rgba(245, 158, 11, 0.06) !important;
  border-color: var(--gold-primary) !important;
  color: var(--text-primary) !important;
  transform: translateY(-1.5px) !important;
}

/* ─── STICKY NAVIGATION ─────────────────────────────────────────────────── */
.sp-nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: 64px;
  background-color: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  display: flex;
  align-items: center;
}
.sp-nav .sp-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.sp-nav-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}
.sp-nav-links {
  display: flex;
  gap: 32px;
}
@media (max-width: 840px) {
  .sp-nav-links {
    display: none;
  }
}
.sp-nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.sp-nav-links a:hover {
  color: var(--gold-primary);
}
.sp-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sp-nav-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-primary);
  background: var(--gold-dim);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
@media (max-width: 480px) {
  .sp-nav-badge {
    display: none;
  }
}

/* ─── STANDARDIZED SCM-STYLE CARDS ──────────────────────────────────────── */
.sp-card-frosted,
.sp-telemetry-card,
.sp-pillar-card,
.sp-projector-widget,
.sp-glass-card,
.sp-admissions-manifest,
.sp-assurance-card,
.sp-alumni-card,
.sp-form-card,
.sp-bento-cell,
.sp-result-card {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-lg) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 4px 20px rgba(0,0,0,0.3) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

/* Unified SCM-style Card Hover Transformations & Ambient Glows */
.sp-card-frosted:hover,
.sp-telemetry-card:hover,
.sp-pillar-card:hover,
.sp-projector-widget:hover,
.sp-glass-card:hover,
.sp-admissions-manifest:hover,
.sp-assurance-card:hover,
.sp-alumni-card:hover,
.sp-form-card:hover,
.sp-bento-cell:hover,
.sp-result-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
  box-shadow: inset 0 1px 0 rgba(245, 158, 11, 0.08), 0 20px 48px rgba(0, 0, 0, 0.45) !important;
}

/* Sweep Shimmer Animations across all card blocks */
.sp-card-frosted::before,
.sp-telemetry-card::before,
.sp-pillar-card::before,
.sp-projector-widget::before,
.sp-glass-card::before,
.sp-admissions-manifest::before,
.sp-assurance-card::before,
.sp-alumni-card::before,
.sp-form-card::before,
.sp-bento-cell::before,
.sp-result-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, transparent 40%, rgba(245, 158, 11, 0.05) 50%, transparent 60%) !important;
  transform: translateX(-150%) !important;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.sp-card-frosted:hover::before,
.sp-telemetry-card:hover::before,
.sp-pillar-card:hover::before,
.sp-projector-widget:hover::before,
.sp-glass-card:hover::before,
.sp-admissions-manifest:hover::before,
.sp-assurance-card:hover::before,
.sp-alumni-card:hover::before,
.sp-form-card:hover::before,
.sp-bento-cell:hover::before,
.sp-result-card:hover::before {
  transform: translateX(200%) !important;
}

/* ─── SECTION 1: HERO THEATRE ───────────────────────────────────────────── */
.sp-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}
.sp-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: min(15vw, 150px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  opacity: 0.015;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .sp-hero-watermark {
    display: none;
  }
}
.sp-hero-content {
  max-width: 800px;
  margin: 0;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}
.sp-hero-eyebrow {
  display: inline-block;
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid rgba(225, 29, 72, 0.3);
  border-radius: 20px;
  padding: 6px 20px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  color: var(--crimson-accent);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.sp-hero-h1 {
  font-family: var(--font-head) !important;
  font-weight: 800 !important;
  font-size: clamp(44px, 6vw, 80px) !important;
  letter-spacing: -0.035em !important;
  line-height: 1.05 !important;
  color: var(--text-primary) !important;
  margin-bottom: 28px !important;
}
.sp-hero-h1 em, .sp-hero-h1 span.gold {
  font-style: normal !important;
  color: var(--gold-primary) !important;
  background: linear-gradient(135deg, var(--gold-primary) 0%, #FCD34D 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: block !important;
}
.sp-hero-sep {
  width: 120px;
  height: 2px;
  background-color: var(--border);
  margin: 24px 0;
}
.sp-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 0 40px;
}
.sp-hero-ctas {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 580px) {
  .sp-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
  }
}
.sp-hero-trust {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.sp-hero-trust span {
  display: inline-flex;
  align-items: center;
}
.sp-hero-trust-sep {
  width: 1px;
  height: 14px;
  background-color: var(--border);
}
@media (max-width: 768px) {
  .sp-hero-trust-sep {
    display: none;
  }
}
.sp-hero-quote {
  max-width: 500px;
  margin: 0;
  text-align: left;
}
.sp-hero-quote-fr {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.4;
}
.sp-hero-quote-en {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── SECTION 2: BILINGUAL PAY PREMIUM TELEMETRY ────────────────────────── */
.sp-telemetry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .sp-telemetry-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sp-telemetry-card {
  padding: 40px 32px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important; /* Locks height to grid row */
}
.sp-telemetry-card.elevated {
  border-color: var(--border-gold) !important;
}
.sp-telemetry-card.crimson-top {
  border-top: 2px solid var(--crimson-accent) !important;
}
.sp-telemetry-metric {
  font-family: var(--font-mono) !important;
  font-size: 38px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #FFFFFF !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.02em !important;
}
.sp-telemetry-card.elevated .sp-telemetry-metric {
  color: var(--crimson-accent);
}
.sp-telemetry-card.crimson-top .sp-telemetry-metric {
  color: var(--crimson-accent);
}
.sp-telemetry-trend {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-primary);
  margin-bottom: 24px;
}
.sp-telemetry-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.sp-telemetry-card.elevated .sp-telemetry-label {
  color: var(--gold-primary);
}
.sp-telemetry-body {
  flex-grow: 1 !important; /* Pushes content down evenly */
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #E2E8F0 !important;
  margin-top: 24px !important;
}
.sp-telemetry-body strong {
  color: #FFFFFF !important;
  display: block !important;
  margin-bottom: 8px !important;
}
.sp-telemetry-bar-wrap {
  margin-bottom: 20px;
}
.sp-telemetry-bar-text {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.sp-telemetry-bar-bg {
  width: 100%;
  height: 6px;
  background-color: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.sp-telemetry-bar-fill {
  height: 100%;
  background-color: var(--gold-primary);
  border-radius: 3px;
  width: 65%;
}
.sp-telemetry-argument {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ─── SECTION 3: THE STRATEGIC SYLLABUS - THREE PILLARS ─────────────────── */
.sp-syllabus-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    width: 100% !important;
    align-items: stretch !important;
    margin-top: 48px !important;
}

@media (max-width: 1024px) {
    .sp-syllabus-list { grid-template-columns: 1fr !important; gap: 32px !important; }
}

.sp-pillar-card {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-top: 1px solid var(--border) !important;
    border-radius: 16px !important;
    padding: 36px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    height: 100% !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.sp-pillar-card:hover {
    transform: translateY(-8px) !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 20px rgba(245, 158, 11, 0.05) !important;
}

.sp-pillar-watermark {
    position: absolute !important;
    top: -20px !important;
    right: -20px !important;
    font-family: var(--font-head) !important;
    font-size: 200px !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.02) !important;
    line-height: 1 !important;
    z-index: -1 !important;
    pointer-events: none !important;
    transition: color 0.4s ease !important;
}

.sp-pillar-card:hover .sp-pillar-watermark {
    color: rgba(245, 158, 11, 0.04) !important;
}

.sp-pillar-tag {
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: var(--gold-primary) !important;
    background: rgba(245, 158, 11, 0.1) !important;
    padding: 6px 12px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
    display: inline-block !important;
    margin-bottom: 24px !important;
}

.sp-pillar-title {
    font-family: var(--font-head) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 16px !important;
    line-height: 1.3 !important;
}

.sp-pillar-body {
    font-size: 15px !important;
    color: #CBD5E1 !important;
    line-height: 1.7 !important;
    margin-bottom: 32px !important;
    flex-grow: 1 !important; 
}

.sp-pillar-toolkit {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 24px !important;
    margin-top: auto !important; 
}

.sp-pillar-visual-label {
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: #FFFFFF !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    padding-bottom: 12px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.sp-curr-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.sp-curr-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    transition: transform 0.2s ease !important;
}

.sp-curr-list li:hover {
    transform: translateX(4px) !important;
}

.sp-curr-icon {
    color: var(--gold-primary) !important;
    font-family: var(--font-mono) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    margin-top: 2px !important;
}

.sp-curr-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.sp-curr-title-sub {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.3 !important;
}

.sp-curr-desc {
    font-size: 13.5px !important;
    color: #94A3B8 !important;
    line-height: 1.5 !important;
}
/* ─── SECTION 4: THE INTERACTIVE CAREER & SALARY ACCELERATOR ────────────── */
.sp-projector-widget {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 40px;
}
@media (max-width: 768px) {
  .sp-projector-widget {
    padding: 24px;
  }
}
.sp-proj-row {
  margin-bottom: 32px;
}
.sp-proj-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.sp-pills-select {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sp-pill-opt {
  white-space: nowrap !important;
  padding: 8px 18px !important;
  border-radius: 24px !important;
  background: var(--canvas) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
  flex-shrink: 0 !important;
}
.sp-pill-opt:hover {
  border-color: rgba(245, 158, 11, 0.45) !important;
  color: var(--text-primary) !important;
}
.sp-pill-opt.selected {
  background: var(--gold-dim) !important;
  border-color: var(--gold-primary) !important;
  color: var(--text-primary) !important;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15) !important;
}

.sp-select-styled {
  width: 100% !important;
  background-color: rgba(8, 11, 18, 0.65) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 13px 16px !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 width%3D%2212%22 height%3D%228%22 viewBox%3D%220 0 12 8%22%3E%3Cpath d%3D%22M1 1l5 5 5-5%22 stroke%3D%22%23475569%22 stroke-width%3D%221.5%22 fill%3D%22none%22/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
  cursor: pointer !important;
  outline: none !important;
}
.sp-select-styled:hover {
  border-color: rgba(245, 158, 11, 0.45) !important;
}
.sp-select-styled:focus {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18) !important;
}

/* Results State Panel */
.sp-proj-results {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.sp-proj-results.active {
  display: grid;
  animation: spFadeInUp 0.4s ease forwards;
}
@media (max-width: 992px) {
  .sp-proj-results.active {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sp-result-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.sp-res-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sp-res-val-big {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.sp-res-sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.sp-res-role-pill {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--white-pure);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  text-align: center;
}

/* Chart Comparison inside Result card */
.sp-res-chart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}
.sp-chart-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-secondary);
}
.sp-chart-bar-bg {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.sp-chart-bar-fill {
  height: 100%;
  background: var(--text-muted);
  border-radius: 4px;
}
.sp-chart-bar-fill.gold {
  background: var(--gold-primary);
}

/* competencies check list inside Result card */
.sp-res-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.sp-res-checklist li {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sp-res-checklist li::before {
  content: "✓";
  color: var(--gold-primary);
  font-weight: 700;
}

@keyframes spFadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SECTION 5: THE SPAIN IMMERSION DOSSIER ─────────────────────────── */
.sp-immersion {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  /* Ambient Gold/Silver middle glow */
  background-image: radial-gradient(circle at 50% 50%, rgba(241,245,249,0.035) 0%, transparent 60%);
}
.sp-immersion-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .sp-immersion-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.sp-immersion-left {
  display: flex;
  flex-direction: column;
}
.sp-immersion-h2 {
  font-family: var(--font-head) !important;
  font-size: clamp(32px, 5vw, 48px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.025em !important;
  color: var(--text-primary) !important;
}
.sp-immersion-h2 span.gold {
  color: var(--gold-primary);
  display: block;
}
.sp-immersion-body {
  font-size: 16px;
  line-height: 1.8;
  color: #CBD5E1;
  margin-bottom: 32px;
}
.sp-immersion-loc {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--white-pure);
  font-weight: 500;
}

/* Frosted glass card */
.sp-glass-card {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.sp-glass-title {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 24px;
}
.sp-glass-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .sp-glass-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sp-glass-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.sp-glass-col ul {
  list-style: none;
}
.sp-glass-col li {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: var(--text-secondary);
  position: relative;
  padding-left: 16px;
}
.sp-glass-col.covers li::before {
  content: "✓";
  color: var(--gold-primary);
  position: absolute;
  left: 0;
}
.sp-glass-col.excludes li::before {
  content: "→";
  color: var(--text-muted);
  position: absolute;
  left: 0;
}
.sp-glass-foot {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* ─── SECTION 6: THE ADMISSIONS GATEKEEPER ──────────────────────────────── */
.sp-admissions-manifest {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.sp-manifest-header {
  background: var(--surface-2);
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.sp-manifest-body {
  padding: 48px;
}
@media (max-width: 768px) {
  .sp-manifest-body {
    padding: 32px 20px;
  }
}
.sp-manifest-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}
.sp-manifest-table tr {
  border-bottom: 1px solid var(--border);
}
.sp-manifest-table tr:last-child {
  border-bottom: none;
}
.sp-manifest-table td {
  padding: 20px 12px;
}
.sp-manifest-table td:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-primary);
  width: 30%;
  font-size: 15px;
  letter-spacing: -0.01em;
}
@media (max-width: 580px) {
  .sp-manifest-table td:first-child {
    width: 40%;
    font-size: 14px;
  }
}
.sp-manifest-table td:last-child {
  color: var(--text-secondary);
  font-size: 14px;
}

.sp-manifest-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sp-manifest-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sp-manifest-step {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 24px;
  background: rgba(255, 255, 255, 0.01);
}
.sp-manifest-step.active {
  border-color: var(--border-gold);
  background: rgba(245, 158, 11, 0.02);
}
.sp-mstep-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.sp-mstep-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.sp-mstep-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}
.sp-manifest-closer {
  text-align: center !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  color: var(--text-primary) !important;
  margin-top: 24px !important;
  letter-spacing: -0.02em !important;
}

/* ─── SECTION 7: THE CONTRACTUAL TUITION ASSURANCE ──────────────────────── */
.sp-assurance-card {
  background: var(--surface);
  border: 2px solid rgba(225,29,72,0.35);
  border-radius: var(--r-md);
  padding: 56px 64px;
  position: relative;
  border-left: 6px solid var(--crimson-accent);
}

@media (max-width: 768px) { .sp-assurance-card { padding: 36px 28px; } }

.scm-guarantee-stamp {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.sp-stamp-svg {
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(225, 29, 72, 0.15));
}

.scm-guarantee-headline {
  font-family: var(--font-head) !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  letter-spacing: -0.025em !important;
  line-height: 1.2 !important;
}

.scm-guarantee-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}

@media (max-width: 768px) { .scm-guarantee-body { grid-template-columns: 1fr; gap: 28px; } }

.scm-guarantee-terms p,
.scm-guarantee-terms li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.scm-guarantee-terms p { margin-bottom: 16px; }

.scm-guarantee-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.scm-guarantee-items li {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
}

.scm-guarantee-items .item-num {
  color: var(--crimson-accent);
  flex-shrink: 0;
}

.scm-guarantee-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scm-guarantee-box .box-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.scm-guarantee-pct {
  font-family: var(--font-mono);
  font-size: clamp(48px, 6vw, 64px);
  color: var(--crimson-accent);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.scm-guarantee-box .box-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 220px;
}

.scm-guarantee-box .box-caveat {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.scm-guarantee-footer {
  text-align: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.scm-guarantee-footer a {
  color: var(--crimson-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── SECTION 8: SOCIAL PROOF - PLACEMENT RECORD ────────────────────────── */
.sp-ticker-strip {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  margin-bottom: 80px;
}
.sp-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: spTicker 35s linear infinite;
  gap: 64px;
  width: max-content;
}
.sp-ticker-entry {
  font-size: 14px;
  color: var(--text-secondary);
}
.sp-ticker-entry .salary {
  font-family: var(--font-mono);
  color: var(--gold-primary);
  font-weight: 700;
}
.sp-ticker-entry .sep {
  color: rgba(245, 158, 11, 0.4);
  margin: 0 12px;
}
@keyframes spTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.sp-alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .sp-alumni-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sp-alumni-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sp-alumni-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.sp-alumni-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.sp-alumni-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--gold-primary);
}
.sp-alumni-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}
.sp-alumni-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.sp-alumni-role span.sp-blue-arrow {
  color: var(--gold-primary);
  margin: 0 4px;
}
.sp-alumni-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-left: 3px solid var(--gold-primary);
  padding-left: 16px;
  margin-bottom: 20px;
}
.sp-alumni-badge {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-top: auto;
}

/* Employer Sector Map */
.sp-sector-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-align: center;
}
.sp-sector-wrap {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 12px;
}
.sp-sector-row {
  display: flex;
  gap: 16px;
  width: max-content;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .sp-sector-row {
    margin: 0;
  }
}
.sp-sector-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  min-width: 200px;
}
.sp-sector-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.sp-sector-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.sp-sector-avg {
  font-family: var(--font-mono);
  color: var(--gold-primary);
  font-size: 16px;
  font-weight: 700;
}

/* ─── SECTION 9: PROGRAM LOGISTICS BENTO GRID ────────────────────────────── */
.sp-logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .sp-logistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .sp-logistics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sp-bento-cell {
  padding: 32px;
}
.sp-bento-icon {
  margin-bottom: 20px;
  color: var(--gold-primary);
  display: inline-flex;
}
.sp-bento-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sp-bento-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}
.sp-bento-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── SECTION 10: FAQ ACCORDION ─────────────────────────────────────────── */
.sp-faq-list {
  margin-top: 48px !important;
  border-top: 1px solid var(--border) !important;
}
.sp-faq-item {
  border-bottom: 1px solid var(--border) !important;
}
.sp-faq-btn {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 26px 4px !important;
  gap: 24px !important;
  cursor: pointer !important;
  color: var(--text-primary) !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  text-align: left !important;
  transition: color 0.15s !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
}
.sp-faq-btn:hover {
  color: var(--gold-primary) !important;
}
.sp-faq-btn > span:first-child {
  flex: 1 !important;
  line-height: 1.5 !important;
  padding-right: 8px !important;
}
.sp-faq-icon {
  flex-shrink: 0 !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--border-gold) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: var(--text-muted) !important;
  transition: all 0.25s ease !important;
  background: transparent !important;
}
.sp-faq-item.open .sp-faq-btn {
  color: var(--gold-primary) !important;
}
.sp-faq-item.open .sp-faq-icon {
  background: var(--gold-dim) !important;
  border-color: var(--gold-primary) !important;
  color: var(--gold-primary) !important;
  transform: rotate(45deg) !important;
}
.sp-faq-body {
  max-height: 0;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.sp-faq-body-inner {
  padding: 0 4px 28px !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: var(--text-secondary) !important;
  border: none !important;
}

/* ─── SECTION 11: THE FINAL CAPTURE ENGINE ──────────────────────────────── */
.sp-lead-hub {
  position: relative;
}
/* White center background glow layer for the final hub */
.sp-lead-hub::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 250, 252, 0.035) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.sp-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .sp-lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.sp-lead-h2 {
  font-family: var(--font-head) !important;
  font-size: clamp(36px, 5vw, 52px) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
  letter-spacing: -0.025em !important;
  color: var(--text-primary) !important;
}
.sp-lead-h2 span.gold {
  color: var(--gold-primary);
  display: block;
}
.sp-lead-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Seats indicator bar */
.sp-cohort-bar-wrap {
  margin-top: 32px;
}
.sp-cohort-bar-text {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.sp-cohort-bar-bg {
  width: 100%;
  height: 8px;
  background-color: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.sp-cohort-bar-fill {
  height: 100%;
  background-color: var(--gold-primary);
  border-radius: 4px;
  width: 61%; /* 22 of 36 */
}

/* Form Card */
.sp-form-card {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-gold) !important;
  border-radius: var(--r-lg) !important;
  padding: 40px !important;
  box-shadow: 0 0 80px rgba(245, 158, 11, 0.06), 0 0 0 1px rgba(245, 158, 11, 0.03) !important;
}
@media (max-width: 580px) {
  .sp-form-card {
    padding: 28px 20px !important;
  }
}
.sp-form-title {
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  color: var(--text-primary) !important;
  margin-bottom: 28px !important;
  text-align: center !important;
}
.sp-input-group {
  margin-bottom: 18px !important;
}
.sp-input {
  width: 100% !important;
  background: rgba(8, 11, 18, 0.65) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  padding: 13px 16px !important;
  font-family: var(--font-body) !important;
  color: var(--text-primary) !important;
  font-size: 15px !important;
  outline: none !important;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.15s !important;
}
.sp-input:hover {
  border-color: rgba(245, 158, 11, 0.45) !important;
}
.sp-input:focus {
  background: rgba(15, 20, 32, 0.9) !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18) !important;
}
.sp-form-foot {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  color: var(--text-muted) !important;
  text-align: center !important;
  margin-top: 16px !important;
}

/* ─── MOBILE STICKY BOTTOM BAR ─────────────────────────────────────────── */
.sp-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(8, 11, 18, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 998;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sp-mobile-bar.visible {
  transform: translateY(0);
}
@media (min-width: 769px) {
  .sp-mobile-bar {
    display: none !important;
  }
}
.sp-mbar-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.sp-mbar-text span.gold {
  color: var(--gold-primary);
  font-weight: 700;
}

/* Animation utilities */
.sp-anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-anim.active {
  opacity: 1;
  transform: translateY(0);
}
.sp-anim-d1 { transition-delay: 0.1s; }
.sp-anim-d2 { transition-delay: 0.2s; }
.sp-anim-d3 { transition-delay: 0.3s; }

/* ─── SCM DERIVED CURRICULUM & ADMISSIONS BLOCKS ──────────────────────── */
.scm-module-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-lg) !important;
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--canvas) !important;
  position: relative;
  z-index: 2;
}

.scm-module-block:hover {
  border-color: rgba(245, 158, 11, 0.35) !important;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.05) !important;
}

@media (max-width: 768px) { .scm-module-block { grid-template-columns: 1fr; } }

.scm-module-before,
.scm-module-after {
  padding: 48px 44px;
}
@media (max-width: 580px) {
  .scm-module-before,
  .scm-module-after {
    padding: 32px 24px;
  }
}

.scm-module-before {
  border-right: 1px solid var(--border) !important;
  position: relative;
}

@media (max-width: 768px) {
  .scm-module-before { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
}

.scm-module-after {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.025) 0%, transparent 60%) !important;
}

.scm-module-num {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 20px !important;
  text-transform: uppercase;
}

.scm-module-name {
  font-family: var(--font-head) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin-bottom: 28px !important;
  line-height: 1.3 !important;
  letter-spacing: -0.015em !important;
}

.scm-module-before .scm-module-name { color: var(--text-primary) !important; }

.scm-compare-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  margin-bottom: 20px !important;
}

.scm-compare-label--old { color: var(--text-muted) !important; }
.scm-compare-label--new { color: var(--gold-primary) !important; }

.scm-compare-list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.scm-compare-list li {
  display: flex !important;
  gap: 12px !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
}

.scm-list-icon {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  margin-top: 2px !important;
  border-radius: 4px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.scm-list-icon--x  { background: rgba(239,68,68,0.12) !important; color: rgba(239,68,68,0.7) !important; }
.scm-list-icon--ok { background: rgba(245, 158, 11, 0.12) !important; color: var(--gold-primary) !important; }

.scm-tool-chips {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 28px !important;
  padding-top: 20px !important;
  border-top: 1px solid var(--border) !important;
}

.chip {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  color: var(--text-secondary) !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease;
}
.chip:hover {
  border-color: rgba(245, 158, 11, 0.3) !important;
  background: rgba(245, 158, 11, 0.05) !important;
}
