/* Magic UI inspired public visual layer */
:root {
    --dyc-pink: #ff6b98;
    --dyc-pink-strong: #ff4f8d;
    --dyc-pink-soft: rgba(255, 107, 152, 0.16);
    --dyc-blue: #75d9ff;
    --dyc-blue-strong: #5b8dff;
    --dyc-blue-soft: rgba(117, 217, 255, 0.18);
    --dyc-ink: #20243a;
    --dyc-muted: #667085;
    --dyc-glass: rgba(255, 255, 255, 0.72);
    --dyc-glass-strong: rgba(255, 255, 255, 0.88);
    --dyc-border: rgba(255, 107, 152, 0.16);
    --dyc-border-blue: rgba(117, 217, 255, 0.18);
    --dyc-shadow: 0 22px 52px rgba(67, 79, 122, 0.12);
    --dyc-shadow-hover: 0 28px 70px rgba(255, 107, 152, 0.16);
    --dyc-radius: 24px;
    --dyc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body.dyc-enhanced {
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 4%, rgba(255, 107, 152, 0.14), transparent 28rem),
        radial-gradient(circle at 90% 12%, rgba(117, 217, 255, 0.15), transparent 30rem),
        linear-gradient(180deg, #fff9fc 0%, #ffffff 24%, #f8fbff 70%, #ffffff 100%);
    color: var(--dyc-ink);
    overflow-x: hidden;
}

.dyc-enhanced main,
.dyc-enhanced .footer {
    position: relative;
    z-index: 1;
}

.dyc-particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.66;
}

.header {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 251, 0.74));
    border-bottom: 1px solid rgba(255, 107, 152, 0.12);
    box-shadow: 0 14px 34px rgba(43, 52, 84, 0.08);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    transition:
        background-color 0.32s ease,
        border-color 0.32s ease,
        box-shadow 0.32s ease,
        backdrop-filter 0.32s ease,
        -webkit-backdrop-filter 0.32s ease;
}

.header.scrolled {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 251, 255, 0.72));
    box-shadow: 0 18px 44px rgba(43, 52, 84, 0.12);
}

body.home-page {
    padding-top: 0;
}

body.home-page .header {
    background-color: rgba(255, 255, 255, 0);
    background-image: none;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.home-page .header.scrolled {
    background-color: rgba(255, 255, 255, 0.92);
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 251, 0.88));
    border-bottom-color: rgba(255, 107, 152, 0.12);
    box-shadow: 0 18px 44px rgba(43, 52, 84, 0.12);
    backdrop-filter: blur(22px) saturate(1.16);
    -webkit-backdrop-filter: blur(22px) saturate(1.16);
}

body.home-page .header:not(.scrolled) .nav-item {
    color: rgba(31, 36, 51, 0.86);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.home-page .header:not(.scrolled) .nav-item:hover,
body.home-page .header:not(.scrolled) .nav-item.active {
    color: #ff4f8d;
}

body.home-page .header:not(.scrolled) .nav-item::before {
    background: rgba(255, 255, 255, 0.28);
}

body.home-page .header:not(.scrolled) .nav-item::after {
    box-shadow: 0 0 18px rgba(255, 107, 152, 0.28);
}

body.home-page .header:not(.scrolled) .logo img {
    filter:
        drop-shadow(0 10px 18px rgba(255, 255, 255, 0.34))
        drop-shadow(0 10px 24px rgba(36, 45, 78, 0.12));
}

body.home-page .header:not(.scrolled) .menu-toggle {
    background: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.logo img,
.mobile-logo img,
.footer-logo {
    filter: drop-shadow(0 10px 18px rgba(255, 107, 152, 0.12));
}

.nav-item {
    border-radius: 999px;
    padding: 0.42rem 0.12rem;
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0.08rem -0.7rem;
    z-index: -1;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 107, 152, 0.12), rgba(117, 217, 255, 0.12));
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-item::after {
    height: 3px;
    background: linear-gradient(90deg, var(--dyc-pink), var(--dyc-blue));
    box-shadow: 0 0 16px rgba(255, 107, 152, 0.36);
}

.menu-toggle {
    border-radius: 14px;
}

.menu-toggle span {
    background: linear-gradient(90deg, var(--dyc-pink), var(--dyc-blue-strong));
    box-shadow: 0 0 12px rgba(255, 107, 152, 0.18);
}

.nav-overlay {
    background: rgba(28, 34, 56, 0.34);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.dyc-gradient-text {
    background: linear-gradient(90deg, #26304f 0%, var(--dyc-pink) 24%, var(--dyc-blue-strong) 52%, #26304f 82%, var(--dyc-pink) 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 0 16px 34px rgba(255, 107, 152, 0.12);
    filter: drop-shadow(0 14px 26px rgba(255, 107, 152, 0.12));
    animation: dycGradientText 8s ease-in-out infinite;
}

.dyc-emphasis-text {
    display: inline-block;
    background:
        linear-gradient(100deg, var(--dyc-pink-strong) 0%, #ff83ad 34%, var(--dyc-blue-strong) 72%, var(--dyc-pink-strong) 100%);
    background-size: 240% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 0 10px 28px rgba(255, 107, 152, 0.18);
    filter:
        drop-shadow(0 8px 18px rgba(255, 107, 152, 0.2))
        drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72));
    animation: dycGradientText 6.8s ease-in-out infinite;
}

.overview-card .dyc-emphasis-text,
.metric-card__value.dyc-emphasis-text,
.news-stat__value.dyc-emphasis-text {
    font-weight: 900;
}

.overview-card__label.dyc-emphasis-text,
.site-company-intro__fact strong.dyc-emphasis-text {
    filter: drop-shadow(0 7px 16px rgba(255, 107, 152, 0.18));
}

.banner .dyc-gradient-text,
.news-hero .dyc-gradient-text,
.cases-banner .dyc-gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #ffe1ec 26%, #dff7ff 54%, #ffffff 78%, #ffc8db 100%);
    background-size: 260% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.banner .dyc-gradient-text {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: #261d2a !important;
    animation: none;
}

.page-banner,
.banner,
.news-hero {
    isolation: isolate;
}

.page-banner::before,
.banner::before,
.news-hero__overlay::after {
    pointer-events: none;
}

.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 107, 152, 0.24), transparent 24rem),
        radial-gradient(circle at 78% 26%, rgba(117, 217, 255, 0.18), transparent 26rem),
        linear-gradient(180deg, rgba(16, 20, 38, 0.16), rgba(255, 255, 255, 0.03));
    mix-blend-mode: screen;
    opacity: 0.42;
}

.banner-content,
.scroll-hint,
.banner-gradient {
    z-index: 2;
}

.banner-content h1,
.page-banner .banner-content h1,
.news-hero__content h1 {
    letter-spacing: 0;
}

.banner-content p,
.page-banner .banner-content p,
.news-hero__intro,
.news-hero__headline p {
    text-wrap: pretty;
}

.banner-buttons .btn,
.news-hero__actions .btn,
.about-cta__card .btn {
    min-width: 148px;
}

.dyc-magic-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-color: rgba(255, 107, 152, 0.16) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(249, 253, 255, 0.66)) !important;
    box-shadow: var(--dyc-shadow) !important;
    backdrop-filter: blur(20px) saturate(1.18);
    -webkit-backdrop-filter: blur(20px) saturate(1.18);
    transition:
        transform 0.32s var(--dyc-ease),
        border-color 0.32s var(--dyc-ease),
        box-shadow 0.32s var(--dyc-ease),
        background 0.32s var(--dyc-ease);
}

.service-card.dyc-magic-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 253, 255, 0.84)) !important;
    box-shadow: 0 16px 38px rgba(31, 35, 52, 0.06) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.service-card.dyc-magic-card::after {
    content: '';
    position: absolute;
    inset: auto 1.45rem 1.05rem 1.45rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 107, 152, 0.42), rgba(117, 217, 255, 0.3), transparent);
    opacity: 0.62;
}

.dyc-magic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(240px circle at var(--dyc-mx, 50%) var(--dyc-my, 0%), rgba(255, 107, 152, 0.2), transparent 46%),
        radial-gradient(260px circle at calc(var(--dyc-mx, 50%) + 12%) calc(var(--dyc-my, 0%) + 8%), rgba(117, 217, 255, 0.16), transparent 54%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.dyc-magic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 152, 0.26) !important;
    box-shadow: var(--dyc-shadow-hover) !important;
}

.dyc-magic-card:hover::before {
    opacity: 1;
}

.dyc-magic-card > * {
    position: relative;
    z-index: 1;
}

.dyc-border-beam {
    position: relative;
}

.dyc-beam-layer {
    position: absolute !important;
    inset: -1px;
    z-index: 2 !important;
    border-radius: inherit;
    background:
        conic-gradient(from 0deg, transparent 0deg, transparent 65deg, rgba(255, 107, 152, 0.9) 98deg, rgba(117, 217, 255, 0.92) 126deg, transparent 164deg, transparent 360deg);
    padding: 1px;
    opacity: 0.58;
    pointer-events: none;
    animation: dycBorderBeam 7s linear infinite;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.dyc-magic-card:hover .dyc-beam-layer,
.dyc-border-beam:hover .dyc-beam-layer {
    opacity: 0.92;
}

.dyc-shimmer-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-color: transparent;
}

.dyc-shimmer-button::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.64) 48%, rgba(117, 217, 255, 0.26) 54%, transparent 66%, transparent 100%);
    transform: translateX(-120%);
    pointer-events: none;
    animation: dycButtonShimmer 3.2s ease-in-out infinite;
}

.dyc-shimmer-button::after {
    content: none;
}

.btn-primary.dyc-shimmer-button {
    background: linear-gradient(135deg, var(--dyc-pink-strong), #ff7caf 46%, var(--dyc-blue-strong));
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(255, 107, 152, 0.24);
}

.btn-secondary,
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 107, 152, 0.18);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 252, 255, 0.74));
    color: var(--dyc-ink);
    box-shadow: 0 12px 28px rgba(67, 79, 122, 0.09);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.btn-secondary:hover,
.btn-back:hover {
    border-color: rgba(255, 107, 152, 0.3);
    background:
        linear-gradient(135deg, rgba(255, 107, 152, 0.12), rgba(117, 217, 255, 0.14));
    color: var(--dyc-pink-strong);
    box-shadow: 0 18px 34px rgba(255, 107, 152, 0.14);
}

.btn-outline.dyc-shimmer-button {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.btn:hover,
.btn-secondary:hover,
.btn-back:hover,
.filter-chip:hover,
.page-link:hover,
.dyc-shimmer-button:hover {
    transform: translateY(-3px);
}

.services,
.partners,
.about,
.site-company-intro,
.contact-overview,
.contact-process,
.contact-main,
.cases-intro,
.cases-playbook,
.cases-featured,
.cases-list-section,
.artists-section,
.resources-overview,
.resources-filter-section,
.resources-featured,
.resources-list-section,
.news-ledger,
.news-content-section,
.about-metrics,
.about-capabilities,
.about-blueprint,
.service-audience,
.service-process,
.about-highlights,
.resource-strength,
.company-culture,
.cooperation-principles,
.about-journey,
.about-cta {
    position: relative;
}

.services::before,
.site-company-intro::before,
.contact-overview::before,
.cases-intro::before,
.resources-overview::before,
.news-ledger::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 107, 152, 0.09), transparent 24rem),
        radial-gradient(circle at 86% 8%, rgba(117, 217, 255, 0.1), transparent 26rem);
    pointer-events: none;
}

.service-card,
.vip-showcase__works,
.vip-showcase__creators,
.vip-work-card,
.vip-creator-card,
.partner-item,
.site-company-intro__fact,
.site-company-intro__card,
.contact-card,
.process-card,
.contact-form-panel,
.contact-side__panel,
.cases-intro-card,
.cases-playbook__panel-wrap,
.case-card,
.artist-card,
.featured-case,
.overview-card,
.featured-resource,
.resource-card,
.resource-side-card,
.news-hero__rail,
.news-stat,
.news-ledger__note,
.news-stream__item,
.news-side-card,
.about-intro__card,
.company-detail-card,
.metric-card,
.capability-card,
.blueprint-card,
.audience-card,
.service-step,
.highlight-card,
.strength-item,
.culture-card,
.principle-item,
.journey-card,
.about-cta__card,
.empty-state {
    border-radius: var(--dyc-radius);
}

.page-banner {
    background-blend-mode: screen, normal;
}

.contact-banner,
.resources-banner,
.about-banner {
    box-shadow: inset 0 -80px 120px rgba(255, 255, 255, 0.34);
}

.contact-banner::after,
.resources-banner::after,
.about-banner::after {
    animation: dycSoftFloat 9s ease-in-out infinite alternate;
    text-shadow: 0 18px 34px rgba(255, 107, 152, 0.16);
}

.news-hero__rail,
.contact-form-panel,
.contact-side__panel,
.featured-case,
.featured-resource,
.news-ledger__note,
.case-detail .article,
.news-detail .article,
.resource-detail .article {
    backdrop-filter: blur(22px) saturate(1.18);
    -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.news-hero__rail.dyc-magic-card {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background:
        linear-gradient(145deg, rgba(9, 14, 29, 0.62), rgba(23, 31, 52, 0.44)) !important;
    box-shadow: 0 22px 52px rgba(6, 9, 18, 0.26) !important;
}

.about-cta__card.dyc-magic-card,
.resource-side-card--cta.dyc-magic-card,
.news-side-card--cta.dyc-magic-card {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.12), transparent 20rem),
        linear-gradient(135deg, #1c2238 0%, #ff6b98 58%, #6ecfff 118%) !important;
    box-shadow: 0 26px 62px rgba(28, 34, 56, 0.24) !important;
}

.case-detail,
.news-detail,
.resource-detail {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 107, 152, 0.12), transparent 28rem),
        radial-gradient(circle at 90% 8%, rgba(117, 217, 255, 0.14), transparent 30rem),
        linear-gradient(180deg, #fff9fc 0%, #ffffff 32%, #f8fbff 100%);
}

.case-detail .article,
.news-detail .article,
.resource-detail .article {
    border: 1px solid rgba(255, 107, 152, 0.14);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--dyc-shadow);
}

.case-detail .article-image,
.news-detail .article-image,
.resource-detail .article-image,
.featured-case__media,
.featured-resource__media,
.case-card__image,
.resource-card__image,
.news-stream__image,
.vip-work-card__cover {
    position: relative;
    overflow: hidden;
}

.case-detail .article-image::after,
.news-detail .article-image::after,
.resource-detail .article-image::after,
.featured-case__media::after,
.featured-resource__media::after,
.case-card__image::after,
.resource-card__image::after,
.news-stream__image::after,
.vip-work-card__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%, rgba(117, 217, 255, 0.12));
    pointer-events: none;
}

.filter-chip,
.page-link,
.vip-docs a,
.footer-quick-links a {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.filter-chip.active,
.page-link.active {
    background: linear-gradient(135deg, rgba(255, 107, 152, 0.14), rgba(117, 217, 255, 0.14));
    color: var(--dyc-pink-strong);
}

.form-group input,
.form-group textarea {
    border-color: rgba(255, 107, 152, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 253, 255, 0.86));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease,
        background 0.24s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 107, 152, 0.46);
    box-shadow:
        0 0 0 4px rgba(255, 107, 152, 0.1),
        0 14px 28px rgba(117, 217, 255, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.footer {
    overflow: hidden;
    padding: 3.6rem 0 3.4rem;
    background:
        linear-gradient(90deg, rgba(255, 107, 152, 0.1), transparent 24%, rgba(117, 217, 255, 0.08) 78%, transparent),
        linear-gradient(135deg, #171b28 0%, #202538 58%, #171c2b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%);
    opacity: 0.56;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    right: -8rem;
    bottom: -10rem;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 107, 152, 0.18), transparent 62%),
        radial-gradient(circle at 35% 35%, rgba(117, 217, 255, 0.12), transparent 54%);
    filter: blur(2px);
    opacity: 0.88;
    pointer-events: none;
    animation: dycSoftFloat 8s ease-in-out infinite alternate;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(500px, 0.92fr);
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
    gap: clamp(2rem, 6vw, 6rem);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer-slogan {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.78;
}

.footer-left,
.footer-right {
    min-width: 0;
}

.footer-right {
    max-width: none;
    justify-self: end;
}

.contact-title {
    margin-bottom: 0.85rem;
    font-size: 1.15rem;
    font-weight: 850;
    color: #ff6b98;
}

.company-name {
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
}

.contact-info {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
}

.footer-entry-title {
    margin: 1.35rem 0 0.62rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 850;
    line-height: 1.4;
}

.footer-quick-links a {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-weight: 650;
}

.footer-quick-links {
    gap: 0.5rem 1.05rem;
    margin-top: 0;
    line-height: 1.9;
}

.footer-quick-label {
    flex-basis: 100%;
}

.footer-quick-links a:hover {
    color: #ffffff;
    background: transparent;
}

@keyframes dycGradientText {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes dycBorderBeam {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dycButtonShimmer {
    0%, 18% {
        transform: translateX(-120%);
    }
    58%, 100% {
        transform: translateX(120%);
    }
}

@keyframes dycMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes dycSoftFloat {
    from {
        transform: translate3d(0, 0, 0) rotate(-2deg);
    }
    to {
        transform: translate3d(-12px, -10px, 0) rotate(2deg);
    }
}

@media (max-width: 768px) {
    .nav {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 251, 0.9));
        border-right: 1px solid rgba(255, 107, 152, 0.12);
        box-shadow: 20px 0 56px rgba(36, 45, 78, 0.16);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }

    .nav-item {
        padding: 0 0 0.3rem;
    }

    .nav-item::before {
        inset: -0.5rem -0.8rem;
    }

    .dyc-magic-card:hover,
    .btn:hover,
    .filter-chip:hover,
    .page-link:hover,
    .dyc-shimmer-button:hover {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 0;
        border-radius: 0;
    }

    .footer-right {
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .banner-buttons .btn,
    .news-hero__actions .btn,
    .about-cta__card .btn {
        width: 100%;
        min-width: 0;
    }
}

.news-page .news-hero .page-kicker {
    color: #d83e78;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.news-page .news-hero .page-kicker::before,
.news-page .news-hero .page-kicker::after {
    opacity: 0.62;
}

.news-page .news-hero__content h1.dyc-gradient-text {
    background: none !important;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: #5a2444 !important;
    -webkit-text-fill-color: #5a2444;
    text-shadow: 0 12px 30px rgba(255, 107, 152, 0.18);
    filter: none;
    animation: none;
}

.news-page .news-hero__rail.dyc-magic-card {
    border-color: rgba(255, 107, 152, 0.22) !important;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 250, 0.84) 58%, rgba(245, 253, 255, 0.76)) !important;
    box-shadow: 0 22px 48px rgba(155, 70, 106, 0.13) !important;
    color: #332537;
}

.news-page .news-hero__rail-kicker {
    color: #b94674;
}

.news-page .news-hero__rail h3,
.news-page .news-hero__feed a {
    color: #332537;
}

.news-page .news-hero__feed li {
    border-top-color: rgba(255, 107, 152, 0.16);
}

.news-page .news-hero__feed-index {
    color: rgba(184, 63, 112, 0.42);
}

.news-page .news-hero__feed li div span,
.news-page .news-hero__feed-empty {
    color: #765564;
}

@media (prefers-reduced-motion: reduce) {
    .dyc-particles {
        display: none;
    }

    .dyc-gradient-text,
    .dyc-emphasis-text,
    .dyc-beam-layer,
    .dyc-shimmer-button::before,
    .contact-banner::after,
    .resources-banner::after,
    .about-banner::after {
        animation: none !important;
    }

    .dyc-magic-card,
    .dyc-shimmer-button,
    .btn,
    .filter-chip,
    .page-link {
        transition: none !important;
    }
}
