:root {
    --night: #06130d;
    --night-soft: #0a2417;
    --paper: #f2f5f0;
    --white: #fff;
    --ink: #122018;
    --copy: #66756c;
    --line: #dce5dd;
    --green: #15934a;
    --green-bright: #46d17f;
    --yellow: #f0df29;
    --display: "Plus Jakarta Sans", sans-serif;
    --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 400 13px/1.6 var(--body);
    -webkit-font-smoothing: antialiased;
}
body.canvas-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.skip-link {
    position: fixed;
    left: 18px;
    top: -60px;
    z-index: 200;
    padding: 10px 14px;
    color: #fff;
    background: var(--green);
    border-radius: 8px;
}
.skip-link:focus { top: 18px; }

.site-header {
    position: absolute;
    z-index: 60;
    left: 50%;
    top: 0;
    width: min(1420px, calc(100% - 40px));
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: #fff;
    transform: translateX(-50%);
}
.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand img { width: 62px; height: 54px; object-fit: contain; }
.brand span,
.footer-brand span { display: flex; flex-direction: column; }
.brand strong,
.footer-brand strong { font: 700 15px/1 var(--display); letter-spacing: .12em; }
.brand small,
.footer-brand small { margin-top: 5px; color: #8ba095; font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    backdrop-filter: blur(14px);
}
.main-nav a {
    min-width: 72px;
    padding: 8px 13px;
    color: #8fa499;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a.is-active { color: #fff; background: var(--green); box-shadow: inset 0 -2px 0 var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.module-button {
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    color: #d0dcd5;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 9px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.module-button i { color: var(--yellow); }
.menu-toggle { display: none; }

.intro-section {
    min-height: 100svh;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(560px, 1.14fr);
    align-items: center;
    gap: clamp(48px, 7vw, 115px);
    padding: 125px max(40px, calc((100vw - 1360px) / 2)) 72px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 26% 48%, rgba(48, 189, 105, .12), transparent 29%),
        var(--night);
}
.intro-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, #000, transparent 72%);
}
.intro-copy { position: relative; z-index: 2; max-width: 640px; }
.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #91a69a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow i { width: 27px; height: 1px; background: linear-gradient(90deg, var(--yellow) 0 38%, var(--green-bright) 38%); }
.intro-copy h1 {
    margin: 22px 0 20px;
    font: 600 clamp(48px, 5.5vw, 84px)/.96 var(--display);
    letter-spacing: -.065em;
}
.intro-copy h1 em { color: var(--green-bright); font-style: normal; }
.intro-copy > p { max-width: 520px; margin: 0; color: #9db0a5; font-size: 14px; line-height: 1.75; }
.intro-actions { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.primary-action {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 18px;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 9px;
    box-shadow: 0 14px 34px rgba(21, 147, 74, .2);
    font-size: 10px;
    font-weight: 700;
}
.primary-action i { color: var(--yellow); }
.quiet-action { min-height: 44px; padding: 0 17px; color: #d3ddd7; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .1); border-radius: 9px; font-size: 10px; font-weight: 700; }
.intro-stats { display: flex; gap: clamp(30px, 4vw, 55px); margin-top: 48px; }
.intro-stats div { display: flex; flex-direction: column; gap: 4px; }
.intro-stats strong { font: 600 19px/1 var(--display); }
.intro-stats span { color: #71877b; font-size: 7px; letter-spacing: .11em; text-transform: uppercase; }
.intro-visual {
    position: relative;
    height: min(700px, calc(100svh - 150px));
    min-height: 540px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 28px;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .38);
}
.campus-album {
    --lake-shape: polygon(7% 4%, 29% 1%, 51% 4%, 73% 2%, 91% 8%, 98% 24%, 96% 46%, 99% 68%, 92% 87%, 76% 97%, 55% 95%, 35% 99%, 16% 94%, 3% 81%, 5% 61%, 1% 42%, 4% 20%);
    isolation: isolate;
    overflow: visible;
    perspective: 1400px;
    background: transparent;
    border: 0;
    box-shadow: none;
    filter: drop-shadow(0 34px 44px rgba(0, 0, 0, .34));
}
.album-plate {
    position: absolute;
    inset: 0;
    clip-path: var(--lake-shape);
    pointer-events: none;
}
.plate-one { z-index: 0; background: linear-gradient(145deg, #0c6135, #073a23); transform: translate(24px, 16px) rotate(2.1deg) scale(.985); animation: lake-layer-one 7s ease-in-out infinite; }
.plate-two { z-index: 1; background: linear-gradient(145deg, #fff153, #c4ac05); transform: translate(-18px, 12px) rotate(-1.7deg) scale(.988); animation: lake-layer-two 8.5s ease-in-out infinite; }
.plate-three { z-index: 2; background: linear-gradient(145deg, #6be398, #15934a); transform: translate(7px, -17px) rotate(.8deg) scale(.99); opacity: .96; animation: lake-layer-three 9.5s ease-in-out infinite; }
.album-slides { position: absolute; inset: 0; z-index: 3; overflow: hidden; clip-path: var(--lake-shape); background: #0c2619; }
.album-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform-origin: center;
}
.album-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3, 18, 10, .94) 0%, rgba(3, 18, 10, .35) 43%, rgba(3, 18, 10, .06) 72%), linear-gradient(110deg, rgba(4, 22, 12, .28), transparent 60%); }
.album-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.album-slide.is-active { z-index: 2; opacity: 1; pointer-events: auto; }
.album-slide.is-active img { animation: album-ken-burns 6.4s ease-out both; }
.album-slide.is-leaving { z-index: 1; opacity: 1; animation: album-leave .8s cubic-bezier(.55, 0, .3, 1) both; }
.album-wipe.is-active { animation: album-wipe-in 1s cubic-bezier(.22, 1, .36, 1) both; }
.album-fold.is-active { animation: album-fold-in 1s cubic-bezier(.22, 1, .36, 1) both; }
.album-zoom.is-active { animation: album-zoom-in 1s cubic-bezier(.22, 1, .36, 1) both; }
.album-caption { position: absolute; z-index: 3; left: clamp(22px, 5vw, 48px); right: 125px; bottom: 105px; color: #fff; }
.album-caption span { color: var(--yellow); font-size: 7px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.album-caption strong { display: block; max-width: 420px; margin-top: 9px; font: 650 clamp(24px, 3.2vw, 40px)/1.05 var(--display); letter-spacing: -.045em; }
.album-caption small { display: block; max-width: 400px; margin-top: 10px; color: #c1d0c7; font-size: 9px; line-height: 1.6; }
.album-slide.is-active .album-caption > * { animation: album-copy-in .8s .25s cubic-bezier(.22, 1, .36, 1) both; }
.album-slide.is-active .album-caption strong { animation-delay: .34s; }
.album-slide.is-active .album-caption small { animation-delay: .42s; }
.visual-badge {
    position: absolute;
    left: 22px;
    top: 22px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    background: rgba(5, 25, 15, .8);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    backdrop-filter: blur(16px);
}
.badge-mark { position: relative; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(74, 211, 128, .35); border-radius: 50%; }
.badge-mark i:first-child { width: 8px; height: 8px; background: var(--green-bright); border-radius: 50%; box-shadow: 0 0 12px var(--green-bright); }
.badge-mark i:last-child { position: absolute; inset: -5px; border: 1px solid rgba(240, 223, 41, .22); border-radius: 50%; animation: badge-pulse 2.8s ease-out infinite; }
.visual-badge div { display: flex; flex-direction: column; }
.visual-badge small { color: #7f9588; font-size: 7px; text-transform: uppercase; letter-spacing: .08em; }
.visual-badge strong { margin-top: 3px; font: 600 10px/1 var(--display); }
.album-thumbs { position: absolute; z-index: 7; right: 18px; top: 50%; display: grid; gap: 9px; transform: translateY(-50%); }
.album-thumb { position: relative; width: 69px; height: 82px; padding: 0; overflow: hidden; opacity: .55; background: #092016; border: 1px solid rgba(255, 255, 255, .22); border-radius: 11px; box-shadow: 0 9px 25px rgba(0, 0, 0, .2); transform: translateX(20px) scale(.88); transition: opacity .3s ease, transform .45s cubic-bezier(.22, 1, .36, 1), border-color .3s ease; }
.album-thumb img { width: 100%; height: 100%; object-fit: cover; }
.album-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3, 18, 10, .8), transparent 60%); }
.album-thumb span { position: absolute; z-index: 2; left: 8px; bottom: 6px; color: #fff; font: 700 8px/1 var(--display); }
.album-thumb:hover { opacity: .85; transform: translateX(8px) scale(.95); }
.album-thumb.is-active { opacity: 1; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(240, 223, 41, .12), 0 12px 28px rgba(0, 0, 0, .32); transform: translateX(0) scale(1); }
.album-controls { position: absolute; z-index: 8; left: 22px; right: 22px; bottom: 20px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 12px; }
.album-counter { display: flex; align-items: baseline; gap: 5px; min-width: 48px; color: #fff; }
.album-counter strong { font: 650 17px/1 var(--display); }
.album-counter span { color: #82988b; font-size: 8px; }
.album-timer { height: 2px; overflow: hidden; background: rgba(255, 255, 255, .18); border-radius: 99px; }
.album-timer i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--green-bright), var(--yellow)); transform-origin: left; animation: album-timer 6s linear infinite; }
.campus-album.is-paused .album-timer i { animation-play-state: paused; }
.album-controls button { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: rgba(5, 25, 15, .72); border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; backdrop-filter: blur(12px); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.album-controls button:hover { background: var(--green); border-color: var(--green-bright); transform: translateY(-2px); }
@keyframes album-wipe-in { from { clip-path: inset(0 100% 0 0 round 28px); transform: translateX(5%); } to { clip-path: inset(0 round 28px); transform: none; } }
@keyframes album-fold-in { from { clip-path: polygon(0 0, 8% 0, 0 100%, 0 100%); transform: rotateY(-9deg) scale(.96); filter: saturate(.6); } to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: none; filter: saturate(1); } }
@keyframes album-zoom-in { from { opacity: 0; transform: scale(1.14) rotate(1deg); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes album-leave { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(.94) rotate(-1deg); filter: blur(4px); } }
@keyframes album-ken-burns { from { transform: scale(1.08); } to { transform: scale(1.16) translate3d(-1.5%, -1%, 0); } }
@keyframes album-copy-in { from { opacity: 0; transform: translateY(22px); filter: blur(4px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes album-timer { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes lake-layer-one { 0%, 100% { transform: translate(24px, 16px) rotate(2.1deg) scale(.985); } 50% { transform: translate(28px, 12px) rotate(2.8deg) scale(.98); } }
@keyframes lake-layer-two { 0%, 100% { transform: translate(-18px, 12px) rotate(-1.7deg) scale(.988); } 50% { transform: translate(-22px, 16px) rotate(-2.3deg) scale(.982); } }
@keyframes lake-layer-three { 0%, 100% { transform: translate(7px, -17px) rotate(.8deg) scale(.99); } 50% { transform: translate(11px, -20px) rotate(1.2deg) scale(.984); } }

.services-section { position: relative; padding: 115px max(30px, calc((100vw - 1320px) / 2)) 130px; overflow: hidden; }
.services-section::before { content: ""; position: absolute; width: 620px; height: 620px; right: -250px; top: 80px; border: 1px solid rgba(30, 133, 70, .06); border-radius: 50%; box-shadow: 0 0 0 70px rgba(30, 133, 70, .018), 0 0 0 140px rgba(30, 133, 70, .012); }
.section-intro { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 62px; }
.section-tag { color: #2c8452; }
.section-intro h2,
.support-scene-copy h2 {
    max-width: 730px;
    margin: 11px 0 0;
    font: 600 clamp(38px, 4.6vw, 62px)/1.01 var(--display);
    letter-spacing: -.055em;
}
.section-intro > p { max-width: 430px; margin: 0 0 4px; color: var(--copy); font-size: 11px; }
.service-constellation { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; }
.constellation-lines { position: absolute; inset: 8% 8%; z-index: 0; opacity: .5; background: linear-gradient(35deg, transparent 49.8%, rgba(41, 150, 84, .13) 50%, transparent 50.2%), linear-gradient(-28deg, transparent 49.8%, rgba(218, 190, 45, .12) 50%, transparent 50.2%); pointer-events: none; }
.service-orb { position: relative; z-index: 1; min-height: 155px; }
.orb-link {
    position: relative;
    height: 100%;
    min-height: 155px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 17px;
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    border: 1px solid #dce5dd;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(16, 54, 31, .055);
    backdrop-filter: blur(12px);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.orb-link::before { content: ""; position: absolute; inset: 0; opacity: .8; background: radial-gradient(circle at 0 100%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 38%); }
.orb-link:hover { z-index: 3; border-color: color-mix(in srgb, var(--accent) 45%, #dce5dd); box-shadow: 0 22px 50px rgba(16, 54, 31, .11); transform: translateY(-5px); }
.orb-rings { position: absolute; left: -65px; bottom: -78px; width: 180px; height: 180px; border: 1px solid color-mix(in srgb, var(--accent) 14%, transparent); border-radius: 50%; box-shadow: 0 0 0 26px color-mix(in srgb, var(--accent) 3%, transparent), 0 0 0 52px color-mix(in srgb, var(--accent) 2%, transparent); }
.orb-icon {
    position: relative;
    isolation: isolate;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: color-mix(in srgb, var(--accent) 82%, #163523);
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent) 32%, #e2e8e3);
    border-radius: 50%;
    box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 5%, transparent), 0 9px 22px color-mix(in srgb, var(--accent) 15%, rgba(12, 43, 25, .09));
    font-size: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}
.orb-icon::before,
.orb-icon::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -2px;
    border: 2px solid color-mix(in srgb, var(--accent) 65%, transparent);
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    animation: icon-live-wave 2.8s cubic-bezier(.2, .7, .25, 1) infinite;
    animation-delay: var(--delay);
}
.orb-icon::after {
    animation-delay: calc(var(--delay) + 1.4s);
}
.orb-icon > i {
    position: relative;
    z-index: 2;
    animation: icon-symbol-float 3.2s ease-in-out infinite;
    animation-delay: var(--delay);
}
.orb-link:hover .orb-icon {
    box-shadow: 0 0 0 9px color-mix(in srgb, var(--accent) 8%, transparent), 0 13px 28px color-mix(in srgb, var(--accent) 24%, rgba(12, 43, 25, .12));
    transform: scale(1.1) rotate(-4deg);
}
@keyframes icon-live-wave {
    0% { opacity: 0; transform: scale(.82); }
    15% { opacity: .68; }
    75%, 100% { opacity: 0; transform: scale(1.72); }
}
@keyframes icon-symbol-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
.orb-copy { position: relative; display: flex; flex-direction: column; gap: 6px; }
.orb-copy strong { font: 600 15px/1.1 var(--display); letter-spacing: -.025em; }
.orb-copy small { max-width: 190px; color: #738178; font-size: 8px; line-height: 1.4; }
.orb-launch { position: relative; width: 28px; height: 28px; display: grid; place-items: center; color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 28%, #dce5dd); border-radius: 50%; }
.orb-launch i { transform: rotate(45deg); }
.orb-info { position: absolute; z-index: 5; right: 12px; bottom: 10px; min-height: 24px; display: inline-flex; align-items: center; gap: 5px; padding: 0 8px; color: #58685e; background: rgba(242, 246, 242, .95); border: 1px solid #dbe3dc; border-radius: 999px; font-size: 7px; font-weight: 700; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.orb-info:hover { color: #fff; background: var(--green); border-color: var(--green); }

.water-awakening {
    position: relative;
    min-height: 280px;
    display: grid;
    grid-template-columns: minmax(230px, .78fr) 1.22fr 190px;
    align-items: center;
    gap: 20px;
    margin: 52px 0 0;
    padding: 28px 26px 26px 34px;
    overflow: visible;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.water-awakening::before { content: ""; position: absolute; left: 18%; right: 7%; bottom: 12px; height: 105px; opacity: .45; background: radial-gradient(ellipse at center, rgba(34, 166, 126, .13), transparent 68%); filter: blur(17px); pointer-events: none; }
.water-message { position: relative; z-index: 6; align-self: center; }
.water-message > span { color: var(--yellow); font-size: 7px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.water-message > strong { display: block; max-width: 290px; margin-top: 9px; font: 600 clamp(23px, 2.4vw, 32px)/1.06 var(--display); letter-spacing: -.045em; }
.water-message > small { display: block; max-width: 310px; margin-top: 14px; color: #718078; font-size: 9px; line-height: 1.65; }
.water-scene { position: absolute; z-index: 2; inset: -12px 65px -18px 22%; overflow: visible; pointer-events: none; }
.water-glimmer { position: absolute; left: 0; right: 0; bottom: 38px; height: 3px; opacity: .5; background: linear-gradient(90deg, transparent, rgba(26, 143, 115, .38) 22%, rgba(219, 255, 247, .95) 58%, transparent); filter: blur(.4px); transform: scaleX(.25); transform-origin: left; }
.water-awakening.is-visible .water-glimmer { animation: water-glimmer 6s .35s ease-in-out infinite; }
.water-current {
    position: absolute;
    left: -72%;
    bottom: -38px;
    width: 58%;
    height: 105px;
    border-radius: 44% 56% 18% 24% / 63% 69% 31% 37%;
    transform: translateX(0) rotate(3deg);
    box-shadow: inset 0 15px 22px rgba(223, 255, 248, .2), inset 0 -20px 28px rgba(4, 77, 65, .18);
    filter: drop-shadow(0 14px 18px rgba(13, 99, 77, .16));
}
.water-current::before { content: ""; position: absolute; left: 7%; top: -18px; width: 78%; height: 45px; border: 3px solid rgba(238, 255, 251, .78); border-color: rgba(238, 255, 251, .78) transparent transparent; border-radius: 50%; box-shadow: 0 -4px 10px rgba(180, 255, 238, .28); transform: rotate(-5deg); animation: foam-breathe 1.15s ease-in-out infinite; }
.current-deep { z-index: 1; height: 125px; opacity: .46; background: radial-gradient(ellipse at 68% 2%, rgba(224, 255, 248, .52), transparent 24%), linear-gradient(162deg, rgba(26, 151, 121, .82), rgba(5, 79, 68, .86)); }
.current-mid { z-index: 2; bottom: -48px; opacity: .62; background: radial-gradient(ellipse at 61% 0%, rgba(237, 255, 251, .74), transparent 29%), linear-gradient(162deg, rgba(58, 203, 166, .88), rgba(9, 107, 88, .92)); }
.current-mid::after { content: ""; position: absolute; left: 18%; right: 16%; top: 4px; height: 24px; opacity: .68; background: radial-gradient(circle, rgba(255, 255, 255, .95) 0 2px, transparent 3px) 0 0 / 24px 17px, radial-gradient(circle, rgba(211, 255, 245, .8) 0 1.5px, transparent 2.5px) 9px 5px / 19px 15px; filter: blur(.2px); animation: foam-drift 1.8s linear infinite; }
.current-light { z-index: 3; bottom: -57px; height: 82px; opacity: .82; background: radial-gradient(ellipse at 55% 0%, rgba(255, 255, 255, .92) 0 4%, rgba(163, 255, 232, .56) 19%, transparent 39%), linear-gradient(168deg, rgba(115, 239, 209, .92), rgba(23, 167, 128, .95) 58%, rgba(9, 103, 83, .94)); }
.current-light::after { content: ""; position: absolute; right: 5%; top: -43px; width: 70px; height: 70px; border: 10px solid rgba(238, 255, 251, .72); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; box-shadow: 10px -7px 16px rgba(144, 255, 226, .18); transform: rotate(-28deg); animation: wave-curl 1.25s ease-in-out infinite; }
.water-awakening.is-visible .current-deep { animation: water-cross 6s .12s cubic-bezier(.35, .04, .32, 1) infinite; }
.water-awakening.is-visible .current-mid { animation: water-cross 6s .32s cubic-bezier(.35, .04, .32, 1) infinite; }
.water-awakening.is-visible .current-light { animation: water-cross 6s .52s cubic-bezier(.35, .04, .32, 1) infinite; }
.water-drop { position: absolute; z-index: 4; width: 8px; height: 13px; opacity: 0; background: #a9ffe9; border-radius: 65% 35% 60% 40%; box-shadow: 0 0 12px rgba(124, 255, 224, .45); }
.drop-one { right: 200px; bottom: 78px; }
.drop-two { right: 165px; bottom: 56px; width: 5px; height: 9px; }
.drop-three { right: 225px; bottom: 48px; width: 6px; height: 10px; }
.water-awakening.is-visible .drop-one { animation: water-drop-cycle 6s .12s ease-out infinite; }
.water-awakening.is-visible .drop-two { animation: water-drop-cycle 6s .3s ease-out infinite; }
.water-awakening.is-visible .drop-three { animation: water-drop-cycle 6s .48s ease-out infinite; }
.water-logo { position: relative; z-index: 7; grid-column: 3; display: grid; justify-items: center; }
.water-logo-image { position: relative; width: 160px; height: 158px; display: grid; place-items: center; }
.water-logo-image img { width: 150px; max-height: 145px; object-fit: contain; }
.logo-monochrome { opacity: .58; filter: grayscale(1) contrast(1.35) brightness(.72) drop-shadow(0 18px 24px rgba(11, 50, 31, .2)); }
.logo-color-rise { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; clip-path: inset(100% 0 0); filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .32)); }
.water-awakening.is-visible .logo-color-rise { animation: logo-water-cycle 6s .12s cubic-bezier(.22, 1, .36, 1) infinite; }
.logo-impact { position: absolute; z-index: -1; width: 128px; height: 128px; top: 10px; left: 50%; opacity: 0; border: 2px solid rgba(100, 255, 215, .52); border-radius: 50%; transform: translateX(-50%) scale(.55); }
.water-awakening.is-visible .logo-impact { animation: logo-impact-cycle 6s .12s ease-out infinite; }
.logo-state { margin-top: -6px; color: #718078; font-size: 7px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; transition: color .8s ease; }
.water-awakening.is-visible .logo-state { animation: logo-state-cycle 6s .12s ease infinite; }
@keyframes water-cross { 0% { transform: translateX(0) rotate(3deg) scaleY(.82); } 18% { transform: translateX(55%) rotate(-2deg) scaleY(1.06); } 38% { transform: translateX(128%) rotate(2deg) scaleY(.9); } 57% { transform: translateX(208%) rotate(-1deg) scaleY(1.08); } 73% { transform: translateX(292%) rotate(2deg) scaleY(.88); } 86%, 100% { transform: translateX(355%) rotate(-1deg) scaleY(.82); } }
@keyframes water-glimmer { 0%, 100% { opacity: 0; transform: scaleX(.18); } 45% { opacity: .7; transform: scaleX(.72); } 75% { opacity: .15; transform: scaleX(1); } }
@keyframes water-drop-cycle { 0%, 49%, 74%, 100% { opacity: 0; transform: translate(0, 12px) rotate(35deg) scale(.5); } 57% { opacity: .9; } 69% { opacity: 0; transform: translate(18px, -38px) rotate(35deg) scale(1); } }
@keyframes logo-water-cycle { 0%, 46% { clip-path: inset(100% 0 0); filter: saturate(.2) drop-shadow(0 14px 18px rgba(0, 0, 0, .28)); } 64%, 72% { clip-path: inset(0); filter: saturate(1.08) drop-shadow(0 0 24px rgba(79, 221, 133, .24)); } 87%, 100% { clip-path: inset(100% 0 0); filter: saturate(.2) drop-shadow(0 14px 18px rgba(0, 0, 0, .28)); } }
@keyframes logo-impact-cycle { 0%, 48%, 76%, 100% { opacity: 0; transform: translateX(-50%) scale(.55); } 56% { opacity: .7; } 72% { opacity: 0; transform: translateX(-50%) scale(1.48); } }
@keyframes logo-state-cycle { 0%, 49%, 87%, 100% { color: #718078; text-shadow: none; } 62%, 73% { color: #998900; text-shadow: 0 0 14px rgba(240, 223, 41, .22); } }
@keyframes foam-breathe { 0%, 100% { transform: rotate(-5deg) scaleX(.9) translateY(2px); opacity: .58; } 50% { transform: rotate(-2deg) scaleX(1.05) translateY(-3px); opacity: 1; } }
@keyframes foam-drift { from { background-position: 0 0, 9px 5px; } to { background-position: 48px -3px, 47px 7px; } }
@keyframes wave-curl { 0%, 100% { transform: rotate(-30deg) scale(.9); opacity: .62; } 50% { transform: rotate(-20deg) scale(1.08); opacity: .95; } }

.support-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(55px, 8vw, 115px); padding: 110px max(35px, calc((100vw - 1280px) / 2)); background: #e7ede7; border-top: 1px solid #d7e0d8; }
.support-scene { position: relative; min-height: 570px; overflow: hidden; border-radius: 23px; box-shadow: 0 30px 75px rgba(14, 48, 27, .17); }
.support-scene::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 24, 14, .9), transparent 54%); }
.support-scene img { width: 100%; height: 100%; object-fit: cover; }
.support-scene-copy { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 27px; color: #fff; }
.support-scene-copy > span { color: var(--yellow); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.support-scene-copy h2 { margin-top: 10px; font-size: clamp(32px, 4vw, 49px); }
.support-scene-copy p { max-width: 500px; margin: 13px 0 0; color: #b0c3b6; font-size: 10px; }
.zumis-showcase {
    position: relative;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 42px 36px 36px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 50% 34%, rgba(240, 223, 41, .12), transparent 31%),
        radial-gradient(circle at 15% 70%, rgba(70, 209, 127, .13), transparent 36%),
        linear-gradient(145deg, #092619, #06130d 66%);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    box-shadow: 0 32px 80px rgba(6, 31, 17, .25), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.showcase-aura {
    position: absolute;
    width: 390px;
    height: 390px;
    top: 35px;
    left: 50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 223, 41, .14), rgba(21, 147, 74, .07) 42%, transparent 70%);
    filter: blur(18px);
    transform: translateX(-50%);
    animation: showcase-aura 4.6s ease-in-out infinite;
}
.logo-stage { position: relative; width: 310px; height: 310px; display: grid; place-items: center; }
.logo-orbit { position: absolute; left: 50%; top: 50%; border-radius: 50%; transform-origin: center; }
.orbit-green {
    width: 280px;
    height: 280px;
    margin: -140px;
    border: 2px dashed rgba(70, 209, 127, .48);
    box-shadow: 0 0 22px rgba(70, 209, 127, .12), inset 0 0 22px rgba(70, 209, 127, .08);
    animation: logo-revolve 16s linear infinite;
}
.orbit-yellow {
    width: 235px;
    height: 235px;
    margin: -117.5px;
    border: 1px solid rgba(240, 223, 41, .4);
    box-shadow: 0 0 0 9px rgba(240, 223, 41, .025), 0 0 28px rgba(240, 223, 41, .11);
    animation: logo-revolve-reverse 11s linear infinite;
}
.orbit-yellow::before,
.orbit-yellow::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 16px var(--yellow);
}
.orbit-yellow::before { left: 25px; top: 24px; }
.orbit-yellow::after { right: 18px; bottom: 35px; background: var(--green-bright); box-shadow: 0 0 16px var(--green-bright); }
.orbit-star { position: absolute; z-index: 3; width: 5px; height: 5px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px #fff; animation: star-pulse 2.2s ease-in-out infinite; }
.star-one { left: 10px; top: 51%; }
.star-two { right: 18px; top: 25%; animation-delay: 1.1s; }
.showcase-logo {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    display: grid;
    place-items: center;
    padding: 15px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025) 64%);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .34), 0 0 52px rgba(240, 223, 41, .1), inset 0 0 30px rgba(255, 255, 255, .05);
    animation: logo-float 4.2s ease-in-out infinite;
}
.showcase-logo img { width: 170px; max-height: 160px; object-fit: contain; filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .28)); }
.feature-reveal { position: relative; z-index: 3; width: min(410px, 100%); margin-top: 12px; text-align: center; }
.feature-kicker { color: var(--yellow); font-size: 7px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.feature-stream { position: relative; height: 78px; margin-top: 13px; overflow: hidden; }
.feature-line {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0;
    opacity: 0;
    transform: translateY(24px);
    animation: feature-pass 16s cubic-bezier(.22, 1, .36, 1) infinite;
    animation-delay: var(--feature-delay);
}
.feature-line > i { width: 38px; height: 38px; display: grid; flex: 0 0 auto; place-items: center; color: var(--yellow); background: rgba(240, 223, 41, .07); border: 1px solid rgba(240, 223, 41, .16); border-radius: 50%; box-shadow: 0 0 18px rgba(240, 223, 41, .08); }
.feature-line > span { display: flex; flex-direction: column; gap: 5px; text-align: left; }
.feature-line strong { font: 600 15px/1.1 var(--display); }
.feature-line small { color: #91a99b; font-size: 8px; }
.feature-progress { display: flex; justify-content: center; gap: 5px; margin-top: 3px; }
.feature-progress i { width: 18px; height: 2px; overflow: hidden; background: rgba(255, 255, 255, .14); border-radius: 99px; }
.feature-progress i::after { content: ""; display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--green-bright), var(--yellow)); transform: translateX(-100%); animation: feature-meter 16s linear infinite; }
.feature-progress i:nth-child(2)::after { animation-delay: 4s; }
.feature-progress i:nth-child(3)::after { animation-delay: 8s; }
.feature-progress i:nth-child(4)::after { animation-delay: 12s; }
@keyframes logo-revolve { to { transform: rotate(360deg); } }
@keyframes logo-revolve-reverse { to { transform: rotate(-360deg); } }
@keyframes logo-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-7px) scale(1.015); } }
@keyframes showcase-aura { 0%, 100% { opacity: .7; transform: translateX(-50%) scale(.92); } 50% { opacity: 1; transform: translateX(-50%) scale(1.08); } }
@keyframes star-pulse { 0%, 100% { opacity: .25; transform: scale(.7); } 50% { opacity: 1; transform: scale(1.5); } }
@keyframes feature-pass {
    0% { opacity: 0; transform: translateY(24px); filter: blur(5px); }
    5%, 20% { opacity: 1; transform: translateY(0); filter: blur(0); }
    25%, 100% { opacity: 0; transform: translateY(-24px); filter: blur(5px); }
}
@keyframes feature-meter {
    0% { transform: translateX(-100%); }
    24.9% { transform: translateX(0); }
    25%, 100% { transform: translateX(100%); }
}

.site-footer { min-height: 120px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 28px max(35px, calc((100vw - 1320px) / 2)); color: #81958a; background: var(--night); font-size: 9px; }
.footer-brand img { width: 54px; height: 46px; object-fit: contain; }
.site-footer > p { margin: 0; }
.site-footer > div:last-child { justify-self: end; display: flex; align-items: center; gap: 20px; }
.site-footer a { color: #bdccc3; }

.canvas-backdrop { position: fixed; z-index: 100; inset: 0; opacity: 0; visibility: hidden; background: rgba(2, 12, 7, .68); backdrop-filter: blur(4px); transition: opacity .3s ease, visibility .3s ease; }
.canvas-backdrop.is-visible { opacity: 1; visibility: visible; }
.module-canvas {
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;
    width: min(520px, 100%);
    height: 100dvh;
    padding: 28px;
    overflow-y: auto;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(240, 223, 41, .09), transparent 30%),
        radial-gradient(circle at 0 30%, rgba(53, 207, 115, .12), transparent 32%),
        #07170f;
    border-left: 1px solid rgba(255, 255, 255, .1);
    box-shadow: -28px 0 80px rgba(0, 0, 0, .34);
    transform: translateX(105%);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}
.module-canvas.is-open { transform: none; }
.canvas-decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.canvas-decoration i { position: absolute; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; }
.canvas-decoration i:nth-child(1) { width: 310px; height: 310px; right: -160px; top: -160px; box-shadow: 0 0 0 36px rgba(240, 223, 41, .018), 0 0 0 72px rgba(240, 223, 41, .012); }
.canvas-decoration i:nth-child(2) { width: 170px; height: 170px; left: -100px; top: 34%; box-shadow: 0 0 0 28px rgba(70, 209, 127, .018); }
.canvas-decoration i:nth-child(3) { width: 9px; height: 9px; right: 75px; top: 170px; background: var(--yellow); border: 0; box-shadow: 0 0 16px var(--yellow); }
.canvas-header { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.canvas-brand { display: flex; align-items: center; gap: 12px; }
.canvas-brand img { width: 58px; height: 48px; object-fit: contain; }
.canvas-brand div { display: flex; flex-direction: column; }
.canvas-brand span { color: var(--yellow); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.canvas-brand h2 { margin: 5px 0 0; font: 600 28px/1 var(--display); }
.canvas-close { width: 38px; height: 38px; display: grid; place-items: center; color: #cbd8d0; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; }
.canvas-lead { position: relative; max-width: 420px; margin: 26px 0 24px; color: #a0b5a9; font-size: 13px; line-height: 1.65; }
.module-accordion { position: relative; display: grid; gap: 7px; }
.accordion-item { overflow: hidden; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .085); border-radius: 13px; transition: border-color .25s ease, background .25s ease; }
.accordion-item.is-open { background: rgba(255, 255, 255, .065); border-color: color-mix(in srgb, var(--accent) 34%, rgba(255, 255, 255, .1)); }
.accordion-trigger { width: 100%; min-height: 70px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 10px 13px; color: #fff; background: none; border: 0; text-align: left; }
.accordion-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, rgba(255, 255, 255, .02)); border: 1px solid color-mix(in srgb, var(--accent) 20%, rgba(255, 255, 255, .07)); border-radius: 10px; }
.accordion-trigger > span:nth-child(2) { display: flex; flex-direction: column; }
.accordion-trigger small { color: #82998c; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.accordion-trigger strong { margin-top: 4px; font: 600 15px/1.1 var(--display); }
.accordion-plus { color: #71897c; transition: transform .25s ease, color .25s ease; }
.accordion-trigger[aria-expanded="true"] .accordion-plus { color: var(--accent); transform: rotate(45deg); }
.accordion-panel { padding: 2px 18px 18px 68px; }
.accordion-panel p { margin: 0; color: #b7c7bd; font-size: 12px; line-height: 1.7; }
.audience { display: flex; flex-direction: column; gap: 3px; margin-top: 15px; }
.audience span { color: var(--accent); font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.audience strong { color: #dce7e0; font-size: 12px; font-weight: 600; }
.accordion-panel ul { display: grid; gap: 6px; margin: 14px 0 0; padding: 0; list-style: none; }
.accordion-panel li { display: flex; align-items: center; gap: 9px; color: #b3c3ba; font-size: 11px; line-height: 1.45; }
.accordion-panel li i { color: var(--accent); }
.accordion-panel > a { min-height: 42px; display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding: 0 13px; color: #fff; background: color-mix(in srgb, var(--accent) 15%, rgba(255, 255, 255, .03)); border: 1px solid color-mix(in srgb, var(--accent) 26%, rgba(255, 255, 255, .08)); border-radius: 8px; font-size: 11px; font-weight: 700; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); transition-delay: var(--delay, 0ms); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@keyframes badge-pulse { from { transform: scale(.8); opacity: .7; } to { transform: scale(1.35); opacity: 0; } }

@media (max-width: 1050px) {
    .intro-section { grid-template-columns: 1fr 1fr; gap: 40px; }
    .section-intro { grid-template-columns: 1fr; gap: 18px; }
    .service-constellation { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .support-section { grid-template-columns: 1fr; }
    .support-scene { min-height: 520px; }
}

@media (max-width: 780px) {
    .site-header { height: 78px; }
    .module-button { display: none; }
    .menu-toggle { width: 42px; height: 42px; display: grid; align-content: center; gap: 6px; padding: 0 11px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; }
    .menu-toggle span { width: 100%; height: 1px; background: #fff; }
    .main-nav { position: absolute; top: 68px; left: 0; right: 0; display: grid; opacity: 0; visibility: hidden; background: #0a2116; transform: translateY(-6px); transition: .2s ease; }
    .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .intro-section { min-height: auto; grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
    .intro-copy { margin: 0 auto; }
    .eyebrow, .intro-actions, .intro-stats { justify-content: center; }
    .intro-copy > p { margin-inline: auto; }
    .intro-visual { width: min(620px, 100%); height: 580px; justify-self: center; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .site-footer > p { display: none; }
}

@media (max-width: 560px) {
    .site-header { width: min(100% - 24px, 1420px); }
    .brand img { width: 54px; height: 46px; }
    .brand small { display: none; }
    .intro-section { padding: 118px 18px 60px; }
    .intro-copy h1 { font-size: clamp(42px, 13vw, 58px); }
    .intro-copy > p { font-size: 12px; }
    .intro-actions { flex-direction: column; }
    .intro-actions > * { width: min(280px, 100%); }
    .intro-stats { gap: 24px; flex-wrap: wrap; }
    .intro-visual { height: 470px; min-height: 0; border-radius: 20px; }
    .visual-badge { left: 14px; top: 14px; }
    .campus-album { --lake-shape: polygon(6% 3%, 31% 1%, 55% 4%, 80% 2%, 95% 13%, 98% 36%, 95% 59%, 99% 80%, 87% 96%, 61% 95%, 39% 99%, 15% 94%, 3% 80%, 5% 58%, 1% 37%, 4% 16%); }
    .album-caption { left: 20px; right: 20px; bottom: 154px; }
    .album-caption strong { font-size: 25px; }
    .album-caption small { max-width: 290px; }
    .album-thumbs { left: 18px; right: auto; top: auto; bottom: 73px; display: flex; gap: 7px; transform: none; }
    .album-thumb { width: 50px; height: 55px; border-radius: 8px; transform: translateY(8px) scale(.9); }
    .album-thumb:hover { transform: translateY(3px) scale(.95); }
    .album-thumb.is-active { transform: none; }
    .album-controls { left: 18px; right: 18px; bottom: 15px; gap: 9px; }
    .album-controls button { width: 35px; height: 35px; }
    .services-section { padding: 80px 12px; }
    .section-intro { margin-bottom: 38px; }
    .section-intro h2 { font-size: 39px; }
    .service-constellation { grid-template-columns: 1fr; }
    .service-orb, .orb-link { min-height: 145px; }
    .orb-link { padding: 15px; }
    .orb-icon { width: 52px; height: 52px; font-size: 16px; }
    .orb-copy strong { font-size: 15px; }
    .orb-copy small { max-width: 180px; }
    .support-section { padding: 70px 12px; gap: 38px; }
    .support-scene { min-height: 470px; border-radius: 18px; }
    .support-scene-copy { left: 21px; right: 21px; bottom: 21px; }
    .support-scene-copy h2 { font-size: 36px; }
    .zumis-showcase { min-height: 520px; padding: 30px 15px; border-radius: 20px; }
    .logo-stage { width: 270px; height: 270px; transform: scale(.9); }
    .site-footer { grid-template-columns: 1fr; text-align: center; padding: 40px 18px; }
    .footer-brand, .site-footer > div:last-child { justify-self: center; }
    .module-canvas { padding: 20px 15px; }
    .accordion-panel { padding-left: 65px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    .feature-line { opacity: 0; transform: none; filter: none; }
    .feature-line:first-child { opacity: 1; }
    .feature-progress { display: none; }
}

/* Fixed app frame and segmented view switcher */
body {
    padding-bottom: 68px;
}

.site-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 76px;
    padding: 0 max(28px, calc((100vw - 1420px) / 2));
    background: rgba(6, 19, 13, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
    transform: none;
}

.main-nav {
    --switch-index: 0;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(2, 56px);
    gap: 10px;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.main-nav::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: radial-gradient(circle at 36% 28%, #27b65d, var(--green) 58%, #0b6e34);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(240, 223, 41, .82), 0 0 0 7px rgba(21, 147, 74, .1), 0 10px 28px rgba(21, 147, 74, .3), inset 0 1px 0 rgba(255, 255, 255, .22);
    transform: translateX(calc(var(--switch-index) * 66px));
    transition: transform .52s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
}

.main-nav a,
.main-nav a.is-active {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    min-width: 0;
    display: grid;
    place-items: center;
    padding: 0;
    color: #8fa499;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    font-size: 8px;
    transition: color .3s ease, border-color .3s ease, transform .3s ease, background .3s ease;
}

.main-nav a.is-active {
    color: #fff;
    border-color: transparent;
    background: transparent;
}

.main-nav a:not(.is-active):hover {
    color: #fff;
    background: rgba(255, 255, 255, .075);
    border-color: rgba(240, 223, 41, .3);
    transform: translateY(-3px);
}

.site-footer {
    position: fixed;
    z-index: 55;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 68px;
    padding: 9px max(28px, calc((100vw - 1320px) / 2));
    background: rgba(5, 18, 12, .94);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, .15);
    backdrop-filter: blur(18px);
}

.site-footer a {
    position: relative;
    padding: 7px 2px;
    transition: color .25s ease;
}

.site-footer a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 1px;
    height: 2px;
    background: linear-gradient(90deg, var(--green-bright), var(--yellow));
    transition: right .35s ease;
}

.site-footer a.is-active {
    color: #fff;
}

.site-footer a.is-active::after {
    right: 0;
}

html {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 76px;
    overscroll-behavior-y: contain;
}

.page-view {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

@media (max-width: 780px) {
    html {
        scroll-padding-top: 112px;
    }

    body {
        padding-top: 112px;
        padding-bottom: 52px;
    }

    .site-header {
        height: 112px;
        display: grid;
        grid-template-columns: 1fr auto;
        align-content: center;
        gap: 7px 12px;
        padding: 8px 14px;
    }

    .menu-toggle {
        display: none;
    }

    .main-nav {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        grid-column: 1 / -1;
        grid-row: 2;
        width: auto;
        grid-template-columns: repeat(2, 48px);
        justify-self: center;
        gap: 9px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .main-nav::before {
        width: 48px;
        height: 48px;
        transform: translateX(calc(var(--switch-index) * 57px));
        box-shadow: 0 0 0 2px rgba(240, 223, 41, .8), 0 0 0 5px rgba(21, 147, 74, .09), 0 8px 22px rgba(21, 147, 74, .26);
    }

    .main-nav a,
    .main-nav a.is-active {
        width: 48px;
        height: 48px;
        font-size: 7px;
    }

    .intro-section {
        padding-top: 70px;
    }

    .site-footer {
        min-height: 52px;
        grid-template-columns: 1fr auto;
        padding: 6px 14px;
    }

    .site-footer > p,
    .site-footer .footer-brand small {
        display: none;
    }

    .footer-brand img {
        width: 42px;
        height: 36px;
    }

    .site-footer > div:last-child {
        gap: 13px;
    }
}

@media (max-width: 560px) {
    .site-header {
        width: 100%;
    }

    .site-footer {
        grid-template-columns: auto 1fr;
        text-align: left;
        padding: 5px 10px;
    }

    .site-footer .footer-brand strong {
        font-size: 11px;
    }

    .site-footer > div:last-child {
        justify-self: end;
        gap: 10px;
        font-size: 8px;
    }
}

@media (max-width: 780px) {
    .water-awakening {
        min-height: 310px;
        grid-template-columns: minmax(210px, 1fr) 155px;
        gap: 10px;
        margin-top: 42px;
        padding: 25px 20px;
        border-radius: 19px;
    }
    .water-message > strong { font-size: 27px; }
    .water-scene { inset: 60px 45px 0 18%; }
    .water-logo { grid-column: 2; }
    .water-logo-image { width: 145px; height: 145px; }
    .water-logo-image img { width: 138px; max-height: 132px; }
    .logo-impact { width: 118px; height: 118px; }
}

@media (max-width: 560px) {
    .water-awakening {
        min-height: 410px;
        grid-template-columns: 1fr;
        align-content: start;
        margin-top: 38px;
        padding: 24px 18px 20px;
    }
    .water-message { max-width: 310px; }
    .water-message > strong { font-size: 26px; }
    .water-scene { inset: 135px 35px 0 -26%; }
    .water-current { width: 62%; }
    .water-logo { grid-column: 1; align-self: end; justify-self: end; margin-top: 48px; }
    .water-logo-image { width: 142px; height: 138px; }
    .water-logo-image img { width: 134px; max-height: 128px; }
    .drop-one { right: 145px; }
    .drop-two { right: 122px; }
    .drop-three { right: 165px; }
}

/* Rising spring identity animation */
.logo-spring {
    position: relative;
    min-height: 285px;
    display: grid;
    grid-template-columns: minmax(250px, .85fr) 1.15fr 190px;
    align-items: center;
    gap: 20px;
    margin-top: 52px;
    padding: 28px 26px 24px 34px;
    overflow: visible;
}
.logo-spring::before { content: ""; position: absolute; right: 6px; bottom: 0; width: 360px; height: 120px; opacity: .55; background: radial-gradient(ellipse, rgba(35, 180, 139, .13), transparent 69%); filter: blur(17px); pointer-events: none; }
.spring-message { position: relative; z-index: 7; }
.spring-message > span { color: #1c8b55; font-size: 7px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.spring-message > strong { display: block; max-width: 300px; margin-top: 9px; color: var(--ink); font: 600 clamp(23px, 2.4vw, 32px)/1.06 var(--display); letter-spacing: -.045em; }
.spring-message > small { display: block; max-width: 290px; margin-top: 14px; color: #718078; font-size: 9px; line-height: 1.65; }
.spring-scene { position: absolute; z-index: 3; top: 0; right: 4px; bottom: 0; width: 350px; pointer-events: none; }
.spring-pool { position: absolute; left: 50%; bottom: 12px; width: 250px; height: 38px; opacity: 0; border: 2px solid rgba(44, 176, 141, .28); border-radius: 50%; background: radial-gradient(ellipse, rgba(85, 222, 187, .24), rgba(35, 158, 124, .07) 48%, transparent 72%); box-shadow: 0 0 30px rgba(35, 171, 132, .13); transform: translateX(-50%) scale(.45); }
.logo-spring.is-visible .spring-pool { animation: spring-pool 6s ease-in-out infinite; }
.spring-column { position: absolute; left: 50%; bottom: 28px; opacity: 0; border-radius: 48% 52% 42% 58% / 20% 22% 78% 80%; transform: translateX(-50%) scaleY(.04); transform-origin: 50% 100%; }
.column-wide { width: 116px; height: 205px; background: linear-gradient(to top, rgba(10, 129, 101, .5), rgba(68, 219, 180, .28) 52%, transparent 96%); filter: blur(12px); }
.column-core { width: 60px; height: 225px; background: linear-gradient(to top, rgba(34, 171, 134, .72), rgba(118, 244, 211, .48) 48%, rgba(234, 255, 250, .12) 82%, transparent); filter: blur(5px); }
.column-light { width: 18px; height: 240px; background: linear-gradient(to top, rgba(188, 255, 238, .8), rgba(255, 255, 255, .55) 50%, transparent 94%); filter: blur(2px); }
.logo-spring.is-visible .column-wide { animation: spring-rise 6s .05s cubic-bezier(.25, .65, .32, 1) infinite; }
.logo-spring.is-visible .column-core { animation: spring-rise 6s .2s cubic-bezier(.25, .65, .32, 1) infinite; }
.logo-spring.is-visible .column-light { animation: spring-rise 6s .38s cubic-bezier(.25, .65, .32, 1) infinite; }
.spring-mist { position: absolute; left: 50%; bottom: 44px; width: 86px; height: 86px; opacity: 0; border-radius: 50%; background: radial-gradient(circle, rgba(221, 255, 247, .58), rgba(80, 210, 176, .18) 48%, transparent 72%); filter: blur(9px); }
.mist-one { margin-left: -94px; }
.mist-two { width: 105px; height: 105px; margin-left: -15px; }
.mist-three { width: 72px; height: 72px; margin-left: 48px; }
.logo-spring.is-visible .mist-one { animation: spring-mist 6s .25s ease-out infinite; }
.logo-spring.is-visible .mist-two { animation: spring-mist 6s .7s ease-out infinite; }
.logo-spring.is-visible .mist-three { animation: spring-mist 6s 1.05s ease-out infinite; }
.spring-bubble { position: absolute; left: 50%; bottom: 35px; width: 9px; height: 9px; opacity: 0; border: 1px solid rgba(48, 174, 142, .52); border-radius: 50%; background: rgba(224, 255, 247, .5); box-shadow: inset 0 0 4px #fff, 0 0 9px rgba(60, 206, 168, .25); }
.bubble-one { margin-left: -50px; }
.bubble-two { width: 6px; height: 6px; margin-left: 29px; }
.bubble-three { width: 12px; height: 12px; margin-left: 58px; }
.bubble-four { width: 5px; height: 5px; margin-left: -78px; }
.bubble-five { width: 8px; height: 8px; margin-left: -23px; }
.bubble-six { width: 14px; height: 14px; margin-left: 82px; }
.bubble-seven { width: 7px; height: 7px; margin-left: 7px; }
.bubble-eight { width: 4px; height: 4px; margin-left: 48px; }
.logo-spring.is-visible .bubble-one { animation: spring-bubble 6s .35s ease-in infinite; }
.logo-spring.is-visible .bubble-two { animation: spring-bubble 6s .8s ease-in infinite; }
.logo-spring.is-visible .bubble-three { animation: spring-bubble 6s 1.25s ease-in infinite; }
.logo-spring.is-visible .bubble-four { animation: spring-bubble-left 6s .55s ease-in infinite; }
.logo-spring.is-visible .bubble-five { animation: spring-bubble 6s 1.05s ease-in infinite; }
.logo-spring.is-visible .bubble-six { animation: spring-bubble-right 6s 1.45s ease-in infinite; }
.logo-spring.is-visible .bubble-seven { animation: spring-bubble-left 6s 1.75s ease-in infinite; }
.logo-spring.is-visible .bubble-eight { animation: spring-bubble-right 6s 2.05s ease-in infinite; }
.spring-logo { position: relative; z-index: 8; grid-column: 3; display: grid; justify-items: center; }
.spring-logo-image { position: relative; width: 160px; height: 158px; display: grid; place-items: center; }
.spring-logo-image img { width: 150px; max-height: 145px; object-fit: contain; }
.logo-spring.is-visible .logo-color-rise { animation: spring-logo-color 6s .15s cubic-bezier(.22, 1, .36, 1) infinite; }
.logo-spring.is-visible .logo-impact { animation: spring-logo-halo 6s .15s ease-out infinite; }
.motto-state {
    position: relative;
    width: 225px;
    margin-top: 2px;
    color: #718078;
    font: 600 9px/1.45 var(--display);
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}
.motto-state::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: transparent;
    background: linear-gradient(to top, #15934a 8%, #31bb69 48%, #c6b414 78%, #847800 100%);
    -webkit-background-clip: text;
    background-clip: text;
    clip-path: inset(100% 0 0);
    filter: drop-shadow(0 0 8px rgba(70, 209, 127, .2));
}
.logo-spring.is-visible .motto-state { animation: spring-motto-lift 6s .15s ease infinite; }
.logo-spring.is-visible .motto-state::after { animation: spring-motto-color 6s .15s cubic-bezier(.22, 1, .36, 1) infinite; }
@keyframes spring-pool { 0%, 8%, 92%, 100% { opacity: 0; transform: translateX(-50%) scale(.4); } 24%, 72% { opacity: .85; transform: translateX(-50%) scale(1); } 48% { opacity: 1; transform: translateX(-50%) scale(1.14, .88); } }
@keyframes spring-rise { 0%, 8% { opacity: 0; transform: translateX(-50%) scaleY(.04) scaleX(.75); } 24% { opacity: .65; } 48% { opacity: 1; transform: translateX(-50%) scaleY(1) scaleX(1); } 67% { opacity: .72; transform: translate(-50%, -10px) scaleY(1.08) scaleX(.88); } 86%, 100% { opacity: 0; transform: translate(-50%, -38px) scaleY(.5) scaleX(1.18); } }
@keyframes spring-mist { 0%, 13% { opacity: 0; transform: translate(-50%, 0) scale(.55); } 38% { opacity: .5; } 72% { opacity: .25; transform: translate(-50%, -145px) scale(1.3); } 88%, 100% { opacity: 0; transform: translate(-50%, -205px) scale(1.65); } }
@keyframes spring-bubble { 0%, 17% { opacity: 0; transform: translate(0, 0) scale(.6); } 30% { opacity: .8; } 70% { opacity: .48; transform: translate(14px, -155px) scale(1); } 86%, 100% { opacity: 0; transform: translate(-8px, -218px) scale(.55); } }
@keyframes spring-bubble-left { 0%, 17% { opacity: 0; transform: translate(0, 0) scale(.55); } 32% { opacity: .76; } 66% { opacity: .5; transform: translate(-18px, -142px) scale(1.08); } 88%, 100% { opacity: 0; transform: translate(9px, -210px) scale(.5); } }
@keyframes spring-bubble-right { 0%, 17% { opacity: 0; transform: translate(0, 0) scale(.5); } 28% { opacity: .82; } 68% { opacity: .45; transform: translate(22px, -165px) scale(.95); } 87%, 100% { opacity: 0; transform: translate(-4px, -225px) scale(.48); } }
@keyframes spring-logo-color { 0%, 40% { clip-path: inset(100% 0 0); filter: saturate(.2); } 61%, 76% { clip-path: inset(0); filter: saturate(1.08) drop-shadow(0 0 22px rgba(55, 192, 116, .25)); } 94%, 100% { clip-path: inset(100% 0 0); filter: saturate(.2); } }
@keyframes spring-logo-halo { 0%, 43%, 78%, 100% { opacity: 0; transform: translateX(-50%) scale(.55); } 57% { opacity: .7; } 75% { opacity: 0; transform: translateX(-50%) scale(1.48); } }
@keyframes spring-motto-lift { 0%, 38%, 94%, 100% { opacity: .64; transform: translateY(5px); letter-spacing: .08em; } 58%, 78% { opacity: 1; transform: translateY(0); letter-spacing: .105em; } }
@keyframes spring-motto-color { 0%, 42% { clip-path: inset(100% 0 0); opacity: 0; } 61%, 76% { clip-path: inset(0); opacity: 1; } 94%, 100% { clip-path: inset(100% 0 0); opacity: 0; } }

@media (max-width: 780px) {
    .logo-spring { min-height: 300px; grid-template-columns: minmax(210px, 1fr) 155px; margin-top: 42px; padding: 24px 20px; }
    .spring-message > strong { font-size: 27px; }
    .spring-scene { right: -18px; width: 300px; }
    .spring-logo { grid-column: 2; }
    .spring-logo-image { width: 145px; height: 145px; }
    .spring-logo-image img { width: 138px; max-height: 132px; }
    .motto-state { width: 190px; font-size: 8px; }
}

@media (max-width: 560px) {
    .logo-spring { min-height: 420px; grid-template-columns: 1fr; align-content: start; margin-top: 38px; padding: 22px 18px 18px; }
    .spring-message { max-width: 300px; }
    .spring-message > strong { font-size: 26px; }
    .spring-scene { top: 120px; right: -35px; bottom: 0; width: 275px; transform: scale(.86); transform-origin: 50% 100%; }
    .spring-logo { grid-column: 1; align-self: end; justify-self: end; margin-top: 65px; }
    .spring-logo-image { width: 142px; height: 138px; }
    .spring-logo-image img { width: 134px; max-height: 128px; }
    .motto-state { width: 180px; font-size: 8px; }
}

/* Free-floating circular section controls */
.main-nav {
    grid-template-columns: repeat(2, 62px);
    gap: 12px;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.main-nav::before { display: none; }
.main-nav a,
.main-nav a.is-active {
    width: 62px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    color: #82978b;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}
.nav-orb {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #9eb0a5;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: none;
    font-size: 13px;
    transition: color .3s ease, background .3s ease, border-color .3s ease, transform .36s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease;
}
.main-nav small { color: inherit; font-size: 7px; font-weight: 700; letter-spacing: .04em; }
.main-nav a.is-active { color: #fff; }
.main-nav a.is-active .nav-orb {
    color: #fff;
    background: transparent;
    border-color: var(--green-bright);
    box-shadow: 0 0 14px rgba(70, 209, 127, .28), inset 0 0 12px rgba(70, 209, 127, .06);
    animation: nav-orb-live 2.8s ease-in-out infinite;
}
.main-nav a.is-active .nav-orb::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(240, 223, 41, .75);
    border-right-color: transparent;
    border-bottom-color: rgba(240, 223, 41, .18);
    border-radius: 50%;
    animation: nav-ring-spin 5s linear infinite;
}
.main-nav a:not(.is-active):hover {
    color: #dce7e0;
    background: transparent;
    border: 0;
    transform: none;
}
.main-nav a:not(.is-active):hover .nav-orb {
    color: var(--yellow);
    border-color: rgba(240, 223, 41, .45);
    transform: translateY(-3px) scale(1.06);
}
@keyframes nav-orb-live { 0%, 100% { transform: translateY(0); box-shadow: 0 0 11px rgba(70, 209, 127, .2), inset 0 0 10px rgba(70, 209, 127, .04); } 50% { transform: translateY(-2px); box-shadow: 0 0 19px rgba(70, 209, 127, .38), inset 0 0 14px rgba(70, 209, 127, .08); } }
@keyframes nav-ring-spin { to { transform: rotate(360deg); } }

@media (max-width: 780px) {
    .main-nav { width: auto; grid-template-columns: repeat(2, 54px); gap: 9px; justify-self: center; }
    .main-nav a,
    .main-nav a.is-active { width: 54px; height: 52px; gap: 3px; }
    .nav-orb { width: 37px; height: 37px; font-size: 11px; }
    .main-nav small { font-size: 6px; }
}
