.ds-shell {
    position: relative;
    color: #eef4ff;
    background:
        radial-gradient(circle at top right, rgba(87, 116, 189, 0.18), transparent 28%),
        radial-gradient(circle at 20% 18%, rgba(247, 196, 98, 0.08), transparent 22%),
        linear-gradient(180deg, #091120 0%, #0c1730 34%, #08111f 100%);
}

.ds-shell a {
    color: #b9ddff;
}

.ds-shell a:hover,
.ds-shell a:focus-visible {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.8);
}

.ds-hero {
    position: relative;
    overflow: hidden;
    min-height: 78vh;
    padding: 3rem 0 4rem;
}

.ds-hero-backdrop,
.ds-hero-glow,
.ds-stars,
.ds-hero-slides,
.ds-hero-slide {
    position: absolute;
    inset: 0;
}

.ds-hero-backdrop {
    overflow: hidden;
}

.ds-stars {
    opacity: 0.55;
    background-repeat: repeat;
}

.ds-stars--near {
    background-image:
        radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.85) 0 1px, transparent 1.8px),
        radial-gradient(circle at 66% 18%, rgba(255, 255, 255, 0.65) 0 1.2px, transparent 2px),
        radial-gradient(circle at 78% 62%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.8px),
        radial-gradient(circle at 34% 74%, rgba(255, 255, 255, 0.75) 0 1px, transparent 1.9px);
    background-size: 360px 360px;
}

.ds-stars--far {
    opacity: 0.28;
    background-image:
        radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.9) 0 0.7px, transparent 1.5px),
        radial-gradient(circle at 58% 48%, rgba(255, 255, 255, 0.7) 0 0.7px, transparent 1.5px),
        radial-gradient(circle at 82% 32%, rgba(255, 255, 255, 0.8) 0 0.7px, transparent 1.5px),
        radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.75) 0 0.7px, transparent 1.5px);
    background-size: 240px 240px;
}

.ds-hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: dsCrossfade 24s infinite;
}

.ds-hero-slide--base {
    opacity: 1;
    animation: none;
}

.ds-hero-glow {
    background:
        linear-gradient(180deg, rgba(7, 12, 24, 0.1) 0%, rgba(7, 12, 24, 0.76) 72%, rgba(7, 12, 24, 0.94) 100%),
        radial-gradient(circle at center bottom, rgba(247, 196, 98, 0.18), transparent 28%);
}

@keyframes dsCrossfade {
    0%, 45% {
        opacity: 1;
    }
    55%, 100% {
        opacity: 0;
    }
}

.ds-hero-inner,
.ds-band-shell,
.ds-section-shell {
    position: relative;
    z-index: 1;
    width: min(1500px, calc(100% - 2rem));
    margin: 0 auto;
}

.ds-hero-inner {
    min-height: 68vh;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 2rem;
}

.ds-hero-copy {
    max-width: 760px;
    padding: 2rem 0 1rem;
}

.ds-kicker,
.ds-section-kicker,
.ds-resource-badge,
.ds-skyframe-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ds-kicker,
.ds-section-kicker,
.ds-skyframe-eyebrow {
    color: #a9c5f5;
}

.ds-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 5vw, 5.6rem);
    line-height: 0.95;
    color: #ffffff;
    text-wrap: balance;
}

.ds-hero-tagline {
    max-width: 38rem;
    margin: 1.25rem 0 0;
    font-size: clamp(1.2rem, 1.65vw, 1.6rem);
    line-height: 1.55;
    color: rgba(236, 244, 255, 0.92);
}

.ds-designation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0 0;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(178, 200, 241, 0.24);
    border-radius: 999px;
    background: rgba(9, 20, 42, 0.42);
    color: #f6db93;
    font-weight: 600;
}

.ds-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.ds-hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border: 1px solid rgba(180, 205, 246, 0.28);
    border-radius: 999px;
    background: rgba(9, 20, 42, 0.48);
    color: #eef4ff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ds-hero-link:hover,
.ds-hero-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(246, 219, 147, 0.55);
    background: rgba(17, 33, 67, 0.76);
}

.ds-hero-aside {
    justify-self: end;
    align-self: end;
    max-width: 360px;
}

.ds-skyframe-stack {
    display: grid;
}

.ds-skyframe {
    grid-area: 1 / 1;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(186, 206, 244, 0.2);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(10, 21, 44, 0.72), rgba(8, 17, 31, 0.8));
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(2, 8, 22, 0.38);
    opacity: 0;
    animation: dsCrossfade 24s infinite;
}

.ds-skyframe--base {
    opacity: 1;
    animation: none;
}

.ds-skyframe-caption,
.ds-skyframe-credit {
    margin: 0;
    color: rgba(238, 244, 255, 0.88);
}

.ds-skyframe-credit {
    margin-top: 0.65rem;
    font-size: 0.92rem;
    color: rgba(169, 197, 245, 0.86);
}

.ds-skyframe-credit :where(p, div, span) {
    margin: 0;
}

.ds-skyframe-credit :where(*:first-child) {
    margin-top: 0;
}

.ds-skyframe-credit :where(*:last-child) {
    margin-bottom: 0;
}

.ds-skyframe-credit :where(a) {
    color: #f6db93;
}

.ds-story-band {
    position: relative;
    margin-top: -2rem;
    padding: 0 0 2rem;
}

.ds-band-shell {
    display: block;
}

.ds-story-intro,
.ds-side-panel,
.ds-feature-panel,
.ds-impact-card,
.ds-action-card,
.ds-resource-card,
.ds-video-card,
.ds-education-card,
.ds-official-card,
.ds-gallery-card {
    border: 1px solid rgba(182, 202, 240, 0.14);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 21, 44, 0.84), rgba(7, 13, 24, 0.92));
    box-shadow: 0 26px 60px rgba(2, 7, 20, 0.32);
}

.ds-story-intro {
    padding: 2rem 2.2rem;
}

.ds-section {
    position: relative;
    padding: 2rem 0 0;
}

.ds-section-header {
    margin-bottom: 1.75rem;
}

.ds-section-header--centered {
    text-align: center;
}

.ds-section h2,
.ds-story-intro h2,
.ds-feature-panel h2,
.ds-side-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    color: #ffffff;
    text-wrap: balance;
}

.ds-impact-card,
.ds-action-card,
.ds-resource-card,
.ds-video-card,
.ds-education-card,
.ds-official-card {
    height: 100%;
    padding: 1.6rem 1.5rem 1.7rem;
}

.ds-impact-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(16, 30, 58, 0.88), rgba(8, 14, 26, 0.94)),
        radial-gradient(circle at top right, rgba(246, 219, 147, 0.12), transparent 30%);
}

.ds-impact-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(180deg, #f6db93 0%, #8fc4ff 100%);
}

.ds-side-stack {
    display: grid;
    gap: 1.2rem;
}

.ds-side-panel {
    padding: 1.5rem 1.55rem;
}

.ds-feature-panel {
    padding: 2rem 2.1rem;
}

.ds-resource-list {
    display: grid;
    gap: 1rem;
}

.ds-resource-card,
.ds-video-card,
.ds-official-card {
    position: relative;
    overflow: hidden;
}

.ds-resource-card::before,
.ds-video-card::before,
.ds-official-card::before,
.ds-action-card::before,
.ds-education-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, rgba(246, 219, 147, 0.95), rgba(130, 196, 255, 0.95));
}

.ds-resource-badge {
    color: #f6db93;
}

.ds-html-copy,
.ds-html-copy p,
.ds-impact-card p,
.ds-action-card p,
.ds-resource-card p,
.ds-video-card p,
.ds-education-card p,
.ds-official-card p {
    color: rgba(238, 244, 255, 0.92);
}

.ds-html-copy p:last-child,
.ds-impact-card p:last-child,
.ds-action-card p:last-child,
.ds-resource-card p:last-child,
.ds-video-card p:last-child,
.ds-education-card p:last-child,
.ds-official-card p:last-child {
    margin-bottom: 0;
}

.ds-html-copy--lead {
    font-size: 1.18rem;
    line-height: 1.9;
}

.ds-html-copy--compact {
    font-size: 1rem;
    line-height: 1.75;
}

.ds-html-copy :where(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
}

.ds-html-copy :where(ul, ol) {
    padding-left: 1.25rem;
}

.ds-empty-copy {
    margin: 0;
    color: rgba(169, 197, 245, 0.88);
}

.ds-section--actions .ds-section-header {
    max-width: 100%;
    margin-bottom: 1.95rem;
    padding-left: 1.5rem;
}

.ds-section--actions .ds-section-kicker {
    margin-bottom: 1rem;
}

.ds-section--actions h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    text-wrap: pretty;
}

.ds-actions-grid {
    align-items: stretch;
}

.ds-actions-grid .ds-action-card {
    background:
        linear-gradient(180deg, rgba(10, 21, 44, 0.84), rgba(7, 13, 24, 0.94)),
        radial-gradient(circle at top right, rgba(246, 219, 147, 0.08), transparent 32%);
    min-height: 100%;
}

.ds-actions-grid > div:only-child .ds-action-card {
    padding: 1.6rem 1.5rem 1.7rem;
}

.ds-video-grid,
.ds-education-grid,
.ds-official-grid,
.ds-impact-grid,
.ds-actions-grid {
    margin-top: 0 !important;
}

.ds-education-card .ds-html-copy {
    margin-top: 0.65rem;
}

.ds-education-card .ds-html-copy :where(figure, img, table, iframe, video, audio) {
    display: none !important;
}

.ds-shell h3 {
    margin: 0 0 0.85rem;
    font-size: 1.75rem;
    line-height: 1.15;
    color: #ffffff;
}

.ds-shell h3 + p,
.ds-shell h3 + .ds-html-copy {
    margin-top: 0;
}

.ds-shell .ds-resource-card h3,
.ds-shell .ds-video-card h3,
.ds-shell .ds-education-card h3,
.ds-shell .ds-official-card h3,
.ds-shell .ds-action-card h3,
.ds-shell .ds-impact-card h3 {
    font-size: 1.45rem;
}

.ds-shell .ds-resource-card a,
.ds-shell .ds-video-card a,
.ds-shell .ds-education-card a,
.ds-shell .ds-official-card a,
.ds-shell .ds-action-card a {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.ds-section--official {
    padding-bottom: 4rem;
}

@media (max-width: 1199px) {
    .ds-hero-inner {
        grid-template-columns: 1fr;
    }

    .ds-hero {
        min-height: auto;
    }

    .ds-hero-inner {
        min-height: auto;
        align-items: start;
    }

    .ds-hero-aside {
        justify-self: start;
        max-width: 100%;
    }
}

@media (max-width: 959px) {
    .ds-hero {
        padding-top: 2rem;
    }

    .ds-hero-inner,
    .ds-band-shell,
    .ds-section-shell {
        width: min(100% - 1.2rem, 1500px);
    }

    .ds-story-intro,
    .ds-feature-panel,
    .ds-side-panel {
        padding: 1.5rem;
    }

    .ds-shell h3 {
        font-size: 1.45rem;
    }
}

@media (max-width: 639px) {
    .ds-hero h1 {
        font-size: 2.75rem;
    }

    .ds-section--actions .ds-section-header {
        padding-left: 1.5rem;
        padding-right: 1rem;
        margin-bottom: 1.35rem;
    }

    .ds-section--actions .ds-section-kicker {
        margin-bottom: 0.8rem;
    }

    .ds-section--actions h2 {
        font-size: 2.35rem;
        line-height: 1.04;
    }

    .ds-hero-tagline {
        font-size: 1.05rem;
    }

    .ds-story-intro,
    .ds-impact-card,
    .ds-action-card,
    .ds-resource-card,
    .ds-video-card,
    .ds-education-card,
    .ds-official-card,
    .ds-feature-panel,
    .ds-side-panel {
        border-radius: 20px;
    }

    .ds-section {
        padding-top: 1.4rem;
    }
}
