@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --ink: #f4f8fb;
  --muted: #9cb0be;
  --subtle: #6e8492;
  --canvas: #040a10;
  --canvas-2: #07121b;
  --surface: rgba(11, 25, 36, 0.84);
  --surface-solid: #0b1924;
  --line: rgba(139, 188, 211, 0.16);
  --line-strong: rgba(55, 221, 214, 0.34);
  --cyan: #36ddd5;
  --cyan-soft: #82f3eb;
  --gold: #d8a94b;
  --gold-soft: #f1d58a;
  --danger: #ff7a8b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 40px));
  --focus: 0 0 0 3px rgba(54, 221, 213, 0.24);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 5%, rgba(30, 187, 181, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(216, 169, 75, 0.09), transparent 26rem),
    linear-gradient(180deg, #03080d 0%, var(--canvas) 42%, #061019 100%);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(72, 153, 173, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 153, 173, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan-soft);
  outline-offset: 4px;
}

::selection { color: #001615; background: var(--cyan-soft); }

.site-shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; padding: 10px 14px; color: #001214; background: var(--cyan); border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(3, 10, 16, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 54px; height: 54px; object-fit: contain; filter: drop-shadow(0 8px 20px rgba(54, 221, 213, 0.16)); }
.brand-copy { display: grid; line-height: 1; letter-spacing: 0.12em; }
.brand-copy strong { font: 700 17px/1 "Space Grotesk", sans-serif; }
.brand-copy small { margin-top: 6px; color: var(--cyan); font-size: 9px; letter-spacing: 0.42em; }

.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link, .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 10px;
  color: #bfd0da;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}
.nav-link:hover, .nav-trigger:hover, .nav-group.is-open .nav-trigger, .nav-link.active, .nav-group.active .nav-trigger { color: #fff; background: rgba(54, 221, 213, 0.08); }
.nav-link.active, .nav-group.active .nav-trigger { box-shadow: inset 0 -2px var(--cyan); }
.nav-access { margin-left: 6px; border: 1px solid rgba(216, 169, 75, 0.36); color: var(--gold-soft); }
.nav-chevron { font-size: 10px; transition: transform 160ms ease; }
.nav-group { position: relative; }
.nav-group.is-open .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  grid-template-columns: 220px minmax(300px, 390px);
  width: max-content;
  max-width: min(640px, 90vw);
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(5, 16, 24, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.desktop-nav .nav-group-rec .nav-dropdown { right: 0; left: auto; transform: translate(0, 10px); }
.desktop-nav .nav-group-rec.is-open .nav-dropdown { transform: translate(0, 0); }
.dropdown-intro { padding: 22px; border-radius: 12px; background: linear-gradient(145deg, rgba(54, 221, 213, 0.12), rgba(216, 169, 75, 0.06)); }
.dropdown-intro span { color: var(--cyan); font: 700 10px/1 "Space Grotesk"; letter-spacing: 0.18em; }
.dropdown-intro strong { display: block; margin-top: 14px; font: 600 18px/1.35 "Space Grotesk"; }
.dropdown-links { display: grid; gap: 4px; padding: 4px; }
.dropdown-links a { display: grid; grid-template-columns: 35px 1fr 16px; align-items: center; gap: 10px; padding: 10px; border-radius: 11px; transition: background 160ms ease; }
.dropdown-links a:hover, .dropdown-links a.current { background: rgba(255, 255, 255, 0.055); }
.dropdown-icon { display: grid; place-items: center; width: 32px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 9px; color: var(--cyan); font: 700 11px/1 "Space Grotesk"; }
.dropdown-links strong { display: block; font-size: 12px; }
.dropdown-links small { display: block; margin-top: 2px; color: var(--subtle); font-size: 10px; }
.dropdown-arrow { color: var(--gold); }

.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 255, 255, 0.04); cursor: pointer; }
.mobile-nav { display: none; }

main { overflow: clip; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font: 700 11px/1 "Space Grotesk", sans-serif; letter-spacing: 0.18em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 1px; content: ""; background: currentColor; }
h1, h2, h3 { margin-top: 0; font-family: "Space Grotesk", sans-serif; line-height: 1.08; }
h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(42px, 6.8vw, 86px); letter-spacing: -0.055em; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.04em; }
h3 { margin-bottom: 12px; font-size: 21px; letter-spacing: -0.025em; }
p { margin-top: 0; color: var(--muted); }
.lead { max-width: 760px; font-size: clamp(17px, 2vw, 21px); }
.text-gradient { color: transparent; background: linear-gradient(90deg, var(--cyan-soft), var(--gold-soft)); background-clip: text; -webkit-background-clip: text; }

.home-hero { position: relative; min-height: calc(100vh - 88px); display: grid; align-items: center; padding: 80px 0 96px; }
.home-hero-grid { display: grid; grid-template-columns: 1.06fr 0.94fr; align-items: center; gap: clamp(48px, 7vw, 100px); }
.hero-copy h1 { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 12px; font-size: 13px; font-weight: 800; letter-spacing: 0.02em; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #001615; background: linear-gradient(135deg, var(--cyan-soft), var(--cyan)); box-shadow: 0 14px 40px rgba(54, 221, 213, 0.2); }
.button-secondary { border-color: var(--line-strong); color: var(--ink); background: rgba(8, 24, 34, 0.7); }
.button-gold { color: #160e00; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); box-shadow: 0 14px 40px rgba(216, 169, 75, 0.18); }

.hero-visual { position: relative; }
.hero-frame { position: relative; overflow: hidden; aspect-ratio: 0.92; border: 1px solid var(--line-strong); border-radius: 38px 12px 38px 12px; background: var(--surface-solid); box-shadow: var(--shadow); }
.hero-frame::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(2, 8, 13, 0.88), transparent 55%); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-signal { position: absolute; right: -18px; bottom: 26px; z-index: 2; width: min(250px, 65%); padding: 18px; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(5, 16, 24, 0.92); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.hero-signal span { color: var(--gold); font: 700 9px/1 "Space Grotesk"; letter-spacing: 0.17em; }
.hero-signal strong { display: block; margin-top: 8px; font: 600 16px/1.35 "Space Grotesk"; }

.page-hero { position: relative; padding: 76px 0 64px; border-bottom: 1px solid var(--line); }
.page-hero::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 84% 22%, rgba(54, 221, 213, 0.1), transparent 28rem), linear-gradient(120deg, transparent 55%, rgba(216, 169, 75, 0.035)); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 440px); align-items: center; gap: 60px; }
.page-hero h1 { margin-top: 22px; font-size: clamp(40px, 6vw, 72px); }
.page-hero-media { position: relative; overflow: hidden; aspect-ratio: 1.25; border: 1px solid var(--line-strong); border-radius: 24px 8px 24px 8px; box-shadow: var(--shadow); }
.page-hero-media::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(140deg, transparent 48%, rgba(54, 221, 213, 0.1)), linear-gradient(to top, rgba(2, 8, 13, 0.4), transparent 45%); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumbs { margin-bottom: 18px; color: var(--subtle); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--cyan); }

.section { padding: 92px 0; }
.section-sm { padding: 60px 0; }
.section-alt { border-block: 1px solid var(--line); background: rgba(7, 20, 29, 0.58); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; }
.section-heading p { max-width: 590px; margin-bottom: 2px; }
.section-heading h2 { max-width: 680px; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { position: relative; overflow: hidden; min-height: 100%; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(13, 30, 42, 0.9), rgba(7, 18, 27, 0.8)); box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14); transition: transform 180ms ease, border-color 180ms ease; }
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.card-index { display: grid; place-items: center; width: 40px; aspect-ratio: 1; margin-bottom: 22px; border: 1px solid var(--line-strong); border-radius: 11px; color: var(--cyan); font: 700 11px/1 "Space Grotesk"; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-flex; gap: 8px; margin-top: 8px; color: var(--gold-soft); font-size: 12px; font-weight: 800; }
.card-link:hover { color: #fff; }

.media-card { position: relative; overflow: hidden; min-height: 390px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-solid); }
.media-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; transition: transform 500ms ease; }
.media-card:hover img { transform: scale(1.035); }
.media-card-content { position: absolute; inset: auto 0 0; padding: 28px; background: linear-gradient(transparent, rgba(2, 8, 13, 0.96)); }
.media-card-content span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.media-card-content h3 { margin: 8px 0 5px; }
.media-card-content p { margin: 0; font-size: 13px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(8, 22, 31, 0.75); }
.stat { padding: 28px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--cyan-soft); font: 700 clamp(26px, 3vw, 38px)/1 "Space Grotesk"; }
.stat span { display: block; margin-top: 9px; color: var(--subtle); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(44px, 7vw, 90px); }
.split-media { overflow: hidden; border: 1px solid var(--line); border-radius: 30px 8px 30px 8px; box-shadow: var(--shadow); }
.split-media img { width: 100%; min-height: 460px; object-fit: cover; }
.check-list { display: grid; gap: 15px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; color: var(--muted); }
.check-list li::before { display: grid; place-items: center; width: 24px; aspect-ratio: 1; content: ""; border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(54, 221, 213, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2336ddd5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center/14px no-repeat; }

.timeline { position: relative; display: grid; gap: 18px; padding-left: 28px; }
.timeline::before { position: absolute; top: 8px; bottom: 8px; left: 7px; width: 1px; content: ""; background: linear-gradient(var(--cyan), rgba(54, 221, 213, 0.08)); }
.timeline-item { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(8, 22, 31, 0.7); }
.timeline-item::before { position: absolute; top: 29px; left: -27px; width: 11px; aspect-ratio: 1; content: ""; border: 3px solid var(--canvas); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 2px rgba(216, 169, 75, 0.26); }
.timeline-item span { color: var(--gold-soft); font: 700 11px/1 "Space Grotesk"; letter-spacing: 0.12em; }
.timeline-item h3 { margin-top: 9px; }

.quote { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(8, 22, 31, 0.72); }
.quote::before { display: block; margin-bottom: 14px; color: var(--gold); content: "“"; font: 700 48px/0.65 Georgia, serif; }
.quote blockquote { margin: 0; color: #dbe7ed; font-size: 15px; }
.quote-person { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote-person strong, .quote-person span { display: block; }
.quote-person strong { font-size: 12px; }
.quote-person span { color: var(--subtle); font-size: 10px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.tag { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #b9ccd7; background: rgba(255, 255, 255, 0.025); font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

.resource-card { display: grid; grid-template-columns: 48px 1fr; gap: 17px; }
.resource-icon { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--cyan); font: 700 12px/1 "Space Grotesk"; }
.resource-icon .icon { width: 21px; height: 21px; }
.download-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--gold-soft); font-size: 12px; font-weight: 800; }

.news-card { overflow: hidden; padding: 0; }
.news-card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.news-card-body { padding: 24px; }
.news-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 13px; color: var(--subtle); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; padding: clamp(30px, 5vw, 56px); border: 1px solid var(--line-strong); border-radius: 28px; background: linear-gradient(135deg, rgba(54, 221, 213, 0.12), rgba(216, 169, 75, 0.08)); box-shadow: var(--shadow); }
.cta-panel h2 { margin-bottom: 8px; }
.cta-panel p { margin-bottom: 0; }

.login-section { min-height: calc(100vh - 88px); display: grid; place-items: center; padding: 64px 0 90px; }
.login-shell { display: grid; grid-template-columns: 0.9fr 1.1fr; overflow: hidden; width: min(960px, calc(100% - 40px)); border: 1px solid var(--line-strong); border-radius: 28px; background: rgba(6, 18, 27, 0.92); box-shadow: var(--shadow); }
.login-aside { position: relative; min-height: 560px; padding: 42px; background: linear-gradient(rgba(3, 11, 17, 0.32), rgba(3, 11, 17, 0.92)), url("../images/academy-lab.webp") center/cover; }
.login-aside-content { position: absolute; right: 42px; bottom: 42px; left: 42px; }
.login-panel { padding: clamp(34px, 7vw, 72px); }
.login-title { margin-top: 20px; font-size: clamp(36px, 5vw, 58px); }
.button-block { width: 100%; }
.form-field { display: grid; gap: 8px; margin-bottom: 18px; }
.form-field label { color: #dce8ee; font-size: 12px; font-weight: 700; }
.form-field input { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; outline: 0; color: #fff; background: rgba(2, 10, 16, 0.72); }
.form-field input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(54, 221, 213, 0.1); }
.form-message { min-height: 24px; margin-top: 14px; color: var(--gold-soft); font-size: 12px; }

.promo-hero { padding: 84px 0; text-align: center; }
.promo-hero h1 { margin: 22px auto; }
.promo-hero .lead { margin-inline: auto; }
.price-card { text-align: center; }
.price-card.featured { border-color: var(--gold); transform: translateY(-10px); background: linear-gradient(145deg, rgba(42, 34, 18, 0.85), rgba(9, 22, 30, 0.9)); }
.price-card.featured:hover { transform: translateY(-14px); }
.price { display: block; margin: 24px 0 4px; color: var(--cyan-soft); font: 700 46px/1 "Space Grotesk"; }
.price small { color: var(--subtle); font: 500 12px/1 "Manrope"; }
.price-card ul { display: grid; gap: 10px; padding: 0; margin: 26px 0; color: var(--muted); list-style: none; font-size: 13px; }

.site-footer { padding: 58px 0 28px; border-top: 1px solid var(--line); background: rgba(2, 8, 13, 0.68); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; }
.footer-brand p { max-width: 330px; margin-top: 20px; font-size: 13px; }
.footer-column h3 { margin-bottom: 17px; color: var(--cyan); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-column a { display: block; margin: 9px 0; color: var(--muted); font-size: 12px; }
.footer-column a:hover { color: #fff; }
.footer-column a .icon { width: 15px; height: 15px; margin-right: 5px; color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--subtle); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; place-items: center; }
  .mobile-nav { position: fixed; top: 80px; right: 20px; left: 20px; overflow: auto; max-height: calc(100vh - 100px); padding: 14px; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(4, 14, 22, 0.98); box-shadow: var(--shadow); }
  .mobile-nav.is-open { display: block; }
  .mobile-link, .mobile-group > button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 48px; padding: 0 14px; border: 0; border-radius: 10px; color: #d3e0e7; background: transparent; font-size: 13px; font-weight: 700; }
  .mobile-link.active, .mobile-group.active > button { color: var(--cyan-soft); background: rgba(54, 221, 213, 0.07); }
  .mobile-submenu { display: none; padding: 4px 0 10px 14px; }
  .mobile-group.is-open .mobile-submenu { display: grid; }
  .mobile-submenu a { padding: 10px 14px; color: var(--muted); font-size: 12px; }
  .mobile-submenu a.current { color: var(--cyan); }
  .home-hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 620px; }
  .page-hero-media { max-width: 620px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .nav-shell { min-height: 78px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 14px; }
  .home-hero { min-height: auto; padding: 56px 0 72px; }
  .home-hero-grid { gap: 48px; }
  .hero-signal { right: -4px; }
  .section { padding: 70px 0; }
  .page-hero { padding: 55px 0; }
  .section-heading { display: block; }
  .grid-2, .grid-3, .grid-4, .stats, .split, .login-shell { grid-template-columns: 1fr; }
  .stat + .stat { border-top: 1px solid var(--line); border-left: 0; }
  .split-media { order: -1; }
  .split-media img { min-height: 320px; }
  .cta-panel { grid-template-columns: 1fr; }
  .login-aside { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
}

@media (max-width: 500px) {
  h1 { font-size: 40px; }
  .brand-copy { display: none; }
  .hero-actions .button { width: 100%; }
  .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
  .media-card, .media-card img { min-height: 340px; }
  .login-panel, .login-aside { padding: 28px; }
  .login-aside-content { right: 28px; bottom: 28px; left: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Professional experience layer */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.2em;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 300;
  width: var(--scroll-progress, 0%);
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--cyan), var(--gold-soft));
  box-shadow: 0 0 16px rgba(54, 221, 213, 0.52);
}

.nav-link .icon,
.nav-trigger .icon { width: 16px; height: 16px; color: var(--subtle); }
.nav-link:hover .icon,
.nav-trigger:hover .icon,
.nav-group.active .nav-trigger .icon,
.nav-link.active .icon { color: var(--cyan); }
.nav-access .icon { color: var(--gold); }
.menu-button .icon { width: 21px; height: 21px; }
.dropdown-icon .icon { width: 17px; height: 17px; }
.mobile-link-label,
.mobile-group-label { display: inline-flex; align-items: center; gap: 11px; }
.mobile-link-label .icon,
.mobile-group-label .icon { width: 18px; height: 18px; color: var(--cyan); }

.hero-orbit {
  position: absolute;
  inset: 8% -9% auto auto;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(54, 221, 213, 0.14);
  border-radius: 50%;
  pointer-events: none;
  animation: orbit-spin 24s linear infinite;
}
.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(216, 169, 75, 0.15);
  border-radius: inherit;
}
.hero-orbit::before { inset: 16%; }
.hero-orbit::after { inset: 34%; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c7d8e1;
  font-size: 12px;
  font-weight: 700;
}
.hero-proof .icon { color: var(--cyan); }
.hero-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background: repeating-linear-gradient(0deg, transparent 0 5px, rgba(130, 243, 235, 0.08) 6px);
  mix-blend-mode: screen;
}
.hero-status {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(130, 243, 235, 0.25);
  border-radius: 999px;
  color: #dffefa;
  background: rgba(3, 13, 19, 0.76);
  backdrop-filter: blur(12px);
  font: 700 9px/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-status::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(54, 221, 213, 0.12), 0 0 14px var(--cyan);
}

.expertise-strip { border-block: 1px solid var(--line); background: rgba(4, 14, 21, 0.84); }
.expertise-row {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  align-items: center;
  min-height: 84px;
}
.expertise-label { padding-right: 32px; color: var(--subtle); font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.expertise-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  color: #c8d7df;
  font: 650 12px/1.25 "Space Grotesk", sans-serif;
}
.expertise-item .icon { color: var(--cyan); }

.stat { position: relative; }
.stat .icon { position: absolute; top: 26px; right: 24px; color: rgba(54, 221, 213, 0.35); }
.stat strong { font-variant-numeric: tabular-nums; }

.feature-card { display: flex; flex-direction: column; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(54, 221, 213, 0.13), rgba(216, 169, 75, 0.04));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}
.feature-icon .icon { width: 24px; height: 24px; }
.feature-card .card-link { margin-top: auto; padding-top: 18px; }
.card-link .icon { width: 15px; transition: transform 160ms ease; }
.card-link:hover .icon { transform: translateX(3px); }

.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: method; }
.method-step { position: relative; padding: 28px 26px 30px; border: 1px solid var(--line); background: rgba(8, 22, 31, 0.72); }
.method-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.method-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.method-step + .method-step { border-left: 0; }
.method-step::after {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  content: "→";
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
  background: var(--canvas-2);
  font-size: 11px;
  transform: translateY(-50%);
}
.method-step:last-child::after { display: none; }
.method-step .feature-icon { width: 44px; height: 44px; margin-bottom: 20px; border-radius: 13px; }
.method-step .feature-icon .icon { width: 20px; height: 20px; }
.method-step small { color: var(--gold); font: 700 10px/1 "Space Grotesk"; letter-spacing: 0.14em; }
.method-step h3 { margin-top: 12px; }
.method-step p { margin-bottom: 0; font-size: 13px; }

.cert-card { min-height: 430px; }
.cert-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 22%, rgba(2, 8, 13, 0.12) 45%, rgba(2, 8, 13, 0.98) 100%);
}
.cert-card .media-card-content { z-index: 2; width: 100%; background: none; }
.cert-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 16px; }
.cert-tag { padding: 5px 8px; border: 1px solid rgba(139, 188, 211, 0.2); border-radius: 999px; color: #b9ccd7; background: rgba(4, 14, 21, 0.55); font-size: 9px; font-weight: 700; }
.cert-card .card-link { color: var(--cyan-soft); }

.route-finder {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--line-strong);
  box-shadow: var(--shadow);
}
.route-form,
.route-result { padding: clamp(30px, 5vw, 58px); background: rgba(5, 17, 25, 0.97); }
.route-form { display: grid; gap: 19px; }
.route-field { display: grid; gap: 8px; }
.route-field label { color: #dfeaf0; font-size: 12px; font-weight: 750; }
.route-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  color: #e9f5f8;
  background: #081923;
  font: 650 13px/1 "Manrope", sans-serif;
}
.route-field select:focus-visible { border-color: var(--cyan); box-shadow: var(--focus); }
.route-result { position: relative; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg, rgba(54, 221, 213, 0.12), rgba(7, 20, 29, 0.98) 58%, rgba(216, 169, 75, 0.08)); }
.route-result-badge { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding: 7px 10px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--cyan-soft); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.route-result h3 { margin: 20px 0 12px; font-size: clamp(26px, 3vw, 38px); }
.route-result p { max-width: 52ch; }
.route-result .button { width: fit-content; margin-top: 10px; }

.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.comparison-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(8, 22, 31, 0.78); }
.comparison-card.recommended { border-color: var(--line-strong); background: linear-gradient(150deg, rgba(54, 221, 213, 0.1), rgba(8, 22, 31, 0.9)); box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22); }
.comparison-label { position: absolute; top: 17px; right: 17px; padding: 5px 8px; border-radius: 999px; color: #001615; background: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.comparison-card .feature-icon { margin-bottom: 22px; }
.comparison-card > p { min-height: 72px; }
.comparison-list { display: grid; gap: 11px; padding: 22px 0 0; margin: 4px 0 24px; border-top: 1px solid var(--line); list-style: none; }
.comparison-list li { display: flex; gap: 9px; color: var(--muted); font-size: 12px; }
.comparison-list .icon { margin-top: 2px; color: var(--cyan); }
.comparison-card .card-link { margin-top: auto; }

.testimonial-feature { display: grid; grid-template-columns: 0.75fr 1.25fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: rgba(8, 22, 31, 0.8); }
.testimonial-portrait { position: relative; min-height: 420px; }
.testimonial-portrait img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-portrait::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 50%, rgba(8, 22, 31, 0.95)); }
.testimonial-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 74px); }
.testimonial-copy blockquote { margin: 22px 0 28px; color: #e5f0f4; font: 550 clamp(23px, 3vw, 36px)/1.35 "Space Grotesk", sans-serif; letter-spacing: -0.025em; }
.testimonial-copy cite { color: var(--cyan-soft); font-style: normal; font-size: 12px; font-weight: 800; }
.testimonial-copy cite span { display: block; margin-top: 5px; color: var(--subtle); font-size: 10px; font-weight: 600; }

.faq-list { display: grid; gap: 10px; max-width: 900px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: rgba(8, 22, 31, 0.72); }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 23px; cursor: pointer; color: #e4eef2; font: 650 15px/1.4 "Space Grotesk", sans-serif; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { flex: 0 0 auto; color: var(--cyan); content: "+"; font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { max-width: 72ch; padding: 0 23px 22px; color: var(--muted); font-size: 14px; }

.related-section { padding: 38px 0; border-top: 1px solid var(--line); background: rgba(5, 15, 23, 0.72); }
.related-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 18px; }
.related-heading strong { font: 650 15px/1.3 "Space Grotesk", sans-serif; }
.related-heading span { color: var(--subtle); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.related-links { display: flex; flex-wrap: wrap; gap: 9px; }
.related-links a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 11px; color: #bfd0da; background: rgba(255, 255, 255, 0.02); font-size: 11px; font-weight: 750; transition: border-color 160ms ease, color 160ms ease, transform 160ms ease; }
.related-links a:hover { border-color: var(--line-strong); color: #fff; transform: translateY(-2px); }
.related-links .icon { color: var(--cyan); }

.internal-cta { padding: 58px 0; }
.internal-cta .cta-panel { overflow: hidden; position: relative; }
.internal-cta .cta-panel::after { position: absolute; right: -80px; bottom: -120px; width: 280px; height: 280px; content: ""; border: 1px solid rgba(54, 221, 213, 0.18); border-radius: 50%; box-shadow: 0 0 0 40px rgba(54, 221, 213, 0.03), 0 0 0 80px rgba(216, 169, 75, 0.025); }
.internal-cta .cta-panel > * { position: relative; z-index: 1; }

.contact-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(130, 243, 235, 0.32);
  border-radius: 17px;
  color: #001615;
  background: linear-gradient(135deg, var(--cyan-soft), var(--cyan));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35), 0 0 0 5px rgba(54, 221, 213, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.contact-fab:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 0 7px rgba(54, 221, 213, 0.1); }
.contact-fab .icon { width: 23px; height: 23px; }
.contact-fab span { position: absolute; right: calc(100% + 10px); width: max-content; padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; color: #dce8ee; background: rgba(3, 12, 18, 0.95); font-size: 10px; font-weight: 750; opacity: 0; pointer-events: none; transform: translateX(4px); transition: opacity 160ms ease, transform 160ms ease; }
.contact-fab:hover span,
.contact-fab:focus-visible span { opacity: 1; transform: translateX(0); }

.button .icon { width: 17px; height: 17px; }
.button-primary .icon { transition: transform 160ms ease; }
.button-primary:hover .icon { transform: translateX(3px); }
.button-secondary:hover { border-color: rgba(130, 243, 235, 0.56); background: rgba(11, 31, 43, 0.9); }
.card,
.comparison-card,
.quote { isolation: isolate; }
.card::before,
.comparison-card::before,
.quote::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(54, 221, 213, 0.12), transparent 58%);
  transition: opacity 200ms ease;
}
.card:hover::before,
.comparison-card:hover::before,
.quote:hover::after { opacity: 1; }
.reveal { transition-delay: var(--delay, 0ms); }
.content-measure { max-width: 68ch; }

@media (max-width: 1040px) {
  .expertise-row { grid-template-columns: repeat(2, 1fr); padding: 16px 0; }
  .expertise-label { grid-column: 1 / -1; padding: 0 0 10px; text-align: center; }
  .expertise-item:nth-child(2), .expertise-item:nth-child(4) { border-left: 0; }
  .method-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .method-step, .method-step:first-child, .method-step:last-child { border: 1px solid var(--line); border-radius: var(--radius); }
  .method-step + .method-step { border-left: 1px solid var(--line); }
  .method-step::after { display: none; }
  .route-finder { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .comparison-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .hero-orbit { width: 80%; right: -34%; }
  .hero-proof { display: grid; }
  .expertise-row { grid-template-columns: 1fr 1fr; }
  .expertise-item { min-height: 56px; padding: 0 10px; text-align: center; font-size: 10px; }
  .method-grid,
  .comparison-grid,
  .testimonial-feature { grid-template-columns: 1fr; }
  .comparison-card:last-child { grid-column: auto; }
  .testimonial-portrait { min-height: 300px; }
  .testimonial-portrait::after { background: linear-gradient(0deg, rgba(8, 22, 31, 0.95), transparent 58%); }
  .related-heading { align-items: flex-start; flex-direction: column; }
  .contact-fab { right: 14px; bottom: 14px; }
}

@media (max-width: 500px) {
  .expertise-row { grid-template-columns: 1fr; }
  .expertise-item { justify-content: flex-start; border-top: 1px solid var(--line); border-left: 0; }
  .method-grid { grid-template-columns: 1fr; }
  .route-form,
  .route-result { padding: 28px 22px; }
  .testimonial-copy { padding: 30px 24px; }
  .faq-item summary { padding: 18px; }
  .faq-answer { padding: 0 18px 19px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit { animation: none; }
  .contact-fab span { display: none; }
}

/* Advanced content system */
.program-hero,
.article-hero,
.access-hero { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 132px) 0 clamp(64px, 8vw, 108px); border-bottom: 1px solid var(--line); }
.program-hero::before,
.article-hero::before,
.access-hero::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 78% 36%, rgba(54, 221, 213, .14), transparent 29rem), linear-gradient(105deg, rgba(4, 10, 16, .25), rgba(4, 10, 16, .75)); }
.program-hero-grid,
.article-hero-grid,
.access-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr); gap: clamp(40px, 7vw, 90px); align-items: center; }
.program-hero h1,
.article-hero h1,
.access-hero h1 { max-width: 900px; margin: 15px 0 20px; font-size: clamp(42px, 6.4vw, 82px); line-height: .99; letter-spacing: -.055em; }
.program-description { max-width: 730px; color: #c5d2da; font-size: 17px; }
.program-hero-media { position: relative; min-height: 500px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 28px; box-shadow: var(--shadow); }
.program-hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 45%, rgba(3, 9, 14, .92)); }
.program-hero-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.program-code { position: absolute; right: 26px; bottom: 24px; left: 26px; z-index: 1; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.program-code span,
.program-facts span,
.article-meta span,
.calendar-summary span { color: var(--cyan-soft); font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.program-code strong { font-family: "Space Grotesk", sans-serif; font-size: 21px; }
.program-facts { border-bottom: 1px solid var(--line); background: rgba(7, 18, 27, .8); }
.program-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.program-facts-grid > div { min-height: 116px; padding: 28px 26px; border-left: 1px solid var(--line); }
.program-facts-grid > div:last-child { border-right: 1px solid var(--line); }
.program-facts-grid span { display: block; margin-bottom: 8px; }
.program-facts-grid strong { display: block; font-size: 15px; line-height: 1.4; }
.program-overview { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.program-overview > div { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(13, 31, 43, .88), rgba(7, 17, 25, .8)); }
.program-overview h2 { margin: 9px 0 22px; font-size: clamp(27px, 3vw, 40px); }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #c0d0d8; }
.check-list li::before { position: absolute; top: .55em; left: 2px; width: 12px; height: 7px; content: ""; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); transform: rotate(-45deg); }
.program-modules { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.program-module { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: rgba(5, 15, 23, .76); }
.program-module > span { display: grid; width: 54px; height: 54px; place-items: center; color: var(--cyan-soft); border: 1px solid var(--line-strong); border-radius: 50%; font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.program-module h3 { margin: 0 0 7px; font-size: 20px; }
.program-module p { margin: 0 0 12px; color: var(--muted); }
.program-module small { color: #b8c7d0; }
.program-assets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.program-assets-card { padding: clamp(28px, 4vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.program-assets-card h2 { margin: 18px 0 22px; }
.exam-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: clamp(30px, 5vw, 54px); border: 1px solid rgba(216, 169, 75, .32); border-radius: 28px; background: linear-gradient(130deg, rgba(51, 37, 15, .44), rgba(8, 21, 30, .92)); }
.exam-panel h2 { margin: 7px 0 9px; }
.exam-panel p { margin: 0 0 9px; color: #cbd6dc; }
.exam-panel small { color: var(--muted); }

.catalog-toolbar,
.calendar-toolbar { display: grid; grid-template-columns: minmax(220px, 1.6fr) minmax(180px, .8fr) auto; gap: 14px; align-items: end; margin-bottom: 30px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(8, 22, 31, .84); }
.catalog-toolbar label,
.calendar-toolbar label { display: grid; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
.catalog-toolbar input,
.catalog-toolbar select,
.calendar-toolbar input,
.calendar-toolbar select,
.form-field input,
.form-field select,
.form-field textarea { width: 100%; min-height: 50px; padding: 11px 14px; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; outline: none; background: #07131c; font: inherit; }
.catalog-toolbar input:focus,
.catalog-toolbar select:focus,
.calendar-toolbar input:focus,
.calendar-toolbar select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--cyan); box-shadow: var(--focus); }
.catalog-toolbar > div,
.calendar-toolbar > div { min-width: 110px; text-align: right; }
.catalog-toolbar > div strong,
.calendar-toolbar > div strong { display: block; color: var(--cyan-soft); font-family: "Space Grotesk", sans-serif; font-size: 26px; line-height: 1; }
.catalog-toolbar > div span,
.calendar-toolbar > div span { color: var(--muted); font-size: 11px; text-transform: uppercase; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.catalog-card { position: relative; display: flex; min-height: 100%; overflow: hidden; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: rgba(8, 21, 30, .9); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.catalog-card:hover { border-color: var(--line-strong); box-shadow: 0 20px 44px rgba(0, 0, 0, .25); transform: translateY(-5px); }
.catalog-card[hidden],
.calendar-item[hidden] { display: none; }
.catalog-card-media,
.catalog-card-image { position: relative; height: 210px; overflow: hidden; }
.catalog-card-media::after,
.catalog-card-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 40%, rgba(7, 19, 28, .95)); }
.catalog-card-media img,
.catalog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.catalog-card-image > span { position: absolute; right: 16px; bottom: 14px; z-index: 1; color: var(--cyan-soft); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.catalog-card:hover img { transform: scale(1.035); }
.catalog-card-code { position: absolute; right: 16px; bottom: 14px; z-index: 1; color: var(--cyan-soft); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.catalog-card-content,
.catalog-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.catalog-card-content > span,
.catalog-card-body > small { color: var(--gold-soft); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.catalog-card h2,
.catalog-card h3 { margin: 9px 0; font-size: 21px; line-height: 1.22; }
.catalog-card p { margin: 0 0 22px; color: var(--muted); font-size: 14px; }
.catalog-card-meta,
.catalog-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; }
.catalog-card-meta small,
.catalog-meta span { padding: 5px 8px; color: #bdd0d9; border: 1px solid var(--line); border-radius: 99px; font-size: 10px; }
.catalog-card-link { display: flex; justify-content: space-between; align-items: center; margin-top: 19px; padding-top: 16px; color: var(--cyan-soft); border-top: 1px solid var(--line); font-size: 13px; font-weight: 800; }
.catalog-empty { padding: 70px 20px; text-align: center; border: 1px dashed var(--line-strong); border-radius: 20px; }
.catalog-empty .icon { width: 36px; height: 36px; color: var(--cyan); }

.article-hero { padding-bottom: 70px; }
.article-hero-grid { align-items: end; }
.article-hero h1 { font-size: clamp(41px, 6vw, 76px); }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 25px; }
.article-meta span { color: var(--muted); }
.article-hero-media { min-height: 420px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 24px; }
.article-hero-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(42px, 7vw, 92px); align-items: start; padding-block: clamp(64px, 8vw, 112px); }
.article-content { min-width: 0; }
.article-section { scroll-margin-top: 110px; padding: 0 0 50px; }
.article-section + .article-section { padding-top: 50px; border-top: 1px solid var(--line); }
.article-section h2,
.article-sources h2 { margin: 0 0 22px; font-size: clamp(27px, 3.5vw, 42px); letter-spacing: -.03em; }
.article-section p { color: #c3d0d8; font-size: 17px; line-height: 1.85; }
.article-points { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.article-points li { padding: 15px 18px; color: #c8d5dc; border-left: 2px solid var(--cyan); background: rgba(11, 28, 39, .7); }
.article-sources { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: rgba(8, 21, 30, .8); }
.article-sources ul { display: grid; gap: 9px; padding-left: 20px; }
.article-sources a { color: var(--cyan-soft); }
.article-sources .icon { width: 14px; height: 14px; }
.article-aside { position: sticky; top: 110px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: rgba(8, 21, 30, .9); }
.article-aside > div { display: grid; gap: 4px; margin-bottom: 22px; }
.article-aside > div > span { margin-bottom: 10px; color: var(--cyan-soft); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.article-aside > div a { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 13px; }
.article-aside > div a:hover { color: var(--ink); }
.article-related { border-top: 1px solid var(--line); }
.article-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-related-card { display: grid; gap: 8px; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.article-related-card span { color: var(--cyan); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-related-card small { color: var(--muted); }

.calendar-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.calendar-summary article { padding: 26px; border: 1px solid var(--line); border-radius: 16px; background: rgba(9, 23, 33, .82); }
.calendar-summary strong { display: block; margin: 7px 0 5px; font-size: 20px; }
.calendar-summary p { margin: 0; color: var(--muted); font-size: 13px; }
.calendar-toolbar { grid-template-columns: minmax(210px, 1.4fr) repeat(2, minmax(150px, .65fr)) auto; }
.calendar-list { display: grid; gap: 12px; }
.calendar-item { display: grid; grid-template-columns: 180px minmax(220px, 1fr) 220px 150px; gap: 20px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(8, 21, 30, .78); }
.calendar-item-code span { display: block; color: var(--cyan-soft); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 700; }
.calendar-item-code small,
.calendar-item p,
.calendar-status small { color: var(--muted); }
.calendar-item h3,
.calendar-item p { margin: 0; }
.calendar-item h3 { font-size: 17px; line-height: 1.35; }
.calendar-status { display: grid; grid-template-columns: 10px 1fr; column-gap: 9px; }
.calendar-status i { width: 9px; height: 9px; margin-top: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(216, 169, 75, .1); }
.calendar-status.available i { background: var(--cyan); box-shadow: 0 0 0 5px rgba(54, 221, 213, .1); }
.calendar-status small { grid-column: 2; font-size: 11px; }
.calendar-actions { display: grid; gap: 5px; text-align: right; }
.calendar-actions a { color: var(--cyan-soft); font-size: 12px; font-weight: 800; }

.case-grid,
.cases-grid,
.alliance-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.case-card,
.alliance-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: rgba(8, 21, 30, .88); }
.case-image { position: relative; overflow: hidden; }
.case-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; }
.case-image > span { position: absolute; right: 14px; bottom: 14px; padding: 5px 9px; color: var(--cyan-soft); border: 1px solid var(--line-strong); border-radius: 99px; background: rgba(4, 12, 18, .88); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.case-copy { padding: 24px; }
.case-copy > small { color: var(--gold-soft); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-person { display: flex; gap: 11px; align-items: center; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); }
.case-person > .icon { width: 28px; height: 28px; color: var(--cyan); }
.case-person strong,
.case-person small { display: block; }
.case-card blockquote { margin: 0 0 18px; color: #d5dfe5; font-size: 16px; }
.case-card h2 { margin: 0; font-size: 20px; }
.case-card p,
.case-card small { color: var(--muted); }
.case-card p { margin: 3px 0; }
.case-card small { display: block; margin-top: 13px; }
.alliance-card { display: grid; grid-template-columns: 76px 1fr; gap: 18px; padding: 24px; }
.alliance-mark { display: grid; width: 66px; height: 66px; place-items: center; color: var(--cyan-soft); border: 1px solid var(--line-strong); border-radius: 17px; background: rgba(54, 221, 213, .06); font-family: "Space Grotesk", sans-serif; font-size: 18px; font-weight: 800; }
.alliance-card small { color: var(--gold-soft); font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.alliance-card h2 { margin: 7px 0; font-size: 21px; }
.alliance-card p { margin: 0 0 15px; color: var(--muted); font-size: 14px; }
.alliance-card strong { display: block; margin-bottom: 10px; color: #d4dee4; font-size: 12px; }
.alliance-card a { color: var(--cyan-soft); font-size: 12px; font-weight: 800; }
.ecosystem-note { display: flex; gap: 18px; margin-top: 24px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; }
.ecosystem-note .icon { flex: 0 0 auto; color: var(--cyan); }
.ecosystem-note p { margin: 4px 0 0; color: var(--muted); }

.contact-channel-card,
.access-card { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line-strong); border-radius: 24px; background: linear-gradient(145deg, rgba(14, 35, 47, .94), rgba(6, 16, 24, .94)); box-shadow: var(--shadow); }
.contact-channel-card > .icon { width: 40px; height: 40px; color: var(--cyan); }
.contact-channel-card h2 { margin: 18px 0 7px; }
.contact-channel-card p { color: var(--muted); }
.contact-channel-card a { display: block; margin-top: 10px; color: var(--cyan-soft); font-weight: 700; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 24px; align-items: start; }
.contact-form,
.contact-aside { padding: clamp(28px, 4vw, 46px); border: 1px solid var(--line); border-radius: 22px; background: rgba(8, 21, 30, .86); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field label { color: #c5d4dc; font-size: 12px; font-weight: 800; }
.form-field label small { color: var(--muted); font-weight: 500; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-span { grid-column: 1 / -1; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.consent-check { display: flex; gap: 11px; align-items: flex-start; margin: 20px 0; color: var(--muted); font-size: 12px; }
.consent-check input { width: 18px; height: 18px; accent-color: var(--cyan); }
.consent-check a,
.form-status a { color: var(--cyan-soft); text-decoration: underline; }
.form-status { min-height: 26px; margin: 15px 0 0; color: var(--muted); font-size: 13px; }
.form-status.is-success { color: var(--cyan-soft); }
.form-status.is-error { color: var(--danger); }
.contact-form button[disabled] { cursor: wait; opacity: .65; }
.contact-aside { position: sticky; top: 110px; }
.contact-aside h2 { margin: 8px 0 20px; }
.verification-note { display: flex; gap: 12px; margin-top: 24px; padding: 17px; border: 1px solid rgba(216, 169, 75, .25); border-radius: 13px; background: rgba(216, 169, 75, .06); }
.verification-note .icon { flex: 0 0 auto; color: var(--gold-soft); }
.verification-note p { margin: 0; color: #d9d1bc; font-size: 12px; }

.access-security { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 25px; }
.access-security > span { display: flex; gap: 7px; align-items: center; padding: 8px 11px; color: #bfd0d8; border: 1px solid var(--line); border-radius: 99px; font-size: 11px; }
.access-security .icon { width: 15px; height: 15px; color: var(--cyan); }
.access-card small { color: var(--cyan-soft); font-weight: 800; letter-spacing: .13em; }
.access-card h2 { margin: 15px 0 8px; font-size: 32px; }
.access-card p { margin-bottom: 23px; color: var(--muted); }
.access-links { display: flex; justify-content: space-between; gap: 14px; margin-top: 16px; }
.access-links a { color: var(--cyan-soft); font-size: 12px; }

.enrollment-choice { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.enrollment-choice article { padding: 32px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.enrollment-choice h2 { margin: 17px 0 7px; }
.enrollment-choice p { margin: 0 0 22px; color: var(--muted); }
.checkout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.checkout-package { position: relative; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: rgba(8, 21, 30, .9); }
.checkout-package.recommended { border-color: rgba(216, 169, 75, .48); box-shadow: 0 24px 60px rgba(0, 0, 0, .26); }
.checkout-package h2 { margin: 16px 0 3px; }
.checkout-price { display: flex; gap: 7px; align-items: end; margin: 10px 0; }
.checkout-price strong { font-family: "Space Grotesk", sans-serif; font-size: 58px; line-height: .95; }
.checkout-price span { color: var(--gold-soft); font-size: 12px; font-weight: 800; }
.checkout-package > p { color: var(--muted); font-size: 12px; }
.checkout-package .check-list { margin: 15px 0 26px; }
.checkout-package .button { margin-top: auto; }
.button-gold { color: #1b1200; border-color: var(--gold); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); }
.purchase-safety { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; }
.purchase-safety > div,
.purchase-safety aside { padding: 36px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.purchase-safety aside .icon { width: 40px; height: 40px; color: var(--cyan); }
.purchase-safety aside p { color: var(--muted); }
.purchase-safety aside a { color: var(--cyan-soft); font-weight: 800; }

.policy-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.policy-nav { position: sticky; top: 110px; display: grid; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.policy-nav a { padding: 11px 9px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 13px; }
.policy-content { display: grid; gap: 54px; }
.policy-content section { scroll-margin-top: 115px; }
.policy-content h2 { margin: 7px 0 14px; font-size: clamp(27px, 4vw, 42px); }
.policy-content p { max-width: 75ch; color: #c4d1d8; }
.not-found { display: grid; min-height: 72vh; place-items: center; padding: 100px 0; text-align: center; }
.not-found h1 { margin: 12px 0; font-size: clamp(54px, 10vw, 118px); letter-spacing: -.06em; }
.not-found .hero-actions { justify-content: center; }

.privacy-panel { position: fixed; right: 20px; bottom: 20px; left: 20px; z-index: 250; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; max-width: 1050px; margin: auto; padding: 24px 26px; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(5, 15, 23, .98); box-shadow: 0 28px 90px rgba(0, 0, 0, .6); backdrop-filter: blur(20px); }
.privacy-panel h2 { margin: 5px 0; font-size: 20px; }
.privacy-panel p { max-width: 720px; margin: 0; color: var(--muted); font-size: 12px; }
.privacy-panel a { color: var(--cyan-soft); font-size: 11px; text-decoration: underline; }
.privacy-actions { display: flex; gap: 10px; }
.privacy-actions .button { white-space: nowrap; }
.footer-privacy { padding: 0; color: var(--muted); border: 0; background: transparent; cursor: pointer; text-align: left; }
.footer-privacy:hover { color: var(--cyan-soft); }
.metric-source { width: var(--shell); margin: 16px auto 0; color: var(--subtle); font-size: 11px; text-align: center; }

.button-block { width: 100%; justify-content: center; }

@media (max-width: 1040px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-item { grid-template-columns: 140px minmax(200px, 1fr) 190px; }
  .calendar-actions { grid-column: 2 / -1; display: flex; justify-content: flex-end; gap: 18px; }
  .case-grid,
  .cases-grid,
  .alliance-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid { grid-template-columns: 1fr 1fr; }
  .checkout-package:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .program-hero-grid,
  .article-hero-grid,
  .access-grid,
  .article-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .program-hero-media,
  .program-hero-media img,
  .article-hero-media,
  .article-hero-media img { min-height: 360px; }
  .program-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .program-facts-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .program-facts-grid > div { border-bottom: 1px solid var(--line); }
  .program-modules,
  .program-assets,
  .program-overview { grid-template-columns: 1fr; }
  .exam-panel { grid-template-columns: auto 1fr; }
  .exam-panel .button { grid-column: 1 / -1; }
  .article-aside,
  .contact-aside { position: static; }
  .article-aside > div { grid-template-columns: repeat(2, 1fr); }
  .article-aside > div > span { grid-column: 1 / -1; }
  .calendar-toolbar { grid-template-columns: 1fr 1fr; }
  .calendar-toolbar label:first-child { grid-column: 1 / -1; }
  .calendar-summary,
  .article-related-grid { grid-template-columns: 1fr; }
  .purchase-safety { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .privacy-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .program-hero,
  .article-hero,
  .access-hero { padding-top: 55px; }
  .program-hero h1,
  .article-hero h1,
  .access-hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .program-hero-media,
  .program-hero-media img,
  .article-hero-media,
  .article-hero-media img { min-height: 280px; }
  .program-code { right: 18px; bottom: 17px; left: 18px; }
  .program-facts-grid,
  .catalog-grid,
  .case-grid,
  .cases-grid,
  .alliance-grid,
  .enrollment-choice,
  .checkout-grid,
  .form-grid { grid-template-columns: 1fr; }
  .checkout-package:last-child,
  .form-span { grid-column: auto; }
  .catalog-toolbar,
  .calendar-toolbar { grid-template-columns: 1fr; }
  .calendar-toolbar label:first-child { grid-column: auto; }
  .catalog-toolbar > div,
  .calendar-toolbar > div { text-align: left; }
  .calendar-item { grid-template-columns: 1fr; }
  .calendar-actions { grid-column: auto; justify-content: flex-start; }
  .program-module { grid-template-columns: 46px 1fr; padding: 22px 18px; }
  .program-module > span { width: 42px; height: 42px; }
  .exam-panel { grid-template-columns: 1fr; }
  .article-aside > div { grid-template-columns: 1fr; }
  .article-aside > div > span { grid-column: auto; }
  .alliance-card { grid-template-columns: 1fr; }
  .access-links { flex-direction: column; }
  .policy-nav { grid-template-columns: 1fr; }
  .privacy-panel { right: 10px; bottom: 10px; left: 10px; padding: 20px; }
  .privacy-actions { flex-direction: column-reverse; }
  .privacy-actions .button { width: 100%; justify-content: center; }
}

/* Light blue institutional theme */
:root {
  --ink: #102a4c;
  --muted: #526b86;
  --subtle: #71859a;
  --canvas: #ffffff;
  --canvas-2: #f4f8fd;
  --surface: rgba(255, 255, 255, .94);
  --surface-solid: #ffffff;
  --line: rgba(18, 91, 176, .15);
  --line-strong: rgba(15, 86, 181, .32);
  --cyan: #0f5bbd;
  --cyan-soft: #2476d9;
  --gold: #164d9a;
  --gold-soft: #4388dd;
  --shadow: 0 28px 70px rgba(26, 72, 126, .16);
  --focus: 0 0 0 4px rgba(24, 103, 202, .16);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 3%, rgba(46, 126, 222, .08), transparent 27rem),
    radial-gradient(circle at 94% 14%, rgba(82, 157, 235, .07), transparent 26rem),
    #ffffff;
}
body::before {
  opacity: .38;
  background-image:
    linear-gradient(rgba(27, 100, 184, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 100, 184, .055) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
::selection { color: #ffffff; background: var(--cyan); }
:focus-visible { outline-color: var(--cyan); }

h1,
h2,
h3 { color: #0b428f; }
p { color: var(--muted); }
.eyebrow { color: var(--cyan); }
.text-gradient {
  color: transparent;
  background: linear-gradient(105deg, #0c4ca5 0%, #2477d8 52%, #58a2ed 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.site-header { background: rgba(255, 255, 255, .88); border-bottom-color: rgba(18, 91, 176, .1); backdrop-filter: blur(18px); }
.site-header.is-scrolled { border-color: var(--line); background: rgba(255, 255, 255, .96); box-shadow: 0 12px 34px rgba(26, 72, 126, .11); }
.brand img { filter: drop-shadow(0 9px 18px rgba(14, 79, 161, .17)); }
.brand-copy strong { color: #0c3e83; }
.brand-copy small { color: var(--cyan); }
.nav-link,
.nav-trigger { color: #41607e; }
.nav-link:hover,
.nav-trigger:hover,
.nav-group.is-open .nav-trigger,
.nav-link.active,
.nav-group.active .nav-trigger { color: #0b4a9e; background: #edf5ff; }
.nav-link.active,
.nav-group.active .nav-trigger { box-shadow: inset 0 -2px var(--cyan); }
.nav-access { color: #0d4eaa; border-color: rgba(15, 91, 189, .35); background: #f7fbff; }
.nav-access:hover { color: #ffffff; background: var(--cyan); }
.nav-access .icon { color: currentColor; }
.nav-dropdown { border-color: var(--line-strong); background: rgba(255, 255, 255, .99); box-shadow: 0 26px 65px rgba(20, 67, 121, .18); }
.dropdown-intro { background: linear-gradient(145deg, #eaf4ff, #f7fbff); }
.dropdown-intro strong,
.dropdown-links strong { color: #123e74; }
.dropdown-links a:hover,
.dropdown-links a.current { background: #eef6ff; }
.dropdown-icon { color: var(--cyan); background: #f4f9ff; }
.menu-button { color: var(--cyan); border-color: var(--line-strong); background: #f5f9ff; }
.mobile-nav { border-color: var(--line-strong); background: rgba(255, 255, 255, .99); box-shadow: var(--shadow); }
.mobile-link,
.mobile-group > button { color: #274d73; }
.mobile-link.active,
.mobile-group.active > button { color: var(--cyan); background: #edf5ff; }

.scroll-progress { background: linear-gradient(90deg, #0c4ca5, #4b99e9); box-shadow: 0 0 14px rgba(19, 91, 187, .3); }

/* Rebuilt home hero */
.home-hero {
  isolation: isolate;
  min-height: min(850px, calc(100vh - 88px));
  overflow: hidden;
  padding: clamp(74px, 8vw, 118px) 0 clamp(82px, 9vw, 126px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 79% 44%, rgba(31, 111, 210, .14), transparent 29rem),
    linear-gradient(118deg, #ffffff 0%, #ffffff 48%, #f3f8ff 100%);
}
.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(rgba(16, 83, 167, .2) 1.1px, transparent 1.1px);
  background-position: calc(100% - 48px) 42px;
  background-size: 20px 20px;
  mask-image: linear-gradient(110deg, transparent 44%, #000 92%);
  opacity: .42;
}
.home-hero::after {
  position: absolute;
  right: -8%;
  bottom: -44%;
  z-index: -1;
  width: 56%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(18, 92, 182, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(42, 121, 217, .025), 0 0 0 160px rgba(42, 121, 217, .018);
}
.home-hero-grid { grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr); gap: clamp(56px, 7vw, 104px); }
.hero-copy { position: relative; z-index: 3; }
.hero-copy h1 { max-width: 760px; margin-top: 27px; color: #0a3f88; font-size: clamp(54px, 6.5vw, 88px); line-height: .98; }
.hero-copy .lead { max-width: 690px; color: #4e6681; font-size: clamp(17px, 1.65vw, 21px); }
.hero-actions { margin-top: 32px; }
.hero-proof { gap: 9px; margin-top: 27px; }
.hero-proof li { padding: 8px 11px; color: #315575; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .78); box-shadow: 0 8px 22px rgba(31, 85, 145, .06); }
.hero-proof .icon { color: var(--cyan); }
.hero-visual { position: relative; z-index: 2; padding: 18px 20px 24px 0; }
.hero-visual::before {
  position: absolute;
  top: -28px;
  right: -30px;
  bottom: -10px;
  left: 34px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(17, 89, 180, .2);
  border-radius: 46% 54% 45% 55% / 38% 44% 56% 62%;
  background: linear-gradient(145deg, rgba(218, 236, 255, .72), rgba(244, 249, 255, .22));
  transform: rotate(3deg);
}
.hero-frame {
  overflow: hidden;
  aspect-ratio: .96;
  border: 8px solid #ffffff;
  border-radius: 42px 14px 42px 14px;
  outline: 1px solid rgba(14, 83, 173, .25);
  background: #061327;
  box-shadow: 0 38px 80px rgba(15, 61, 114, .22), 0 8px 22px rgba(15, 61, 114, .1);
  transform: rotate(1.2deg);
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.hero-visual:hover .hero-frame { box-shadow: 0 45px 92px rgba(15, 61, 114, .26); transform: rotate(0); }
.hero-frame::after { background: linear-gradient(to top, rgba(3, 16, 34, .72), transparent 53%); }
.hero-frame::before { opacity: .12; }
.hero-status { top: 25px; left: 25px; color: #0c4a95; border-color: rgba(21, 94, 184, .23); background: rgba(255, 255, 255, .9); box-shadow: 0 10px 28px rgba(13, 55, 106, .12); }
.hero-status::before { background: #1974d2; box-shadow: 0 0 0 4px rgba(25, 116, 210, .12), 0 0 14px rgba(25, 116, 210, .35); }
.hero-signal { right: -8px; bottom: 6px; width: min(270px, 69%); padding: 20px 22px; color: #0d3567; border-color: rgba(19, 91, 184, .24); border-radius: 18px; background: rgba(255, 255, 255, .94); box-shadow: 0 22px 48px rgba(19, 63, 112, .19); }
.hero-signal span { color: var(--cyan); }
.hero-signal strong { color: #103c78; }
.hero-orbit { inset: 3% -5% auto auto; border-color: rgba(15, 91, 189, .14); }
.hero-orbit::before,
.hero-orbit::after { border-color: rgba(38, 119, 216, .13); }

.button { border-radius: 10px; }
.button-primary,
.button-gold { color: #ffffff; border-color: #0d56b5; background: linear-gradient(135deg, #0c4ba5, #1970d2); box-shadow: 0 15px 34px rgba(18, 87, 178, .24); }
.button-primary:hover,
.button-gold:hover { background: linear-gradient(135deg, #083e8d, #0e5fbd); box-shadow: 0 19px 40px rgba(18, 87, 178, .28); }
.button-secondary { color: #0e56b3; border-color: rgba(14, 86, 179, .34); background: #ffffff; box-shadow: 0 9px 24px rgba(18, 79, 151, .08); }
.button-secondary:hover { color: #ffffff; border-color: #0e56b3; background: #0e56b3; }

.expertise-strip { border-color: var(--line); background: #f7faff; }
.expertise-label { color: #657d94; }
.expertise-item { color: #274f75; }
.expertise-item .icon { color: var(--cyan); }

.section-alt { border-color: var(--line); background: #f5f9fe; }
.page-hero,
.program-hero,
.article-hero,
.access-hero { border-color: var(--line); background: linear-gradient(118deg, #ffffff 0%, #ffffff 55%, #eef6ff 100%); }
.page-hero::before,
.program-hero::before,
.article-hero::before,
.access-hero::before { background: radial-gradient(circle at 84% 25%, rgba(30, 108, 205, .13), transparent 28rem), linear-gradient(120deg, transparent 53%, rgba(27, 102, 194, .035)); }
.page-hero-media,
.program-hero-media,
.article-hero-media { border: 7px solid #ffffff; outline: 1px solid rgba(15, 86, 181, .24); box-shadow: 0 26px 58px rgba(21, 67, 120, .17); }
.page-hero-media::after { background: linear-gradient(140deg, transparent 48%, rgba(39, 120, 216, .11)), linear-gradient(to top, rgba(6, 30, 63, .28), transparent 45%); }
.program-code { color: #ffffff; }
.program-code span { color: #b9dcff; }
.breadcrumbs { color: #6c8196; }

.card,
.comparison-card,
.quote,
.method-step,
.route-form,
.route-result,
.testimonial-feature,
.faq-item,
.related-links a,
.stats,
.timeline-item,
.program-overview > div,
.program-assets-card,
.catalog-card,
.article-related-card,
.calendar-summary article,
.calendar-item,
.case-card,
.alliance-card,
.contact-form,
.contact-aside,
.contact-channel-card,
.access-card,
.enrollment-choice article,
.checkout-package,
.purchase-safety > div,
.purchase-safety aside,
.policy-nav,
.article-aside,
.article-sources { color: var(--ink); border-color: var(--line); background: #ffffff; box-shadow: 0 15px 38px rgba(27, 73, 126, .075); }
.card:hover,
.comparison-card:hover,
.catalog-card:hover { border-color: var(--line-strong); box-shadow: 0 22px 46px rgba(23, 73, 133, .13); }
.card::before,
.comparison-card::before,
.quote::after { background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(33, 111, 207, .09), transparent 58%); }
.feature-icon,
.card-index,
.resource-icon,
.dropdown-icon { color: var(--cyan); border-color: var(--line-strong); background: linear-gradient(145deg, #eaf4ff, #f8fbff); }
.card-link,
.download-link { color: var(--cyan); }
.card-link:hover,
.download-link:hover { color: #083f8c; }
.method-step::after { color: var(--cyan); border-color: var(--line-strong); background: #ffffff; }
.method-step small,
.comparison-label { color: var(--cyan); }
.route-field select,
.catalog-toolbar input,
.catalog-toolbar select,
.calendar-toolbar input,
.calendar-toolbar select,
.form-field input,
.form-field select,
.form-field textarea { color: #173c64; border-color: var(--line); background: #f9fbfe; }
.route-field select:focus,
.catalog-toolbar input:focus,
.catalog-toolbar select:focus,
.calendar-toolbar input:focus,
.calendar-toolbar select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--cyan); background: #ffffff; }
.catalog-toolbar,
.calendar-toolbar { border-color: var(--line); background: #f5f9fe; }
.catalog-card-image::after { background: linear-gradient(180deg, transparent 38%, rgba(5, 33, 70, .82)); }
.catalog-card-body > small { color: var(--cyan); }
.catalog-meta span { color: #315b84; border-color: var(--line); background: #f5f9fe; }
.program-facts { border-color: var(--line); background: #f5f9fe; }
.program-facts-grid > div { border-color: var(--line); }
.program-facts span,
.calendar-summary span { color: var(--cyan); }
.program-module { border-color: var(--line); background: #ffffff; box-shadow: 0 12px 30px rgba(24, 72, 126, .06); }
.program-module > span { color: var(--cyan); border-color: var(--line-strong); background: #eff6ff; }
.program-module p,
.program-module small,
.article-section p { color: var(--muted); }
.exam-panel { color: var(--ink); border-color: rgba(15, 86, 181, .24); background: linear-gradient(130deg, #eaf4ff, #ffffff); box-shadow: 0 18px 44px rgba(24, 72, 126, .1); }
.exam-panel p,
.exam-panel small { color: var(--muted); }
.article-points li { color: #3f5e7c; border-left-color: var(--cyan); background: #f3f8fe; }
.article-aside > div a { color: #5c7288; border-color: var(--line); }
.article-aside > div a:hover { color: var(--cyan); }
.calendar-status i { background: #2d79d2; box-shadow: 0 0 0 5px rgba(45, 121, 210, .1); }
.calendar-status.available i { background: #0f5bbd; box-shadow: 0 0 0 5px rgba(15, 91, 189, .1); }
.calendar-actions a { color: var(--cyan); }
.alliance-mark { color: var(--cyan); border-color: var(--line-strong); background: #edf5ff; }
.alliance-card small,
.case-copy > small { color: var(--cyan); }
.ecosystem-note,
.verification-note { border-color: var(--line); background: #f5f9fe; }
.verification-note p { color: #45627e; }
.access-security > span { color: #315978; border-color: var(--line); background: #f5f9fe; }
.checkout-package.recommended { border-color: rgba(15, 86, 181, .4); box-shadow: 0 22px 50px rgba(20, 75, 137, .14); }
.policy-nav a { color: #58718a; border-color: var(--line); }
.policy-content p { color: var(--muted); }

.media-card { border-color: var(--line); background: #ffffff; box-shadow: 0 17px 38px rgba(21, 67, 120, .11); }
.media-card-content { background: linear-gradient(transparent, rgba(4, 24, 51, .94)); }
.media-card-content h3,
.media-card-content p { color: #ffffff; }
.media-card-content span { color: #8fc7ff; }
.quote blockquote { color: #274c70; }
.tag { color: #365d81; border-color: var(--line); background: #f5f9fe; }
.timeline::before { background: linear-gradient(var(--cyan), rgba(15, 91, 189, .08)); }
.timeline-item::before { border-color: #ffffff; background: var(--cyan); box-shadow: 0 0 0 2px rgba(15, 91, 189, .22); }
.timeline-item span { color: var(--cyan); }
.stat strong { color: var(--cyan); }
.stat span { color: #60788f; }
.stat .icon { color: rgba(15, 91, 189, .3); }
.cta-panel { border-color: rgba(15, 86, 181, .25); background: linear-gradient(135deg, #eaf4ff, #ffffff 68%); box-shadow: 0 20px 48px rgba(20, 69, 126, .12); }

.privacy-panel { color: var(--ink); border-color: var(--line-strong); background: rgba(255, 255, 255, .98); box-shadow: 0 28px 76px rgba(16, 58, 108, .24); }
.footer-privacy { color: var(--muted); }
.site-footer { border-color: var(--line); background: #f7faff; }
.footer-column h3 { color: var(--cyan); }
.footer-column a { color: #526b84; }
.footer-column a:hover { color: var(--cyan); }
.footer-bottom { border-color: var(--line); color: #75899d; }
.contact-fab { color: #ffffff; border-color: #ffffff; background: linear-gradient(135deg, #0c4ba5, #1970d2); box-shadow: 0 16px 36px rgba(18, 87, 178, .28); }
.contact-fab span { color: #ffffff; background: #0d4eaa; }
.cert-tag { color: #27577f; border-color: var(--line); background: #edf5ff; }
.related-section { border-color: var(--line); background: #f5f9fe; }
.related-heading strong { color: #0b428f; }
.related-heading span { color: var(--subtle); }
.login-shell { border-color: var(--line-strong); background: #ffffff; box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--line-strong); background: linear-gradient(145deg, #eaf4ff, #ffffff); }
.price { color: var(--cyan); }
.route-result { color: var(--ink); background: #ffffff; }
.route-result h3 { color: #0b428f; }
.catalog-card-image > span { padding: 5px 9px; color: #ffffff; border-radius: 99px; background: rgba(9, 67, 139, .88); }

@media (max-width: 1040px) {
  .home-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
}

@media (max-width: 760px) {
  .home-hero { padding: 54px 0 80px; }
  .hero-copy h1 { font-size: clamp(45px, 13vw, 68px); }
  .hero-visual { padding-right: 8px; }
  .hero-visual::before { right: -12px; left: 20px; }
  .hero-frame { border-width: 6px; border-radius: 30px 10px 30px 10px; }
  .hero-signal { right: -2px; bottom: -18px; }
}

@media (max-width: 620px) {
  body:has(.home-hero) .contact-fab { display: none; }
}

/* E-learning certification catalog */
.elearning-hero {
  overflow: hidden;
}

.elearning-hero .page-hero-media {
  position: relative;
  isolation: isolate;
}

.elearning-hero .page-hero-media::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(15, 91, 189, .13);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(22, 91, 189, .08), transparent 56%);
  transform: rotate(2deg);
}

.elearning-hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.elearning-hero-points span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  color: #315b84;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 9px 24px rgba(22, 73, 132, .07);
  font-size: 11px;
  font-weight: 800;
}

.elearning-hero-points .icon {
  width: 15px;
  height: 15px;
  color: var(--cyan);
}

.elearning-catalog-section {
  position: relative;
}

.elearning-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.elearning-heading h2 {
  margin-bottom: 0;
}

.elearning-heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.catalog-card-linkable {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.catalog-card-linkable:focus-visible {
  outline: none;
  border-color: var(--cyan);
  box-shadow: var(--focus), 0 22px 46px rgba(23, 73, 133, .14);
  transform: translateY(-3px);
}

.catalog-card-linkable .catalog-card-image {
  height: auto;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background: #f7faff;
}

.catalog-card-linkable .catalog-card-image::after {
  background: linear-gradient(180deg, transparent 70%, rgba(5, 33, 70, .5));
}

.catalog-card-linkable .catalog-card-image img {
  object-fit: cover;
}

.catalog-card-linkable .catalog-card-body {
  padding: 25px;
}

.catalog-card-linkable .catalog-card-body h3 {
  color: #102f59;
}

.catalog-card-linkable .card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  color: var(--cyan);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

.catalog-card-linkable .card-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.catalog-card-linkable:hover .card-link .icon,
.catalog-card-linkable:focus-visible .card-link .icon {
  transform: translateX(5px);
}

@media (max-width: 820px) {
  .elearning-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 620px) {
  .elearning-hero-points {
    display: grid;
  }

  .elearning-hero-points span {
    justify-content: flex-start;
  }

  .catalog-card-linkable .catalog-card-body {
    padding: 22px;
  }
}

/* WHA signature experience */
.hero-kicker { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hero-edition { flex: 0 0 auto; padding: 7px 10px; color: #0d55ad; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .72); font: 700 9px/1 "Space Grotesk", sans-serif; letter-spacing: .14em; }
.hero-trust { display: grid; grid-template-columns: repeat(3, auto); width: max-content; max-width: 100%; margin-top: 31px; border-top: 1px solid var(--line); }
.hero-trust > div { min-width: 130px; padding: 18px 20px 0 0; }
.hero-trust > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-trust strong { display: block; color: #0d4f9f; font: 700 18px/1 "Space Grotesk", sans-serif; }
.hero-trust span { display: block; margin-top: 6px; color: #70849a; font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.hero-frame { transform: perspective(1100px) rotateX(var(--hero-y, 0deg)) rotateY(var(--hero-x, 0deg)) rotateZ(1.2deg); transform-style: preserve-3d; }
.hero-visual:hover .hero-frame { transform: perspective(1100px) rotateX(var(--hero-y, 0deg)) rotateY(var(--hero-x, 0deg)) rotateZ(0deg); }
.hero-frame-code { position: absolute; bottom: 18px; left: 21px; z-index: 3; color: rgba(214, 235, 255, .72); font: 700 8px/1 "Space Grotesk", sans-serif; letter-spacing: .16em; }
.hero-node { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 12px 14px; border: 1px solid rgba(14, 82, 171, .21); border-radius: 13px; background: rgba(255, 255, 255, .94); box-shadow: 0 17px 38px rgba(18, 63, 116, .16); backdrop-filter: blur(14px); animation: wha-float 5s ease-in-out infinite; }
.hero-node .icon { width: 20px; height: 20px; color: var(--cyan); }
.hero-node small,
.hero-node strong { display: block; }
.hero-node small { color: #72879b; font: 700 7px/1 "Space Grotesk", sans-serif; letter-spacing: .12em; }
.hero-node strong { margin-top: 5px; color: #123e75; font: 700 12px/1 "Space Grotesk", sans-serif; }
.hero-node-a { top: 31%; left: -48px; }
.hero-node-b { top: 17%; right: -18px; animation-delay: -2.4s; }
.hero-node-b i { width: 8px; height: 8px; border-radius: 50%; background: #1472d3; box-shadow: 0 0 0 5px rgba(20, 114, 211, .1); }
@keyframes wha-float { 50% { transform: translateY(-7px); } }

.dropdown-feature { position: relative; display: grid; gap: 5px; margin-top: 25px; padding: 14px 38px 14px 14px; color: #123f76; border: 1px solid rgba(15, 91, 189, .13); border-radius: 12px; background: rgba(255, 255, 255, .74); transition: border-color 160ms ease, transform 160ms ease; }
.dropdown-feature:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.dropdown-feature small { color: var(--cyan); font-size: 7px; font-weight: 800; letter-spacing: .13em; }
.dropdown-feature b { font: 700 12px/1.2 "Space Grotesk", sans-serif; }
.dropdown-feature .icon { position: absolute; top: 50%; right: 13px; width: 15px; height: 15px; color: var(--cyan); transform: translateY(-50%); }
.nav-route { margin-left: 5px; color: #ffffff; background: linear-gradient(135deg, #0c4ba5, #1970d2); box-shadow: 0 9px 20px rgba(20, 90, 180, .18); }
.nav-route .icon,
.nav-route:hover .icon { color: currentColor; }
.nav-route:hover { color: #ffffff; background: #093f8a; }

.evidence-section { position: relative; overflow: hidden; }
.evidence-section::before { position: absolute; inset: 0; content: ""; pointer-events: none; background: radial-gradient(circle at 12% 50%, rgba(28, 104, 198, .08), transparent 23rem); }
.evidence-section > * { position: relative; }
.evidence-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 20px; }
.evidence-heading > div { display: grid; gap: 7px; }
.evidence-heading strong { color: #143f70; font: 600 16px/1.35 "Space Grotesk", sans-serif; }
.evidence-heading > a { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-size: 11px; font-weight: 800; }
.evidence-heading .icon { width: 14px; height: 14px; }
.evidence-live { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.evidence-live i { width: 7px; height: 7px; border-radius: 50%; background: #176ec9; box-shadow: 0 0 0 5px rgba(23, 110, 201, .1); animation: evidence-pulse 2.2s ease-out infinite; }
@keyframes evidence-pulse { 50% { box-shadow: 0 0 0 9px rgba(23, 110, 201, 0); } }
.evidence-foot { display: flex; justify-content: space-between; gap: 16px; margin-top: 13px; color: #71869a; font: 700 8px/1 "Space Grotesk", sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.evidence-section .stats { overflow: hidden; border-radius: 18px; }
.evidence-section .stat { min-height: 126px; padding: 29px 27px; background: rgba(255, 255, 255, .9); }
.evidence-section .stat strong { font-size: clamp(30px, 3vw, 42px); }

.wha-bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 235px; gap: 18px; }
.bento-card { position: relative; display: flex; min-width: 0; overflow: hidden; flex-direction: column; justify-content: space-between; padding: 27px; color: #173e6b; border: 1px solid var(--line); border-radius: 22px; background: #ffffff; box-shadow: 0 16px 38px rgba(23, 69, 120, .08); transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.bento-card::after { position: absolute; top: 0; right: 0; width: 72px; height: 72px; content: ""; pointer-events: none; background: linear-gradient(135deg, transparent 50%, rgba(30, 109, 205, .08) 50%); }
.bento-card:hover { border-color: rgba(15, 86, 181, .32); box-shadow: 0 25px 55px rgba(20, 68, 123, .15); transform: translateY(-5px); }
.bento-card h3 { margin: 8px 0; font-size: clamp(22px, 2.4vw, 32px); }
.bento-card p { max-width: 48ch; margin: 0; font-size: 13px; }
.bento-code { position: relative; z-index: 2; color: var(--cyan); font: 700 8px/1 "Space Grotesk", sans-serif; letter-spacing: .15em; }
.bento-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--cyan); font-size: 11px; font-weight: 800; }
.bento-link .icon { width: 14px; height: 14px; transition: transform 160ms ease; }
.bento-card:hover .bento-link .icon { transform: translateX(4px); }
.bento-primary { grid-column: 1 / 8; grid-row: 1 / 3; padding: 0; color: #ffffff; border: 0; background: #071a34; }
.bento-media { position: absolute; inset: 0; }
.bento-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(4, 24, 53, .05), rgba(4, 25, 54, .92) 85%), linear-gradient(90deg, rgba(4, 25, 54, .34), transparent 70%); }
.bento-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.06); transition: transform 650ms cubic-bezier(.2,.7,.2,1); }
.bento-primary:hover .bento-media img { transform: scale(1.04); }
.bento-overlay { position: relative; z-index: 2; display: flex; height: 100%; flex-direction: column; justify-content: space-between; padding: 32px; }
.bento-overlay .bento-code,
.bento-overlay .bento-link { color: #9fcfff; }
.bento-overlay h3 { max-width: 480px; color: #ffffff; font-size: clamp(28px, 3.6vw, 46px); }
.bento-overlay p { color: rgba(232, 242, 255, .8); }
.bento-overlay .feature-icon { color: #ffffff; border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .1); backdrop-filter: blur(12px); }
.bento-lab { grid-column: 8 / 13; grid-row: 1; color: #ffffff; border-color: #0c4da6; background: radial-gradient(circle at 85% 20%, rgba(93, 162, 244, .28), transparent 13rem), linear-gradient(135deg, #082f69, #0c59b6); }
.bento-lab::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(120deg,transparent,#000); }
.bento-lab h3,
.bento-lab p { color: #ffffff; }
.bento-lab p { opacity: .76; }
.bento-lab .bento-code,
.bento-lab .bento-link { color: #b8dcff; }
.bento-lab .feature-icon { position: absolute; top: 25px; right: 25px; color: #ffffff; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.1); }
.bento-calendar { grid-column: 8 / 13; grid-row: 2; background: linear-gradient(145deg, #eef6ff, #ffffff); }
.bento-calendar-mark { position: absolute; top: 21px; right: 27px; text-align: right; }
.bento-calendar-mark strong { display: block; color: #0c55ae; font: 700 39px/.9 "Space Grotesk", sans-serif; }
.bento-calendar-mark span { color: #71869a; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.bento-community { grid-column: 1 / 7; grid-row: 3; display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; padding: 0; }
.bento-community-copy { display: flex; flex-direction: column; justify-content: center; padding: 27px 0 27px 27px; }
.bento-community h3 { font-size: 25px; }
.bento-community img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.02); mask-image: linear-gradient(90deg,transparent,#000 24%); }
.bento-resources { grid-column: 7 / 10; grid-row: 3; }
.bento-news { grid-column: 10 / 13; grid-row: 3; }
.bento-resources .feature-icon,
.bento-news .feature-icon { position: absolute; top: 23px; right: 23px; width: 44px; height: 44px; margin: 0; }
.bento-resources h3,
.bento-news h3 { font-size: 21px; }

.cert-card { min-height: 490px; border-radius: 22px; }
.cert-card::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg, rgba(4, 21, 46, .03), rgba(4, 23, 49, .92) 88%); }
.cert-card > img { filter: saturate(.76) contrast(1.08); }
.cert-card:hover > img { transform: scale(1.045); }
.cert-card .media-card-content { z-index: 3; background: none; }
.cert-card-status,
.cert-card-code { position: absolute; top: 18px; z-index: 4; color: #ffffff; border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; background: rgba(4, 27, 56, .76); backdrop-filter: blur(12px); font: 700 8px/1 "Space Grotesk", sans-serif; letter-spacing: .1em; }
.cert-card-status { left: 18px; display: flex; align-items: center; gap: 7px; padding: 8px 10px; text-transform: uppercase; }
.cert-card-status i { width: 6px; height: 6px; border-radius: 50%; background: #67b4ff; box-shadow: 0 0 0 4px rgba(103, 180, 255, .12); }
.cert-card-status.wait i { background: #f1c46b; box-shadow: 0 0 0 4px rgba(241, 196, 107, .12); }
.cert-card-code { right: 18px; padding: 8px 10px; }
.cert-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.cert-card-footer small { color: rgba(225, 238, 252, .68); font-size: 9px; }
.cert-card-footer .card-link { margin: 0; color: #a8d3ff; }

.comparison-card.recommended { border-color: rgba(15, 86, 181, .34); background: linear-gradient(150deg, #eaf4ff, #ffffff); box-shadow: 0 22px 52px rgba(21, 77, 141, .13); }
.comparison-label { color: #ffffff; background: var(--cyan); }
.testimonial-feature { background: #ffffff; }
.testimonial-portrait::after { background: linear-gradient(90deg, transparent 55%, #ffffff); }
.testimonial-copy blockquote { color: #17477a; }
.testimonial-copy cite { color: var(--cyan); }
.faq-item summary { color: #17477a; }
.faq-answer { color: var(--muted); }
.route-result.is-updated { animation: result-in 360ms ease both; }
@keyframes result-in { from { opacity: .55; transform: translateY(6px); } }
.page-hero::after { position: absolute; top: 26px; right: 2%; width: 32%; height: 70%; content: ""; pointer-events: none; opacity: .18; background-image: radial-gradient(rgba(15, 91, 189, .5) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(100deg,transparent,#000); }

.mobile-action-bar { display: none; }

@media (max-width: 1180px) {
  .nav-link,
  .nav-trigger { padding-inline: 10px; font-size: 12px; }
  .nav-route { display: none; }
}

@media (max-width: 1040px) {
  .mobile-nav { top: 78px; right: 0; bottom: 0; left: 0; max-height: none; padding: 22px max(20px, calc((100% - 720px) / 2)); border: 0; border-top: 1px solid var(--line); border-radius: 0; }
  .mobile-link,
  .mobile-group > button { min-height: 58px; border-bottom: 1px solid var(--line); border-radius: 0; font-size: 15px; }
  .mobile-route { margin: 14px 0; color: #ffffff; border: 0; border-radius: 12px; background: linear-gradient(135deg, #0c4ba5, #1970d2); }
  .mobile-route .icon { color: currentColor; }
  .hero-node-a { left: 5px; }
  .hero-node-b { right: 0; }
  .wha-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(220px, auto); }
  .bento-primary { grid-column: 1 / -1; grid-row: auto; min-height: 560px; }
  .bento-lab,
  .bento-calendar,
  .bento-community,
  .bento-resources,
  .bento-news { grid-column: auto; grid-row: auto; }
  .bento-community { grid-column: 1 / -1; min-height: 250px; }
  .bento-resources,
  .bento-news { min-height: 240px; }
}

@media (max-width: 760px) {
  .hero-kicker { align-items: flex-start; }
  .hero-edition { display: none; }
  .hero-trust { width: 100%; grid-template-columns: repeat(3, 1fr); }
  .hero-trust > div { min-width: 0; padding-right: 9px; }
  .hero-trust > div + div { padding-left: 10px; }
  .hero-trust strong { font-size: 15px; }
  .hero-trust span { font-size: 7px; }
  .hero-node { display: none; }
  .hero-frame-code { font-size: 6px; }
  .evidence-heading { align-items: flex-start; flex-direction: column; }
  .evidence-foot { flex-wrap: wrap; justify-content: flex-start; }
  .wha-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-primary,
  .bento-lab,
  .bento-calendar,
  .bento-community,
  .bento-resources,
  .bento-news { grid-column: auto; min-height: 260px; }
  .bento-primary { min-height: 480px; }
  .bento-community { grid-template-columns: 1fr; }
  .bento-community-copy { padding: 27px; }
  .bento-community img { position: absolute; inset: 0; z-index: -1; opacity: .11; mask-image: none; }
  .testimonial-portrait::after { background: linear-gradient(0deg, #ffffff, transparent 55%); }
}

@media (max-width: 620px) {
  .hero-trust { display: none; }
  .bento-card { border-radius: 18px; }
  .cert-card-footer { align-items: flex-start; flex-direction: column; }
  .program-page { padding-bottom: 70px; }
  .program-page .contact-fab { display: none; }
  .mobile-action-bar { position: fixed; right: 0; bottom: 0; left: 0; z-index: 180; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: rgba(255, 255, 255, .96); box-shadow: 0 -12px 32px rgba(16, 61, 114, .13); backdrop-filter: blur(16px); }
  .mobile-action-bar a { display: flex; min-height: 44px; align-items: center; justify-content: center; gap: 6px; color: var(--cyan); border: 1px solid var(--line-strong); border-radius: 9px; font-size: 10px; font-weight: 800; text-align: center; }
  .mobile-action-bar a:last-child { color: #ffffff; border-color: var(--cyan); background: var(--cyan); }
  .mobile-action-bar .icon { width: 14px; height: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-node,
  .evidence-live i { animation: none; }
  .hero-frame { transform: none; }
}

/* WHA premium editorial homepage v2 */
body[data-page="inicio"] .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: none;
}
body[data-page="inicio"] .site-header.is-scrolled { background: rgba(255, 255, 255, .96); }
body.menu-open { overflow: hidden; }

.home-hero-cinematic {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  padding: 150px 0 64px;
  isolation: isolate;
  background: #f8fbff;
}
.home-hero-cinematic::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.97) 36%, rgba(255,255,255,.52) 55%, rgba(239,247,255,.04) 77%);
}
.home-hero-cinematic::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 160px;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(255,255,255,.92));
}
.hero-cinematic-image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--cinematic-x, 0), var(--cinematic-y, 0), 0) scale(1.015);
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
  animation: hero-cinematic-enter 1.4s cubic-bezier(.2,.8,.2,1) both;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .24;
  background-image: linear-gradient(rgba(21,89,176,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(21,89,176,.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}
.hero-stage { position: relative; min-height: 610px; }
.hero-stage .hero-copy { width: min(680px, 58%); padding-top: clamp(18px, 5vh, 64px); }
.hero-stage .hero-copy h1 {
  max-width: 700px;
  margin: 28px 0 25px;
  color: #073b7a;
  font-size: clamp(58px, 6.6vw, 96px);
  line-height: .93;
  letter-spacing: -.067em;
  text-wrap: balance;
}
.hero-stage .text-gradient { background-image: linear-gradient(90deg, #0d59b5 0%, #2c8ce8 70%, #62b7ff 100%); }
.hero-stage .lead { max-width: 620px; color: #405c78; font-size: clamp(17px, 1.5vw, 21px); }
.hero-stage .hero-proof { margin-top: 26px; }
.hero-stage .hero-proof li { background: rgba(255,255,255,.82); backdrop-filter: blur(12px); }
.hero-stage .hero-trust { margin-top: 34px; }
.hero-command {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: min(360px, 34%);
  padding: 22px;
  color: #102f57;
  border: 1px solid rgba(16,87,174,.2);
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 28px 70px rgba(7,49,100,.2);
  backdrop-filter: blur(22px) saturate(140%);
}
.hero-command::before { position: absolute; inset: 7px; content: ""; pointer-events: none; border: 1px solid rgba(17,94,185,.08); border-radius: 15px; }
.command-top, .command-date, .command-route, .command-capacity { position: relative; display: flex; align-items: center; }
.command-top { justify-content: space-between; color: #1765bc; font: 700 9px/1 "Space Grotesk", sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.command-top span { display: inline-flex; align-items: center; gap: 7px; }
.command-top i { width: 7px; height: 7px; border-radius: 50%; background: #1782e7; box-shadow: 0 0 0 5px rgba(23,130,231,.1); animation: evidence-pulse 2s ease-out infinite; }
.command-top small { color: #7890a9; }
.command-date { gap: 13px; margin-top: 25px; }
.command-date > strong { color: #0b52a5; font: 700 58px/.8 "Space Grotesk", sans-serif; letter-spacing: -.06em; }
.command-date span, .command-date b { display: block; }
.command-date span { color: #174f91; font: 700 11px/1 "Space Grotesk", sans-serif; letter-spacing: .11em; }
.command-date b { margin-top: 7px; color: #6d8297; font-size: 11px; }
.command-route { gap: 11px; margin-top: 23px; padding: 13px; border: 1px solid rgba(18,89,176,.12); border-radius: 12px; background: rgba(234,244,255,.72); }
.command-route .icon { width: 23px; height: 23px; color: #1267c7; }
.command-route small, .command-route strong { display: block; }
.command-route small { color: #8293a6; font: 700 7px/1 "Space Grotesk", sans-serif; letter-spacing: .13em; }
.command-route strong { margin-top: 5px; color: #153c6e; font: 700 12px/1.2 "Space Grotesk", sans-serif; }
.command-capacity { gap: 12px; margin-top: 17px; }
.command-capacity > span { position: relative; width: 72px; height: 5px; overflow: hidden; border-radius: 999px; background: #dce8f4; }
.command-capacity > span i { display: block; width: var(--capacity); height: 100%; background: linear-gradient(90deg,#0e59b8,#43a4f5); animation: capacity-fill 1.3s .3s both; transform-origin: left; }
.command-capacity b, .command-capacity small { display: block; }
.command-capacity b { color: #275172; font-size: 10px; }
.command-capacity small { margin-top: 2px; color: #8293a6; font-size: 8px; }
.hero-command > a { position: relative; display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 15px; color: #0c5cb9; border-top: 1px solid rgba(17,88,173,.12); font-size: 11px; font-weight: 800; }
.hero-command > a .icon { width: 16px; height: 16px; }
.hero-coordinate { position: absolute; bottom: 0; left: 0; color: rgba(30,79,127,.52); font: 700 8px/1 "Space Grotesk",sans-serif; letter-spacing: .18em; }

.expertise-marquee { overflow: hidden; padding: 0; background: #fff; }
.marquee-track { display: flex; width: max-content; animation: wha-marquee 32s linear infinite; }
.marquee-content { display: flex; align-items: center; min-height: 84px; }
.marquee-content > span { min-width: 220px; padding-inline: 34px; border-right: 1px solid var(--line); }
.marquee-content .expertise-label { min-width: 190px; }
.expertise-marquee:hover .marquee-track { animation-play-state: paused; }

.section-blueprint {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 80% 10%, rgba(71,156,255,.32), transparent 30rem), linear-gradient(135deg,#063a7a,#0b5ab6 58%,#07478e);
}
.section-blueprint::before { position: absolute; inset: 0; content: ""; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg,transparent,#000); }
.section-blueprint > * { position: relative; }
.section-heading-inverse h2, .section-heading-inverse .eyebrow { color: #fff; }
.section-heading-inverse p { color: rgba(225,239,255,.76); }
.career-path { padding: 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(3,35,76,.33); box-shadow: 0 30px 80px rgba(0,21,57,.25); backdrop-filter: blur(15px); }
.career-rail { position: relative; display: grid; grid-template-columns: repeat(5,1fr); }
.career-rail::before { position: absolute; top: 31px; right: 10%; left: 10%; height: 1px; content: ""; background: linear-gradient(90deg,rgba(93,186,255,.2),rgba(164,219,255,.8),rgba(93,186,255,.2)); }
.career-step { position: relative; z-index: 1; display: grid; justify-items: center; padding: 18px 10px 22px; border: 0; background: transparent; cursor: pointer; }
.career-step span { display: grid; place-items: center; width: 29px; height: 29px; color: #b9ddff; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: #0b4b96; font: 700 8px/1 "Space Grotesk",sans-serif; transition: .25s ease; }
.career-step b { margin-top: 15px; color: rgba(255,255,255,.78); font: 700 12px/1 "Space Grotesk",sans-serif; }
.career-step small { margin-top: 7px; color: rgba(210,232,255,.52); font-size: 9px; }
.career-step.is-active span { color: #0a4e9f; border-color: #fff; background: #fff; box-shadow: 0 0 0 7px rgba(255,255,255,.12),0 0 30px rgba(143,207,255,.6); transform: scale(1.08); }
.career-step.is-active b { color: #fff; }
.career-detail { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; min-height: 160px; padding: 28px; border-radius: 17px; background: rgba(255,255,255,.96); }
.career-detail-icon { display: grid; place-items: center; width: 58px; height: 58px; color: #0f62bf; border: 1px solid rgba(15,98,191,.16); border-radius: 15px; background: #edf6ff; }
.career-detail-icon .icon { width: 29px; height: 29px; }
.career-detail span { color: #2775c8; font: 700 8px/1 "Space Grotesk",sans-serif; letter-spacing: .15em; }
.career-detail h3 { margin: 8px 0 5px; color: #0d3d76; font-size: 24px; }
.career-detail p { max-width: 680px; margin: 0; color: #61768b; font-size: 13px; }
.career-detail > a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 15px; color: #0f5db6; border: 1px solid rgba(15,93,182,.17); border-radius: 10px; font-size: 10px; font-weight: 800; white-space: nowrap; }
.career-detail.is-changing > div:nth-child(2) { animation: detail-in .32s ease; }

.program-explorer-section { background: linear-gradient(180deg,#fff,#f3f8ff 48%,#fff); }
.program-explorer { padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.8); box-shadow: 0 30px 80px rgba(20,64,114,.09); }
.program-filters { display: flex; flex-wrap: wrap; gap: 12px 30px; padding: 8px 8px 20px; border-bottom: 1px solid var(--line); }
.program-filters > div { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.program-filters span { margin-right: 5px; color: #71879d; font: 700 8px/1 "Space Grotesk",sans-serif; letter-spacing: .15em; text-transform: uppercase; }
.program-filters button { min-height: 33px; padding: 0 12px; color: #41617e; border: 1px solid transparent; border-radius: 999px; background: #f2f7fc; font-size: 9px; font-weight: 800; cursor: pointer; transition: .2s ease; }
.program-filters button:hover { color: #0d5bb7; border-color: rgba(15,91,183,.16); }
.program-filters button.is-active { color: #fff; background: #0f5bbd; box-shadow: 0 8px 20px rgba(15,91,189,.2); }
.program-count { display: flex; align-items: baseline; gap: 5px; padding: 16px 7px; color: #47637e; font-size: 10px; font-weight: 700; }
.program-count > span { color: #0f5bbd; font: 700 20px/1 "Space Grotesk",sans-serif; }
.program-count small { margin-left: auto; color: #8a9bab; font-size: 8px; font-weight: 600; }
.program-deck { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 15px; }
.explorer-card { min-height: 420px; cursor: pointer; transition: transform .25s ease,box-shadow .25s ease,opacity .25s ease; }
.explorer-card:hover, .explorer-card.is-featured { transform: translateY(-5px); box-shadow: 0 28px 56px rgba(11,58,111,.18); }
.explorer-card.is-featured { outline: 2px solid rgba(28,113,214,.32); outline-offset: 3px; }
.explorer-card.is-filtered { display: none; }

.community-evidence-section { background: #fff; }
.community-evidence { position: relative; min-height: 620px; overflow: hidden; border-radius: 30px; box-shadow: 0 35px 90px rgba(12,58,108,.19); }
.community-evidence::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,rgba(3,30,64,.9) 0%,rgba(5,44,88,.66) 38%,transparent 68%),linear-gradient(to top,rgba(3,24,49,.38),transparent 60%); }
.community-evidence-image { width: 100%; height: 620px; object-fit: cover; }
.community-evidence-overlay { position: absolute; top: 50%; left: clamp(28px,5vw,70px); z-index: 2; width: min(500px,48%); transform: translateY(-50%); }
.community-evidence-overlay .eyebrow { color: #9ed3ff; }
.community-evidence-overlay h2 { margin: 22px 0 17px; color: #fff; font-size: clamp(38px,4.7vw,65px); }
.community-evidence-overlay p { color: rgba(232,243,255,.78); }
.button-light { color: #0b53a4; background: #fff; box-shadow: 0 15px 40px rgba(0,20,47,.18); }
.evidence-quote-card { position: absolute; right: 30px; bottom: 30px; z-index: 3; width: min(350px,36%); padding: 19px; color: #1b3e65; border: 1px solid rgba(255,255,255,.72); border-radius: 18px; background: rgba(255,255,255,.91); box-shadow: 0 22px 56px rgba(0,27,62,.22); backdrop-filter: blur(20px); }
.evidence-quote-head { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; }
.evidence-quote-head img { width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }
.evidence-quote-head strong,.evidence-quote-head span { display: block; }
.evidence-quote-head strong { color: #173e6c; font-size: 11px; }
.evidence-quote-head span { color: #73879b; font-size: 8px; }
.evidence-quote-head b { padding: 5px 7px; color: #0a67c6; border: 1px solid rgba(10,103,198,.17); border-radius: 999px; font-size: 6px; letter-spacing: .1em; }
.evidence-quote-card blockquote { margin: 18px 0; color: #275171; font: 600 16px/1.45 "Space Grotesk",sans-serif; }
.evidence-quote-meta { display: flex; justify-content: space-between; color: #7a8d9f; font-size: 7px; font-weight: 700; letter-spacing: .08em; }
.evidence-quote-meta span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.evidence-quote-meta i { width: 6px; height: 6px; border-radius: 50%; background: #1682e3; }
.community-mini-grid { display: grid; grid-template-columns: 1fr 1fr 1.05fr; gap: 14px; margin-top: 14px; }
.community-mini-grid > article,.community-mini-grid > a { display: flex; align-items: center; gap: 14px; min-height: 90px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; background: #f7fbff; }
.community-mini-grid article img { width: 53px; height: 53px; object-fit: cover; border-radius: 12px; }
.community-mini-grid article span { color: #2670bd; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.community-mini-grid article strong { display: block; margin-top: 5px; color: #2e5274; font: 600 11px/1.35 "Space Grotesk",sans-serif; }
.community-mini-grid > a { color: #0f5bbd; background: #edf6ff; }
.community-mini-grid > a .icon { width: 23px; height: 23px; }
.community-mini-grid > a div { flex: 1; }
.community-mini-grid > a strong,.community-mini-grid > a small { display: block; }
.community-mini-grid > a small { margin-top: 4px; color: #6b839a; font-size: 8px; }

.final-conversion { position: relative; overflow: hidden; padding: 105px 0 70px; color: #fff; background: radial-gradient(circle at 85% 20%,rgba(70,156,255,.4),transparent 28rem),linear-gradient(130deg,#052d61,#0b5ab5 65%,#08458b); }
.final-conversion::before { position: absolute; right: -10%; bottom: -52%; width: 590px; height: 590px; content: ""; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.035),0 0 0 180px rgba(255,255,255,.025); }
.final-conversion-grid { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg,transparent,#000); }
.final-conversion-inner { position: relative; display: grid; grid-template-columns: 120px minmax(0,1fr) auto; align-items: center; gap: 42px; }
.final-conversion-mark { display: grid; place-items: center; width: 120px; height: 120px; border: 1px solid rgba(255,255,255,.22); border-radius: 27px; background: rgba(255,255,255,.08); backdrop-filter: blur(15px); }
.final-conversion-mark img { width: 88px; height: 88px; object-fit: cover; object-position: left; border-radius: 15px; }
.final-conversion-copy .eyebrow { color: #a4d7ff; }
.final-conversion-copy h2 { max-width: 700px; margin: 22px 0 13px; color: #fff; font-size: clamp(40px,5vw,70px); }
.final-conversion-copy h2 span { color: #9fd4ff; }
.final-conversion-copy p { max-width: 680px; margin: 0; color: rgba(228,241,255,.74); }
.final-conversion-actions { display: grid; gap: 11px; justify-items: stretch; min-width: 220px; }
.final-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 16px; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 12px; font-size: 10px; font-weight: 800; }
.final-whatsapp .icon { width: 17px; height: 17px; }
.final-conversion-meta { grid-column: 2 / -1; display: flex; flex-wrap: wrap; gap: 8px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.15); }
.final-conversion-meta span { padding: 7px 10px; color: rgba(230,243,255,.74); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 8px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

@keyframes hero-cinematic-enter { from { opacity: 0; filter: saturate(.7) blur(5px); } to { opacity: 1; filter: none; } }
@keyframes capacity-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes wha-marquee { to { transform: translateX(-50%); } }
@keyframes detail-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .hero-stage .hero-copy { width: 63%; }
  .hero-stage .hero-copy h1 { font-size: clamp(54px,8vw,82px); }
  .hero-command { width: 330px; }
  .program-deck { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .final-conversion-inner { grid-template-columns: 100px 1fr; }
  .final-conversion-actions { grid-column: 2; grid-template-columns: auto auto; justify-self: start; }
  .final-conversion-meta { grid-column: 2; }
}
@media (max-width: 820px) {
  .home-hero-cinematic { min-height: auto; padding: 132px 0 64px; }
  .home-hero-cinematic::before { background: linear-gradient(180deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.93) 53%,rgba(255,255,255,.08) 76%); }
  .hero-cinematic-image { inset: auto 0 0; height: 54%; object-position: 69% center; }
  .hero-stage { min-height: 900px; }
  .hero-stage .hero-copy { width: 100%; padding-top: 10px; }
  .hero-stage .hero-copy h1 { max-width: 760px; }
  .hero-command { right: 0; bottom: 22px; width: min(370px,90%); }
  .hero-coordinate { display: none; }
  .career-rail { grid-template-columns: repeat(5,minmax(112px,1fr)); overflow-x: auto; }
  .career-detail { grid-template-columns: auto 1fr; }
  .career-detail > a { grid-column: 2; justify-self: start; }
  .community-evidence { min-height: 700px; }
  .community-evidence-image { height: 700px; object-position: 43% center; }
  .community-evidence-overlay { top: 35%; width: 70%; }
  .evidence-quote-card { right: 20px; bottom: 20px; width: min(360px,70%); }
  .community-mini-grid { grid-template-columns: 1fr 1fr; }
  .community-mini-grid > a { grid-column: 1 / -1; }
  .final-conversion-inner { grid-template-columns: 1fr; }
  .final-conversion-mark { width: 90px; height: 90px; }
  .final-conversion-mark img { width: 66px; height: 66px; }
  .final-conversion-actions,.final-conversion-meta { grid-column: 1; }
}
@media (max-width: 620px) {
  body[data-page="inicio"] .site-header { background: rgba(255,255,255,.92); }
  .home-hero-cinematic { padding-top: 112px; }
  .home-hero-cinematic::before { background: linear-gradient(180deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.96) 38%,rgba(255,255,255,.36) 57%,rgba(255,255,255,.06) 78%); }
  .hero-stage { min-height: 0; }
  .hero-stage .hero-copy h1 { margin-top: 22px; font-size: clamp(46px,14.4vw,66px); }
  .hero-stage .lead { font-size: 16px; }
  .hero-stage .hero-proof { display: flex; overflow-x: auto; padding-bottom: 6px; }
  .hero-stage .hero-proof li { flex: 0 0 auto; }
  .hero-stage .hero-actions .button { width: 100%; }
  .hero-command { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 190px; padding: 18px; }
  .command-date > strong { font-size: 48px; }
  .marquee-content > span { min-width: 190px; padding-inline: 24px; }
  .section-blueprint { padding-block: 72px; }
  .career-path { margin-inline: -8px; }
  .career-rail { margin-bottom: 8px; }
  .career-detail { grid-template-columns: 1fr; padding: 22px; }
  .career-detail > a { grid-column: 1; }
  .program-explorer { padding: 10px; }
  .program-filters { display: grid; }
  .program-filters > div { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .program-filters span { position: sticky; left: 0; z-index: 1; padding-right: 6px; background: #fff; }
  .program-filters button { flex: 0 0 auto; }
  .program-count small { display: none; }
  .program-deck { grid-template-columns: 1fr; }
  .explorer-card { min-height: 400px; }
  .community-evidence { min-height: 730px; border-radius: 22px; }
  .community-evidence-image { height: 730px; object-position: 42% center; }
  .community-evidence::after { background: linear-gradient(180deg,rgba(3,30,64,.78),rgba(3,30,64,.3) 56%,rgba(3,24,49,.75)); }
  .community-evidence-overlay { top: 38px; left: 24px; width: calc(100% - 48px); transform: none; }
  .community-evidence-overlay h2 { font-size: 39px; }
  .evidence-quote-card { right: 14px; bottom: 14px; left: 14px; width: auto; }
  .community-mini-grid { grid-template-columns: 1fr; }
  .community-mini-grid > a { grid-column: 1; }
  .final-conversion { padding: 80px 0 60px; }
  .final-conversion-mark { display: none; }
  .final-conversion-copy h2 { font-size: 42px; }
  .final-conversion-actions { grid-template-columns: 1fr; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic-image,.marquee-track,.command-top i,.command-capacity > span i { animation: none; }
}

/* WHA aggressive cyber-command layer */
body[data-page="inicio"] {
  --wha-electric: #168dff;
  --wha-navy: #031a36;
  --wha-ink: #02152d;
}
body[data-page="inicio"] .site-header {
  border-bottom: 1px solid rgba(20, 103, 201, .22);
  background: rgba(248, 252, 255, .9);
  box-shadow: 0 8px 0 rgba(5, 54, 111, .035);
}
body[data-page="inicio"] .nav-link,
body[data-page="inicio"] .nav-trigger,
body[data-page="inicio"] .menu-button { border-radius: 3px; }
body[data-page="inicio"] .nav-link.active,
body[data-page="inicio"] .nav-group.active .nav-trigger,
body[data-page="inicio"] .nav-route {
  clip-path: polygon(9px 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%,0 9px);
}
body[data-page="inicio"] .nav-route { background: linear-gradient(135deg,#074b9f,#1378de); }

.home-hero-cinematic {
  background: linear-gradient(115deg,#fff 0%,#f5faff 45%,#d6ebff 100%);
  border-bottom: 5px solid #0757b2;
}
.home-hero-cinematic::before {
  background: linear-gradient(90deg,rgba(255,255,255,1) 0%,rgba(255,255,255,.98) 38%,rgba(247,251,255,.42) 54%,rgba(2,29,65,.12) 100%);
}
.home-hero-cinematic::after {
  height: 210px;
  background: linear-gradient(transparent,rgba(255,255,255,.9));
  clip-path: polygon(0 46%,72% 46%,78% 0,100% 0,100% 100%,0 100%);
}
.hero-cinematic-image { filter: contrast(1.09) saturate(1.16); }
.hero-grid-overlay { opacity: .36; background-size: 48px 48px; }
.hero-stage::before {
  position: absolute;
  top: -28px;
  bottom: -28px;
  left: -26px;
  width: 6px;
  content: "";
  background: linear-gradient(#0c70d7 0 12%,transparent 12% 18%,#0c70d7 18% 22%,transparent 22% 78%,#0c70d7 78% 100%);
  box-shadow: 9px 0 0 rgba(13,105,207,.08);
}
.hero-stage::after {
  position: absolute;
  top: 8%;
  right: 0;
  width: 48%;
  height: 2px;
  z-index: 1;
  content: "";
  pointer-events: none;
  opacity: .8;
  background: linear-gradient(90deg,transparent,#58b4ff,transparent);
  box-shadow: 0 0 22px #168dff;
  animation: wha-scan 6.5s ease-in-out infinite;
}
.hero-stage .hero-copy { z-index: 3; }
.hero-stage .hero-copy h1 {
  position: relative;
  margin: 21px 0 20px;
  color: var(--wha-ink);
  font-size: clamp(63px,7.35vw,108px);
  line-height: .78;
  letter-spacing: -.078em;
  text-transform: uppercase;
  text-shadow: 1px 0 0 rgba(6,94,192,.12);
}
.hero-stage .hero-copy h1 > span { display: block; }
.hero-stage .hero-copy h1 > span:nth-child(2) { margin-left: clamp(20px,3.3vw,48px); color: #064e9e; }
.hero-stage .hero-copy h1 > span:nth-child(3) { margin-left: clamp(40px,6.5vw,94px); line-height: .9; }
.hero-stage .lead { max-width: 650px; color: #294d70; font-weight: 540; }
.hero-claw { position: absolute; top: 116px; right: 33%; z-index: -1; display: flex; gap: 7px; opacity: .18; transform: rotate(-17deg); }
.hero-claw i { display: block; width: 8px; height: 94px; background: linear-gradient(transparent,#0876dc 25%,#0876dc 78%,transparent); clip-path: polygon(55% 0,100% 0,45% 100%,0 100%); }
.hero-claw i:nth-child(2) { height: 118px; margin-top: -7px; }
.hero-claw i:nth-child(3) { height: 84px; margin-top: 13px; }
.hero-protocol {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin-top: 20px;
  overflow: hidden;
  color: #dceeff;
  clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px);
  background: linear-gradient(90deg,#031c3c,#0757ac);
  font: 700 7px/1 "Space Grotesk",sans-serif;
  letter-spacing: .12em;
}
.hero-protocol span,.hero-protocol b,.hero-protocol small { padding: 0 13px; white-space: nowrap; }
.hero-protocol span { display: inline-flex; align-items: center; gap: 7px; height: 34px; color: #fff; background: #0b73d6; text-transform: uppercase; }
.hero-protocol span i { width: 6px; height: 6px; border-radius: 50%; background: #9ee1ff; box-shadow: 0 0 12px #9ee1ff; }
.hero-protocol b { color: #fff; }
.hero-protocol small { color: #76b8f7; border-left: 1px solid rgba(255,255,255,.16); }
.hero-stage .hero-proof li {
  color: #183e65;
  border-color: rgba(7,83,167,.22);
  border-radius: 2px;
  background: rgba(255,255,255,.9);
  clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px);
}
body[data-page="inicio"] .button { border-radius: 3px; text-transform: uppercase; letter-spacing: .075em; }
body[data-page="inicio"] .button-primary,
body[data-page="inicio"] .button-light {
  clip-path: polygon(11px 0,100% 0,100% calc(100% - 11px),calc(100% - 11px) 100%,0 100%,0 11px);
}
body[data-page="inicio"] .button-primary { background: linear-gradient(135deg,#064c9f,#168dff); box-shadow: 0 16px 34px rgba(10,103,209,.3); }
body[data-page="inicio"] .button-primary:hover { box-shadow: 0 20px 44px rgba(10,103,209,.42),0 0 0 1px #62b9ff; }
body[data-page="inicio"] .button-secondary { color: #073a75; border-color: #0e68c7; background: rgba(255,255,255,.82); }

.hero-command {
  color: #eaf5ff;
  border: 1px solid rgba(79,174,255,.55);
  border-radius: 3px;
  clip-path: polygon(22px 0,100% 0,100% calc(100% - 22px),calc(100% - 22px) 100%,0 100%,0 22px);
  background: linear-gradient(145deg,rgba(2,20,44,.96),rgba(4,52,103,.94));
  box-shadow: 0 30px 70px rgba(1,24,55,.34),inset 0 0 45px rgba(16,120,222,.12);
}
.hero-command::before { inset: 8px; border-color: rgba(95,190,255,.17); border-radius: 0; clip-path: inherit; }
.command-top { color: #69c1ff; }
.command-top small { color: #4d95d6; }
.command-date > strong { color: #5bb5ff; text-shadow: 0 0 20px rgba(70,171,255,.42); }
.command-date span { color: #fff; }
.command-date b,.command-capacity small { color: #82a8ca; }
.command-route { border-radius: 2px; border-color: rgba(87,177,255,.22); background: rgba(4,31,64,.72); }
.command-route .icon { color: #61bbff; }
.command-route small { color: #6498c6; }
.command-route strong,.command-capacity b { color: #e8f5ff; }
.command-capacity > span { background: #112e4c; }
.hero-command > a { color: #7bc7ff; border-color: rgba(98,186,255,.18); }
.hero-coordinate { color: rgba(7,61,117,.65); }

.expertise-marquee { color: #cfe9ff; border: 0; background: #031b38; box-shadow: inset 0 1px #1268bd,inset 0 -1px #1268bd; }
.expertise-marquee .expertise-label { color: #63baff; }
.expertise-marquee .expertise-item { border-color: rgba(94,177,255,.2); }
.expertise-marquee .expertise-item .icon { color: #48a7ff; }

body[data-page="inicio"] .section-heading h2 { color: #052f62; text-transform: uppercase; font-size: clamp(35px,4.25vw,57px); line-height: .95; }
body[data-page="inicio"] .section-heading .eyebrow { color: #0a6bcd; }
body[data-page="inicio"] .section-heading .eyebrow::before { height: 2px; box-shadow: 9px 0 currentColor; }
.evidence-section { border: 0; background: linear-gradient(115deg,#031a35,#073d7a); }
.evidence-section::before { background: linear-gradient(110deg,transparent 55%,rgba(57,149,241,.15)),repeating-linear-gradient(135deg,transparent 0 12px,rgba(255,255,255,.018) 12px 13px); }
.evidence-heading strong { color: #e9f5ff; }
.evidence-heading a,.evidence-live { color: #63bbff; }
.evidence-section .stat { border-color: rgba(89,177,255,.18); border-radius: 0; background: rgba(255,255,255,.055); }
.evidence-section .stat strong { color: #fff; }
.evidence-section .stat > span:last-child,.evidence-foot { color: #7fa8cf; }
.evidence-section .stats { border-radius: 0; clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px); }

.wha-bento { gap: 13px; }
.bento-card {
  border-radius: 2px;
  clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px);
  box-shadow: 0 20px 45px rgba(2,38,80,.12);
}
.bento-card::after { position: absolute; top: 0; right: 18px; left: 18px; height: 2px; z-index: 4; content: ""; background: linear-gradient(90deg,transparent,#168dff,transparent); transform: scaleX(0); transition: transform .28s ease; }
.bento-card:hover::after { transform: scaleX(1); }
.bento-card:hover { transform: translateY(-7px); box-shadow: 0 26px 60px rgba(2,38,80,.2); }
.bento-code { color: #0a69c8; }
.bento-primary .bento-code,.bento-community .bento-code { color: #74c7ff; }
.feature-icon { border-radius: 2px; clip-path: polygon(7px 0,100% 0,100% calc(100% - 7px),calc(100% - 7px) 100%,0 100%,0 7px); }

.section-blueprint { border-block: 5px solid #168dff; background: radial-gradient(circle at 85% 4%,rgba(23,145,255,.35),transparent 30rem),linear-gradient(125deg,#021b3a,#0758ad 68%,#03346c); }
.section-blueprint .section-heading h2 { color: #fff; }
.career-path,.career-detail { border-radius: 2px; }
.career-detail { clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px); }

.program-explorer-section { color: #eaf5ff; background: radial-gradient(circle at 90% 0,rgba(21,129,235,.22),transparent 25rem),#03182f; }
.program-explorer-section .section-heading h2 { color: #fff !important; }
.program-explorer-section .section-heading p { color: #86a8c8; }
.program-explorer-section .button-secondary { color: #c9e8ff !important; border-color: #258ae7 !important; background: rgba(3,35,70,.78) !important; }
.program-explorer { border-color: rgba(61,154,239,.27); border-radius: 2px; clip-path: polygon(22px 0,100% 0,100% calc(100% - 22px),calc(100% - 22px) 100%,0 100%,0 22px); background: rgba(4,34,68,.72); box-shadow: 0 34px 90px rgba(0,7,22,.3); }
.program-filters { border-color: rgba(79,162,238,.2); }
.program-filters span,.program-count { color: #79a6cd; }
.program-filters button { color: #a9c9e5; border-radius: 2px; background: #092b52; }
.program-filters button.is-active { background: #0c75da; box-shadow: 0 0 24px rgba(23,137,244,.25); }
.program-count > span { color: #69c2ff; }
.program-count small { color: #638bb1; }
.explorer-card { border-radius: 2px; clip-path: polygon(16px 0,100% 0,100% calc(100% - 16px),calc(100% - 16px) 100%,0 100%,0 16px); }
.explorer-card.is-featured { outline-color: #168dff; box-shadow: 0 0 0 1px #168dff,0 0 34px rgba(22,141,255,.28); }

.route-finder,.comparison-card,.faq-item { border-radius: 2px; }
.route-finder { clip-path: polygon(18px 0,100% 0,100% calc(100% - 18px),calc(100% - 18px) 100%,0 100%,0 18px); box-shadow: 0 28px 70px rgba(2,42,87,.12); }
.comparison-card { clip-path: polygon(14px 0,100% 0,100% calc(100% - 14px),calc(100% - 14px) 100%,0 100%,0 14px); }
.comparison-card:hover { transform: translateY(-7px); border-color: #168dff; }
.comparison-card.recommended { box-shadow: 0 0 0 1px #167cde,0 24px 55px rgba(4,66,133,.2); }
.faq-item { clip-path: polygon(10px 0,100% 0,100% calc(100% - 10px),calc(100% - 10px) 100%,0 100%,0 10px); }
.faq-item[open] { border-color: #168dff; box-shadow: 0 14px 35px rgba(8,83,164,.1); }

.community-evidence,.evidence-quote-card,.community-mini-grid > article,.community-mini-grid > a { border-radius: 2px; }
.community-evidence { clip-path: polygon(25px 0,100% 0,100% calc(100% - 25px),calc(100% - 25px) 100%,0 100%,0 25px); }
.community-evidence::after { background: linear-gradient(90deg,rgba(2,17,37,.96) 0%,rgba(3,43,87,.77) 40%,rgba(2,28,61,.08) 75%),linear-gradient(to top,rgba(1,15,34,.55),transparent 60%); }
.evidence-quote-card { clip-path: polygon(13px 0,100% 0,100% calc(100% - 13px),calc(100% - 13px) 100%,0 100%,0 13px); }
.final-conversion { border-top: 5px solid #5ab7ff; background: radial-gradient(circle at 85% 20%,rgba(22,145,255,.43),transparent 28rem),linear-gradient(130deg,#01152f,#064a98 65%,#021e43); }
.final-conversion-copy h2 { text-transform: uppercase; line-height: .9; }
.final-whatsapp { border-radius: 2px; clip-path: polygon(9px 0,100% 0,100% calc(100% - 9px),calc(100% - 9px) 100%,0 100%,0 9px); }

@keyframes wha-scan { 0%,100% { transform: translateY(0); opacity: 0; } 12% { opacity: .9; } 72% { opacity: .45; } 88% { transform: translateY(490px); opacity: 0; } }

@media (max-width: 820px) {
  .hero-stage::before { left: -10px; }
  .hero-stage::after { width: 100%; }
  .hero-stage .hero-copy h1 { font-size: clamp(62px,12.5vw,92px); }
  .hero-claw { right: 6%; }
  .hero-command { border-radius: 2px; }
}
@media (max-width: 620px) {
  body[data-page="inicio"] .site-header { background: rgba(246,251,255,.97); }
  body[data-page="inicio"] .mobile-nav { color: #dceeff; background: #021a38; box-shadow: inset 0 1px #168dff; }
  body[data-page="inicio"] .mobile-link,
  body[data-page="inicio"] .mobile-group > button { color: #cde7ff; border-color: rgba(78,161,236,.19); }
  body[data-page="inicio"] .mobile-link.active { color: #fff; background: #0a4f9b; }
  .home-hero-cinematic::before { background: linear-gradient(180deg,rgba(255,255,255,.99) 0%,rgba(255,255,255,.97) 40%,rgba(235,246,255,.34) 58%,rgba(2,26,56,.19) 82%); }
  .hero-stage::before { display: none; }
  .hero-stage .hero-copy h1 { margin-top: 18px; font-size: clamp(49px,14.6vw,61px); line-height: .8; }
  .hero-stage .hero-copy h1 > span:nth-child(2) { margin-left: 13px; }
  .hero-stage .hero-copy h1 > span:nth-child(3) { margin-left: 18px; }
  .hero-claw { top: 89px; right: 2%; opacity: .12; }
  .hero-protocol { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero-protocol span { grid-column: 1 / -1; }
  .hero-protocol b,.hero-protocol small { display: grid; min-height: 30px; place-items: center; padding-inline: 7px; text-align: center; }
  .hero-protocol small { border-left: 1px solid rgba(255,255,255,.16); }
  .hero-command { margin-top: 175px; }
  body[data-page="inicio"] .section-heading h2 { font-size: 39px; }
  .evidence-section .stats { clip-path: none; }
  .bento-card,.program-explorer,.explorer-card,.community-evidence,.route-finder { clip-path: polygon(13px 0,100% 0,100% calc(100% - 13px),calc(100% - 13px) 100%,0 100%,0 13px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stage::after { animation: none; opacity: .2; }
}
