@charset "UTF-8";

:root {
  --brand-950: #023426;
  --brand-900: #054635;
  --brand-800: #055c42;
  --brand-700: #087453;
  --brand-600: #0c8a63;
  --brand-500: #1aa477;
  --brand-400: #46bd91;
  --brand-200: #b9ead6;
  --brand-100: #dcf5ea;
  --brand-50: #f1fbf7;
  --gold-600: #c78a13;
  --gold-500: #e5a925;
  --gold-400: #f2c14e;
  --gold-300: #f7d77c;
  --gold-100: #fff3c8;
  --ink-950: #062d23;
  --ink-900: #0b3b2f;
  --ink-800: #184b3e;
  --ink-700: #315f52;
  --ink-600: #4a7569;
  --ink-500: #678b81;
  --ink-300: #a8bbb5;
  --surface: #ffffff;
  --surface-soft: #f7fcf9;
  --surface-mint: #edf9f4;
  --line: rgba(7, 88, 63, 0.13);
  --line-strong: rgba(7, 88, 63, 0.22);
  --shadow-xs: 0 2px 8px rgba(1, 52, 38, 0.05);
  --shadow-sm: 0 8px 24px rgba(1, 52, 38, 0.08);
  --shadow-md: 0 18px 48px rgba(1, 52, 38, 0.12);
  --shadow-lg: 0 30px 90px rgba(1, 52, 38, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 76px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 9% 5%, rgba(60, 194, 143, .15), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(242, 193, 78, .15), transparent 20rem),
    linear-gradient(180deg, #f9fdfa 0%, #f4fbf7 45%, #fbfdfc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: white; background: var(--brand-700); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: .75rem 1rem;
  color: white;
  background: var(--brand-900);
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 40px), 880px); margin-inline: auto; }
.section { position: relative; padding: 96px 0; }
.section--compact { padding: 68px 0; }
.section--flush-top { padding-top: 0; }
.section--dark {
  color: #effcf6;
  background:
    radial-gradient(circle at 85% 10%, rgba(68, 190, 143, .22), transparent 22rem),
    radial-gradient(circle at 12% 95%, rgba(242, 193, 78, .12), transparent 18rem),
    linear-gradient(145deg, var(--brand-950), var(--brand-800));
  overflow: hidden;
}
.section--tint { background: linear-gradient(180deg, rgba(223, 247, 236, .55), rgba(255,255,255,.8)); }
.section--gold { background: linear-gradient(135deg, #fff9e8 0%, #effaf5 80%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 14px;
  color: var(--brand-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-400), var(--brand-500));
}
.section--dark .eyebrow { color: var(--gold-300); }
.section-title {
  max-width: 800px;
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(2.05rem, 4.7vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}
.section-title em { color: var(--brand-600); font-style: normal; }
.section--dark .section-title { color: white; }
.section-lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--ink-600);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}
.section--dark .section-lead { color: rgba(239, 252, 246, .76); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}
.section-head__copy { max-width: 790px; }
.kicker-line { width: 52px; height: 4px; margin-bottom: 20px; border-radius: 99px; background: linear-gradient(90deg, var(--brand-500), var(--gold-400)); }

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

.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.icon--sm { width: 1em; height: 1em; }
.icon--lg { width: 1.5em; height: 1.5em; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 48px;
  padding: .8rem 1.1rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn::after {
  position: absolute;
  inset: -80% auto -80% -40%;
  width: 28%;
  content: "";
  transform: rotate(16deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transition: left .55s var(--ease);
}
.btn:hover::after { left: 115%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { color: white; background: linear-gradient(135deg, var(--brand-700), var(--brand-900)); box-shadow: 0 12px 28px rgba(5, 92, 66, .22); }
.btn--primary:hover { box-shadow: 0 18px 36px rgba(5, 92, 66, .3); }
.btn--secondary { color: var(--brand-900); background: rgba(255,255,255,.76); border-color: var(--line-strong); box-shadow: var(--shadow-xs); backdrop-filter: blur(10px); }
.btn--secondary:hover { background: white; border-color: rgba(5,92,66,.35); box-shadow: var(--shadow-sm); }
.btn--gold { color: var(--brand-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); box-shadow: 0 12px 28px rgba(194, 133, 16, .2); }
.btn--light { color: var(--brand-950); background: white; box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.btn--ghost-light { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.btn--sm { min-height: 40px; padding: .65rem .9rem; border-radius: 12px; font-size: .84rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--brand-700);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { color: var(--brand-900); }
.text-link .icon { transition: transform .25s var(--ease); }
.text-link:hover .icon { transform: translateX(4px); }
.external-link::after { content: "↗"; margin-left: .3em; font-size: .85em; }

/* Utility bar + header */
.utility-bar {
  position: relative;
  z-index: 42;
  color: rgba(235, 253, 245, .82);
  background: var(--brand-950);
  font-size: .78rem;
}
.utility-bar__inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility-bar__label { display: inline-flex; align-items: center; gap: .5rem; }
.utility-bar__label::before { width: 7px; height: 7px; content: ""; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 5px rgba(242,193,78,.12); }
.utility-bar a { color: white; font-weight: 750; text-decoration: none; }
.utility-bar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  padding: 12px 0;
  transition: padding .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled { padding: 8px 0; background: rgba(245, 252, 248, .78); box-shadow: 0 10px 36px rgba(1,52,38,.08); backdrop-filter: blur(18px) saturate(1.3); }
.header-shell {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 12px 8px 15px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 38px rgba(2,65,47,.09), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(16px) saturate(1.35);
}
.header-shell::after {
  position: absolute;
  top: 0;
  left: -20%;
  width: 15%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  animation: header-shine 8s ease-in-out infinite;
}
@keyframes header-shine { 0%,65% { left:-20%; opacity:0; } 72% { opacity:1; } 90%,100% { left:105%; opacity:0; } }
.brand {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  gap: 11px;
  color: var(--ink-950);
  text-decoration: none;
}
.brand__crest { width: 52px; height: 52px; flex: 0 0 auto; object-fit: contain; filter: drop-shadow(0 6px 10px rgba(1,52,38,.12)); }
.brand__copy { display: grid; line-height: 1.05; }
.brand__overline { color: var(--brand-700); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.brand__name { margin-top: 4px; font-size: 1.05rem; font-weight: 900; letter-spacing: -.025em; }
.brand__region { margin-top: 4px; color: var(--ink-500); font-size: .68rem; font-weight: 650; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: .7rem .78rem;
  border-radius: 12px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 780;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  content: "";
  transform: scaleX(0);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-500), var(--gold-400));
  transition: transform .25s var(--ease);
}
.site-nav a:hover { color: var(--brand-800); background: var(--brand-50); transform: translateY(-1px); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--brand-900); background: var(--brand-100); }
.header-action { display: inline-flex; }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--brand-900);
  box-shadow: 0 8px 20px rgba(5,92,66,.2);
}
.menu-toggle__lines { position: relative; width: 21px; height: 15px; }
.menu-toggle__lines span { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 99px; background: currentColor; transition: transform .25s var(--ease), top .25s var(--ease), opacity .2s ease; }
.menu-toggle__lines span:nth-child(1) { top: 0; }
.menu-toggle__lines span:nth-child(2) { top: 6.5px; }
.menu-toggle__lines span:nth-child(3) { top: 13px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(1) { top: 6.5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:nth-child(3) { top: 6.5px; transform: rotate(-45deg); }
.mobile-panel { display: none; }

/* Hero */
.home-hero { position: relative; min-height: 760px; padding: 74px 0 112px; overflow: hidden; }
.home-hero::before {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(5,92,66,.08);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(52,183,134,.09);
  animation: slow-spin 38s linear infinite;
}
.home-hero::after {
  position: absolute;
  bottom: 6%;
  left: -4%;
  width: 280px;
  height: 280px;
  content: "";
  border-radius: 45% 55% 62% 38%;
  background: radial-gradient(circle at 60% 40%, rgba(242,193,78,.2), rgba(242,193,78,0) 67%);
  filter: blur(2px);
  animation: blob 12s ease-in-out infinite alternate;
}
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes blob { from { transform: translate3d(-20px,0,0) rotate(-8deg); } to { transform: translate3d(35px,-25px,0) rotate(16deg); } }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr); align-items: center; gap: clamp(48px, 7vw, 90px); }
.hero-copy { max-width: 650px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 24px;
  padding: .58rem .8rem;
  border: 1px solid rgba(5,92,66,.15);
  border-radius: 999px;
  color: var(--brand-800);
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .03em;
}
.hero-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 6px rgba(242,193,78,.15); animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 10px rgba(242,193,78,0); } }
.hero-title {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(3.7rem, 7.5vw, 7.15rem);
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .83;
}
.hero-title span { display: block; color: var(--brand-600); }
.hero-title em { position: relative; color: var(--brand-600); font-style: normal; }
.hero-title em::after {
  position: absolute;
  right: 4%;
  bottom: -.08em;
  left: 1%;
  height: .09em;
  content: "";
  transform: rotate(-1deg);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}
.hero-description { max-width: 610px; margin: 28px 0 0; color: var(--ink-600); font-size: clamp(1.02rem,1.45vw,1.18rem); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.meta-chip { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .68rem; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-700); background: rgba(255,255,255,.62); font-size: .76rem; font-weight: 720; }
.hero-visual { position: relative; min-height: 520px; }
.hero-photo-wrap {
  position: absolute;
  inset: 34px 10px 26px 20px;
  transform: rotate(1.2deg);
  border: 8px solid rgba(255,255,255,.84);
  border-radius: 38px;
  background: white;
  box-shadow: 0 34px 90px rgba(2,65,47,.25), 0 0 0 1px rgba(5,92,66,.08);
  overflow: hidden;
  animation: hero-float 7s ease-in-out infinite;
}
@keyframes hero-float { 0%,100% { transform: translateY(0) rotate(1.2deg); } 50% { transform: translateY(-12px) rotate(.3deg); } }
.hero-photo-wrap::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 50%, rgba(1,45,32,.58)); pointer-events: none; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-photo-caption { position: absolute; z-index: 2; right: 24px; bottom: 22px; left: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: white; }
.hero-photo-caption strong { display: block; font-size: 1.2rem; line-height: 1.2; }
.hero-photo-caption small { display: block; margin-top: 4px; color: rgba(255,255,255,.76); }
.hero-float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 16px;
  color: var(--ink-900);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
  font-size: .76rem;
  font-weight: 790;
  animation: card-drift 6s ease-in-out infinite;
}
.hero-float-card .icon-wrap { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: var(--brand-800); background: var(--brand-100); }
.hero-float-card--top { top: 0; right: -14px; }
.hero-float-card--bottom { bottom: 0; left: -8px; animation-delay: -2.2s; }
@keyframes card-drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-9px,0); } }
.sparkle { position: absolute; z-index: 4; width: 12px; height: 12px; pointer-events: none; }
.sparkle::before, .sparkle::after { position: absolute; inset: 50% auto auto 50%; content: ""; transform: translate(-50%,-50%); border-radius: 99px; background: var(--gold-400); }
.sparkle::before { width: 100%; height: 2px; }
.sparkle::after { width: 2px; height: 100%; }
.sparkle--1 { top: 12%; left: -1%; animation: twinkle 2.7s ease-in-out infinite; }
.sparkle--2 { right: -3%; bottom: 22%; width: 18px; height: 18px; animation: twinkle 3.2s ease-in-out infinite .8s; }
.sparkle--3 { top: 43%; right: 1%; width: 8px; height: 8px; animation: twinkle 2.2s ease-in-out infinite .3s; }
@keyframes twinkle { 0%,100% { opacity:.25; transform: scale(.7) rotate(0); } 50% { opacity:1; transform: scale(1.25) rotate(45deg); } }

.announcement {
  position: relative;
  z-index: 4;
  margin-top: -44px;
}
.announcement__shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 17px;
  border: 1px solid rgba(5,92,66,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}
.announcement__icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--brand-600), var(--brand-900)); }
.announcement__copy { min-width: 0; }
.announcement__copy strong { display: block; color: var(--ink-950); font-size: .88rem; }
.announcement__copy span { display: block; overflow: hidden; color: var(--ink-600); font-size: .8rem; text-overflow: ellipsis; white-space: nowrap; }

/* Cards and grids */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  position: relative;
  min-height: 185px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.stat-card::after { position: absolute; right: -42px; bottom: -42px; width: 120px; height: 120px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(65,187,140,.16), transparent 68%); }
.stat-card:hover { transform: translateY(-7px); border-color: rgba(5,92,66,.25); box-shadow: var(--shadow-md); }
.stat-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.stat-card__icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; color: var(--brand-800); background: var(--brand-100); }
.stat-card__year { padding: .3rem .48rem; border-radius: 999px; color: var(--gold-600); background: var(--gold-100); font-size: .64rem; font-weight: 900; letter-spacing: .04em; }
.stat-card__value { display: block; margin-top: 20px; color: var(--ink-950); font-size: clamp(2rem,3.5vw,3rem); font-weight: 950; letter-spacing: -.055em; line-height: 1; }
.stat-card__label { display: block; margin-top: 9px; color: var(--ink-600); font-size: .78rem; font-weight: 750; }
.source-note { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0 0; color: var(--ink-500); font-size: .74rem; }
.source-note .icon { margin-top: .22em; color: var(--gold-600); }
.source-note a { color: var(--brand-700); font-weight: 750; }

.split { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); align-items: center; gap: clamp(42px,7vw,90px); }
.split--reverse { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); }
.split__media { position: relative; }
.photo-card { position: relative; overflow: hidden; border: 7px solid rgba(255,255,255,.9); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-lg); }
.photo-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease); }
.photo-card:hover img { transform: scale(1.035); }
.photo-card__caption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.65); border-radius: 14px; color: white; background: rgba(3,54,39,.72); backdrop-filter: blur(12px); font-size: .73rem; }
.photo-card__badge { position: absolute; top: 18px; right: 18px; display: inline-flex; align-items: center; gap: .5rem; padding: .55rem .7rem; border-radius: 999px; color: var(--brand-900); background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); font-size: .68rem; font-weight: 850; }
.photo-accent { position: absolute; z-index: -1; width: 48%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(242,193,78,.24), transparent 67%); filter: blur(4px); }
.photo-accent--left { bottom: -14%; left: -15%; }
.photo-accent--right { top: -16%; right: -15%; }
.copy-block h2 { margin: 0; color: var(--ink-950); font-size: clamp(2.2rem,4.5vw,4.4rem); font-weight: 920; letter-spacing: -.06em; line-height: .98; }
.copy-block h2 em { color: var(--brand-600); font-style: normal; }
.copy-block p { color: var(--ink-600); }
.copy-block > p:first-of-type { margin-top: 24px; }
.check-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.check-item { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.72); }
.check-item__icon { display: grid; width: 34px; height: 34px; place-items: center; margin-bottom: 10px; border-radius: 10px; color: var(--brand-800); background: var(--brand-100); }
.check-item strong { display: block; color: var(--ink-900); font-size: .8rem; }
.check-item span { display: block; margin-top: 4px; color: var(--ink-500); font-size: .7rem; }

.government-panel { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(40px,6vw,80px); }
.crest-stage {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 28px 70px rgba(0,0,0,.2);
  overflow: hidden;
}
.crest-stage::before { position: absolute; width: 360px; height: 360px; content: ""; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.025), 0 0 0 68px rgba(255,255,255,.018); animation: slow-spin 30s linear infinite reverse; }
.crest-stage img { position: relative; z-index: 2; width: 190px; filter: drop-shadow(0 22px 36px rgba(0,0,0,.28)); }
.crest-stage__label { position: absolute; z-index: 3; bottom: 22px; padding: .65rem .85rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.86); background: rgba(0,0,0,.16); backdrop-filter: blur(8px); font-size: .7rem; font-weight: 770; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; }
.principle { padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.055); }
.principle .icon { color: var(--gold-300); }
.principle strong { display: block; margin-top: 10px; color: white; font-size: .8rem; }
.principle span { display: block; margin-top: 4px; color: rgba(239,252,246,.65); font-size: .7rem; }

.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cards-grid--4 { grid-template-columns: repeat(4,1fr); }
.glow-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.glow-card::before { position: absolute; z-index: 0; inset: 0; content: ""; opacity: 0; background: radial-gradient(260px circle at var(--pointer-x) var(--pointer-y), rgba(70,189,145,.18), transparent 60%); transition: opacity .25s ease; pointer-events: none; }
.glow-card:hover::before { opacity: 1; }
.glow-card:hover { transform: translateY(-7px); border-color: rgba(5,92,66,.25); box-shadow: var(--shadow-md); }
.glow-card > * { position: relative; z-index: 1; }
.service-card { min-height: 270px; padding: 24px; }
.service-card__icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 15px; color: white; background: linear-gradient(145deg, var(--brand-500), var(--brand-800)); box-shadow: 0 12px 25px rgba(5,92,66,.2); }
.service-card h3 { margin: 22px 0 0; color: var(--ink-950); font-size: 1.13rem; letter-spacing: -.025em; line-height: 1.15; }
.service-card p { margin: 10px 0 0; color: var(--ink-600); font-size: .82rem; }
.service-card .text-link { margin-top: 20px; }
.service-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.65); }
.service-strip span { display: inline-flex; align-items: center; gap: .4rem; color: var(--ink-600); font-size: .72rem; font-weight: 720; }
.service-strip .icon { color: var(--brand-600); }

.potential-card { min-height: 430px; display: flex; flex-direction: column; }
.potential-card__media { position: relative; overflow: hidden; }
.potential-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease); }
.potential-card:hover .potential-card__media img { transform: scale(1.055); }
.potential-card__media::after { position: absolute; inset: 30% 0 0; content: ""; background: linear-gradient(transparent, rgba(0,45,32,.76)); }
.potential-card__number { position: absolute; z-index: 2; top: 16px; left: 16px; display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.58); border-radius: 13px; color: white; background: rgba(2,52,38,.38); backdrop-filter: blur(10px); font-size: .72rem; font-weight: 900; }
.potential-card__body { flex: 1; padding: 22px; }
.potential-card h3 { margin: 0; color: var(--ink-950); font-size: 1.26rem; letter-spacing: -.035em; line-height: 1.15; }
.potential-card p { margin: 10px 0 0; color: var(--ink-600); font-size: .82rem; }
.potential-card .text-link { margin-top: 18px; }

.news-grid { display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 18px; }
.news-card { min-height: 100%; display: flex; flex-direction: column; }
.news-card__media { position: relative; overflow: hidden; }
.news-card__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .65s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.04); }
.news-card--featured .news-card__media img { aspect-ratio: 16/11; }
.news-card__tag { position: absolute; top: 14px; left: 14px; padding: .42rem .58rem; border-radius: 999px; color: var(--brand-950); background: rgba(255,239,183,.93); box-shadow: var(--shadow-xs); font-size: .64rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.news-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.news-card__date { display: flex; align-items: center; gap: .45rem; color: var(--ink-500); font-size: .7rem; font-weight: 720; }
.news-card h3 { margin: 13px 0 0; color: var(--ink-950); font-size: 1.22rem; letter-spacing: -.035em; line-height: 1.16; }
.news-card--featured h3 { font-size: clamp(1.4rem,2.2vw,2rem); }
.news-card p { margin: 10px 0 0; color: var(--ink-600); font-size: .8rem; }
.news-card .text-link { margin-top: auto; padding-top: 18px; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 250px 210px; gap: 14px; }
.gallery-item { position: relative; min-width: 0; overflow: hidden; border: 0; border-radius: var(--radius-md); background: var(--brand-100); box-shadow: var(--shadow-sm); padding: 0; text-align: left; }
.gallery-item:first-child { grid-row: 1/3; }
.gallery-item:nth-child(4) { grid-column: 2/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .35s ease; }
.gallery-item:hover img { transform: scale(1.055); filter: saturate(1.07); }
.gallery-item::after { position: absolute; inset: 40% 0 0; content: ""; background: linear-gradient(transparent, rgba(0,42,30,.78)); }
.gallery-item__caption { position: absolute; z-index: 2; right: 16px; bottom: 14px; left: 16px; color: white; font-size: .74rem; font-weight: 780; }
.gallery-item__zoom { position: absolute; z-index: 3; top: 12px; right: 12px; display: grid; width: 36px; height: 36px; place-items: center; border-radius: 11px; color: white; background: rgba(0,45,32,.45); backdrop-filter: blur(10px); opacity: 0; transform: translateY(-5px); transition: .25s var(--ease); }
.gallery-item:hover .gallery-item__zoom, .gallery-item:focus-visible .gallery-item__zoom { opacity: 1; transform: translateY(0); }
.gallery-dialog { width: min(94vw, 1100px); padding: 0; border: 0; border-radius: 24px; background: #062d23; box-shadow: 0 30px 100px rgba(0,0,0,.45); overflow: hidden; }
.gallery-dialog::backdrop { background: rgba(0,25,18,.82); backdrop-filter: blur(8px); }
.gallery-dialog__image { width: 100%; max-height: 78vh; object-fit: contain; background: #031d16; }
.gallery-dialog__footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 16px; color: white; }
.gallery-dialog__footer p { margin: 0; font-size: .82rem; }
.dialog-close { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: white; background: rgba(255,255,255,.08); }

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(32px,6vw,58px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 82% 10%, rgba(242,193,78,.22), transparent 18rem),
    linear-gradient(135deg, var(--brand-900), var(--brand-700));
  box-shadow: var(--shadow-lg);
}
.cta-panel::before { position: absolute; top: -150px; right: -100px; width: 360px; height: 360px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 70px rgba(255,255,255,.025); }
.cta-panel__copy { position: relative; z-index: 2; max-width: 720px; }
.cta-panel h2 { margin: 0; font-size: clamp(2rem,4vw,3.8rem); font-weight: 900; letter-spacing: -.055em; line-height: .98; }
.cta-panel p { max-width: 620px; margin: 16px 0 0; color: rgba(255,255,255,.72); }
.cta-panel__actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 10px; min-width: 175px; }

/* Page hero + breadcrumbs */
.page-hero { position: relative; padding: 60px 0 84px; overflow: hidden; }
.page-hero__shell {
  position: relative;
  display: grid;
  min-height: 490px;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 55px;
  overflow: hidden;
  padding: clamp(34px,6vw,70px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.86), rgba(237,249,244,.72));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.page-hero__shell::before { position: absolute; top: -180px; left: -150px; width: 390px; height: 390px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(69,190,144,.15), transparent 68%); }
.page-hero__copy { position: relative; z-index: 2; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 24px; padding: 0; list-style: none; color: var(--ink-500); font-size: .73rem; font-weight: 700; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: var(--ink-300); }
.breadcrumbs a { color: var(--brand-700); text-decoration: none; }
.page-hero h1 { max-width: 710px; margin: 0; color: var(--ink-950); font-size: clamp(3.3rem,6.5vw,6.2rem); font-weight: 950; letter-spacing: -.075em; line-height: .88; }
.page-hero h1 em { display: block; color: var(--brand-600); font-style: normal; }
.page-hero__lead { max-width: 620px; margin: 24px 0 0; color: var(--ink-600); font-size: clamp(1rem,1.6vw,1.16rem); }
.page-hero__visual { position: relative; height: 360px; }
.page-hero__photo { position: absolute; inset: 0; overflow: hidden; border: 7px solid rgba(255,255,255,.88); border-radius: 30px; box-shadow: var(--shadow-lg); transform: rotate(1.2deg); }
.page-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__photo::after { position: absolute; inset: 50% 0 0; content: ""; background: linear-gradient(transparent, rgba(0,45,32,.6)); }
.page-hero__label { position: absolute; z-index: 3; right: 18px; bottom: 18px; left: 18px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.4); border-radius: 14px; color: white; background: rgba(2,52,38,.58); backdrop-filter: blur(10px); font-size: .7rem; font-weight: 760; }

/* Profile / governance */
.fact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.fact-card { min-height: 150px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.fact-card__label { display: block; color: var(--ink-500); font-size: .7rem; font-weight: 760; letter-spacing: .04em; text-transform: uppercase; }
.fact-card__value { display: block; margin-top: 15px; color: var(--ink-950); font-size: 1.28rem; font-weight: 900; letter-spacing: -.035em; line-height: 1.15; }
.fact-card__sub { display: block; margin-top: 7px; color: var(--ink-500); font-size: .7rem; }
.identity-table { width: 100%; border-collapse: collapse; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.identity-table th, .identity-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.identity-table tr:last-child th, .identity-table tr:last-child td { border-bottom: 0; }
.identity-table th { width: 38%; color: var(--ink-600); background: var(--surface-soft); font-size: .77rem; }
.identity-table td { color: var(--ink-900); font-size: .82rem; font-weight: 720; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.value-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.82); box-shadow: var(--shadow-sm); }
.value-card__number { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: var(--brand-950); background: var(--gold-100); font-size: .72rem; font-weight: 900; }
.value-card h3 { margin: 18px 0 0; color: var(--ink-950); font-size: 1rem; }
.value-card p { margin: 8px 0 0; color: var(--ink-600); font-size: .76rem; }
.timeline { position: relative; display: grid; gap: 14px; margin-top: 32px; }
.timeline::before { position: absolute; top: 14px; bottom: 14px; left: 22px; width: 2px; content: ""; background: linear-gradient(var(--brand-400), var(--gold-400)); }
.timeline-item { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
.timeline-item__dot { position: relative; z-index: 2; display: grid; width: 46px; height: 46px; place-items: center; border: 5px solid var(--surface-mint); border-radius: 50%; color: white; background: var(--brand-700); box-shadow: 0 0 0 1px var(--line); }
.timeline-item__content { padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow-xs); }
.timeline-item__content h3 { margin: 0; color: var(--ink-950); font-size: .95rem; }
.timeline-item__content p { margin: 7px 0 0; color: var(--ink-600); font-size: .76rem; }

.governance-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.governance-card { min-height: 310px; padding: 25px; }
.governance-card__icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; color: white; background: linear-gradient(145deg,var(--brand-500),var(--brand-900)); }
.governance-card h3 { margin: 22px 0 0; color: var(--ink-950); font-size: 1.25rem; }
.governance-card p { margin: 10px 0 0; color: var(--ink-600); font-size: .82rem; }
.role-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 26px; }
.role-item { display: grid; grid-template-columns: 44px 1fr; gap: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.7); }
.role-item__icon { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; color: var(--brand-800); background: var(--brand-100); }
.role-item strong { display: block; color: var(--ink-950); font-size: .82rem; }
.role-item span { display: block; margin-top: 3px; color: var(--ink-500); font-size: .69rem; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; counter-reset: step; }
.process-card { position: relative; min-height: 230px; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.process-card::before { counter-increment: step; content: "0" counter(step); color: var(--gold-300); font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.process-card h3 { margin: 18px 0 0; color: white; font-size: 1rem; }
.process-card p { margin: 8px 0 0; color: rgba(239,252,246,.68); font-size: .76rem; }

/* Potential page */
.feature-row { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(38px,6vw,78px); padding: 42px 0; border-bottom: 1px solid var(--line); }
.feature-row:last-child { border-bottom: 0; }
.feature-row:nth-child(even) { grid-template-columns: 1.1fr .9fr; }
.feature-row:nth-child(even) .feature-row__media { order: 2; }
.feature-row__media { position: relative; overflow: hidden; border: 7px solid white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.feature-row__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; transition: transform .7s var(--ease); }
.feature-row:hover .feature-row__media img { transform: scale(1.035); }
.feature-row__index { display: inline-flex; align-items: center; gap: .6rem; color: var(--gold-600); font-size: .7rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.feature-row__index::after { width: 36px; height: 2px; content: ""; border-radius: 99px; background: var(--gold-400); }
.feature-row h2 { margin: 15px 0 0; color: var(--ink-950); font-size: clamp(2rem,3.6vw,3.6rem); font-weight: 900; letter-spacing: -.055em; line-height: .98; }
.feature-row p { color: var(--ink-600); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag { padding: .45rem .62rem; border: 1px solid var(--line); border-radius: 999px; color: var(--brand-800); background: white; font-size: .68rem; font-weight: 780; }
.opportunity-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.opportunity-card { padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.opportunity-card .icon { color: var(--gold-300); }
.opportunity-card h3 { margin: 18px 0 0; color: white; font-size: 1rem; }
.opportunity-card p { margin: 8px 0 0; color: rgba(239,252,246,.67); font-size: .76rem; }

/* Statistics */
.data-hero-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.data-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.data-card__label { color: var(--ink-500); font-size: .7rem; font-weight: 790; text-transform: uppercase; letter-spacing: .05em; }
.data-card__value { margin-top: 14px; color: var(--ink-950); font-size: 2.4rem; font-weight: 950; letter-spacing: -.055em; line-height: 1; }
.data-card__detail { margin-top: 8px; color: var(--ink-500); font-size: .7rem; }
.chart-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.chart-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.chart-card h2, .chart-card h3 { margin: 0; color: var(--ink-950); font-size: 1.2rem; }
.chart-card__subtitle { margin: 6px 0 0; color: var(--ink-500); font-size: .72rem; }
.bar-chart { display: grid; gap: 18px; margin-top: 30px; }
.bar-row { display: grid; grid-template-columns: 100px 1fr 48px; align-items: center; gap: 12px; }
.bar-row__label { color: var(--ink-700); font-size: .78rem; font-weight: 780; }
.bar-track { height: 18px; overflow: hidden; border-radius: 999px; background: var(--brand-100); }
.bar-fill { width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand-500), var(--brand-700)); box-shadow: inset 0 1px 0 rgba(255,255,255,.38); transition: width 1.2s var(--ease); }
.bar-fill--gold { background: linear-gradient(90deg, var(--gold-300), var(--gold-500)); }
.bar-row__value { color: var(--ink-950); font-size: .85rem; font-weight: 900; text-align: right; }
.donut-wrap { display: grid; min-height: 270px; place-items: center; }
.donut { position: relative; display: grid; width: 190px; height: 190px; place-items: center; border-radius: 50%; background: conic-gradient(var(--brand-600) 0 var(--value), var(--gold-400) var(--value) 100%); box-shadow: inset 0 0 0 1px rgba(5,92,66,.08); }
.donut::before { position: absolute; width: 128px; height: 128px; content: ""; border-radius: 50%; background: white; box-shadow: inset 0 0 0 1px var(--line); }
.donut__center { position: relative; z-index: 2; text-align: center; }
.donut__center strong { display: block; color: var(--ink-950); font-size: 2rem; line-height: 1; }
.donut__center span { display: block; margin-top: 7px; color: var(--ink-500); font-size: .67rem; }
.legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 18px; }
.legend span { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-600); font-size: .7rem; }
.legend i { width: 10px; height: 10px; border-radius: 3px; background: var(--brand-600); }
.legend span:last-child i { background: var(--gold-400); }
.data-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.data-table { width: 100%; min-width: 700px; border-collapse: collapse; }
.data-table th, .data-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; font-size: .78rem; }
.data-table th { color: var(--brand-900); background: var(--brand-50); font-weight: 850; }
.data-table td { color: var(--ink-700); }
.data-table tr:last-child td { border-bottom: 0; }
.download-panel { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(135deg, white, var(--brand-50)); box-shadow: var(--shadow-sm); }
.download-panel h3 { margin: 0; color: var(--ink-950); font-size: 1rem; }
.download-panel p { margin: 6px 0 0; color: var(--ink-500); font-size: .73rem; }
.download-panel__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Services */
.service-catalog { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.catalog-card { padding: 0; }
.catalog-card summary { display: grid; grid-template-columns: 50px 1fr 28px; align-items: center; gap: 15px; padding: 22px; list-style: none; cursor: pointer; }
.catalog-card summary::-webkit-details-marker { display: none; }
.catalog-card__icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 15px; color: white; background: linear-gradient(145deg,var(--brand-500),var(--brand-900)); }
.catalog-card summary strong { display: block; color: var(--ink-950); font-size: .98rem; }
.catalog-card summary span { display: block; margin-top: 4px; color: var(--ink-500); font-size: .69rem; }
.catalog-card__chevron { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 9px; color: var(--brand-700); background: var(--brand-100); transition: transform .25s var(--ease); }
.catalog-card[open] .catalog-card__chevron { transform: rotate(180deg); }
.catalog-card__content { padding: 0 22px 22px 87px; }
.catalog-card__content h4 { margin: 0 0 8px; color: var(--ink-900); font-size: .78rem; }
.requirement-list { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.requirement-list li { position: relative; padding-left: 20px; color: var(--ink-600); font-size: .73rem; }
.requirement-list li::before { position: absolute; top: .54em; left: 0; width: 8px; height: 8px; content: ""; border: 2px solid var(--brand-500); border-radius: 50%; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; counter-reset: service-step; }
.step-card { position: relative; min-height: 220px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.step-card::before { counter-increment: service-step; content: counter(service-step); display: grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; color: var(--brand-950); background: var(--gold-100); font-size: .78rem; font-weight: 950; }
.step-card h3 { margin: 18px 0 0; color: var(--ink-950); font-size: .98rem; }
.step-card p { margin: 8px 0 0; color: var(--ink-600); font-size: .75rem; }
.form-shell { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; padding: clamp(24px,4vw,38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-md); }
.form-panel h2 { margin: 0; color: var(--ink-950); font-size: 1.7rem; letter-spacing: -.035em; }
.form-panel > p { margin: 9px 0 0; color: var(--ink-600); font-size: .78rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 22px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1/-1; }
.field label, .field legend { color: var(--ink-800); font-size: .72rem; font-weight: 820; }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; padding: .76rem .85rem; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink-900); background: #fbfefc; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-500); background: white; box-shadow: 0 0 0 4px rgba(26,164,119,.12); }
.field-help { color: var(--ink-500); font-size: .64rem; }
.form-privacy { display: flex; align-items: flex-start; gap: 9px; margin: 15px 0 0; color: var(--ink-500); font-size: .67rem; }
.form-privacy .icon { margin-top: .18em; color: var(--brand-600); }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.request-preview { min-height: 100%; padding: 26px; border: 1px dashed rgba(5,92,66,.3); border-radius: var(--radius-md); background: linear-gradient(160deg,var(--brand-50),white); }
.request-preview__empty { display: grid; min-height: 380px; place-items: center; color: var(--ink-500); text-align: center; }
.request-preview__empty .icon-wrap { display: grid; width: 70px; height: 70px; margin: 0 auto 14px; place-items: center; border-radius: 22px; color: var(--brand-700); background: var(--brand-100); }
.request-document[hidden], .request-preview__empty[hidden] { display: none; }
.request-document__head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 2px solid var(--brand-800); }
.request-document__head img { width: 62px; }
.request-document__head strong { display: block; color: var(--ink-950); font-size: .86rem; }
.request-document__head span { display: block; color: var(--ink-500); font-size: .66rem; }
.request-document h3 { margin: 24px 0 18px; color: var(--ink-950); font-size: 1rem; text-align: center; text-decoration: underline; }
.request-document dl { display: grid; grid-template-columns: 130px 1fr; gap: 8px 12px; margin: 0; }
.request-document dt { color: var(--ink-500); font-size: .69rem; }
.request-document dd { margin: 0; color: var(--ink-900); font-size: .72rem; font-weight: 720; word-break: break-word; }
.request-document__note { margin-top: 20px; padding: 12px; border-radius: 11px; color: var(--ink-600); background: var(--gold-100); font-size: .65rem; }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.location-card { min-height: 360px; padding: 28px; border-radius: var(--radius-md); }
.location-card h2 { margin: 0; color: var(--ink-950); font-size: 1.55rem; }
.location-card address { margin-top: 18px; color: var(--ink-600); font-size: .83rem; font-style: normal; }
.location-card__meta { display: grid; gap: 10px; margin-top: 22px; }
.location-card__meta span { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-600); font-size: .75rem; }
.location-card__meta .icon { color: var(--brand-600); margin-top: .18em; }
.map-card { position: relative; min-height: 360px; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.map-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,45,32,.7)); }
.map-card__overlay { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; color: white; }
.map-card__overlay h3 { margin: 0; font-size: 1.25rem; }
.map-card__overlay p { margin: 6px 0 15px; color: rgba(255,255,255,.76); font-size: .72rem; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: var(--shadow-xs); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 19px; color: var(--ink-900); list-style: none; cursor: pointer; font-size: .82rem; font-weight: 820; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border-radius: 9px; color: var(--brand-700); background: var(--brand-100); font-size: 1rem; transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 19px 18px; color: var(--ink-600); font-size: .76rem; }

/* Information / article */
.info-list { display: grid; gap: 18px; }
.info-row { display: grid; grid-template-columns: 300px 1fr; overflow: hidden; }
.info-row__media img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.info-row__body { display: flex; flex-direction: column; padding: 26px; }
.info-row__meta { display: flex; flex-wrap: wrap; gap: 12px; color: var(--ink-500); font-size: .68rem; font-weight: 720; }
.info-row h2 { margin: 14px 0 0; color: var(--ink-950); font-size: clamp(1.4rem,2.8vw,2.2rem); letter-spacing: -.04em; line-height: 1.08; }
.info-row p { margin: 11px 0 0; color: var(--ink-600); font-size: .8rem; }
.info-row .text-link { margin-top: auto; padding-top: 18px; }
.article-wrap { display: grid; grid-template-columns: minmax(0,1fr) 300px; align-items: start; gap: 42px; }
.article { min-width: 0; }
.article__meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 25px; color: var(--ink-500); font-size: .72rem; font-weight: 720; }
.article__cover { margin: 0 0 32px; overflow: hidden; border: 7px solid white; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.article__cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article__cover figcaption { padding: 10px 14px; color: var(--ink-500); background: white; font-size: .65rem; }
.article__body { color: var(--ink-700); font-size: 1rem; }
.article__body h2 { margin: 42px 0 12px; color: var(--ink-950); font-size: clamp(1.6rem,3vw,2.5rem); letter-spacing: -.04em; line-height: 1.08; }
.article__body h3 { margin: 30px 0 10px; color: var(--ink-950); font-size: 1.2rem; }
.article__body p { margin: 0 0 20px; }
.article__body ul { margin: 0 0 22px; padding-left: 1.15rem; }
.article__body li { margin: 7px 0; }
.callout { margin: 28px 0; padding: 22px; border-left: 4px solid var(--gold-400); border-radius: 0 16px 16px 0; background: var(--gold-100); color: var(--ink-800); }
.callout strong { color: var(--ink-950); }
.source-box { margin-top: 34px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--brand-50); }
.source-box h3 { margin: 0; color: var(--ink-950); font-size: .95rem; }
.source-box p { margin: 8px 0 14px; color: var(--ink-600); font-size: .75rem; }
.article-sidebar { position: sticky; top: 112px; display: grid; gap: 14px; }
.sidebar-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.sidebar-card h2, .sidebar-card h3 { margin: 0; color: var(--ink-950); font-size: .94rem; }
.sidebar-card p { margin: 8px 0 0; color: var(--ink-500); font-size: .7rem; }
.sidebar-links { display: grid; gap: 9px; margin-top: 15px; }
.sidebar-links a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 11px; border-radius: 11px; color: var(--ink-700); background: var(--surface-soft); text-decoration: none; font-size: .7rem; font-weight: 740; }
.sidebar-links a:hover { color: var(--brand-800); background: var(--brand-100); }

/* Legal / attribution */
.prose { color: var(--ink-700); }
.prose h2 { margin: 42px 0 12px; color: var(--ink-950); font-size: 1.6rem; letter-spacing: -.035em; }
.prose h3 { margin: 28px 0 10px; color: var(--ink-950); font-size: 1.08rem; }
.prose p, .prose li { font-size: .9rem; }
.prose a { color: var(--brand-700); font-weight: 720; }
.credit-list { display: grid; gap: 14px; }
.credit-item { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-xs); }
.credit-item img { width: 180px; aspect-ratio: 16/10; object-fit: cover; border-radius: 13px; }
.credit-item h2 { margin: 0; color: var(--ink-950); font-size: .98rem; }
.credit-item p { margin: 7px 0 0; color: var(--ink-600); font-size: .72rem; }
.credit-item__links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.credit-pill { padding: .38rem .55rem; border-radius: 999px; color: var(--brand-800); background: var(--brand-100); text-decoration: none; font-size: .64rem; font-weight: 780; }

/* Footer */
.site-footer { position: relative; padding: 72px 0 24px; color: rgba(236,252,245,.75); background: var(--brand-950); overflow: hidden; }
.site-footer::before { position: absolute; top: -220px; right: -180px; width: 500px; height: 500px; content: ""; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.018), 0 0 0 120px rgba(255,255,255,.012); }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr .65fr .65fr .9fr; gap: 50px; }
.footer-brand { display: inline-flex; align-items: center; gap: 13px; color: white; text-decoration: none; }
.footer-brand img { width: 58px; }
.footer-brand strong { display: block; font-size: 1.05rem; }
.footer-brand span { display: block; margin-top: 3px; color: rgba(236,252,245,.58); font-size: .66rem; }
.footer-about { max-width: 390px; margin: 18px 0 0; font-size: .75rem; }
.footer-source { display: inline-flex; align-items: center; gap: .5rem; margin-top: 20px; padding: .55rem .7rem; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; color: rgba(255,255,255,.75); background: rgba(255,255,255,.04); text-decoration: none; font-size: .67rem; font-weight: 720; }
.footer-source:hover { color: white; background: rgba(255,255,255,.08); }
.footer-col h2 { margin: 0 0 15px; color: white; font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.footer-links a { color: rgba(236,252,245,.66); text-decoration: none; font-size: .72rem; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--gold-300); transform: translateX(3px); }
.footer-address { font-size: .72rem; font-style: normal; }
.footer-address strong { display: block; margin-bottom: 7px; color: white; }
.footer-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(236,252,245,.48); font-size: .66rem; }
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: white; }
.back-to-top { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: white; background: rgba(255,255,255,.06); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }

/* Focus */
:focus-visible { outline: 3px solid rgba(242,193,78,.75); outline-offset: 3px; }

/* 404 */
.error-page { display: grid; min-height: 70vh; place-items: center; padding: 60px 0 100px; text-align: center; }
.error-page img { width: min(100%, 680px); margin-inline: auto; border-radius: 28px; box-shadow: var(--shadow-md); }
.error-page h1 { margin: 28px 0 0; color: var(--ink-950); font-size: clamp(2.4rem,5vw,4.7rem); letter-spacing: -.06em; line-height: .95; }
.error-page p { max-width: 600px; margin: 14px auto 0; color: var(--ink-600); }

@media (max-width: 1080px) {
  .site-nav a { padding-inline: .57rem; font-size: .76rem; }
  .header-action { display: none; }
  .hero-grid { grid-template-columns: 1fr 430px; gap: 42px; }
  .hero-title { font-size: clamp(3.5rem,7vw,5.7rem); }
  .cards-grid--4 { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: 1/-1; display: grid; grid-template-columns: 1.05fr .95fr; }
  .news-card--featured .news-card__media img { height: 100%; aspect-ratio: auto; }
  .fact-grid, .value-grid, .data-hero-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr .7fr .7fr; }
  .footer-col:last-child { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  :root { --header-height: 66px; }
  .utility-bar__inner { justify-content: center; }
  .utility-bar__inner > :last-child { display: none; }
  .header-shell { padding: 7px 8px 7px 11px; border-radius: 17px; }
  .brand { min-width: 0; }
  .brand__crest { width: 47px; height: 47px; }
  .brand__region { display: none; }
  .site-nav, .header-action { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel {
    position: fixed;
    z-index: 38;
    inset: 0;
    display: block;
    padding: 126px 20px 24px;
    visibility: hidden;
    opacity: 0;
    background: rgba(3,41,30,.88);
    backdrop-filter: blur(18px);
    transition: opacity .25s ease, visibility .25s ease;
  }
  .mobile-panel.is-open { visibility: visible; opacity: 1; }
  .mobile-panel__sheet { width: min(100%,560px); max-height: calc(100vh - 150px); margin: 0 auto; padding: 16px; overflow-y: auto; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.95); box-shadow: 0 30px 90px rgba(0,0,0,.35); transform: translateY(-18px) scale(.98); transition: transform .32s var(--ease); }
  .mobile-panel.is-open .mobile-panel__sheet { transform: translateY(0) scale(1); }
  .mobile-nav { display: grid; gap: 6px; }
  .mobile-nav a { display: grid; grid-template-columns: 42px 1fr 22px; align-items: center; gap: 12px; min-height: 60px; padding: 9px 11px; border-radius: 15px; color: var(--ink-800); text-decoration: none; font-size: .86rem; font-weight: 820; }
  .mobile-nav a:hover, .mobile-nav a[aria-current="page"] { color: var(--brand-900); background: var(--brand-100); }
  .mobile-nav__icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 13px; color: var(--brand-700); background: var(--brand-50); }
  .mobile-panel__footer { margin-top: 12px; padding: 14px; border-radius: 15px; color: var(--ink-600); background: var(--surface-soft); font-size: .7rem; }
  .home-hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-title { font-size: clamp(4rem,12vw,6.8rem); }
  .hero-visual { min-height: 520px; width: min(100%,650px); margin-inline: auto; }
  .announcement { margin-top: -26px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .split, .split--reverse, .government-panel, .feature-row, .feature-row:nth-child(even), .chart-grid, .form-shell, .location-grid { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-row__media { order: 0; }
  .crest-stage { min-height: 350px; }
  .page-hero__shell { grid-template-columns: 1fr; gap: 38px; }
  .page-hero__visual { height: 340px; }
  .governance-grid, .opportunity-grid { grid-template-columns: 1fr; }
  .service-catalog { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 240px 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 35px; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .container, .container--narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section--compact { padding: 54px 0; }
  .section-head { display: block; }
  .section-head .btn { margin-top: 22px; }
  .brand__overline { font-size: .56rem; }
  .brand__name { font-size: .92rem; }
  .brand__crest { width: 43px; height: 43px; }
  .home-hero { min-height: auto; padding: 38px 0 88px; }
  .hero-title { font-size: clamp(3.65rem,18vw,5.3rem); }
  .hero-description { font-size: .98rem; }
  .hero-meta { display: grid; grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; margin-top: 10px; }
  .hero-photo-wrap { inset: 27px 4px 18px 4px; border-width: 5px; border-radius: 26px; }
  .hero-photo-caption { right: 15px; bottom: 15px; left: 15px; }
  .hero-photo-caption strong { font-size: .92rem; }
  .hero-photo-caption small { font-size: .64rem; }
  .hero-float-card { padding: 9px 10px; font-size: .64rem; }
  .hero-float-card--top { top: -3px; right: 0; }
  .hero-float-card--bottom { bottom: -2px; left: 0; }
  .hero-float-card .icon-wrap { width: 29px; height: 29px; }
  .announcement__shell { grid-template-columns: auto 1fr; }
  .announcement__shell .text-link { display: none; }
  .announcement__copy span { white-space: normal; }
  .stats-grid, .cards-grid, .cards-grid--4, .fact-grid, .value-grid, .data-hero-grid, .process-grid, .steps, .principles, .check-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 160px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; display: flex; }
  .news-card--featured .news-card__media img { aspect-ratio: 16/10; height: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 190px 190px; }
  .gallery-item:first-child { grid-column: 1/-1; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1/-1; }
  .page-hero { padding: 38px 0 62px; }
  .page-hero__shell { min-height: auto; padding: 28px 21px 22px; border-radius: 28px; }
  .page-hero h1 { font-size: clamp(3rem,15vw,4.8rem); }
  .page-hero__visual { height: 280px; }
  .role-list { grid-template-columns: 1fr; }
  .feature-row { padding: 28px 0; }
  .bar-row { grid-template-columns: 78px 1fr 38px; }
  .download-panel { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .request-preview__empty { min-height: 270px; }
  .request-document dl { grid-template-columns: 100px 1fr; }
  .info-row { grid-template-columns: 1fr; }
  .info-row__media img { min-height: 210px; aspect-ratio: 16/9; }
  .article-sidebar { grid-template-columns: 1fr; }
  .credit-item { grid-template-columns: 1fr; }
  .credit-item img { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-col:last-child { grid-column: 1/-1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cta-panel__actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 420px) {
  .utility-bar { display: none; }
  .site-header { top: 0; }
  .mobile-panel { padding-top: 100px; }
  .brand__copy { max-width: 195px; }
  .brand__name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4,220px); }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child, .footer-col:last-child { grid-column: auto; }
}

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

@media print {
  .utility-bar, .site-header, .site-footer, .page-hero, .section:not(.print-section), .form-panel, .request-preview__empty, .request-document .btn, .back-to-top { display: none !important; }
  body { color: #000; background: #fff; }
  .print-section { padding: 0 !important; }
  .form-shell { display: block; padding: 0; border: 0; box-shadow: none; }
  .request-preview { padding: 0; border: 0; background: white; }
  .request-document { display: block !important; }
}

/* Keep mobile menu labels and descriptions visually separated on narrow screens. */
@media (max-width: 1080px) {
  .mobile-nav a > span:nth-child(2) {
    display: grid;
    min-width: 0;
    gap: 3px;
  }
  .mobile-nav strong {
    display: block;
    line-height: 1.2;
  }
  .mobile-nav small {
    display: block;
    color: var(--ink-600);
    font-size: .72rem;
    font-weight: 650;
    line-height: 1.4;
  }
}
