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

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #161620;
  --border: #2a2a3a;
  --text: #e8e8f0;
  --text-muted: #aaaabe;
  --text-dim: #707087;
  --accent: #6c5ce7;
  --accent-bright: #a29bff;
  --accent-glow: rgba(108, 92, 231, 0.3);
  --green: #00d4a0;
  --orange: #ff8c42;
  --cyan: #60d8ff;
  --radius: 12px;
  --content-width: 900px;
  --wide-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--accent-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  background: var(--accent);
  color: #fff;
  left: 1rem;
  padding: .5rem .8rem;
  position: fixed;
  top: -4rem;
  z-index: 300;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  margin: 0 auto;
  max-width: var(--content-width);
  padding: 0 24px;
}

nav {
  backdrop-filter: blur(12px);
  background: #f5f5f0;
  border-bottom: 1px solid #d5d5d0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

nav .container {
  align-items: center;
  display: flex;
  height: 90px;
  justify-content: space-between;
  max-width: var(--wide-width);
}

.brand img {
  display: block;
  height: 50px;
  width: auto;
}

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

.nav-links a {
  color: #1a2a5a;
  font-size: 1rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-cta-mobile {
  display: none;
}

.nav-cta {
  background: var(--accent);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
}

.nav-cta:hover {
  background: var(--accent-bright);
  text-decoration: none;
}

.hamburger {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  background: #1a2a5a;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform .2s ease, opacity .2s ease;
  width: 24px;
}

.hero {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow), transparent);
  padding: 160px 0 64px;
}

.hero .badge {
  background: rgba(96, 216, 255, .14);
  border: 1px solid rgba(96, 216, 255, .3);
  border-radius: 100px;
  color: var(--cyan);
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 20px;
  padding: 6px 14px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 760px;
}

.hero h1 .highlight {
  color: var(--accent-bright);
}

.hero .subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 760px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.hero-meta .meta-item {
  align-items: center;
  color: var(--text-muted);
  display: flex;
  font-size: .95rem;
  gap: 8px;
}

.hero-meta .icon {
  font-size: 1.1rem;
}

section {
  padding: 64px 0;
}

section.band {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.section-label {
  color: var(--accent-bright);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 760px;
}

.lead {
  color: var(--text-muted);
  font-size: 1.03rem;
  max-width: 780px;
}

.split-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.outcome-card,
.credential-card,
.hours-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.band .info-card,
.band .outcome-card,
.band .hours-card {
  background: var(--bg-card);
}

.info-card h3,
.outcome-card h3,
.credential-card h3,
.hours-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.info-card p,
.outcome-card p,
.credential-card p,
.hours-card p {
  color: var(--text-muted);
  font-size: .95rem;
}

.learn-list,
.plain-list {
  list-style: none;
}

.learn-list li,
.plain-list li {
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  padding: 12px 0;
}

.learn-list li:last-child,
.plain-list li:last-child {
  border-bottom: 0;
}

.learn-list .check {
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
}

.plain-list li::before {
  color: var(--accent-bright);
  content: "•";
  flex-shrink: 0;
  font-weight: 700;
}

.audience-table,
.module-table,
.hours-table {
  border-collapse: collapse;
  width: 100%;
}

.audience-table caption,
.module-table caption,
.hours-table caption {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.audience-table th,
.module-table th,
.hours-table th {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .9rem;
  font-weight: 650;
  padding: 13px 16px;
  text-align: left;
}

.audience-table td,
.module-table td,
.hours-table td {
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .92rem;
  padding: 13px 16px;
  vertical-align: top;
}

.audience-table td:first-child,
.module-table td:first-child,
.hours-table td:first-child {
  color: var(--text);
  font-weight: 650;
}

.audience-table tr:hover td,
.module-table tr:hover td,
.hours-table tr:hover td {
  background: rgba(255, 255, 255, .025);
}

.table-wrap {
  overflow-x: auto;
}

.prereq-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  color: var(--text-muted);
  margin: 20px 0 28px;
  padding: 20px;
}

.prereq-note strong {
  color: var(--accent-bright);
}

.hours-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.hours-card {
  border-top: 3px solid var(--accent);
}

.hours-card.full-time {
  border-top-color: var(--green);
}

.hours-card .hours {
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 8px 0;
}

.hours-card .hours span {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
}

.module-table td:first-child {
  white-space: nowrap;
}

.module-table .output {
  color: var(--accent-bright);
}

.credential-card {
  background: linear-gradient(135deg, rgba(108, 92, 231, .18), rgba(0, 212, 160, .08));
  border-color: rgba(162, 155, 255, .45);
}

.credential-card .credential-mark {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 8px;
}

.credential-card strong {
  color: var(--text);
}

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

.outcome-card {
  border-top: 2px solid var(--accent);
}

.outcome-card:nth-child(2) {
  border-top-color: var(--green);
}

.outcome-card:nth-child(3) {
  border-top-color: var(--orange);
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  align-items: center;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 18px 22px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--accent-bright);
  content: "+";
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: .95rem;
}

.cta-strip {
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--accent-glow), transparent);
  padding: 76px 0;
  text-align: center;
}

.cta-strip h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-strip p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  border-radius: 10px;
  display: inline-block;
  font-size: .95rem;
  font-weight: 650;
  padding: 13px 26px;
}

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

.btn-primary:hover {
  background: var(--accent-bright);
  text-decoration: none;
}

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

.btn-secondary:hover {
  border-color: var(--accent);
  text-decoration: none;
}

footer {
  background: #f5f5f0;
  border-top: 1px solid #d5d5d0;
}

footer .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  max-width: var(--wide-width);
  min-height: 72px;
}

footer .copyright {
  align-items: center;
  color: #1a2a5a;
  display: flex;
  font-size: .9rem;
  gap: 10px;
}

footer .copyright img {
  height: 24px;
  opacity: .8;
  width: auto;
}

footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

footer .links a {
  color: #1a2a5a;
  font-size: .9rem;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: .92rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    background: #f5f5f0;
    border-bottom: 1px solid #d5d5d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 12px 24px 18px;
    position: absolute;
    right: 0;
    top: 90px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #e5e5e0;
    padding: 11px 0;
  }

  .nav-links li:last-child {
    border-bottom: 0;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    padding-top: 14px;
  }

  .nav-cta-mobile .nav-cta {
    display: block;
    text-align: center;
  }

  .split-grid,
  .hours-grid,
  .assessment-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 0;
  }

  .hero {
    padding-top: 140px;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas a {
    text-align: center;
    width: 100%;
  }

  footer .container {
    flex-direction: column;
    padding-bottom: 18px;
    padding-top: 18px;
  }

  footer .links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    height: 42px;
  }

  nav .container {
    height: 78px;
  }

  .nav-links {
    top: 78px;
  }

  .hero {
    padding-top: 126px;
  }

  .table-wrap {
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px;
  }

  .audience-table,
  .module-table,
  .hours-table {
    min-width: 640px;
  }
}
