:root {
  color-scheme: light;
  --aub-red: #840132;
  --aub-red-dark: #5f0024;
  --aub-navy: #142d66;
  --aub-blue: #005e99;
  --aub-teal: #175757;
  --aub-green: #26613a;
  --aub-yellow: #eb9f00;
  --ink: #151515;
  --muted: #55585f;
  --line: #d9d9d9;
  --paper: #ffffff;
  --soft: #f6f4f1;
  --stone: #ebe5dc;
  --shadow: 0 18px 45px rgba(21, 21, 21, 0.12);
  --max-width: 1160px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Proxima Nova", "Cairo", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(132, 1, 50, 0.35);
  text-underline-offset: 4px;
}

a:hover {
  color: var(--aub-red);
  text-decoration-color: currentColor;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--aub-red);
  font-size: 4.35rem;
  font-weight: 800;
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 800;
}

p {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border: 2px solid var(--aub-red);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 36px;
  color: var(--ink);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-visible {
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(21, 21, 21, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex-direction: column;
  text-decoration: none;
}

.brand-title {
  color: var(--aub-red);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(21, 21, 21, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  min-height: 86svh;
  overflow: hidden;
  align-items: center;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 34%, rgba(255, 255, 255, 0.16) 68%),
    linear-gradient(0deg, rgba(246, 244, 241, 0.78) 0%, rgba(246, 244, 241, 0.08) 30%);
}

.hero-content {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 44px) 0 72px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--aub-red);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 650px;
  color: #262626;
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--aub-red);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--aub-red-dark);
  color: var(--paper);
}

.button-secondary {
  border-color: rgba(132, 1, 50, 0.3);
  background: rgba(255, 255, 255, 0.78);
  color: var(--aub-red);
}

.button-secondary:hover {
  border-color: var(--aub-red);
  background: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--aub-red);
}

.button-light.is-disabled {
  cursor: default;
}

.button-light.is-disabled:hover {
  transform: none;
}

.section-inner {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.intro-section,
.program-section,
.pods-section,
.timeline-section,
.student-section,
.podcast-section,
.outcomes-section {
  padding: 86px 0;
}

.intro-section {
  background: var(--soft);
}

.intro-grid,
.split-layout,
.podcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.intro-grid p:last-child,
.split-layout p,
.podcast-grid p:last-child,
.checklist {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(21, 21, 21, 0.02);
}

.feature-card:nth-child(2) {
  border-top: 5px solid var(--aub-teal);
}

.feature-card:nth-child(3) {
  border-top: 5px solid var(--aub-navy);
}

.feature-card:first-child {
  border-top: 5px solid var(--aub-red);
}

.feature-number {
  display: block;
  margin-bottom: 22px;
  color: var(--aub-red);
  font-size: 0.86rem;
  font-weight: 900;
}

.feature-card p {
  color: var(--muted);
  font-size: 1rem;
}

.pods-section {
  background: var(--aub-red);
  color: var(--paper);
}

.pods-section .section-kicker,
.pods-section h2,
.pods-section p {
  color: var(--paper);
}

.pod-structure {
  display: grid;
  gap: 12px;
}

.pod-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 88px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 22px;
}

.pod-item strong {
  color: var(--paper);
  font-size: 2rem;
  line-height: 1;
}

.pod-item strong.pod-label {
  font-size: 1.18rem;
  line-height: 1.12;
}

.pod-item span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.pod-note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.45;
}

.timeline-section {
  background: var(--stone);
}

.timeline-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  border-left: 6px solid var(--aub-red);
  border-radius: 8px;
  background: var(--paper);
  padding: 28px;
  box-shadow: var(--shadow);
}

.timeline-marker {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--aub-navy);
  color: var(--paper);
  font-weight: 900;
}

.timeline-list p {
  color: var(--muted);
}

.student-section {
  background: var(--paper);
}

.checklist p {
  margin-bottom: 18px;
}

.checklist ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.checklist li::marker {
  color: var(--aub-red);
}

.podcast-section {
  background: var(--aub-navy);
  color: var(--paper);
}

.podcast-section .section-kicker {
  color: #ffdca0;
}

.podcast-section .podcast-grid > p {
  color: var(--paper);
  font-weight: 650;
}

.outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.outcome-list span {
  border: 1px solid var(--line);
  border-left: 5px solid var(--aub-green);
  border-radius: 8px;
  background: var(--paper);
  padding: 14px 16px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.outcome-list span:nth-child(2n) {
  border-left-color: var(--aub-blue);
}

.outcome-list span:nth-child(3n) {
  border-left-color: var(--aub-yellow);
}

.apply-section {
  padding: 82px 0;
  background: var(--aub-teal);
  color: var(--paper);
}

.apply-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.apply-section .section-kicker,
.apply-section h2,
.apply-section p {
  color: var(--paper);
}

.apply-actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.apply-actions p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}

.apply-actions .apply-contact {
  color: var(--paper);
  font-weight: 800;
}

.apply-contact a {
  color: var(--paper);
  text-decoration-color: rgba(255, 255, 255, 0.72);
}

.apply-contact a:hover {
  color: #ffdca0;
  text-decoration-color: currentColor;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
  background: #111111;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
}

.site-footer p + p {
  margin-top: 10px;
}

.copyright {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 17px;
  }

  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .site-header {
    padding: 13px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 38px rgba(21, 21, 21, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 18px 24px;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
  }

  .hero {
    min-height: 82vh;
    min-height: 82svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.22) 100%),
      linear-gradient(0deg, rgba(246, 244, 241, 0.82) 0%, rgba(246, 244, 241, 0.04) 36%);
  }

  .hero-content,
  .section-inner {
    width: min(100% - 36px, var(--max-width));
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-lede {
    font-size: 1.16rem;
  }

  .intro-grid,
  .split-layout,
  .podcast-grid,
  .apply-inner,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .feature-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.86rem;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    min-height: 80vh;
    min-height: 80svh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 28px, var(--max-width));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .intro-section,
  .program-section,
  .pods-section,
  .timeline-section,
  .student-section,
  .podcast-section,
  .outcomes-section,
  .apply-section {
    padding: 62px 0;
  }

  .pod-item,
  .timeline-list li {
    grid-template-columns: 1fr;
  }

  .pod-item {
    gap: 10px;
  }
}

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