:root {
  --bg: #060c19;
  --bg-soft: #0f1f42;
  --panel: rgba(10, 20, 43, 0.9);
  --line: rgba(152, 178, 228, 0.24);
  --text: #f4f7ff;
  --text-soft: #aec0e7;
  --gold: #f7c355;
  --green: #1ab07e;
  --blue: #4f86ff;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(79, 134, 255, 0.28), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(26, 176, 126, 0.2), transparent 30%),
    linear-gradient(160deg, var(--bg), var(--bg-soft));
  line-height: 1.62;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 44px, rgba(153, 177, 228, 0.035) 45px);
  pointer-events: none;
  z-index: -1;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, rgba(7, 16, 35, 0.98), rgba(9, 19, 39, 0.94));
  border-bottom: 1px solid rgba(156, 180, 228, 0.2);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav-inner {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  min-width: max-content;
}

.section-nav-primary,
.section-nav-secondary {
  display: flex;
  gap: 10px;
  align-items: center;
}

.section-nav a {
  text-decoration: none;
  color: rgba(244, 247, 255, 0.94);
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.section-nav a:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(225, 235, 255, 0.46);
  color: #ffffff;
}

.section-nav-primary a {
  color: rgba(255, 225, 163, 0.94);
}

.section-nav-primary a:hover {
  background: rgba(247, 195, 85, 0.08);
  border-color: rgba(255, 224, 151, 0.56);
  color: #fff3cb;
}

.hero {
  position: relative;
  padding: 24px 0 58px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -240px;
  left: -260px;
  background: rgba(79, 134, 255, 0.15);
  border: 1px solid rgba(136, 174, 250, 0.24);
}

.hero::after {
  width: 560px;
  height: 560px;
  right: -280px;
  bottom: -280px;
  background: rgba(26, 176, 126, 0.16);
  border: 1px solid rgba(142, 231, 200, 0.18);
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: min(460px, 78vw);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.24));
}

.brand-copy {
  display: grid;
  gap: 6px;
}

.brand-kicker {
  color: var(--gold);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: rgba(244, 247, 255, 0.95);
}

.hero-link-row,
.hero-tags,
.hero-actions,
.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(194, 211, 246, 0.26);
  background: linear-gradient(180deg, rgba(16, 31, 66, 0.92), rgba(11, 22, 46, 0.88));
  border-radius: 999px;
  min-height: 42px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 22px rgba(4, 12, 28, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.pill-link:hover {
  transform: translateY(-1px);
  border-color: rgba(229, 237, 255, 0.68);
  background: linear-gradient(180deg, rgba(24, 45, 92, 0.98), rgba(14, 28, 59, 0.94));
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 12px;
  padding: 4px 0;
  opacity: 0;
  animation: fadeLift 0.58s ease 0.12s forwards;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(247, 195, 85, 0.8);
}

.hero h1,
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  max-width: 20ch;
  line-height: 1.02;
}

.hero p {
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-tags span,
.chip,
.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(14, 29, 61, 0.82);
  border: 1px solid rgba(156, 180, 228, 0.24);
  color: rgba(244, 247, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.hero-metric,
.panel,
.stat-card,
.timeline-card,
.course-card,
.pillar-card,
.result-card,
.cta {
  padding: 20px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 27, 57, 0.96), rgba(9, 20, 42, 0.88));
  border: 1px solid rgba(158, 182, 231, 0.18);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-metric::before,
.panel::after,
.stat-card::after,
.timeline-card::after,
.course-card::after,
.pillar-card::after,
.result-card::after,
.cta::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(247, 195, 85, 0.88), rgba(79, 134, 255, 0.55), rgba(26, 176, 126, 0.72));
  opacity: 0.82;
}

.hero-metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.hero-metric span,
.panel p,
.stat-card p,
.course-card p,
.pillar-card p,
.result-card p,
.timeline-step p,
.campus-copy p,
.section-intro,
.footer p,
.cta p {
  color: var(--text-soft);
}

.hero-metric:hover,
.panel:hover,
.stat-card:hover,
.timeline-card:hover,
.course-card:hover,
.pillar-card:hover,
.result-card:hover,
.cta:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 214, 246, 0.24);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.3);
}

.btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(4, 12, 28, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, filter 0.22s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  opacity: 0.75;
  pointer-events: none;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.btn-primary {
  color: #061325;
  background: linear-gradient(135deg, var(--gold), #ffd88c);
  border: 1px solid rgba(255, 222, 158, 0.46);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(180deg, rgba(17, 33, 67, 0.94), rgba(11, 23, 49, 0.9));
  border: 1px solid rgba(172, 194, 236, 0.24);
}

.hero-slider,
.campus-photo {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(173, 194, 236, 0.16);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(16, 31, 64, 0.94), rgba(10, 20, 42, 0.92));
}

.hero-slider {
  min-height: 440px;
  opacity: 0;
  animation: fadeLift 0.66s ease 0.2s forwards;
}

.hero-slider-track {
  position: relative;
  min-height: 440px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img,
.campus-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 390px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 18, 38, 0.62);
  border: 1px solid rgba(183, 204, 240, 0.14);
  backdrop-filter: blur(8px);
}

.visual-caption h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  margin: 10px 0 8px;
}

.visual-caption p {
  color: rgba(233, 241, 255, 0.9);
  max-width: 30ch;
  font-size: 0.92rem;
}

.hero-slider-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(183, 204, 240, 0.18);
  border-radius: 999px;
  background: rgba(8, 18, 38, 0.66);
  color: #f4f7ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover {
  transform: translateY(-1px);
  background: rgba(17, 33, 67, 0.88);
  border-color: rgba(229, 237, 255, 0.42);
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(8, 18, 38, 0.66);
  border: 1px solid rgba(183, 204, 240, 0.14);
  backdrop-filter: blur(8px);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(214, 225, 246, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.main {
  padding: 56px 0 76px;
}

.section {
  margin-bottom: 52px;
}

.section > .container {
  position: relative;
}

.section > .container::before {
  content: "";
  position: absolute;
  inset: -12px -10px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 29, 61, 0.22), rgba(9, 18, 37, 0.08));
  border: 1px solid rgba(156, 180, 228, 0.08);
  z-index: -1;
  opacity: 0.9;
}

.section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(156, 180, 228, 0.12);
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  max-width: 18ch;
  line-height: 0.96;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.stats-grid,
.course-grid,
.pillar-grid,
.result-grid {
  display: grid;
  gap: 14px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.two-column-grid,
.campus-layout,
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.course-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel h3,
.stat-card strong,
.timeline-card h3,
.course-card h3,
.pillar-card h3,
.result-card h3,
.timeline-step h4,
.cta strong,
.brand-copy strong {
  font-family: "Sora", sans-serif;
}

.panel h3,
.timeline-card h3 {
  font-size: 1.14rem;
  margin: 10px 0 8px;
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.check-list,
.course-card ul,
.pillar-card ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 18px;
}

.check-list li,
.course-card li,
.pillar-card li {
  color: rgba(239, 244, 255, 0.92);
}

.campus-photo {
  min-height: 340px;
}

.campus-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.campus-copy .section-title {
  max-width: 13ch;
  margin: 10px 0 12px;
}

.course-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.course-meta span {
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.course-card h3 {
  font-size: 1.04rem;
  line-height: 1.15;
  margin-bottom: 8px;
}

.pillar-card i {
  font-size: 1.2rem;
  color: var(--gold);
}

.pillar-card h3 {
  font-size: 1.02rem;
  margin: 10px 0 8px;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.timeline-step strong {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(247, 195, 85, 0.18), rgba(79, 134, 255, 0.18));
  border: 1px solid rgba(255, 224, 151, 0.28);
  font-family: "Sora", sans-serif;
  color: #fff0c6;
}

.timeline-step h4 {
  font-size: 0.94rem;
  margin-bottom: 4px;
}

.result-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cta {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.cta strong {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.18;
}

.footer {
  padding: 24px 0 42px;
  border-top: 1px solid rgba(156, 180, 228, 0.16);
}

.footer p {
  text-align: center;
  font-size: 0.92rem;
}

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

@media (max-width: 1180px) {
  .stats-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .campus-layout,
  .two-column-grid,
  .method-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-slider,
  .hero-slider-track {
    min-height: 360px;
  }

  .hero-metrics {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 22px;
    padding-bottom: 44px;
  }

  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: min(340px, 82vw);
  }

  .hero h1 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .section-title {
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .stats-grid,
  .course-grid,
  .pillar-grid,
  .result-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-nav-inner,
  .section-nav-primary,
  .section-nav-secondary {
    gap: 6px;
  }

  .section-nav a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .hero-metric,
  .panel,
  .stat-card,
  .timeline-card,
  .course-card,
  .pillar-card,
  .result-card,
  .cta {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-slider,
  .hero-slider-track,
  .campus-photo {
    min-height: 300px;
  }

  .visual-caption {
    left: 14px;
    right: 14px;
    bottom: 64px;
    max-width: none;
    padding: 12px 14px;
  }

  .hero-slider-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .timeline-step {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .timeline-step strong {
    width: 42px;
    height: 42px;
  }
}
