/* ==========================================================================
   CRAFT TO CAREER — MASTER BRAND STYLESHEET
   Design Philosophy: Real People + Real Work + Real Guidance + Real Progress
   Color System extracted directly from official Craft to Career brand assets
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-purple: #6B21A8;
  --color-magenta: #D92662;
  --color-coral: #FF6B35;
  --color-amber: #F59E0B;
  
  /* Brand Gradients */
  --grad-brand: linear-gradient(135deg, #6B21A8 0%, #D92662 52%, #FF6B35 100%);
  --grad-brand-h: linear-gradient(90deg, #6B21A8 0%, #D92662 50%, #FF6B35 100%);
  --grad-brand-subtle: linear-gradient(135deg, rgba(107, 33, 168, 0.06) 0%, rgba(217, 38, 98, 0.06) 50%, rgba(255, 107, 53, 0.06) 100%);
  --grad-card-overlay: linear-gradient(180deg, rgba(18, 18, 20, 0) 50%, rgba(18, 18, 20, 0.85) 100%);

  /* Neutrals & Surfaces */
  --bg-canvas: #FAF9F6;
  --bg-canvas-alt: #F4F2EC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.82);
  --bg-glass-dark: rgba(18, 18, 20, 0.75);

  /* Typography Colors */
  --text-main: #121214;
  --text-muted: #4B5563;
  --text-subtle: #6B7280;
  --text-light: #FAF9F6;

  /* Borders & Dividers */
  --border-subtle: #E5E2DA;
  --border-fine: rgba(18, 18, 20, 0.08);
  --border-focus: #D92662;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 8px 32px rgba(217, 38, 98, 0.18);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 76px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--text-main);
  color: var(--bg-surface);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  z-index: 1000;
  font-weight: 600;
  font-size: 0.875rem;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 20px;
  outline: 3px solid var(--color-magenta);
}

/* Screen-reader Only Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 36px;
    padding-right: 36px;
  }
}

/* Section Common Layout */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-header.left-aligned {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-magenta);
  margin-bottom: 12px;
}

.eyebrow-pill {
  padding: 4px 12px;
  background: rgba(217, 38, 98, 0.08);
  border: 1px solid rgba(217, 38, 98, 0.2);
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-title-editorial {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 22px;
}

.section-desc {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.section-header.left-aligned .section-desc {
  margin-left: 0;
}

/* Gradient Text Helper */
.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ==========================================================================
   BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-main);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(18, 18, 20, 0.15);
}
.btn-primary:hover {
  background: #27272A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 18, 20, 0.22);
}

.btn-gradient {
  background: var(--grad-brand);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(217, 38, 98, 0.28);
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217, 38, 98, 0.4);
  filter: brightness(1.05);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: #CBD5E1;
  background: #FAF9F6;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}
.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ==========================================================================
   01. HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-fine);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo {
  height: 38px;
  width: auto;
  aspect-ratio: 262 / 136;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast);
}
.header-brand:hover .header-logo {
  transform: scale(1.03);
}

.header-brand-text {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-brand-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-subtle);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-magenta);
  transition: width var(--transition-fast);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

/* Mobile Nav Overlay */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 16px;
  z-index: 99;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-fine);
}

@media (max-width: 960px) {
  .header-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* ==========================================================================
   02. HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--nav-height) + 56px);
  padding-bottom: 68px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(217, 38, 98, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 85% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 60%),
    var(--bg-canvas);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-section {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 44px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .hero-copy {
    display: contents;
  }

  .hero-badge-wrap {
    order: 1;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    order: 2;
  }

  .hero-subheadline {
    order: 3;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    order: 4;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    order: 5;
    justify-content: center;
    margin-bottom: 24px;
  }

  .hero-visual-card {
    order: 7;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 580px;
  }
}

.hero-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.hero-badge-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-badge-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-badge-divider {
  color: var(--border-subtle);
  font-weight: 400;
}

.hero-badge-highlight {
  font-weight: 700;
  color: var(--color-magenta);
  letter-spacing: -0.01em;
}

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.hero-subheadline {
  font-size: clamp(1.1875rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 16px;
  max-width: 560px;
}

.hero-role-cycle {
  display: inline-block;
  color: var(--color-magenta);
  position: relative;
  border-bottom: 3px solid rgba(217, 38, 98, 0.3);
  padding-bottom: 2px;
  transition: opacity 0.25s ease;
}

.hero-desc {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Hero Right: Student Learning Showcase Card */
.hero-visual-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-visual-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #18181B;
  aspect-ratio: 16 / 9;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: floatBadge 5s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-floating-badge {
    animation: none;
  }
  .hero-carousel-slide,
  .hero-dot {
    transition: none !important;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    gap: 0;
  }

  .hero-badge-wrap {
    margin-bottom: 12px;
  }

  .hero-title {
    margin-bottom: 12px;
  }

  .hero-subheadline {
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hero-desc {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-floating-badge {
    bottom: 16px;
    left: 16px;
    padding: 8px 12px;
  }
}

.hero-mentor-avatars {
  display: flex;
  margin-right: -8px;
}
.hero-mentor-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  margin-left: -8px;
}
.hero-mentor-avatar:first-child {
  margin-left: 0;
}

.hero-badge-info {
  line-height: 1.2;
}
.hero-badge-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
}
.hero-badge-sub {
  font-size: 0.6875rem;
  color: var(--text-subtle);
}

/* Hero Right: 2-Slide Carousel System */
.hero-carousel-track {
  display: grid;
  grid-template-areas: "slide";
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #18181B;
}

.hero-carousel-slide {
  grid-area: slide;
  position: relative;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.012);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 800ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 700ms ease;
  pointer-events: none;
  z-index: 1;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* Hero Slide Overlays: Webinar Date Badge (Only Major Hero Emphasis) */
.hero-webinar-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 38, 98, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(217, 38, 98, 0.2);
  animation: subtleWebinarGlow 4s ease-in-out infinite;
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-carousel-slide:not(.is-active) .hero-webinar-badge {
  opacity: 0;
  pointer-events: none;
}

@keyframes subtleWebinarGlow {
  0%, 100% {
    border-color: rgba(217, 38, 98, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(217, 38, 98, 0.2);
  }
  50% {
    border-color: rgba(217, 38, 98, 0.6);
    box-shadow: 0 8px 28px rgba(217, 38, 98, 0.16), 0 0 12px rgba(217, 38, 98, 0.28), 0 0 0 1px rgba(217, 38, 98, 0.4);
  }
}

.hero-webinar-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(217, 38, 98, 0.08);
  border: 1px solid rgba(217, 38, 98, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-magenta);
  flex-shrink: 0;
}

.hero-webinar-icon svg {
  width: 18px;
  height: 18px;
}

.hero-webinar-day {
  position: absolute;
  top: 13px;
  font-size: 0.5625rem;
  font-weight: 800;
  color: var(--color-magenta);
  line-height: 1;
}

.hero-webinar-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-webinar-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-magenta);
}

.hero-webinar-date {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-main);
}

@media (max-width: 640px) {
  .hero-webinar-badge {
    bottom: 16px;
    left: 16px;
    padding: 8px 14px;
    gap: 10px;
  }
  .hero-webinar-icon {
    width: 32px;
    height: 32px;
  }
  .hero-webinar-label {
    font-size: 0.625rem;
  }
  .hero-webinar-date {
    font-size: 0.9375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-webinar-badge {
    animation: none;
  }
}

/* Slide Date Badge */
.hero-date-badge {
  gap: 12px;
}

.hero-date-calendar-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #EEF2FF;
  border: 1px solid #E0E7FF;
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-date-calendar-icon svg {
  margin-top: -2px;
}

.hero-date-day-num {
  position: absolute;
  top: 15px;
  font-size: 0.5625rem;
  font-weight: 800;
  color: #4338CA;
  line-height: 1;
}

.hero-date-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  line-height: 1;
}

.hero-date-main {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* Hero Carousel Pagination Indicators */
.hero-carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-dot {
  position: relative;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: var(--radius-full);
  background: #CBD5E1; /* Clear visible Slate-300 inactive dot */
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.25s ease,
              box-shadow 0.25s ease;
}

/* Expanded clickable target */
.hero-dot::before {
  content: '';
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}

.hero-dot:hover:not(.is-active) {
  background: #94A3B8; /* Slate-400 on hover */
}

/* Active Indicator: Elongated, high-contrast Slate-900 pill */
.hero-dot.is-active {
  width: 28px;
  height: 9px;
  background: #0F172A; /* Slate 900 - bold, unmistakable contrast */
  border-color: #0F172A;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
  cursor: default;
}

.hero-dot:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 3px;
}

/* ==========================================================================
   03. PROOF / CREDIBILITY STRIP
   ========================================================================== */
.credibility-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-fine);
  border-bottom: 1px solid var(--border-fine);
  padding: 28px 0;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 540px) {
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.credibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 12px;
}

.credibility-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--grad-brand-subtle);
  border: 1px solid rgba(217, 38, 98, 0.15);
  color: var(--color-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credibility-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.credibility-content p {
  font-size: 0.8125rem;
  color: var(--text-subtle);
  line-height: 1.4;
}

/* ==========================================================================
   04. WHY CRAFT TO CAREER
   ========================================================================== */
.why-section {
  background: var(--bg-canvas);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-lg);
}

.why-card-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-magenta);
  margin-bottom: 12px;
}

.why-card-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.why-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.why-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-card-bullet {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.why-bullet-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-magenta);
  flex-shrink: 0;
  transform: translateY(-2px);
}

.why-card-evidence {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-canvas-alt);
  aspect-ratio: 16 / 9;
  width: 100%;
  box-shadow: var(--shadow-xs);
}

.why-card-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.why-card:hover .why-card-img {
  transform: scale(1.03);
}

/* ==========================================================================
   05. TRANSFORMATION
   ========================================================================== */
.transformation-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-fine);
  border-bottom: 1px solid var(--border-fine);
}

.transformation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}

@media (max-width: 880px) {
  .transformation-wrapper {
    grid-template-columns: 1fr;
  }
}

.trans-col {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.trans-col-before {
  background: #F4F2EC;
  border: 1px solid #E5E2DA;
}

.trans-col-after {
  background: #FAF8F5;
  border: 1.5px solid rgba(217, 38, 98, 0.3);
  box-shadow: 0 8px 30px rgba(217, 38, 98, 0.08);
  position: relative;
}

.trans-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trans-col-title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trans-badge-before {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #E5E2DA;
  color: #6B7280;
}

.trans-badge-after {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--grad-brand);
  color: #FFFFFF;
}

.trans-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trans-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.trans-col-before .trans-item {
  opacity: 0.85;
}

.trans-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trans-item-text h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.trans-item-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Transformation Outcome Banner - fully visible without excessive scroll */
.trans-outcome-card {
  margin-top: 40px;
  background: var(--grad-brand-subtle);
  border: 1px solid rgba(217, 38, 98, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 768px) {
  .trans-outcome-card {
    flex-direction: column;
    text-align: center;
  }
}

.trans-outcome-text h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.trans-outcome-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   06. WHAT YOU'LL LEARN
   ========================================================================== */
.learn-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1080px) {
  .learn-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .learn-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-magenta);
  box-shadow: var(--shadow-md);
}

.pillar-number {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-magenta);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.pillar-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.25;
}

.pillar-desc {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pillar-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-bullet {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pillar-bullet-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-magenta);
  flex-shrink: 0;
  transform: translateY(-2px);
}

/* ==========================================================================
   07 & 08. CURRICULUM — CONTINUOUS JOURNEY TO CAREER READY (CRITICAL)
   ========================================================================== */
/* ==========================================================================
   07 & 08. CURRICULUM — COMPACT 8-WEEK ROADMAP (SHOW THE JOURNEY)
   ========================================================================== */
.curriculum-section {
  background: var(--bg-canvas-alt);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.roadmap-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 36px;
  row-gap: 0;
  position: relative;
}

.roadmap-column {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xs);
  position: relative;
}

.roadmap-column-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.roadmap-phase-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-magenta);
}

.roadmap-phase-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.roadmap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.roadmap-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.roadmap-card:hover {
  border-color: rgba(217, 38, 98, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.roadmap-week-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-magenta);
  background: rgba(217, 38, 98, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.roadmap-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.roadmap-connector-down {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  color: #CBD5E1;
  position: relative;
  width: 100%;
}

.roadmap-connector-down::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #E2E8F0;
  z-index: 1;
}

.roadmap-connector-down svg {
  position: relative;
  z-index: 2;
  background: var(--bg-surface);
  color: #94A3B8;
  padding: 1px 0;
}

/* Phase Bridge (connecting Week 4 to Week 5) */
.roadmap-phase-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 8px 14px;
  background: rgba(217, 38, 98, 0.04);
  border: 1px dashed rgba(217, 38, 98, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-magenta);
}

.roadmap-phase-bridge .bridge-arrow {
  font-weight: 700;
  color: var(--color-purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Week 8 — The Final Destination */
.roadmap-card-destination {
  background: var(--grad-brand);
  border: 1px solid transparent;
  color: #FFFFFF;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(217, 38, 98, 0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.roadmap-card-destination::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.roadmap-card-destination:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 38, 98, 0.32);
}

.roadmap-dest-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.roadmap-card-destination .roadmap-week-tag {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
}

.roadmap-dest-pill {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.18);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.roadmap-card-destination .destination-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Secondary Breakdown & PDF Box */
.curriculum-breakdown-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-xs);
}

.curriculum-breakdown-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.breakdown-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(217, 38, 98, 0.08);
  color: var(--color-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.breakdown-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
}

.breakdown-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.curriculum-breakdown-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .roadmap-column {
    padding: 20px;
  }

  .curriculum-breakdown-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }

  .curriculum-breakdown-content {
    flex-direction: column;
    text-align: center;
  }

  .curriculum-breakdown-actions {
    flex-direction: column;
    width: 100%;
  }

  .curriculum-breakdown-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   WHO IS CRAFT TO CAREER FOR?
   ========================================================================== */
.audience-section {
  background: var(--bg-canvas);
}

/* ==========================================================================
   06. AUDIENCE SECTION (CLEAN 2-COLUMN COMPOSITION)
   ========================================================================== */
.audience-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.audience-categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-category-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.audience-category-item:hover {
  border-color: rgba(217, 38, 98, 0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.audience-cat-num {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--color-magenta);
  background: rgba(217, 38, 98, 0.08);
  border: 1px solid rgba(217, 38, 98, 0.15);
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  line-height: 1.2;
}

.audience-cat-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.audience-cat-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.audience-cat-sub {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Right: Visual Design Composition */
.audience-visual-wrapper {
  position: relative;
}

.audience-figma-window {
  background: #1E1E20;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
}

.audience-window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #18181A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audience-window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.audience-window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.01em;
}

.audience-window-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #F472B6;
  background: rgba(244, 114, 182, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.audience-figma-canvas {
  position: relative;
  overflow: hidden;
  background: #0B0F19;
}

.learner-journey-map {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 640px) {
  .learner-journey-map {
    padding: 16px;
    gap: 14px;
  }
}

.journey-map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.journey-stage-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94A3B8;
}

.journey-stage-tag.stage-accent {
  color: var(--color-magenta);
}

.journey-stage-tag.stage-success {
  color: #34D399;
}

.journey-stage-arrow {
  font-size: 0.75rem;
  color: #64748B;
}

.journey-flow-body {
  display: grid;
  grid-template-columns: 135px 1fr 140px;
  gap: 14px;
  align-items: center;
}

@media (max-width: 640px) {
  .journey-flow-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.journey-profiles-col {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.journey-node {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.journey-node:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.node-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38BDF8;
  flex-shrink: 0;
}

.node-p2 .node-bullet { background: #818CF8; }
.node-p3 .node-bullet { background: #F472B6; }
.node-p4 .node-bullet { background: #FB923C; }
.node-p5 .node-bullet { background: #34D399; }

.node-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #E2E8F0;
  white-space: nowrap;
}

.journey-center-bridge {
  display: flex;
  flex-direction: column;
}

.bridge-artboard {
  background: #151A28;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.artboard-mini-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.625rem;
  font-weight: 700;
  color: #94A3B8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 6px;
}

.artboard-zoom {
  color: #64748B;
}

.artboard-wireframes {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wire-block {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.wire-hero {
  height: 26px;
  background: linear-gradient(90deg, rgba(217, 38, 98, 0.25) 0%, rgba(107, 33, 168, 0.2) 100%);
  border: 1px dashed rgba(217, 38, 98, 0.4);
}

.wire-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.wire-col {
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.wire-cta-strip {
  height: 8px;
  width: 55%;
  background: rgba(56, 189, 248, 0.35);
  border-radius: 3px;
}

.artboard-tag-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(52, 211, 153, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.pulse-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}

.journey-outcome-col {
  display: flex;
  flex-direction: column;
}

.outcome-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(15, 23, 42, 0.7) 100%);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.outcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #34D399;
  letter-spacing: 0.05em;
}

.outcome-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
}

.outcome-sub {
  font-size: 0.6875rem;
  color: #CBD5E1;
  line-height: 1.35;
  margin: 0;
}

.outcome-tokens {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 3px;
}

.token-pill {
  font-size: 0.5625rem;
  font-weight: 700;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

@media (max-width: 960px) {
  .audience-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   UPCOMING BATCHES
   ========================================================================== */
.batches-section {
  background: var(--bg-surface);
}

.batches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .batches-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.batch-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.batch-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-magenta);
  box-shadow: var(--shadow-md);
}

.batch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.batch-badge {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-magenta);
  letter-spacing: 0.08em;
  background: rgba(217, 38, 98, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.batch-status-pill {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.batch-status-upcoming {
  color: var(--text-subtle);
  background: rgba(100, 116, 139, 0.1);
}

.batch-date-wrap {
  margin-bottom: 8px;
}

.batch-date-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 2px;
}

.batch-date {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin: 0;
}

.batch-deadline {
  font-size: 0.84375rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.batch-action {
  margin-top: auto;
}

/* ==========================================================================
   08 & 19. LEARN BY DOING (2-COLUMN STICKY DESKTOP, NATURAL MOBILE)
   ========================================================================== */
.doing-section {
  background: var(--bg-canvas);
}

.doing-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .doing-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
}

/* Left Sticky Stages Navigation */
.doing-nav-col {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

@media (max-width: 960px) {
  .doing-nav-col {
    position: static;
    width: 100%;
  }
}

.doing-stages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 960px) {
  .doing-stages-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .doing-stages-list {
    grid-template-columns: 1fr;
  }
}

.doing-stage-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 14px;
}

.doing-stage-btn.active {
  background: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.doing-stage-btn.active .stage-btn-num {
  background: var(--grad-brand);
  color: #FFFFFF;
}

.stage-btn-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F4F6;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.stage-btn-info h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}

.stage-btn-info p {
  font-size: 0.75rem;
  color: inherit;
  opacity: 0.8;
}

/* Right Content Displays (Scroll-Spy) */
.doing-content-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.doing-stage-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.doing-stage-card.highlighted {
  border-color: rgba(217, 38, 98, 0.4);
  box-shadow: var(--shadow-lg);
}

.doing-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-fine);
}

.doing-stage-header-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doing-stage-pill {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-magenta);
}

.doing-stage-header h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.doing-stage-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.doing-stage-visual-box {
  background: var(--bg-canvas-alt);
  border: 1px solid var(--border-fine);
  border-radius: var(--radius-md);
  padding: 16px;
  overflow: hidden;
}

.doing-stage-visual-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xs);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-xs);
}

.doing-annotation-box {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(217, 38, 98, 0.05);
  border-left: 3px solid var(--color-magenta);
  font-size: 0.8125rem;
  color: var(--text-main);
}

/* ==========================================================================
   09. REAL WORK / PORTFOLIO PROOF (MAJOR PROOF SECTION)
   ========================================================================== */
.work-section,
#real-work {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-fine);
  border-bottom: 1px solid var(--border-fine);
  scroll-margin-top: calc(var(--nav-height) + 24px);
  position: relative;
}

.section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 960px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.work-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: #94A3B8;
  box-shadow: var(--shadow-lg);
}

.work-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #18181B;
}

.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}
.work-card:hover .work-card-img {
  transform: scale(1.04);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 20, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}
.work-card:hover .work-card-overlay {
  opacity: 1;
}

.work-view-badge {
  background: var(--bg-surface);
  color: var(--text-main);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
}

.work-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-magenta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.work-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.work-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.work-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-fine);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
}

.work-card-footer span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-magenta);
}

/* ==========================================================================
   10. STUDENT VOICES / SUPPORTED WORK (IMAGE-LED CARDS)
   ========================================================================== */
.student-voices-section {
  background: var(--bg-canvas-alt);
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.student-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.student-work-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.student-work-card:hover {
  transform: translateY(-4px);
  border-color: #94A3B8;
  box-shadow: var(--shadow-lg);
}

.student-work-media {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: #0A0F1D;
}

.student-work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.student-work-card:hover .student-work-img {
  transform: scale(1.03);
}

.student-work-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 29, 0.96) 0%,
    rgba(10, 15, 29, 0.88) 32%,
    rgba(10, 15, 29, 0.48) 60%,
    rgba(10, 15, 29, 0.15) 100%
  );
  pointer-events: none;
  transition: background 0.3s ease;
}

.student-work-card:hover .student-work-scrim {
  background: linear-gradient(
    to top,
    rgba(10, 15, 29, 0.98) 0%,
    rgba(10, 15, 29, 0.92) 36%,
    rgba(10, 15, 29, 0.58) 65%,
    rgba(10, 15, 29, 0.22) 100%
  );
}

.student-work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 2;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .student-work-overlay {
    padding: 18px;
  }
}

.student-work-top {
  display: flex;
  align-items: flex-start;
}

.student-work-period {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.student-work-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.student-work-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.student-work-context {
  font-size: 0.875rem;
  color: #E2E8F0;
  margin: 0 0 16px 0;
  line-height: 1.45;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.student-work-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.student-work-btn:hover {
  background: #FFFFFF;
  color: #0F172A;
  border-color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.student-work-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.student-work-btn:hover .student-work-arrow {
  transform: translateX(4px);
}

.proof-section {
  background: var(--bg-canvas-alt);
}

.proof-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 800px) {
  .proof-cards-grid {
    grid-template-columns: 1fr;
  }
}

.proof-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.proof-quote-icon {
  color: rgba(217, 38, 98, 0.2);
  margin-bottom: 16px;
}

.proof-quote-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 24px;
  font-style: italic;
}

.proof-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-fine);
}

.proof-author-info h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

.proof-author-info p {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

.proof-work-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-magenta);
  display: flex;
  align-items: center;
  gap: 4px;
}
.proof-work-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   11 & 12. MEET YOUR MENTORS
   ========================================================================== */
.mentors-section {
  background: var(--bg-surface);
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 880px) {
  .mentors-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.mentor-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: all var(--transition-smooth);
}

@media (max-width: 600px) {
  .mentor-card {
    grid-template-columns: 1fr;
  }
}

.mentor-card:hover {
  transform: translateY(-4px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}

.mentor-photo-wrap {
  position: relative;
  background: #E2E8F0;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.mentor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-smooth);
}
.mentor-card:hover .mentor-photo {
  transform: scale(1.03);
}

.mentor-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-role-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-magenta);
  margin-bottom: 6px;
}

.mentor-name {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
}

.mentor-exp {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.mentor-skills-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
  margin-bottom: 8px;
}

.mentor-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* Mentor Positioning Banner */
.mentor-philosophy-banner {
  background: var(--bg-canvas-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.mentor-philosophy-banner h4 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.mentor-philosophy-banner p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   12. COMMUNITY SECTION
   ========================================================================== */
.community-section {
  background: var(--bg-canvas);
  position: relative;
  overflow: hidden;
}

.community-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 880px) {
  .community-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    text-align: center;
  }
}

.community-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .community-actions {
    flex-direction: column;
    width: 100%;
  }
  .community-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.community-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}

.community-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   13. FINAL CTA
   ========================================================================== */
.final-cta-section {
  background: var(--text-main);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 108px 0;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 38, 98, 0.25) 0%, rgba(255, 107, 53, 0.15) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.final-cta-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.final-cta-desc {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin-bottom: 12px;
}

.final-cta-subdesc {
  font-size: 0.9375rem;
  color: #94A3B8;
  max-width: 640px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ==========================================================================
   14. FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--bg-canvas);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  background: none;
  cursor: pointer;
}

@media (max-width: 640px) {
  .faq-trigger {
    padding: 16px 18px 12px 18px;
    font-size: 0.9375rem;
  }
}

.faq-trigger-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
  color: var(--color-magenta);
  flex-shrink: 0;
}

.faq-item.open .faq-trigger-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-content {
  padding: 0 24px;
}

@media (max-width: 640px) {
  .faq-content {
    padding: 0 18px;
  }
  .faq-item.open .faq-content {
    padding: 0 18px;
  }
}

.faq-answer {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-bottom: 28px;
}

@media (max-width: 640px) {
  .faq-answer {
    padding-bottom: 24px;
  }
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand-col {
  max-width: 360px;
}

.footer-logo {
  height: 40px;
  width: auto;
  aspect-ratio: 262 / 136;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-nav-col h5 {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.footer-link:hover {
  color: var(--color-magenta);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border-fine);
  font-size: 0.8125rem;
  color: var(--text-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   MODALS (WAITLIST, CURRICULUM PREVIEW, PROJECT MODAL)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 20, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-card-lg {
  max-width: 900px;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all var(--transition-fast);
  z-index: 10;
}
.modal-close-btn:hover {
  background: #E5E7EB;
  transform: rotate(90deg);
}

.modal-header {
  padding: 32px 32px 16px 32px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.modal-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.modal-body {
  padding: 16px 32px 32px 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-magenta);
  box-shadow: 0 0 0 3px rgba(217, 38, 98, 0.12);
}

/* Single-select Support Option Radio Cards */
.support-options-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.support-option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-canvas);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
  position: relative;
}

.support-option-label:hover {
  border-color: rgba(217, 38, 98, 0.4);
  background: var(--bg-surface);
}

.support-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.support-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.support-radio-custom::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-magenta);
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-radio-input:checked + .support-radio-custom {
  border-color: var(--color-magenta);
}

.support-radio-input:checked + .support-radio-custom::after {
  transform: scale(1);
}

.support-option-label:has(.support-radio-input:checked) {
  border-color: var(--color-magenta);
  background: rgba(217, 38, 98, 0.04);
}

.support-option-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Confirmation State Container */
.confirmation-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalFadeIn 0.3s ease-out;
}

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

.confirmation-header {
  text-align: left;
}

.confirmation-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.confirmation-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.confirmation-action-card {
  background: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.confirmation-action-question {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

.confirmation-community-card {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.06) 0%, rgba(107, 33, 168, 0.04) 100%);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirmation-community-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.confirmation-community-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

.confirmation-community-text {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.confirmation-community-btn {
  align-self: flex-start;
  background: #121214;
  color: #FFFFFF;
}

@media (max-width: 540px) {
  .confirmation-action-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .confirmation-action-btn,
  .confirmation-community-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Success notification toast */
.toast-msg {
  display: none;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.toast-msg.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Form error notification */
.form-error-alert {
  display: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 10px;
  margin-bottom: 6px;
}
.form-error-alert.show {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-error-alert svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   ACCESSIBILITY & PREFERS-REDUCED-MOTION
   ========================================================================== */
:focus-visible {
  outline: 3px solid var(--color-magenta);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
