:root {
  --navy: #062b5b;
  --navy-2: #0a3c78;
  --blue: #0f6cb7;
  --cyan: #2d9db8;
  --rose: #c54183;
  --gold: #dfa72b;
  --ink: #14233a;
  --muted: #607087;
  --line: #dbe4ee;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --shadow: 0 24px 65px rgba(15, 35, 64, .18);
  --serif: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", "Trebuchet MS", sans-serif;
  --sans: Aptos, "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(85, 145, 207, .12), transparent 28rem),
    linear-gradient(180deg, #edf1f6, #f6f8fb 32rem, #edf1f6);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

.page-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.98) 0 9rem, rgba(239,249,255,.92) 22rem, transparent 42rem),
    linear-gradient(145deg, #edf8ff, #bfeaff 48%, #f8fcff);
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}
.page-loader::before,
.page-loader::after {
  content: "";
  position: absolute;
  width: 34rem;
  height: 13rem;
  border-radius: 50%;
  background: rgba(255,255,255,.44);
  filter: blur(28px);
  animation: loader-cloud-drift 5s ease-in-out infinite alternate;
}
.page-loader::before { top: 8%; left: -7rem; }
.page-loader::after { right: -8rem; bottom: 9%; animation-delay: -2.5s; }
.page-loader.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader[hidden] { display: none; }
.page-loader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(76vw, 270px);
  padding: 26px 30px 22px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 28px;
  background: rgba(255,255,255,.58);
  box-shadow: 0 24px 70px rgba(5,54,101,.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.page-loader-inner img {
  width: 142px;
  height: auto;
  animation: loader-logo-breathe 1.45s ease-in-out infinite;
}
.page-loader-inner p {
  margin: 12px 0 0;
  color: #173d66;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .02em;
}
.page-loader-line {
  position: relative;
  width: 150px;
  height: 4px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(5,54,101,.12);
}
.page-loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #f5a11a, #8cc63f, #00a859, #0875b9, #ed1c24);
  transform: translateX(-100%);
  animation: loader-line 1.25s cubic-bezier(.55,.08,.35,.96) infinite;
}

.back-to-top {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 17px 0 14px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  color: #fff;
  background: rgba(6,43,91,.76);
  box-shadow: 0 10px 28px rgba(5,35,74,.24);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font: 750 14px/1 var(--sans);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}
.back-to-top svg { width: 19px; height: 19px; }
.back-to-top.is-visible { opacity: .86; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { opacity: 1; background: rgba(6,43,91,.94); box-shadow: 0 14px 32px rgba(5,35,74,.3); transform: translateY(-3px); }
.back-to-top:focus-visible { outline: 3px solid rgba(45,157,184,.46); outline-offset: 3px; }

@keyframes loader-logo-breathe {
  0%, 100% { transform: scale(.96); filter: drop-shadow(0 7px 12px rgba(6,43,91,.08)); }
  50% { transform: scale(1.045); filter: drop-shadow(0 12px 20px rgba(6,43,91,.16)); }
}
@keyframes loader-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}
@keyframes loader-cloud-drift {
  from { transform: translate3d(-2%,0,0) scale(.96); }
  to { transform: translate3d(8%,2%,0) scale(1.05); }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; transform: translateY(-150%); padding: 9px 14px; border-radius: 6px; color: #fff; background: var(--navy); }
.skip-link:focus { transform: none; }
.site-frame { position: relative; isolation: isolate; width: min(1240px, calc(100% - 48px)); margin: 34px auto 50px; overflow: hidden; border: 1px solid rgba(177, 191, 208, .9); border-radius: 3px; background: var(--paper); box-shadow: var(--shadow); }

/* Header + moving cloud layer */
.site-header { position: absolute; z-index: 50; top: 0; right: 0; left: 0; min-height: 106px; overflow: visible; border-bottom: 1px solid rgba(255,255,255,.46); background: linear-gradient(180deg, rgba(246,251,255,.86) 0%, rgba(243,249,255,.66) 64%, rgba(243,249,255,.08) 100%); -webkit-backdrop-filter: blur(4px) saturate(112%); backdrop-filter: blur(4px) saturate(112%); }
.site-header::after { content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none; background: linear-gradient(110deg, rgba(255,255,255,.25), transparent 38%, rgba(194,225,245,.15) 72%, transparent); }
.clouds { position: absolute; z-index: 1; top: 0; right: 0; left: 0; height: 330px; overflow: visible; opacity: .46; pointer-events: none; -webkit-mask-image: linear-gradient(#000 0%, #000 44%, rgba(0,0,0,.65) 70%, transparent 100%); mask-image: linear-gradient(#000 0%, #000 44%, rgba(0,0,0,.65) 70%, transparent 100%); }
.cloud { position: absolute; width: 190px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.86); filter: blur(3px); box-shadow: 45px -18px 0 7px rgba(255,255,255,.84), 95px 0 0 2px rgba(255,255,255,.8), 132px -13px 0 10px rgba(255,255,255,.76); will-change: transform; }
.cloud::before, .cloud::after { content: ""; position: absolute; border-radius: 50%; background: inherit; }
.cloud::before { width: 76px; height: 76px; left: 28px; top: -35px; }
.cloud::after { width: 92px; height: 92px; left: 88px; top: -45px; }
.cloud-a { left: -110px; top: 40px; transform: scale(.72); animation: cloud-drift-a 42s linear infinite; }
.cloud-b { left: 28%; top: 132px; transform: scale(.48); opacity: .74; animation: cloud-drift-b 56s linear infinite; }
.cloud-c { right: 10%; top: 185px; transform: scale(.78); opacity: .57; animation: cloud-drift-c 48s ease-in-out infinite alternate; }
.cloud-d { right: -75px; top: 76px; transform: scale(.5); opacity: .66; animation: cloud-drift-d 36s ease-in-out infinite alternate; }
@keyframes cloud-drift-a { from { translate: -60px 0; } to { translate: 1390px -12px; } }
@keyframes cloud-drift-b { from { translate: -40px 0; } to { translate: 790px 10px; } }
@keyframes cloud-drift-c { from { translate: 10px 0; } to { translate: -210px -9px; } }
@keyframes cloud-drift-d { from { translate: 0; } to { translate: -150px 14px; } }

.header-inner { position: relative; z-index: 3; display: flex; align-items: center; gap: 25px; min-height: 106px; padding: 0 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; }
.brand-mark { position: relative; display: block; width: 48px; height: 43px; transform: rotate(-4deg); }
.petal, .seed { position: absolute; display: block; border-radius: 100% 10% 100% 20%; transform-origin: 100% 100%; }
.petal { width: 20px; height: 10px; right: 22px; bottom: 20px; }
.p1 { background: #39a94a; transform: rotate(4deg) translateX(-3px); }
.p2 { background: #8ac329; transform: rotate(62deg) translateX(-2px); }
.p3 { background: #efb721; transform: rotate(123deg) translateX(-1px); }
.p4 { background: #ef6d23; transform: rotate(184deg) translateX(-1px); }
.p5 { background: #0e81bd; transform: rotate(247deg) translateX(-2px); }
.seed { width: 12px; height: 12px; right: 15px; bottom: 12px; border-radius: 50%; background: var(--navy); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 21px; letter-spacing: -.02em; }
.brand-copy small { max-width: 165px; margin-top: 5px; color: #4f6680; font-size: 9px; font-weight: 700; letter-spacing: .01em; }

.desktop-nav { flex: 1 1 auto; height: 92px; }
.desktop-nav > ul { display: flex; align-items: center; justify-content: flex-end; gap: 0; height: 100%; margin: 0; padding: 0; list-style: none; }
.nav-item { position: relative; display: flex; align-items: center; height: 100%; }
.nav-label { position: relative; display: inline-flex; align-items: center; gap: 4px; padding: 10px 12px; color: #17283f; font-size: 11px; font-weight: 800; letter-spacing: .02em; text-decoration: none; text-transform: uppercase; white-space: nowrap; cursor: pointer; }
.nav-label svg { width: 13px; height: 13px; transition: transform .25s ease; }
.nav-label::after { content: ""; position: absolute; right: 12px; bottom: 3px; left: 12px; height: 2px; border-radius: 2px; background: var(--blue); transform: scaleX(0); transition: transform .24s ease; transform-origin: left; }
.nav-label.is-active { color: var(--blue); }
.nav-label.is-active::after, .nav-item:hover .nav-label::after, .nav-item:focus-within .nav-label::after { transform: scaleX(1); }
.nav-item:hover .nav-label svg, .nav-item:focus-within .nav-label svg { transform: rotate(180deg); }

.login-button { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 7px; padding: 12px 14px; border-radius: 6px; color: #fff; background: linear-gradient(135deg, #0b3972, #061e43); box-shadow: 0 8px 18px rgba(6, 43, 91, .2); font-size: 11px; font-weight: 800; white-space: nowrap; }
.login-button svg { width: 17px; height: 17px; }
.mega-panel { position: absolute; z-index: 80; top: calc(100% - 11px); visibility: hidden; opacity: 0; transform: translateY(10px); padding: 22px; border: 1px solid #d8e2ed; border-radius: 11px; color: #263a54; background: rgba(255,255,255,.98); box-shadow: 0 22px 55px rgba(11, 39, 74, .22); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.mega-panel::before { content: ""; position: absolute; top: -10px; left: 44%; width: 18px; height: 18px; border-top: 1px solid #d8e2ed; border-left: 1px solid #d8e2ed; background: #fff; transform: rotate(45deg); }
.has-panel:hover .mega-panel, .has-panel:focus-within .mega-panel { visibility: visible; opacity: 1; transform: translateY(0); }
.mega-panel div, .mega-panel.compact-panel { display: grid; align-content: start; gap: 8px; }
.mega-panel b { margin-bottom: 4px; color: var(--navy); font-family: var(--serif); font-size: 15px; }
.mega-panel span,
.mega-panel .cms-submenu-link {
  position: relative;
  display: block;
  margin: 0 -7px;
  padding: 6px 10px 6px 22px;
  border-radius: 7px;
  color: #54667c;
  font-size: 11px;
  line-height: 1.35;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.mega-panel span::before,
.mega-panel .cms-submenu-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6cadd6;
  transform: translateY(-50%);
  transition: background-color .18s ease, transform .18s ease;
}
.mega-panel span:hover,
.mega-panel span:focus-visible,
.mega-panel .cms-submenu-link:hover,
.mega-panel .cms-submenu-link:focus-visible {
  color: #063c72;
  background: rgba(220, 241, 255, .86);
  box-shadow: inset 3px 0 0 #1785c1, 0 5px 14px rgba(23, 91, 139, .08);
  outline: none;
  transform: translateX(3px);
}
.mega-panel span:hover::before,
.mega-panel span:focus-visible::before,
.mega-panel .cms-submenu-link:hover::before,
.mega-panel .cms-submenu-link:focus-visible::before {
  background: #087dbc;
  transform: translateY(-50%) scale(1.3);
}
.mega-corporate { left: -170px; display: grid; grid-template-columns: repeat(3, max-content); gap: 32px; }
.compact-panel { left: -60px; width: 245px; }
.mega-membership { left: -430px; display: grid; grid-template-columns: repeat(3, max-content); gap: 32px; }
.governance-panel { right: -70px; left: auto; width: 255px; }
.governance-panel::before { right: 74px; left: auto; }
.news-panel { right: -45px; left: auto; }
.mobile-nav { display: none; }

/* Hero */
.hero { position: relative; isolation: isolate; min-height: 650px; overflow: hidden; background: #d6e5f2; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -3; }
.hero-media img { object-fit: cover; object-position: 56% center; transform: scale(1.025); animation: sky-breathe 26s ease-in-out infinite alternate; will-change: transform, object-position; }
.hero-wash { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 31%, rgba(255,255,255,.46) 49%, rgba(3,24,49,.02) 72%), linear-gradient(180deg, rgba(224,243,255,.28) 0%, rgba(255,255,255,.04) 28%, rgba(0,28,64,.1) 100%); }
.hero-content { width: 52%; padding: 158px 0 78px 52px; animation: hero-in .75s cubic-bezier(.2,.75,.2,1) both; }
@keyframes hero-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes sky-breathe { from { transform: scale(1.025) translate3d(-5px, -2px, 0); } to { transform: scale(1.045) translate3d(7px, 3px, 0); } }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow { padding: 7px 10px; border: 1px solid rgba(15,108,183,.2); border-radius: 999px; background: rgba(255,255,255,.6); backdrop-filter: blur(8px); }
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: #41a750; box-shadow: 0 0 0 4px rgba(65,167,80,.12); }
.hero h1 { max-width: 610px; margin: 20px 0 15px; color: #071f46; font-family: var(--serif); font-size: clamp(42px, 4.4vw, 66px); line-height: .99; letter-spacing: -.045em; text-wrap: balance; }
.hero-lead { max-width: 560px; margin: 0 0 12px; color: #17477a; font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.35; }
.hero-text { max-width: 535px; margin: 0 0 25px; color: #4a5c72; font-size: 13px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 0 16px; border: 1px solid rgba(8,52,106,.16); border-radius: 6px; font-size: 11px; font-weight: 800; box-shadow: 0 10px 22px rgba(7,31,70,.12); }
.button svg { width: 16px; height: 16px; }
.button-primary { color: #fff; border-color: var(--navy); background: linear-gradient(135deg, #0d407c, #061f46); }
.button-projects { color: #fff; border-color: #146b3d; background: linear-gradient(135deg, #25985d, #146b3d); box-shadow: 0 10px 22px rgba(20,107,61,.2); }
.button-about { color: #fff; border-color: #623692; background: linear-gradient(135deg, #8b55c7, #623692); box-shadow: 0 10px 22px rgba(98,54,146,.2); }
.button-light { color: var(--navy); background: rgba(255,255,255,.86); backdrop-filter: blur(8px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 28px; color: #52657a; font-size: 10px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 5px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--blue); }

/* Shared sections */
.section-pad, .content-section { padding: 34px 38px; }
.gateway-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: -27px; padding-top: 0; padding-bottom: 5px; }
.gateway-card { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 13px; min-height: 147px; padding: 22px 27px 20px 20px; border: 1px solid var(--line); border-right: 0; background: rgba(255,255,255,.97); box-shadow: 0 10px 25px rgba(18,55,93,.1); color:inherit; cursor:pointer; text-decoration:none; transition: transform .28s ease, box-shadow .28s ease; }
.gateway-card:first-child { border-radius: 10px 0 0 10px; }
.gateway-card:last-child { border-right: 1px solid var(--line); border-radius: 0 10px 10px 0; }
.gateway-card:hover { z-index: 2; transform: translateY(-4px); box-shadow: 0 15px 32px rgba(18,55,93,.17); }
.gateway-card h2 { margin: 0 0 7px; color: #0b254b; font-family: var(--serif); font-size: 14px; line-height: 1.25; }
.gateway-card p { margin: 0; color: #6a798b; font-size: 9px; line-height: 1.55; }
.icon-badge { display: inline-grid; flex: 0 0 auto; place-items: center; width: 45px; height: 45px; border-radius: 50%; color: var(--navy); background: #edf4fb; }
.icon-badge svg { width: 23px; height: 23px; }
.icon-badge.blue { color: #0b4f93; background: #eaf3ff; }
.icon-badge.cyan { color: #127a91; background: #e7f8fa; }
.icon-badge.rose { color: #ad356f; background: #fcecf5; }
.icon-badge.gold { color: #9a6b06; background: #fff5d9; }
.card-arrow { position: absolute; right: 13px; bottom: 14px; width: 15px; height: 15px; color: var(--navy); }
.content-section { border-top: 1px solid #edf1f5; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 21px; }
.section-heading h2 { margin: 4px 0 0; color: #0b254b; font-family: var(--serif); font-size: 25px; line-height: 1.1; letter-spacing: -.02em; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 10px; }
.compact-heading { margin-bottom: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 5px; color: var(--navy); font-size: 9px; font-weight: 800; white-space: nowrap; }
.text-link svg { width: 14px; height: 14px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(21,55,93,.06); }
.news-image-link { display:block; color:inherit; text-decoration:none; cursor:pointer; }
.news-image-link .news-image { display:block; }
.news-body h3 a { color:inherit; text-decoration:none; }
.news-body h3 a:hover,.news-body h3 a:focus-visible { color:var(--blue); outline:none; }
.news-body .news-more-link { color:#086fbd; font-weight:800; text-decoration:none; }
.news-body .news-more-link:hover,.news-body .news-more-link:focus-visible { color:#034f8b; text-decoration:underline; outline:none; }
.news-image { position: relative; height: 136px; overflow: hidden; background-color: #e9eef4; background-size: cover; }
.photo-one { background-position: 75% 46%; filter: saturate(.72); }
.photo-two { background-position: 44% 82%; }
.photo-three { background-position: 91% 43%; filter: hue-rotate(-10deg) saturate(.72); }
.date-chip { position: absolute; top: 10px; left: 10px; display: grid; place-items: center; width: 39px; min-height: 46px; padding: 3px; border-radius: 5px; color: var(--ink); background: rgba(255,255,255,.92); box-shadow: 0 5px 12px rgba(7,31,70,.18); font-size: 8px; line-height: 1.2; }
.date-chip b { font-size: 15px; }
.news-tag { position: absolute; right: 9px; bottom: 9px; padding: 5px 8px; border-radius: 999px; color: #fff; background: rgba(3,36,75,.76); backdrop-filter: blur(5px); font-size: 8px; font-weight: 800; }
.news-body { padding: 14px 15px 15px; }
.news-body h3 { margin: 0 0 7px; color: #112a50; font-family: var(--serif); font-size: 14px; line-height: 1.25; }
.news-body p { min-height: 38px; margin: 0 0 11px; color: #6c7b8d; font-size: 9px; }
.news-body span { display: inline-flex; align-items: center; gap: 5px; color: var(--navy); font-size: 8px; font-weight: 800; }
.news-body svg { width: 13px; height: 13px; }
.soft-section { background: linear-gradient(180deg, #fbfdff, #f4f8fb); }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.reason-grid article { min-height: 150px; padding: 17px; border: 1px solid #dce6f0; border-radius: 8px; background: rgba(255,255,255,.82); }
.reason-grid .icon-badge { width: 40px; height: 40px; }
.reason-grid h3 { margin: 11px 0 6px; color: #132f56; font-family: var(--serif); font-size: 13px; }
.reason-grid p { margin: 0; color: #718093; font-size: 8px; }

.impact-section { display: grid; grid-template-columns: 1.3fr 3fr; gap: 20px; padding: 28px 38px; color: #fff; background: linear-gradient(120deg, #05234d 0%, #073873 60%, #0a548d 100%); }
.impact-intro { padding: 6px 16px 6px 0; border-right: 1px solid rgba(255,255,255,.16); }
.kicker.light { color: #a9daf1; }
.impact-intro h2 { margin: 5px 0 7px; font-family: var(--serif); font-size: 24px; line-height: 1.06; }
.impact-intro p { margin: 0; color: #b8c9dc; font-size: 9px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat-grid article { display: grid; place-items: center; padding: 7px 4px; border-right: 1px solid rgba(255,255,255,.15); text-align: center; }
.stat-grid article:last-child { border-right: 0; }
.stat-grid svg { width: 26px; height: 26px; margin-bottom: 3px; color: #a7d7f0; }
.stat-grid strong { font-family: var(--serif); font-size: 25px; line-height: 1; }
.stat-grid span { margin-top: 5px; color: #c7d8e7; font-size: 8px; }

.transparency-section { padding-bottom: 28px; }
.document-strip { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(16,49,84,.06); }
.document-strip > span, .document-strip > a { position: relative; display: flex; align-items: center; gap: 9px; min-height: 64px; padding: 12px 25px 12px 13px; border-right: 1px solid var(--line); color: #2e425b; font-size: 9px; font-weight: 800; text-decoration:none; cursor:pointer; }
.document-strip > span:last-child, .document-strip > a:last-child { border-right: 0; }
.document-strip svg { width: 22px; height: 22px; color: var(--blue); }
.document-strip i { position: absolute; right: 10px; color: var(--navy); font-style: normal; }
.process-team { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: #fafcff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.steps article { position: relative; min-height: 170px; padding: 15px 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.steps article > b { position: absolute; top: 9px; right: 9px; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; color: #fff; background: var(--navy); font-size: 8px; }
.steps .icon-badge { width: 38px; height: 38px; }
.steps h3 { margin: 10px 0 6px; font-family: var(--serif); font-size: 12px; }
.steps p { margin: 0; color: #728195; font-size: 8px; }
.team-column { position: relative; }
.team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.team-row article { text-align: center; }
.avatar { position: relative; display: grid; place-items: end center; width: 74px; height: 88px; margin: 0 auto 8px; overflow: hidden; border-radius: 35px 35px 10px 10px; color: rgba(255,255,255,.92); background: linear-gradient(160deg, #c6d8e8, #476c8d 60%, #102f55); box-shadow: inset 0 0 0 1px rgba(9,51,93,.12); font-family: var(--serif); font-size: 17px; font-weight: 800; }
.avatar::before { content: ""; position: absolute; top: 12px; width: 35px; height: 35px; border-radius: 50%; background: #ddaf91; box-shadow: 0 27px 0 14px currentColor; color: rgba(23,52,78,.9); }
.avatar { padding-bottom: 7px; z-index: 1; }
.avatar-one { background: linear-gradient(160deg, #d8e4ee, #50728c); }
.avatar-two { background: linear-gradient(160deg, #f3d7e4, #a64975); }
.avatar-three { background: linear-gradient(160deg, #d9e5d5, #50725a); }
.avatar-four { background: linear-gradient(160deg, #f5dfc3, #a6633f); }
.team-row h3 { margin: 0; font-family: var(--serif); font-size: 9px; }
.team-row p { margin: 2px 0 0; color: #758397; font-size: 7px; }
.outline-button { display: inline-flex; align-items: center; gap: 5px; margin-top: 13px; padding: 7px 12px; border: 1px solid #d2deea; border-radius: 5px; color: var(--navy); font-size: 8px; font-weight: 800; text-decoration:none; cursor:pointer; }
.outline-button svg { width: 12px; height: 12px; }

.faq-section { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; min-height: 370px; padding: 35px 38px 0; overflow: hidden; border-top: 1px solid #edf1f5; background: linear-gradient(180deg, #fff, #f8fbfd); }
.faq-list { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(19,51,88,.05); }
.faq-list details { border-bottom: 1px solid #e5ecf3; color: #2c405b; font-size: 10px; font-weight: 700; }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { display:flex; align-items:center; justify-content:space-between; min-height:44px; padding:0 15px; cursor:pointer; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list details p { margin:0; padding:0 15px 14px; color:#607087; font-size:.94em; font-weight:500; line-height:1.6; }
.faq-list details[open] summary svg { transform:rotate(180deg); }
.faq-list svg { width: 15px; height: 15px; color: var(--navy); transition:transform .2s ease; }
.conversation-art { position: relative; align-self: end; min-height: 310px; color: #1b5b93; }
.conversation-art svg { position: absolute; right: -25px; bottom: -8px; width: 112%; height: auto; overflow: visible; stroke-width: 2; }
.conversation-art .person { transform-box: fill-box; transform-origin: center bottom; }
.person-one { animation: person-talk-a 18s ease-in-out infinite; }
.person-two { animation: person-talk-b 21s ease-in-out 2s infinite; }
.person-three { animation: person-talk-a 24s ease-in-out 4s infinite reverse; }
.person-four { animation: person-talk-b 20s ease-in-out 1s infinite reverse; }
.ground-line, .plant-line { opacity: .55; }
@keyframes person-talk-a { 0%,100% { transform: translateY(0) rotate(0); } 40% { transform: translateY(-3px) rotate(.6deg); } 65% { transform: translateY(0) rotate(-.4deg); } }
@keyframes person-talk-b { 0%,100% { transform: translateY(0) rotate(0); } 30% { transform: translateY(-2px) rotate(-.7deg); } 72% { transform: translateY(1px) rotate(.5deg); } }
.dialogue { position: absolute; z-index: 2; padding: 8px 12px; border: 1px solid rgba(43,111,166,.25); border-radius: 14px 14px 14px 3px; color: #24577d; background: rgba(255,255,255,.84); box-shadow: 0 7px 18px rgba(22,74,118,.08); backdrop-filter: blur(5px); font-size: 8px; font-weight: 800; animation: dialogue-float 12s ease-in-out infinite; }
.dialogue-one { top: 21px; left: 10px; }
.dialogue-two { top: 62px; right: 17px; border-radius: 14px 14px 3px 14px; animation-delay: 4s; }
@keyframes dialogue-float { 0%,100% { opacity: .72; transform: translateY(0); } 45% { opacity: 1; transform: translateY(-4px); } }

/* Footer */
.site-footer { color: #fff; background: linear-gradient(115deg, #051f45, #07366e); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(4, 1fr); gap: 30px; padding: 32px 38px 27px; }
.brand-footer { color: #fff; }
.brand-footer .brand-copy small { color: #afc7df; }
.footer-brand > p { max-width: 260px; margin: 13px 0 0; color: #aec4da; font-size: 9px; }
.footer-grid > div:not(:first-child) { padding-left: 19px; border-left: 1px solid rgba(255,255,255,.18); }
.footer-grid h2 { margin: 0 0 9px; font-family: var(--serif); font-size: 12px; }
.footer-grid p { margin: 0 0 7px; color: #bed0e1; font-size: 8px; line-height: 1.7; }
.socials { display: flex; gap: 6px; }
.socials span { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 8px; font-weight: 800; }
.site-status { display: grid; grid-template-columns: auto 1fr; margin-top: 11px; padding: 8px; border-radius: 5px; color: var(--navy); background: #fff; }
.site-status svg { grid-row: span 2; width: 24px; height: 24px; margin-right: 8px; }
.site-status b { font-size: 7px; }
.site-status small { color: #718094; font-size: 6px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 11px 38px; border-top: 1px solid rgba(255,255,255,.15); color: #a9c0d7; font-size: 7px; }

/* Sections stay immediately paintable; the continuous motion is reserved for
   the cloud layer and the conversational figures for a calm, fast mockup. */

@media (max-width: 1100px) {
  .site-frame { width: min(100% - 24px, 1240px); margin-top: 12px; }
  .header-inner { gap: 13px; padding-inline: 19px; }
  .brand-copy small { display: none; }
  .desktop-nav { display: none; }
  .login-button { margin-left: auto; }
  .mobile-nav { position: relative; z-index: 3; display: flex; gap: 22px; overflow-x: auto; padding: 0 20px 11px; color: #2b3e56; scrollbar-width: none; font-size: 10px; font-weight: 800; text-transform: uppercase; }
  .mobile-nav::-webkit-scrollbar { display: none; }
  .mobile-nav span { white-space: nowrap; }
  .mobile-nav .is-active { color: var(--blue); }
  .hero-content { width: 62%; }
  .hero-wash { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 40%, rgba(255,255,255,.22) 70%); }
}

@media (max-width: 820px) {
  .site-frame { width: 100%; margin: 0; border: 0; box-shadow: none; }
  .clouds { height: 285px; opacity: .38; }
  .hero { min-height: 705px; }
  .hero-media img { object-position: 67% center; }
  .hero-wash { background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 54%, rgba(4,28,58,.08) 100%); }
  .hero-content { width: 100%; padding: 155px 28px 210px; }
  .hero h1 { font-size: clamp(39px, 10vw, 58px); }
  .hero-text { max-width: 560px; }
  .gateway-grid { grid-template-columns: repeat(2, 1fr); margin-top: -18px; padding: 0 20px 20px; gap: 9px; }
  .gateway-card, .gateway-card:first-child, .gateway-card:last-child { border: 1px solid var(--line); border-radius: 9px; }
  .news-grid, .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-section { grid-template-columns: 1fr; }
  .impact-intro { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 15px; }
  .document-strip { grid-template-columns: repeat(2, 1fr); }
  .document-strip > span { border-bottom: 1px solid var(--line); }
  .process-team { grid-template-columns: 1fr; }
  .faq-section { grid-template-columns: 1fr; padding-inline: 28px; }
  .conversation-art { min-height: 290px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top: 5px; }
}

@media (max-width: 560px) {
  .header-inner { min-height: 78px; }
  .site-header { min-height: 78px; }
  .brand-mark { width: 38px; transform: scale(.84) rotate(-4deg); transform-origin: left center; }
  .brand-copy strong { font-size: 17px; }
  .login-button { padding: 10px 11px; font-size: 9px; }
  .hero { min-height: 720px; }
  .hero-content { padding: 145px 20px 215px; }
  .hero h1 { margin-top: 16px; }
  .hero-lead { font-size: 17px; }
  .hero-trust { gap: 10px; }
  .gateway-grid, .news-grid, .reason-grid, .stat-grid, .steps { grid-template-columns: 1fr; }
  .gateway-card { min-height: 122px; }
  .section-pad, .content-section, .impact-section { padding-inline: 20px; }
  .section-heading { align-items: flex-start; }
  .news-image { height: 168px; }
  .stat-grid article { min-height: 110px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .document-strip, .team-row { grid-template-columns: 1fr 1fr; }
  .steps article { min-height: 145px; }
  .faq-section { padding-inline: 20px; }
  .faq-list div { font-size: 9px; }
  .conversation-art { min-height: 240px; }
  .dialogue { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-inline: 20px; gap: 24px 14px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:not(:first-child) { padding-left: 12px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-inline: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ================================================================
   Reference-fidelity layout — follows the supplied 26.08.2026 mockup
   ================================================================ */
.site-frame { max-width: 1240px; overflow: hidden; border-color: #d7dee7; border-radius: 2px; background: #fff; }
.site-header { position: relative; top: auto; right: auto; left: auto; min-height: 88px; border-bottom: 1px solid #e1e7ee; background: rgba(255,255,255,.97); -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-header::after { display: none; }
.clouds { z-index: 0; height: 88px; overflow: hidden; opacity: .08; -webkit-mask-image: none; mask-image: none; }
.cloud-a { top: 26px; }
.cloud-b { top: 4px; }
.cloud-c { top: 25px; }
.cloud-d { top: 8px; }
.header-inner { min-height: 88px; gap: 14px; padding: 0 24px; }
.brand { gap: 7px; }
.brand-logo-image { display: block; flex: 0 0 auto; width: 48px; height: 31px; object-fit: cover; mix-blend-mode: multiply; }
.brand-copy strong { font-size: 18px; letter-spacing: -.025em; }
.brand-copy small { max-width: 160px; margin-top: 3px; font-size: 7px; }
.desktop-nav { height: 88px; }
.desktop-nav .nav-item:nth-child(1) { order: 1; }
.desktop-nav .nav-item:nth-child(2) { order: 2; }
.desktop-nav .nav-item:nth-child(3) { order: 4; }
.desktop-nav .nav-item:nth-child(4) { order: 3; }
.desktop-nav .nav-item:nth-child(5) { order: 5; }
.desktop-nav .nav-item:nth-child(6) { order: 6; }
.desktop-nav .nav-item:nth-child(7) { order: 7; }
.desktop-nav .nav-item:nth-child(8) { order: 8; }
.nav-label { gap: 2px; padding: 8px 7px; font-size: 8.5px; letter-spacing: 0; }
.nav-label::after { right: 7px; bottom: 7px; left: 7px; }
.nav-label svg { width: 10px; height: 10px; }
.join-button, .login-button { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 5px; min-height: 35px; padding: 0 10px; border: 1px solid #cbd6e2; border-radius: 5px; font-size: 8px; font-weight: 800; white-space: nowrap; }
.join-button { color: #fff; border-color: var(--navy); background: var(--navy); }
.join-button svg, .login-button svg { width: 14px; height: 14px; }
.login-button { color: var(--navy); background: #fff; box-shadow: none; }
.mega-panel { top: calc(100% - 8px); }

.hero { min-height: 390px; background: #fff; }
.hero-media { right: 0; left: 31%; width: 69%; }
.hero-media img { object-fit: cover; object-position: center; transform: scale(1.01); animation-duration: 34s; }
.hero-wash { background: linear-gradient(90deg, #fff 0%, #fff 27%, rgba(255,255,255,.96) 32%, rgba(255,255,255,.38) 43%, transparent 57%); }
.hero-content { width: 34%; padding: 43px 0 86px 28px; }
.hero h1 { margin: 0 0 18px; font-size: 33px; line-height: 1.08; letter-spacing: -.035em; }
.hero h1 span { white-space: nowrap; }
.hero-lead, .eyebrow, .hero-trust { display: none; }
.hero-text { max-width: 315px; margin: 0 0 20px; color: #26384f; font-size: 10px; line-height: 1.65; }
.hero-actions { gap: 9px; }
.button { min-height: 38px; padding: 0 14px; border-radius: 5px; font-size: 9px; box-shadow: none; }
.play-icon { display: grid; place-items: center; width: 17px; height: 17px; border: 1px solid currentColor; border-radius: 50%; font-size: 7px; }

.gateway-grid { margin-top: -48px; padding: 0 22px 12px; }
.gateway-card { min-height: 146px; padding: 20px 26px 18px 17px; box-shadow: 0 7px 20px rgba(24,53,87,.08); }
.gateway-card h2 { font-size: 13px; }
.gateway-card p { font-size: 8px; }
.gateway-card .icon-badge { width: 49px; height: 49px; }
.content-section { padding: 22px 28px; }
.section-heading { margin-bottom: 14px; }
.section-heading h2 { font-size: 20px; }
.kicker { display: none; }

.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 75%; gap: 14px; }
.news-card { border-radius: 4px; box-shadow: none; }
.news-image { height: 104px; background-size: cover; background-repeat: no-repeat; filter: none; }
.photo-one { background-image: url("assets/reference-news-general.webp"); background-position: center; }
.photo-two { background-image: url("assets/reference-news-garden.webp"); background-position: center; }
.photo-three { background-image: url("assets/reference-news-training-clean.webp"); background-position: center; }
.news-tag { display: none; }
.date-chip { top: 9px; left: 9px; width: 34px; min-height: 40px; }
.news-image .date-chip { display: none; }
.date-chip b { font-size: 13px; }
.news-body { min-height: 117px; padding: 10px 11px 11px; }
.news-body h3 { min-height: 33px; margin-bottom: 5px; font-size: 12px; }
.news-body p { min-height: 35px; margin-bottom: 7px; font-size: 7.5px; }
.news-body span { font-size: 7.5px; }

.reason-impact-row { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #edf1f5; background: #fff; }
.reason-impact-row > section { min-width: 0; border-top: 0; }
.reason-impact-row .soft-section { padding: 20px 12px 20px 28px; background: #fff; }
.reason-impact-row .impact-section { display: block; padding: 20px 28px 20px 12px; color: var(--ink); background: #fff; }
.reason-impact-row .section-heading, .impact-intro { margin-bottom: 12px; padding: 0; border: 0; }
.impact-intro h2 { margin: 0; color: #0b254b; font-family: var(--serif); font-size: 20px; line-height: 1.1; }
.reason-grid, .stat-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 7px; }
.reason-grid article, .stat-grid article { min-height: 135px; padding: 12px 7px; border: 1px solid #dce4ed; border-radius: 5px; background: #fff; text-align: center; }
.reason-grid .icon-badge { width: 41px; height: 41px; margin-inline: auto; background: transparent; }
.reason-grid h3 { margin: 7px 0 5px; font-size: 10px; }
.reason-grid p { font-size: 7px; line-height: 1.55; }
.stat-grid article { display: flex; place-items: unset; align-items: center; justify-content: center; flex-direction: column; border-right: 1px solid #dce4ed; }
.stat-grid svg { width: 35px; height: 35px; margin-bottom: 8px; color: #0753a0; }
.stat-grid strong { color: #071f46; font-size: 23px; }
.stat-grid span { margin-top: 4px; color: #27415e; font-size: 8px; font-weight: 800; }

.transparency-section { padding-top: 16px; padding-bottom: 18px; }
.transparency-section .section-heading { align-items: center; justify-content: flex-start; gap: 16px; margin-bottom: 10px; }
.transparency-section .section-heading h2 { font-size: 18px; }
.transparency-content { display: grid; grid-template-columns: 2.05fr 1fr; gap: 10px; }
.document-strip { grid-template-columns: repeat(4, minmax(0,1fr)); }
.document-strip > span { min-height: 72px; font-size: 8px; line-height: 1.35; }
.transparency-callout { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 7px 10px; padding: 11px; border: 1px solid #dce5ef; border-radius: 5px; background: linear-gradient(110deg,#f2f7fc,#eef6ff); }
.transparency-callout > svg { grid-row: span 2; width: 38px; height: 38px; color: #0753a0; }
.transparency-callout p { margin: 0; color: #3d536d; font-size: 7.5px; line-height: 1.5; }
.transparency-callout span, .transparency-callout a { justify-self: start; padding: 6px 9px; border: 1px solid #c8d6e5; border-radius: 4px; color: var(--navy); background: #fff; font-size: 7px; font-weight: 800; text-decoration:none; cursor:pointer; }
.transparency-callout b { margin-left: 7px; }

.process-team { gap: 24px; padding-top: 18px; padding-bottom: 18px; background: #fff; }
.process-team .section-heading { margin-bottom: 10px; }
.process-team .section-heading h2 { font-size: 19px; }
.steps article { min-height: 148px; padding: 12px 10px; border-radius: 5px; }
.steps h3 { margin: 8px 0 4px; font-size: 10px; }
.steps p { font-size: 7px; }
.team-row { gap: 7px; }
.team-row article { padding: 7px 4px; border: 1px solid #dce4ed; border-radius: 4px; background: #fff; }
.avatar-photo { display: block; width: 100%; height: 74px; margin: 0 auto 5px; object-fit: cover; object-position: top center; }
.team-row h3 { font-size: 8px; }
.team-row p { font-size: 6.5px; }
.outline-button { display: flex; justify-content: center; width: 70%; margin: 8px auto 0; }

.faq-section { grid-template-columns: 1.5fr .85fr; gap: 18px; min-height: 260px; padding: 18px 28px 0; }
.faq-section .section-heading h2 { font-size: 19px; }
.faq-list div { min-height: 35px; font-size: 8px; }
.conversation-art { min-height: 220px; }
.conversation-reference {
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 104%;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.045) saturate(1.02);
  backface-visibility: hidden;
  transform-origin: center bottom;
  animation: reference-dialogue 20s ease-in-out infinite;
  will-change: transform;
}
@keyframes reference-dialogue {
  0%,100% { transform: translate3d(0,0,0); }
  36% { transform: translate3d(-3px,-2px,0); }
  72% { transform: translate3d(2px,-1px,0); }
}

.site-footer { background: var(--theme-footer, #052b5d); }

/* CMS theme presets: color and corner decisions stay consistent site-wide. */
.button,.join-button,.login-button,.outline-button { border-radius: var(--theme-radius, 8px); }
.footer-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 24px 28px 18px; }
.footer-brand { display: none; }
.footer-grid > div:not(:first-child) { padding-left: 18px; }
.footer-grid > div:nth-child(2) { padding-left: 0; border-left: 0; }
.footer-grid h2 { font-size: 11px; }
.footer-grid p { font-size: 7px; }
.footer-bottom { justify-content: center; padding: 8px 28px; font-size: 6.5px; }
.footer-bottom span:last-child { display: none; }

@media (max-width: 1100px) {
  .header-inner { min-height: 78px; }
  .site-header { min-height: 105px; }
  .brand-logo-image { width: 43px; height: 27px; }
  .brand-copy small { display: block; }
  .join-button { display: none; }
  .hero-content { width: 42%; }
  .hero-media { left: 37%; width: 63%; }
}

@media (max-width: 820px) {
  .site-header { position: relative; background: #fff; }
  .hero { min-height: 590px; }
  .hero-media { inset: 0; width: 100%; }
  .hero-media img { object-position: 62% center; }
  .hero-wash { background: linear-gradient(180deg,rgba(255,255,255,.97),rgba(255,255,255,.82) 58%,rgba(255,255,255,.08)); }
  .hero-content { width: 100%; padding: 55px 28px 200px; }
  .hero h1 { font-size: 38px; }
  .gateway-grid { margin-top: -35px; }
  .news-grid { max-width: none; grid-template-columns: repeat(2,1fr); }
  .reason-impact-row { grid-template-columns: 1fr; }
  .reason-impact-row .soft-section, .reason-impact-row .impact-section { padding: 20px 24px; }
  .transparency-content { grid-template-columns: 1fr; }
  .document-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .brand-copy small { display: none; }
  .hero { min-height: 630px; }
  .hero-content { padding: 48px 20px 215px; }
  .hero h1 { font-size: 32px; }
  .hero h1 span { white-space: normal; }
  .news-grid, .reason-grid, .stat-grid { grid-template-columns: 1fr; }
  .reason-grid article, .stat-grid article { min-height: 120px; }
  .faq-section { grid-template-columns: 1fr; padding-inline: 20px; }
  .conversation-art { min-height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .cloud, .conversation-reference { animation: none !important; }
}

/* Readability, full-page canvas and differentiated card interactions */
body { background: #fff; }
body::before { display: none; }
.site-frame { width: 100%; max-width: none; margin: 0; border: 0; border-radius: 0; box-shadow: none; }

.brand-copy strong { font-size: 20px; }
.brand-copy small { font-size: 8px; }
.nav-label { padding-inline: 8px; font-size: 10px; }
.join-button, .login-button { font-size: 9px; }
.hero-text { max-width: 340px; font-size: 11.5px; line-height: 1.72; }
.button { font-size: 10px; }
.gateway-card h2 { font-size: 14px; }
.gateway-card p { font-size: 9.5px; line-height: 1.6; }
.section-heading h2, .impact-intro h2 { font-size: 22px; }
.text-link { font-size: 9px; }

.news-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: none; gap: 14px; }
.photo-four { background-image: linear-gradient(180deg, transparent, rgba(3,27,56,.16)), url("assets/reference-hero.webp"); background-position: 67% center; }
.news-card--fourth .date-chip { display: grid; }
.news-body { min-height: 136px; padding: 12px 13px 13px; }
.news-body h3 { min-height: 37px; font-size: 13px; }
.news-body p { min-height: 42px; font-size: 9px; line-height: 1.55; }
.news-body span { font-size: 9px; }

.reason-grid article, .stat-grid article { min-height: 150px; }
.reason-grid h3 { font-size: 11px; }
.reason-grid p { font-size: 8.5px; line-height: 1.6; }
.stat-grid span { font-size: 9px; }
.transparency-section .section-heading p { font-size: 9px; }
.document-strip > span { font-size: 9px; }
.transparency-callout p { font-size: 8.5px; }
.transparency-callout span { font-size: 8px; }
.steps article { min-height: 160px; }
.steps h3 { font-size: 11px; }
.steps p { font-size: 8.5px; line-height: 1.55; }
.team-row h3 { font-size: 9px; }
.team-row p { font-size: 7.5px; }
.outline-button { font-size: 9px; }
.faq-list div { min-height: 39px; font-size: 9.5px; }
.footer-grid h2 { font-size: 12px; }
.footer-grid p { font-size: 8px; }
.footer-bottom { font-size: 7.5px; }

.gateway-card, .news-card, .reason-grid article, .stat-grid article {
  will-change: transform;
}
.gateway-card .icon-badge { transition: transform .3s ease, background-color .3s ease; }
.news-card { position: relative; transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease, border-color .32s ease; }
.news-image { transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.news-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; background: linear-gradient(125deg, transparent 35%, rgba(255,255,255,.38) 50%, transparent 65%); transform: translateX(-70%); transition: transform .55s ease, opacity .3s ease; }
.reason-grid article { position: relative; overflow: hidden; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.reason-grid article::before { content: ""; position: absolute; top: 0; right: 16%; left: 16%; height: 3px; border-radius: 0 0 4px 4px; background: var(--blue); transform: scaleX(0); transition: transform .3s ease; }
.stat-grid article { position: relative; overflow: hidden; transition: transform .28s ease, border-color .28s ease, background-color .28s ease; }
.stat-grid article::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; background: linear-gradient(180deg, var(--blue), var(--cyan)); transform: scaleY(0); transform-origin: bottom; transition: transform .3s ease; }

/* Keep the card feedback available on hybrid Windows devices too. Browsers can
   report hover:none when a touch-capable panel is paired with a real mouse. */
.gateway-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(18,55,93,.14); }
.gateway-card:hover .icon-badge { transform: rotate(-5deg) scale(1.08); }
.news-card:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(8,74,139,.28); box-shadow: 0 20px 42px rgba(8,38,73,.18); }
.news-card:hover .news-image { transform: scale(1.045); filter: saturate(1.08) contrast(1.03); }
.news-card:hover::after { opacity: .8; transform: translateX(70%); }
.reason-grid article:hover { transform: translateY(-4px); border-color: rgba(15,108,183,.35); box-shadow: inset 0 0 0 1px rgba(15,108,183,.08), 0 11px 22px rgba(15,70,118,.11); }
.reason-grid article:hover::before { transform: scaleX(1); }
.stat-grid article:hover { transform: scale(1.025); border-color: rgba(45,157,184,.45); background: linear-gradient(145deg,#fff,#f0f9fb); }
.stat-grid article:hover::before { transform: scaleY(1); }

@media (max-width: 820px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px) {
  .nav-label { font-size: 9.5px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-body h3 { min-height: 0; }
}

/* 27.08.2026 visual refinements: softer typography, animated sky header,
   clearer card borders and complete management portraits. */
.site-header {
  isolation: isolate;
  border-bottom-color: rgba(100, 152, 190, .34);
  background:
    linear-gradient(180deg, #cfeafa 0%, #e6f5fd 58%, #f8fcff 100%);
}
.site-header::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 10%, rgba(255,255,255,.88) 0 8%, transparent 31%),
    radial-gradient(ellipse at 76% 0%, rgba(255,255,255,.68) 0 7%, transparent 28%),
    linear-gradient(105deg, rgba(255,255,255,.16), rgba(130,198,236,.11), rgba(255,255,255,.22));
  background-size: 125% 100%, 135% 100%, 160% 100%;
  animation: sky-light-shift 22s ease-in-out infinite alternate;
}
.site-header::after {
  display: block;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,.18), transparent 28%, rgba(255,255,255,.14) 68%, transparent);
}
.clouds {
  z-index: 1;
  height: 100%;
  opacity: .9;
  overflow: hidden;
}
.cloud {
  width: 170px;
  height: 42px;
  background: rgba(255,255,255,.9);
  filter: drop-shadow(0 7px 8px rgba(71,134,174,.09)) blur(.7px);
  box-shadow:
    40px -15px 0 5px rgba(255,255,255,.84),
    84px 1px 0 1px rgba(255,255,255,.78),
    122px -10px 0 8px rgba(255,255,255,.72);
}
.cloud::before { width: 62px; height: 62px; left: 25px; top: -28px; }
.cloud::after { width: 76px; height: 76px; left: 79px; top: -36px; }
.cloud-a { left: -165px; top: 43px; transform: scale(.58); animation-duration: 34s; }
.cloud-b { left: 19%; top: 54px; transform: scale(.42); opacity: .66; animation-duration: 46s; }
.cloud-c { right: 15%; top: 56px; transform: scale(.6); opacity: .62; animation-duration: 40s; }
.cloud-d { right: -55px; top: 30px; transform: scale(.43); opacity: .7; animation-duration: 31s; }
@keyframes sky-light-shift {
  from { background-position: 0 0, 100% 0, 0 0; }
  to { background-position: 16% 0, 82% 0, 38% 0; }
}

body { font-size: 15px; }
.brand-copy strong { font-size: 21px; font-weight: 700; letter-spacing: -.015em; }
.brand-copy small { font-size: 9px; }
.nav-label { padding-inline: 8px; font-size: 11.5px; font-weight: 700; letter-spacing: .005em; }
.join-button, .login-button { font-size: 10.5px; font-weight: 700; }
.mobile-nav { font-size: 11px; font-weight: 700; }
.hero h1 { font-size: 35px; font-weight: 700; letter-spacing: -.025em; }
.hero-text { font-size: 12.5px; }
.button { font-size: 11px; font-weight: 700; }
.gateway-card h2 { font-size: 15px; font-weight: 700; }
.gateway-card p { font-size: 10.5px; }
.section-heading h2, .impact-intro h2 { font-size: 24px; font-weight: 700; letter-spacing: -.018em; }
.text-link { font-size: 10px; }
.news-body h3 { font-size: 14px; font-weight: 700; }
.news-body p { font-size: 10px; }
.news-body span { font-size: 9.5px; }
.reason-grid h3 { font-size: 12.5px; font-weight: 700; }
.reason-grid p { font-size: 9.5px; }
.stat-grid strong { font-weight: 700; }
.stat-grid span { font-size: 10px; }
.transparency-section .section-heading p { font-size: 10px; }
.document-strip > span { font-size: 10px; }
.transparency-callout p { font-size: 9.5px; }
.transparency-callout span { font-size: 9px; }
.steps h3 { font-size: 12.5px; font-weight: 700; }
.steps p { font-size: 9.5px; }
.team-row h3 { font-size: 10.5px; font-weight: 700; }
.team-row p { font-size: 8.5px; }
.outline-button { font-size: 9.5px; }
.faq-list div { font-size: 10.5px; }
.footer-grid h2 { font-size: 16px; }
.footer-grid p { font-size: 12px; overflow-wrap: anywhere; }
.socials { gap: 8px; }
.socials span {
  width: 34px;
  height: 34px;
  border-width: 1.5px;
  font-size: 14px;
}
.site-status {
  margin-top: 13px;
  padding: 11px 12px;
  border-radius: 7px;
}
.site-status svg {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}
.site-status b { font-size: 13px; line-height: 1.2; }
.site-status small { font-size: 11.5px; line-height: 1.35; }
.footer-bottom { font-size: 11.5px; }

@media (max-width: 560px) {
  .socials { gap: 6px; }
  .socials span { width: 30px; height: 30px; font-size: 13px; }
  .site-status { padding: 9px; }
  .site-status svg { width: 30px; height: 30px; margin-right: 8px; }
  .site-status b { font-size: 12px; }
  .site-status small { font-size: 10px; }
}

.reason-grid article,
.stat-grid article,
.document-strip,
.transparency-callout,
.steps article,
.team-row article {
  border-width: 1.5px;
  border-color: #c7d6e4;
}
.document-strip > span { border-right-width: 1.5px; border-right-color: #c7d6e4; }

.avatar-photo {
  width: 100%;
  height: 96px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 3px;
  background: linear-gradient(180deg, #fbfcfd, #f2f5f7);
  transition: transform .32s ease, filter .32s ease;
}
.steps article,
.team-row article {
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
}

.steps article:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(15,108,183,.38);
  box-shadow: 0 16px 30px rgba(13,62,108,.15);
}

.cms-submenu-level-3 { display:grid; gap:2px; margin:-2px 0 5px 11px; padding-left:10px; border-left:2px solid rgba(7,82,141,.16); }
.cms-submenu-level-3 a { padding:5px 8px; border-radius:6px; color:#526b82; font-size:13px; font-weight:650; text-decoration:none; }
.cms-submenu-level-3 a:hover,.cms-submenu-level-3 a:focus-visible { color:#064f88; background:#e7f4fd; outline:none; transform:translateX(2px); }
@media (max-width: 560px) {
  .page-loader-inner { padding: 22px 24px 19px; border-radius: 23px; }
  .page-loader-inner img { width: 126px; }
  .page-loader-inner p { font-size: 13px; }
  .back-to-top { right: 14px; bottom: 14px; min-height: 43px; padding-inline: 13px 15px; font-size: 13px; }
}
.team-row article:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(45,157,184,.42);
  box-shadow: 0 14px 28px rgba(12,53,92,.16);
}
.team-row article:hover .avatar-photo {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

@media (max-width: 1100px) {
  .nav-label { font-size: 11px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 34px; }
  .hero-text { font-size: 12px; }
  .gateway-card p, .news-body p, .reason-grid p, .steps p { font-size: 10px; }
}

/* Unified, sharp news dates: the live labels fully cover the dates baked
   into the first three reference thumbnails. */
.news-image .date-chip,
.news-card--fourth .date-chip {
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 7px;
  display: grid;
  place-items: center;
  width: 48px;
  min-height: 56px;
  padding: 6px 4px 5px;
  border: 1px solid rgba(181, 197, 211, .52);
  border-radius: 7px;
  color: #15263d;
  background: #fff;
  box-shadow: 0 5px 14px rgba(7, 31, 70, .16);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.news-image .date-chip b {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.photo-one {
  background-size: auto 100%;
  background-position: right center;
}
.photo-two {
  background-size: auto 112%;
  background-position: right center;
}
.photo-three {
  background-size: auto 150%;
  background-position: right center;
}

/* Vanta CLOUDS sits behind the logo and navigation. The existing CSS sky is
   retained as the fast first paint and the no-WebGL/reduced-motion fallback. */
.vanta-header-sky {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}
.vanta-header-sky canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: .98;
  filter: saturate(.88) brightness(1.08) contrast(.96);
  transform: scale(1.035) translate3d(-.7%, 0, 0);
  transform-origin: center;
  animation: vanta-sky-pan 15s ease-in-out infinite alternate;
}
.site-header.vanta-ready .vanta-header-sky { opacity: 1; }
.site-header.vanta-ready .clouds { opacity: .18; }
.site-header.vanta-ready::before { opacity: .2; }
.site-header.vanta-ready::after {
  background:
    radial-gradient(circle at 74% 12%, rgba(255,228,132,.34), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,.36), rgba(255,255,255,.1) 30%, rgba(255,255,255,.16) 72%, rgba(255,255,255,.3));
}
.site-header.vanta-ready .brand,
.site-header.vanta-ready .nav-label,
.site-header.vanta-ready .join-button,
.site-header.vanta-ready .login-button {
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
}
.site-header.vanta-ready .join-button { text-shadow: none; }
.site-header.vanta-ready { border-bottom-color: transparent; }

@keyframes vanta-sky-pan {
  from { transform: scale(1.035) translate3d(-.7%, 0, 0); }
  to { transform: scale(1.055) translate3d(.7%, -.6%, 0); }
}

.cloud-a { animation-duration: 25s; }
.cloud-b { animation-duration: 32s; }
.cloud-c { animation-duration: 29s; }
.cloud-d { animation-duration: 23s; }

@media (min-width: 1101px) {
  .site-header,
  .header-inner { min-height: 108px; }
  .desktop-nav { height: 108px; }
}

@media (prefers-reduced-motion: reduce) {
  .vanta-header-sky { display: none; }
}

/* Larger cooperative mark and title while preserving header balance. */
.brand-logo-image {
  width: 62px;
  height: 39px;
  object-fit: contain;
  mix-blend-mode: normal;
  background: transparent;
}
.brand-copy strong {
  font-size: 35px;
  line-height: 1;
}
.brand-copy small {
  max-width: 300px;
  font-size: 16px;
  line-height: 1.12;
}

@media (max-width: 1100px) {
  .brand-logo-image { width: 54px; height: 34px; }
  .brand-copy strong { font-size: 30px; }
  .brand-copy small { font-size: 14px; }
}

@media (max-width: 560px) {
  .brand-logo-image { width: 51px; height: 32px; }
  .brand-copy strong { font-size: 29px; }
  .brand-copy small { display: block; font-size: 13px; }
  .login-button {
    justify-content: center;
    width: 36px;
    min-width: 36px;
    padding-inline: 0;
    overflow: hidden;
    font-size: 0;
  }
  .login-button svg { width: 16px; height: 16px; }
}

/* The supplied community photograph is the shared header/hero scene. Vanta
   extends from behind the navigation into the photographed sky and fades out
   before it reaches the people, so it reads as movement inside the image. */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  min-height: 108px;
  overflow: visible;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(235,249,255,.12), rgba(235,249,255,.04) 72%, transparent);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.site-header::before {
  opacity: .1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,255,255,.07) 48%, rgba(255,255,255,.18)),
    radial-gradient(circle at 77% 0%, rgba(255,226,143,.28), transparent 25%);
  animation: none;
}
.site-header::after {
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,.07), transparent 58%, rgba(255,255,255,.18) 100%);
}
.header-inner { min-height: 108px; }
.desktop-nav { height: 108px; }

.hero {
  min-height: 800px;
  background: #79b4d4;
}
.hero-media {
  z-index: -3;
  inset: 0;
  width: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: 50% 9%;
  transform: scale(1.018);
  filter: saturate(1.02) contrast(1.01);
  animation: sky-breathe 30s ease-in-out infinite alternate;
}
.hero-fallback,
.hero-fallback img,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-fallback { z-index: 0; }
.hero-video {
  z-index: 1;
  display: block;
  object-fit: cover;
  object-position: 50% 9%;
  opacity: 0;
  background: #79b4d4;
  filter: saturate(1.02) contrast(1.01);
  transition: opacity .76s ease;
  will-change: opacity;
}
.hero-video.is-ready { opacity: 1; }
.hero-video.is-loop-transition { opacity: 0; }
.hero-media.has-video .hero-fallback img { animation: none !important; transform: scale(1.018); }
.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(246,251,255,.93) 0%, rgba(246,251,255,.83) 27%, rgba(246,251,255,.5) 39%, rgba(246,251,255,.07) 55%, transparent 69%),
    linear-gradient(180deg, rgba(224,243,255,.08), transparent 60%, rgba(4,31,59,.1));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 43%;
  padding: 154px 0 100px 40px;
}
.hero-text {
  color: #263e58;
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
}
.hero-confidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(570px, 100%);
  margin-top: 26px;
  padding: 8px;
  border: 1px solid rgba(31, 84, 132, .17);
  border-radius: 12px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 12px 30px rgba(0, 47, 91, .08);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.hero-confidence span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  padding: 7px 10px;
  border-right: 1px solid rgba(31, 84, 132, .14);
  color: var(--navy);
}
.hero-confidence span:last-child { border-right: 0; }
.hero-confidence svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--blue);
}
.hero-confidence b {
  font-size: 11px;
  line-height: 1.3;
}
.hero-confidence-note {
  max-width: 545px;
  margin: 11px 3px 0;
  color: #38536f;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}
.gateway-grid { margin-top: -28px; }

.vanta-header-sky {
  z-index: 1;
  top: -38px;
  left: 0;
  right: 0;
  bottom: auto;
  height: 205px;
  opacity: 0;
  overflow: hidden;
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(180deg, #000 0 58%, rgba(0,0,0,.86) 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 58%, rgba(0,0,0,.86) 72%, transparent 100%);
}
.vanta-header-sky canvas {
  opacity: 1;
  filter: saturate(1.14) brightness(1.02) contrast(1.03);
  animation: none;
}
.site-header.vanta-ready .vanta-header-sky { opacity: 1; }
.site-header.vanta-ready .clouds { opacity: .1; }
.site-header.vanta-ready::before { opacity: .08; }
.site-header.vanta-ready::after {
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 56%, rgba(238,249,255,.2) 100%);
}
.clouds {
  z-index: 1;
  top: -28px;
  height: 190px;
  opacity: .22;
  -webkit-mask-image: linear-gradient(180deg, #000 0 48%, rgba(0,0,0,.5) 72%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 48%, rgba(0,0,0,.5) 72%, transparent 100%);
}

@media (max-width: 1100px) {
  .site-header { min-height: 105px; }
  .header-inner { min-height: 78px; }
  .desktop-nav { height: 78px; }
  .hero { min-height: 660px; }
  .hero-content { width: 49%; padding-left: 28px; }
  .hero-media img { object-position: 58% 9%; }
  .hero-video { object-position: 58% 9%; }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    background: linear-gradient(180deg, rgba(248,252,255,.9), rgba(246,251,255,.61) 78%, transparent);
  }
  .hero { min-height: 740px; }
  .hero-media { inset: 0; width: 100%; }
  .hero-media img { object-position: 69% 24%; }
  .hero-video { object-position: 69% 24%; }
  .hero-wash {
    background: linear-gradient(180deg, rgba(247,252,255,.96) 0%, rgba(247,252,255,.83) 43%, rgba(247,252,255,.25) 66%, rgba(4,30,58,.08) 100%);
  }
  .hero-content { width: 100%; padding: 148px 28px 260px; }
  .vanta-header-sky { top: -24px; height: 180px; opacity: .94; }
  .site-header.vanta-ready .vanta-header-sky { opacity: .94; }
}

@media (max-width: 560px) {
  .hero { min-height: 700px; }
  .hero-media img { object-position: 67% 24%; }
  .hero-video { object-position: 67% 24%; }
  .hero-content { padding: 138px 20px 275px; }
  .hero-confidence {
    grid-template-columns: 1fr;
    padding: 7px 10px;
  }
  .hero-confidence span {
    border-right: 0;
    border-bottom: 1px solid rgba(31, 84, 132, .14);
  }
  .hero-confidence span:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .vanta-header-sky { display: none; }
  .hero-media img { animation: none !important; }
  .hero-video { display: none; }
}

/* Accessible content scale: everything below the completed header is sized
   for comfortable reading without changing the navigation typography. */
main { font-size: 16px; }

.hero-content { width: 46%; }
.hero h1 {
  max-width: 660px;
  font-size: clamp(44px, 3.7vw, 54px);
  line-height: 1.04;
}
.hero-text {
  max-width: 600px;
  margin-bottom: 27px;
  font-size: 17px;
  line-height: 1.65;
}
.button {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 15px;
}
.button svg { width: 20px; height: 20px; }
.play-icon { width: 22px; height: 22px; font-size: 9px; }
.hero-confidence { width: min(640px, 100%); padding: 9px; }
.hero-confidence span { min-height: 50px; padding: 9px 12px; }
.hero-confidence svg { flex-basis: 24px; width: 24px; height: 24px; }
.hero-confidence b { font-size: 14px; }
.hero-confidence-note { max-width: 610px; font-size: 14px; line-height: 1.55; }

.gateway-card { min-height: 190px; padding: 24px 29px 22px 21px; }
.gateway-card h2 { font-size: 18px; line-height: 1.3; }
.gateway-card p { font-size: 14px; line-height: 1.6; }
.gateway-card .icon-badge { width: 54px; height: 54px; }
.gateway-card .icon-badge svg { width: 27px; height: 27px; }

.section-heading h2,
.impact-intro h2,
.process-team .section-heading h2,
.faq-section .section-heading h2,
.transparency-section .section-heading h2 {
  font-size: 29px;
  line-height: 1.15;
}
.text-link { font-size: 14px; }
.text-link svg { width: 17px; height: 17px; }

.news-image { height: 132px; }
.news-body { min-height: 220px; padding: 18px 17px 19px; }
.news-body h3 { min-height: 0; margin-bottom: 10px; font-size: 18px; line-height: 1.35; }
.news-body p { min-height: 0; margin-bottom: 16px; font-size: 15px; line-height: 1.65; }
.news-body span { font-size: 14px; }
.news-body svg { width: 17px; height: 17px; }
.news-image .date-chip,
.news-card--fourth .date-chip {
  width: 54px;
  min-height: 64px;
  font-size: 11px;
}
.news-image .date-chip b { font-size: 19px; }

.reason-grid article { min-height: 220px; padding: 18px 12px; }
.reason-grid .icon-badge { width: 50px; height: 50px; }
.reason-grid .icon-badge svg { width: 27px; height: 27px; }
.reason-grid h3 { margin: 10px 0 8px; font-size: 16px; line-height: 1.3; }
.reason-grid p { font-size: 14px; line-height: 1.6; }
.stat-grid article { min-height: 190px; padding: 14px 7px; }
.stat-grid svg { width: 42px; height: 42px; }
.stat-grid strong { font-size: 31px; }
.stat-grid span { font-size: 14px; line-height: 1.35; }

.transparency-section .section-heading p { font-size: 14px; line-height: 1.5; }
.document-strip > span { min-height: 92px; padding: 15px 28px 15px 15px; font-size: 14px; line-height: 1.45; }
.document-strip svg { width: 27px; height: 27px; }
.transparency-callout { padding: 15px; }
.transparency-callout > svg { width: 46px; height: 46px; }
.transparency-callout p { font-size: 14px; line-height: 1.6; }
.transparency-callout span { padding: 8px 11px; font-size: 13px; }

.steps article { min-height: 225px; padding: 18px 14px; }
.steps article > b { width: 26px; height: 26px; font-size: 12px; }
.steps .icon-badge { width: 50px; height: 50px; }
.steps .icon-badge svg { width: 27px; height: 27px; }
.steps h3 { margin: 11px 0 8px; font-size: 16px; line-height: 1.3; }
.steps p { font-size: 14px; line-height: 1.6; }
.team-row article { padding: 10px 7px; }
.team-row h3 { font-size: 14px; line-height: 1.3; }
.team-row p { font-size: 12px; line-height: 1.4; }
.outline-button { padding: 9px 14px; font-size: 14px; }
.outline-button svg { width: 16px; height: 16px; }

.faq-list details { font-size: 15px; line-height: 1.45; }
.faq-list summary { min-height:56px; padding-inline:18px; }
.faq-list svg { width: 18px; height: 18px; }
.faq-section { min-height: 350px; }

.footer-grid h2 { font-size: 18px; }
.footer-grid p { font-size: 14px; line-height: 1.65; }
.site-status b { font-size: 14px; }
.site-status small { font-size: 12px; }
.footer-bottom { font-size: 13px; line-height: 1.5; }

@media (max-width: 1100px) {
  .hero-content { width: 54%; }
  .hero h1 { font-size: 43px; }
  .hero-text { font-size: 16px; }
  .gateway-card { min-height: 210px; }
}

@media (max-width: 820px) {
  .hero-content { width: 100%; }
  .hero h1 { font-size: 43px; }
  .gateway-card { min-height: 180px; }
  .news-body { min-height: 205px; }
  .reason-grid article { min-height: 205px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 38px; }
  .hero-text { font-size: 15.5px; line-height: 1.62; }
  .button { min-height: 46px; padding-inline: 16px; font-size: 14px; }
  .hero-confidence b { font-size: 13.5px; }
  .hero-confidence-note { font-size: 13.5px; }
  .gateway-card { min-height: 150px; }
  .gateway-card p,
  .news-body p,
  .reason-grid p,
  .steps p { font-size: 14px; }
  .section-heading h2,
  .impact-intro h2,
  .process-team .section-heading h2,
  .faq-section .section-heading h2,
  .transparency-section .section-heading h2 { font-size: 26px; }
  .news-body { min-height: 0; }
  .reason-grid article { min-height: 175px; }
  .stat-grid article { min-height: 155px; }
  .steps article { min-height: 180px; }
  .faq-list div { min-height: 58px; font-size: 14.5px; }
  .footer-grid h2 { font-size: 18px; }
  .footer-grid p { font-size: 13.5px; }
  .site-status b { font-size: 13px; }
  .site-status small { font-size: 11px; }
  .footer-bottom { font-size: 12px; }
}

.hero-confidence-note {
  display: inline-block;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(31, 84, 132, .14);
  border-radius: 8px;
  color: #253f5c;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gateway-card p,
.news-body p,
.reason-grid p,
.steps p,
.team-row p { color: #4d6178; }

.cms-home-sections { display: flex; flex-direction: column; }

/* Larger main navigation and legible submenu typography. */
.nav-label {
  padding-inline: 10px;
  font-size: 14px;
  line-height: 1.25;
}
.nav-label svg { width: 14px; height: 14px; }
.mega-panel b { font-size: 17px; }
.mega-panel span, .mega-panel .cms-submenu-link { font-size: 14px; line-height: 1.45; }
.mobile-nav { font-size: 14px; }

/* Real Instagram mark and evenly matched KPI card heights. */
.socials svg { width: 18px; height: 18px; stroke-width: 1.9; }
.reason-grid article,
.stat-grid article {
  min-height: 220px;
  height: 220px;
}

@media (max-width: 1100px) {
  .mobile-nav { gap: 24px; font-size: 14px; }
}

@media (max-width: 820px) {
  .reason-grid article,
  .stat-grid article { min-height: 205px; height: 205px; }
}

@media (max-width: 560px) {
  .mobile-nav { gap: 20px; font-size: 13.5px; }
  .socials svg { width: 17px; height: 17px; }
  .reason-grid article,
  .stat-grid article { min-height: 175px; height: 175px; }
}

.stat-grid article:last-child {
  border-right: 1.5px solid #c7d6e4;
}

/* Responsive hamburger navigation tree. */
.mobile-menu-bar,
.mobile-menu-panel { display: none; }
.mobile-menu-toggle {
  appearance: none;
  border: 0;
  font: inherit;
}

@media (max-width: 1100px) {
  body.mobile-menu-open { overflow: hidden; }
  .site-header { min-height: 130px; }
  .mobile-menu-bar {
    position: relative;
    z-index: 80;
    display: flex;
    padding: 0 18px 10px;
  }
  .mobile-menu-toggle {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 43px;
    padding: 8px 13px;
    border: 1px solid rgba(21, 82, 132, .22);
    border-radius: 9px;
    color: #0a315f;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 8px 22px rgba(8, 45, 82, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 15px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
  }
  .mobile-menu-toggle svg { width: 22px; height: 22px; }
  .mobile-menu-toggle small {
    color: #526a82;
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-menu-toggle[aria-expanded="true"] {
    color: #fff;
    border-color: #07366e;
    background: #07366e;
  }
  .mobile-menu-toggle[aria-expanded="true"] small { color: #d8e9f6; }

  .mobile-menu-panel {
    position: absolute;
    z-index: 120;
    top: 100%;
    right: 18px;
    left: 18px;
    display: block;
    max-height: calc(100vh - 145px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    border: 1px solid #cbdbe8;
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 60px rgba(5, 38, 75, .26);
    animation: mobile-menu-in .2s ease both;
  }
  .mobile-menu-panel[hidden] { display: none; }
  .mobile-menu-tree { margin: 0; padding: 0; list-style: none; }
  .mobile-menu-tree > li + li { border-top: 1px solid #e3ebf2; }
  .mobile-menu-link,
  .mobile-menu-tree summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 10px 13px;
    border-radius: 7px;
    color: #173553;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
  }
  .mobile-menu-tree summary::-webkit-details-marker { display: none; }
  .mobile-menu-tree summary:focus { outline: none; }
  .mobile-menu-tree summary:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(8, 125, 188, .55);
  }
  .mobile-menu-link.is-active { color: #087dbc; background: #edf8ff; }
  .mobile-menu-tree summary svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    transition: transform .2s ease;
  }
  .mobile-menu-tree details[open] > summary {
    color: #075b99;
    background: #edf7fe;
  }
  .mobile-menu-tree details[open] > summary svg { transform: rotate(180deg); }
  .mobile-submenu {
    display: grid;
    gap: 3px;
    margin: 0 7px 11px;
    padding: 7px;
    border-left: 2px solid #91c9e9;
    border-radius: 0 8px 8px 0;
    background: #f7fbfe;
  }
  .mobile-submenu b {
    margin: 7px 7px 3px;
    color: #0b315d;
    font-size: 14px;
  }
  .mobile-submenu span {
    display: block;
    padding: 9px 10px;
    border-radius: 6px;
    color: #415a73;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.4;
  }
  .mobile-submenu span:hover,
  .mobile-submenu span:focus-visible {
    color: #064f88;
    background: #e7f4fd;
    outline: none;
  }
  .mobile-submenu a { display:block; padding:9px 10px; border-radius:6px; color:#415a73; font-size:14px; font-weight:650; line-height:1.4; text-decoration:none; }
  .mobile-submenu a:hover,.mobile-submenu a:focus-visible { color:#064f88; background:#e7f4fd; outline:none; }
  .mobile-submenu-level-3 { margin:2px 0 7px 12px; padding-left:9px; border-left:2px solid #cce0ef; }
  .mobile-submenu-level-3 a { font-size:13px; font-weight:600; }
}

@media (max-width: 560px) {
  .site-header { min-height: 128px; }
  .mobile-menu-bar { padding: 0 12px 8px; }
  .mobile-menu-toggle { min-height: 42px; padding-inline: 11px; }
  .mobile-menu-panel {
    right: 10px;
    left: 10px;
    max-height: calc(100vh - 136px);
    padding: 8px;
  }
}

@keyframes mobile-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* User-approved navigation information architecture. */
.desktop-nav .nav-item { order: initial !important; }
.nav-label-fund { align-items: center; }
.fund-label-text {
  display: inline-block;
  line-height: 1.08;
  text-align: center;
  white-space: normal;
}
.corporate-panel,
.partnership-panel,
.project-panel { left: -70px; width: 285px; }
.fund-panel { left: 50%; width: 305px; margin-left: -152px; }
.governance-panel { right: -76px; width: 285px; }
.news-panel { right: -44px; width: 265px; }

/* A 100% scaled external monitor exposes roughly 25% more CSS pixels than a
   125% scaled laptop panel. Normalize only that wide/low-DPI case so the
   approved desktop proportions stay visually consistent when moving the
   browser between displays, without scaling or narrowing the page itself. */
@media (min-width: 1800px) and (max-resolution: 1.1dppx) {
  .site-header,
  .header-inner { min-height: 132px; }
  .desktop-nav { height: 132px; }
  .header-inner { gap: 17px; padding-inline: 32px; }
  .brand-logo-image { width: 74px; height: 47px; }
  .brand-copy strong { font-size: 42px; }
  .brand-copy small { max-width: 330px; font-size: 18px; }
  .desktop-nav > ul { justify-content: space-between; padding-left: 55px; }
  .nav-label { padding-inline: 9px; font-size: 15px; }
  .join-button,
  .login-button { min-height: 50px; padding-inline: 15px; font-size: 13px; }

  .hero { min-height: 980px; }
  .hero-content { width: 48%; padding: 200px 0 130px 54px; }
  .hero h1 { max-width: 780px; font-size: 68px; line-height: 1.05; }
  .hero-text { max-width: 710px; margin-bottom: 32px; font-size: 20px; line-height: 1.68; }
  .hero-actions { gap: 12px; }
  .button { min-height: 58px; padding-inline: 24px; font-size: 17px; }
  .button svg { width: 24px; height: 24px; }
  .hero-confidence { width: min(760px, 100%); margin-top: 30px; padding: 10px; }
  .hero-confidence span { min-height: 60px; padding: 10px 14px; }
  .hero-confidence svg { flex-basis: 28px; width: 28px; height: 28px; }
  .hero-confidence b { font-size: 16px; }
  .hero-confidence-note { max-width: 700px; margin-top: 14px; font-size: 16px; }

  .gateway-grid { margin-top: -36px; }
  .gateway-card { min-height: 220px; padding: 29px 34px 26px 26px; }
  .gateway-card h2 { font-size: 21px; }
  .gateway-card p { font-size: 16px; }
  .gateway-card .icon-badge { width: 62px; height: 62px; }
  .gateway-card .icon-badge svg { width: 31px; height: 31px; }
}

/* Tıklanabilir kurumsal kartlar */
.reason-grid article,
.stat-grid article,
.steps article,
.team-row article { position: relative; }
.card-stretched-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  cursor: pointer;
}
.card-stretched-link:focus-visible {
  outline: 3px solid rgba(8,111,189,.55);
  outline-offset: 2px;
}
.document-strip > a { min-height: 92px; padding: 15px 28px 15px 15px; font-size: 14px; line-height: 1.45; }
.document-strip > a:hover,
.document-strip > a:focus-visible,
.transparency-callout > a:hover,
.transparency-callout > a:focus-visible,
.outline-button:hover,
.outline-button:focus-visible { border-color: #65a9d7; color: #086fbd; background: #f3faff; outline: none; }
.transparency-callout > a { font-size: 13px; }

/* CMS paleti: tema değişimi ana sayfanın bütün etkileşim ve yardımcı renklerine yayılır. */
body { color: var(--ink); }
.hero h1,
.section-heading h2,
.impact-intro h2,
.gateway-card h2,
.news-body h3,
.reason-grid h3,
.steps h3,
.team-row h3 { color: var(--ink); }
.hero-text,
.gateway-card p,
.news-body p,
.reason-grid p,
.steps p,
.team-row p { color: var(--muted); }
.nav-label.is-active,
.nav-item:hover .nav-label,
.nav-item:focus-within .nav-label { color: var(--blue); }
.nav-label::after { background: var(--blue); }
.join-button,
.button-primary { color: #fff; background: linear-gradient(135deg,var(--navy),var(--navy-2)); }
.button-projects { color:#fff; background:var(--cyan); }
.button-about { color:#fff; border-color:var(--blue); background:var(--blue); }
.login-button { color:#fff; border-color:var(--navy); background:linear-gradient(135deg,var(--navy),var(--navy-2)); }
.header-logout-form{display:flex;flex:0 0 auto;margin:0}.header-logout-button{display:inline-flex;min-height:35px;align-items:center;padding:0 10px;border:1px solid var(--line);border-radius:var(--theme-radius,8px);color:var(--navy);background:#fff;font:inherit;font-size:10px;font-weight:800;cursor:pointer}.header-logout-button:hover,.header-logout-button:focus-visible{border-color:var(--blue);color:var(--blue);outline:0}
.mega-panel .cms-submenu-link::before { background:var(--blue); }
.mega-panel .cms-submenu-link:hover,
.mega-panel .cms-submenu-link:focus-visible,
.cms-submenu-level-3 a:hover,
.cms-submenu-level-3 a:focus-visible,
.mobile-submenu a:hover,
.mobile-submenu a:focus-visible { color:var(--navy); background:var(--theme-hover); }
.mega-panel span:hover,
.mega-panel span:focus-visible,
.mega-panel .cms-submenu-link:hover,
.mega-panel .cms-submenu-link:focus-visible {
  box-shadow: inset 3px 0 0 var(--blue), 0 5px 14px color-mix(in srgb, var(--blue) 10%, transparent);
}
.mega-panel span:hover::before,
.mega-panel span:focus-visible::before,
.mega-panel .cms-submenu-link:hover::before,
.mega-panel .cms-submenu-link:focus-visible::before { background:var(--blue); }
.cms-submenu-level-3,
.mobile-submenu-level-3 { border-left-color:var(--line); }
.news-body .news-more-link,
.text-link { color:var(--blue); }
.news-body .news-more-link:hover,
.news-body .news-more-link:focus-visible { color:var(--navy); }
.reason-grid .icon-badge,
.gateway-card .icon-badge { color:var(--blue); background:var(--soft); }
.reason-grid article::before { background:var(--blue); }
.stat-grid svg { color:var(--blue); }
.stat-grid article::before { background:linear-gradient(180deg,var(--blue),var(--cyan)); }
.stat-grid strong,
.stat-grid span { color:var(--ink); }
.transparency-callout,
.document-strip,
.faq-list details { border-color:var(--line); }
.transparency-callout { background:var(--soft); }
.conversation-reference { filter:var(--theme-illustration-filter,none); }
.faq-list details::marker,
.cms-rich-content li::marker { color:var(--blue); }
.back-to-top { border-color:color-mix(in srgb,var(--blue) 60%,white); color:#fff; background:color-mix(in srgb,var(--navy) 86%,transparent); }
.back-to-top:hover,
.back-to-top:focus-visible { background:var(--blue); }
.site-footer { background:var(--theme-footer); }
.socials span:hover { border-color:var(--cyan); background:color-mix(in srgb,var(--cyan) 24%,transparent); }

/* CMS kart görünürlüğü: kalan öğeler boş kolon bırakmadan mevcut alanı paylaşır. */
.cms-dynamic-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--dynamic-card-min, 140px)), 1fr)); }
.gateway-grid.cms-dynamic-grid { --dynamic-card-min: 250px; }
.hero-confidence.cms-dynamic-grid { --dynamic-card-min: 145px; }
.reason-grid.cms-dynamic-grid { --dynamic-card-min: 112px; }
.stat-grid.cms-dynamic-grid { --dynamic-card-min: 110px; }
.document-strip.cms-dynamic-grid { --dynamic-card-min: 170px; }
.steps.cms-dynamic-grid { --dynamic-card-min: 135px; }
.team-row.cms-dynamic-grid { --dynamic-card-min: 95px; }
.reason-impact-row > :only-child,
.process-team > :only-child,
.transparency-content > :only-child,
.faq-section > :only-child { grid-column: 1 / -1; width: 100%; }

@media (max-width: 820px) {
  .gateway-grid.cms-dynamic-grid { --dynamic-card-min: 280px; }
  .reason-grid.cms-dynamic-grid,
  .stat-grid.cms-dynamic-grid,
  .document-strip.cms-dynamic-grid,
  .team-row.cms-dynamic-grid { --dynamic-card-min: 190px; }
}

@media (max-width: 560px) {
  .gateway-grid.cms-dynamic-grid,
  .reason-grid.cms-dynamic-grid,
  .stat-grid.cms-dynamic-grid,
  .steps.cms-dynamic-grid { grid-template-columns: 1fr; }
  .document-strip.cms-dynamic-grid,
  .team-row.cms-dynamic-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 145px), 1fr)); }
}
