:root {
  /* Paleta institucional (ajustable) */
  --bg: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --text: #0f172a;
  --muted: #475569;

  --blue-950: #062746;
  --blue-900: #0b3a66;
  --blue-800: #0d4a80;
  --blue-700: #0f5fa6;
  --blue-600: #1a71c7;
  --blue-500: #2a89e6;
  --blue-400: #7cb8ff;
  --brand-gradient: linear-gradient(135deg, #0f5fa6 0%, #0b3a66 100%);
  --surface-gradient: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.96),
    rgba(237, 245, 255, 0.88)
  );

  --border: rgba(15, 95, 166, 0.16);

  --shadow-sm:
    10px 10px 24px rgba(2, 6, 23, 0.11),
    -6px -6px 16px rgba(255, 255, 255, 0.65);
  --shadow-md:
    18px 18px 38px rgba(2, 6, 23, 0.14),
    -8px -8px 18px rgba(255, 255, 255, 0.72);
  --shadow-lg:
    26px 26px 56px rgba(2, 6, 23, 0.2),
    -10px -10px 22px rgba(255, 255, 255, 0.78);

  --radius-12: 12px;
  --radius-16: 16px;
  --radius-20: 20px;
  --radius-pill: 999px;

  --container: 1160px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 56px;

  --focus: 3px solid rgba(42, 137, 230, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-header,
  .topbar,
  body::before,
  body::after,
  .brand-mark,
  .brand-ribbon,
  .brand-subtitle,
  .partner-logo,
  .partner-logo img,
  .nav-link,
  .reveal,
  .btn,
  .pill,
  .role-card,
  .hero-card::before,
  .hero-card::after,
  .responsive-embed::before,
  .responsive-embed iframe {
    transition: none !important;
  }

  .kpi-live,
  .nav-list li,
  .responsive-embed.is-embed-loading::before {
    animation: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg);

  /* Fondo dinámico */
  background-image:
    radial-gradient(
      circle at 12% -10%,
      rgba(42, 137, 230, 0.22) 0,
      transparent 34%
    ),
    radial-gradient(
      circle at 86% -8%,
      rgba(15, 95, 166, 0.2) 0,
      transparent 30%
    ),
    radial-gradient(
      circle at 1px 1px,
      rgba(11, 58, 102, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      120deg,
      rgba(11, 58, 102, 0.06) 0 1px,
      transparent 1px 100%
    ),
    linear-gradient(60deg, rgba(11, 58, 102, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  background-size:
    100% 100%,
    100% 100%,
    44px 44px,
    110px 110px,
    110px 110px,
    100% 100%;
  background-position:
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;

  font-family:
    "Avenir Next", Montserrat, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

body::before {
  width: 360px;
  height: 360px;
  right: -80px;
  top: 130px;
  background: radial-gradient(
    circle,
    rgba(42, 137, 230, 0.24),
    transparent 72%
  );
}

body::after {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: 120px;
  background: radial-gradient(circle, rgba(15, 95, 166, 0.18), transparent 70%);
  animation-duration: 22s;
}

@keyframes drift {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-18px) translateX(14px);
  }
}

h1,
h2 {
  letter-spacing: -0.02em;
}

a {
  color: var(--blue-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.95em;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(2px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    filter 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.88),
    rgba(232, 244, 255, 0.76)
  );
  border-bottom: 1px solid rgba(15, 95, 166, 0.12);
  transition:
    background 220ms ease,
    backdrop-filter 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  isolation: isolate;
  overflow: visible;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.site-header::before {
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(15, 95, 166, 0.08) 0%,
    rgba(124, 184, 255, 0.16) 48%,
    rgba(15, 95, 166, 0.08) 100%
  );
}

.site-header::after {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -210px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(42, 137, 230, 0.24),
    transparent 70%
  );
}

.site-header.is-scrolled {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0.85),
    rgba(235, 245, 255, 0.72)
  );
  border-bottom-color: rgba(15, 95, 166, 0.2);
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.14);
}

.topbar {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 14px;
  padding: 10px 0 8px;
  transition:
    padding 220ms ease,
    gap 220ms ease;
  position: relative;
}

.site-header.is-scrolled .topbar {
  gap: 10px;
  padding: 6px 0 6px;
}

.brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 1.8vw, 22px);
  align-items: center;
  justify-content: center;
  width: min(100%, 940px);
  margin: 0 auto;
  min-width: 0;
}

.brand-mark {
  width: 96px;
  height: 96px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
  transition: transform 220ms ease;
  position: relative;
  overflow: visible;
}

.site-header.is-scrolled .brand-mark {
  transform: none;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand-ribbon {
  width: 98px;
  height: 98px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 220ms ease;
}

.site-header.is-scrolled .brand-ribbon {
  transform: none;
}

.brand-copy {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
  min-width: 0;
}

.brand-kicker {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.brand-title {
  margin: 0;
  font-family:
    "SF Pro Display", "Avenir Next", "Avenir Next Condensed", Montserrat,
    "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(1.16rem, 1.45vw, 1.52rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 900;
  color: var(--blue-900);
  overflow-wrap: normal;
  white-space: nowrap;
}

.brand-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 72ch;
  max-height: 80px;
  overflow: hidden;
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    margin 180ms ease;
}

.site-header.is-scrolled .brand-subtitle {
  max-height: 0;
  margin: 0;
  opacity: 0;
}

/* NAV */
.site-nav {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  color: var(--blue-900);
  font-weight: 650;
}

.nav-toggle__icon {
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 999px;
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 999px;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: var(--blue-900);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(15, 95, 166, 0.08);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 95, 166, 0.14);
  box-shadow: 0 12px 22px rgba(2, 6, 23, 0.11);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: #ffffff;
  background: var(--brand-gradient);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 24px rgba(11, 58, 102, 0.26);
}

.nav-link[aria-current="page"]::after {
  transform: scaleX(0);
}

.nav-link__icon {
  display: none;
}

.nav-link__label {
  display: block;
}

/* Logo strip */
.logo-strip {
  position: relative;
  border-top: 1px solid rgba(15, 95, 166, 0.1);
  background: linear-gradient(
    180deg,
    rgba(227, 239, 253, 0.74),
    rgba(255, 255, 255, 0.62)
  );
}

.logo-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 95, 166, 0.08),
    rgba(42, 137, 230, 0.35),
    rgba(15, 95, 166, 0.08)
  );
}

.logo-strip__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 0 10px;
  overflow-x: visible;
  scroll-snap-type: none;
}

.partner-logo {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 58px;
  gap: 0;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 95, 166, 0.14);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
  white-space: nowrap;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  scroll-snap-align: start;
}

.partner-logo img {
  width: 130px;
  height: 36px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: none;
  transition: transform 180ms ease;
}

.partner-logo[data-partner="fep"] img {
  width: 140px;
  height: 38px;
}

.partner-logo[data-partner="gedyt"] img,
.partner-logo[data-partner="gcba"] img {
  width: 134px;
}

.partner-logo[data-partner="merck"] img {
  width: 112px;
}

.partner-logo span {
  display: none;
}

.partner-logo:hover,
.partner-logo:focus-within {
  transform: translateY(-2px);
  border-color: rgba(15, 95, 166, 0.2);
  box-shadow: 0 14px 24px rgba(2, 6, 23, 0.12);
}

.partner-logo:hover img,
.partner-logo:focus-within img {
  transform: scale(1.03);
}

/* SECTIONS */
.section {
  padding: 60px 0;
}

.section-muted {
  background: linear-gradient(
    180deg,
    rgba(15, 95, 166, 0.08),
    rgba(15, 95, 166, 0.03)
  );
  border-top: 1px solid rgba(15, 95, 166, 0.1);
  border-bottom: 1px solid rgba(15, 95, 166, 0.1);
}

.section-header {
  padding: 0 0 var(--space-5);
  margin-bottom: var(--space-5);
  position: relative;
}

.section-header::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 136px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-gradient);
}

.section-title {
  margin: 0 0 8px;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  color: var(--blue-900);
}

.section-title--with-live {
  display: inline-flex;
  align-items: center;
}

.kpi-live {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
}

/* HERO */
.hero {
  padding-top: 52px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-7);
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.94),
    rgba(234, 244, 255, 0.88)
  );
  border: 1px solid rgba(15, 95, 166, 0.16);
  border-radius: 24px;
  box-shadow:
    0 24px 52px rgba(2, 6, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  padding: var(--space-7);
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero-card::before {
  width: 320px;
  height: 320px;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(15, 95, 166, 0.2), transparent 74%);
}

.hero-card::after {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(
    circle,
    rgba(42, 137, 230, 0.16),
    transparent 72%
  );
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 95, 166, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--blue-800);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-title {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.15;
  color: var(--blue-950);
  letter-spacing: -0.02em;
}

.hero-text {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 75ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 14px;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-panel {
  padding: 14px;
  border-radius: var(--radius-16);
  border: 1px solid rgba(15, 95, 166, 0.15);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.12);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.mini-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(2, 6, 23, 0.15);
}

.mini-panel__title {
  margin: 0 0 6px;
  color: var(--blue-900);
  font-size: 1rem;
}

.mini-panel__text {
  margin: 0;
  color: var(--muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-weight: 750;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-900);
  border-color: rgba(15, 95, 166, 0.18);
}

.btn-ghost {
  background: rgba(15, 95, 166, 0.06);
  color: var(--blue-900);
  border-color: rgba(15, 95, 166, 0.1);
}

.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Pills grid (Guías) */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.96),
    rgba(236, 245, 255, 0.8)
  );
  border: 1px solid rgba(15, 95, 166, 0.16);
  box-shadow: var(--shadow-sm);
  color: var(--blue-950);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition:
    transform 130ms ease,
    box-shadow 130ms ease;
}

.pill:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pill:active {
  transform: translateY(0);
}

.pill[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

.pill__icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 95, 166, 0.1);
  border: 1px solid rgba(15, 95, 166, 0.14);
  color: var(--blue-900);
  flex: 0 0 auto;
}

.pill__text {
  display: grid;
  gap: 2px;
}

.pill__title {
  font-size: 0.98rem;
  line-height: 1.1;
}

.pill__meta {
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--muted);
}

.pill--tiny {
  display: inline-flex;
  padding: 4px 10px;
  min-height: unset;
  border-radius: 999px;
  box-shadow: none;
  border: 1px solid rgba(15, 95, 166, 0.16);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 750;
  font-size: 0.8rem;
}

.pill--tiny:hover {
  transform: none;
  box-shadow: none;
}

/* Role cards */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.role-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.9),
    rgba(238, 246, 255, 0.76)
  );
  border: 1px solid rgba(15, 95, 166, 0.14);
  border-radius: var(--radius-20);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 180ms ease;
}

.role-card__header {
  padding: 16px 16px 14px;
  min-height: 122px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 6px;
  background: linear-gradient(
    180deg,
    rgba(15, 95, 166, 0.1),
    rgba(15, 95, 166, 0.02)
  );
  border-bottom: 1px solid rgba(15, 95, 166, 0.1);
}

.role-card__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--blue-900);
}

.role-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.role-card__body {
  padding: 14px 16px 18px;
}

.role-actions {
  display: grid;
  gap: 12px;
  grid-auto-rows: minmax(90px, auto);
}

.role-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 32px;
  align-items: center;
  width: 100%;
  min-height: 90px;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 95, 166, 0.2);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(244, 250, 255, 0.9) 100%
    );
  box-shadow:
    0 10px 20px rgba(9, 31, 62, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 -1px 0 rgba(221, 237, 252, 0.54) inset;
  color: var(--blue-900);
  font-weight: 570;
  transition:
    transform 200ms ease,
    box-shadow 220ms ease,
    border-color 200ms ease,
    background 220ms ease,
    color 200ms ease;
}

.role-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  background: linear-gradient(
    120deg,
    rgba(220, 240, 255, 0) 10%,
    rgba(182, 220, 247, 0.36) 56%,
    rgba(210, 235, 255, 0) 92%
  );
  border-radius: inherit;
  opacity: 0.12;
  pointer-events: none;
  transition:
    opacity 200ms ease,
    transform 220ms ease;
  transform: translateX(-8%);
}

.role-link::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  z-index: 0;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(15, 95, 166, 0.08),
    rgba(15, 95, 166, 0.35),
    rgba(15, 95, 166, 0.08)
  );
  opacity: 0.42;
  transition: opacity 180ms ease;
}

.role-link:hover,
.role-link:focus-visible {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow:
    0 18px 32px rgba(4, 32, 66, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(217, 235, 251, 0.62) inset;
  border-color: rgba(15, 95, 166, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(236, 247, 255, 0.94) 100%
    );
  color: var(--blue-900);
}

.role-link:hover::before,
.role-link:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.role-link:hover::after,
.role-link:focus-visible::after {
  opacity: 0.62;
}

.role-link:focus-visible {
  outline: 2px solid rgba(42, 137, 230, 0.55);
  outline-offset: 2px;
}

.role-link__icon {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 95, 166, 0.35);
  background:
    radial-gradient(
      115% 115% at 25% 20%,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(230, 245, 255, 0.92) 54%,
      rgba(208, 233, 251, 0.85) 100%
    );
  color: var(--blue-900);
  box-shadow:
    0 12px 20px rgba(10, 46, 92, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 0 0 1px rgba(236, 246, 255, 0.95) inset;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.role-link__icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(42, 137, 230, 0.2);
  opacity: 0.78;
  pointer-events: none;
}

.role-link__icon::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  filter: blur(0.4px);
  pointer-events: none;
}

.role-link__icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35));
}

.role-link__label {
  position: relative;
  z-index: 1;
  font-weight: 560;
  font-size: 1.01rem;
  line-height: 1.28;
  color: var(--blue-900);
  letter-spacing: 0.002em;
  overflow-wrap: anywhere;
}

.role-link:hover .role-link__icon,
.role-link:focus-visible .role-link__icon {
  transform: translateY(-1px) scale(1.03);
  border-color: rgba(15, 95, 166, 0.58);
  box-shadow:
    0 14px 22px rgba(10, 46, 92, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(220, 239, 255, 0.9) inset;
}

.role-link__chev {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(15, 95, 166, 0.24);
  background: rgba(15, 95, 166, 0.08);
  color: rgba(11, 58, 102, 0.7);
  font-weight: 760;
  font-size: 0.88rem;
  line-height: 1;
  transition:
    transform 160ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.role-link:hover .role-link__chev,
.role-link:focus-visible .role-link__chev {
  transform: translateX(3px);
  border-color: rgba(15, 95, 166, 0.38);
  background: rgba(15, 95, 166, 0.13);
  color: var(--blue-900);
}

.role-link[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
}

/* Callout */
.callout {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-16);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 95, 166, 0.12);
  box-shadow: var(--shadow-sm);
}

.callout__icon {
  font-size: 1.2rem;
}

.callout__title {
  margin: 0 0 6px;
  font-weight: 850;
  color: var(--blue-900);
}

.callout__text {
  margin: 0;
  color: var(--muted);
}

/* Embeds */
.embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.embed-hint {
  color: var(--muted);
  font-size: 0.95rem;
}

.embed-hint:empty {
  display: none;
}

.embed-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.9),
    rgba(236, 246, 255, 0.82)
  );
  border: 1px solid rgba(15, 95, 166, 0.12);
  border-radius: var(--radius-20);
  box-shadow:
    0 22px 44px rgba(2, 6, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  padding: 14px;
}

.responsive-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius-16);
  overflow: hidden;
  border: 1px solid rgba(15, 95, 166, 0.12);
  background: rgba(255, 255, 255, 0.92);
  aspect-ratio: 16 / 9;
  min-height: 420px;
}

.responsive-embed--calendar {
  aspect-ratio: 16 / 10;
  min-height: 600px;
}

.report-shell {
  overflow: hidden;
  border-radius: 9px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

#looker-embed-wrap {
  aspect-ratio: auto;
  min-height: 820px;
  height: clamp(820px, 83vh, 980px);
  padding: 0;
  border-radius: 7px;
  border: 1px solid rgba(15, 95, 166, 0.18);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(2, 6, 23, 0.12);
}

#looker-embed-wrap iframe {
  border-radius: 7px;
  background: #fff;
}

.responsive-embed::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(15, 95, 166, 0.08) 8%,
    rgba(255, 255, 255, 0.8) 18%,
    rgba(15, 95, 166, 0.08) 33%
  );
  background-size: 220% 100%;
  transition: opacity 220ms ease;
}

.responsive-embed.is-embed-loading::before {
  opacity: 1;
  animation: embed-shimmer 1.5s linear infinite;
}

@keyframes embed-shimmer {
  to {
    background-position: -120% 0;
  }
}

.responsive-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  opacity: 1;
  transition: opacity 420ms ease;
}

.responsive-embed.is-embed-loading iframe {
  opacity: 0;
}

.responsive-embed.is-embed-ready iframe {
  opacity: 1;
}

.embed-fallback {
  padding: 14px 10px 6px;
  color: var(--muted);
}

.timeline-placeholder {
  margin: 0 0 var(--space-5);
  padding: 22px 22px 20px;
  border-radius: var(--radius-20);
  border: 1px solid rgba(15, 95, 166, 0.16);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.92),
    rgba(234, 245, 255, 0.82)
  );
  box-shadow:
    0 20px 36px rgba(2, 6, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.timeline-placeholder__header {
  margin-bottom: 14px;
}

.timeline-placeholder__title {
  margin: 0 0 6px;
  color: var(--blue-900);
  font-size: 1.2rem;
}

.timeline-placeholder__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 72ch;
  font-size: 0.95rem;
}

.timeline {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 6px 0 2px 22px;
  display: grid;
  gap: 12px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(15, 95, 166, 0.82),
    rgba(124, 184, 255, 0.65)
  );
}

.phase-card {
  position: relative;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 95, 166, 0.14);
  box-shadow:
    0 14px 26px rgba(2, 6, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.phase-card::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0f5fa6;
  box-shadow: 0 0 0 6px rgba(15, 95, 166, 0.18);
}

.phase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 10px;
}

.phase-stage {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(15, 95, 166, 0.2);
  background: rgba(15, 95, 166, 0.08);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 820;
  color: var(--blue-800);
  margin: 0;
}

.phase-period {
  margin: 0;
}

.phase-period time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-gradient);
  border: 1px solid rgba(11, 58, 102, 0.35);
  box-shadow: 0 8px 16px rgba(15, 95, 166, 0.18);
  color: #fff;
  font-size: 1.03rem;
  font-weight: 880;
  letter-spacing: 0.015em;
  line-height: 1.2;
  max-width: 100%;
}

.phase-title {
  margin: 0 0 6px;
  color: var(--blue-950);
  font-weight: 880;
  font-size: 1.1rem;
  line-height: 1.25;
}

.phase-objective {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.phase-objective strong {
  color: var(--blue-900);
}

.phase-highlights-label {
  margin: 0 0 5px;
  color: var(--blue-900);
  font-size: 0.8rem;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phase-highlights {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: rgba(51, 65, 85, 0.95);
  font-weight: 560;
  font-size: 0.9rem;
}

.phase-highlights li::marker {
  color: var(--blue-700);
}

.phase-details {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px dashed rgba(15, 95, 166, 0.24);
}

.phase-details__summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  color: var(--blue-900);
  font-size: 0.84rem;
  font-weight: 780;
  text-decoration: none;
}

.phase-details__summary::-webkit-details-marker {
  display: none;
}

.phase-details__summary::after {
  content: "▾";
  font-size: 0.78rem;
  transition: transform 160ms ease;
}

.phase-details[open] .phase-details__summary::after {
  transform: rotate(180deg);
}

.phase-details__summary:hover {
  text-decoration: underline;
  text-decoration-color: rgba(15, 95, 166, 0.5);
  text-underline-offset: 3px;
}

.phase-details__summary:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
  border-radius: 8px;
}

.phase-details__list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.phase-details__list li::marker {
  color: var(--blue-700);
}

/* Teleconsulta placeholder */
.placeholder {
  background: rgba(255, 255, 255, 0.78);
  border: 1px dashed rgba(15, 95, 166, 0.26);
  border-radius: var(--radius-20);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.placeholder__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(15, 95, 166, 0.1);
  border: 1px solid rgba(15, 95, 166, 0.14);
  font-weight: 850;
  color: var(--blue-900);
  margin-bottom: 10px;
}

.placeholder__title {
  margin: 0 0 8px;
  color: var(--blue-950);
}

.placeholder__text {
  margin: 0;
  color: var(--muted);
  max-width: 90ch;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(15, 95, 166, 0.12);
  background: linear-gradient(
    180deg,
    rgba(232, 242, 252, 0.62),
    rgba(255, 255, 255, 0.5)
  );
  padding: var(--space-7) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  align-items: start;
}

.footer-title {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--blue-900);
}

.footer-text {
  margin: 0 0 8px;
  color: var(--muted);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-logos img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.footer-logos img[data-partner="fep"] {
  height: 34px;
}

.footer-col--right {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-meta {
  margin: 0;
  color: rgba(71, 85, 105, 0.9);
  font-size: 0.95rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
}

.modal__dialog {
  position: relative;
  width: min(1100px, calc(100% - 28px));
  margin: 24px auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-20);
  border: 1px solid rgba(15, 95, 166, 0.18);
  box-shadow: 0 40px 110px rgba(2, 6, 23, 0.35);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  max-height: calc(100vh - 48px);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(
    180deg,
    rgba(15, 95, 166, 0.14),
    rgba(15, 95, 166, 0.04)
  );
  border-bottom: 1px solid rgba(15, 95, 166, 0.12);
}

.modal__title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--blue-950);
}

.icon-btn {
  border: 1px solid rgba(15, 95, 166, 0.18);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.modal__body {
  padding: 10px;
}

.modal__body iframe {
  width: 100%;
  height: calc(100vh - 140px);
  border: 0;
  border-radius: var(--radius-16);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 95, 166, 0.12);
}

/* NoScript */
.noscript {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(15, 95, 166, 0.12);
}

/* Desktop floating nav cubes */
@media (min-width: 1180px) {
  .topbar {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand {
    max-width: 920px;
  }

  .brand-copy {
    max-width: 700px;
  }

  .brand-title {
    font-size: clamp(1.18rem, 1.35vw, 1.42rem);
    line-height: 1.1;
  }

  .site-nav {
    position: fixed;
    left: 10px;
    top: 50vh;
    transform: translateY(-50%);
    z-index: 75;
    width: 86px;
    padding: 0;
    justify-items: center;
    isolation: auto;
  }

  .site-nav::before {
    content: none;
  }

  .site-nav::after {
    content: none;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-list {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-list li {
    opacity: 1;
    animation: none;
  }

  .nav-link {
    width: 100%;
    min-height: 76px;
    min-width: 76px;
    height: 76px;
    padding: 7px 5px 6px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    align-content: space-between;
    text-align: center;
    white-space: nowrap;
    overflow-wrap: anywhere;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.62),
      rgba(255, 255, 255, 0.22)
    );
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow:
      0 12px 24px rgba(2, 6, 23, 0.13),
      0 1px 0 rgba(255, 255, 255, 0.82) inset,
      0 -1px 0 rgba(255, 255, 255, 0.25) inset;
    color: rgba(10, 52, 90, 0.78);
    opacity: 0.97;
    -webkit-backdrop-filter: blur(13px) saturate(160%);
    backdrop-filter: blur(13px) saturate(160%);
  }

  .nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      radial-gradient(
        100% 66% at 20% 8%,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0) 70%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.28),
        rgba(255, 255, 255, 0.02)
      );
    opacity: 0.86;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0)
    );
    opacity: 0.58;
    transition: opacity 200ms ease;
  }

  .nav-link__icon {
    display: grid;
    place-items: center;
    color: currentColor;
    font-size: 1.26rem;
    font-weight: 800;
    line-height: 1;
    width: 100%;
    margin-top: 0;
    transform: none;
    transition:
      transform 180ms ease,
      color 200ms ease;
  }

  .nav-link__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.45));
  }

  .nav-link__label {
    display: block;
    color: currentColor;
    font-size: 0.54rem;
    letter-spacing: 0.01em;
    line-height: 1.08;
    font-weight: 720;
    margin-top: 0;
    text-shadow: none;
  }

  .nav-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.8),
      rgba(246, 251, 255, 0.46)
    );
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 16px 26px rgba(2, 6, 23, 0.16),
      0 2px 0 rgba(255, 255, 255, 0.88) inset,
      0 -1px 0 rgba(255, 255, 255, 0.36) inset;
    color: var(--blue-900);
    opacity: 1;
  }

  .nav-link:hover .nav-link__icon {
    transform: scale(1.07);
  }

  .nav-link:hover::before,
  .nav-link:hover::after {
    opacity: 1;
  }

  .nav-link[aria-current="page"] {
    color: var(--blue-900);
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(228, 242, 255, 0.5)
    );
    border-color: rgba(132, 194, 255, 0.85);
    box-shadow:
      0 16px 26px rgba(11, 58, 102, 0.17),
      inset 2px 0 0 rgba(42, 137, 230, 0.82),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    opacity: 1;
    animation: none;
  }

  .nav-link[aria-current="page"] .nav-link__icon,
  .nav-link[aria-current="page"] .nav-link__label {
    color: var(--blue-900);
  }

  .nav-link[aria-current="page"] .nav-link__icon {
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-items: center;
  }

  .brand-mark {
    width: 82px;
    height: 82px;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .brand-ribbon {
    width: 82px;
    height: 82px;
  }

  .brand-title {
    font-size: clamp(1.04rem, 1.9vw, 1.34rem);
  }

  .partner-logo {
    width: 148px;
    height: 52px;
  }

  .logo-strip__inner {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    scroll-snap-type: x proximity;
  }

  .phase-top {
    gap: 6px 8px;
  }

  .timeline {
    padding-left: 18px;
  }

  .timeline::before {
    left: 5px;
  }

  .phase-card::before {
    left: -18px;
  }

  .phase-period time {
    font-size: 0.94rem;
    white-space: normal;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .mini-panels {
    grid-template-columns: 1fr 1fr;
  }

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

  .role-grid {
    grid-template-columns: 1fr;
  }

  .role-card__header {
    min-height: unset;
    grid-template-rows: auto auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col--right {
    justify-items: start;
  }

  #looker-embed-wrap {
    min-height: 740px;
    height: clamp(740px, 79vh, 900px);
    padding: 0;
  }
}

@media (max-width: 720px) {
  body::before,
  body::after {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    border-radius: var(--radius-16);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 95, 166, 0.12);
    box-shadow: var(--shadow-sm);
  }

  .nav-list.is-open {
    display: flex;
  }

  .pill-grid {
    grid-template-columns: 1fr;
  }

  .role-link {
    min-height: 78px;
    grid-template-columns: 46px minmax(0, 1fr) 26px;
    gap: 10px;
    padding: 10px 12px;
  }

  .role-actions {
    grid-auto-rows: minmax(78px, auto);
  }

  .role-link__icon {
    width: 40px;
    height: 40px;
  }

  .role-link__icon svg {
    width: 20px;
    height: 20px;
  }

  .role-link__label {
    font-size: 0.95rem;
  }

  .mini-panels {
    grid-template-columns: 1fr;
  }

  .timeline-placeholder {
    padding: 16px 14px 14px;
  }

  .timeline {
    padding-left: 14px;
    gap: 10px;
  }

  .timeline::before {
    left: 3px;
    width: 2px;
  }

  .phase-card {
    padding: 12px 12px 12px;
  }

  .phase-top {
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
  }

  .phase-card::before {
    left: -14px;
    top: 16px;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 5px rgba(15, 95, 166, 0.16);
  }

  .phase-period time {
    font-size: 0.84rem;
    width: 100%;
    justify-content: flex-start;
    padding: 6px 10px;
    white-space: normal;
    text-align: left;
  }

  .phase-title {
    font-size: 1rem;
  }

  .phase-objective,
  .phase-highlights,
  .phase-details__list {
    font-size: 0.88rem;
  }

  .phase-details__summary {
    font-size: 0.82rem;
  }

  .brand {
    gap: 14px;
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .brand-mark {
    width: 68px;
    height: 68px;
    border-radius: 0;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand-ribbon {
    width: 64px;
    height: 64px;
  }

  .brand-copy {
    grid-column: 1 / -1;
  }

  .brand-title {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .partner-logo {
    width: 144px;
    height: 54px;
    padding: 7px;
  }

  .partner-logo img {
    width: 116px;
    height: 34px;
  }

  .partner-logo[data-partner="fep"] img {
    width: 134px;
    height: 38px;
  }

  #looker-embed-wrap {
    min-height: 590px;
    height: clamp(590px, 73vh, 730px);
    padding: 0;
  }
}
