
:root {
  --navy-950: #04162b;
  --navy-900: #071f3d;
  --navy-850: #0a294c;
  --navy-800: #0d355d;
  --navy-700: #174b77;
  --teal-700: #007f79;
  --teal-600: #009b92;
  --teal-500: #00aa9f;
  --teal-400: #22beb3;
  --teal-100: #ddf8f4;
  --teal-50: #f0fcfa;
  --azure-600: #0078d4;
  --ink: #102033;
  --muted: #5b6979;
  --soft: #f5f8fa;
  --soft-2: #edf3f6;
  --line: #dce5eb;
  --line-strong: #c9d5dd;
  --white: #ffffff;
  --success: #0b7b59;
  --danger: #b42318;
  --shadow-xs: 0 2px 10px rgba(4, 22, 43, .05);
  --shadow-sm: 0 10px 30px rgba(4, 22, 43, .08);
  --shadow-md: 0 22px 60px rgba(4, 22, 43, .13);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --container: 1200px;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }
::selection { color: var(--white); background: var(--teal-600); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 7px;
}
:target { scroll-margin-top: 130px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mt-18 { margin-top: 18px !important; }
.mt-22 { margin-top: 22px !important; }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-170%);
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-topbar {
  color: rgba(255,255,255,.84);
  background: var(--navy-950);
  font-size: .79rem;
}
.site-topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.site-topbar-group { display: flex; align-items: center; gap: 22px; }
.site-topbar a:hover { color: var(--teal-400); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(220,229,235,.9);
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(14px);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand img { width: 224px; height: auto; }
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--navy-850);
  font-size: .89rem;
  font-weight: 720;
  white-space: nowrap;
}
.nav a:hover { color: var(--teal-700); background: var(--teal-50); }
.nav a[aria-current="page"] { color: var(--teal-700); background: var(--teal-100); }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .79rem;
  font-weight: 800;
}
.language-switcher span { color: var(--line-strong); }
.language-switcher a { min-width: 22px; text-align: center; }
.language-switcher a[aria-current="true"] { color: var(--teal-700); }
.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--navy-900);
  background: var(--white);
}
.menu-toggle svg { width: 23px; height: 23px; }

/* Buttons and links */
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: var(--teal-700);
  box-shadow: 0 10px 25px rgba(0, 155, 146, .24);
}
.btn-primary:hover { background: #006f6a; box-shadow: 0 14px 30px rgba(0, 127, 121, .30); }
.btn-secondary { color: var(--white); background: var(--navy-900); }
.btn-secondary:hover { background: var(--navy-800); }
.btn-light { color: var(--navy-900); background: var(--white); }
.btn-ghost { color: var(--navy-900); border-color: var(--line-strong); background: transparent; }
.btn-block { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-700);
  font-weight: 820;
}
.text-link:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* Typography */
.eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-700);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--teal-500); }
h1, h2, h3 { color: var(--navy-950); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 5vw, 4.85rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.15rem); }
h3 { font-size: 1.2rem; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.section-head {
  margin-bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}
.section-head h2 { max-width: 760px; margin: 9px 0 0; }
.section-head > p { max-width: 580px; margin: 0; color: var(--muted); }

/* Homepage hero */
.hero {
  position: relative;
  overflow: clip;
  padding: 54px 0 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(34,190,179,.13), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  left: -190px;
  top: 40px;
  border: 1px solid rgba(0,170,159,.24);
  border-radius: 50%;
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(530px, 1.06fr);
  gap: 34px;
  align-items: stretch;
}
.hero-copy { padding: 46px 12px 48px 0; align-self: center; }
.hero h1 { margin: 19px 0 20px; max-width: 720px; }
.hero h1 span { display: block; color: var(--teal-700); }
.hero .lead { max-width: 650px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  color: var(--navy-800);
  font-size: .88rem;
  font-weight: 750;
}
.hero-proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { width: 18px; height: 18px; color: var(--teal-700); }
.hero-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius-xl);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,22,43,.04) 18%, rgba(4,22,43,.18) 55%, rgba(4,22,43,.94) 100%);
}
.hero-badge {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  max-width: 245px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  color: var(--white);
  background: rgba(4,22,43,.74);
  backdrop-filter: blur(12px);
  font-size: .85rem;
  font-weight: 800;
}
.hero-badge small { display: block; margin-top: 2px; color: rgba(255,255,255,.7); font-weight: 520; }
.hero-domain-grid {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-domain {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 11px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.18);
  background: rgba(4,22,43,.12);
}
.hero-domain:last-child { border-right: 0; }
.hero-domain:hover { background: rgba(0,170,159,.14); }
.hero-domain svg { width: 34px; height: 34px; margin-bottom: 9px; color: var(--teal-400); fill: none; stroke: currentColor; stroke-width: 1.7; }
.hero-domain strong { font-size: .84rem; letter-spacing: .035em; text-transform: uppercase; }
.hero-domain span { margin-top: 4px; color: rgba(255,255,255,.73); font-size: .72rem; line-height: 1.35; }
.brand-values { position: relative; z-index: 5; margin-top: 28px; }
.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.brand-value {
  min-height: 108px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
}
.brand-value:last-child { border-right: 0; }
.brand-value svg { width: 38px; height: 38px; color: var(--teal-700); fill: none; stroke: currentColor; stroke-width: 1.7; }
.brand-value strong { display: block; color: var(--navy-900); font-size: .83rem; letter-spacing: .04em; text-transform: uppercase; }
.brand-value span { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; line-height: 1.4; }

/* Page heroes */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 60px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 15%, rgba(34,190,179,.18), transparent 26%),
    linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0,170,159,.19);
  transform: rotate(24deg);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 940px; margin: 12px 0 14px; font-size: clamp(2.35rem, 4.4vw, 4rem); }
.page-hero .lead { max-width: 770px; margin: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 17px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--teal-700); font-weight: 750; }

/* Cards */
.domain-grid, .value-grid, .course-grid, .career-grid, .path-preview-grid {
  display: grid;
  gap: 22px;
}
.domain-grid { grid-template-columns: repeat(4, 1fr); }
.domain-card, .value-item, .course-card, .career-card, .path-preview-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.domain-card:hover, .value-item:hover, .course-card:hover, .career-card:hover, .path-preview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,155,146,.35);
  box-shadow: var(--shadow-sm);
}
.domain-card { min-height: 320px; display: flex; flex-direction: column; padding: 26px; }
.domain-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--teal-500); }
.domain-card .num { color: var(--teal-700); font-weight: 900; font-size: .78rem; letter-spacing: .08em; }
.domain-card h3 { margin: 24px 0 11px; }
.domain-card p { margin: 0 0 23px; color: var(--muted); font-size: .91rem; }
.domain-card .text-link { margin-top: auto; }
.accent-azure::before { background: #0078d4; }
.accent-agile::before { background: #00a99d; }
.accent-defense::before { background: #087f8c; }
.accent-offensive::before { background: #164b75; }
.accent-grc::before { background: #49657f; }

.course-grid { grid-template-columns: repeat(3, 1fr); }
.course-card { min-height: 326px; display: flex; flex-direction: column; padding: 25px; }
.course-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--teal-500); }
.course-card[data-domain="azure"]::before { background: #0078d4; }
.course-card[data-domain="defense"]::before { background: #087f8c; }
.course-card[data-domain="offensive"]::before { background: #123e66; }
.course-card[data-domain="agile"]::before { background: #00a99d; }
.course-card[data-domain="grc"]::before { background: #506b83; }
.course-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pill { display: inline-flex; align-items: center; min-height: 29px; padding: 5px 10px; border-radius: 999px; color: var(--teal-700); background: var(--teal-100); font-size: .72rem; font-weight: 820; }
.code { color: var(--muted); font-size: .73rem; font-weight: 780; }
.course-card h3 { margin: 22px 0 11px; font-size: 1.15rem; }
.course-card h3 a:hover { color: var(--teal-700); }
.course-card > p { margin: 0 0 20px; color: var(--muted); font-size: .9rem; }
.course-meta { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px; }
.course-meta span { padding: 5px 8px; border-radius: 7px; color: var(--navy-800); background: var(--soft-2); font-size: .71rem; font-weight: 730; }
.course-card > .text-link { margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }

.value-grid { grid-template-columns: repeat(4, 1fr); }
.value-item { padding: 27px; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--teal-700)); font-weight: 900; }
.value-item h3 { margin: 20px 0 8px; }
.value-item p { margin: 0; color: var(--muted); }

.path-preview-grid { grid-template-columns: repeat(2, 1fr); }
.path-preview-card { min-height: 155px; display: grid; grid-template-columns: 60px 1fr auto; gap: 17px; align-items: center; padding: 23px; }
.path-preview-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--teal-500); }
.path-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--teal-700); background: var(--teal-100); font-size: .78rem; font-weight: 900; }
.path-family { color: var(--teal-700); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.path-preview-card h3 { margin: 4px 0 5px; }
.path-preview-card p { margin: 0; color: var(--muted); font-size: .87rem; }
.path-arrow { color: var(--teal-700); font-size: 1.5rem; }
.path-preview-cta { margin-top: 25px; text-align: center; }

/* Rich layout blocks */
.split, .about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr); gap: 38px; align-items: start; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 42px; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 3px; }
.list-check { margin: 18px 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.list-check li { position: relative; padding-left: 29px; }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--teal-700); font-weight: 900; }
.sidebar-card, .source-box, .notice, .content-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.sidebar-card { position: sticky; top: 126px; }
.sidebar-card h2, .sidebar-card h3 { margin-top: 0; }
.sidebar-card p { color: var(--muted); }
.source-box { margin-top: 23px; background: var(--soft); }
.source-box a { color: var(--teal-700); word-break: break-word; }
.notice { color: var(--navy-800); background: var(--teal-50); border-color: rgba(0,155,146,.25); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.fact { padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--soft); }
.fact strong { display: block; color: var(--navy-900); }
.fact span { color: var(--muted); font-size: .86rem; }

/* Catalogue filters */
form.filter-shell {
  margin: 0 0 22px;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(4, minmax(135px, .8fr));
  gap: 14px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.filter-shell .field { min-width: 0; display: grid; gap: 7px; }
.filter-shell label { color: var(--navy-900); font-size: .8rem; font-weight: 820; }
.filter-search { position: relative; }
.filter-shell input, .filter-shell select {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--ink);
  background: var(--soft);
}
.filter-shell input:focus, .filter-shell select:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(0,170,159,.1); outline: 0; }
.filter-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 10px; padding-top: 2px; }
.filter-actions .btn { min-width: 150px; }
.catalog-toolbar { margin-bottom: 22px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.catalog-summary { font-weight: 800; color: var(--navy-800); }
.catalog-hint { font-size: .86rem; }
.empty-state { padding: 40px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius-md); color: var(--muted); background: var(--soft); }

/* Career/path pages */
.career-grid { grid-template-columns: repeat(2, 1fr); }
.career-grid-three { grid-template-columns: repeat(3, 1fr); }
.career-card { padding: 26px; }
.career-card-wide { grid-column: span 2; }
.career-card-head { display: flex; gap: 16px; align-items: center; }
.career-role-icon { min-width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--white); background: linear-gradient(135deg, var(--navy-800), var(--teal-700)); font-weight: 900; }
.career-label { color: var(--teal-700); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.career-card h3 { margin: 3px 0 0; }
.career-outcome { color: var(--muted); }
.career-steps { margin: 19px 0; padding: 0; display: grid; gap: 10px; list-style: none; counter-reset: steps; }
.career-steps li { position: relative; padding: 12px 12px 12px 42px; border-radius: 11px; background: var(--soft); }
.career-steps li::before { counter-increment: steps; content: counter(steps); position: absolute; left: 12px; top: 12px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-700); font-size: .69rem; font-weight: 900; }
.career-note { color: var(--muted); font-size: .85rem; }
.career-family { margin-top: 34px; }
.career-family-head { margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
.career-family-code { min-width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--white); background: var(--navy-900); font-weight: 900; }
.path-method, .path-principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.path-method article, .path-principles article { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.timeline { position: relative; display: grid; gap: 17px; }
.timeline::before { content: ""; position: absolute; left: 23px; top: 18px; bottom: 18px; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.timeline-num { position: relative; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-700); font-weight: 900; }
.timeline-item > div:last-child { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }

/* Learning formats and CTAs */
.learning-formats { color: var(--white); background: var(--navy-950); }
.format-showcase-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 40px; align-items: center; }
.format-copy .eyebrow, .learning-formats h2 { color: var(--white); }
.format-lead { color: rgba(255,255,255,.7); }
.format-list { display: grid; gap: 12px; margin: 26px 0; }
.format-list article { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.045); }
.format-list article > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: var(--navy-950); background: var(--teal-400); font-weight: 900; }
.format-list h3 { margin: 1px 0 4px; color: var(--white); }
.format-list p { margin: 0; color: rgba(255,255,255,.68); font-size: .88rem; }
.virtual-class-visual { position: relative; min-height: 440px; padding: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: radial-gradient(circle at 70% 15%, rgba(34,190,179,.32), transparent 27%), #08233e; }
.live-bar, .trainer-screen, .lesson-panel, .participants-row { position: relative; z-index: 2; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.06); }
.live-bar { display: flex; align-items: center; gap: 9px; padding: 11px 13px; font-size: .83rem; font-weight: 800; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 5px rgba(74,222,128,.12); }
.live-platform { margin-left: auto; color: rgba(255,255,255,.65); }
.trainer-screen { margin-top: 14px; display: flex; align-items: center; gap: 13px; padding: 17px; }
.trainer-avatar { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--navy-950); background: var(--teal-400); font-weight: 900; }
.trainer-screen span { display: block; color: rgba(255,255,255,.62); font-size: .82rem; }
.lesson-panel { margin-top: 14px; padding: 22px; }
.lesson-label { color: var(--teal-400); font-size: .73rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.lesson-panel h3 { color: var(--white); }
.lesson-progress { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
.lesson-progress span { display: block; width: 70%; height: 100%; background: var(--teal-400); }
.lesson-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.lesson-tags span { padding: 6px 8px; border-radius: 8px; color: rgba(255,255,255,.76); background: rgba(255,255,255,.08); font-size: .72rem; }
.participants-row { margin-top: 14px; display: flex; justify-content: space-between; align-items: center; padding: 14px; color: rgba(255,255,255,.72); font-size: .82rem; }
.participant-dots { display: flex; }
.participant-dots i { width: 29px; height: 29px; margin-left: -6px; display: grid; place-items: center; border: 2px solid #08233e; border-radius: 50%; color: var(--navy-950); background: var(--teal-400); font-size: .68rem; font-style: normal; font-weight: 900; }
.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 40px; border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 86% 25%, rgba(34,190,179,.38), transparent 28%), linear-gradient(125deg, var(--navy-950), var(--navy-800)); box-shadow: var(--shadow-md); }
.cta-band h2 { margin: 0 0 9px; color: var(--white); }
.cta-band p { margin: 0; color: rgba(255,255,255,.72); }
.cta-band-vivid { background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 30%), linear-gradient(125deg, var(--teal-700), var(--navy-900)); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 30px; align-items: start; }
.contact-panel { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-aside { position: sticky; top: 126px; color: var(--white); background: radial-gradient(circle at 80% 15%, rgba(34,190,179,.35), transparent 28%), var(--navy-950); border-color: transparent; }
.contact-aside h2, .contact-aside a { color: var(--white); }
.contact-aside > p, .contact-aside span { color: rgba(255,255,255,.7); }
.contact-kicker { color: var(--teal-400) !important; font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.13); }
.contact-detail strong { display: block; font-size: .8rem; }
.contact-promise, .security-note { margin-top: 16px; padding: 14px; border-radius: 13px; background: rgba(255,255,255,.06); }
.contact-promise { display: grid; grid-template-columns: 24px 1fr; gap: 9px; }
.contact-promise p, .security-note p { margin: 0; color: rgba(255,255,255,.73); font-size: .83rem; }
.form-heading h2 { margin: 6px 0 5px; font-size: 1.8rem; }
.form-heading > p:last-child { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy-900); font-size: .83rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--ink);
  background: var(--soft);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(0,170,159,.1); outline: 0; }
.checkbox-field { grid-template-columns: 22px 1fr; align-items: start; }
.checkbox-field input { width: 20px; min-height: 20px; margin-top: 2px; }
.form-submit-row { display: flex; align-items: center; gap: 17px; }
.form-note { margin: 0; color: var(--muted); font-size: .78rem; }
.form-status { padding: 12px 14px; border-radius: 11px; font-weight: 750; }
.form-status.is-success { color: var(--success); background: #e9f8f2; }
.form-status.is-error { color: var(--danger); background: #fff0ee; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }

/* Footer */
.site-footer { margin-top: 80px; color: var(--white); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .75fr); gap: 34px; padding: 55px 0 40px; }
.footer-brand img { width: 218px; padding: 9px; border-radius: 10px; background: var(--white); }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.64); }
.footer-col h2 { margin: 6px 0 15px; color: var(--white); font-size: .83rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: rgba(255,255,255,.66); font-size: .88rem; }
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); }
.footer-bottom .container { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .78rem; }
.footer-bottom a:hover { color: var(--teal-400); }

/* Legal and 404 */
.legal { max-width: 850px; }
.legal h2 { margin-top: 38px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--teal-700); text-decoration: underline; }
.legal-note { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--soft); }

@media (max-width: 1120px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav.is-open {
    position: absolute;
    top: calc(100% + 9px);
    left: 20px;
    right: 20px;
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open a { width: 100%; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { padding: 26px 0 8px; }
  .hero-media { min-height: 560px; }
  .brand-values-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-value:nth-child(2) { border-right: 0; }
  .brand-value:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .career-grid-three { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, .8fr); }
  .footer-col:last-child { grid-column: 2 / 4; }
  form.filter-shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-shell .filter-search { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  :root { --header-height: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-topbar-group span:nth-child(2), .site-topbar a { display: none; }
  .brand img { width: 188px; }
  .language-switcher { margin-left: auto; }
  .menu-toggle { margin-left: 0; }
  .section { padding: 64px 0; }
  .section-head { display: block; }
  .section-head > p { margin-top: 13px; }
  .hero { padding-top: 28px; }
  .hero h1 { font-size: 2.65rem; }
  .hero-media { min-height: 665px; }
  .hero-badge { left: 16px; right: 16px; top: 16px; max-width: none; }
  .hero-domain-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-domain { min-height: 128px; }
  .hero-domain:nth-child(2) { border-right: 0; }
  .hero-domain:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .brand-values-grid, .domain-grid, .course-grid, .value-grid, .path-preview-grid, .career-grid, .career-grid-three, .split, .about-grid, .contact-grid, .format-showcase-grid, .path-method, .path-principles { grid-template-columns: 1fr; }
  .brand-value { border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-value:last-child { border-bottom: 0; }
  .path-preview-card { grid-template-columns: 53px 1fr auto; }
  .career-card-wide { grid-column: auto; }
  .sidebar-card, .contact-aside { position: static; }
  form.filter-shell { grid-template-columns: 1fr; padding: 18px; }
  .filter-shell .filter-search { grid-column: auto; }
  .filter-actions { grid-column: auto; justify-content: stretch; }
  .filter-actions .btn { flex: 1; min-width: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .form-submit-row { display: grid; }
  .cta-band { grid-template-columns: 1fr; padding: 31px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom .container { display: block; padding: 16px 0; }
  .footer-bottom span { display: block; margin: 5px 0; }
}

@media (max-width: 500px) {
  .site-topbar { display: none; }
  .header-inner { gap: 9px; }
  .brand img { width: 170px; }
  .language-switcher { padding: 5px 7px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; }
  .hero-media { min-height: 700px; }
  .hero-domain span { display: none; }
  .hero-domain { min-height: 112px; }
  .filter-actions { display: grid; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
}

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


/* Career paths V7 */
.career-page { background: var(--white); }
.career-page .site-footer { margin-top: 0; }
.career-hero { position: relative; overflow: hidden; padding: 66px 0 58px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg,#f8fbfc 0%,#fff 100%); }
.career-hero::before { content:""; position:absolute; top:-170px; right:-120px; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle,rgba(34,190,179,.18) 0%,rgba(34,190,179,.06) 48%,transparent 70%); }
.career-hero::after { content:""; position:absolute; right:6%; top:0; width:190px; height:100%; opacity:.08; background: linear-gradient(135deg,transparent 0 39%,var(--teal-600) 40% 56%,transparent 57%); transform:skewX(-10deg); }
.career-hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0,1.05fr) minmax(390px,.72fr); gap:56px; align-items:center; }
.career-hero-copy h1 { max-width:780px; margin:16px 0 20px; font-size:clamp(2.7rem,5.3vw,4.8rem); line-height:1.02; }
.career-hero-copy h1 span { display:block; color:var(--teal-700); }
.career-hero-copy .lead { max-width:730px; margin:0 0 27px; }
.career-hero-proof { display:flex; flex-wrap:wrap; gap:10px 20px; margin:27px 0 0; padding:0; list-style:none; color:var(--navy-800); font-size:.86rem; font-weight:760; }
.career-model { position:relative; overflow:hidden; padding:28px; border-radius:var(--radius-lg); color:var(--white); background:linear-gradient(145deg,var(--navy-950),var(--navy-800)); box-shadow:var(--shadow-md); }
.career-model::after { content:""; position:absolute; right:-70px; bottom:-95px; width:210px; height:210px; border:1px solid rgba(255,255,255,.11); transform:rotate(32deg); }
.career-model-head { position:relative; z-index:1; display:flex; justify-content:space-between; gap:16px; align-items:center; margin-bottom:20px; }
.career-model-head span { padding:6px 9px; border:1px solid rgba(255,255,255,.14); border-radius:999px; color:var(--teal-100); background:rgba(255,255,255,.05); font-size:.68rem; font-weight:850; letter-spacing:.07em; text-transform:uppercase; }
.career-model-head strong { font-size:.92rem; }
.career-model ol { position:relative; z-index:1; display:grid; gap:9px; margin:0; padding:0; list-style:none; }
.career-model li { display:grid; grid-template-columns:44px 1fr; gap:12px; align-items:center; padding:12px 13px; border:1px solid rgba(255,255,255,.11); border-radius:13px; background:rgba(255,255,255,.045); }
.career-model li>span { width:38px; height:38px; display:grid; place-items:center; border-radius:11px; color:var(--navy-950); background:var(--teal-400); font-size:.72rem; font-weight:900; }
.career-model li strong { display:block; color:var(--white); font-size:.88rem; }
.career-model li small { display:block; margin-top:1px; color:rgba(255,255,255,.64); font-size:.74rem; line-height:1.35; }
.career-model>p { position:relative; z-index:1; margin:18px 0 0; padding-top:15px; border-top:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.7); font-size:.78rem; }
.career-finder-section { padding:78px 0 88px; background:var(--soft); }
.career-finder-head { display:flex; align-items:end; justify-content:space-between; gap:34px; margin-bottom:28px; }
.career-finder-head h2 { margin:8px 0 0; }
.career-finder-head>p { max-width:550px; margin:0; color:var(--muted); }
.career-filters { display:grid; grid-template-columns:minmax(260px,1.5fr) minmax(180px,.65fr) minmax(180px,.65fr) auto; gap:13px; align-items:end; padding:20px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--white); box-shadow:var(--shadow-xs); }
.career-filter-field { display:grid; gap:6px; }
.career-filter-field label { color:var(--navy-850); font-size:.77rem; font-weight:830; }
.career-filter-field input,.career-filter-field select { min-height:48px; width:100%; padding:10px 13px; border:1px solid var(--line-strong); border-radius:11px; color:var(--ink); background:#fff; }
.career-filter-field input:focus,.career-filter-field select:focus { border-color:var(--teal-600); box-shadow:0 0 0 4px rgba(0,155,146,.11); outline:0; }
.career-reset { min-height:48px; }
.career-results-bar { min-height:52px; display:flex; justify-content:space-between; gap:20px; align-items:center; }
.career-results-bar p { margin:0; color:var(--navy-900); font-weight:850; }
.career-results-bar span { color:var(--muted); font-size:.78rem; }
.career-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; align-items:start; }
.career-card { min-width:0; overflow:hidden; display:flex; flex-direction:column; border:1px solid var(--line); border-radius:22px; background:var(--white); box-shadow:var(--shadow-xs); transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
.career-card:hover { transform:translateY(-3px); border-color:#b9d8d5; box-shadow:var(--shadow-sm); }
.career-card[hidden] { display:none; }
.career-card-top { min-height:48px; display:flex; align-items:center; justify-content:space-between; gap:10px; padding:17px 20px 0; }
.career-domain { display:inline-flex; align-items:center; min-height:28px; padding:5px 10px; border-radius:999px; font-size:.7rem; font-weight:900; letter-spacing:.045em; text-transform:uppercase; }
.career-domain-azure { color:#075a94; background:#e8f5ff; }
.career-domain-defense { color:#0d5f77; background:#e8f7fb; }
.career-domain-offensive { color:#0a665e; background:#eaf9f6; }
.career-domain-agile { color:#077269; background:#e8fbf8; }
.career-domain-grc { color:#334f67; background:#eef3f7; }
.career-duration { color:var(--muted); font-size:.72rem; font-weight:780; }
.career-card>h3 { margin:15px 20px 9px; color:var(--navy-950); font-size:1.24rem; }
.career-outcome { min-height:92px; margin:0 20px 14px; color:var(--muted); font-size:.88rem; }
.career-level { margin:0 20px 17px; padding:10px 12px; border-radius:10px; color:var(--navy-800); background:var(--soft); font-size:.76rem; }
.career-skill-block { margin:0 20px 18px; }
.career-skill-block h4 { margin:0 0 8px; color:var(--navy-900); font-size:.77rem; letter-spacing:.03em; text-transform:uppercase; }
.career-skill-block ul { display:grid; gap:7px; margin:0; padding:0; list-style:none; }
.career-skill-block li { display:grid; grid-template-columns:18px 1fr; gap:7px; color:var(--muted); font-size:.79rem; line-height:1.35; }
.career-skill-block li span { color:var(--teal-700); font-weight:900; }
.career-roadmap { border-top:1px solid var(--line); }
.career-roadmap summary { min-height:52px; display:flex; align-items:center; justify-content:space-between; gap:15px; padding:13px 20px; color:var(--navy-900); font-size:.82rem; font-weight:870; cursor:pointer; list-style:none; }
.career-roadmap summary::-webkit-details-marker { display:none; }
.career-summary-icon { width:26px; height:26px; display:grid; place-items:center; border-radius:50%; color:var(--teal-700); background:var(--teal-100); font-size:1.05rem; transition:transform .18s ease; }
.career-roadmap[open] .career-summary-icon { transform:rotate(45deg); }
.career-roadmap-panel { padding:0 20px 18px; }
.career-roadmap-panel ol { position:relative; display:grid; gap:12px; margin:0; padding:0; list-style:none; }
.career-roadmap-panel ol::before { content:""; position:absolute; left:16px; top:25px; bottom:25px; width:2px; background:#d7e8e6; }
.career-roadmap-panel li { position:relative; z-index:1; display:grid; grid-template-columns:34px 1fr; gap:10px; align-items:start; }
.career-step-index { width:34px; height:34px; display:grid; place-items:center; border:3px solid var(--white); border-radius:50%; color:var(--white); background:var(--teal-700); box-shadow:0 0 0 1px #afd6d2; font-size:.68rem; font-weight:900; }
.career-step-kicker { color:var(--muted); font-size:.62rem; font-weight:850; letter-spacing:.055em; text-transform:uppercase; }
.career-roadmap-panel li a { color:var(--navy-900); font-size:.8rem; font-weight:860; line-height:1.35; }
.career-roadmap-panel li a:hover { color:var(--teal-700); text-decoration:underline; text-underline-offset:3px; }
.career-roadmap-panel li p { margin:3px 0 0; color:var(--muted); font-size:.7rem; line-height:1.42; }
.career-option { display:inline-flex; margin-left:5px; padding:2px 6px; border-radius:999px; color:#076d66; background:var(--teal-100); font-size:.58rem; font-weight:850; vertical-align:1px; }
.career-validation { margin:15px 0 0; padding:11px 12px; border-left:3px solid var(--teal-600); color:var(--muted); background:var(--teal-50); font-size:.71rem; }
.career-card-actions { margin-top:auto; display:grid; gap:9px; padding:17px 20px 20px; border-top:1px solid var(--line); }
.career-btn { min-height:42px; padding:9px 13px; font-size:.77rem; }
.career-secondary-link { justify-self:center; color:var(--teal-700); font-size:.76rem; font-weight:850; }
.career-secondary-link:hover { text-decoration:underline; text-underline-offset:3px; }
.career-empty { padding:42px; border:1px dashed var(--line-strong); border-radius:var(--radius-md); text-align:center; background:var(--white); }
.career-empty h3 { margin:0 0 8px; }.career-empty p { margin:0 0 18px; color:var(--muted); }
.career-choose { padding:88px 0; }
.career-principles { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.career-principles article { padding:23px; border:1px solid var(--line); border-radius:18px; background:var(--white); box-shadow:var(--shadow-xs); }
.career-principles article>span { width:38px; height:38px; display:grid; place-items:center; border-radius:11px; color:var(--white); background:var(--navy-900); font-size:.72rem; font-weight:900; }
.career-principles h3 { margin:16px 0 7px; font-size:1.02rem; }.career-principles p { margin:0; color:var(--muted); font-size:.82rem; }
.career-cta { padding:0 0 88px; }
.career-cta-inner { display:grid; grid-template-columns:1fr auto; gap:35px; align-items:center; padding:42px; border-radius:var(--radius-lg); color:var(--white); background:radial-gradient(circle at 88% 18%,rgba(34,190,179,.35),transparent 28%),linear-gradient(120deg,var(--navy-950),var(--navy-800)); }
.career-cta h2 { margin:7px 0 8px; color:var(--white); }.career-cta p:not(.eyebrow) { max-width:760px; margin:0; color:rgba(255,255,255,.72); }.career-cta .eyebrow { color:var(--teal-400); }
@media (max-width:1100px){.career-hero-grid{grid-template-columns:1fr}.career-model{max-width:760px}.career-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.career-principles{grid-template-columns:repeat(2,1fr)}}
@media (max-width:820px){.career-hero{padding:46px 0}.career-hero-copy h1{font-size:2.8rem}.career-finder-head,.section-head{display:block}.career-finder-head>p,.section-head>p{margin-top:12px}.career-filters{grid-template-columns:1fr 1fr}.career-filter-search{grid-column:1/-1}.career-reset{width:100%}.career-results-bar{display:block;padding:12px 0}.career-results-bar span{display:block;margin-top:3px}.career-cta-inner{grid-template-columns:1fr}.career-cta .btn{justify-self:start}}
@media (max-width:600px){.career-hero-copy h1{font-size:2.38rem}.career-model{padding:20px}.career-model-head{display:block}.career-model-head strong{display:block;margin-top:8px}.career-filters,.career-grid,.career-principles{grid-template-columns:1fr}.career-filter-search{grid-column:auto}.career-outcome{min-height:0}.career-cta-inner{padding:29px}.career-cta .btn{width:100%}}
@media (prefers-reduced-motion:reduce){.career-card,.career-summary-icon{transition:none}.career-card:hover{transform:none}}

