:root {
  --base: #12312b;
  --base-2: #0c231f;
  --accent: #0f9f8e;
  --gold: #f59e0b;
  --soft: #f4fffb;
  --wash: #ccfbf1;
  --ink: #172033;
  --muted: #65758b;
  --line: #d9e2ec;
  --surface: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.62;
  background: #fff;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

p {
  color: #455468;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
}

h2 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

h3 {
  font-size: 1.05rem;
}

label {
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(12, 35, 31, .97);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .14);
  backdrop-filter: blur(12px);
}

.navbar {
  padding-block: .68rem;
}

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

.nav-link {
  color: rgba(255, 255, 255, .82);
  font-size: .94rem;
  font-weight: 720;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.btn {
  border-radius: 8px;
  font-weight: 800;
  padding: .72rem 1rem;
}

.btn-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #111827;
}

.btn-cta:hover {
  filter: brightness(.94);
  color: #111827;
}

.btn-main {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-main:hover {
  background: var(--base);
  border-color: var(--base);
  color: #fff;
}

.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .65rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 18, 28, .94), rgba(6, 18, 28, .78), rgba(6, 18, 28, .36)),
    var(--hero) center/cover no-repeat;
}

.hero h1,
.hero p {
  color: #fff;
}

.hero-compact {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 74px 0 58px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.hero .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-card,
.hero-panel {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(2, 6, 23, .24);
  color: var(--ink);
}

.quick-card {
  display: grid;
  gap: 0;
}

.quick-card div {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.quick-card div:last-child {
  border-bottom: 0;
}

.quick-card span,
.hero-panel span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
}

.quick-card strong,
.hero-panel strong {
  display: block;
  color: var(--base);
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-panel {
  padding: 24px;
}

.hero-panel strong {
  font-size: 1.45rem;
}

.trust-strip {
  background: var(--gold);
  color: #101828;
  font-size: .95rem;
  font-weight: 840;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.section-dark {
  background: var(--base);
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff;
}

.intro-section {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.program-grid,
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.program-card,
.feature-card,
.post-card,
.stat-card,
.path-card,
.locator-panel,
.airport-panel {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.program-card,
.feature-card,
.post-card {
  box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}

.program-card:hover,
.feature-card:hover,
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .1);
}

.program-card span,
.path-card span,
.timeline-item > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--wash);
  color: var(--base);
  font-size: .9rem;
  font-weight: 900;
}

.program-card a {
  display: inline-block;
  margin-top: 4px;
  font-weight: 820;
}

.airport-panel {
  background: var(--base);
  border-color: var(--base);
}

.airport-panel h2,
.airport-panel p {
  color: #fff;
}

.airport-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.airport-stats div,
.stat-card {
  border-left: 5px solid var(--gold);
  background: #fff;
  padding: 18px;
  border-radius: var(--radius);
}

.airport-stats strong,
.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: 1.55rem;
  line-height: 1;
}

.airport-stats span,
.stat-card span {
  color: var(--muted);
  font-size: .88rem;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline-item > span {
  margin-bottom: 0;
}

.timeline-item h3,
.timeline-item p {
  margin-bottom: 0;
}

.timeline-item h3 {
  margin-bottom: .3rem;
}

.academy-band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.split-band {
  background: linear-gradient(135deg, var(--base-2), var(--base) 58%, #0f766e);
  color: #fff;
  padding: 54px 0;
}

.split-band h2,
.split-band p {
  color: #fff;
}

.split-band p {
  opacity: .86;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.faq details {
  padding: 18px 20px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.article-body {
  max-width: 900px;
}

.article-body h2 {
  margin-top: 2rem;
}

.site-footer {
  padding: 56px 0;
  background: #07111f;
  color: rgba(255, 255, 255, .76);
}

.site-footer p {
  color: rgba(255, 255, 255, .76);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, .9);
  margin: .42rem 0;
  text-decoration: none;
}

.footer-title {
  color: #fff;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1199px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 52px 0;
  }

  .hero-compact {
    min-height: auto;
    padding: 58px 0 44px;
  }

.hero-shell {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-shell > * {
    min-width: 0;
  }

  .quick-card {
    max-width: 560px;
  }

  .program-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    display: block;
  }

  .cta-layout .btn {
    margin-top: 20px;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1040;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: clamp(1.62rem, 7vw, 2rem);
  }

  h2 {
    font-size: clamp(1.28rem, 6vw, 1.55rem);
  }

  .navbar-brand img {
    height: 38px;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(6, 18, 28, .95), rgba(6, 18, 28, .78)),
      var(--hero) center/cover no-repeat;
  }

  .hero-actions .btn,
  .cta-layout .btn {
    width: 100%;
  }

  .trust-strip .container {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 6px !important;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .airport-stats {
    grid-template-columns: 1fr;
  }
}
