:root {
    --paper: #fbfff8;
    --mint: #dff4ed;
    --leaf: #2d7d67;
    --ink: #203236;
    --quiet: #667979;
    --coral: #ef745f;
    --sun: #f3c94f;
    --teal: #12968d;
    --line: rgba(32, 50, 54, 0.14);
    --shadow: 0 18px 48px rgba(32, 50, 54, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 14%, rgba(223, 244, 237, 0.72), transparent 26%),
        radial-gradient(circle at 86% 12%, rgba(243, 201, 79, 0.12), transparent 25%),
        var(--paper);
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

@keyframes pageRise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageFloat {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-8px) scale(1.015);
    }
}

@keyframes careBubbleFlow {
    0% {
        opacity: 0;
        transform: translate3d(-10px, 18px, 0) scale(0.62);
    }
    18% {
        opacity: 0.78;
    }
    58% {
        opacity: 0.72;
        transform: translate3d(34px, -30px, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate3d(72px, -74px, 0) scale(0.78);
    }
}

@keyframes carePulseRing {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.08);
    }
}

@keyframes waterSlosh {
    0%,
    100% {
        transform: translate3d(-2%, 0, 0) rotate(-0.7deg);
        border-radius: 46% 54% 0 0 / 18% 22% 0 0;
    }
    50% {
        transform: translate3d(2%, -2px, 0) rotate(0.85deg);
        border-radius: 54% 46% 0 0 / 24% 18% 0 0;
    }
}

@keyframes waterSurfaceDrift {
    0%,
    100% {
        transform: translateX(-3%) scaleX(1.04);
        opacity: 0.62;
    }
    50% {
        transform: translateX(3%) scaleX(0.98);
        opacity: 0.88;
    }
}

@keyframes causticSlide {
    0% {
        transform: translate3d(-12%, 7%, 0) rotate(-8deg);
        opacity: 0.24;
    }
    50% {
        transform: translate3d(8%, -4%, 0) rotate(7deg);
        opacity: 0.42;
    }
    100% {
        transform: translate3d(16%, 5%, 0) rotate(-4deg);
        opacity: 0.24;
    }
}

@keyframes waterBubbleRise {
    0% {
        opacity: 0;
        transform: translate3d(0, 34px, 0) scale(0.58);
    }
    18% {
        opacity: 0.75;
    }
    74% {
        opacity: 0.58;
    }
    100% {
        opacity: 0;
        transform: translate3d(16px, -96px, 0) scale(1.08);
    }
}

@keyframes carromPieceOne {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    22% {
        transform: translate3d(74px, 28px, 0) scale(1);
    }
    28% {
        transform: translate3d(84px, 34px, 0) scale(1.05);
    }
    54% {
        transform: translate3d(34px, 84px, 0) scale(1);
    }
    76% {
        transform: translate3d(-18px, 44px, 0) scale(0.98);
    }
}

@keyframes carromPieceTwo {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    20% {
        transform: translate3d(-52px, 18px, 0) scale(1.02);
    }
    31% {
        transform: translate3d(-72px, 32px, 0) scale(1.06);
    }
    58% {
        transform: translate3d(-24px, 82px, 0) scale(1);
    }
    80% {
        transform: translate3d(46px, 22px, 0) scale(0.98);
    }
}

@keyframes carromPieceThree {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    24% {
        transform: translate3d(-58px, 36px, 0) scale(1);
    }
    33% {
        transform: translate3d(-82px, 48px, 0) scale(1.06);
    }
    60% {
        transform: translate3d(-116px, -12px, 0) scale(0.99);
    }
    82% {
        transform: translate3d(-38px, -22px, 0) scale(1);
    }
}

@keyframes carromStriker {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(0.92);
    }
    18% {
        transform: translate3d(68px, -48px, 0) scale(1);
    }
    28% {
        transform: translate3d(128px, -78px, 0) scale(1.08);
    }
    56% {
        transform: translate3d(28px, -112px, 0) scale(0.96);
    }
    78% {
        transform: translate3d(-64px, -46px, 0) scale(0.98);
    }
}

@keyframes carromImpact {
    0%,
    18%,
    100% {
        opacity: 0;
        transform: scale(0.58);
    }
    25% {
        opacity: 0.72;
        transform: scale(1);
    }
    34% {
        opacity: 0;
        transform: scale(1.48);
    }
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 28px;
    border-bottom: 1px solid rgba(32, 50, 54, 0.1);
    background: rgba(251, 255, 248, 0.92);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.brand img {
    width: 142px;
    max-width: 42vw;
    height: auto;
    display: block;
    border-radius: 14px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 10px 24px rgba(32, 50, 54, 0.1);
}

.brand span {
    color: var(--quiet);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a:not(.button) {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid rgba(18, 150, 141, 0.18);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(32, 50, 54, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-links a:not(.button):hover {
    transform: translateY(-1px);
    color: var(--leaf);
    border-color: rgba(18, 150, 141, 0.34);
    background: #fff;
    box-shadow: 0 14px 30px rgba(18, 150, 141, 0.12);
}

.subpage-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.subpage-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
}

.subpage-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    border: 1px solid rgba(18, 150, 141, 0.18);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.88);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(32, 50, 54, 0.07);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.subpage-menu-trigger i:first-child {
    color: var(--leaf);
    font-size: 13px;
}

.subpage-menu-trigger .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.18s ease;
}

.subpage-menu:hover .subpage-menu-trigger,
.subpage-menu:focus-within .subpage-menu-trigger {
    transform: translateY(-1px);
    color: var(--leaf);
    border-color: rgba(18, 150, 141, 0.34);
    background: #fff;
    box-shadow: 0 14px 30px rgba(18, 150, 141, 0.12);
}

.subpage-menu:hover .fa-chevron-down,
.subpage-menu:focus-within .fa-chevron-down {
    transform: rotate(180deg);
}

.subpage-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    display: grid;
    min-width: 220px;
    padding: 8px;
    border: 1px solid rgba(18, 150, 141, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 46px rgba(32, 50, 54, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.subpage-menu:hover .subpage-menu-panel,
.subpage-menu:focus-within .subpage-menu-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.nav-links .subpage-menu-panel a:not(.button) {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    min-height: 42px;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
}

.nav-links .subpage-menu-panel a:not(.button) i {
    width: 16px;
    color: var(--leaf);
    text-align: center;
}

.nav-links .subpage-menu-panel a:not(.button):hover {
    transform: none;
    background: rgba(223, 244, 237, 0.62);
    box-shadow: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 11px 17px;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: var(--leaf);
    box-shadow: 0 14px 28px rgba(45, 125, 103, 0.22);
}

.button-primary i {
    font-size: 13px;
}

.button-secondary {
    color: var(--ink);
    background: #fffef9;
    border-color: var(--line);
}

.reserve-access-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-width: 172px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
    background:
        radial-gradient(circle at 18% 20%, rgba(243, 201, 79, 0.92), transparent 24%),
        linear-gradient(135deg, #2d7d67, #12968d);
    box-shadow:
        0 18px 42px rgba(18, 150, 141, 0.28),
        0 0 0 7px rgba(255, 255, 255, 0.1);
}

.reserve-access-button::before {
    content: "";
    position: absolute;
    inset: -60% -30%;
    z-index: -1;
    background: linear-gradient(115deg, transparent 24%, rgba(255, 255, 255, 0.38) 42%, transparent 58%);
    transform: translateX(-70%) rotate(8deg);
    transition: transform 0.55s ease;
}

.reserve-access-button:hover {
    box-shadow:
        0 24px 54px rgba(18, 150, 141, 0.36),
        0 0 0 9px rgba(243, 201, 79, 0.1);
}

.reserve-access-button:hover::before {
    transform: translateX(70%) rotate(8deg);
}

.page-hero {
    padding: 84px 28px 50px;
}

.page-grid,
.section-inner,
.footer-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 46px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 8px 12px;
    border: 1px solid rgba(18, 150, 141, 0.18);
    border-radius: 999px;
    color: var(--leaf);
    background: rgba(223, 244, 237, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    color: var(--ink);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(44px, 7vw, 84px);
}

h2 {
    font-size: clamp(34px, 5vw, 58px);
}

.lede {
    margin: 20px 0 0;
    color: var(--quiet);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(32, 50, 54, 0.12);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
    animation: pageRise 0.7s ease both;
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
    animation: imageFloat 7s ease-in-out infinite alternate;
}

.animated-care-map {
    background:
        radial-gradient(circle at 15% 18%, rgba(18, 150, 141, 0.1), transparent 26%),
        radial-gradient(circle at 83% 20%, rgba(243, 201, 79, 0.13), transparent 24%),
        #fff;
}

.animated-care-map::before {
    content: "";
    position: absolute;
    inset: 10% 8%;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 45% 55% 52% 48%;
    pointer-events: none;
    animation: carePulseRing 6.5s ease-in-out infinite;
}

.care-bubble {
    position: absolute;
    z-index: 3;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(18, 150, 141, 0.38);
    box-shadow:
        0 10px 28px rgba(18, 150, 141, 0.2),
        inset 0 0 12px rgba(255, 255, 255, 0.46);
    pointer-events: none;
    animation: careBubbleFlow 7s ease-in-out infinite;
}

.care-bubble-one {
    left: 12%;
    top: 28%;
    animation-delay: 0s;
}

.care-bubble-two {
    left: 34%;
    top: 50%;
    width: 13px;
    height: 13px;
    background: rgba(243, 201, 79, 0.48);
    animation-delay: 1.1s;
    animation-duration: 6.2s;
}

.care-bubble-three {
    left: 66%;
    top: 31%;
    width: 15px;
    height: 15px;
    background: rgba(239, 116, 95, 0.34);
    animation-delay: 2.2s;
    animation-duration: 7.4s;
}

.care-bubble-four {
    left: 80%;
    top: 68%;
    width: 11px;
    height: 11px;
    background: rgba(45, 125, 103, 0.34);
    animation-delay: 3.1s;
    animation-duration: 6.8s;
}

.care-bubble-five {
    left: 24%;
    top: 68%;
    width: 10px;
    height: 10px;
    background: rgba(18, 150, 141, 0.26);
    animation-delay: 4s;
    animation-duration: 7.8s;
}

.carrom-board {
    min-height: 330px;
    background:
        radial-gradient(circle at 18% 72%, rgba(223, 244, 237, 0.82), transparent 25%),
        radial-gradient(circle at 82% 19%, rgba(243, 201, 79, 0.2), transparent 27%),
        linear-gradient(145deg, #fffef9, #f7fff9);
}

.carrom-board img {
    position: relative;
    z-index: 1;
    opacity: 0.42;
    filter: saturate(0.8) blur(0.1px);
}

.carrom-rail {
    position: absolute;
    inset: 10% 8% 23%;
    z-index: 2;
    border: 1px solid rgba(18, 150, 141, 0.18);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 42%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        0 18px 42px rgba(32, 50, 54, 0.07);
    pointer-events: none;
}

.carrom-piece,
.carrom-impact {
    position: absolute;
    pointer-events: none;
}

.carrom-piece {
    z-index: 4;
    width: clamp(52px, 9vw, 84px);
    height: clamp(52px, 9vw, 84px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow:
        0 22px 32px rgba(32, 50, 54, 0.16),
        inset -8px -10px 18px rgba(32, 50, 54, 0.14),
        inset 8px 9px 18px rgba(255, 255, 255, 0.38);
}

.carrom-piece::after {
    content: "";
    position: absolute;
    inset: 27%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.32);
    box-shadow: inset 3px 3px 8px rgba(255, 255, 255, 0.3);
}

.carrom-piece-one {
    left: 23%;
    top: 27%;
    background: linear-gradient(145deg, #2d7d67, #12968d);
    animation: carromPieceOne 7.4s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.carrom-piece-two {
    left: 48%;
    top: 18%;
    background: linear-gradient(145deg, #12968d, #5ccac1);
    animation: carromPieceTwo 8.1s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.carrom-piece-three {
    right: 18%;
    top: 29%;
    background: linear-gradient(145deg, #f3c94f, #ffd96e);
    animation: carromPieceThree 7.8s cubic-bezier(0.42, 0, 0.2, 1) infinite;
}

.carrom-striker {
    left: 47%;
    bottom: 22%;
    width: clamp(36px, 6vw, 58px);
    height: clamp(36px, 6vw, 58px);
    background: linear-gradient(145deg, #ef745f, #ffd0c8);
    animation: carromStriker 6.9s cubic-bezier(0.4, 0, 0.18, 1) infinite;
}

.carrom-impact {
    z-index: 3;
    width: clamp(84px, 13vw, 126px);
    height: clamp(84px, 13vw, 126px);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.44), transparent 58%),
        radial-gradient(circle, rgba(18, 150, 141, 0.18), transparent 68%);
    filter: blur(0.2px);
    opacity: 0;
    animation: carromImpact 7.4s ease-out infinite;
}

.carrom-impact-one {
    left: 41%;
    top: 31%;
}

.carrom-impact-two {
    right: 23%;
    top: 37%;
    animation-delay: 0.9s;
}

.mission-water-bowl {
    background:
        radial-gradient(circle at 20% 18%, rgba(223, 244, 237, 0.7), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(243, 201, 79, 0.16), transparent 26%),
        #fffef9;
}

.mission-water-bowl img {
    position: relative;
    z-index: 1;
}

.water-fill {
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -5%;
    height: 61%;
    z-index: 2;
    border-radius: 46% 54% 0 0 / 18% 22% 0 0;
    background:
        linear-gradient(180deg, rgba(236, 255, 250, 0.26), rgba(118, 215, 208, 0.28) 38%, rgba(45, 125, 103, 0.16)),
        radial-gradient(circle at 22% 34%, rgba(255, 255, 255, 0.36), transparent 20%),
        radial-gradient(circle at 75% 56%, rgba(255, 255, 255, 0.22), transparent 22%);
    box-shadow:
        inset 0 18px 36px rgba(255, 255, 255, 0.42),
        inset 0 -18px 48px rgba(18, 150, 141, 0.14);
    mix-blend-mode: multiply;
    pointer-events: none;
    animation: waterSlosh 7.2s ease-in-out infinite;
}

.water-surface {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 42%;
    z-index: 3;
    height: 18px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), rgba(173, 231, 225, 0.46), transparent);
    filter: blur(0.4px);
    box-shadow:
        0 9px 24px rgba(18, 150, 141, 0.12),
        0 -2px 8px rgba(255, 255, 255, 0.56);
    pointer-events: none;
    animation: waterSurfaceDrift 5.2s ease-in-out infinite;
}

.water-caustic {
    position: absolute;
    z-index: 3;
    width: 54%;
    height: 20%;
    border-radius: 999px;
    background:
        repeating-linear-gradient(100deg, transparent 0 18px, rgba(255, 255, 255, 0.32) 19px 22px, transparent 23px 42px);
    filter: blur(1.2px);
    pointer-events: none;
    animation: causticSlide 8.4s ease-in-out infinite;
}

.water-caustic-one {
    left: 9%;
    top: 55%;
}

.water-caustic-two {
    right: 5%;
    top: 67%;
    width: 44%;
    animation-delay: 2.2s;
    animation-duration: 9.6s;
}

.water-bubble {
    position: absolute;
    z-index: 4;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    box-shadow:
        inset 3px 3px 6px rgba(255, 255, 255, 0.52),
        0 8px 16px rgba(18, 150, 141, 0.14);
    pointer-events: none;
    animation: waterBubbleRise 6.4s ease-in-out infinite;
}

.water-bubble-one {
    left: 20%;
    bottom: 16%;
}

.water-bubble-two {
    left: 42%;
    bottom: 10%;
    width: 9px;
    height: 9px;
    animation-delay: 1.1s;
    animation-duration: 5.8s;
}

.water-bubble-three {
    left: 62%;
    bottom: 18%;
    width: 15px;
    height: 15px;
    animation-delay: 2.4s;
    animation-duration: 7.1s;
}

.water-bubble-four {
    left: 78%;
    bottom: 13%;
    width: 8px;
    height: 8px;
    animation-delay: 3.2s;
    animation-duration: 6.8s;
}

.image-caption {
    position: absolute;
    z-index: 5;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    color: #fff;
    background: rgba(32, 50, 54, 0.76);
    backdrop-filter: blur(10px);
}

.image-caption strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
}

.image-caption span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.section {
    padding: 68px 28px;
}

.soft-band {
    background: #fff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.belief-kicker {
    border-color: rgba(18, 150, 141, 0.34);
    background: linear-gradient(135deg, rgba(223, 244, 237, 0.94), rgba(255, 254, 249, 0.94));
    box-shadow: 0 12px 28px rgba(18, 150, 141, 0.11);
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 36px rgba(32, 50, 54, 0.08);
    animation: pageRise 0.68s ease both;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--leaf), var(--teal), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(18, 150, 141, 0.26);
    box-shadow: 0 22px 50px rgba(32, 50, 54, 0.12);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.2;
}

.card p {
    margin: 0;
    color: var(--quiet);
    line-height: 1.72;
    font-weight: 650;
}

.belief-card {
    padding-top: 30px;
    border-color: rgba(18, 150, 141, 0.2);
    background:
        radial-gradient(circle at 90% 16%, rgba(243, 201, 79, 0.12), transparent 24%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 255, 249, 0.92));
}

.belief-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -40px;
    width: 132px;
    height: 132px;
    border-radius: 999px;
    background: rgba(223, 244, 237, 0.72);
    filter: blur(2px);
    opacity: 0.68;
    pointer-events: none;
}

.belief-card h3,
.belief-card p,
.belief-tag {
    position: relative;
    z-index: 1;
}

.belief-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 12px;
    border: 1px solid rgba(18, 150, 141, 0.24);
    border-radius: 999px;
    color: var(--leaf);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 22px rgba(32, 50, 54, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.belief-tag i {
    color: var(--teal);
}

.mission-kicker {
    border-color: rgba(45, 125, 103, 0.34);
    background:
        radial-gradient(circle at 14% 50%, rgba(243, 201, 79, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(223, 244, 237, 0.98), rgba(255, 254, 249, 0.92));
    box-shadow: 0 12px 30px rgba(18, 150, 141, 0.12);
}

.mission-cards {
    align-items: stretch;
}

.mission-card {
    min-height: 240px;
    border-color: rgba(18, 150, 141, 0.22);
    background:
        radial-gradient(circle at 88% 18%, rgba(243, 201, 79, 0.12), transparent 24%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(247, 255, 249, 0.94));
}

.mission-card::before {
    transform: scaleX(1);
    opacity: 0.72;
}

.mission-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2f80b8, var(--teal), var(--leaf));
}

.mission-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--sun), var(--leaf), var(--coral));
}

.mission-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(18, 150, 141, 0.32);
    border-radius: 999px;
    color: var(--leaf);
    background:
        radial-gradient(circle at 16% 18%, rgba(243, 201, 79, 0.18), transparent 24%),
        rgba(255, 255, 255, 0.96);
    box-shadow:
        0 12px 26px rgba(32, 50, 54, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mission-tag i {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--leaf), var(--teal));
    box-shadow: 0 8px 16px rgba(18, 150, 141, 0.16);
    font-size: 11px;
}

.mission-card:nth-child(2) .mission-tag i {
    background: linear-gradient(135deg, #2f80b8, var(--teal));
}

.mission-card:nth-child(3) .mission-tag i {
    background: linear-gradient(135deg, var(--sun), var(--coral));
}

.mission-card h3,
.mission-card p,
.mission-tag {
    position: relative;
    z-index: 1;
}

.opinion-cards .opinion-card {
    background:
        radial-gradient(circle at 88% 18%, rgba(243, 201, 79, 0.11), transparent 24%),
        radial-gradient(circle at 14% 88%, rgba(223, 244, 237, 0.68), transparent 28%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 255, 249, 0.96));
}

.opinion-cards .opinion-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--leaf), var(--teal), #79c7bd);
}

.opinion-cards .opinion-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2f80b8, var(--teal), var(--leaf));
}

.opinion-cards .opinion-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--sun), var(--leaf), var(--coral));
}

.opinion-tag {
    box-shadow:
        0 14px 30px rgba(18, 150, 141, 0.13),
        inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: center;
}

.cta-band {
    padding: 70px 28px;
    color: #fff;
    background:
        radial-gradient(circle at 16% 18%, rgba(243, 201, 79, 0.18), transparent 25%),
        linear-gradient(135deg, #203236, #2d7d67);
}

.cta-band h2 {
    color: #fff;
}

.cta-band .lede {
    color: rgba(255, 255, 255, 0.78);
}

.cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
}

.footer {
    padding: 34px 28px;
    color: var(--quiet);
    background: #f5faf7;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 900;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.placeholder {
    display: grid;
    gap: 18px;
    padding: 36px;
    border: 1px dashed rgba(45, 125, 103, 0.34);
    border-radius: 26px;
    background: rgba(223, 244, 237, 0.38);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 920px) {
    .page-grid,
    .split,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-nav {
        align-items: flex-start;
        padding: 12px 18px;
    }

    .brand span,
    .nav-links a:not(.button) {
        display: none;
    }

    .nav-links .subpage-menu-panel a:not(.button) {
        display: flex;
    }

    .page-hero,
    .section,
    .cta-band {
        padding-left: 18px;
        padding-right: 18px;
    }

    .button {
        width: 100%;
    }
}
