:root {
  --font-scale: 1;
  --blue: #0c779d;
  --blue-2: #0a819e;
  --ink: #1d1d1b;
  --muted: #5b6770;
  --line: #d7e2e8;
  --soft: #f4f8fa;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(8, 64, 83, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-size: calc(1rem * var(--font-scale));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  transition: background .2s ease, color .2s ease;
}

body.menu-open { overflow: hidden; }

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

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

button { font: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--blue);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 14px 0;
}

.brand {
  min-width: 0;
  flex: 1 1 auto;
}

.brand-plate {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: rgba(255,255,255,.98);
  border-radius: 18px;
  padding: 0.65rem 0.95rem 0.7rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-symbol {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex: none;
}

.brand-wordmark {
  height: 102px;
  width: auto;
  object-fit: contain;
}

.brand-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.05rem;
  flex: none;
}

.site-nav a {
  color: rgba(255,255,255,.95);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1.15;
  white-space: nowrap;
  padding-bottom: 0.12rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  border-color: rgba(255,255,255,.85);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.32);
  background: transparent;
  color: var(--white);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.hero,
.page-hero {
  background: linear-gradient(180deg, #f5fbfe 0%, #ffffff 100%);
}

.hero { padding: 4.5rem 0 3rem; }

.page-hero { padding: 3.3rem 0 2.1rem; }

.hero-grid,
.page-hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.name-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(12,119,157,.10);
  color: var(--blue);
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.04rem;
  color: #31424a;
  margin: 0;
}

.page-hero .lead,
.hero .lead {
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  border: 0;
}

.button.primary:hover {
  transform: translateY(-1px);
  background: var(--blue-2);
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--line);
}

.button.secondary:hover { transform: translateY(-1px); }

.hero-panel,
.info-panel,
.card,
.data-card,
.contact-card,
.doc-item,
.band-card,
.table-like,
.list-panel,
.quote-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel,
.info-panel,
.list-panel,
.quote-panel,
.table-like {
  padding: 1.35rem;
}

.hero-brand-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
}

.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-symbol {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.hero-wordmark {
  height: 108px;
  width: auto;
  object-fit: contain;
}

.hero-subtitle {
  margin-top: .7rem;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 700;
}

.info-panel ul,
.list-panel ul,
.footer-links,
.footer-meta {
  margin: 0;
  padding-left: 1.15rem;
}

.info-panel li,
.list-panel li,
.footer-links li,
.footer-meta li {
  margin-bottom: .55rem;
}

.section { padding: 3.2rem 0; }

.section-alt { background: var(--soft); }

.section-label {
  margin: 0 0 .65rem;
  color: var(--blue);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  line-height: 1.15;
}

.section p { margin: 0 0 1rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.card,
.data-card,
.contact-card,
.doc-item {
  padding: 1.4rem;
}

.image-card { padding-top: 1rem; }

.card h3,
.card h2,
.data-card h3,
.contact-card h3,
.doc-item h3 {
  margin-top: 0;
  margin-bottom: .7rem;
}

.card p:last-child,
.data-card p:last-child,
.contact-card p:last-child,
.doc-item p:last-child,
.quote-panel p:last-child {
  margin-bottom: 0;
}

.split-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  color: var(--white);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.8rem 2rem;
}

.split-band .section-label {
  color: rgba(255,255,255,.82);
}

.split-band h2 { margin-bottom: .75rem; }

.data-grid,
.contact-grid,
.doc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-card strong,
.data-card strong,
.doc-item strong {
  display: block;
  margin-bottom: .45rem;
  font-size: 1rem;
}

.legal-note,
.small-note {
  color: var(--muted);
  font-size: .92rem;
}

.table-like {
  display: grid;
  gap: .75rem;
}

.table-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: start;
  padding-top: .75rem;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.table-row strong {
  color: var(--muted);
  font-size: .92rem;
}

.site-footer {
  background: var(--blue);
  color: var(--white);
  padding: 2.2rem 0 2.5rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, .7fr) minmax(220px, .8fr);
  gap: 2rem;
}

.footer-grid-legal {
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, .7fr) minmax(220px, .8fr) minmax(180px, .7fr);
}

.footer-brand-box {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,.98);
  border-radius: 16px;
  padding: .65rem .85rem;
  margin-bottom: 1rem;
}

.footer-brand-box .symbol {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand-box .wordmark {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.footer-links,
.footer-meta {
  list-style: none;
  padding-left: 0;
}

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

.footer-links a:hover { color: var(--white); }

.footer-mini {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}

.hero-grid-media { align-items: center; }

.hero-panel-media { padding: 1rem; }

.hero-photo-panel { padding: .85rem; }

.media-layout { align-items: center; }

.media-frame {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #eaf3f7;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-caption {
  padding: .75rem .9rem;
  background: var(--white);
  color: var(--muted);
  font-size: .92rem;
  border-top: 1px solid var(--line);
}

.large-frame { margin-top: 1rem; }

.large-frame img { aspect-ratio: 4 / 3; }

.portrait-frame img { aspect-ratio: 4 / 5; }

.landscape-frame img { aspect-ratio: 16 / 10; }

.natural-frame img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
}

.logo-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.logo-band.single-column {
  grid-template-columns: 1fr;
}

.institution-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.2rem;
  align-items: start;
}

.institution-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.institution-block h3 { margin: 0 0 .6rem; }

.institution-block h4 {
  margin: 0 0 .55rem;
  font-size: 1.04rem;
}

.partner-placeholder {
  display: grid;
  gap: .9rem;
  margin-top: 1rem;
}

.partner-slot {
  min-height: 110px;
  border: 1px dashed #9db8c5;
  border-radius: 18px;
  background: #f7fbfd;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
}

.logo-item {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.logo-item-media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
}

.logo-item-media img {
  max-width: 100%;
  max-height: 82px;
  width: auto;
  height: auto;
}

.ministry-logo-wrap img { max-height: 96px; }

.logo-item-body h3 { margin: 0 0 .55rem; }

.logo-item-body p { margin: 0 0 .85rem; }

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .86rem;
}

.status-ok {
  background: rgba(12,119,157,.1);
  color: var(--blue);
}

.status-pending {
  background: rgba(29,29,27,.08);
  color: var(--ink);
}

.compact-actions { margin-top: 1rem; }

.white-button {
  background: var(--white);
  color: var(--blue);
}

.white-outline {
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
  background: transparent;
}

.white-outline:hover,
.white-button:hover {
  transform: translateY(-1px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.stack-card strong {
  display: block;
  margin-bottom: .8rem;
  font-size: 1rem;
}

.stack-card p { margin: 0 0 .7rem; }

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem;
}

.contact-form label {
  display: grid;
  gap: .38rem;
}

.contact-form span {
  font-weight: 600;
  font-size: .92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(12,119,157,.18);
  border-color: rgba(12,119,157,.5);
}

.check-row {
  display: flex !important;
  gap: .7rem !important;
  align-items: flex-start;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: .15rem;
}

.form-actions {
  display: grid;
  gap: .85rem;
  align-items: start;
}

.legal-doc h2 {
  margin-top: 1.4rem;
  font-size: 1.2rem;
}

.legal-doc h2:first-child { margin-top: 0; }

.stacked-institutions {
  grid-template-columns: 1fr;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .8rem;
  margin-top: 1rem;
  align-items: stretch;
}

.partner-logo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: .38rem;
  display: grid;
  gap: .4rem;
  align-items: center;
  text-align: center;
}

.partner-logo-card h4 {
  margin: 0;
  font-size: .92rem;
  line-height: 1.2;
}

.partner-logo-media {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .08rem;
  overflow: hidden;
}

.partner-logo-media img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  display: block;
}

.partner-link-card {
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.partner-link-card:hover,
.partner-link-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(12, 119, 157, 0.12);
  border-color: rgba(12, 119, 157, 0.32);
}

.partner-link-card:focus-visible {
  outline: 3px solid rgba(12, 119, 157, 0.22);
  outline-offset: 3px;
}

.contact-media { margin-top: 1rem; }

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--blue);
    border-top: 1px solid rgba(255,255,255,.12);
    padding: 0.6rem 1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .site-header.is-open .site-nav { display: flex; }

  .site-nav a { font-size: 1rem; }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .two-col,
  .footer-grid,
  .footer-grid-legal {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.two,
  .data-grid,
  .contact-grid,
  .doc-list,
  .logo-band,
  .contact-layout,
  .institution-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-grid { grid-template-columns: 1fr; }

  .table-row,
  .logo-item {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .split-band { padding: 1.5rem; }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .nav-wrap {
    gap: 1rem;
    padding: 10px 0;
  }

  .brand-plate { padding: 0.5rem 0.65rem 0.6rem; }

  .brand-mark { gap: .45rem; }

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

  .brand-wordmark { height: 58px; }

  .brand-subtitle { font-size: 0.69rem; }

  .hero,
  .page-hero {
    padding: 2.2rem 0 1.6rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.72rem;
  }

  .lead { font-size: 0.99rem; }

  .hero-brand-row { gap: 0.55rem; }

  .hero-symbol {
    width: 72px;
    height: 72px;
  }

  .hero-wordmark { height: 72px; }

  .section { padding: 2.35rem 0; }

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

  .footer-brand-box .symbol {
    width: 52px;
    height: 52px;
  }

  .footer-brand-box .wordmark { height: 56px; }

  .logo-item-media { min-height: 108px; }

  .hero-panel-media { padding: .85rem; }
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 2500;
  background: var(--ink);
  color: var(--white);
  padding: .7rem 1rem;
  border-radius: 12px;
  transform: translateY(-200%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(12,119,157,.38);
  outline-offset: 3px;
}

.utility-toolbar {
  background: #eef5f8;
  border-bottom: 1px solid var(--line);
}

.utility-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .8rem;
  padding: .7rem 0;
  flex-wrap: wrap;
}

.utility-group {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35rem .5rem;
}

.utility-group-select { padding-left: .75rem; }

.utility-label {
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
}

.utility-button,
.utility-select {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  min-height: 38px;
  padding: .55rem .85rem;
  font: inherit;
  font-weight: 700;
}

.utility-button { cursor: pointer; }

.utility-button:hover,
.utility-select:hover {
  border-color: rgba(12,119,157,.45);
}

.utility-pill { min-width: 144px; }

main:focus { outline: none; }

html[data-theme="dark"] {
  --blue: #0b6f8f;
  --blue-2: #0e88a1;
  --ink: #edf5f8;
  --muted: #bfd0d8;
  --line: #2a4651;
  --soft: #0f1e27;
  --white: #0a141a;
  --shadow: 0 16px 36px rgba(0,0,0,.38);
}

html[data-theme="dark"] body {
  background: #081117;
}

html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-hero {
  background: linear-gradient(180deg, #10222d 0%, #081117 100%);
}

html[data-theme="dark"] .hero-panel,
html[data-theme="dark"] .info-panel,
html[data-theme="dark"] .card,
html[data-theme="dark"] .data-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .doc-item,
html[data-theme="dark"] .band-card,
html[data-theme="dark"] .table-like,
html[data-theme="dark"] .list-panel,
html[data-theme="dark"] .quote-panel,
html[data-theme="dark"] .institution-block,
html[data-theme="dark"] .logo-item,
html[data-theme="dark"] .partner-logo-card,
html[data-theme="dark"] .utility-group,
html[data-theme="dark"] .utility-button,
html[data-theme="dark"] .utility-select,
html[data-theme="dark"] .media-caption {
  background: var(--white);
  color: var(--ink);
}

html[data-theme="dark"] .split-band {
  background: linear-gradient(135deg, #0b6f8f 0%, #0e88a1 100%);
  color: #ffffff;
}

html[data-theme="dark"] .split-band h2,
html[data-theme="dark"] .split-band p,
html[data-theme="dark"] .split-band strong,
html[data-theme="dark"] .split-band a:not(.button) {
  color: #ffffff;
}

html[data-theme="dark"] .split-band .section-label {
  color: rgba(255,255,255,.82);
}

html[data-theme="dark"] .split-band .button.primary,
html[data-theme="dark"] .split-band .white-button {
  background: #ffffff;
  color: #0b6f8f;
  border-color: #ffffff;
}

html[data-theme="dark"] .split-band .button.secondary,
html[data-theme="dark"] .split-band .white-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,.55);
}

html[data-theme="dark"] .brand-plate,
html[data-theme="dark"] .footer-brand-box,
html[data-theme="dark"] .hero-brand-box,
html[data-theme="dark"] .logo-item-media,
html[data-theme="dark"] .partner-logo-media {
  background: #ffffff;
  color: #1d1d1b;
}

html[data-theme="dark"] .brand-subtitle {
  color: #1d1d1b;
}

html[data-theme="dark"] .brand-plate,
html[data-theme="dark"] .footer-brand-box,
html[data-theme="dark"] .hero-brand-box {
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .site-header {
  color: #ffffff;
}

html[data-theme="dark"] .section-alt,
html[data-theme="dark"] .utility-toolbar {
  background: #0c1820;
}

html[data-theme="dark"] .media-frame,
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  background: #0f1b22;
  color: var(--ink);
}

html[data-theme="dark"] .natural-frame img {
  background: #ffffff;
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  border-color: var(--line);
}

html[data-theme="dark"] .name-pill {
  background: rgba(14,136,161,.14);
  color: #9de6ff;
}

html[data-theme="dark"] .button.secondary,
html[data-theme="dark"] .white-button {
  background: #10212b;
  color: #dff1f7;
  border-color: var(--line);
}

html[data-theme="dark"] .white-outline {
  border-color: rgba(255,255,255,.45);
}

html[data-theme="dark"] .site-nav a {
  color: rgba(255,255,255,.94);
}

html[data-theme="dark"] .footer-links a,
html[data-theme="dark"] .footer-mini {
  color: rgba(255,255,255,.88);
}

html[data-theme="dark"] .lead {
  color: #dce8ee;
}

html[data-theme="dark"] .media-caption,
html[data-theme="dark"] .legal-note,
html[data-theme="dark"] .small-note,
html[data-theme="dark"] .utility-label,
html[data-theme="dark"] .table-row strong {
  color: var(--muted);
}

html[data-theme="dark"] .status-ok {
  background: rgba(14,136,161,.18);
  color: #9de6ff;
}

html[data-theme="dark"] .status-pending {
  background: rgba(255,255,255,.08);
  color: var(--ink);
}

html[data-theme="dark"] .skip-link {
  background: #ffffff;
  color: #081117;
}

@media (max-width: 860px) {
  .utility-inner { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .utility-inner {
    gap: .55rem;
    padding: .65rem 0;
  }

  .utility-group {
    width: 100%;
    justify-content: space-between;
    border-radius: 18px;
  }

  .utility-pill {
    min-width: 0;
    flex: 1 1 auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}