:root {
  --ink: #06243a;
  --navy: #043b5f;
  --blue: #0877aa;
  --teal: #059b9a;
  --aqua: #4bd1c5;
  --gold: #f5b62d;
  --red: #cf2441;
  --green: #168256;
  --mist: #eef8f7;
  --paper: #f7fbfa;
  --white: #ffffff;
  --muted: #5d7380;
  --line: rgba(6, 36, 58, 0.13);
  --shadow: 0 26px 80px rgba(0, 43, 68, 0.13);
  --radius: 30px;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; overscroll-behavior-x: none; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(circle at 12% 17%, rgba(75, 209, 197, .28), transparent 28%),
    radial-gradient(circle at 86% 9%, rgba(245, 182, 45, .2), transparent 24%),
    radial-gradient(circle at 65% 72%, rgba(8, 119, 170, .14), transparent 31%),
    linear-gradient(140deg, #fbfefd 0%, #eaf8f6 42%, #f7fbfa 74%, #edf7fb 100%);
  background-size: 130% 130%;
  animation: ambientShift 18s ease-in-out infinite alternate;
}
@keyframes ambientShift { to { background-position: 70% 30%; } }

a { color: inherit; text-decoration: none; }
a, button, input { touch-action: manipulation; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
img[src*="omwenyo-mark"] { height: auto !important; object-fit: contain; object-position: center; }
main, header, footer, section, article, nav, div { min-width: 0; }
p, h1, h2, h3, blockquote, a, button, span { overflow-wrap: break-word; }
[id] { scroll-margin-top: 110px; }
em { color: var(--teal); font-style: normal; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.site-nav > a, .nav-cta, .care-tabs button, .phase-nav button, .dialog-close { min-height: 44px; }
.dialog-close { min-width: 44px; }

#flow-field { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .32; }
.ambient { position: fixed; z-index: -2; border-radius: 50%; filter: blur(70px); pointer-events: none; mix-blend-mode: multiply; }
.ambient-one { width: 38vw; height: 38vw; background: rgba(2, 164, 163, .13); left: -12vw; top: 30vh; animation: floatOne 14s ease-in-out infinite alternate; }
.ambient-two { width: 30vw; height: 30vw; background: rgba(245, 182, 45, .12); right: -8vw; top: 8vh; animation: floatTwo 17s ease-in-out infinite alternate; }
@keyframes floatOne { to { transform: translate(18vw, 22vh) scale(.75); } }
@keyframes floatTwo { to { transform: translate(-12vw, 42vh) scale(1.2); } }
.grain { position: fixed; inset: 0; z-index: 20; opacity: .025; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E"); }
.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 100; background: transparent; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--teal), var(--gold), var(--red)); transform: scaleX(0); transform-origin: left center; will-change: transform; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 300; padding: .75rem 1rem; background: var(--white); border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  padding: 10px 12px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 22px;
  background: rgba(247,251,250,.69);
  backdrop-filter: blur(20px) saturate(155%);
  box-shadow: 0 14px 46px rgba(2,52,72,.08);
  transition: box-shadow .35s, background .35s, top .35s;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(12px, env(safe-area-inset-right));
}
.site-header.scrolled { top: 10px; background: rgba(247,251,250,.9); box-shadow: 0 16px 52px rgba(2,52,72,.15); }
.brand { display: flex; align-items: center; gap: 11px; min-width: 205px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font: 800 1.06rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.brand small { margin-top: 6px; color: var(--muted); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav > a { padding: 10px 12px; color: #365361; font-size: .86rem; font-weight: 600; border-radius: 11px; transition: color .25s, background .25s; }
.site-nav > a:hover, .site-nav > a:focus-visible { background: rgba(5,155,154,.08); color: var(--teal); }
.nav-cta { border: 0; border-radius: 13px; padding: 12px 15px; background: var(--ink); color: white; font-size: .83rem; font-weight: 700; cursor: pointer; }
.nav-cta span { color: var(--gold); margin-left: 8px; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--ink); padding: 12px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: white; border-radius: 2px; }

.hero { min-height: 100svh; width: min(1380px, calc(100% - 32px)); margin: 0 auto; padding: 160px clamp(8px, 4vw, 64px) 80px; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr); align-items: center; gap: clamp(20px, 5vw, 80px); position: relative; }
.hero-copy { position: relative; z-index: 2; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; margin-bottom: 34px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.56); color: #46616d; font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.status-pill span, .footer-status > span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(22,130,86,.12); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(22,130,86,0); } }
.eyebrow { margin: 0 0 16px; color: var(--teal); font-size: .75rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero-title { margin: 0; font: 500 clamp(3.45rem, 6.8vw, 7.7rem)/.92 var(--display); letter-spacing: -.065em; }
.title-line { display: block; }
.title-accent { font-weight: 800; background: linear-gradient(92deg, var(--navy), var(--teal) 45%, #04a985 66%, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: .07em; }
.hero-intro { max-width: 660px; margin: 30px 0; color: #46616e; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; border-radius: 15px; padding: 0 20px; font-weight: 700; font-size: .9rem; cursor: pointer; transition: transform .2s, box-shadow .25s, border-color .25s; }
.button-primary { border: 1px solid var(--ink); background: var(--ink); color: white; box-shadow: 0 14px 30px rgba(6,36,58,.2); }
.button-primary span { color: var(--gold); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.57); }
.button:hover { transform: translateY(-2px); }
.button-primary:hover { box-shadow: 0 18px 45px rgba(6,36,58,.27); }
.play { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; padding-left: 2px; background: var(--teal); color: white; font-size: .65rem; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { font: 700 .88rem/1.2 var(--display); }
.hero-meta span { margin-top: 6px; color: #6f848e; font-size: .72rem; }

.hero-art { min-height: 660px; position: relative; display: grid; place-items: center; transform-style: preserve-3d; }
.hero-halo { position: absolute; width: 74%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.92) 0 31%, rgba(75,209,197,.22) 56%, transparent 73%); filter: blur(2px); box-shadow: inset 0 0 60px rgba(255,255,255,.8), 0 50px 100px rgba(4,89,112,.14); animation: breathe 6s ease-in-out infinite; }
@keyframes breathe { 50% { transform: scale(1.06); filter: blur(7px); } }
.hero-logo-frame { position: relative; z-index: 3; width: min(84%, 610px); display: block; flex: 0 0 auto; transform: translateZ(45px); animation: markFloat 7s ease-in-out infinite; }
.hero-mark { display: block; width: 100%; height: auto !important; max-width: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 28px 46px rgba(3,55,79,.22)); }
@keyframes markFloat { 50% { transform: translateZ(45px) translateY(-12px) rotate(.6deg); } }
.sun-orbit { position: absolute; border: 1px solid rgba(5,155,154,.22); border-radius: 50%; }
.orbit-one { width: 93%; aspect-ratio: 1; border-left-color: transparent; border-bottom-color: rgba(245,182,45,.4); animation: orbit 22s linear infinite; }
.orbit-two { width: 69%; aspect-ratio: 1; border-right-color: transparent; border-top-color: rgba(207,36,65,.28); animation: orbit 15s linear reverse infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.art-note { position: absolute; z-index: 5; padding: 9px 13px; border: 1px solid rgba(255,255,255,.66); border-radius: 999px; background: rgba(255,255,255,.67); backdrop-filter: blur(10px); box-shadow: 0 12px 28px rgba(7,52,74,.11); color: #526a75; font-size: .75rem; font-weight: 700; }
.art-note span { color: var(--teal); margin-right: 6px; }
.note-one { left: 2%; top: 29%; }
.note-two { right: 0; top: 46%; }
.note-three { left: 12%; bottom: 16%; }
.art-caption { position: absolute; right: 2%; bottom: 11%; margin: 0; font: 700 .75rem/1.5 var(--display); letter-spacing: .13em; text-align: right; text-transform: uppercase; color: var(--navy); }
.scroll-cue { position: absolute; bottom: 23px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 10px; color: #70858f; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { display: block; width: 34px; height: 1px; background: var(--teal); position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: scan 2s infinite; }
@keyframes scan { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.marquee { overflow: hidden; padding: 17px 0; border-block: 1px solid rgba(255,255,255,.25); background: var(--ink); color: white; transform: rotate(-1.2deg) scale(1.02); }
.marquee-track { display: flex; align-items: center; gap: 32px; width: max-content; animation: marquee 30s linear infinite; font: 600 1rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding-block: clamp(96px, 13vw, 180px); }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 62px; color: #617782; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.section-label::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.section-label span { color: var(--teal); }
.section-label-light { color: rgba(255,255,255,.62); }
.section-label-light::after { background: rgba(255,255,255,.16); }
.section-heading h2, .care h2, .standard h2, .location h2, .closing h2 { margin: 0; font: 500 clamp(2.5rem, 5.5vw, 5.3rem)/1.03 var(--display); letter-spacing: -.055em; }
.vision-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(40px, 9vw, 130px); align-items: end; }
.vision-copy { color: #506a76; font-size: 1.05rem; }
.vision-copy p { margin: 0 0 1rem; }
.vision-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.vision-card { position: relative; min-height: 315px; padding: 26px; border: 1px solid rgba(255,255,255,.66); border-radius: 24px; background: rgba(255,255,255,.49); backdrop-filter: blur(14px); overflow: hidden; transition: transform .35s, background .35s, box-shadow .35s; }
.vision-card::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -90px; top: -90px; background: radial-gradient(circle, rgba(75,209,197,.23), transparent 70%); }
.vision-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.75); box-shadow: var(--shadow); }
.card-number { color: #81949d; font-size: .66rem; letter-spacing: .12em; }
.card-icon { margin: 42px 0 26px; color: var(--teal); font: 400 2.2rem/1 var(--display); }
.vision-card h3 { margin: 0 0 12px; font: 700 1.35rem/1.2 var(--display); }
.vision-card p { margin: 0; color: #617782; font-size: .9rem; }
.card-line { position: absolute; left: 26px; right: 26px; bottom: 24px; height: 2px; background: linear-gradient(90deg, var(--teal) 0 30%, rgba(5,155,154,.12) 30%); transition: background .35s; }
.vision-card:hover .card-line { background: linear-gradient(90deg, var(--gold), var(--teal)); }

.care { width: 100%; max-width: none; padding-inline: max(16px, calc((100vw - 1180px)/2)); background: linear-gradient(145deg, #052940 0%, #043b5f 48%, #006d78 100%); color: white; position: relative; overflow: hidden; }
.care::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 73% 30%, rgba(75,209,197,.2), transparent 25%), radial-gradient(circle at 12% 90%, rgba(245,182,45,.12), transparent 24%); }
.care-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.care-intro > p:last-child { max-width: 570px; color: rgba(255,255,255,.7); font-size: 1.02rem; }
.care h2 em { color: var(--aqua); }
.care-orbit { min-height: 520px; position: relative; display: grid; place-items: center; }
.care-core { width: 180px; height: 180px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.17); box-shadow: 0 0 90px rgba(75,209,197,.16); }
.care-core img { width: 150px; filter: drop-shadow(0 18px 25px rgba(0,0,0,.18)); }
.care-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.18); animation: orbit 28s linear infinite; }
.care-ring span { position: absolute; top: 50%; right: -34px; transform: translateY(-50%); padding: 7px 11px; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ring-a { width: 280px; height: 280px; }
.ring-b { width: 390px; height: 390px; animation-direction: reverse; animation-duration: 34s; }
.ring-b span { top: 20%; right: 8px; background: var(--aqua); }
.ring-c { width: 490px; height: 490px; animation-duration: 40s; }
.ring-c span { top: 81%; right: 35px; background: white; }
.care-explorer { position: relative; display: grid; grid-template-columns: .62fr 1.38fr; margin-top: 55px; border: 1px solid rgba(255,255,255,.15); border-radius: 26px; background: rgba(3,28,44,.27); backdrop-filter: blur(14px); overflow: hidden; }
.care-tabs { display: flex; flex-direction: column; padding: 10px; border-right: 1px solid rgba(255,255,255,.13); }
.care-tabs, .phase-nav { overscroll-behavior-inline: contain; scrollbar-width: thin; }
.care-tabs button { display: flex; gap: 20px; padding: 18px; border: 0; border-radius: 15px; background: transparent; color: rgba(255,255,255,.48); text-align: left; cursor: pointer; }
.care-tabs button span { color: white; font-weight: 700; }
.care-tabs button[aria-selected="true"] { background: rgba(255,255,255,.1); color: var(--aqua); }
.care-panel { min-height: 330px; padding: clamp(32px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; }
.panel-kicker { color: var(--aqua); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.care-panel h3, .phase-content h3 { margin: 14px 0; font: 600 clamp(1.8rem, 3.5vw, 3.5rem)/1.08 var(--display); letter-spacing: -.04em; }
.care-panel p { max-width: 650px; color: rgba(255,255,255,.66); }
.panel-meter { width: 100%; height: 2px; margin-top: 34px; background: rgba(255,255,255,.13); }
.panel-meter span { display: block; width: 25%; height: 100%; background: linear-gradient(90deg, var(--aqua), var(--gold)); transition: width .45s ease; }

.standard-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 150px); }
.standard-sticky { align-self: start; position: sticky; top: 130px; }
.standard-sticky > p:not(.eyebrow) { max-width: 430px; color: #58717c; }
.signature { margin-top: 44px; font: 700 1.08rem/1.4 var(--display); }
.signature span { display: block; color: var(--muted); font: 400 .74rem/1.4 var(--body); }
.standard-list { border-top: 1px solid var(--line); }
.standard-item { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 30px 6px; border-bottom: 1px solid var(--line); }
.standard-item > span { color: var(--teal); font-size: .72rem; font-weight: 700; }
.standard-item h3 { margin: 0 0 8px; font: 700 1.18rem/1.2 var(--display); }
.standard-item p { margin: 0; color: #657a84; font-size: .9rem; }

.principle { min-height: 80vh; position: relative; display: grid; place-items: center; overflow: hidden; color: white; background: #042b44; text-align: center; }
.principle::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(5,155,154,.38), transparent 36%), linear-gradient(150deg, transparent, rgba(0,0,0,.18)); }
.principle-rings span { position: absolute; left: 50%; top: 50%; width: 26vw; aspect-ratio: 1; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; animation: ripple 7s ease-out infinite; }
.principle-rings span:nth-child(2) { animation-delay: -2.3s; }
.principle-rings span:nth-child(3) { animation-delay: -4.6s; }
@keyframes ripple { 0% { transform: translate(-50%,-50%) scale(.6); opacity: 0; } 25% { opacity: 1; } 100% { transform: translate(-50%,-50%) scale(3.6); opacity: 0; } }
.principle-copy { position: relative; z-index: 2; padding: 40px 20px; }
.principle-copy > p { color: var(--aqua); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.principle blockquote { margin: 26px auto 30px; font: 500 clamp(2.6rem, 6.8vw, 7rem)/1.03 var(--display); letter-spacing: -.055em; }
.principle-copy > span { color: rgba(255,255,255,.62); }

.roadmap-top { display: grid; grid-template-columns: 1fr .55fr; gap: 60px; align-items: end; }
.roadmap-top > p { color: #5b737e; }
.roadmap-interactive { display: grid; grid-template-columns: .56fr .75fr 1.15fr; min-height: 440px; margin-top: 66px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.56); box-shadow: var(--shadow); overflow: hidden; }
.phase-nav { padding: 14px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.phase-nav button { display: flex; align-items: center; gap: 18px; padding: 18px; border: 0; border-radius: 15px; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.phase-nav button span { color: #8ba0aa; font-size: .7rem; }
.phase-nav button[aria-selected="true"] { background: var(--ink); color: white; }
.phase-nav button[aria-selected="true"] span { color: var(--gold); }
.phase-visual { position: relative; overflow: hidden; background: linear-gradient(180deg, #def7f4, #b5e7df); }
.phase-sun { position: absolute; left: 50%; top: 20%; width: 120px; height: 120px; transform: translateX(-50%); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 18px rgba(245,182,45,.13), 0 0 0 36px rgba(245,182,45,.08); transition: transform .5s, top .5s; }
.phase-sun span { position: absolute; inset: 50% auto auto 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.phase-landscape i { position: absolute; left: -30%; bottom: -35%; width: 160%; height: 65%; border-radius: 50% 50% 0 0; background: #168256; transform: rotate(6deg); }
.phase-landscape i:nth-child(2) { background: #0877aa; bottom: -47%; left: -60%; transform: rotate(-6deg); }
.phase-landscape i:nth-child(3) { background: #043b5f; bottom: -56%; left: -5%; transform: rotate(4deg); }
.phase-content { padding: clamp(34px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.phase-content .panel-kicker { color: var(--teal); }
.phase-content p { color: #5b737e; }

.location { padding-top: 0; }
.location-card { min-height: 600px; display: grid; grid-template-columns: 1.08fr .92fr; border-radius: 34px; overflow: hidden; background: var(--ink); color: white; box-shadow: var(--shadow); }
.location-map { min-height: 600px; position: relative; overflow: hidden; background: linear-gradient(160deg, #063a56, #075467); }
.location-map::before, .location-map::after { content: ""; position: absolute; width: 75%; height: 95%; border: 1px solid rgba(255,255,255,.12); border-radius: 53% 47% 40% 60%; left: 12%; top: 4%; transform: rotate(13deg); }
.location-map::after { width: 51%; height: 72%; left: 27%; top: 15%; transform: rotate(-12deg); border-color: rgba(75,209,197,.22); }
.map-river { position: absolute; inset: -15% 43% -15% 36%; border: 10px solid rgba(75,209,197,.44); border-block-color: transparent; border-radius: 50%; transform: rotate(18deg); filter: blur(1px); }
.map-point { position: absolute; left: 52%; top: 41%; display: flex; align-items: center; gap: 12px; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.map-point i { width: 16px; height: 16px; border: 4px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 11px rgba(245,182,45,.13); animation: pulseMap 2.5s infinite; }
@keyframes pulseMap { 70% { box-shadow: 0 0 0 25px rgba(245,182,45,0); } }
.map-label { position: absolute; color: rgba(255,255,255,.44); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.label-namibia { left: 14%; bottom: 18%; }
.label-river { right: 8%; top: 15%; transform: rotate(78deg); }
.location-copy { padding: clamp(38px, 6vw, 84px); display: flex; flex-direction: column; justify-content: center; }
.location-copy > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.text-link { align-self: flex-start; margin-top: 24px; padding: 0 0 7px; border: 0; border-bottom: 1px solid var(--aqua); background: transparent; color: white; font-weight: 700; cursor: pointer; }
.text-link span { margin-left: 10px; color: var(--gold); }

.closing { padding-top: 0; }
.closing-card { position: relative; min-height: 620px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; border-radius: 36px; overflow: hidden; text-align: center; background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow); }
.closing-card::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(75,209,197,.2), transparent 66%); animation: breathe 7s infinite; }
.closing-card > * { position: relative; }
.closing-card img { width: 180px; margin-bottom: 22px; filter: drop-shadow(0 22px 35px rgba(3,55,79,.17)); }
.closing-card p:not(.eyebrow) { max-width: 690px; color: #58717c; }
.closing-card .button { margin-top: 18px; }

.site-footer { padding: 58px max(24px, calc((100vw - 1180px)/2)) 28px; display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 40px; background: #031f32; color: white; }
.footer-brand, .footer-location, .footer-status { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 62px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font: 800 1.15rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.footer-brand span, .footer-location, .footer-status { color: rgba(255,255,255,.55); font-size: .73rem; }
.footer-brand span { margin-top: 7px; text-transform: uppercase; letter-spacing: .1em; }
.footer-location > span { color: var(--gold); font-size: 1.4rem; }
.footer-bottom { grid-column: 1/-1; display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.42); font-size: .68rem; }
.footer-bottom a { color: white; }

dialog { color: var(--ink); }
.journey-dialog, .film-dialog { width: min(560px, calc(100% - 28px)); max-height: calc(100svh - 28px); overflow: auto; overscroll-behavior: contain; padding: clamp(30px, 6vw, 58px); border: 1px solid rgba(255,255,255,.75); border-radius: 30px; background: rgba(247,251,250,.92); backdrop-filter: blur(24px); box-shadow: 0 40px 120px rgba(0,25,40,.36); }
dialog::backdrop { background: rgba(1,20,32,.68); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; right: 16px; top: 16px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: white; cursor: pointer; font-size: 1.4rem; }
.dialog-mark img { width: 116px; margin-bottom: 24px; }
.journey-dialog h2 { margin: 0; font: 600 clamp(2rem, 5vw, 3.4rem)/1.04 var(--display); letter-spacing: -.05em; }
.journey-dialog > p:not(.eyebrow) { color: #5b737e; }
.journey-dialog small { display: block; min-height: 1.2em; margin-top: 10px; color: var(--teal); }
.film-dialog { width: min(880px, calc(100% - 28px)); padding: 0; overflow: hidden; background: #042b44; color: white; }
.film-frame { min-height: 480px; position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 35%, rgba(75,209,197,.3), transparent 38%); }
.film-frame img { width: 300px; position: relative; z-index: 2; animation: markFloat 5s infinite; }
.film-frame p { position: absolute; z-index: 3; bottom: 25px; font: 700 2rem/1 var(--display); text-transform: uppercase; letter-spacing: .08em; }
.film-frame p span { color: var(--gold); }
.film-sun { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--gold); top: 7%; box-shadow: 0 0 0 30px rgba(245,182,45,.08), 0 0 0 60px rgba(245,182,45,.05); animation: breathe 6s infinite; }
.film-copy { padding: 28px 40px 38px; display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.film-copy p { max-width: 520px; margin: 0; color: rgba(255,255,255,.65); }
.film-copy strong { white-space: nowrap; color: var(--aqua); font-size: .73rem; text-transform: uppercase; letter-spacing: .13em; }

@supports not (overflow: clip) {
  html { overflow-x: hidden; }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header, .site-nav, .vision-card, .journey-dialog { background: rgba(247,251,250,.97); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 980px) {
  .site-nav { position: absolute; left: 0; right: 0; top: calc(100% + 8px); padding: 12px; display: none; flex-direction: column; align-items: stretch; border: 1px solid rgba(255,255,255,.7); border-radius: 20px; background: rgba(247,251,250,.96); backdrop-filter: blur(20px); box-shadow: var(--shadow); }
  .site-nav { max-height: calc(100svh - 92px); overflow-y: auto; overscroll-behavior: contain; }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-art { min-height: 560px; order: -1; margin-bottom: -80px; }
  .hero-logo-frame { width: min(76%, 520px); }
  .note-one { left: 9%; }
  .note-two { right: 7%; }
  .vision-grid, .care-layout, .standard-grid, .roadmap-top { grid-template-columns: 1fr; }
  .care-orbit { min-height: 500px; }
  .standard-sticky { position: static; }
  .roadmap-interactive { grid-template-columns: .65fr 1fr; }
  .phase-visual { display: none; }
  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 420px; }
}

@media (max-width: 720px) {
  html, body { touch-action: pan-y pinch-zoom; }
  body::before { position: absolute; background-size: cover; animation: none; }
  #flow-field, .ambient, .grain { display: none; }
  .site-header, .site-nav, .vision-card, .care-explorer, .roadmap-interactive, .journey-dialog, .art-note { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header { background: rgba(247,251,250,.97); }
  .site-nav { background: rgba(247,251,250,.99); }
  .hero-logo-frame, .hero-halo, .sun-orbit, .care-ring, .principle-rings span, .closing-card::before, .status-pill span, .footer-status > span { animation: none; }
  .hero-logo-frame { transform: none; }
  .hero-mark { filter: drop-shadow(0 18px 26px rgba(3,55,79,.16)); }
  .marquee-track { animation-duration: 55s; }
  .reveal { transition-duration: .55s; }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand small { display: none; }
  .hero { width: calc(100% - 24px); padding-inline: 0; padding-top: 116px; }
  .hero-art { min-height: 390px; margin-bottom: -35px; }
  .hero-logo-frame { width: min(78vw, 430px); max-width: 100%; }
  .hero-halo { width: 85%; }
  .hero-title { font-size: clamp(3.25rem, 15.5vw, 5.4rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 7px; }
  .hero-meta strong { font-size: .75rem; }
  .hero-meta span { font-size: .61rem; }
  .art-note { font-size: .62rem; }
  .note-three { bottom: 9%; }
  .art-caption, .scroll-cue { display: none; }
  .section-shell { width: calc(100% - 24px); padding-block: 100px; }
  .section-label { margin-bottom: 42px; }
  .section-heading h2, .care h2, .standard h2, .location h2, .closing h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .vision-panels { grid-template-columns: 1fr; }
  .vision-card { min-height: 280px; }
  .care { width: 100%; padding-inline: 12px; }
  .care-orbit { min-height: 400px; transform: scale(.78); }
  .care-explorer { grid-template-columns: 1fr; }
  .care-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .care-tabs button { min-width: 118px; flex-direction: column; gap: 4px; padding: 13px; }
  .care-panel { min-height: 290px; }
  .principle { min-height: 70vh; }
  .principle blockquote { font-size: clamp(2.35rem, 12vw, 4.5rem); }
  .roadmap-interactive { grid-template-columns: 1fr; }
  .phase-nav { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .phase-nav button { min-width: 122px; flex-direction: column; gap: 5px; }
  .phase-content { min-height: 310px; }
  .location-map { min-height: 350px; }
  .closing-card { min-height: 580px; padding-inline: 25px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .film-frame { min-height: 390px; }
  .film-frame img { width: 250px; }
  .film-copy { flex-direction: column; align-items: start; }
}

@media (max-width: 420px) {
  .site-header { padding-left: 11px; padding-right: 9px; }
  .brand { min-width: 0; }
  .brand img { width: 43px; height: 43px; }
  .brand strong { font-size: .92rem; letter-spacing: .06em; }
  .menu-toggle { width: 44px; height: 44px; flex: 0 0 auto; }
  .hero { width: calc(100% - 20px); }
  .hero-art { min-height: 350px; }
  .hero-title { font-size: clamp(2.85rem, 14.5vw, 4rem); }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta div:last-child { grid-column: 1 / -1; }
  .hero-logo-frame { width: min(76vw, 320px); max-width: calc(100% - 20px); }
  .note-one { left: 0; }
  .note-two { right: 0; }
  .note-three { left: 5%; }
  .care-orbit { min-height: 330px; transform: scale(.65); margin: -40px 0; }
  .care-panel, .phase-content { padding: 28px 22px; }
  .principle blockquote { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .location-copy { padding: 36px 24px; }
  .closing-card { padding: 48px 20px; }
  .journey-dialog { padding: 44px 24px 28px; }
  .film-frame { min-height: 320px; }
  .film-frame img { width: 205px; }
  .film-frame p { font-size: 1.35rem; }
  .film-copy { padding: 24px; }
  .film-copy strong { white-space: normal; }
}

@media (max-width: 340px) {
  .brand span { display: none; }
  .hero-title { font-size: 2.8rem; }
  .art-note { display: none; }
  .hero-art { min-height: 300px; }
  .button { padding-inline: 15px; }
}

@media (orientation: landscape) and (max-height: 560px) and (max-width: 980px) {
  .site-header { top: 6px; }
  .hero { padding-top: 96px; }
  .hero-art { min-height: 310px; margin-bottom: -30px; }
  .hero-logo-frame { width: min(54%, 350px); }
  .journey-dialog, .film-dialog { max-height: calc(100svh - 12px); }
  .film-dialog { width: min(900px, calc(100% - 18px)); }
  .film-frame { min-height: 70vh; }
}

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