/* Style Sheets for Python Developer Cohort website */

/* Fonts loaded non-blocking in HTML head */

/* Color Variables */
:root {
  /* Spacing Grid (8px Base) */
  --space-0-5: 4px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;

  /* Theme Defaults (Corporate Pro-Dark Theme matching DESIGN.md) */
  --bg-primary: #11131b;
  --bg-secondary: #020617;
  --bg-tertiary: #0F172A;
  --card-bg: rgba(15, 23, 42, 0.95);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-shadow: rgba(0, 0, 0, 0.4);

  --text-primary: #e1e2ed;
  --text-secondary: #c3c6d7;
  --text-muted: #94a3b8;

  --accent-primary: #2563eb;
  --accent-secondary: #22c55e;
  --accent-tertiary: #f59e0b;
  --accent-highlight: #7bd0ff;
  --accent-glow: rgba(37, 99, 235, 0.15);
  --accent-glow-green: rgba(34, 197, 94, 0.15);

  --whatsapp-bg: #25d366;
  --whatsapp-text: #ffffff;
  --whatsapp-shadow: rgba(37, 211, 102, 0.3);

  --navbar-bg: rgba(17, 19, 27, 0.85);
  --terminal-header: #1E293B;
  --terminal-bg: #020617;
  /* Keep terminal dark for contrast */
  --input-bg: rgba(255, 255, 255, 0.03);

  --btn-primary-bg: #1d4ed8;
  --btn-primary-text: #ffffff;
  --btn-secondary-bg: #1E293B;
  --btn-secondary-text: #e1e2ed;
  --btn-secondary-border: rgba(255, 255, 255, 0.12);

  /* Fonts dual-strategy */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Border Radii (Aligned to 8px spacing system) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles & Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Grid & Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section-padding {
  padding: var(--space-10) 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: var(--space-12) 0;
  }
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--card-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--card-border);
  box-shadow: 0 15px 35px -10px var(--card-shadow), 0 5px 15px -5px rgba(15, 23, 42, 0.04);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  /* GPU Layer Acceleration for butter-smooth scrolling */
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--navbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
  /* GPU Layer Acceleration to prevent scroll-repaint stutter */
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.logo-text {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  transition: font-size var(--transition-fast);
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), height var(--transition-fast);
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

.logo-footer {
  margin-bottom: var(--space-2);
}

/* Mobile responsive logo and header */
@media (max-width: 767px) {
  .logo-text {
    font-size: 1.25rem;
  }

  .logo-img {
    height: 32px;
  }

  .navbar {
    height: 64px;
    /* 64px tall header on mobile is much cleaner than 80px */
  }

  .mobile-drawer {
    top: 64px;
    height: calc(100vh - 64px);
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-4);
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-actions .open-modal-btn {
  display: none;
}

@media (min-width: 768px) {
  .nav-actions .open-modal-btn {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px var(--space-3);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-normal);
  border: none;
  gap: var(--space-1);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
  background: #1e40af; /* Darker blue on hover */
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
  transform: translateY(-1px);
}

.btn-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border: 1px solid var(--btn-secondary-border);
}

.btn-secondary:hover {
  background: var(--input-bg);
  transform: translateY(-1px);
}

.btn-sm {
  padding: var(--space-1) var(--space-2);
  font-size: 0.85rem;
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-drawer {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: calc(100vh - 80px);
  background: #0b1a3d; /* Dark navy blue background */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: 99;
  transition: right var(--transition-normal);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-drawer .nav-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff; /* White text so links are always visible */
  padding: var(--space-1.5) var(--space-2);
  border-radius: var(--radius-md);
  display: block;
  transition: all var(--transition-fast);
}

.mobile-drawer .nav-link:hover,
.mobile-drawer .nav-link.active {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa; /* Light blue accent on hover */
  padding-left: var(--space-3);
}

/* Hero Section */
/* Hero Section & Text Container with Canvas */
.hero {
  position: relative;
  padding-top: calc(80px + var(--space-6));
  padding-bottom: var(--space-10);
  background-image: radial-gradient(circle at 10% 20%, var(--accent-glow) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, var(--accent-glow-green) 0%, transparent 40%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: start; /* Align left column text and right column card at the top */
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-6);
  }
}

.hero-text-container {
  position: relative;
  width: 100%;
}

#hero-particles-canvas {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: 1;
  pointer-events: none;
}

.hero-tag,
.animate-title,
.hero-subtitle,
.hero-bullet-points,
.hero-actions,
.hero-trust {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-0-5);
  background: var(--accent-glow);
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(59, 130, 246, 0.15);
  margin-bottom: var(--space-2);
}

/* Headline Reveal Animations & Gradient Highlights */
.animate-title {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: 2rem; /* Mobile: 32px (display-lg-mobile) */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .animate-title {
    font-size: 3rem; /* Desktop: 48px (display-lg) */
    line-height: 1.1;
  }
}

.title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 8px;
  /* Consistent 8px spacing standard */
}

/* Individual Word Kinetic Typography Animations */
.hero-word {
  display: inline-block;
  opacity: 0;
  animation-fill-mode: forwards !important;
}

.hero-period {
  display: inline-block;
  opacity: 0;
  animation: word-blur-in 0.5s ease-out 1.2s forwards;
}

/* Chalk Underline Animation for "Guaranteed" */
.chalk-underline-wrapper {
  position: relative;
  display: inline-block;
}

.chalk-underline {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 12px;
  overflow: visible;
  pointer-events: none;
}

.chalk-underline path {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: draw-chalk 3.5s infinite ease-in-out;
  filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.45));
}

@keyframes draw-chalk {
  0% {
    stroke-dashoffset: 150;
  }
  42% {
    stroke-dashoffset: 0;
  }
  58% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 150;
  }
}

.w-building {
  animation: word-slide-up 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s forwards;
}

.w-coders {
  animation: word-bounce 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.w-who {
  animation: word-blur-in 0.7s ease-out 0.5s forwards;
}

.w-shape {
  animation: word-flip-x 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.w-the {
  animation: word-drop-down 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards;
}

.w-future {
  animation: word-slide-left-glow 1.1s cubic-bezier(0.25, 1, 0.5, 1) 1.0s forwards;
}

@keyframes word-slide-up {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes word-bounce {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes word-blur-in {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateX(-12px);
  }

  100% {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@keyframes word-flip-x {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes word-drop-down {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes word-slide-left-glow {
  0% {
    opacity: 0;
    transform: translateX(25px);
    filter: drop-shadow(0 0 0px #2563eb);
  }

  60% {
    opacity: 1;
    transform: translateX(0);
    filter: drop-shadow(0 0 10px #2563eb);
  }

  100% {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.highlight-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.highlight-green {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.highlight-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #be185d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  transition: all var(--transition-fast);
}

.role-cursor {
  font-weight: 300;
  color: var(--accent-highlight);
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
  max-width: 580px;
  opacity: 0;
  transform: translateY(15px);
  filter: blur(4px);
  animation: revealSubtitle 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
}

@keyframes revealSubtitle {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-bullet-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero-bullet-points li {
  display: flex;
  align-items: center;
  gap: var(--space-0-5);
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--btn-secondary-bg);
  padding: var(--space-0-5) var(--space-2);
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
}

.hero-bullet-points li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--card-border);
  padding-top: var(--space-3);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-text strong {
  color: var(--text-primary);
}

/* IDE / Python Shell Simulator Container */
.terminal-window {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.terminal-header {
  height: 40px;
  background-color: var(--terminal-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-2);
  user-select: none;
}

.terminal-buttons {
  display: flex;
  gap: 6px;
}

.terminal-btn {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
}

.terminal-btn.close {
  background-color: #ef4444;
}

.terminal-btn.minimize {
  background-color: #eab308;
}

.terminal-btn.maximize {
  background-color: #22c55e;
}

.terminal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.terminal-body {
  background-color: var(--terminal-bg);
  padding: var(--space-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: #fff;
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-0-5);
  box-shadow: inset 0 20px 30px rgba(0, 0, 0, 0.5);
}

.terminal-line {
  display: flex;
  align-items: flex-start;
  gap: var(--space-1);
}

.terminal-prompt {
  color: var(--accent-highlight);
  user-select: none;
  font-weight: bold;
}

.terminal-content {
  flex-grow: 1;
  white-space: pre-wrap;
  word-break: break-all;
}

.terminal-output {
  color: #10b981;
  /* Success Green */
  padding-left: var(--space-3);
  margin-bottom: var(--space-1);
}

.terminal-error {
  color: #f87171;
  /* Rose red error */
  padding-left: var(--space-3);
  margin-bottom: var(--space-1);
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: #fff;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.terminal-action-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-1);
}

.terminal-controls {
  display: flex;
  gap: var(--space-1);
}

.terminal-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Sections Common Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-6);
}

.section-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-1);
}

.section-title {
  font-size: 2rem;
  margin-bottom: var(--space-1.5);
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* Program Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  padding: 24px;
  /* Consistent 8px spacing grid standard */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 24px;
  overflow: hidden;
  min-height: 330px;
}

.highlight-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: reveal-title 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reveal-title {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Highlights Mini Simulator Animation Frames */
.card-animation-frame {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 1. 3D Rocket Outcomes Simulator */
.rocket-scene-3d {
  position: relative;
  width: 170px;
  height: 130px;
  transform-style: preserve-3d;
  transform: rotateX(24deg) rotateY(-14deg);
  animation: rocket-scene-tilt 8s infinite alternate ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes rocket-scene-tilt {
  0% {
    transform: rotateX(18deg) rotateY(-10deg);
  }

  100% {
    transform: rotateX(30deg) rotateY(-18deg);
  }
}

.coder-student {
  position: absolute;
  left: 20px;
  bottom: 20px;
  transform-style: preserve-3d;
  transform: translateZ(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coder-student .avatar-head {
  width: 16px;
  height: 16px;
  background: #64748b;
  border-radius: 50%;
}

.coder-student .avatar-body {
  width: 26px;
  height: 18px;
  background: #475569;
  border-radius: 4px 4px 0 0;
  margin-top: 1px;
}

.student-desk-line {
  width: 36px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 1px;
  margin-top: 2px;
}

/* 3D Launching Rocket */
.outcome-rocket {
  position: absolute;
  width: 18px;
  height: 36px;
  transform-style: preserve-3d;
  animation: rocket-launch 4s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.rocket-body {
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #ef4444, #f97316);
  border-radius: 9px 9px 2px 2px;
  position: relative;
}

.rocket-wing-l,
.rocket-wing-r {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 12px;
  background: #b91c1c;
}

.rocket-wing-l {
  left: -5px;
  border-radius: 3px 0 0 1px;
}

.rocket-wing-r {
  right: -5px;
  border-radius: 0 3px 1px 0;
}

.rocket-fire {
  position: absolute;
  bottom: -12px;
  left: 5px;
  width: 8px;
  height: 12px;
  background: #facc15;
  border-radius: 0 0 3px 3px;
  animation: fire-flicker 0.2s infinite alternate;
}

@keyframes fire-flicker {
  0% {
    transform: scaleY(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scaleY(1.3);
    opacity: 1;
  }
}

@keyframes rocket-launch {
  0% {
    left: 32px;
    bottom: 32px;
    transform: translateZ(12px) scale(0.4) rotate(15deg);
    opacity: 0;
  }

  15% {
    opacity: 1;
    transform: translateZ(20px) scale(0.9) rotate(0deg);
  }

  50% {
    left: 95px;
    bottom: 95px;
    transform: translateZ(50px) scale(1.1) rotate(-15deg);
    opacity: 1;
  }

  65%,
  100% {
    left: 115px;
    bottom: 145px;
    transform: translateZ(70px) scale(0.8) rotate(-25deg);
    opacity: 0;
  }
}

.launch-bubble {
  position: absolute;
  right: 5px;
  top: 15px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  animation: bubble-float 4s infinite;
  white-space: nowrap;
}

@keyframes bubble-float {

  0%,
  45% {
    opacity: 0;
    transform: translateY(10px) scale(0.8);
  }

  50%,
  80% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  90%,
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.9);
  }
}

/* 2. 3D Scanning Classroom Table (Strictly 4 Students Max) */
.attention-classroom-3d {
  position: relative;
  width: 170px;
  height: 135px;
  transform-style: preserve-3d;
  transform: rotateX(28deg) rotateZ(-20deg);
  animation: table-drift 8s infinite alternate ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes table-drift {
  0% {
    transform: rotateX(24deg) rotateZ(-10deg);
  }

  100% {
    transform: rotateX(32deg) rotateZ(-30deg);
  }
}

.classroom-teacher {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateZ(20px);
}

.classroom-teacher .avatar-head {
  width: 16px;
  height: 16px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.classroom-teacher .avatar-body {
  width: 26px;
  height: 18px;
  background: #1d4ed8;
  border-radius: 4px 4px 0 0;
  margin-top: 1px;
}

.classroom-teacher .avatar-tag {
  font-family: var(--font-display);
  font-size: 0.42rem;
  font-weight: 800;
  color: #3b82f6;
  margin-top: 2px;
}

.active-radar {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.35);
  animation: radar-pulse 2s infinite ease-out;
}

@keyframes radar-pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.student-desk {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateZ(10px);
}

.student-desk .avatar-head {
  width: 12px;
  height: 12px;
  background: #64748b;
  border-radius: 50%;
}

.student-desk .avatar-body {
  width: 20px;
  height: 14px;
  background: #475569;
  border-radius: 3px 3px 0 0;
  margin-top: 1px;
}

.student-desk .seat-num {
  font-family: var(--font-display);
  font-size: 0.42rem;
  font-weight: 800;
  color: #94a3b8;
  margin-top: 1px;
}

.student-desk.s1 {
  top: 48px;
  left: 22px;
}

.student-desk.s2 {
  top: 48px;
  right: 22px;
}

.student-desk.s3 {
  bottom: 22px;
  left: 32px;
}

.student-desk.s4 {
  bottom: 22px;
  right: 32px;
}

/* Attention flow review indicator */
.attention-flow {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  color: #10b981;
  text-shadow: 0 0 6px #10b981;
  z-index: 20;
  animation: review-scan 6s infinite ease-in-out;
}

@keyframes review-scan {

  0%,
  100% {
    left: 28px;
    top: 58px;
    transform: translateZ(12px) scale(0.5);
    opacity: 0;
  }

  12% {
    opacity: 1;
    transform: translateZ(22px) scale(1.1);
  }

  24% {
    opacity: 0;
  }

  25% {
    left: 125px;
    top: 58px;
    transform: translateZ(12px) scale(0.5);
    opacity: 0;
  }

  37% {
    opacity: 1;
    transform: translateZ(22px) scale(1.1);
  }

  49% {
    opacity: 0;
  }

  50% {
    left: 38px;
    top: 98px;
    transform: translateZ(12px) scale(0.5);
    opacity: 0;
  }

  62% {
    opacity: 1;
    transform: translateZ(22px) scale(1.1);
  }

  74% {
    opacity: 0;
  }

  75% {
    left: 115px;
    top: 98px;
    transform: translateZ(12px) scale(0.5);
    opacity: 0;
  }

  87% {
    opacity: 1;
    transform: translateZ(22px) scale(1.1);
  }

  99% {
    opacity: 0;
  }
}

/* Desk glow effect as scanner hits each desk */
.student-desk.s1 {
  animation: d1-glow 6s infinite;
}

.student-desk.s2 {
  animation: d2-glow 6s infinite;
}

.student-desk.s3 {
  animation: d3-glow 6s infinite;
}

.student-desk.s4 {
  animation: d4-glow 6s infinite;
}

@keyframes d1-glow {

  0%,
  24% {
    filter: drop-shadow(0 0 6px #10b981);
  }

  25%,
  100% {
    filter: none;
  }
}

@keyframes d2-glow {

  25%,
  49% {
    filter: drop-shadow(0 0 6px #10b981);
  }

  0%,
  24%,
  50%,
  100% {
    filter: none;
  }
}

@keyframes d3-glow {

  50%,
  74% {
    filter: drop-shadow(0 0 6px #10b981);
  }

  0%,
  49%,
  75%,
  100% {
    filter: none;
  }
}

@keyframes d4-glow {

  75%,
  99% {
    filter: drop-shadow(0 0 6px #10b981);
  }

  0%,
  74%,
  100% {
    filter: none;
  }
}

/* 3. 3D Professional Workspace Simulator */
.setup-workspace-3d {
  position: relative;
  width: 170px;
  height: 130px;
  transform-style: preserve-3d;
  transform: rotateX(24deg) rotateY(-12deg);
  animation: setup-scene-drift 6s infinite alternate ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes setup-scene-drift {
  0% {
    transform: rotateX(18deg) rotateY(-8deg);
  }

  100% {
    transform: rotateX(30deg) rotateY(-16deg);
  }
}

.workspace-programmer {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateZ(28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.workspace-programmer .avatar-head {
  position: relative;
  width: 20px;
  height: 20px;
  background: #64748b;
  border-radius: 50%;
}

.workspace-programmer .headsets {
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  right: -2.5px;
  height: 12px;
  border: 2px solid #3b82f6;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
}

.workspace-programmer .headsets::before,
.workspace-programmer .headsets::after {
  content: '';
  position: absolute;
  bottom: -3px;
  width: 4px;
  height: 7px;
  background: #2563eb;
  border-radius: 1px;
}

.workspace-programmer .headsets::before {
  left: -1px;
}

.workspace-programmer .headsets::after {
  right: -1px;
}

.workspace-programmer .avatar-body {
  width: 32px;
  height: 24px;
  background: #475569;
  border-radius: 6px 6px 0 0;
  margin-top: 1px;
}

/* Idea lightbulb container */
.idea-lightbulb-container {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) translateZ(40px);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 15;
}

.idea-lightbulb {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.8));
  animation: bulb-float-glowing 3.5s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.idea-glow-ring {
  position: absolute;
  border: 2px solid rgba(250, 204, 21, 0.45);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: ring-expand 3.5s infinite ease-out;
}

/* Keyframes for Idea breakthrough */
@keyframes bulb-float-glowing {
  0% {
    transform: translateY(22px) scale(0.3);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(250, 204, 21, 0));
  }
  20% {
    opacity: 1;
    transform: translateY(4px) scale(1.05);
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.65));
  }
  50% {
    transform: translateY(-16px) scale(1.22);
    filter: drop-shadow(0 0 22px rgba(250, 204, 21, 0.95));
  }
  80%, 100% {
    transform: translateY(-38px) scale(0.85);
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(250, 204, 21, 0));
  }
}

@keyframes ring-expand {
  0%, 20% {
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
    border-color: rgba(250, 204, 21, 0.6);
  }
  85%, 100% {
    transform: scale(1.95);
    opacity: 0;
  }
}

/* Workspace screens and monitor layout */
.workspace-screens {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateZ(10px);
  display: flex;
  gap: 16px;
  transform-style: preserve-3d;
}

.workspace-screens .screen {
  width: 58px;
  height: 44px;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  padding: 4px;
}

.workspace-screens .monitor-left {
  transform: rotateY(20deg);
}

.workspace-screens .monitor-right {
  transform: rotateY(-20deg);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
}

.screen-content-lines {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom,
      #3b82f6 15%, transparent 15%,
      transparent 30%, #10b981 30%,
      #10b981 45%, transparent 45%,
      transparent 60%, #cbd5e1 60%,
      #cbd5e1 75%, transparent 75%);
  background-size: 100% 8px;
  opacity: 0.85;
}

.gear-badge {
  position: absolute;
  font-size: 0.95rem;
  opacity: 0.85;
  animation: gear-spin 5s infinite linear;
}

.gear-badge.g1 {
  top: 12px;
  left: 16px;
  animation-duration: 6s;
}

.gear-badge.g2 {
  top: 28px;
  right: 14px;
  animation-duration: 4s;
  animation-direction: reverse;
}

@keyframes gear-spin {
  0% {
    transform: translateZ(35px) rotate(0deg);
  }

  100% {
    transform: translateZ(35px) rotate(360deg);
  }
}

/* Premium Catalog Card Layout and Shine Effects */
.highlight-card {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

/* Diagonal reflection shine effect (two separate white shiny lines in slow motion) */
.highlight-card::after {
  display: none; /* Removed infinite shiny sweep reflection to resolve scroll paint lag */
}

@keyframes card-shine-sweep {
  0% {
    left: -150%;
  }

  80% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.highlight-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(59, 130, 246, 0.45) !important;
  box-shadow: 0 20px 45px -10px rgba(59, 130, 246, 0.12), 0 8px 24px -10px rgba(59, 130, 246, 0.08) !important;
}

.highlight-card:hover::before {
  opacity: 1;
}

/* Card layout specific helpers */
.cohort-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  width: 100%;
}

.cohort-header-left {
  flex: 1;
  text-align: left;
}

.cohort-header-right {
  text-align: right;
  flex-shrink: 0;
}

.cohort-badge-row {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
  margin-bottom: var(--space-1);
}

.highlight-card h3.cohort-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
  text-align: left;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--text-primary);
  opacity: 1;
  transform: none;
  animation: none;
  display: block;
}

.cohort-card-subtitle {
  color: var(--text-secondary);
  margin-top: 6px;
  font-size: 1.02rem;
  font-weight: 500;
  text-align: left;
}

.cohort-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1.1;
  display: block;
  font-family: var(--font-display);
}

.cohort-price-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cohort-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}

.cohort-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-top: var(--space-1);
  justify-content: flex-start;
}

.cohort-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-2);
  border-top: 1px solid var(--card-border);
  padding-top: var(--space-3);
  flex-wrap: wrap;
  gap: var(--space-2);
  width: 100%;
}

@media (max-width: 640px) {
  .cohort-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .cohort-header-right {
    text-align: left;
    margin-top: var(--space-1);
  }

  .cohort-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
  }

  .cohort-card-footer .pricing-spots-ticker {
    text-align: center;
  }
}

.highlight-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-1);
}

.highlight-card:nth-child(even) .highlight-icon-wrapper {
  background: var(--accent-glow-green);
  color: var(--accent-secondary);
}

.highlight-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Ideal For Grid & Target Box */
.ideal-section {
  background: var(--bg-tertiary);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  border: 1px solid var(--card-border);
}

@media (min-width: 768px) {
  .ideal-section {
    padding: var(--space-5);
  }
}

.ideal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .ideal-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.ideal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ideal-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.ideal-item-icon {
  margin-top: 4px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--accent-glow);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.ideal-item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-0-5);
}

.ideal-item-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ideal-showcase {
  text-align: center;
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
}

.ideal-showcase-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: var(--space-2);
  color: var(--accent-primary);
}

.ideal-showcase-p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

/* Curriculum Section Styling */
.curriculum-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .curriculum-layout {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
}

.month-selectors {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: var(--space-1);
  padding-bottom: var(--space-1);
  position: sticky;
  top: 96px;
  z-index: 10;
}

@media (min-width: 1024px) {
  .month-selectors {
    flex-direction: column;
    overflow-x: visible;
    padding-bottom: 0;
  }
}

.month-btn {
  flex: 1 0 auto;
  text-align: left;
  padding: var(--space-2);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.month-btn.active {
  background: var(--btn-primary-bg);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.month-btn-num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.month-btn.active .month-btn-num {
  color: #fff;
}

.month-btn-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.month-btn.active .month-btn-title {
  color: #fff;
}

/* Timeline/Accordion Detail Cards */
.curriculum-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.week-accordion {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--card-bg);
  transition: border-color var(--transition-normal);
}

.week-accordion.open {
  border-color: rgba(59, 130, 246, 0.3);
}

.week-header {
  padding: var(--space-2) var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color var(--transition-fast);
}

.week-header:hover {
  background-color: var(--input-bg);
}

.week-title-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.week-number-badge {
  background: var(--accent-glow);
  color: var(--accent-primary);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.week-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.week-icon {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.week-accordion.open .week-icon {
  transform: rotate(180deg);
  color: var(--accent-primary);
}

.week-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
}

.week-accordion.open .week-content {
  grid-template-rows: 1fr;
}

.week-content-inner {
  overflow: hidden;
  padding: 0 var(--space-3) var(--space-3);
  border-top: 1px solid var(--card-border);
}

.classes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding-top: var(--space-2);
}

@media (min-width: 768px) {
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.class-card {
  padding: var(--space-2);
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
}

.class-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-1);
  border-bottom: 1px solid var(--card-border);
  padding-bottom: var(--space-0-5);
}

.class-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-secondary);
  background: var(--accent-glow-green);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.class-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.class-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.class-topics li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.class-topics li::before {
  content: "→";
  color: var(--accent-primary);
  font-weight: bold;
}

/* Portfolio Projects Showcase Section */
.projects-showcase {
  position: relative;
}

.projects-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.project-tab-btn {
  padding: 8px 16px;
  background: var(--btn-secondary-bg);
  color: var(--text-secondary);
  border: 1px solid var(--btn-secondary-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.project-tab-btn:hover {
  background: var(--input-bg);
  color: var(--text-primary);
}

.project-tab-btn.active {
  background: var(--accent-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.project-details-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 768px) {
  .project-details-panel {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-6);
  }
}

.project-desc-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.project-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.project-badge.live-built {
  background: var(--accent-glow-green);
  color: var(--accent-secondary);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.project-badge.guided {
  background: var(--accent-glow);
  color: var(--accent-primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.project-name {
  font-size: 2rem;
  font-weight: 800;
}

.project-desc {
  font-size: 1rem;
  color: var(--text-secondary);
}

.project-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  list-style: none;
}

.project-tech-tag {
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-family: 'JetBrains Mono', monospace;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
}

.project-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: var(--space-1);
}

.project-features-list li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.95rem;
}

.project-features-list li svg {
  color: var(--accent-secondary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Custom Interactive Visual Frame of the Python App inside website */
.app-visual-wrapper {
  perspective: 1000px;
}

.app-visual-frame {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  background-color: var(--bg-secondary);
  transition: transform var(--transition-slow);
  transform: rotateY(-5deg) rotateX(5deg);
  position: relative;
}

.app-visual-frame:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.app-frame-header {
  height: 32px;
  background-color: var(--terminal-header);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  padding: 0 var(--space-2);
  gap: var(--space-1);
}

.app-frame-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-left: var(--space-1);
}

.app-frame-body {
  height: calc(100% - 32px);
  background-color: #e2e8f0;
  /* Light workspace canvas styling */
  position: relative;
  overflow: hidden;
}

/* Canvas drawing visual simulation */
.canvas-draw-visual {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

.canvas-toolbar {
  height: 40px;
  border-bottom: 1px solid #e2e8f0;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.canvas-colors {
  display: flex;
  gap: 6px;
}

.canvas-color-dot {
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
}

.canvas-area {
  flex-grow: 1;
  position: relative;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 16px 16px;
}

/* ToDo visual simulation */
.todo-visual {
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: #f8fafc;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.todo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 6px;
}

.todo-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.todo-item-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid #e2e8f0;
}

.todo-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
}

.todo-checkbox.checked {
  background-color: #10b981;
  border-color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
}

.todo-item-text.done {
  text-decoration: line-through;
  color: #94a3b8;
}

/* Weather App Simulation */
.weather-visual {
  width: 100%;
  height: 100%;
  padding: 20px;
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.weather-city {
  font-size: 1.5rem;
  font-weight: 800;
}

.weather-temp {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.weather-icon-cloudy {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.weather-details {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-md);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Network App Simulation */
.lan-visual {
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: #0f172a;
  color: #38bdf8;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lan-console {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
}

.lan-progress-bar {
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  overflow: hidden;
}

.lan-progress-fill {
  height: 100%;
  background: #38bdf8;
  width: 65%;
  animation: progressPulse 2s linear infinite;
}

@keyframes progressPulse {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

/* Invoice App Simulation */
.invoice-visual {
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.invoice-header-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 6px;
}

.invoice-table {
  width: 100%;
  border-collapse: collapse;
}

.invoice-table th,
.invoice-table td {
  padding: 4px 0;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}

.invoice-total {
  align-self: flex-end;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 10px;
}

/* Class Format, Batch Limits & Pricing */
.class-format-section {
  position: relative;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .format-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

.format-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
}

.format-bullet-card {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

.format-bullet-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--accent-glow);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.format-bullet-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.format-bullet-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-box {
  padding: var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: white;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}

.pricing-spots-ticker {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.pricing-price-row {
  margin: var(--space-2) 0;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-features-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin: var(--space-2) 0 var(--space-3);
  text-align: left;
  width: 100%;
}

.pricing-features-checklist li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.95rem;
}

.pricing-features-checklist li svg {
  color: var(--accent-secondary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* FAQ Accordion Styling */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--card-bg);
}

.faq-accordion.open {
  border-color: rgba(59, 130, 246, 0.3);
}

.faq-header {
  padding: var(--space-2) var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header:hover {
  background-color: var(--input-bg);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: transform var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-accordion.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-primary);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition-normal);
}

.faq-accordion.open .faq-content {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  overflow: hidden;
  padding: 0 var(--space-3) var(--space-2);
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--card-border);
}

/* Modal Booking Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: var(--space-2);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 95%;
  max-width: 820px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
  max-height: 95vh;
  display: flex;
  flex-direction: column;
}

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

.modal-header {
  padding: var(--space-3) var(--space-3) var(--space-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--input-bg);
  color: var(--text-primary);
}

.modal-body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-0-5);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

/* Success modal display */
.modal-success-content {
  display: none;
  text-align: center;
  padding: var(--space-4) var(--space-3);
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.success-icon-box {
  width: 64px;
  height: 64px;
  background: var(--accent-glow-green);
  color: var(--accent-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: var(--space-1);
}

/* Footer Section */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  padding: var(--space-6) 0 var(--space-4);
}

/* On mobile, add bottom padding equal to sticky bar height so footer is not hidden behind it */
@media (max-width: 767px) {
  .footer {
    padding-bottom: 90px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-6);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-1.5);
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-links-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Animation utilities */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

/* Animated Floating Orbs in Background */
.glow-orb {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .glow-orb {
    display: none !important;
  }
}

.orb-1 {
  background-color: var(--accent-primary);
  top: 15%;
  left: 10%;
  /* Disabled drift animation to avoid heavy background repaint cost and improve scroll performance */
}

.orb-2 {
  background-color: var(--accent-secondary);
  bottom: 20%;
  right: 10%;
  /* Disabled drift animation to avoid heavy background repaint cost and improve scroll performance */
}

.orb-3 {
  background-color: var(--accent-highlight);
  top: 60%;
  left: 50%;
  /* Disabled drift animation to avoid heavy background repaint cost and improve scroll performance */
}

@keyframes driftOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(120px, 80px) scale(1.2);
  }
}

@keyframes driftOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, -120px) scale(1.1);
  }
}

@keyframes driftOrb3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-80px, 80px) scale(1.3);
  }
}

/* Removed theme overrides */

/* Card Hover Scale and Border Glow Effects */
.highlight-card {
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.highlight-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 8px 24px -8px rgba(37, 99, 235, 0.15);
}

.highlight-card:nth-child(even):hover {
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 8px 24px -8px rgba(5, 150, 105, 0.15);
}

.class-card {
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.class-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
}

.week-accordion:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-card:active {
  transform: translateY(-2px) scale(0.99);
  transition: transform var(--transition-fast);
}

.class-card:active {
  transform: translateY(-1px) scale(0.99);
  transition: transform var(--transition-fast);
}

/* Interactive Explorer List Items */
.explorer-list-item {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  line-height: 1.4;
  padding: 12px var(--space-2);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  background-color: transparent;
  transition: all var(--transition-normal);
  user-select: none;
}

.explorer-list-item:hover {
  background-color: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateX(4px) scale(1.01);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.explorer-list-item:active {
  transform: translateX(2px) scale(0.99);
}

.explorer-list-item.active {
  background-color: var(--bg-secondary);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 10px 25px -10px var(--card-shadow), 0 0 0 1px rgba(37, 99, 235, 0.08);
  transform: translateX(6px) scale(1.02);
}

.explorer-list-item.active svg {
  color: var(--accent-primary) !important;
  transform: scale(1.2);
}

/* Realtime SVG drawing animations for Canvas preview */
.draw-path-1 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.draw-path-2 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 0.8s;
}

.draw-path-3 {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawLine 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.6s;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 400;
  }

  70%,
  100% {
    stroke-dashoffset: 0;
  }
}

/* Explorer Live Grid call simulation */
.live-call-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
  height: 100%;
  background-color: #1e293b;
}

.call-avatar {
  background-color: #334155;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.call-avatar.tutor {
  grid-column: span 3;
  background-color: #0f172a;
  border-color: var(--accent-primary);
}

.avatar-initial {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
  color: var(--text-primary);
}

.avatar-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.audio-pulse {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-secondary);
  animation: audioPulse 1.5s infinite;
}

@keyframes audioPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.poll-popover {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-primary);
  border: 1px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  font-size: 0.7rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 80%;
  z-index: 10;
  animation: floatCard 2.5s infinite alternate ease-in-out;
}

@keyframes floatCard {
  0% {
    transform: translate(-50%, 0);
  }

  100% {
    transform: translate(-50%, -6px);
  }
}

/* Format timer visuals */
.clock-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: radial-gradient(circle, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: var(--space-2);
}

.clock-timer {
  font-size: 2.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  color: var(--accent-primary);
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.timeline-line-visual {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.timeline-node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #334155;
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.timeline-node-dot.active {
  background-color: var(--accent-secondary);
  box-shadow: 0 0 8px var(--accent-secondary);
}

/* Outcomes visual */
.outcomes-mockup {
  display: flex;
  flex-direction: column;
  padding: var(--space-2);
  gap: 12px;
  height: 100%;
  justify-content: center;
  background-color: #0d1117;
}

.git-contrib-mockup {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 3px;
  margin-bottom: 6px;
}

.git-square {
  aspect-ratio: 1;
  border-radius: 2px;
  background-color: #161b22;
  transition: background-color 0.5s ease;
}

.git-square.active {
  background-color: #39d353;
}

.cert-card-mockup {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid #d97706;
  /* Gold border */
  border-radius: var(--radius-md);
  padding: var(--space-1);
  text-align: center;
  font-size: 0.65rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.15);
  animation: glowGold 3s infinite alternate ease-in-out;
}

@keyframes glowGold {
  0% {
    box-shadow: 0 0 15px rgba(217, 119, 6, 0.15);
  }

  100% {
    box-shadow: 0 0 25px rgba(217, 119, 6, 0.35);
  }
}

/* Traits sliders */
.traits-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3);
  gap: 12px;
  height: 100%;
  background-color: #0f172a;
}

.trait-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trait-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.trait-bar-track {
  height: 8px;
  background-color: #1e293b;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.trait-bar-fill {
  height: 100%;
  background: var(--btn-primary-bg);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glassmorphic Developer IDE Workspace Visual */
.developer-workspace {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--card-border);
  box-shadow: 0 30px 60px -15px var(--card-shadow), 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  z-index: 2;
  transition: transform var(--transition-slow);
}

.developer-workspace:hover {
  transform: translateY(-4px);
}

.ide-header {
  height: 38px;
  background: rgba(241, 245, 249, 0.8);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-2);
  user-select: none;
}

.ide-dots {
  display: flex;
  gap: 6px;
}

.ide-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}

.ide-dot.red {
  background-color: #ef4444;
}

.ide-dot.yellow {
  background-color: #f59e0b;
}

.ide-dot.green {
  background-color: #10b981;
}

.ide-tab {
  display: flex;
  align-items: center;
  gap: var(--space-0-5);
  background: rgba(255, 255, 255, 0.85);
  border-left: 1px solid var(--card-border);
  border-right: 1px solid var(--card-border);
  border-bottom: 1px solid transparent;
  height: 100%;
  padding: 0 var(--space-2);
  margin-top: 1px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ide-actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.ide-status-pulse {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--text-muted);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.ide-status-pulse.compiling {
  background-color: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  animation: pulse-light 1.2s infinite;
}

.ide-status-pulse.running {
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse-light 1.2s infinite;
}

@keyframes pulse-light {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.ide-status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.ide-body {
  flex-grow: 1;
  display: flex;
  padding: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
}

.ide-line-numbers {
  display: flex;
  flex-direction: column;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: right;
  padding-right: var(--space-2);
  border-right: 1px solid rgba(15, 23, 42, 0.05);
  user-select: none;
}

.ide-code {
  flex-grow: 1;
  padding-left: var(--space-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-break: break-all;
  text-align: left;
}

/* Syntax Highlighting Colors for the Glassmorphic Editor */
.code-keyword {
  color: #2563eb;
  font-weight: 600;
}

.code-function {
  color: #059669;
  font-weight: 600;
}

.code-string {
  color: #ea580c;
}

.code-comment {
  color: #64748b;
  font-style: italic;
}

.code-number {
  color: #d97706;
}

.code-arg {
  color: #7c3aed;
}

/* Floating App Preview Card Layered Over the Editor */
.app-preview-floating {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-2);
  width: 220px;
  height: 180px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.18), 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  transition: transform var(--transition-normal);
  transform: rotateY(-3deg) rotateX(3deg);
}

.app-preview-floating:hover {
  transform: scale(1.02) rotateY(0deg) rotateX(0deg);
}

.preview-header {
  height: 28px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-1.5);
  font-family: var(--font-display);
}

.preview-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.preview-badge {
  font-size: 0.55rem;
  font-weight: 700;
  color: #10b981;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.preview-badge.compiling {
  color: #f59e0b;
  background-color: rgba(245, 158, 11, 0.1);
}

.preview-body {
  flex-grow: 1;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-1.5);
}

/* Animations for drawing and elements */
.draw-dot {
  position: absolute;
  border-radius: 50%;
  animation: pop-dot 0.5s ease-out forwards;
}

@keyframes pop-dot {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

}

/* Kinetic Superpower Value Pipeline Styles */
.superpower-pipeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  width: 100%;
}

.pipeline-tabs {
  display: flex;
  gap: var(--space-1);
  overflow-x: auto;
  padding-bottom: var(--space-0-5);
  scrollbar-width: none;
  /* Hide scrollbar for clean UI */
}

.pipeline-tabs::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.pipeline-tab {
  flex: 1;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  user-select: none;
  text-align: left;
}

.pipeline-tab.active {
  background: var(--accent-glow);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.pipeline-tab .tab-num {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.pipeline-tab.active .tab-num {
  color: var(--accent-primary);
}

.pipeline-tab .tab-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 2px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.pipeline-tab.active .tab-label {
  color: var(--text-primary);
}

.pipeline-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  min-height: 140px;
  align-items: center;
  border-color: rgba(59, 130, 246, 0.15);
}

@media (min-width: 480px) {
  .pipeline-content {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.pipeline-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  text-align: left;
}

.pipeline-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pipeline-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pipeline-graphic {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

/* Pipeline Graphic Animations */
.graphic-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.real-code-anim {
  gap: 8px;
}

.scratch-block {
  background: #ff7600;
  color: white;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  animation: crumble 3.5s ease-in-out infinite;
}

.transform-arrow {
  font-size: 1rem;
  color: var(--text-muted);
  animation: pulse-arrow 3.5s ease-in-out infinite;
}

.python-badge {
  background: var(--accent-primary);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
  animation: emerge 3.5s ease-in-out infinite;
}

@keyframes crumble {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  30%,
  70% {
    opacity: 0.15;
    transform: scale(0.85);
    filter: blur(2px);
  }
}

@keyframes emerge {

  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.85);
    filter: blur(2px);
  }

  30%,
  70% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes pulse-arrow {

  0%,
  50%,
  100% {
    transform: translateX(0);
  }

  25%,
  75% {
    transform: translateX(3px);
  }
}

.batches-anim {
  flex-direction: column;
}

.mentor-node {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background: #10b981;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.students-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  z-index: 2;
}

.student-node {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--accent-primary);
  color: white;
  font-size: 0.55rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-line-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.github-anim {
  gap: 10px;
}

.file-icon {
  font-size: 1.6rem;
  animation: float-file 2s ease-in-out infinite;
}

.ship-arrow {
  font-size: 1.1rem;
  color: #10b981;
  animation: slide-arrow 1.5s linear infinite;
}

.github-icon-badge {
  font-size: 1.8rem;
  animation: pulse-github 2.5s ease-in-out infinite;
}

@keyframes float-file {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-4px) rotate(3deg);
  }
}

@keyframes slide-arrow {
  0% {
    transform: translateX(-6px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(6px);
    opacity: 0;
  }
}

@keyframes pulse-github {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }

  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.25));
  }
}

.edge-anim {
  flex-direction: column;
}

.chart-container {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 44px;
}

.chart-col {
  width: 10px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: #cbd5e1;
  height: 12px;
}

.chart-col.col-1 {
  height: 16px;
}

.chart-col.col-2 {
  height: 26px;
}

.chart-col.col-3 {
  background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-highlight) 100%);
  animation: grow-col 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.cap-badge {
  font-size: 1.4rem;
  animation: float-cap 2s ease-in-out infinite;
}

@keyframes grow-col {
  0% {
    height: 12px;
  }

  100% {
    height: 40px;
  }
}

@keyframes float-cap {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-3px) rotate(-4deg);
  }
}

}

/* Student Mindset Silhouette Card & Spin Entrance Styles */
.visual-card-wrapper {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.card-ambient-glow {
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(16, 185, 129, 0.12) 50%, rgba(255, 255, 255, 0) 70%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: glow-fade-in 1.5s ease-out 0.5s forwards;
}

@keyframes glow-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Cool Showcase Video Frame */
.video-showcase-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;

  /* Premium Glowing Gradient Border */
  border: 2.5px solid transparent;
  background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)), 
                    linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-highlight) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  /* Soft Neon Glow Shadow */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(37, 99, 235, 0.2);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.video-showcase-frame:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), 0 0 45px rgba(37, 99, 235, 0.32);
}

.hero-showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000;
}

/* Action Buttons below Showcase Video */
.video-actions-row {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-4);
  width: 100%;
}

@media (max-width: 480px) {
  .video-actions-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.btn-hollow {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
}

.btn-hollow:hover {
  border-color: var(--accent-primary);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.25);
  color: #ffffff;
}

/* Video Autoplay Unmute Overlay */
.video-unmute-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  border-radius: var(--radius-xl);
}

.video-unmute-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.unmute-btn {
  background: rgba(15, 23, 42, 0.9);
  border: 1.5px solid var(--accent-primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  animation: pulse-unmute 2s infinite ease-in-out;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.unmute-btn:hover {
  background: var(--accent-primary);
}

@keyframes pulse-unmute {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.5);
  }
}
/* Tutor Profile Section Styling */
.tutor-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 992px) {
  .tutor-grid-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-8);
  }
}

.tutor-details-col {
  display: flex;
  flex-direction: column;
}

.tutor-experience-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  padding-left: var(--space-1);
  margin-top: var(--space-3);
}

/* Timeline Vertical Line */
.tutor-experience-timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-primary) 0%, var(--accent-highlight) 100%);
  opacity: 0.25;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  position: relative;
}

.timeline-badge {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-primary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
  z-index: 2;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.timeline-item:hover .timeline-badge {
  transform: scale(1.1);
  background: var(--accent-primary);
  color: #ffffff;
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Video Bezel Frame */
.instructor-video-bezel-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;

  /* Premium Glowing Bezel Border */
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)), 
                    linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-highlight) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  /* Ambient light shadow */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(37, 99, 235, 0.2);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.instructor-video-bezel-frame:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6), 0 0 45px rgba(37, 99, 235, 0.32);
}

.instructor-bezel-video {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
  border: none;
}

.bezel-caption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  margin-top: var(--space-3);
  letter-spacing: 0.05em;
}

.cognitive-standout-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-2);

  /* Glassy rounded border gradient styling with realistic radial light reflection */
  border: 2px solid transparent;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.5) 100%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.45) 0%, rgba(16, 185, 129, 0.35) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  backdrop-filter: blur(25px) saturate(190%);
  -webkit-backdrop-filter: blur(25px) saturate(190%);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 55px -12px rgba(15, 23, 42, 0.12), 0 10px 25px -10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  opacity: 0;

  /* 3D spring Y-axis flip entry transition */
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: rotateY(-180deg) scale(0.8);
  animation: card-flip-entrance 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.cognitive-standout-card:hover {
  transform: translateY(-5px) scale(1.01) rotateX(1deg) rotateY(1deg);
  box-shadow: 0 35px 70px -10px rgba(15, 23, 42, 0.16);
}

@keyframes card-flip-entrance {
  0% {
    opacity: 0;
    transform: rotateY(-180deg) scale(0.8) translateZ(-100px);
  }

  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1) translateZ(0);
  }
}

/* Visualization Canvas Frame */
.mindset-canvas-frame {
  position: relative;
  height: 220px;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mind-silhouette-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Confetti Particle Base Styles */
.confetti-particle {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: var(--radius-sm);
  z-index: 999;
}

/* Face and Arm Vector Features Elastic Transitions */
.crowd-child path,
.crowd-child circle,
#standout-child-group path,
#standout-child-group circle {
  transition: d 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), r 0.5s, cx 0.5s, cy 0.5s, stroke 0.5s, fill 0.5s, opacity 0.5s;
}

/* Golden Crown Glowing and Sparkle Animations */
.crown-glowing-effect {
  animation: gold-crown-pulse 2s infinite alternate ease-in-out;
}

@keyframes gold-crown-pulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(234, 179, 8, 0.4));
  }

  100% {
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.8));
  }
}

.sparkle-star {
  animation: flash-sparkle 1.5s infinite alternate ease-in-out;
}

.sparkle-star-1 {
  transform-origin: 172px 52px;
  animation-delay: 0.2s;
}

.sparkle-star-2 {
  transform-origin: 228px 52px;
  animation-delay: 0.5s;
}

.sparkle-star-3 {
  transform-origin: 200px 44px;
  animation-delay: 0.8s;
}

@keyframes flash-sparkle {
  0% {
    transform: scale(0.6) rotate(0deg);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.1) rotate(15deg);
    opacity: 1;
    filter: drop-shadow(0 0 4px #facc15);
  }
}

/* Halo Glow Around Silhouette Head */
.mind-halo-glow {
  transform-origin: 200px 90px;
  animation: pulse-halo-size 2.5s infinite alternate ease-in-out;
}

@keyframes pulse-halo-size {
  0% {
    r: 42px;
    opacity: 0.25;
  }

  100% {
    r: 52px;
    opacity: 0.45;
  }
}

/* Floating Skill Badges */
.skill-badge {
  position: absolute;
  padding: 5px 10px;
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  opacity: 0;
  transform: scale(0.9) translateY(4px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.skill-badge.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--text-primary);
  box-shadow: 0 8px 18px rgba(59, 130, 246, 0.08);
}

.skill-badge.skill-0 {
  top: 22px;
  left: 16px;
}

.skill-badge.skill-1 {
  top: 62px;
  right: 16px;
}

.skill-badge.skill-2 {
  top: 22px;
  right: 28px;
}

.skill-badge.skill-3 {
  top: 68px;
  left: 28px;
}

/* PREFERS REDUCED MOTION OVERRIDE */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  .glow-orb {
    animation: none !important;
    display: none !important;
  }

  .audio-pulse,
  .poll-popover,
  .cert-card-mockup {
    animation: none !important;
  }

  .trait-bar-fill {
    transition: none !important;
  }

  .draw-path-1,
  .draw-path-2,
  .draw-path-3 {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }

  *,
  *::before,
  *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }

  .app-visual-frame {
    transform: none !important;
  }

  .app-visual-frame:hover {
    transform: none !important;
  }

  .pricing-spots-ticker {
    animation: none !important;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .terminal-cursor {
    animation: none !important;
    background-color: transparent !important;
    border-left: 2px solid #fff !important;
  }

  .weather-icon-cloudy {
    animation: none !important;
  }

  .lan-progress-fill {
    animation: none !important;
  }

  #global-bg-canvas,
  .video-bg-container {
    display: none !important;
  }
}

.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background-color: transparent;
}

.video-bg-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(17, 19, 27, 0.1) 20%, var(--bg-primary) 95%);
  pointer-events: none;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(1.1) brightness(1.02);
  transition: opacity var(--transition-normal);
}

#global-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background-color: transparent;
  transition: opacity var(--transition-normal);
}

/* ==========================================================================
   TESTIMONIALS SECTION (3D Horizontal Moving Marquee)
   ========================================================================== */
.testimonials-viewport {
  width: 100%;
  overflow: hidden;
  padding: var(--space-4) var(--space-6);
  position: relative;
}

/* Linear marquee container scrolling continuously */
.testimonials-marquee-track {
  display: flex;
  gap: var(--space-4);
  width: max-content;
  padding: var(--space-4) var(--space-2) var(--space-6);
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-2deg);
  animation: marquee-scroll 38s linear infinite;
}

/* Pause scroll on hover to let parents read comfortably */
.testimonials-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: rotateX(6deg) rotateY(-2deg) translateX(0);
  }

  100% {
    /* 6 cards (each 300px + 24px gap = 324px). Width of 6 items is 1944px */
    transform: rotateX(6deg) rotateY(-2deg) translateX(-1944px);
  }
}

.testimonial-card-3d {
  flex: 0 0 300px;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  transform-style: preserve-3d;
  position: relative;
  overflow: visible;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Bright Card Styling (WOW Premium light theme card) */
.testimonial-card-3d.bright-card {
  background: #ffffff;
  border: 1.5px solid rgba(59, 130, 246, 0.18);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02);
  color: #0f172a;
}

/* Apply 3D perspective pop on hover, respecting reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .testimonial-card-3d:hover {
    transform: translateZ(35px) rotateY(4deg) scale(1.04);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee-track {
    animation: none;
    overflow-x: auto;
    width: 100%;
    transform: none;
  }
}

.student-profile {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  transform-style: preserve-3d;
  width: 100%;
}

.student-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
  transform: translateZ(10px);
}

/* Beautiful color styles for initials avatars */
.student-avatar.sa-1 {
  background: linear-gradient(135deg, #ec4899, #f43f5e);
}

.student-avatar.sa-2 {
  background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

.student-avatar.sa-3 {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.student-avatar.sa-4 {
  background: linear-gradient(135deg, #10b981, #3b82f6);
}

.student-avatar.sa-5 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.student-avatar.sa-6 {
  background: linear-gradient(135deg, #06b6d4, #10b981);
}

.student-meta {
  display: flex;
  flex-direction: column;
}

.student-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.student-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: #475569;
  font-weight: 500;
}

/* Glowing golden 5 stars review */
.stars-rating {
  font-size: 0.95rem;
  color: #eab308;
  margin-left: auto;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(234, 179, 8, 0.45);
  transform: translateZ(12px);
}

.student-quote {
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.55;
  color: #334155;
  font-style: italic;
  margin: 0;
  transform: translateZ(5px);
}

@media (max-width: 767px) {
  .testimonials-marquee-track {
    transform: none;
    /* Flatten 3D tilt on mobile screens */
    animation-duration: 25s;
    /* Speed up slightly on mobile for scrolling feel */
  }

  @keyframes marquee-scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1944px);
    }
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-4);
  right: var(--space-4);
  width: 56px;
  height: 56px;
  background-color: var(--whatsapp-bg);
  color: var(--whatsapp-text);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--whatsapp-shadow);
  z-index: 999;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px var(--whatsapp-shadow);
}

.whatsapp-float:active {
  transform: translateY(-1px);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float:hover {
    transform: none;
  }
}

/* Tech Stack & Industry Ecosystem Grid */
.tech-ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 1024px) {
  .tech-ecosystem-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-6);
  }
}

.tech-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tech-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  position: relative;
}

/* ==========================================================================
   MOBILE BOTTOM SHEET QUICK BOOKING CTA
   ========================================================================== */
.phone-bottom-sheet {
  position: fixed;
  bottom: var(--space-2);
  left: var(--space-2);
  right: var(--space-2);
  z-index: 1000;
  padding: 16px;
  border-radius: var(--radius-lg);
  display: none;
  background: var(--card-bg);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid var(--card-border);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15), 
              0 2px 8px rgba(15, 23, 42, 0.05),
              inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.bottom-sheet-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-2);
}

.bottom-sheet-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sheet-desc {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
}

/* Unique looking full-width CTA button */
.sheet-cta-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
  background-size: 200% auto;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4), 
              0 2px 4px rgba(234, 88, 12, 0.2);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .sheet-cta-btn {
    animation: gradient-shimmer 4s ease infinite;
  }
}

@keyframes gradient-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.sheet-cta-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 10px rgba(234, 88, 12, 0.3);
}

@media (max-width: 767px) {
  .phone-bottom-sheet {
    display: block;
  }

  body {
    padding-bottom: 0; /* No extra body space — footer handles the gap */
  }

  .whatsapp-float {
    bottom: 20px; /* Pinned near the bottom on mobile */
    right: var(--space-3);
  }
}

/* Hide on landscape screens where vertical space is extremely limited */
@media (max-height: 480px) {
  .phone-bottom-sheet {
    display: none !important;
  }
  body {
    padding-bottom: 0 !important;
  }
  .whatsapp-float {
    bottom: var(--space-4) !important;
  }
}

/* =========================================================================
   HOMEPAGE ENRICHED HERO REDESIGN STYLES
   ========================================================================= */

/* Blue and White linear gradient for text */
.highlight-blue-white {
  background: linear-gradient(135deg, #ffffff 30%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Tech Icons Row */
.tech-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4); /* Curation space to avoid crowding (32px gap) */
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
  align-items: center;
}

.tech-logo {
  display: block;
  width: auto;
  height: 36px; /* High fidelity size */
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-fast), filter var(--transition-fast);
  cursor: pointer;
}

.tech-logo:hover {
  transform: translateY(-2px) scale(1.1);
  filter: brightness(1.15) drop-shadow(0 4px 10px rgba(59, 130, 246, 0.25));
}

/* Enriched Stats Grid */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  width: 100%;
}

@media (min-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-1.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.25);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1.1;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Alumni Strip */
.alumni-strip {
  border-top: 1px solid var(--card-border);
  padding-top: var(--space-3);
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1.5);
}

.alumni-title {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alumni-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.alumni-logo-txt {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.55;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  cursor: default;
  user-select: none;
}

.alumni-logo-txt:hover {
  opacity: 0.95;
  color: var(--text-primary);
}

/* Right Column: Course Preview Card */
.course-preview-card {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: 0 20px 45px -10px var(--card-shadow), 0 5px 15px -5px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.course-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 25px 50px -10px rgba(59, 130, 246, 0.1), 0 5px 15px -5px rgba(0, 0, 0, 0.1);
}

.preview-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-tag {
  background: var(--accent-glow);
  color: var(--accent-primary);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.preview-rating {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-tertiary);
}

.preview-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 4px;
}

.preview-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  text-align: left;
  flex: 1;
}

.preview-pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}

.price-actual {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-secondary);
  font-family: var(--font-display);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.7rem;
  color: var(--accent-secondary);
  background: var(--accent-glow-green);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-top: 3px;
}

/* Video Frame adjustments */
.course-preview-card .video-showcase-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--card-border);
  aspect-ratio: 16/9;
}

.live-batch-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(220, 38, 38, 0.95);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  z-index: 5;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

/* Specs 2x2 Grid inside Preview Card */
.preview-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-1.5);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: var(--space-2) 0;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  text-align: left;
}

.spec-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.spec-info {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  font-size: 0.78rem;
  color: var(--text-primary);
  font-weight: 700;
}

/* Learning outcomes inside Preview Card */
.preview-curriculum-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.preview-curriculum-summary h4 {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learning-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.learning-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--accent-secondary);
  font-weight: bold;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: -1px;
}

/* Inclusions Footer inside Preview Card */
.preview-inclusions-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--card-border);
  padding-top: var(--space-1.5);
  text-align: left;
}

.inclusion-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.bullet-dot {
  color: var(--accent-primary);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* =========================================================================
   MENTOR SHOWCASE SECTION (REDESIGNED WITH CIRCULAR VIDEO AVATAR)
   ========================================================================= */

.mentor-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  max-width: 1080px; /* Increased width to make it a clean, horizontal rectangle */
  margin: 0 auto;
  align-items: stretch; /* Stretch columns to match height */
  box-shadow: 0 20px 45px -10px var(--card-shadow);
  text-align: left;
}

@media (min-width: 768px) {
  .mentor-card {
    grid-template-columns: 1.15fr 0.85fr; /* Large video column on left (57%), info column on right (43%) */
    padding: var(--space-5);
    gap: var(--space-5);
  }
}

.mentor-left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  height: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .mentor-left-col {
    padding: var(--space-4);
  }
}

/* Circular Video Avatar */
.mentor-video-avatar-container {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  margin-bottom: var(--space-2);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.mentor-video-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  overflow: hidden;
  background-color: #000;
}

.mentor-badge-overlay {
  position: absolute;
  bottom: 0;
  right: 12px;
  background: var(--accent-primary);
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 2px solid var(--card-bg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.mentor-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 4px;
  margin-bottom: 2px;
}

.mentor-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.mentor-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: auto; /* Push stats to the bottom of the card, filling it completely */
}

.mentor-metric-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg); /* Dark contrast against the lighter left-col card background */
  border: 1px solid var(--card-border);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  text-align: left;
  transition: transform var(--transition-fast);
}

.mentor-metric-pill:hover {
  transform: translateX(4px);
  border-color: rgba(37, 99, 235, 0.2);
}

.mentor-metric-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mentor-metric-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.mentor-metric-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
}

.mentor-metric-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mentor-right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
}

@media (min-width: 768px) {
  .mentor-right-col {
    padding-top: 0;
  }
}

.mentor-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mentor-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.mentor-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mentor-badge-item.blue {
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent-primary);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.mentor-badge-item.red {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.mentor-badge-item.purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.mentor-trust-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  margin-top: var(--space-1.5);
}

.mentor-trust-title {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.mentor-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.mentor-trust-logo-item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.6;
}

/* =========================================================================
   SCROLL-TRIGGERED STICKY BOTTOM CTA BAR & NAVBAR HIDE STYLES
   ========================================================================= */

/* Butter smooth hiding transitions for the main header */
.navbar {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-normal), border-color var(--transition-normal) !important;
}

.navbar.navbar-hidden {
  transform: translate3d(0, -100%, 0) !important;
  pointer-events: none;
}

/* Sticky Bottom Bar Container */
.sticky-bottom-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 76px;
  background: rgba(10, 15, 30, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--card-border);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-4);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.35);
}

.sticky-bottom-cta-bar.sticky-cta-visible {
  transform: translate3d(0, 0, 0);
}

.sticky-cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sticky-cta-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: var(--font-display);
}

.sticky-cta-price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.sticky-cta-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.sticky-cta-original-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.sticky-cta-discount {
  font-size: 0.7rem;
  background: rgba(37, 99, 235, 0.15);
  color: var(--accent-primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

.sticky-cta-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-whatsapp-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.sticky-whatsapp-btn:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
}

.sticky-whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Hide floating whatsapp to avoid overlap */
.whatsapp-float {
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}

.whatsapp-float.whatsapp-hidden {
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  pointer-events: none;
}

@media (max-width: 576px) {
  .sticky-bottom-cta-bar {
    padding: 0 var(--space-2.5);
    height: 70px;
  }
  
  .sticky-cta-title {
    font-size: 0.58rem;
  }
  
  .sticky-cta-price {
    font-size: 1.1rem;
  }
  
  .sticky-cta-original-price {
    font-size: 0.72rem;
  }
  
  .sticky-cta-discount {
    font-size: 0.65rem;
    padding: 1px 4px;
  }
  
  .sticky-bottom-cta-bar .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  
  .sticky-whatsapp-btn {
    width: 36px;
    height: 36px;
  }
  
  .sticky-whatsapp-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Responsive Text toggles for sticky bottom CTA bar */
.cta-btn-text-mobile {
  display: none;
}

.cta-btn-text-desktop {
  display: inline;
}

@media (max-width: 576px) {
  .cta-btn-text-desktop {
    display: none;
  }
  .cta-btn-text-mobile {
    display: inline;
  }
}

/* =========================================================================
   HERO CALL-TO-ACTION BUTTON GLOWING PULSE ANIMATION
   ========================================================================= */
.hero-cta-btn {
  position: relative;
  overflow: visible;
  animation: button-pop-glow 2.5s infinite ease-in-out;
  will-change: transform, box-shadow;
}

@keyframes button-pop-glow {
  0% {
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.45), 0 0 0 0 rgba(29, 78, 216, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.7), 0 0 0 10px rgba(29, 78, 216, 0);
    transform: scale(1.025);
  }
  100% {
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.45), 0 0 0 0 rgba(29, 78, 216, 0);
    transform: scale(1);
  }
}

/* Pause keyframe pulse on mouse hover and expand hover scale */
.hero-cta-btn:hover {
  animation-play-state: paused;
  transform: scale(1.04) translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.8) !important;
}

/* =========================================================================
   COMPARISON TABLE SECTION STYLES
   ========================================================================= */
.comparison-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table-wrapper {
  width: 100%;
}

.comparison-table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table-wrapper th,
.comparison-table-wrapper td {
  padding: 14px 12px;
  vertical-align: middle;
}

/* Default Column Widths (Sum = 100%) */
.comparison-table-wrapper th:nth-child(1),
.comparison-table-wrapper td:nth-child(1) {
  width: 40%;
}
.comparison-table-wrapper th:nth-child(2),
.comparison-table-wrapper td:nth-child(2),
.comparison-table-wrapper th:nth-child(3),
.comparison-table-wrapper td:nth-child(3) {
  width: 20%;
}
.comparison-table-wrapper th:nth-child(4),
.comparison-table-wrapper td:nth-child(4) {
  width: 20%;
}

.comp-col-header {
  border-bottom: 1px solid var(--card-border);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.3;
}

.comp-feature {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Check & Cross icons matching the reference design */
.comp-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.comp-check {
  background-color: #22c55e; /* Premium solid green check */
}

.comp-cross {
  background-color: #ef4444; /* Premium solid red cross */
}

/* Highlight BaseXCode choice column */
.comp-col-brand {
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  text-align: center;
  background: #1d4ed8;
  color: #ffffff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
  padding: 20px 10px;
}

.comp-col-brand span:first-child {
  font-size: 0.6rem; /* Your choice badge */
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comp-col-brand div {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.comp-col-brand img {
  height: 32px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.comp-col-brand span:last-child {
  font-size: 1.05rem; /* BaseXCode brand name text */
  font-weight: 900;
  letter-spacing: -0.01em;
}

.comp-val.comp-highlight {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(29, 78, 216, 0.9);
}

.comp-val {
  text-align: center;
  font-size: 0.85rem;
}

.comp-highlight-price {
  font-size: 1.25rem;
}

.comp-highlight-caption {
  font-size: 0.68rem;
}

/* Responsive design adjustments for mobile viewports */
@media (max-width: 767px) {
  .comparison-card {
    margin: 0 var(--space-2);
    border-radius: var(--radius-md);
  }

  .comparison-table-wrapper table {
    table-layout: fixed; /* Strictly lock columns to avoid horizontal stretching */
  }

  /* Responsive Column Width adjustments for narrow mobile screens */
  .comparison-table-wrapper th:nth-child(1),
  .comparison-table-wrapper td:nth-child(1) {
    width: 34% !important;
  }
  .comparison-table-wrapper th:nth-child(2),
  .comparison-table-wrapper td:nth-child(2),
  .comparison-table-wrapper th:nth-child(3),
  .comparison-table-wrapper td:nth-child(3) {
    width: 18% !important;
  }
  .comparison-table-wrapper th:nth-child(4),
  .comparison-table-wrapper td:nth-child(4) {
    width: 30% !important;
  }

  .comparison-table-wrapper th,
  .comparison-table-wrapper td {
    padding: 12px 6px !important; /* Slightly tighter cell padding for narrow viewports */
  }

  .comp-feature {
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  .comp-col-header {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
  }

  .comp-col-brand {
    padding: 14px 6px !important;
  }

  .comp-col-brand span:first-child {
    font-size: 0.52rem !important;
    padding: 1px 5px !important;
    letter-spacing: 0.01em !important;
  }

  .comp-col-brand img {
    height: 26px !important;
  }

  .comp-col-brand span:last-child {
    font-size: 0.88rem !important;
  }

  .comp-val {
    font-size: 0.78rem !important;
  }

  .comp-highlight-price {
    font-size: 1.1rem !important;
  }

  .comp-highlight-caption {
    font-size: 0.58rem !important;
  }
}
/* =========================================================================
   ANIMATED SECTION BACKGROUNDS
   ========================================================================= */

/* ---- Base setup shared by all animated sections ---- */
.animated-section-bg {
  background-color: var(--bg-primary);
}

/* =========================================================
   SECTION 1: Direct Mentorship — Aurora / Gradient Wave BG
   ========================================================= */
.animated-bg-aurora {
  background: #070d1f;
}

/* Orb layers rendered using ::before & ::after pseudo elements */
.animated-bg-aurora::before,
.animated-bg-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Primary aurora orb — slow drifting blue/purple blob */
.animated-bg-aurora::before {
  background:
    radial-gradient(ellipse 70% 50% at 20% 40%, rgba(29, 78, 216, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 55% 15%, rgba(0, 200, 255, 0.18) 0%, transparent 65%);
  animation: aurora-drift 12s ease-in-out infinite alternate;
}

/* Secondary shimmer layer — subtle teal/indigo pulse */
.animated-bg-aurora::after {
  background:
    radial-gradient(ellipse 55% 40% at 75% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 25% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
  animation: aurora-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes aurora-drift {
  0%   { transform: translate(0px, 0px) scale(1); opacity: 0.85; }
  33%  { transform: translate(30px, -20px) scale(1.04); opacity: 1; }
  66%  { transform: translate(-20px, 15px) scale(0.97); opacity: 0.9; }
  100% { transform: translate(15px, -30px) scale(1.02); opacity: 0.95; }
}

/* =========================================================
   SECTION 2: Student Reviews — Floating Dot Particles BG
   ========================================================= */
.animated-bg-particles {
  background: #050c1f;
}

/* Grid of tiny dots using CSS background-image pattern */
.animated-bg-particles::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(59, 130, 246, 0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(139, 92, 246, 0.35) 1px, transparent 1px);
  background-size: 38px 38px, 72px 72px;
  background-position: 0 0, 19px 19px;
  animation: particles-drift 20s linear infinite;
  opacity: 0.45;
}

/* Glowing gradient overlay on top of the dots */
.animated-bg-particles::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 50%, rgba(29, 78, 216, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 85% 40%, rgba(124, 58, 237, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 50% 90%, rgba(6, 182, 212, 0.15) 0%, transparent 55%);
  animation: particle-glow-pulse 8s ease-in-out infinite alternate;
}

@keyframes particles-drift {
  0%   { background-position: 0px 0px, 19px 19px; }
  100% { background-position: 0px 80px, 19px 99px; }
}

@keyframes particle-glow-pulse {
  0%   { opacity: 0.7; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.03); }
  100% { opacity: 0.75; transform: scale(1.01); }
}

