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

:root {
  --bg-dark: #080808;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-elevated: #1a1a1a;

  --gold: #D4A843;
  --gold-light: #E8C26A;
  --gold-dark: #B8912E;
  --gold-glow: rgba(212, 168, 67, 0.3);
  --gold-subtle: rgba(212, 168, 67, 0.08);
  --gold-border: rgba(212, 168, 67, 0.2);

  --red: #C0392B;
  --red-light: #E74C3C;
  --red-glow: rgba(192, 57, 43, 0.25);
  --red-subtle: rgba(192, 57, 43, 0.08);

  --text-primary: #ffffff;
  --text-secondary: #9a9a9a;
  --text-muted: #555555;

  --border: #1e1e1e;
  --border-hover: #2a2a2a;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('bg-body.png') top center / 100% auto repeat-y;
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ===== Accent ===== */
.accent { color: var(--gold); }
.text-accent { color: var(--gold); }
.text-red { color: var(--red-light); }

/* ===== Fixed Enroll Button ===== */
.fixed-enroll {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}

.fixed-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--gold-glow);
}

/* ===== Buttons ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  background: var(--gold-light);
}

.btn-lg {
  padding: 18px 52px;
  font-size: 1.05rem;
}

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

.arrow {
  font-size: 1.2em;
  transition: transform 0.2s;
}

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

.btn-ghost-path {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-ghost-path:hover {
  border-color: var(--text-muted);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-signup {
  padding: 9px 24px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-signup:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-login {
  padding: 9px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  border-radius: 6px;
  transition: border-color 0.2s;
}

.btn-login:hover {
  border-color: var(--text-muted);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero ===== */
.hero {
  padding: 150px 0 40px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  line-height: 1.08;
}

.headline-row {
  display: block;
}

.headline-accent {
  color: var(--text-primary);
}

/* Swoosh underline like university.com */
.swoosh-wrap {
  position: relative;
  display: inline-block;
}

.swoosh-wrap::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -10px;
  right: -10px;
  height: 18px;
  background: var(--gold);
  opacity: 0.55;
  border-radius: 50% 50% 50% 50% / 100% 100% 0% 0%;
  transform: scaleX(1.05) rotate(-1deg);
  z-index: -1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--text-primary);
  font-weight: 800;
}

/* Darken the hero bg behind phones */
.hero-bg-dim {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}

/* Hero phone mockups as background */
.hero-bg-phones {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png?v=6') center center / 100% auto no-repeat;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* VSL */
.vsl-wrapper {
  width: 100%;
  max-width: 820px;
  margin-bottom: 40px;
}

.vsl-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vsl-container:hover {
  border-color: var(--gold-border);
  box-shadow: 0 0 40px rgba(212, 168, 67, 0.08);
}

.vsl-container:hover .vsl-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 50px var(--gold-glow);
}

.vsl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.4) 100%);
}

.vsl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 40px var(--gold-glow);
  z-index: 2;
}

.vsl-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #000;
  margin-left: 4px;
}

/* CTA with scribble arrows */
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.scribble-arrow {
  width: 52px;
  height: 36px;
  color: var(--text-muted);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Social proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.avatar-stack {
  display: flex;
}

.sp-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
}

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

.sp-1 { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.sp-2 { background: linear-gradient(135deg, var(--red), var(--gold-dark)); }
.sp-3 { background: linear-gradient(135deg, var(--gold), var(--red)); }

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

.sp-text strong {
  color: var(--gold);
}

/* ===== Stats Banner ===== */
.stats-banner {
  position: relative;
  padding: 0;
  margin-top: -20px;
  z-index: 2;
}

.stats-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 48px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  transform: skewY(-1.5deg);
  border-radius: 4px;
  position: relative;
}

.stats-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  border-radius: 4px;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transform: skewY(1.5deg);
}

.stat-top {
  display: flex;
  align-items: baseline;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
}

.stat-suffix {
  font-size: 2.6rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== Section Shared ===== */
section {
  padding: 100px 0;
}

section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 60px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Value Prop ===== */
.value-prop {
  padding: 80px 0;
  background: transparent;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.value-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

.value-text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.value-highlights {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.check-icon {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-visual {
  display: flex;
  justify-content: center;
}

.value-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ===== Campuses Slider ===== */
.campuses {
  padding: 100px 0 60px;
  text-align: center;
}

.campuses h2 {
  text-align: center;
  margin-bottom: 48px;
}

.campuses-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  overflow: hidden;
}

.campuses-slider {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
}

.campuses-slider::-webkit-scrollbar {
  display: none;
}

.campus-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.campus-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.campus-img {
  height: 200px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15) 0%, rgba(192,57,43,0.1) 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.campus-card:hover .campus-img {
  transform: scale(1.05);
}

.campus-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,17,0.8) 100%);
}

.campus-img-1 { background: url('campus-1.png') center center / cover no-repeat; }
.campus-img-2 { background: url('campus-2.png?v=3') center center / cover no-repeat; }
.campus-img-3 { background: url('campus-3.png?v=3') center center / cover no-repeat; }
.campus-img-4 { background: url('campus-4.png?v=3') center center / cover no-repeat; }
.campus-img-5 { background: url('campus-5.png') center center / cover no-repeat; }

.campus-body {
  padding: 24px;
  text-align: left;
}

.campus-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.campus-body p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.slider-arrow:hover {
  border-color: var(--gold-border);
  background: var(--bg-elevated);
}

.slider-prev { left: 8px; }
.slider-next { right: 8px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--border-hover);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 48px;
}

/* ===== Professors ===== */
.professors {
  padding: 100px 0;
  text-align: center;
}

.professors-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
}

.prof-card {
  flex: 0 0 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s;
}

.prof-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
}

.prof-card.featured-prof {
  flex: 0 0 200px;
  border-color: var(--gold-border);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.1);
}

.prof-photo {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.featured-prof .prof-photo {
  height: 240px;
}

.prof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  scale: 1.4;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.prof-card:hover .prof-photo img {
  transform: scale(1.06);
}

.prof-card:nth-child(1) .prof-photo img {
  object-position: -50% 33%;
  scale: 2.0;
}

.prof-card:nth-child(2) .prof-photo img {
  object-position: 120% 70%;
  scale: 2.5;
}

.featured-prof .prof-photo img {
  object-position: center 25% !important;
  scale: 1 !important;
  transform: scale(1.25) translateY(10%) !important;
}

.prof-card:nth-child(4) .prof-photo img {
  scale: 1.3;
  object-position: center 18%;
}

.prof-card:nth-child(5) .prof-photo img {
  object-position: center 25%;
  scale: 1 !important;
  transform: scale(3.0) translateX(5%) translateY(0%) !important;
}

.prof-info {
  padding: 20px 16px 24px;
}

.prof-info h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.prof-role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.prof-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.prof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.prof-stat-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
}

.prof-stat-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .professors-grid {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .prof-card,
  .prof-card.featured-prof {
    flex: 0 0 calc(33% - 14px);
  }
}

@media (max-width: 768px) {
  .professors-grid {
    gap: 16px;
  }

  .prof-card,
  .prof-card.featured-prof {
    flex: 0 0 calc(50% - 8px);
  }

  .prof-photo,
  .featured-prof .prof-photo {
    height: 200px;
  }
}

/* ===== 5-Stage System ===== */
.system {
  text-align: center;
  background: transparent;
}

.stages-wrapper {
  display: flex;
  flex-direction: column;
}

.stages-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.stages-row + .stages-row {
  margin-top: 24px;
}

.stage-card {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 370px;
  flex: 0 1 370px;
  opacity: 0;
  transform: translateY(30px);
  transition: border-color 0.3s;
}

.stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.stage-card:hover {
  border-color: var(--gold-border);
}

.stage-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.stage-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stage-card > p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.stage-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-points li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.stage-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.stages-connector {
  display: flex;
  justify-content: center;
  height: 24px;
  position: relative;
}

.stages-connector::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-border);
}

/* ===== Proof / Results ===== */
.proof {
  text-align: center;
}

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

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.result-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.result-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.result-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.proof-quote {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.quote-mark {
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
}

.proof-quote p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  padding-left: 32px;
}

/* ===== Results Gallery ===== */
.results-gallery {
  padding: 80px 0;
  overflow: hidden;
}

.results-gallery h2 {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  columns: 4;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: rotate(var(--rot, 0deg));
  animation: wobble 4s ease-in-out var(--delay, 0s) infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.gallery-item:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.15);
  z-index: 2;
  border-color: var(--gold-border);
  animation-play-state: paused;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-wide {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.gallery-wide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  animation: wobble 4s ease-in-out 0.3s infinite;
  --rot: 0.5deg;
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-wide img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.15);
  border-color: var(--gold-border);
  animation-play-state: paused;
}

@keyframes wobble {
  0%, 100% {
    transform: rotate(var(--rot, 0deg)) translateY(0px);
  }
  25% {
    transform: rotate(calc(var(--rot, 0deg) + 0.5deg)) translateY(-6px);
  }
  50% {
    transform: rotate(calc(var(--rot, 0deg) - 0.3deg)) translateY(2px);
  }
  75% {
    transform: rotate(calc(var(--rot, 0deg) + 0.2deg)) translateY(-4px);
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
  }
}

/* ===== Skill Banner ===== */
.skill-banner {
  padding: 0;
  margin: 60px 0;
  position: relative;
}

.skill-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.skill-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.skill-content {
  padding: 64px 56px;
}

.skill-content h2 {
  text-align: left;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
}

.skill-checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.skill-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.skill-check-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.skill-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
}

.skill-mockup {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.skill-screen {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #0a0a0a 0%, #141414 50%, #1a1a1a 100%);
  border-radius: 12px;
  border: 2px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.skill-screen::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 8px;
  background: var(--border-hover);
  border-radius: 0 0 8px 8px;
}

.skill-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(212, 168, 67, 0.05) 0%, transparent 60%);
}

.skill-logo {
  width: 100px;
  height: auto;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .skill-banner-inner {
    grid-template-columns: 1fr;
  }

  .skill-content {
    padding: 40px 28px;
  }

  .skill-visual {
    padding: 0 28px 40px;
  }
}

/* ===== Mentor Banner ===== */
.mentor-banner {
  padding: 0;
  margin: 60px 0;
}

/* ===== Network Banner ===== */
.network-banner {
  padding: 0;
  margin: 60px 0;
}

.network-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.network-banner-inner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.network-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.network-mockup {
  position: relative;
  width: 220px;
}

.network-phone {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(145deg, #0a0a0a 0%, #141414 50%, #1a1a1a 100%);
  border-radius: 28px;
  border: 2px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 168, 67, 0.05);
  position: relative;
}

.network-phone::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--border-hover);
  border-radius: 3px;
}

.network-phone-img {
  width: 80px;
  height: auto;
  opacity: 0.5;
}

.network-content {
  padding: 64px 56px;
}

.network-content h2 {
  text-align: left;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .network-banner-inner {
    grid-template-columns: 1fr;
  }

  .network-visual {
    padding: 40px 28px 0;
  }

  .network-content {
    padding: 40px 28px;
  }

  .network-mockup {
    width: 160px;
  }
}

/* ===== Feature Blocks ===== */
.features {
  padding: 80px 0;
  background: transparent;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.feature-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-content > p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-visual {
  display: flex;
  justify-content: center;
}

.feature-mockup {
  width: 100%;
  max-width: 480px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-hover);
}

.mockup-content {
  padding: 24px;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  padding-bottom: 8px;
}

.chart-bar {
  flex: 1;
  background: var(--border-hover);
  border-radius: 4px 4px 0 0;
}

.chart-bar.accent-bar {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 0 20px var(--gold-glow);
}

.mock-label {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.mock-niche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.niche-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.niche-item.taken {
  background: var(--red-subtle);
  border: 1px solid rgba(192, 57, 43, 0.2);
  color: var(--text-secondary);
}

.niche-item.fresh {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.1);
}

.niche-status {
  font-size: 0.72rem;
  font-weight: 500;
}

.mock-scan {
  position: relative;
}

.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  animation: scan-move 2s ease-in-out infinite;
}

@keyframes scan-move {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0.3; }
}

.scan-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scan-item {
  padding: 14px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.scan-item.done {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ===== Pricing ===== */
.pricing {
  text-align: center;
  padding: 120px 0;
}

.pricing h2 {
  margin-bottom: 56px;
}

.paths-split {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.path-card-v2 {
  flex: 1;
  padding: 56px 44px;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s;
  position: relative;
  overflow: hidden;
}

.path-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.path-card-v2:hover {
  transform: translateY(-8px);
}

.path-hard {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.path-hard::before {
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 60%);
}

.path-hard:hover::before {
  opacity: 1;
}

.path-hard:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.path-shortcut {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  position: relative;
}

.path-shortcut::before {
  background: radial-gradient(circle at 50% 0%, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
}

.path-shortcut:hover::before {
  opacity: 1;
}

.path-shortcut:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.12), 0 0 80px rgba(212, 168, 67, 0.06);
}

.path-shortcut::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.path-v2-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.path-shortcut .path-v2-label {
  color: var(--gold);
}

.path-v2-price {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1;
}

.path-shortcut .path-v2-price {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gold-flow 4s ease infinite;
}

@keyframes gold-flow {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.path-v2-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.path-v2-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.path-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  min-width: 52px;
  align-self: center;
  margin: 0 -26px;
  z-index: 1;
  background: var(--bg-dark);
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* ===== Urgency ===== */
.urgency {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.urgency::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(192, 57, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.urgency-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.urgency h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.urgency-inner > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red-light);
  margin-bottom: 36px;
  animation: urgency-glow 2s ease-in-out infinite;
}

@keyframes urgency-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(192, 57, 43, 0.05); }
  50% { box-shadow: 0 0 40px rgba(192, 57, 43, 0.12); }
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-light);
  position: relative;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--red-light);
  animation: pulse-ring 1.5s ease-out infinite;
}

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

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}

.faq h2 {
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.2s;
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 100px 0;
  text-align: center;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, var(--bg-card) 0%, #050505 100%);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 64px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 4px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 48px 0 28px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom > p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.disclaimer {
  color: var(--text-muted);
  font-size: 0.72rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.5;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .stages-row {
    flex-wrap: wrap;
  }

  .stage-card {
    max-width: none;
    flex: 0 1 calc(50% - 12px);
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    gap: 40px;
  }

  .hero-bg-phones {
    opacity: 0.4;
    background-size: cover;
  }
}

@media (max-width: 768px) {
  .campuses-slider-wrap {
    padding: 0 12px;
  }

  .slider-arrow {
    display: none;
  }

  .campus-card {
    flex: 0 0 300px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 16px;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .swoosh-wrap::after {
    height: 10px;
    bottom: -2px;
  }

  .stats-banner-inner {
    padding: 24px 20px;
    gap: 0;
  }

  .stat-number,
  .stat-suffix {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-content h2 {
    text-align: center;
  }

  .stage-card {
    flex: 0 1 100%;
    max-width: none;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .paths-split {
    flex-direction: column;
    max-width: 440px;
  }

  .path-vs {
    margin: -12px auto;
  }

  .path-card-v2 {
    padding: 36px 28px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 32px;
  }

  .feature-content h3 {
    font-size: 1.4rem;
  }

  section h2 {
    font-size: 1.6rem;
  }

  .vsl-play {
    width: 60px;
    height: 60px;
  }

  .vsl-play-icon {
    border-width: 10px 0 10px 18px;
    margin-left: 3px;
  }

  .scribble-arrow {
    display: none;
  }

  .fixed-enroll {
    bottom: 16px;
    right: 16px;
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}
