:root {
  --bg: #ffffff;
  --page: #ffffff;
  --page-muted: #f4f9fc;
  --ink: #07111f;
  --ink-soft: #53677a;
  --line: #d9ebf5;
  --panel: #ffffff;
  --dark-panel: #07111f;
  --panel-strong: #07111f;
  --text: #ffffff;
  --muted: #53677a;
  --faint: rgba(0, 59, 142, 0.12);
  --cyan: #00aeef;
  --cyan-soft: #8ce7ff;
  --cyan-glow: #28c7ff;
  --navy: #003b8e;
  --deep: #001f5b;
  --radius: 8px;
  --shadow: 0 18px 46px rgba(0, 59, 142, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

body::selection {
  background: rgba(0, 174, 239, 0.42);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid #e5eef5;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.06);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand-link img {
  width: min(165px, 34vw);
  filter: drop-shadow(0 8px 18px rgba(0, 59, 142, 0.12));
}

.main-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav {
  justify-content: flex-end;
  margin-left: auto;
}

.nav-actions {
  flex-shrink: 0;
}

.main-nav a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #24384a;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
}

.main-nav > a::after,
.nav-dropdown-toggle::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown-toggle.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid var(--navy);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  font-size: 0;
  line-height: 0;
  transition: transform 180ms ease, border-top-color 180ms ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  border-top-color: var(--navy);
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 60;
  display: grid;
  min-width: 210px;
  padding: 12px 0;
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 42px rgba(0, 59, 142, 0.14);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -8px;
  left: 26px;
  width: 18px;
  height: 18px;
  border-top: 1px solid rgba(0, 174, 239, 0.24);
  border-left: 1px solid rgba(0, 174, 239, 0.24);
  background: #ffffff;
  content: "";
  transform: rotate(45deg);
}

.nav-dropdown::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 14px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  justify-content: space-between;
  border-radius: 6px;
  margin: 0 10px;
  padding: 12px 16px;
  color: #24384a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: #eaf8fe;
  color: var(--navy);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 59, 142, 0.18);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 59, 142, 0.24);
}

.btn-outline {
  border-color: rgba(0, 174, 239, 0.42);
  background: #fff;
  color: var(--navy);
}

.site-header .btn-outline,
.hero .btn-outline {
  background: #fff;
  color: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  border-bottom: 1px solid var(--line);
  padding: 146px 0 92px;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 59, 142, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 59, 142, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  opacity: 0.8;
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.hero-logo {
  width: min(390px, 90%);
  margin-bottom: 30px;
  filter: drop-shadow(0 12px 24px rgba(0, 59, 142, 0.1));
}

.eyebrow,
.card-kicker {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(0, 174, 239, 0.26);
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.11);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 11px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--navy);
}

h1,
h2,
h3,
.page-title {
  font-family: Cinzel, Georgia, serif;
}

.hero h1,
.page-title,
.section-intro h1,
.article h1 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.08;
}

.hero h1 {
  color: var(--ink);
}

.hero h1 span,
.stat-card strong {
  background: linear-gradient(135deg, #d6f7ff, var(--cyan-soft), var(--cyan-glow), var(--cyan), var(--navy));
  background-clip: text;
  color: transparent;
}

.hero p,
.lead,
.section-intro p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero p {
  color: var(--ink-soft);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.center-actions {
  justify-content: center;
}

.command-panel,
.card {
  border: 1px solid rgba(0, 174, 239, 0.22);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.command-panel {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.08), rgba(255, 255, 255, 0)),
    #fff;
  box-shadow: 0 24px 70px rgba(0, 59, 142, 0.12);
  color: var(--ink);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-title img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.panel-title span,
.metric small {
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
}

.panel-title h2,
.card h2 {
  margin: 6px 0 0;
  color: var(--ink);
}

.panel-title h2 {
  color: var(--ink);
}

.metric {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7fbfe;
}

.metric strong {
  color: var(--ink);
}

.metric div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.metric b {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--navy);
}

.metric > span {
  display: block;
  height: 7px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--navy));
}

.section,
.page-shell {
  padding: clamp(76px, 9vw, 120px) 0;
  background: var(--page);
}

.page-shell {
  padding-top: 150px;
}

.section-tight {
  padding-top: 34px;
  padding-bottom: 86px;
}

.section-muted {
  border-block: 1px solid var(--line);
  background: var(--page-muted);
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-copy .section-intro {
  max-width: 680px;
  margin: 0 0 24px;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  padding: 28px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: 0 24px 56px rgba(0, 59, 142, 0.13);
  transform: translateY(-4px);
}

.card p,
.site-footer p,
.contact-list {
  color: var(--muted);
  line-height: 1.75;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.card-meta span {
  border: 1px solid var(--faint);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

.course-stat-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  margin-bottom: 28px;
  padding: 0 2px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.course-stat-grid::-webkit-scrollbar {
  height: 8px;
}

.course-stat-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 59, 142, 0.18);
}

.course-stat-grid .stat-card {
  flex: 1 0 0;
  min-width: 190px;
  scroll-snap-align: start;
}

.course-stat-grid .stat-card strong {
  white-space: nowrap;
}

.course-stat-grid .stat-card span {
  white-space: nowrap;
}

.course-curriculum {
  padding-top: 34px;
}

.course-filter-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.course-filter-card h2 {
  margin: 10px 0 8px;
}

.course-filter-card p {
  margin: 0;
}

.course-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.course-filter-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 999px;
  padding: 0 15px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.course-filter-row a:hover,
.course-filter-row a.active {
  border-color: rgba(0, 174, 239, 0.5);
  background: #eaf8fe;
  color: var(--navy);
  transform: translateY(-2px);
}

.course-filter-row a.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.course-module-grid {
  align-items: start;
}

.curriculum-accordion {
  display: grid;
  gap: 16px;
}

.curriculum-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.22);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.curriculum-card:hover,
.curriculum-card[open] {
  border-color: rgba(0, 174, 239, 0.46);
  box-shadow: 0 24px 56px rgba(0, 59, 142, 0.13);
}

.curriculum-card:hover {
  transform: translateY(-2px);
}

.curriculum-card summary {
  position: relative;
  display: grid;
  grid-template-columns: 6px minmax(0, 1fr) minmax(280px, auto) 34px;
  gap: 22px;
  align-items: center;
  min-height: 142px;
  padding: 26px 28px;
  cursor: pointer;
  list-style: none;
  list-style-type: none;
}

.curriculum-card summary::-webkit-details-marker {
  display: none;
}

.curriculum-accent {
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--navy));
}

.curriculum-summary-main {
  display: grid;
  gap: 10px;
}

.curriculum-title {
  color: var(--ink);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  line-height: 1.2;
}

.curriculum-description {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.curriculum-meta {
  display: flex;
  max-width: 420px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.curriculum-meta span {
  border: 1px solid var(--faint);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.curriculum-action {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 174, 239, 0.28);
  border-radius: 999px;
  background: #eaf8fe;
  color: var(--navy);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.curriculum-action-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.curriculum-card[open] .curriculum-action {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.curriculum-card[open] .curriculum-action-icon {
  transform: translateY(2px) rotate(225deg);
}

.curriculum-panel {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.05), transparent 34%),
    #fff;
  padding: 28px;
  animation: curriculumReveal 180ms ease both;
}

@keyframes curriculumReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.curriculum-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.curriculum-panel-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

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

.curriculum-topic-card {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(0, 174, 239, 0.18);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.curriculum-topic-card:hover {
  border-color: rgba(0, 174, 239, 0.44);
  background: #f7fbfe;
  box-shadow: 0 14px 30px rgba(0, 59, 142, 0.08);
  transform: translateY(-2px);
}

.topic-indicator {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 174, 239, 0.12);
}

.curriculum-topic-card strong {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

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

.curriculum-outcomes article {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfe;
  padding: 14px;
}

.curriculum-outcomes article span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--navy);
}

.curriculum-outcomes article span::before {
  display: block;
  width: 5px;
  height: 9px;
  margin: 3px 0 0 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.curriculum-outcomes p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.certification-card {
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 10px;
  text-align: center;
}

.certification-card strong {
  color: var(--navy);
  font-family: Cinzel, Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.certification-card span:last-child {
  color: var(--muted);
  font-size: 14px;
}

.power-tracks-section {
  padding-top: 42px;
}

.power-tracks-intro {
  max-width: 880px;
}

.power-tracks-table-shell {
  overflow-x: auto;
  border: 1px solid rgba(0, 174, 239, 0.26);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 59, 142, 0.1);
}

.power-tracks-table-shell::-webkit-scrollbar {
  height: 8px;
}

.power-tracks-table-shell::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 59, 142, 0.22);
}

.course-track-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

.course-track-table th,
.course-track-table td {
  padding: 20px 24px;
  text-align: left;
}

.course-track-table th {
  border-bottom: 1px solid rgba(0, 174, 239, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.1), transparent 42%),
    #f7fbfe;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.course-track-table th:first-child {
  border-top-left-radius: var(--radius);
}

.course-track-table th:last-child {
  border-top-right-radius: var(--radius);
}

.course-track-table th:nth-child(2),
.course-track-table td:nth-child(2) {
  width: 180px;
  text-align: center;
}

.course-track-table td {
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  vertical-align: middle;
  transition: background 180ms ease, color 180ms ease;
}

.course-track-table tbody tr:hover td {
  background: #f7fbfe;
}

.course-track-table tbody tr:last-child td {
  border-bottom: 0;
}

.course-track-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius);
}

.course-track-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius);
}

.track-cell {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.track-cell strong {
  color: var(--ink);
  font-weight: 900;
}

.track-indicator {
  position: relative;
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(0, 174, 239, 0.28);
  border-radius: 999px;
  background: #eaf8fe;
  color: var(--navy);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.track-indicator::before {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.course-track-table tbody tr:hover .track-indicator {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(0, 59, 142, 0.18);
  color: #fff;
  transform: translateX(2px);
}

.course-duration-pill {
  display: inline-flex;
  min-width: 98px;
  justify-content: center;
  border: 1px solid rgba(0, 174, 239, 0.28);
  border-radius: 999px;
  background: #eaf8fe;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  white-space: nowrap;
}

.track-audience {
  display: inline-block;
  max-width: 420px;
  line-height: 1.6;
}

.course-filter-row a:focus-visible {
  outline: 3px solid rgba(0, 174, 239, 0.24);
  outline-offset: 3px;
}

.work-card {
  display: grid;
  gap: 14px;
}

.work-card h2,
.work-card p {
  margin-top: 0;
}

.work-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.work-image-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.12), transparent 36%),
    #f7fbfe;
}

.work-image-placeholder span {
  color: var(--navy);
  font-family: Cinzel, Georgia, serif;
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.client-tile {
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 59, 142, 0.06);
}

.client-tile img {
  max-height: 54px;
  margin-inline: auto;
  object-fit: contain;
}

.client-tile strong {
  color: var(--ink);
  font-weight: 900;
}

.client-tile span {
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
}

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

.stat-card {
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: var(--radius);
  padding: 30px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 38px rgba(0, 59, 142, 0.08);
}

.stat-card strong {
  display: block;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
}

.stat-card span {
  color: var(--muted);
}

.stack {
  display: grid;
  gap: 16px;
}

.form-card {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(0, 174, 239, 0.24);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 13px 14px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(140, 231, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.14);
}

.inline-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-list.large {
  gap: 12px;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.55;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.contact-item a {
  transition: color 180ms ease;
}

.contact-item a:hover {
  color: var(--navy);
}

.contact-icon {
  display: grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--navy);
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.article {
  max-width: 860px;
}

.article-body {
  margin-top: 24px;
}

.article code {
  color: var(--navy);
}

.notice {
  border: 1px solid rgba(0, 174, 239, 0.28);
  border-radius: var(--radius);
  background: #eaf8fe;
  color: var(--ink);
  padding: 14px 16px;
}

.notice.error {
  border-color: rgba(255, 99, 132, 0.4);
  background: rgba(255, 99, 132, 0.14);
}

.flash-wrap {
  position: fixed;
  z-index: 60;
  top: 94px;
  inset-inline: 0;
}

.career-apply {
  margin-top: clamp(42px, 7vw, 78px);
  padding-top: clamp(36px, 5vw, 62px);
  border-top: 1px solid var(--line);
}

.portal-shell {
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.06), transparent 30%),
    var(--page);
}

.portal-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.portal-heading .page-title {
  margin-top: 16px;
}

.portal-user {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.portal-user span {
  color: var(--muted);
  word-break: break-word;
}

.portal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 59, 142, 0.06);
}

.portal-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.portal-nav a:hover,
.portal-nav a.active {
  background: #eaf8fe;
  color: var(--navy);
}

.portal-stats {
  margin-bottom: 28px;
}

.portal-grid {
  margin-top: 0;
}

.portal-module {
  align-items: start;
}

.compact-card {
  padding: 22px;
}

.compact-card h2 {
  margin-top: 0;
  font-size: 20px;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.builder-form h2 {
  margin-top: 0;
}

.builder-blocks,
.version-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.builder-block {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfe;
  cursor: grab;
}

.builder-block.dragging {
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: 0 16px 36px rgba(0, 59, 142, 0.12);
  opacity: 0.7;
}

.builder-block span,
.version-list p {
  margin: 0;
  color: var(--muted);
}

.check-row {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.check-row input {
  width: auto;
}

.preview-panel {
  margin-top: 24px;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-list p {
  display: grid;
  gap: 4px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.mini-list span {
  color: var(--muted);
  font-size: 13px;
}

.crm-search {
  max-width: 520px;
}

.site-footer {
  border-top: 1px solid rgba(0, 174, 239, 0.2);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.12), transparent 34%),
    #07111f;
  color: #fff;
}

.site-footer h2 {
  color: #fff;
}

.site-footer p,
.site-footer .contact-list {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr 1fr;
  gap: 44px;
  padding: 70px 0 42px;
}

.footer-logo {
  width: min(280px, 90%);
  filter: drop-shadow(0 0 20px rgba(0, 174, 239, 0.28));
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(140, 231, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: rgba(140, 231, 255, 0.46);
  background: rgba(0, 174, 239, 0.14);
  color: var(--cyan-soft);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-links svg rect,
.social-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--cyan-soft);
}

.footer-contact-band {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
  padding: 20px 0;
}

.footer-contact-list p {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.footer-contact-list .contact-icon {
  flex-basis: 20px;
  width: 20px;
  height: 20px;
  color: var(--cyan-soft);
}

.footer-contact-list .contact-item a:hover {
  color: var(--cyan-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 174, 239, 0.1);
  padding: 18px 0;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom-row div {
  display: flex;
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 1060px) {
  .nav-actions,
  .main-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav.open {
    position: fixed;
    top: 82px;
    right: 12px;
    display: grid;
    gap: 0;
    width: max-content;
    min-width: 230px;
    max-width: calc(100vw - 24px);
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 24px 36px rgba(7, 17, 31, 0.1);
    padding: 16px;
  }

  .main-nav.open a,
  .main-nav.open .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    padding: 14px;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
  }

  .main-nav.open .nav-dropdown-toggle {
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open .nav-dropdown {
    display: grid;
  }

  .main-nav.open .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 22px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
  }

  .main-nav.open .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .main-nav.open .nav-dropdown-menu::before {
    display: none;
  }

  .main-nav.open .nav-dropdown-menu a {
    margin: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 13px 0;
    color: #8a98a8;
    font-size: 13px;
    font-weight: 500;
    white-space: normal;
  }

  .main-nav.open .nav-dropdown-menu a:hover,
  .main-nav.open .nav-dropdown-menu a.active {
    background: transparent;
    color: var(--navy);
  }

  .hero-grid,
  .split,
  .builder-layout,
  .course-filter-card,
  .portal-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .course-filter-row {
    justify-content: flex-start;
  }

  .curriculum-card summary {
    grid-template-columns: 6px minmax(0, 1fr) 34px;
  }

  .curriculum-meta {
    grid-column: 2 / 3;
    justify-content: flex-start;
    max-width: none;
  }

  .curriculum-action {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

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

  .curriculum-outcomes {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .stats-grid,
  .certification-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

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

  .hero {
    padding-top: 124px;
  }

  .hero h1,
  .page-title,
  .section-intro h1,
  .article h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .curriculum-card summary {
    grid-template-columns: 5px minmax(0, 1fr) 32px;
    gap: 14px;
    min-height: auto;
    padding: 22px 18px;
  }

  .curriculum-title {
    font-size: 20px;
  }

  .curriculum-description {
    font-size: 14px;
  }

  .curriculum-panel {
    padding: 20px 18px;
  }

  .curriculum-panel-head {
    display: grid;
    align-items: start;
  }

  .curriculum-topic-grid {
    grid-template-columns: 1fr;
  }

  .power-tracks-section {
    padding-top: 28px;
  }

  .course-track-table {
    min-width: 680px;
  }

  .course-track-table th,
  .course-track-table td {
    padding: 16px 18px;
  }

  .course-stat-grid {
    display: flex;
  }

  .course-stat-grid .stat-card {
    flex: 0 0 210px;
  }

  .card-grid.three,
  .card-grid.four,
  .stats-grid,
  .certification-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .inline-form,
  .footer-bottom-row,
  .footer-contact-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
