:root {
  --bg: #030014;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.12);
  --text: #edf6ff;
  --muted: #9fb0c9;
  --cyan: #00b4db;
  --aqua: #00f2fe;
  --violet: #8338ec;
  --rose: #ff006e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 180, 219, 0.22), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(255, 0, 110, 0.14), transparent 28rem),
    radial-gradient(circle at 50% 95%, rgba(131, 56, 236, 0.18), transparent 34rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 28px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--aqua);
}

.hero {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.logo {
  width: 112px;
  filter: drop-shadow(0 0 28px rgba(0, 180, 219, 0.65));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.lead {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.identity-grid,
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.identity-grid article,
.assessment-grid article,
.outcomes div {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.identity-grid article,
.assessment-grid article {
  min-height: 116px;
  padding: 20px;
  border-radius: 14px;
}

.identity-grid span,
.assessment-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.identity-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.section {
  margin-top: 44px;
}

.section-heading {
  margin-bottom: 18px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.outcomes div {
  min-height: 150px;
  padding: 20px;
  border-radius: 14px;
  color: #dbeafe;
  line-height: 1.65;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.syllabus-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.syllabus-table th,
.syllabus-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  line-height: 1.55;
}

.syllabus-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #00111a;
  background: linear-gradient(135deg, var(--aqua), var(--cyan));
  font-size: 0.78rem;
  font-weight: 800;
  text-align: left;
  text-transform: uppercase;
}

.syllabus-table td {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.035);
}

.syllabus-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.06);
}

.syllabus-table tbody tr:hover td {
  background: rgba(0, 180, 219, 0.11);
}

.syllabus-table td:first-child,
.syllabus-table td:nth-child(2),
.syllabus-table td:nth-child(7) {
  text-align: center;
  font-weight: 700;
  color: var(--aqua);
}

.assessment-grid article {
  display: grid;
  align-content: center;
  background: var(--panel-strong);
}

.assessment-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 2rem;
}

@media (max-width: 960px) {
  .identity-grid,
  .assessment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcomes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 24px, 1180px);
    padding-top: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .logo {
    width: 88px;
  }

  .identity-grid,
  .assessment-grid,
  .outcomes {
    grid-template-columns: 1fr;
  }
}
