/* =========================================================
   SBMP — Design System
   ========================================================= */

:root {
    /* Palette — built around brand teal & rose */
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --rose-800: #9f1239;
    --rose-900: #881337;

    /* Semantic tokens */
    --color-primary: var(--teal-600);
    --color-primary-dark: var(--teal-800);
    --color-primary-light: var(--teal-100);
    --color-secondary: var(--rose-700);
    --color-secondary-dark: var(--rose-900);
    --color-accent: #d9a441;

    --color-background: #fbfaf7;
    --color-surface: #ffffff;
    --color-surface-elevated: #ffffff;
    --color-surface-dark: #0b1f22;
    --color-ink: #0a1a1c;
    --color-text: #14282b;
    --color-text-muted: #5a7075;
    --color-border: #e6e8e3;
    --color-border-strong: #d3d8d2;

    /* Type */
    --font-display: "Space Mono", serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --radius-pill: 10px;

    /* Spacing rhythm */
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;
    --space-10: 8rem;

    /* Section rhythm */
    --section-y: clamp(4.5rem, 9vw, 8.5rem);
    --container: 1240px;
    --container-wide: 1440px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(10, 26, 28, .05);
    --shadow-sm: 0 2px 6px -2px rgba(10, 26, 28, .06), 0 1px 2px rgba(10, 26, 28, .04);
    --shadow-md: 0 8px 20px -8px rgba(10, 26, 28, .10), 0 2px 6px -2px rgba(10, 26, 28, .05);
    --shadow-lg: 0 24px 48px -18px rgba(10, 26, 28, .16), 0 8px 18px -10px rgba(10, 26, 28, .06);
    --shadow-xl: 0 44px 90px -28px rgba(10, 26, 28, .28);

    /* Motion */
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease-in-out: cubic-bezier(.65, 0, .35, 1);
    --dur-fast: .18s;
    --dur: .32s;
    --dur-slow: .7s;

    /* Nav */
    --nav-h: 72px;
}

/* =========================================================
   Reset
   ========================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

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

button {
    background: none;
    border: 0;
    cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* =========================================================
   Base
   ========================================================= */
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

.container--wide {
    width: min(100% - 2.5rem, var(--container-wide));
}

.container--narrow {
    width: min(100% - 2.5rem, 820px);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 999;
    background: var(--color-ink);
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: top var(--dur) var(--ease-out);
}

.skip-link:focus {
    top: 1rem;
}

/* =========================================================
   Typography
   ========================================================= */
.display {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1rem, 6vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.028em;
    color: var(--color-ink);
}

.h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw + 0.75rem, 3.25rem);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: var(--color-ink);
}

.h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.6vw + 0.75rem, 2.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-ink);
}

.h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(0.95rem, 1vw + 0.65rem, 1.25rem);
    line-height: 1.25;
    letter-spacing: -0.012em;
    color: var(--color-ink);
}

.h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: -0.008em;
    color: var(--color-ink);
}


.lede {
    font-size: clamp(0.9375rem, .5vw + 0.875rem, 1.125rem);
    line-height: 1.55;
    color: var(--color-text-muted);
}

.body-lg {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.body {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.body-sm {
    font-size: .9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.caption {
    font-size: .8125rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: currentColor;
    opacity: .6;
}

.eyebrow--rose {
    color: var(--color-secondary);
}

.eyebrow--plain::before {
    display: none;
}

em {
    font-style: italic;
    color: var(--color-primary-dark);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    --btn-bg: var(--color-primary);
    --btn-fg: #fff;
    --btn-border: transparent;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;

    padding: .75rem 1.25rem;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.005em;

    border-radius: 16px;
    color: var(--btn-fg);
    border: 1px solid var(--btn-border);

    background-image: linear-gradient(to right, var(--color-secondary) 50%, var(--color-primary) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.5s ease-out;

    white-space: nowrap;
    cursor: pointer;
    position: relative;
    isolation: isolate;
}

.btn:hover {
    transform: none;
    background-position: left bottom;
}

.btn:active {
    transform: none;
    background-position: left bottom;
}

.btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.btn svg {
    transition: color var(--dur) var(--ease-out);
}

.btn:hover svg {
    transform: none;
}


/* Primary */

.btn--primary {
    background-image: linear-gradient(to right, var(--color-secondary) 50%, var(--color-primary) 50%);
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    /* background: var(--color-secondary-dark); */
    box-shadow: var(--shadow-md);
}


/* Secondary */

.btn--secondary {
    background-image: linear-gradient(to right, var(--color-primary) 50%, var(--color-secondary) 50%);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    /* background: var(--color-primary-dark); */
    box-shadow: var(--shadow-md);
}


/* Ghost */

.btn--ghost {
    background: transparent;
    color: var(--color-ink);
    border-color: var(--color-border-strong);
}

.btn--ghost:hover {
    background: var(--color-surface);
    border-color: var(--color-secondary);
}


/* On dark */

.btn--onDark {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--onDark:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .35);
}


/* Text */

.btn--text {
    background: transparent;
    color: var(--color-ink);
    padding: .5rem .25rem;
    border-radius: 8px;
}

.btn--text:hover {
    color: var(--color-primary);
    background: transparent;
    border-color: transparent;
}


/* Sizes */

.btn--lg {
    padding: .875rem 1.375rem;
    font-size: .9375rem;
}

.btn--sm {
    padding: .625rem 1rem;
    font-size: .8125rem;
}


/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding: 1rem 0;
    transition: padding var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.site-header.is-scrolled {
    padding: .625rem 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 60px;
    padding: 0 .5rem 0 1.25rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(10, 26, 28, .06);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 8px 30px -14px rgba(10, 26, 28, .14);
    transition: background var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.site-header.is-scrolled .nav-shell {
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 34px -14px rgba(10, 26, 28, .20);
}

.brand {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
    color: var(--color-ink);
}

.brand__logo {
    height: 45px;
}

.brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9375rem;
    letter-spacing: -0.02em;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
    position: relative;
    overflow: hidden;
}

.brand__mark::after {
    content: "";
    position: absolute;
    inset: auto -20% -40% auto;
    width: 40px;
    height: 40px;
    background: var(--rose-700);
    border-radius: 50%;
    opacity: .55;
    filter: blur(8px);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text small {
    font-family: var(--font-body);
    font-size: .5625rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-links a {
    position: relative;
    padding: .55rem .875rem;
    font-size: .9375rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-pill);
    transition: color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.nav-links a:hover {
    color: var(--color-secondary);
    background: rgba(13, 148, 136, .06);
}

.nav-links a[aria-current="page"] {
    color: var(--color-secondary);
    font-weight: 600;
}

.nav-links a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-secondary);
    transform: translateX(-50%);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--color-ink);
    transition: background var(--dur) var(--ease-out);
}

.nav-toggle:hover {
    background: rgba(10, 26, 28, .06);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.6px;
    background: currentColor;
    border-radius: 2px;
    position: relative;
    transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 1.6px;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--dur) var(--ease-out), top var(--dur) var(--ease-out);
}

.nav-toggle span::before {
    top: -6px;
}

.nav-toggle span::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* =========================================================
   Mobile nav overlay
   ========================================================= */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--color-surface-dark);
    color: #fff;
    clip-path: circle(0% at calc(100% - 48px) 48px);
    transition: clip-path .55s var(--ease-in-out), visibility 0s linear .55s;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav.is-open {
    clip-path: circle(140% at calc(100% - 48px) 48px);
    visibility: visible;
    transition: clip-path .6s var(--ease-in-out), visibility 0s;
}

.mobile-nav__inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-top: 1rem;
}

.mobile-nav__links a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.025em;
    padding: .35rem 0;
    color: rgba(255, 255, 255, .55);
    transform: translateY(28px);
    opacity: 0;
    transition: color var(--dur) var(--ease-out);
}

.mobile-nav__links a:hover,
.mobile-nav__links a[aria-current="page"] {
    color: #fff;
}

.mobile-nav__links a .num {
    font-family: var(--font-body);
    font-size: .75rem;
    letter-spacing: .12em;
    color: var(--teal-400);
    vertical-align: super;
    margin-right: .5rem;
    font-weight: 600;
}

.mobile-nav.is-open .mobile-nav__links a {
    animation: navItemIn .5s var(--ease-out) forwards;
}

.mobile-nav.is-open .mobile-nav__links a:nth-child(1) {
    animation-delay: .18s;
}

.mobile-nav.is-open .mobile-nav__links a:nth-child(2) {
    animation-delay: .24s;
}

.mobile-nav.is-open .mobile-nav__links a:nth-child(3) {
    animation-delay: .30s;
}

.mobile-nav.is-open .mobile-nav__links a:nth-child(4) {
    animation-delay: .36s;
}

.mobile-nav.is-open .mobile-nav__links a:nth-child(5) {
    animation-delay: .42s;
}

@keyframes navItemIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav__foot {
    margin-top: auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 0;
    transition: opacity .4s var(--ease-out) .5s;
}

.mobile-nav.is-open .mobile-nav__foot {
    opacity: 1;
}

.mobile-nav__contact {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

.mobile-nav__contact a {
    color: #fff;
}

.mobile-nav__social {
    display: flex;
    gap: .5rem;
}

.mobile-nav__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .8);
    transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}

.mobile-nav__social a:hover {
    background: #fff;
    color: var(--color-ink);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    padding: calc(var(--nav-h) + clamp(3rem, 6vw, 5.5rem)) 0 clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.hero__content {
    max-width: 640px;
    align-self: start;
}

.hero__title {
    margin: 1.25rem 0 1.5rem;
}

.hero__title em {
    font-style: italic;
    color: var(--color-primary-dark);
    position: relative;
}

.hero__lede {
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.25rem;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
    font-size: .875rem;
    color: var(--color-text-muted);
}

.hero__meta strong {
    display: block;
    color: var(--color-ink);
    font-weight: 600;
    font-size: .9375rem;
}

.hero__visual {
    position: relative;
    aspect-ratio: 4 / 4;
    isolation: isolate;
}

/* Decorative blobs */
.hero__glow {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .35;
    pointer-events: none;
    z-index: -1;
}

.hero__glow--teal {
    top: -80px;
    left: -120px;
    background: var(--teal-300);
}

.hero__glow--rose {
    bottom: -100px;
    right: -100px;
    background: #ffb3c0;
    opacity: .3;
}

/* Image frame */
.media-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(140deg, var(--teal-200), var(--teal-600) 60%, var(--teal-800));
    box-shadow: var(--shadow-xl);
}

.media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 32, 34, .55));
    pointer-events: none;
}

.media-frame>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Floating glass cards */
.glass-card {
    position: absolute;
    padding: .875rem 1.125rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 16px 40px -20px rgba(10, 26, 28, .35), inset 0 1px 0 rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8125rem;
    color: var(--color-ink);
    z-index: 2;
}

.glass-card strong {
    display: block;
    font-weight: 600;
    font-size: .875rem;
}

.glass-card span {
    color: var(--color-text-muted);
}

.glass-card--mentor {
    top: 12%;
    left: -12%;
    animation: float 6s var(--ease-in-out) infinite;
}

.glass-card--cohort {
    bottom: 14%;
    right: -8%;
    animation: float 7s var(--ease-in-out) infinite reverse;
}

.glass-card--grant {
    bottom: -4%;
    left: 8%;
    animation: float 8s var(--ease-in-out) infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.glass-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: .75rem;
    color: #fff !important;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
    flex-shrink: 0;
}

.glass-avatar--rose {
    background: linear-gradient(135deg, var(--rose-600), var(--rose-900));
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal-500);
    position: relative;
}

.pulse-dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--teal-500);
    opacity: .35;
    animation: pulse 2s var(--ease-out) infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.6);
        opacity: .5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* =========================================================
   Marquee / trust strip
   ========================================================= */
.marquee {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
    overflow: hidden;
    background: var(--color-surface);
}

.marquee__track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.marquee__item::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-secondary);
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   Section primitives
   ========================================================= */
.section {
    padding: var(--section-y) 0;
}

.section--tight {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--surface {
    background: var(--color-surface);
}

.section--dark {
    background: var(--color-surface-dark);
    color: #fff;
}

.section--dark .h1,
.section--dark .h2,
.section--dark .h3,
.section--dark .display {
    color: #fff;
}

.section--dark .lede,
.section--dark .body {
    color: rgba(255, 255, 255, .7);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head__text {
    max-width: 640px;
}

.section-head__text .h2 {
    margin-top: 1rem;
}

/* =========================================================
   Welcome / editorial split
   ========================================================= */
.welcome__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.welcome__media {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--teal-100), var(--teal-400));
    box-shadow: var(--shadow-lg);
}

.welcome__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome__media::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(255, 255, 255, .6), transparent 55%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.welcome__stat {
    position: absolute;
    right: -1rem;
    bottom: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    min-width: 190px;
}

.welcome__stat strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    display: block;
    letter-spacing: -0.02em;
}

.welcome__stat span {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.welcome__body p+p {
    margin-top: 1.1rem;
}

.welcome__list {
    margin: 1.75rem 0 0;
    display: grid;
    gap: .75rem;
}

.welcome__list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9375rem;
    color: var(--color-text);
}

.welcome__list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-primary);
}

/* =========================================================
   Journey (sticky storytelling)
   ========================================================= */
.journey {
    background: var(--color-surface-dark);
    color: #fff;
}

.journey__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}

.journey__sticky {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
}

.journey__sticky .eyebrow {
    color: var(--teal-300);
}

.journey__sticky .eyebrow::before {
    background: var(--teal-400);
}

.journey__stage {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.journey__stage-num {
    font-family: var(--font-body);
    font-size: .8125rem;
    letter-spacing: .2em;
    color: var(--teal-400);
    font-weight: 600;
}

.journey__stage-word {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: .95;
    letter-spacing: -0.03em;
    color: #fff;
    display: block;
    transition: opacity .35s var(--ease-out);
}

.journey__stage-word.is-switching {
    opacity: 0;
}

.journey__rail {
    display: flex;
    gap: .5rem;
    margin-top: 2rem;
}

.journey__rail span {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .14);
    overflow: hidden;
    position: relative;
}

.journey__rail span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--teal-400);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .5s var(--ease-out);
}

.journey__rail span.is-active::after {
    transform: scaleX(1);
}

.journey__steps {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    padding-block: 3rem;
}

.journey__step {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: .25;
    transition: opacity .5s var(--ease-out);
}

.journey__step.is-active {
    opacity: 1;
}

.journey__step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    letter-spacing: -0.02em;
    margin-bottom: .875rem;
    color: #fff;
}

.journey__step p {
    color: rgba(255, 255, 255, .72);
    font-size: 1.0625rem;
    max-width: 32rem;
}

/* =========================================================
   Programs (bento)
   ========================================================= */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.bento__item {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
    isolation: isolate;
}

.bento__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-strong);
}

.bento__item h3 {
    margin-bottom: .625rem;
}

.bento__item p {
    font-size: .9375rem;
}

.bento__num {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bento__num::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
}

.bento__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    margin-bottom: 1.25rem;
}

.bento__item--lg {
    grid-column: span 4;
}

.bento__item--tall {
    grid-column: span 2;
    grid-row: span 2;
}

.bento__item--wide {
    grid-column: span 2;
}

.bento__item--grant {
    grid-column: span 2;
    background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
    border-color: transparent;
    color: #fff;
}

.bento__item--grant .bento__num {
    color: var(--teal-200);
}

.bento__item--grant .bento__num::before {
    background: var(--teal-200);
}

.bento__item--grant .bento__grant-amount {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    letter-spacing: -0.03em;
    line-height: 1;
    color: #fff;
}

.bento__item--grant p {
    color: rgba(255, 255, 255, .8);
}

.bento__item--rose {
    background: linear-gradient(150deg, var(--rose-700), var(--rose-900));
    border-color: transparent;
    color: #fff;
}

.bento__item--rose .bento__num {
    color: var(--rose-100);
}

.bento__item--rose .bento__num::before {
    background: var(--rose-100);
}

.bento__item--rose h3 {
    color: #fff;
}

.bento__item--rose p {
    color: rgba(255, 255, 255, .8);
}

.bento__item--rose .bento__icon {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.bento__visual {
    height: 100%;
    min-height: 180px;
    max-height: 180px;
    border-radius: var(--radius-md);
    background: url(../images/IMG_1443.jpg) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* .bento__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .5), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(13, 148, 136, .4), transparent 55%);
} */

/* Connection motif */
.nodes {
    position: absolute;
    inset: 0;
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary-dark);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .14);
}

.node--sm {
    width: 7px;
    height: 7px;
    background: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(190, 18, 60, .14);
}

.node--1 {
    top: 22%;
    left: 20%;
}

.node--2 {
    top: 60%;
    left: 46%;
}

.node--3 {
    top: 34%;
    left: 76%;
}

.node-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    transform-origin: left;
}

.node-line--1 {
    top: 24%;
    left: 21%;
    width: 28%;
    transform: rotate(14deg);
}

.node-line--2 {
    top: 58%;
    left: 47%;
    width: 30%;
    transform: rotate(-16deg);
}

/* =========================================================
   Video
   ========================================================= */
.video-section {
    position: relative;
    background: var(--color-surface-dark);
    color: #fff;
    padding: var(--section-y) 0;
}

.video-section__inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.video-section .eyebrow {
    color: var(--teal-300);
}

.video-section .eyebrow::before {
    background: var(--teal-400);
}

.video-section .h2 {
    color: #fff;
    margin: 1rem 0 1.25rem;
}

.video-section p {
    color: rgba(255, 255, 255, .72);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(140deg, #0f2b2d, #061719);
    box-shadow: 0 60px 90px -40px rgba(0, 0, 0, .7);
    cursor: pointer;
}

.video-frame img,
.video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.video-frame__poster {
    position: absolute;
    inset: 0;
    background: url('../images/IMG_31531.jpg') center/cover no-repeat;
}

.video-frame__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.video-frame__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transition: transform var(--dur) var(--ease-out);
}

.video-frame:hover .video-frame__play {
    transform: scale(1.04);
}

.play-btn {
    width: clamp(72px, 9vw, 104px);
    height: clamp(72px, 9vw, 104px);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .4);
    transition: background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.video-frame:hover .play-btn {
    background: rgba(255, 255, 255, .22);
}

.play-btn svg {
    width: 32%;
    height: 32%;
    margin-left: 4px;
}

.video-frame__label {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .5rem .875rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: .8125rem;
    color: rgba(255, 255, 255, .9);
}

.video-frame__label .pulse-dot {
    background: var(--rose-600);
}

.video-frame__label .pulse-dot::after {
    background: var(--rose-600);
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
    background: var(--color-surface);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
}

.feature-quote {
    position: relative;
    padding: clamp(2rem, 4vw, 3.25rem);
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, #fbfaf7, #f3f6f4);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.feature-quote::before {
    content: "\201C";
    position: absolute;
    top: -40px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 16rem;
    line-height: 1;
    color: var(--rose-100);
    pointer-events: none;
}

.feature-quote blockquote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.4rem, 1.6vw + 1rem, 2rem);
    line-height: 1.3;
    letter-spacing: -0.018em;
    color: var(--color-ink);
    max-width: 32rem;
    position: relative;
    z-index: 1;
}

.feature-quote__meta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: .875rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: .9375rem;
    color: #fff !important;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-800));
    flex-shrink: 0;
}

.feature-quote__meta strong {
    display: block;
    font-weight: 600;
    color: var(--color-ink);
}

.feature-quote__meta span {
    font-size: .8125rem;
    color: var(--color-text-muted);
}

.quote-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-card {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    transition: border-color var(--dur) var(--ease-out),
        background var(--dur) var(--ease-out),
        transform var(--dur) var(--ease-out);
}

.quote-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-border-strong);
}

.quote-card.is-active {
    background: var(--color-surface);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.quote-card p {
    font-size: .9375rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.quote-card__meta {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .8125rem;
    color: var(--color-text-muted);
}

.quote-card__meta .avatar {
    width: 30px;
    height: 30px;
    font-size: .6875rem;
}

.quote-card__meta strong {
    color: var(--color-ink);
    font-weight: 600;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.faq__media {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--teal-100), var(--teal-300));
    box-shadow: var(--shadow-lg);
}

.faq__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion {
    border-top: 1px solid var(--color-border);
}

.acc-item {
    border-bottom: 1px solid var(--color-border);
}

.acc-trigger {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--color-ink);
    letter-spacing: -0.008em;
    transition: color var(--dur) var(--ease-out);
}

.acc-trigger:hover {
    color: var(--color-primary-dark);
}

.acc-trigger__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--color-border-strong);
    display: grid;
    place-items: center;
    transition: transform var(--dur) var(--ease-out),
        background var(--dur) var(--ease-out),
        border-color var(--dur) var(--ease-out),
        color var(--dur) var(--ease-out);
    color: var(--color-text);
}

.acc-trigger[aria-expanded="true"] .acc-trigger__icon {
    transform: rotate(45deg);
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.acc-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s var(--ease-out);
}

.acc-panel__inner {
    padding-bottom: 1.5rem;
    padding-right: 3rem;
    font-size: .9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
    position: relative;
    overflow: hidden;
    background: var(--color-surface-dark);
    color: #fff;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(13, 148, 136, .5), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(190, 18, 60, .35), transparent 45%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    text-align: center;
    max-width: 780px;
    margin-inline: auto;
}

.cta .h1 {
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta p {
    color: rgba(255, 255, 255, .72);
    max-width: 34rem;
    margin-inline: auto;
}

.cta__actions {
    margin-top: 2.25rem;
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: #06161a;
    color: rgba(255, 255, 255, .65);
    padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
    font-size: .9375rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 340px;
}

.footer__brand .brand {
    color: #fff;
}

.footer__brand .brand__text small {
    color: rgba(255, 255, 255, .5);
}

.footer__brand p {
    color: rgba(255, 255, 255, .55);
    font-size: .9375rem;
    line-height: 1.65;
}

.footer__brand img {
    max-height: 45px;
}

.footer__col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer__col a {
    color: rgba(255, 255, 255, .6);
    transition: color var(--dur) var(--ease-out);
}

.footer__col a:hover {
    color: #fff;
}

.footer__newsletter form {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
    padding: .375rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
}

.footer__newsletter input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: .5rem 1rem;
    color: #fff;
    font-size: .875rem;
    outline: none;
}

.footer__newsletter input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.footer__newsletter button {
    padding: .6rem 1.1rem;
    border-radius: var(--radius-pill);
    background: var(--color-primary);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    transition: background var(--dur) var(--ease-out);
}

.footer__newsletter button:hover {
    background: var(--teal-500);
}

.footer__bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: .8125rem;
    color: rgba(255, 255, 255, .45);
}

.footer__social {
    display: flex;
    gap: .5rem;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7);
    transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}

.footer__social a:hover {
    background: #fff;
    color: var(--color-ink);
    border-color: #fff;
}

/* =========================================================
   Reveal animation
   ========================================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
    will-change: opacity, transform;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-reveal="clip"] {
    clip-path: inset(0 0 100% 0);
    opacity: 1;
    transform: none;
    transition: clip-path 1s var(--ease-out);
}

[data-reveal="clip"].is-visible {
    clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }
}

/* =========================================================
   Scroll progress
   ========================================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: transparent;
    z-index: 200;
    pointer-events: none;
}

.scroll-progress::after {
    content: "";
    display: block;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, var(--teal-500), var(--rose-600));
    transition: width .1s linear;
}

/* =========================================================
   Apply page
   ========================================================= */
.page-hero {
    padding: calc(var(--nav-h) + clamp(2.5rem, 5vw, 4rem)) 0 clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, #f6faf9, var(--color-background));
    border-bottom: 1px solid var(--color-border);
}

.page-hero__inner {
    max-width: 780px;
}

.page-hero h1 {
    margin: 1rem 0 1.25rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    transition: color var(--dur) var(--ease-out);
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb svg {
    width: 12px;
    height: 12px;
    opacity: .5;
}

.breadcrumb [aria-current="page"] {
    color: var(--color-ink);
    font-weight: 500;
}

.apply-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.apply-aside {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.apply-aside__block {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.apply-aside__block h3 {
    font-size: 1rem;
    margin-bottom: .75rem;
}

.apply-aside__block p,
.apply-aside__block li {
    font-size: .875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.apply-aside__block ul {
    display: grid;
    gap: .625rem;
    margin-top: .5rem;
}

.apply-aside__block li {
    display: flex;
    gap: .625rem;
    align-items: flex-start;
}

.apply-aside__block svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-primary);
}

.apply-aside--highlight {
    background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
    border-color: transparent;
    color: #fff;
}

.apply-aside--highlight h3 {
    color: #fff;
}

.apply-aside--highlight .apply-aside__amount {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: .5rem 0 .75rem;
}

.apply-aside--highlight p {
    color: rgba(255, 255, 255, .8);
}

.form-card {
    padding: clamp(1.75rem, 3vw, 3rem);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--color-ink);
    letter-spacing: -0.005em;
}

.field label .req {
    color: var(--color-secondary);
    margin-left: 2px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: .875rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-strong);
    background: var(--color-background);
    font-size: .9375rem;
    color: var(--color-text);
    transition: border-color var(--dur) var(--ease-out),
        box-shadow var(--dur) var(--ease-out),
        background var(--dur) var(--ease-out);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-surface);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .14);
}

.field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.field .hint {
    font-size: .75rem;
    color: var(--color-text-muted);
}

.field-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem 1rem;
    border: 1px dashed var(--color-border-strong);
    border-radius: var(--radius-md);
    background: var(--color-background);
    cursor: pointer;
    transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
}

.field-file:hover {
    border-color: var(--color-primary);
    background: var(--color-surface);
}

.field-file input[type="file"] {
    display: none;
}

.field-file__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.field-file__text {
    flex: 1;
    min-width: 0;
}

.field-file__text strong {
    display: block;
    font-size: .875rem;
    color: var(--color-ink);
    font-weight: 600;
}

.field-file__text span {
    font-size: .75rem;
    color: var(--color-text-muted);
}

.form-actions {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-actions small {
    color: var(--color-text-muted);
    font-size: .8125rem;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hero__visual {
        max-width: 500px;
        margin-inline: auto;
        width: 100%;
    }

    .hero__content {
        max-width: none;
    }

    .welcome__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .welcome__media {
        max-width: 480px;
    }

    .journey__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey__sticky {
        position: relative;
        top: auto;
    }

    .journey__steps {
        padding-block: 1rem;
        gap: 2.5rem;
    }

    .journey__step {
        min-height: 0;
        padding: 2rem;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .1);
    }

    .video-section__inner {
        grid-template-columns: 1fr;
    }

    .video-frame {
        max-width: 760px;
    }

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

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

    .faq__media {
        position: relative;
        top: auto;
        max-width: 420px;
        aspect-ratio: 16 / 12;
    }

    .bento {
        grid-template-columns: repeat(4, 1fr);
    }

    .bento__item--lg,
    .bento__item--wide {
        grid-column: span 4;
    }

    .bento__item--tall,
    .bento__item--grant {
        grid-column: span 2;
        grid-row: auto;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer__brand {
        max-width: none;
        grid-column: 1 / -1;
    }

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

    .apply-aside {
        position: relative;
        top: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .apply-aside__block {
        flex: 1 1 280px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }

    .nav-links,
    .nav-actions .btn--ghost {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-shell {
        padding: 0 .25rem 0 1rem;
        height: 56px;
    }

    .glass-card {
        padding: .625rem .875rem;
        font-size: .75rem;
    }

    .glass-card--mentor {
        left: -4%;
    }

    .glass-card--cohort {
        right: -3%;
    }

    .glass-card strong {
        font-size: .8125rem;
    }

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

    .bento__item--lg,
    .bento__item--wide,
    .bento__item--tall,
    .bento__item--grant {
        grid-column: span 1;
    }

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

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

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero__meta {
        gap: 1rem 1.5rem;
    }
}

@media (max-width: 420px) {
    .container {
        width: calc(100% - 1.75rem);
    }
}

/* Reduced motion — turn off decorative loops */
@media (prefers-reduced-motion: reduce) {

    .glass-card--mentor,
    .glass-card--cohort,
    .glass-card--grant {
        animation: none !important;
    }

    .marquee__track {
        animation: none !important;
    }

    .pulse-dot::after {
        animation: none !important;
    }
}

/* =========================================================
   Inner page hero — reusable (image OR color variants)
   ========================================================= */
.page-hero {
    position: relative;
    min-height: clamp(500px, 58vh, 640px);
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    width: min(100% - 2.5rem, 860px);
    margin-inline: auto;
    text-align: center;
}

/* — Image variant — */
.page-hero--image {
    background-color: var(--teal-900);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 22, 26, .5) 0%, rgba(6, 22, 26, .8) 100%);
    z-index: 0;
}

.page-hero--image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 30%, rgba(13, 148, 136, .42), transparent 55%),
        radial-gradient(circle at 82% 72%, rgba(190, 18, 60, .32), transparent 55%);
    z-index: 1;
    pointer-events: none;
}

/* — Color variants — */
.page-hero--teal {
    background: linear-gradient(150deg, var(--teal-700), var(--teal-900));
}

.page-hero--rose {
    background: linear-gradient(150deg, var(--rose-700), var(--rose-900));
}

.page-hero--ink {
    background: linear-gradient(150deg, #0d2b2e, #06161a);
}

.page-hero--teal::before,
.page-hero--rose::before,
.page-hero--ink::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 78%);
    z-index: 0;
    pointer-events: none;
}

.page-hero--teal::after,
.page-hero--rose::after,
.page-hero--ink::after {
    content: "";
    position: absolute;
    inset: auto -15% -55% auto;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .32;
    pointer-events: none;
    z-index: 0;
}

.page-hero--teal::after {
    background: var(--teal-400);
}

.page-hero--rose::after {
    background: var(--rose-600);
}

.page-hero--ink::after {
    background: var(--teal-600);
}

/* — Typography (dark background) — */
.page-hero .breadcrumb {
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    margin-top: 1.5rem;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, .72);
    transition: color var(--dur) var(--ease-out);
}

.page-hero .breadcrumb a:hover {
    color: #fff;
}

.page-hero .breadcrumb svg {
    opacity: .4;
}

.page-hero .breadcrumb [aria-current="page"] {
    color: #fff;
    font-weight: 500;
}

.page-hero .eyebrow {
    color: var(--teal-300);
}

.page-hero .eyebrow::before {
    background: var(--teal-400);
}

.page-hero--rose .eyebrow {
    color: #ffc9d2;
}

.page-hero--rose .eyebrow::before {
    background: #ffc9d2;
}

.page-hero h1 {
    color: #fff;
    margin: 1rem auto 1.25rem;
    max-width: 22ch;
}

.page-hero .lede {
    color: rgba(255, 255, 255, .78);
    max-width: 620px;
    margin-inline: auto;
}

.page-hero__meta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2.75rem;
}

.page-hero__meta>div {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
    min-width: 130px;
}

.page-hero__meta strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-hero__meta span {
    font-size: .6875rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px;
    display: block;
}

/* =========================================================
   Timeline
   ========================================================= */
.timeline {
    position: relative;
    padding-left: 2.25rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-border) 60%, transparent);
}

.timeline__item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__item::before {
    content: "";
    position: absolute;
    left: -2.25rem;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--color-surface);
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .12);
}

.timeline__year {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: .5rem;
    display: block;
}

.timeline__item h3 {
    margin-bottom: .5rem;
}

.timeline__item p {
    font-size: .9375rem;
    color: var(--color-text-muted);
    max-width: 42rem;
}

/* =========================================================
   Sticky side nav (long-form pages)
   ========================================================= */
.sticky-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.sticky-nav {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding-left: 1rem;
    border-left: 1px solid var(--color-border);
}

.sticky-nav a {
    font-size: .875rem;
    padding: .5rem 0 .5rem 1rem;
    margin-left: -1rem;
    color: var(--color-text-muted);
    border-left: 2px solid transparent;
    transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}

.sticky-nav a:hover {
    color: var(--color-ink);
}

.sticky-nav a[aria-current="true"] {
    color: var(--color-primary-dark);
    font-weight: 600;
    border-left-color: var(--color-primary);
}

.sticky-content>section+section {
    margin-top: clamp(3rem, 6vw, 5rem);
}

.sticky-content h2 {
    margin-bottom: 1.25rem;
}

.sticky-content p+p {
    margin-top: 1rem;
}

/* =========================================================
   Process steps
   ========================================================= */
.process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.process__card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.process__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.process__num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 2.75rem;
    line-height: 1;
    color: var(--color-primary);
    letter-spacing: -0.03em;
}

.process__card--rose .process__num {
    color: var(--color-secondary);
}

.process__card h3 {
    font-size: 1.125rem;
}

.process__card p {
    font-size: .9375rem;
    color: var(--color-text-muted);
}

/* =========================================================
   Stat band
   ========================================================= */
.stat-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stat-band__num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--color-primary-dark);
    display: block;
    margin-bottom: .5rem;
}

.stat-band__item span:last-child {
    font-size: .8125rem;
    color: var(--color-text-muted);
    letter-spacing: .04em;
}

/* =========================================================
   Founder / full-bleed feature
   ========================================================= */
.founder {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.founder__portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(160deg, var(--teal-100), var(--teal-300));
    box-shadow: var(--shadow-xl);
}

.founder__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder__quote {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.6vw + 1rem, 2.125rem);
    line-height: 1.28;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin: 1.25rem 0 1.75rem;
}

.founder__quote em {
    color: var(--color-primary-dark);
    font-style: italic;
}

.founder__sig {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-primary-dark);
    margin-top: 1rem;
}

/* =========================================================
   Oversized statement
   ========================================================= */
.statement {
    text-align: center;
    max-width: 960px;
    margin-inline: auto;
}

.statement__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 3.2vw + .75rem, 3.5rem);
    line-height: 1.14;
    letter-spacing: -0.028em;
    color: var(--color-ink);
}

.statement__text em {
    color: var(--color-primary-dark);
    font-style: italic;
}

.statement__text .rose {
    color: var(--color-secondary);
    font-style: italic;
}

.statement p.lede {
    margin-top: 1.75rem;
    margin-inline: auto;
    max-width: 560px;
}

/* =========================================================
   Checklist split (two contrasting panels)
   ========================================================= */
.check-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.check-panel {
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.check-panel--dark {
    background: var(--color-surface-dark);
    border-color: transparent;
    color: #fff;
}

.check-panel--dark h3 {
    color: #fff;
}

.check-panel--dark li {
    color: rgba(255, 255, 255, .75);
}

.check-panel--dark svg {
    color: var(--teal-400);
}

.check-panel h3 {
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.check-panel ul {
    display: grid;
    gap: .875rem;
}

.check-panel li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .9375rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

.check-panel svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-primary);
}

/* =========================================================
   Responsive — new components
   ========================================================= */
@media (max-width: 1024px) {
    .sticky-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sticky-nav {
        position: relative;
        top: auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .5rem;
        border-left: 0;
        padding-left: 0;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 1rem;
    }

    .sticky-nav a {
        padding: .375rem .875rem;
        border-radius: var(--radius-pill);
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        font-size: .8125rem;
        margin: 0;
    }

    .sticky-nav a[aria-current="true"] {
        background: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary);
    }

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

    .stat-band {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem 1.25rem;
    }

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

    .founder__portrait {
        max-width: 480px;
        margin-inline: auto;
    }

    .check-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero {
        min-height: 480px;
        padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
    }

    .page-hero__meta {
        gap: 1rem 1.75rem;
    }

    .page-hero__meta>div {
        min-width: 100px;
    }

    .stat-band {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   NEWS — shared chips & meta
   ========================================================= */
.news-chip {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .3125rem .6875rem;
    border-radius: var(--radius-pill);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary-dark);
    background: rgba(13, 148, 136, .10);
    border: 1px solid rgba(13, 148, 136, .18);
    white-space: nowrap;
}

.news-chip--rose {
    color: var(--color-secondary-dark);
    background: rgba(190, 18, 60, .08);
    border-color: rgba(190, 18, 60, .18);
}

.news-chip--onImage {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #fff;
    background: rgba(10, 26, 28, .55);
    border-color: rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .625rem;
    font-size: .8125rem;
    color: var(--color-text-muted);
}

.news-meta time {
    font-variant-numeric: tabular-nums;
}

.news-meta__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-border-strong);
}

/* =========================================================
   NEWS — homepage section
   ========================================================= */
.news-head__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color var(--dur) var(--ease-out), gap var(--dur) var(--ease-out);
}

.news-head__link:hover {
    border-color: var(--color-primary-dark);
    gap: .75rem;
}

.news-feature {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(1.25rem, 3.5vw, 3rem);
    align-items: center;
    padding: clamp(1rem, 1.8vw, 1.75rem);
    border-radius: var(--radius-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.news-feature:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.news-feature__media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(150deg, var(--teal-200), var(--teal-700));
    display: block;
}

.news-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}

.news-feature:hover .news-feature__media img {
    transform: scale(1.04);
}

.news-feature__body {
    padding-right: clamp(0rem, 1.5vw, 1.25rem);
}

.news-feature__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.6vw + 1rem, 2.125rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin: 1rem 0 1rem;
}

.news-feature__title a {
    color: inherit;
    transition: color var(--dur) var(--ease-out);
}

.news-feature__title a:hover {
    color: var(--color-primary-dark);
}

.news-feature__excerpt {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 44ch;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--color-ink);
    transition: color var(--dur) var(--ease-out), gap var(--dur) var(--ease-out);
}

.news-readmore:hover {
    color: var(--color-primary-dark);
    gap: .75rem;
}

/* Newspaper-style rule strip */
.news-strip {
    margin-top: clamp(2rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.news-mini {
    padding: clamp(1.5rem, 2.5vw, 2.25rem) clamp(1rem, 2vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: .875rem;
    position: relative;
    transition: background var(--dur) var(--ease-out);
}

.news-mini+.news-mini {
    border-left: 1px solid var(--color-border);
}

.news-mini:hover {
    background: rgba(13, 148, 136, .035);
}

.news-mini__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--color-ink);
}

.news-mini__title a {
    color: inherit;
    transition: color var(--dur) var(--ease-out);
}

.news-mini__title a:hover {
    color: var(--color-primary-dark);
}

.news-mini__excerpt {
    font-size: .875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .news-feature {
        grid-template-columns: 1fr;
    }

    .news-strip {
        grid-template-columns: 1fr;
    }

    .news-mini+.news-mini {
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }
}

/* =========================================================
   NEWS — listing page layout
   ========================================================= */
.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.news-main {
    min-width: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.25rem);
}

.post-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: transform var(--dur) var(--ease-out),
        box-shadow var(--dur) var(--ease-out),
        border-color var(--dur) var(--ease-out);
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-strong);
}

.post-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: linear-gradient(150deg, var(--teal-200), var(--teal-700));
    overflow: hidden;
}

.post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-out);
}

.post-card:hover .post-card__media img {
    transform: scale(1.05);
}

.post-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}

.post-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.24;
    letter-spacing: -0.018em;
    color: var(--color-ink);
}

.post-card__title a {
    color: inherit;
    transition: color var(--dur) var(--ease-out);
}

.post-card__title a:hover {
    color: var(--color-primary-dark);
}

.post-card__excerpt {
    font-size: .9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.post-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .75rem;
    color: var(--color-text-muted);
    padding-top: .875rem;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.post-card__foot .news-readmore {
    font-size: .8125rem;
}

/* Feature card (top of listing) */
.post-card--feature {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
}

.post-card--feature .post-card__media {
    flex: 1 1 55%;
    aspect-ratio: auto;
    min-height: 340px;
}

.post-card--feature .post-card__body {
    flex: 1 1 45%;
    padding: clamp(1.75rem, 3vw, 2.75rem);
    justify-content: center;
}

.post-card--feature .post-card__title {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
}

@media (max-width: 900px) {
    .post-card--feature {
        flex-direction: column;
    }

    .post-card--feature .post-card__media {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .news-layout {
        grid-template-columns: 1fr;
    }

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

/* =========================================================
   NEWS — sidebar widgets
   ========================================================= */
.sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .sidebar {
        position: relative;
        top: auto;
    }
}

.widget {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
}

.widget__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-ink);
    margin-bottom: 1.125rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.widget__title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

/* Search */
.search-form {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .3125rem .3125rem .3125rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--color-background);
    border: 1px solid var(--color-border-strong);
    transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.search-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .12);
}

.search-form svg {
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.search-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    outline: none;
    font-size: .9375rem;
    padding: .5rem 0;
}

.search-form button {
    padding: .625rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--color-ink);
    color: #fff;
    font-size: .8125rem;
    font-weight: 600;
    transition: background var(--dur) var(--ease-out);
}

.search-form button:hover {
    background: var(--color-primary-dark);
}

/* Categories */
.cat-list {
    display: flex;
    flex-direction: column;
    gap: .125rem;
}

.cat-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .625rem .625rem .625rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .9375rem;
    color: var(--color-text);
    transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}

.cat-list a:hover {
    background: rgba(13, 148, 136, .07);
    color: var(--color-primary-dark);
}

.cat-list a[aria-current="true"] {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.cat-list__count {
    font-size: .75rem;
    color: var(--color-text-muted);
    background: var(--color-background);
    padding: .125rem .5rem;
    border-radius: var(--radius-pill);
    font-variant-numeric: tabular-nums;
}

.cat-list a[aria-current="true"] .cat-list__count {
    background: rgba(13, 148, 136, .16);
    color: var(--color-primary-dark);
}

/* Recent posts */
.recent-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: .875rem;
    align-items: center;
}

.recent-item__media {
    width: 62px;
    height: 62px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(150deg, var(--teal-200), var(--teal-700));
    flex-shrink: 0;
}

.recent-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-item__title {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-ink);
    margin-bottom: .25rem;
    transition: color var(--dur) var(--ease-out);
}

.recent-item__title:hover {
    color: var(--color-primary-dark);
}

.recent-item time {
    font-size: .75rem;
    color: var(--color-text-muted);
    font-variant-numeric: tabular-nums;
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tag-cloud a {
    padding: .375rem .75rem;
    border-radius: var(--radius-pill);
    font-size: .75rem;
    font-weight: 500;
    color: var(--color-text);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    transition: background var(--dur) var(--ease-out),
        color var(--dur) var(--ease-out),
        border-color var(--dur) var(--ease-out);
}

.tag-cloud a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Sidebar CTA */
.widget--cta {
    background: linear-gradient(150deg, var(--teal-600), var(--teal-800));
    border-color: transparent;
    color: #fff;
}

.widget--cta .widget__title {
    color: #fff;
}

.widget--cta .widget__title::after {
    background: rgba(255, 255, 255, .2);
}

.widget--cta p {
    color: rgba(255, 255, 255, .78);
    font-size: .875rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.widget--cta .btn {
    width: 100%;
    justify-content: center;
}

/* =========================================================
   NEWS — pagination
   ========================================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: .375rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 .875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    font-size: .875rem;
    font-weight: 500;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: background var(--dur) var(--ease-out),
        color var(--dur) var(--ease-out),
        border-color var(--dur) var(--ease-out);
}

.pagination a:hover {
    border-color: var(--color-ink);
    color: var(--color-ink);
}

.pagination [aria-current="page"] {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: #fff;
}

.pagination .dots {
    border: 0;
    background: transparent;
    color: var(--color-text-muted);
}

/* =========================================================
   NEWS — article (details page)
   ========================================================= */
.article-hero {
    padding: calc(var(--nav-h) + 3rem) 0 clamp(2rem, 4vw, 3rem);
    background: linear-gradient(180deg, #f6faf9, var(--color-background));
}

.article-hero__inner {
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
}

.article-hero .breadcrumb {
    justify-content: center;
    margin-top: 1.5rem;
}

.article-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw + 1rem, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.028em;
    color: var(--color-ink);
    margin: 1.25rem auto 1.5rem;
    max-width: 22ch;
}

.article-hero__lede {
    font-size: clamp(1.0625rem, .5vw + 1rem, 1.25rem);
    line-height: 1.55;
    color: var(--color-text-muted);
    max-width: 46rem;
    margin-inline: auto;
}

.article-hero__meta {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: .8125rem;
    color: var(--color-text-muted);
}

.article-hero__author {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
}

.article-hero__author strong {
    color: var(--color-ink);
    font-weight: 600;
    font-size: .875rem;
}

.article-hero__author .avatar {
    width: 36px;
    height: 36px;
    font-size: .75rem;
}

.article-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-border-strong);
}

.article-media {
    width: min(100% - 2.5rem, var(--container-wide));
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(150deg, var(--teal-200), var(--teal-700));
    box-shadow: var(--shadow-lg);
}

.article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    max-width: 720px;
    margin: clamp(2.5rem, 5vw, 4rem) auto 0;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text);
}

.article-body>*+* {
    margin-top: 1.35rem;
}

.article-body h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 1.4vw + 1rem, 1.875rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin-top: 2.75rem;
    margin-bottom: .25rem;
}

.article-body h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-ink);
    margin-top: 2rem;
    margin-bottom: .125rem;
}

.article-body p {
    color: var(--color-text);
}

.article-body a {
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
}

.article-body a:hover {
    color: var(--color-primary);
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    display: grid;
    gap: .625rem;
}

.article-body ul li {
    list-style: none;
    position: relative;
    padding-left: .875rem;
}

.article-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
}

.article-body ol {
    list-style: decimal;
}

.article-body ol li::marker {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.article-body blockquote {
    margin: 2.25rem 0;
    padding: 1.5rem 0 1.5rem 1.75rem;
    border-left: 3px solid var(--color-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.25rem, 1.2vw + 1rem, 1.5rem);
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--color-ink);
    font-style: italic;
}

.article-body figure {
    margin: 2.5rem 0;
}

.article-body figure img {
    width: 100%;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, var(--teal-200), var(--teal-700));
}

.article-body figcaption {
    margin-top: .75rem;
    font-size: .8125rem;
    color: var(--color-text-muted);
    text-align: center;
    font-style: italic;
}

.article-body hr {
    margin: 3rem 0;
    border: 0;
    height: 1px;
    background: var(--color-border);
}

/* Article footer */
.article-foot {
    max-width: 720px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.article-foot__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.share-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8125rem;
    color: var(--color-text-muted);
}

.share-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    transition: background var(--dur) var(--ease-out),
        color var(--dur) var(--ease-out),
        border-color var(--dur) var(--ease-out);
}

.share-row a:hover {
    background: var(--color-ink);
    border-color: var(--color-ink);
    color: #fff;
}

.author-card {
    max-width: 720px;
    margin: 2.5rem auto 0;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, #fbfaf7, #f1f5f3);
    border: 1px solid var(--color-border);
}

.author-card .avatar {
    width: 64px;
    height: 64px;
    font-size: 1.125rem;
}

.author-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--color-ink);
    margin-bottom: .25rem;
}

.author-card p {
    font-size: .875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Prev / next */
.post-nav {
    max-width: 900px;
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.post-nav a {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    transition: border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

.post-nav a:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.post-nav small {
    display: block;
    font-size: .6875rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: .5rem;
}

.post-nav strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25;
    color: var(--color-ink);
    letter-spacing: -0.012em;
}

.post-nav a:last-child {
    text-align: right;
}

/* Related */
.related {
    padding: clamp(3rem, 6vw, 5rem) 0;
    border-top: 1px solid var(--color-border);
    margin-top: clamp(3rem, 6vw, 5rem);
    background: var(--color-surface);
}

.related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .post-nav {
        grid-template-columns: 1fr;
    }

    .post-nav a:last-child {
        text-align: left;
    }

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

    .author-card {
        flex-direction: column;
        text-align: center;
    }

    .article-foot {
        flex-direction: column;
        align-items: flex-start;
    }
}