@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&family=Tajawal:wght@400;500;700&display=swap');

:root {
  --cream: #ffffff;
  --teal: #224d4d;
  --gold: #d4ac71;
  --deep: #172828;
  --ink: #172828;
  --paper: #ffffff;
  --muted: #224d4d;
  --btn: #172828;
  --xi: #224d4d;
  --ri: #d4ac71;
  --ni: #d4ac71;
  --display: "Readex Pro", "Tajawal", sans-serif;
  --body: "Tajawal", "Readex Pro", sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 40;
  width: calc(100% - 240px);
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline-start: 20px;
  padding-inline-end: 10px;
  border-radius: 16px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1), padding 0.55s cubic-bezier(0.4, 0, 0.2, 1), background 0.45s ease, box-shadow 0.45s ease, color 0.35s ease;
}
.nav.is-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--cream);
  border: 0;
  box-shadow: none;
  padding-block: 13px;
}
.nav.is-hero .ghost {
  background: transparent;
}
.nav-end {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: auto;
}
.nav.is-light {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  color: var(--ink);
  border: 1px solid rgba(212, 172, 113, 0.35);
  box-shadow: 0 8px 28px rgba(23, 40, 40, 0.12);
  padding-block: 13px;
}
.nav.is-light .ghost {
  background: transparent;
  color: var(--ink);
}
.nav.is-light .ghost.outline {
  box-shadow: inset 0 0 0 1px rgba(26, 24, 20, 0.18);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: none;
}
.nav.is-hero .brand-logo-light { display: block; }
.nav.is-light .brand-logo-dark { display: block; }
.footer .brand-logo-light { display: none; }
.footer .brand-logo-stack {
  display: block;
  height: 112px;
  width: auto;
}
.ask .brand-logo-dark {
  display: block;
  height: 36px;
  width: auto;
  max-width: min(180px, 80%);
  margin: 0 auto 14px;
}
.mark { width: 28px; height: 28px; }
.links { display: flex; gap: 4px; align-items: center; }
.links > a,
.nav-item > a {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0.88;
}
.nav-item { position: relative; }
.nav-item > a::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-inline-start: 5px;
  border-inline-end: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.65;
}
.nav-drop {
  display: none;
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 260px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 8px 0;
  background: #fff;
  color: #172828;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(23, 40, 40, 0.16);
  z-index: 50;
}
.nav-item:hover .nav-drop,
.nav-item.is-open .nav-drop { display: block; }
.nav-drop a {
  display: block;
  padding: 10px 18px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  color: #172828;
  opacity: 1;
}
.nav-drop a:hover { background: #f4eee5; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.menu-cta { display: none; }
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 60;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 1.6px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.brand-tag { display: none; }
body.menu-on { overflow: hidden; }
.ghost, .pill {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.ghost { background: rgba(255,255,255,0.16); color: #fff; }
.pill.solid { background: var(--gold); color: var(--deep); }
.pill.dark { background: var(--deep); color: var(--cream); }
.pill.glass { background: rgba(255, 255, 255, 0.18); color: var(--cream); }

.hero {
  min-height: 100dvh;
  height: 100dvh;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 28px 36px;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-space { height: 100dvh; }
.hero-slides { position: absolute; inset: 0; background: var(--deep); }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide.is-on {
  opacity: 1;
}
html[dir="ltr"] .hero-slide {
  transform: scaleX(-1);
}
.hero-slide[data-slide="0"] {
  background-image: url("../images/slide-office.jpg?v=2");
}
.hero-slide[data-slide="1"] {
  background-image: url("../images/slide-family.jpg?v=2");
}
.hero-slide[data-slide="2"] {
  background-image: url("../images/slide-hands.jpg?v=2");
}
.hero-slide[data-slide="3"] {
  background-image: url("../images/slide-hands.jpg?v=2");
}
.hero-inner { position: relative; z-index: 1; width: min(1180px, 100%); margin: 0 auto; }
.hero h1 {
  margin: 0 0 18px;
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 64px);
  font-weight: 400;
  line-height: 1.12;
  transition: opacity 0.35s ease;
}
.lead { margin: 0 0 28px; max-width: 42ch; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.86); }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(920px, 100%);
  will-change: transform, opacity;
}
.tab {
  position: relative;
  overflow: hidden;
  text-align: start;
  background: rgba(26,24,20,0.42);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 16px;
  padding: 18px 14px;
  cursor: pointer;
  min-height: 118px;
}
.tab.is-on { background: var(--cream); color: var(--ink); }
.tab b { display: block; margin-top: 10px; font-size: 14px; position: relative; z-index: 1; }
.swatch {
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center; font-size: 9px; font-weight: 700;
  position: relative; z-index: 1;
}
.tab-progress {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: currentColor;
  opacity: 0.35;
}
.tab.is-on .tab-progress {
  animation: tabFill 6s linear forwards;
}
@keyframes tabFill {
  from { width: 0; }
  to { width: 100%; }
}

.page-over {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.28);
  will-change: transform;
}
.partners {
  padding: 44px 0 16px;
}
.partners-title {
  margin: 0 0 36px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  color: var(--ink);
}
.logo-bar {
  width: calc(100% - 240px);
  margin-inline: auto;
  padding: 4px 0 28px;
  overflow: hidden;
  container-type: inline-size;
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logoMarquee 48s linear infinite;
}
.logo-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(200px, 16cqi, 260px);
  height: 140px;
  box-sizing: border-box;
  padding-inline: 16px;
}
.logo-mark img {
  height: 112px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 72px 0 24px; }
#how.section {
  width: 100%;
  max-width: none;
  background: #ffffff;
  padding-inline: 0;
  box-sizing: border-box;
}
#how .eyebrow,
#how h2,
#how .sub {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.eyebrow i { width: 18px; height: 2px; background: var(--ni); display: inline-block; }
h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.18;
}
.sub { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 46ch; }

.diagram {
  width: calc(100% - 240px);
  margin-top: 40px;
  margin-inline: auto;
  background: #f8f8f6;
  border-radius: 24px;
  padding: 36px 28px;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(240px, 1.3fr) 40px minmax(200px, 1fr);
  gap: 0;
  align-items: center;
  direction: ltr;
  box-sizing: border-box;
}
html[dir="rtl"] .diagram {
  direction: rtl;
}
.diagram-flow {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: stretch;
  min-height: 320px;
}
.stack { display: flex; flex-direction: column; gap: 10px; }
.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(10px);
  min-height: 48px;
  text-align: start;
}
.chip b { font-weight: 500; line-height: 1.35; flex: 1; }
.chip-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ask, .out {
  opacity: 0;
  transform: translateY(10px);
}
.ask { background: #fff; border-radius: 22px; padding: 22px 18px; text-align: center; position: relative; z-index: 1; }
.ask small { display: block; margin: 10px 0 16px; color: var(--muted); }
.ask-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(26,24,20,0.1);
  border-radius: 999px;
  padding: 10px 14px;
  color: #9a9894;
}
.out {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1.5px dashed rgba(26,24,20,0.16);
  position: relative;
  z-index: 1;
  text-align: center;
}
.out p { color: var(--muted); font-size: 13px; }
.out em { font-style: normal; color: var(--xi); font-weight: 600; }
.join-in, .join-out {
  width: 100%;
  height: 100%;
  overflow: visible;
}
html[dir="rtl"] .join-in {
  transform: scaleX(-1);
}
.join-out {
  height: 2px;
  align-self: center;
}
.join-in path.wire, .join-out path.wire {
  fill: none;
  stroke: rgba(26,24,20,0.16);
  stroke-width: 1;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke 0.35s ease;
}
.join-in path.wire.is-lit, .join-out path.wire.is-lit {
  stroke: var(--xi);
}
.join-in path.current, .join-out path.current {
  fill: none;
  stroke: var(--xi);
  stroke-width: 1.2;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(0, 161, 154, 0.55));
}
.join-in path.current.is-run, .join-out path.current.is-run {
  opacity: 1;
}
.diagram.is-in .chip,
.diagram.is-in .ask,
.diagram.is-in .out {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.35s ease;
}
.diagram.is-in .chip:nth-child(1) { transition-delay: 0.04s; }
.diagram.is-in .chip:nth-child(2) { transition-delay: 0.1s; }
.diagram.is-in .chip:nth-child(3) { transition-delay: 0.16s; }
.diagram.is-in .chip:nth-child(4) { transition-delay: 0.22s; }
.diagram.is-in .chip:nth-child(5) { transition-delay: 0.28s; }
.diagram.is-in .chip:nth-child(6) { transition-delay: 0.34s; }
.diagram.is-in .ask { transition-delay: 0.42s; }
.diagram.is-in .out { transition-delay: 0.62s; }
.diagram.is-in .join-in path.wire,
.diagram.is-in .join-out path.wire {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.85s ease 0.32s;
}
.chip.is-on { border-color: var(--xi); }
.diagram.is-charged .out {
  border-color: rgba(0, 161, 154, 0.55);
}

.products {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  align-items: stretch;
}
.product {
  background: #fff;
  border: 1px solid rgba(26, 24, 20, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  flex: 0 1 320px;
  max-width: 340px;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.product.is-on { flex-grow: 1.15; max-width: 360px; }
.product-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 16px 20px;
  background: #f8f8f6;
  font-size: 13px;
  font-weight: 500;
}
.product-swatch {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  flex-shrink: 0;
}
.product-frame {
  background: var(--deep);
  border-radius: 0;
  padding: 24px;
  display: flex;
  min-height: 280px;
  align-items: stretch;
}
.product-inset {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #152222;
}
.product-inset-photo {
  flex: 1 1 54%;
  min-height: 140px;
  background-size: cover;
  background-position: center;
}
.product-inset-copy {
  padding: 16px 16px 16px;
  color: #fff;
}
.product-inset-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-inset-copy p {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}
.product-stars {
  display: flex;
  gap: 4px;
}
.product-stars i {
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.product-body {
  position: relative;
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}
.product.is-on .product-body {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
.product-copy { min-width: 0; flex: 1; }
.product-body h3 { margin: 0 0 8px; font-family: var(--display); font-size: 22px; font-weight: 500; }
.product-body p { margin: 0; color: var(--muted); line-height: 1.55; }
.product-explore {
  position: absolute;
  inset-inline-end: 4px;
  bottom: 0;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.product.is-on .product-explore {
  position: static;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.quotes-section {
  width: 100%;
  padding: 40px 0 28px;
}
.quote-stage {
  --peek: 120px;
  --gap: 16px;
  container-type: inline-size;
  position: relative;
  width: 100%;
  height: 420px;
  margin-inline: auto;
  overflow: hidden;
}
.quote-track {
  display: flex;
  direction: ltr;
  align-items: stretch;
  gap: var(--gap);
  height: 100%;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-card {
  position: relative;
  flex: 0 0 calc(100cqi - var(--peek) * 2);
  min-width: 0;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  cursor: pointer;
  background: #161410 center / cover no-repeat;
}
.quote-card.is-on { cursor: default; }
.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,14,12,0.72) 0%, rgba(16,14,12,0.38) 42%, rgba(16,14,12,0.12) 78%);
}
.quote-card-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px 48px;
}
html[dir="rtl"] .quote-card-inner { direction: rtl; text-align: start; }
html[dir="ltr"] .quote-card-inner { direction: ltr; text-align: start; }
.quote-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.quote-swatch {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  background: var(--swatch, var(--teal));
}
.quote-swatch.is-light { color: var(--deep); }
.quote-card-main { max-width: 34rem; }
.quote-card-main h2 {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.quote-explore { display: inline-flex; }
.quote-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.quote-card-foot b { display: block; font-size: 15px; font-weight: 600; }
.quote-card-foot .quote-role { display: block; font-size: 13px; font-weight: 400; opacity: 0.78; }
.quote-org {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  opacity: 0.95;
}
.quote-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.quote-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  cursor: pointer;
}
.quote-dot.is-on { background: #fff; }
.quote-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(23, 40, 40, 0.16);
}
.quote-arrow svg { width: 16px; height: 16px; }
.quote-arrow.is-prev { left: calc(var(--peek) / 2 - 20px); }
.quote-arrow.is-next { right: calc(var(--peek) / 2 - 20px); }

.roles-block { padding: 72px 0 24px; }
.roles-intro { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.roles-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.roles-nav { display: flex; gap: 8px; flex-shrink: 0; }
.roles-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(23, 40, 40, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.roles-arrow svg { width: 16px; height: 16px; }
html[dir="rtl"] .roles-arrow svg { transform: scaleX(-1); }
.roles-arrow:disabled { opacity: 0.35; cursor: default; }
.roles {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 0;
  padding-inline: 0;
  scrollbar-width: none;
}
.roles::-webkit-scrollbar { display: none; }
.role {
  flex: 0 0 min(280px, 78vw);
  min-height: 380px;
  border-radius: 20px;
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.role::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(16,14,12,0.78)); }
.role > div { position: absolute; inset-inline: 20px; bottom: 20px; z-index: 1; }
.role h3 { margin: 0 0 8px; font-family: var(--display); font-size: 22px; font-weight: 500; }
.role p { margin: 0 0 14px; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.86); }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.trust-card {
  background: #f8f8f6;
  border: 1px solid rgba(23, 40, 40, 0.08);
  border-radius: 12px;
  padding: 28px 22px;
}
.trust-card svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
  display: block;
  margin-bottom: 18px;
}
.trust-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}
.outcome {
  text-align: center;
  padding: 8px 20px;
}
.outcome + .outcome {
  border-inline-start: 1px solid rgba(23, 40, 40, 0.12);
}
.outcome-num {
  display: block;
  font-family: var(--display);
  font-size: 64px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.outcome p {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 500;
}

.cta {
  margin: 72px auto 0;
  width: min(1180px, calc(100% - 40px));
  border-radius: 28px;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream); overflow: hidden;
  background:
    radial-gradient(60% 80% at 15% 80%, rgba(34,77,77,0.95), transparent 55%),
    radial-gradient(50% 70% at 88% 20%, rgba(212,172,113,0.55), transparent 50%),
    var(--deep);
}
.cta-inner { padding: 56px 24px; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.82); }

.footer {
  width: 100%;
  max-width: none;
  margin: 72px 0 0;
  padding: 48px 0 28px;
  background: var(--deep);
  color: #fff;
  box-sizing: border-box;
  border-top: 3px solid var(--gold);
  box-shadow: 0 100vh 0 0 var(--deep);
}
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(4, minmax(0, 1fr));
  align-items: start;
  column-gap: 32px;
  row-gap: 28px;
}
.footer-grid > div {
  min-width: 0;
}
.foot-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
  min-height: 20px;
  line-height: 1.4;
}
.footer-grid > div > a {
  display: block;
  background: none;
  border: 0;
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: start;
}
.footer-grid > div > a:hover { color: var(--gold); }
.footer .sub { color: rgba(255, 255, 255, 0.7); max-width: none; }
.footer .brand { color: #fff; margin: 0 0 16px; }
.news {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  max-width: 340px;
  width: 100%;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-sizing: border-box;
}
.news input {
  flex: 1;
  min-width: 0;
  width: auto;
  border: 0;
  background: transparent;
  color: var(--deep);
  border-radius: 999px;
  padding: 10px 16px;
  outline: none;
}
.news input::placeholder { color: #8a9191; }
.footer .news .pill {
  display: inline-flex;
  justify-content: center;
  width: auto;
  flex-shrink: 0;
  margin: 0;
  padding: 10px 18px;
}
.footer .pill.dark { background: var(--gold); color: var(--deep); }
.footer .news .pill.dark {
  background: var(--deep);
  color: #fff;
}
.legal {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 172, 113, 0.28);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.icons { display: grid; grid-template-columns: repeat(4, 32px); gap: 12px; }
.icons i { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: grid; place-items: center; color: rgba(255,255,255,0.7); font-style: normal; font-size: 13px; }

@media (max-width: 980px) {
  .nav,
  .nav.is-light { width: calc(100% - 96px); }
  .logo-bar,
  .diagram { width: calc(100% - 96px); }
  .links { display: none; }
  .menu-btn { display: flex; }
  .nav-actions .ghost.outline,
  .nav-actions .pill { display: none; }
  .nav.is-open {
    top: 0;
    width: 100%;
    border-radius: 0;
    z-index: 60;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav.is-open .brand-logo-light { display: none; }
  .nav.is-open .brand-logo-dark { display: block; }
  .nav.is-open .ghost { color: var(--ink); background: transparent; }
  .nav.is-open .menu-btn span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
  .nav.is-open .menu-btn span:nth-child(2) { opacity: 0; }
  .nav.is-open .menu-btn span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }
  body.inner .nav.is-open,
  body.inner .nav.is-open.is-light {
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  body.menu-on .nav.is-open,
  body.inner .nav.is-open {
    width: min(400px, 86vw);
    left: auto;
    right: 0;
    margin: 0;
    top: 0;
    padding: 18px 18px 12px 16px;
  }
  body.menu-on .links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    z-index: 55;
    width: min(400px, 86vw);
    height: 100%;
    margin: 0;
    background: #fcfbf8;
    color: #163a39;
    padding: 88px 16px 24px;
    gap: 2px;
    overflow: auto;
    border-radius: 24px 0 0 24px;
    box-shadow: -18px 0 40px rgba(22, 58, 57, 0.12);
  }
  body.menu-on .nav.is-open .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    z-index: 61;
  }
  body.menu-on .nav.is-open .brand-logo-dark { height: 48px; }
  body.menu-on .brand-tag {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #7d8f93;
    opacity: 1;
    line-height: 1.35;
    margin-inline-start: 2px;
  }
  body.menu-on .nav.is-open #lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 61;
    color: #51696e;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 8px;
  }
  body.menu-on .nav.is-open #lang-btn::before {
    content: "";
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  body.menu-on .nav.is-open .menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fcfbf8;
    box-shadow: inset 0 0 0 1px #e4e0db;
  }
  body.menu-on .nav.is-open .menu-btn span { display: none; }
  body.menu-on .nav.is-open .menu-btn::before {
    content: "";
    width: 8px;
    height: 8px;
    border-inline-start: 1.7px solid #51696e;
    border-bottom: 1.7px solid #51696e;
    transform: rotate(45deg);
    margin-inline-start: 3px;
  }
  .nav-item:hover .nav-drop { display: none; }
  body.menu-on .nav-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: static;
  }
  body.menu-on .links > a,
  body.menu-on .nav-item > a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 14px;
    border-radius: 14px;
    opacity: 1;
    color: #163a39;
  }
  body.menu-on .links > a[data-nav]::before,
  body.menu-on .nav-item > a[data-nav]::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-inline-end: 10px;
    flex: 0 0 auto;
    background: #163a39;
    -webkit-mask: var(--nav-ico) center / contain no-repeat;
    mask: var(--nav-ico) center / contain no-repeat;
  }
  body.menu-on .links > a[data-nav="home"],
  body.menu-on .nav-item > a[data-nav="home"] {
    --nav-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M4 10.5L12 4l8 6.5V20h-6v-6H10v6H4z'/%3E%3C/svg%3E");
  }
  body.menu-on .nav-item > a[data-nav="about"] {
    --nav-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M4 20V8l8-4 8 4v12H4z'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E");
  }
  body.menu-on .links > a[data-nav="initiatives"] {
    --nav-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M5 20c4-8 8-10 14-12-1 6-3 10-8 12'/%3E%3Cpath d='M9 14c2-2 4-3 8-4'/%3E%3C/svg%3E");
  }
  body.menu-on .nav-item > a[data-nav="gov"] {
    --nav-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v6c0 5-3.4 8.4-8 10-4.6-1.6-8-5-8-10V6l8-3z'/%3E%3C/svg%3E");
  }
  body.menu-on .nav-item > a[data-nav="media"] {
    --nav-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 15l5-5 3 3 3-4 7 6'/%3E%3C/svg%3E");
  }
  body.menu-on .links > a.is-current {
    background: #f8f8f8;
    box-shadow: inset -3px 0 0 #163a39;
  }
  body.menu-on .nav-item > a::after {
    width: 14px;
    height: 14px;
    margin-inline-start: auto;
    border: 0;
    opacity: 0.55;
    background: #51696e;
    transform: none;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  body.menu-on .nav-item.is-open > a::after {
    transform: none;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  body.menu-on .nav-drop {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    inset: auto;
    display: none;
    width: 100%;
    min-width: 0;
    max-height: none;
    overflow: visible;
    z-index: auto;
    margin: 4px 0 8px;
    padding: 8px 6px;
    background: #f7f5f2;
    box-shadow: none;
    border-radius: 16px;
  }
  body.menu-on .nav-drop::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    inset-inline-start: 17px;
    width: 1.5px;
    background: #d4d4d2;
  }
  body.menu-on .nav-item.is-open .nav-drop { display: block; }
  body.menu-on .nav-drop a {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px 10px 10px;
    padding-inline-start: 30px;
    color: #5f6f6f;
    border-radius: 8px;
    opacity: 1;
  }
  body.menu-on .nav-drop a::before {
    content: "";
    position: absolute;
    top: 50%;
    inset-inline-start: 13px;
    width: 8px;
    height: 8px;
    border: 1.5px solid #c4c8c8;
    border-radius: 50%;
    background: #f7f5f2;
    transform: translateY(-50%);
  }
  body.menu-on .nav-drop a.is-on {
    color: #163a39;
    font-weight: 700;
  }
  body.menu-on .nav-drop a.is-on::before {
    background: #163a39;
    border-color: #163a39;
  }
  body.menu-on .nav-drop a:hover { background: transparent; }
  body.menu-on .menu-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
  }
  body.menu-on .menu-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 13px 16px;
    border-radius: 999px;
  }
  body.menu-on .menu-cta a::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: var(--cta-ico) center / contain no-repeat;
    mask: var(--cta-ico) center / contain no-repeat;
  }
  body.menu-on .menu-cta .pill.dark {
    background: #163a39;
    color: #fcfbf8;
    --cta-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'%3E%3Cpath d='M22 2L11 13'/%3E%3Cpath d='M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E");
  }
  body.menu-on .menu-cta .ghost.outline {
    box-shadow: inset 0 0 0 1.4px #c4a070;
    color: #163a39;
    background: #fcfbf8;
    --cta-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h4a2 2 0 012 2v14a2 2 0 01-2 2h-4'/%3E%3Cpath d='M10 17l5-5-5-5'/%3E%3Cpath d='M15 12H3'/%3E%3C/svg%3E");
  }
  .tabs, .products, .footer-grid, .diagram { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .outcome + .outcome { border-inline-start: none; }
  .outcome:nth-child(even) { border-inline-start: 1px solid rgba(23, 40, 40, 0.12); }
  .trust-cards { grid-template-columns: 1fr 1fr; }
  .tabs { grid-template-columns: 1fr 1fr; }
  .diagram {
    padding: 24px 16px;
    gap: 16px;
  }
  .diagram-flow { grid-template-columns: 1fr; min-height: 0; }
  .join-in { display: none; }
  .join-out { width: 2px; height: 22px; margin: 6px auto; background: rgba(26,24,20,0.2); }
  .join-out path { display: none; }
  .hero h1 { max-width: none; }
  .hero {
    position: relative;
    inset: auto;
    height: auto;
    min-height: 100dvh;
    z-index: 1;
  }
  .hero-space { display: none; }
  .tabs {
    transform: none !important;
    opacity: 1 !important;
  }
  .products {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .product,
  .product.is-on {
    flex: none;
    max-width: none;
    position: sticky;
    top: 88px;
    background: #fff;
  }
  .product-frame { padding: 20px; min-height: 240px; }
  .product.is-on .product-body { flex-direction: column; align-items: stretch; }
  .product-explore {
    position: static;
    align-self: flex-end;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .product:nth-child(1) { z-index: 1; }
  .product:nth-child(2) { z-index: 2; }
  .product:nth-child(3) { z-index: 3; }
  .quotes-section { width: 100%; }
  .quote-stage {
    --peek: 48px;
    height: 360px;
    width: 100%;
  }
  .quote-card-inner { padding: 24px 24px 52px; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 20px 20px; }
  .hero h1 {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.22;
  }
  .hero .lead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  .hero-ctas .pill {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    width: 100%;
    gap: 10px;
  }
  .tab {
    flex: none;
    min-height: 108px;
    padding: 16px;
  }
  .tab b { font-size: 15px; margin-top: 12px; }
  .swatch { width: 32px; height: 32px; font-size: 11px; }
  .section, .cta { width: calc(100% - 28px); }
  #how.section { width: 100%; }
  .trust-cards { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .tabs {
    transform: none !important;
    opacity: 1 !important;
  }
  .page-over { transform: none !important; }
  .logo-track { animation: none; }
  .product,
  .product-visual,
  .product-sheet,
  .product-explore { transition: none !important; }
  .product-sheet,
  .product-explore { opacity: 1; transform: none; pointer-events: auto; }
  .product-frame,
  .product-inset { transition: none !important; }
  .board-card { transition: none !important; transform: none !important; }
  .quote-card { transition: none !important; }
  .quote-track { transition: none !important; }
  .diagram .chip,
  .diagram .ask,
  .diagram .out {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .join-in path, .join-out path { stroke-dashoffset: 0 !important; }
  .join-in path.current, .join-out path.current { animation: none !important; opacity: 0 !important; }
}

body.inner {
  background: var(--paper);
}
body.inner .footer { margin-top: 0; }
body.inner .nav {
  width: calc(100% - 240px);
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--ink);
  padding-block: 13px;
}
body.inner .nav .brand-logo-dark { display: block; }
body.inner .nav .ghost {
  background: transparent;
  color: var(--ink);
}
body.inner .nav.is-light {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(212, 172, 113, 0.35);
  box-shadow: 0 8px 28px rgba(23, 40, 40, 0.12);
}
body.inner .nav.is-hero {
  background: transparent;
  color: #fff;
  border: 0;
  box-shadow: none;
}
body.inner .nav.is-hero .brand-logo-light { display: block; }
body.inner .nav.is-hero .brand-logo-dark { display: none; }
body.inner .nav.is-hero .ghost {
  background: transparent;
  color: #fff;
}
body.inner .inner-main {
  padding-top: 16px;
}
.page-hero {
  position: relative;
  background: #172828;
  padding-top: 120px;
  padding-bottom: 0;
}
.page-hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 0 16px;
}
.page-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.page-hero-copy .eyebrow i { background: #d4ac71; }
.page-hero-copy h1 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 400;
  line-height: 1.2;
}
.page-hero-sub {
  margin: 0 0 12px;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}
.page-hero-rule {
  display: block;
  width: 52px;
  height: 3px;
  background: #d4ac71;
}
.page-hero-ring {
  position: absolute;
  inset-inline-end: max(24px, calc((100% - 1180px) / 2));
  bottom: 6px;
  width: 160px;
  height: 72px;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-ring-full {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 18px auto 0;
}
.page-hero-ring-full i {
  position: absolute;
  border: 1.5px solid #d4ac71;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-ring-full i:nth-child(1) { inset: -8px; }
.page-hero-ring-full i:nth-child(2) { inset: -16px; opacity: 0.65; }
.page-hero-ring-full i:nth-child(3) { inset: -24px; opacity: 0.35; }
.page-hero-lines {
  display: flex;
  flex-direction: column;
  height: 6px;
}
.page-hero-lines span {
  flex: 1;
  background: #d4ac71;
}
.page-hero-lines span:last-child {
  background: #224d4d;
}
.inner-main {
  padding: 120px 0 64px;
}
.inner-main .section {
  padding-top: 24px;
}
.page-kicker { margin-bottom: 8px; }
.prose {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
}
.prose p { margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }
.policy {
  max-width: none;
  margin-top: 0;
  padding: 28px 32px 32px;
  border: 1px solid #ece6dd;
  border-radius: 18px;
  background: #fcfaf7;
  color: #172828;
  font-size: 17px;
  line-height: 1.85;
  text-align: start;
}
.policy h3 {
  margin: 28px 0 10px;
  color: #172828;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.policy h3:first-of-type { margin-top: 22px; }
.policy p { margin: 0 0 14px; }
.policy [id] { scroll-margin-top: 96px; }
.policy-wrap {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.gov-body { min-width: 0; }
.policy-toc {
  position: sticky;
  top: 96px;
  padding: 20px 18px 18px;
  border-radius: 18px;
  background: #fcfaf7;
}
.policy-toc-title {
  margin: 0 0 14px;
  color: #224d4d;
  font-size: 16px;
  font-weight: 700;
}
.policy-toc nav {
  display: flex;
  flex-direction: column;
  padding-inline-end: 18px;
  border-inline-end: 1px solid #eadfce;
}
.policy-toc a {
  position: relative;
  padding: 7px 0;
  color: #6a716d;
  font-size: 14px;
  line-height: 1.45;
}
.policy-toc a::after {
  content: "";
  position: absolute;
  inset-inline-end: -24px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -6px;
  border: 1.5px solid #dccbb3;
  border-radius: 50%;
  background: #fcfaf7;
}
.policy-toc a.is-on {
  color: #172828;
  font-weight: 600;
}
.policy-toc a.is-on::after {
  background: #d4ac71;
  border-color: #d4ac71;
}
@media (max-width: 980px) {
  .policy-wrap { grid-template-columns: 1fr; }
  .policy-toc { position: static; }
}
.sub-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 28px;
}
.sub-links a {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 4px 0 8px;
  font-size: 15px;
  color: var(--muted);
  background: none;
}
.sub-links a.is-on {
  background: none;
  color: var(--ink);
  border-color: var(--gold);
}
.page-band {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: #172828;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 28px;
}
.page-band-copy {
  position: relative;
  z-index: 1;
  padding: 28px 36px;
}
.page-band-copy .eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}
.page-band-copy .eyebrow i { background: #d4ac71; }
.page-band-copy h2 {
  margin: 0;
  color: #fff;
}
.page-band-arcs {
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
  width: 140px;
  height: 140px;
  pointer-events: none;
}
.vmv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.vmv article,
.goal-card,
.person-card,
.doc-card,
.media-card,
.swatch-card {
  background: #f8f8f6;
  border: 1px solid rgba(23, 40, 40, 0.08);
  border-radius: 16px;
  padding: 24px;
}
a.media-card { display: block; color: inherit; }
a.media-card:hover { border-color: var(--gold); }
.vmv h3,
.goal-card h3,
.person-card h3,
.doc-card h3,
.media-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.vmv p,
.goal-card p,
.person-card p,
.doc-card p,
.media-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.goal-grid,
.people-grid,
.doc-grid,
.media-grid,
.palette {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.goal-grid { grid-template-columns: 1fr 1fr; }
.vmv article.goal-card,
.goal-card {
  position: relative;
  overflow: hidden;
  background: #fdfbf7 url("../images/brand/card-bg.png") no-repeat center;
  background-size: 118% 118%;
  border: 0;
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: none;
}
.goal-card h3 {
  margin: 0;
  color: #172828;
  text-align: start;
}
.goal-card h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px 0 0;
  background: var(--gold);
  border-radius: 99px;
}
.goal-card p {
  margin: 18px 0 0;
  color: #172828;
  line-height: 1.8;
}
.people-grid { grid-template-columns: repeat(3, 1fr); }
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
}
.news-card {
  background: #fff;
  border: 1px solid rgba(26, 24, 20, 0.1);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.news-card-photo {
  background: #152222;
}
.photo-album {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.photo-card {
  margin: 0;
  overflow: hidden;
  background: #fcfaf7;
  border: 1px solid #ece6dd;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(23, 40, 40, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.photo-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  pointer-events: none;
}
body.is-lb { overflow: hidden; }
.photo-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  align-items: center;
  justify-content: center;
  padding: 72px 88px 80px;
  background: rgba(23, 40, 40, 0.88);
}
.photo-lightbox.is-on { display: flex; }
.photo-lb-img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}
.photo-lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #172828;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(23, 40, 40, 0.28);
}
.photo-lb-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.photo-lb-close {
  top: 24px;
  inset-inline-end: 24px;
}
.photo-lb-prev {
  inset-inline-start: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.photo-lb-next {
  inset-inline-end: 24px;
  top: 50%;
  transform: translateY(-50%);
}
[dir="rtl"] .photo-lb-prev svg,
[dir="rtl"] .photo-lb-next svg { transform: scaleX(-1); }
.photo-lb-count {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: #f4eee5;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.org-head {
  margin-top: 28px;
  text-align: start;
}
.org-head h2 {
  margin: 0;
  color: #224d4d;
  font-size: 28px;
  font-weight: 700;
}
.org-head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 10px 0 0;
  background: var(--gold);
  border-radius: 99px;
}
.org-head p {
  margin: 12px 0 0;
  color: #224d4d;
  font-size: 16px;
}
.org-tree,
.org-tree ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.org-tree {
  direction: ltr;
  margin-top: 36px;
}
.org-tree ul {
  position: relative;
  padding-top: 28px;
}
.org-tree ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 28px;
  border-inline-start: 2px solid var(--gold);
}
.org-tree li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 28px 10px 0;
}
.org-tree > li { padding-top: 0; }
.org-tree li::before,
.org-tree li::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 28px;
  border-top: 2px solid var(--gold);
}
.org-tree li::before { right: 50%; }
.org-tree li::after {
  left: 50%;
  border-left: 2px solid var(--gold);
}
.org-tree li:only-child::before,
.org-tree li:only-child::after { display: none; }
.org-tree > li::before,
.org-tree > li::after { display: none; }
.org-tree li:first-child::before,
.org-tree li:last-child::after { border: 0 none; }
.org-tree li:last-child::before {
  border-right: 2px solid var(--gold);
  border-top-right-radius: 10px;
}
.org-tree li:first-child::after {
  border-top-left-radius: 10px;
}
.org-card {
  position: relative;
  z-index: 1;
  width: 248px;
  margin: 0;
  padding: 18px 14px 16px;
  text-align: center;
  background: #fff;
  border: 1px solid #ece6dd;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(23, 40, 40, 0.08);
  direction: rtl;
}
.org-tree li > .org-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 3px #fff;
}
.org-tree > li > .org-card::before { display: none; }
.org-tree li:has(> ul) > .org-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, 50%);
  box-shadow: 0 0 0 3px #fff;
}
.org-card.is-lead {
  width: 260px;
  padding: 0;
  overflow: visible;
}
.org-card-top {
  padding: 16px 14px 14px;
  background: #224d4d;
  color: #fff;
  border-radius: 16px 16px 0 0;
}
.org-card strong {
  display: block;
  color: #224d4d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.org-card.is-lead strong { color: #fff; }
.org-name {
  margin: 8px 0 0;
  padding-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.5;
}
.org-card:not(.is-lead) .org-name {
  margin-bottom: 10px;
  border-bottom: 1px solid #ece6dd;
}
.org-card-body {
  padding: 12px 12px 16px;
}
.org-card.is-lead .org-name {
  margin: 0 0 10px;
  padding-bottom: 0;
  border-bottom: 0;
}
.org-mail,
.org-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  color: #224d4d;
  font-size: 11px;
  line-height: 1.3;
  direction: ltr;
  unicode-bidi: isolate;
  word-break: break-all;
}
.org-mail::before,
.org-tel::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  background: var(--gold);
}
.org-mail::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 7 9-7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 7 9-7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.org-tel::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 3.5l3 3-1.8 1.8a12 12 0 006.9 6.9L16.4 13.4l3 3-1.2 1.2c-.8.8-2.1 1.1-3.3.6A18 18 0 014.7 7.9c-.5-1.2-.2-2.5.6-3.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 3.5l3 3-1.8 1.8a12 12 0 006.9 6.9L16.4 13.4l3 3-1.2 1.2c-.8.8-2.1 1.1-3.3.6A18 18 0 014.7 7.9c-.5-1.2-.2-2.5.6-3.3z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.org-photo {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 50%;
  background: #172828;
  border: 2px solid #ece6dd;
  cursor: pointer;
}
.org-card.is-lead .org-photo {
  border-color: var(--gold);
}
.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.video-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #fcfaf7;
  border: 1px solid #ece6dd;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(23, 40, 40, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.video-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.video-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(23, 40, 40, 0.22);
  pointer-events: none;
}
.video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #172828;
  transform: translate(-50%, -50%);
}
.news-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.news-pager button {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(23, 40, 40, 0.12);
  border-radius: 10px;
  background: #fff;
  color: #172828;
  cursor: pointer;
}
.news-pager button.is-on {
  background: #172828;
  color: #fff;
  border-color: #172828;
}
.news-pager button:disabled {
  opacity: 0.4;
  cursor: default;
}
.board-stage {
  margin-top: 28px;
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.board-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #f7f3ea;
  box-shadow: 0 12px 32px rgba(23, 40, 40, 0.1);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s ease;
}
.board-card.is-on {
  transform: scale(1.04);
  z-index: 3;
  box-shadow: 0 18px 40px rgba(23, 40, 40, 0.18);
}
.board-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #0d2a22;
}
.board-frame {
  display: block;
  width: 100%;
  height: 148%;
  object-fit: cover;
  object-position: top center;
}
.board-photo {
  position: absolute;
  left: 50%;
  top: 30%;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
  background: transparent;
}
.board-face,
img.board-face {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  background: transparent;
}
.board-card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 22px;
  background: #f7f3ea;
}
.board-honor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e8f3ef;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
}
.board-honor i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.board-name {
  display: block;
  margin: 0 0 10px;
  color: #172828;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
.board-line {
  display: block;
  width: 46px;
  height: 3px;
  margin: 0 0 16px;
  background: var(--gold);
  border-radius: 99px;
}
.board-role {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.board-role svg { width: 18px; height: 18px; flex: 0 0 auto; }
.board-role-rule {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.55);
  flex: 0 0 auto;
}
.board-sep {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 0 16px;
  background: rgba(23, 40, 40, 0.1);
}
.board-file {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  cursor: default;
}
.board-file svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  box-sizing: content-box;
  border: 1px solid rgba(23, 40, 40, 0.16);
  border-radius: 50%;
  background: #fff;
}
.board-file em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
}
.board-file:disabled { opacity: 0.72; }
.doc-grid,
.media-grid { grid-template-columns: repeat(3, 1fr); }
.file-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.file-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 95px;
  height: 102px;
  padding: 18px 20px;
  border: 1px solid #ece6dd;
  border-radius: 18px;
  background: #fcfaf7;
  box-shadow: 0 1px 2px rgba(23, 40, 40, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.file-card:hover {
  border-color: #d4ac71;
  transform: translateY(-2px);
}
.file-card-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 40px;
  color: #224d4d;
}
.file-card-icon svg { width: 100%; height: 100%; display: block; }
.file-card-copy {
  flex: 1;
  min-width: 0;
}
.file-card-copy strong {
  display: block;
  color: #172828;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.file-card-copy span {
  display: block;
  margin-top: 6px;
  color: #8a8f8c;
  font-size: 12px;
}
.file-card-dl {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8d5b5;
  color: #172828;
}
.file-card-dl svg { width: 15px; height: 15px; }
.permit-doc {
  margin: 28px 0 0;
  padding: 0;
}
.permit-doc img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #ece6dd;
  border-radius: 18px;
  background: #fcfaf7;
}
.goal-card ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  color: #172828;
  line-height: 1.9;
}
.goal-card li {
  position: relative;
  margin-bottom: 10px;
  padding-inline-start: 18px;
}
.goal-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.person-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 16px;
}
.palette { grid-template-columns: repeat(4, 1fr); }
.swatch-chip {
  height: 88px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(23, 40, 40, 0.08);
}
.swatch-card code {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.brand-row figure {
  margin: 0;
  flex: 1 1 240px;
  background: #f8f8f6;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.brand-row img { height: 48px; width: auto; }
.brand-row figcaption { margin-top: 12px; color: var(--muted); font-size: 14px; }
.contact-page { padding-top: 36px; }
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px 56px;
  align-items: start;
}
.contact-lead {
  margin: 0 0 28px;
  max-width: 36ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.contact-cards {
  display: grid;
  gap: 12px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 40, 40, 0.12);
  border-radius: 14px;
  background: #fff;
  color: inherit;
}
a.contact-card:hover { border-color: var(--gold); }
.contact-card-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f4eee5;
  color: var(--teal);
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
}
.contact-card small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.contact-form {
  display: grid;
  gap: 16px;
  background: #f4eee5;
  border: 1px solid rgba(212, 172, 113, 0.22);
  border-radius: 20px;
  padding: 32px 28px;
}
.contact-form h2 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  color: var(--deep);
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-field { display: grid; gap: 8px; }
.contact-field span {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 40, 40, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--deep);
  font: inherit;
  outline: none;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.contact-agree input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex: 0 0 auto;
}
.contact-submit {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 13px 18px;
}
.contact-prefer {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.contact-prefer a {
  color: var(--teal);
  text-decoration: underline;
}
.contact-ok {
  margin: 0;
  font-size: 14px;
  color: var(--teal);
}
.note {
  margin-top: 20px;
  padding: 16px 18px;
  background: #f8f8f6;
  border-radius: 12px;
  color: var(--muted);
}
@media (max-width: 980px) {
  body.inner .nav { width: calc(100% - 96px); }
  .page-hero-inner {
    padding: 8px 0 16px;
  }
  .page-hero-ring { width: 140px; height: 64px; }
  .page-hero-ring-full { width: 110px; height: 110px; margin-top: 14px; }
  .vmv,
  .goal-grid,
  .people-grid,
  .doc-grid,
  .file-grid,
  .media-grid,
  .palette,
  .contact-split,
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-split { gap: 28px; }
  .news-cards,
  .photo-album,
  .video-gallery { grid-template-columns: 1fr; }
  .org-tree,
  .org-tree ul {
    flex-direction: column;
    align-items: center;
  }
  .org-tree ul { padding-top: 16px; }
  .org-tree li { padding: 16px 0 0; }
  .org-tree li::before,
  .org-tree li::after,
  .org-tree ul::before { display: none; }
  .org-tree li > .org-card::before,
  .org-tree li:has(> ul) > .org-card::after { display: none; }
  .org-tree ul::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 16px;
    border-inline-start: 2px solid var(--gold);
  }
  .board-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .board-card,
  .board-card.is-on {
    position: sticky;
    top: 88px;
    transform: none;
    z-index: auto;
    box-shadow: 0 12px 32px rgba(23, 40, 40, 0.1);
  }
  .board-card:nth-child(1) { z-index: 1; }
  .board-card:nth-child(2) { z-index: 2; }
  .board-card:nth-child(3) { z-index: 3; }
  .board-card:nth-child(4) { z-index: 4; }
  .board-card:nth-child(5) { z-index: 5; }
  .board-card:nth-child(6) { z-index: 6; }
}
@media (max-width: 640px) {
  .inner-main { padding: 12px 0 48px; }
  .page-hero { padding-top: 108px; }
  .page-hero-ring { width: 120px; height: 56px; inset-inline-end: 16px; }
  .page-hero-ring-full { width: 96px; height: 96px; margin-top: 12px; }
  .page-band-copy { padding: 22px 24px; }
  .page-band-arcs { width: 100px; height: 100px; }
  .contact-form { padding: 24px 18px; }
  .contact-lead { font-size: 16px; }
  .photo-lightbox { padding: 64px 18px 72px; }
  .photo-lb-btn { width: 40px; height: 40px; }
  .photo-lb-close { top: 16px; inset-inline-end: 16px; }
  .photo-lb-prev { inset-inline-start: 12px; }
  .photo-lb-next { inset-inline-end: 12px; }
}

body.login-page {
  min-height: 100dvh;
  overflow-x: hidden;
  background: #fff;
}
.login-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
}
.login-form-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100dvh;
  padding: 40px 8% 28px;
  background: #fff;
}
.login-brand {
  display: block;
  margin: 0 auto 28px;
  width: fit-content;
}
.login-brand img {
  height: 48px;
  width: auto;
  display: block;
}
.login-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-form-col h1 {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: var(--deep);
}
.login-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 28px 24px 24px;
  border: 1px solid rgba(23, 40, 40, 0.12);
  border-radius: 16px;
  background: #fff;
}
.login-field {
  position: relative;
  display: block;
  margin-bottom: 18px;
}
.login-field span {
  position: absolute;
  top: -8px;
  inset-inline-start: 14px;
  background: #fff;
  padding: 0 6px;
  font-size: 12px;
  color: var(--teal);
}
.login-field input {
  width: 100%;
  border: 1px solid rgba(23, 40, 40, 0.18);
  border-radius: 10px;
  padding: 14px 14px;
  background: #fff;
  color: var(--deep);
  outline: none;
}
.login-field input:focus {
  border-color: var(--gold);
}
.login-forgot {
  display: block;
  margin: -4px 0 18px;
  text-align: start;
  font-size: 13px;
  color: var(--teal);
}
.login-submit {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
}
.login-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--teal);
}
.login-alt {
  margin: 22px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.login-alt a { color: var(--deep); text-decoration: underline; }
.login-legal {
  margin-top: auto;
  padding-top: 32px;
  text-align: center;
  font-size: 12px;
  color: rgba(23, 40, 40, 0.55);
}
.login-legal a { color: inherit; }
.login-visual {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 48px;
}
.login-visual-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.login-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 40, 40, 0.25) 0%, rgba(23, 40, 40, 0.78) 100%);
}
.login-visual-copy {
  position: relative;
  z-index: 1;
  max-width: 420px;
}
.login-visual-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}
.login-visual-copy .eyebrow i { background: var(--gold); }
.login-visual-copy h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.25;
}
.login-visual-copy p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
@media (max-width: 860px) {
  .login-split { grid-template-columns: 1fr; }
  .login-form-col {
    min-height: auto;
    padding: 36px 22px 28px;
  }
  .login-legal { padding-top: 24px; }
  .login-visual {
    min-height: 280px;
    padding: 28px 22px;
  }
}
