:root {
    --primary: #275fbe;
    --primary-dark: #183c78;
    --accent: #4b83d4;
    --bg: #f2f5fa;
    --surface: #ffffff;
    --surface-soft: #e9eef5;
    --text: #1a2940;
    --text-muted: #5c6b82;
    --line: rgba(44, 71, 112, 0.14);
    --shadow: 0 14px 38px rgba(25, 43, 74, 0.08);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1280px;
    --container-gutter: clamp(16px, 2vw, 32px);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(102, 137, 190, 0.08) 0%, rgba(102, 137, 190, 0) 32%),
        linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
    line-height: 1.7;
}
body.activity-page-body {
    background:
        radial-gradient(circle at top, rgba(255, 189, 92, 0.16) 0%, rgba(255, 189, 92, 0) 30%),
        linear-gradient(180deg, #fff8ef 0%, #fff2e2 46%, #fff8f1 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - (var(--container-gutter) * 2))); margin: 0 auto; }

@media (min-width: 1366px) {
    :root {
        --container: 1360px;
        --container-gutter: clamp(18px, 2vw, 36px);
    }
}

@media (min-width: 1600px) {
    :root {
        --container: 1480px;
        --container-gutter: clamp(20px, 2.2vw, 44px);
    }
}

@media (min-width: 1920px) {
    :root {
        --container: 1600px;
        --container-gutter: clamp(24px, 2.4vw, 56px);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(241,244,248,0.9) 0%, rgba(223,230,238,0.84) 52%, rgba(209,217,227,0.8) 100%);
    backdrop-filter: blur(18px) saturate(145%);
    border-bottom: 1px solid rgba(72, 92, 120, 0.16);
    box-shadow: 0 10px 30px rgba(24, 39, 67, 0.05);
}
body.activity-page-body .site-header {
    background: linear-gradient(180deg, rgba(255,245,232,0.94) 0%, rgba(255,227,196,0.90) 52%, rgba(255,214,168,0.84) 100%);
    border-bottom: 1px solid rgba(204, 125, 38, 0.18);
    box-shadow: 0 12px 30px rgba(186, 108, 29, 0.08);
}
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.14) 34%, rgba(122,138,160,0.08) 100%),
        linear-gradient(115deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 28%, rgba(98,111,132,0.06) 64%, rgba(255,255,255,0.14) 100%);
    opacity: 0.95;
}
body.activity-page-body .site-header::before {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.18) 34%, rgba(196,127,56,0.10) 100%),
        linear-gradient(115deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.05) 28%, rgba(214,145,72,0.08) 64%, rgba(255,255,255,0.14) 100%);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 65px;
    height: 60px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}
body.activity-page-body .brand-mark {
    background: transparent;
    border: 0;
    box-shadow: none;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.brand-text strong {
    display: block;
    font-size: 20px;
    line-height: 1.08;
}
body.activity-page-body .brand-text strong { color: #924f16; }
.brand-text small {
    display: block;
    margin-top: 3.8px;
    line-height: 1.08;
    color: var(--text-muted);
}
body.activity-page-body .brand-text small { color: rgba(109, 73, 36, 0.78); }

.site-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.site-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 15px;
    transition: .2s ease;
}
body.activity-page-body .site-nav a {
    color: rgba(120, 78, 37, 0.78);
}
.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(13,79,215,0.08);
    color: var(--primary-dark);
}
body.activity-page-body .site-nav a:hover,
body.activity-page-body .site-nav a.is-active {
    background: rgba(226, 121, 28, 0.12);
    color: #9a5013;
}

.nav-toggle {
    display: none;
    border: 0;
    background: var(--surface-soft);
    color: var(--primary);
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 22px;
}
body.activity-page-body .nav-toggle {
    background: rgba(255,244,229,0.92);
    color: #bf6319;
}

.hero { padding: 26px 0 24px; }
.hero-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(244,247,251,0.96) 100%);
    border: 1px solid rgba(44,71,112,0.1);
    border-radius: 18px 18px 26px 26px;
    box-shadow: 0 18px 42px rgba(28, 43, 72, 0.08);
}
.hero-slider-main {
    height: clamp(500px, 50vw, 800px);
    min-height: 0;
}
.slider-track {
    position: relative;
    height: 100%;
    min-height: 100%;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}
.slide.is-active { opacity: 1; }

.slide-panel {
    height: 100%;
    min-height: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    background: #fff;
}
.slide-panel-media {
    height: 100%;
}
.slide-image-wrap {
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
    display: block;
}
.slide-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
    background: transparent;
}
.slide-caption {
    padding: 10px 16px 18px;
    background: #fff;
    border-top: 1px solid rgba(13,79,215,0.08);
}
.slide-caption h2 {
    margin: 0;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.2;
    color: var(--text);
}
.slide-caption p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.hero-pill-light {
    background: rgba(13,79,215,.08);
    color: var(--primary-dark);
    border: 1px solid rgba(13,79,215,.08);
}

.slider-dots {
    position: absolute;
    right: 20px;
    bottom: 16px;
    left: auto;
    display: flex;
    gap: 10px;
    z-index: 3;
}
.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(13,79,215,0.22);
    cursor: pointer;
}
.slider-dots button.is-active { width: 34px; background: var(--primary); }

.hero-copy-main {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 6px 2px 0;
    max-width: none;
    width: 100%;
}
.hero-copy-shell {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(239,243,248,0.95) 100%);
    border: 1px solid rgba(44,71,112,0.1);
    border-radius: 24px;
    padding: 30px 32px 28px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 16px 36px rgba(28, 43, 72, 0.06);
}
.hero-copy-head {
    max-width: none;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(236,241,247,0.96) 0%, rgba(228,234,242,0.96) 100%);
    color: var(--primary-dark);
    border: 1px solid rgba(46,70,107,0.1);
    font-size: 14px;
    font-weight: 600;
}
.hero-copy-main h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.16;
}
.hero-copy-main p.lead {
    margin: 0;
    color: var(--text-muted);
    font-size: 19px;
}

.hero-highlights,
.check-list,
.footer-meta,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}
.hero-highlights li,
.check-list li,
.contact-list li {
    position: relative;
    padding: 14px 16px 14px 40px;
    color: var(--text-muted);
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(243,246,250,0.9) 100%);
    border: 1px solid rgba(44,71,112,0.08);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}
.hero-highlights li::before,
.check-list li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), #63a8ff);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease, border-color .3s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.btn:focus,
.btn:focus-visible,
.btn:active,
.nav-toggle:focus,
.nav-toggle:focus-visible,
.nav-toggle:active,
.site-nav a:focus,
.site-nav a:focus-visible,
.site-nav a:active,
.footer-bottom > a:focus,
.footer-bottom > a:focus-visible,
.footer-bottom > a:active,
.footer-records a:focus,
.footer-records a:focus-visible,
.footer-records a:active {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary {
    background: linear-gradient(135deg, #274e8e 0%, #3d6eb4 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(33, 57, 98, 0.18);
}
.btn-secondary {
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    border: 1px solid rgba(51,76,114,0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(28, 44, 73, 0.12);
}

.section { padding: 24px 0 64px; }
.section-header {
    max-width: 760px;
    margin-bottom: 24px;
}
.section-header-wide {
    max-width: 980px;
}
.section-header h2,
.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 42px);
}
.section-header p,
.page-hero p {
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(241,245,249,0.96) 100%);
    border: 1px solid rgba(44,71,112,0.09);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 14px 32px rgba(28, 43, 72, 0.05), inset 0 1px 0 rgba(255,255,255,0.72);
}
.card h3 { margin: 0 0 12px; font-size: 22px; }
.card p { margin: 0; color: var(--text-muted); }
.icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(237,242,248,0.98) 0%, rgba(222,230,239,0.98) 100%);
    border: 1px solid rgba(44,71,112,0.1);
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 700;
    margin: -6px 0 16px -6px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
    position: relative;
    overflow: visible;
}
.icon-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    border: inherit;
    box-shadow: inherit;
    z-index: 0;
}
.icon-badge {
    isolation: isolate;
}

.media-card { padding: 0; overflow: hidden; }
.media-card > img,
.media-card .card-media,
.media-card .card-media img {
    width: 100%;
    display: block;
}
.media-card .card-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
    aspect-ratio: 16 / 10;
}
.media-card > img,
.media-card .card-media img { 
    height: 100%; 
    object-fit: cover;
    object-position: center center;
}
.media-card .card-body { padding: 22px; }
.media-slider {
    position: relative;
    overflow: hidden;
    background: var(--surface-soft);
    aspect-ratio: 16 / 10;
}
.media-slider .slide-media {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
}
.media-slider .slide-media.is-active { opacity: 1; }
.media-slider .slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-rows: 336px minmax(0, auto);
    padding: 0 !important;
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
}
.product-card .card-body {
    position: relative;
    z-index: 1;
    padding: 20px 22px 22px;
    background: #ffffff;
    border-top: 1px solid rgba(44,71,112,0.05);
}
.product-card .card-body h3 {
    margin-bottom: 10px;
}
.product-media-slider,
.product-media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 336px;
    overflow: hidden;
    background: transparent;
    border: 2.8px solid rgba(126, 132, 142, 0.42);
    border-radius: 16.8px 16.8px 0 0;
    margin: 0;
    box-sizing: border-box;
}
.product-media-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    border-radius: 10px 10px 0 0;
}
.product-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
    background: transparent;
    border-radius: 10px 10px 0 0;
}
.product-media-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}
.product-media-item.is-active {
    opacity: 1;
}
.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}
.product-card-meta .pill {
    margin-bottom: 0;
}
.product-media-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.product-media-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(44,71,112,0.1);
    border-radius: 999px;
    background: #f6f9fc;
    color: #4f5f73;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}
.product-media-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
}
.product-media-arrow {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(44,71,112,0.1);
    border-radius: 999px;
    background: #f6f9fc;
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.product-media-arrow:hover {
    background: #edf3fa;
    border-color: rgba(44,71,112,0.14);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(31, 47, 76, 0.06);
}
.product-media-arrow:focus,
.product-media-arrow:focus-visible,
.product-media-arrow:active {
    outline: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.page-media-hero {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(13,79,215,0.08);
    background: #fff;
    box-shadow: var(--shadow);
}
.page-media-hero .page-media-slider {
    position: relative;
    aspect-ratio: 16 / 7;
    background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}
.page-media-hero .page-media-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}
.page-media-hero .page-media-slide.is-active {
    opacity: 1;
}
.page-media-hero .page-media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.page-media-hero .page-media-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 24px 24px;
    background: linear-gradient(180deg, rgba(8,37,95,0) 0%, rgba(8,37,95,0.78) 100%);
    color: #fff;
    pointer-events: none;
}
.page-media-hero .page-media-overlay h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
}
.page-media-hero .page-media-overlay p {
    margin: 0;
    max-width: 860px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    line-height: 1.8;
}
.page-media-dots {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 8px;
    z-index: 3;
}
.page-media-dots button {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.38);
    cursor: pointer;
}
.page-media-dots button.is-active {
    width: 28px;
    background: #fff;
}

.pill {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(13,79,215,.09);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.page-hero { padding: 26px 0 14px; }
.page-hero-box {
    background:
        linear-gradient(145deg, rgba(226, 229, 233, 0.97) 0%, rgba(211, 216, 222, 0.95) 44%, rgba(191, 198, 206, 0.94) 100%),
        linear-gradient(125deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.10) 34%, rgba(120, 132, 148, 0.05) 100%);
    color: #363e47;
    border-radius: 24px;
    padding: 22px 28px;
    border: 1px solid rgba(136, 145, 156, 0.20);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.46), 0 10px 16px rgba(86, 96, 108, 0.045);
}
.page-hero-box h1 {
    margin: 0 0 6px;
    color: #2e363e;
    line-height: 1.12;
}
.page-hero-box p {
    margin: 0;
    color: rgba(54, 62, 71, 0.72);
    line-height: 1.58;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 18px 20px;
}
.stat strong { display: block; font-size: 28px; }
.stat span { color: rgba(255,255,255,0.85); font-size: 14px; }

.partner-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.partner-row-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
}
.partner-row-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-row-logo-inner {
    width: 100%;
    min-height: 72px;
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f9fbff 0%, #eef4fa 100%);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-row-logo-img {
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
}
.partner-row-text {
    min-width: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.partner-row-text h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.24;
}
.partner-row-text p {
    margin: 0;
    color: rgba(54, 62, 71, 0.82);
    font-size: 12px;
    line-height: 1.6;
}
.partner-row-action {
    margin-top: 0;
    justify-content: flex-end;
}
.partner-row-btn {
    width: 84px;
    min-width: 84px !important;
    height: 24px !important;
    min-height: 24px;
    padding: 0 9px !important;
    font-size: 10px !important;
    line-height: 24px !important;
    font-weight: 500;
    border-radius: 999px;
    background: rgba(247,249,252,0.56) !important;
    color: rgba(70, 87, 113, 0.68) !important;
    border: 1px solid rgba(44,71,112,0.05) !important;
    box-shadow: none !important;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.partner-row-btn:hover,
.partner-row-btn:focus,
.partner-row-btn:focus-visible,
.partner-row-btn:active {
    background: rgba(243,246,250,0.72) !important;
    color: rgba(58, 75, 100, 0.8) !important;
    border-color: rgba(44,71,112,0.07) !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
}
.team-profile-card {
    position: relative;
    display: block;
    grid-template-rows: none;
    overflow: visible;
    border-radius: 26px;
}
.team-profile-card .card-body {
    border-radius: 26px;
}
.team-profile-body {
    position: relative;
    z-index: 1;
    padding: 14px 16px 16px;
    min-height: 0;
}
.team-profile-card h3 {
    margin: 0 0 4px;
    font-size: 20px;
    line-height: 1.22;
}
.team-role {
    display: block;
    margin-bottom: 8px;
    color: #4f6480;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}
.team-profile-card p {
    margin: 0;
    color: rgba(54, 62, 71, 0.82);
    font-size: 13px;
    line-height: 1.68;
}
.team-avatar-link {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 3;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.96);
    box-shadow: 0 10px 22px rgba(31, 47, 76, 0.13);
    background: #eef3f9;
}
.team-avatar-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.cta-banner {
    background: linear-gradient(135deg, #2d446f 0%, #496792 52%, #5f7ea8 100%);
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 18px 38px rgba(27, 42, 70, 0.16);
}
.cta-header {
    max-width: 1080px;
    text-align: center;
}
.cta-header h2 {
    max-width: none;
    line-height: 1.28;
    font-size: clamp(26px, 3vw, 36px);
}
.cta-header p {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.9;
}
.cta-banner p { color: rgba(255,255,255,0.88); }

.contact-info-panel {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}
.contact-info-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(44,71,112,0.08);
}
.contact-info-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.contact-info-label {
    display: block;
    color: rgba(54, 62, 71, 0.72);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}
.contact-info-value {
    color: var(--text);
    line-height: 1.6;
    word-break: break-word;
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 20px;
    align-items: start;
}
.contact-intro-card {
    display: block;
    padding: 20px 22px;
}
.contact-intro-card h3 {
    margin-bottom: 10px;
}
.contact-intro-card > p {
    margin: 0;
    color: rgba(54, 62, 71, 0.8);
    line-height: 1.72;
}
.form-card form { display: grid; gap: 16px; }
.form-hint {
    margin: -4px 0 2px;
    color: rgba(54, 62, 71, 0.72);
    font-size: 13px;
    line-height: 1.65;
}
.form-submit-note {
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #eaf8ef;
    color: #1d7a43;
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    overflow: hidden;
}
.form-submit-note-inner {
    display: block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.form-submit-note p + p {
    margin-top: 4px;
}
.contact-captcha-field {
    margin-top: 2px;
}
.contact-captcha-field > span {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-captcha-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    min-height: 54px;
    border: 1px solid rgba(13,79,215,0.14);
    border-radius: 14px;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
    overflow: hidden;
}
.contact-captcha-row .contact-captcha-prefix {
    display: flex !important;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 124px;
    margin: 0 !important;
    padding: 0 16px;
    background: linear-gradient(180deg, #fbfcfe 0%, #f1f5fa 100%);
    border-right: 1px solid rgba(13,79,215,0.12);
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.contact-captcha-row input {
    min-width: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0 14px 14px 0;
    box-shadow: none;
    background: transparent;
    padding: 15px 16px;
}
.field-error {
    display: none;
    margin-top: 6px;
    color: #c9483d;
    font-size: 12px;
    line-height: 1.5;
}
.field-error:not(:empty) {
    display: block;
}
.contact-honeypot {
    position: absolute !important;
    left: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
label span { display: block; margin-bottom: 8px; font-weight: 600; }
input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(13,79,215,0.14);
    background: #fff;
    border-radius: 14px;
    padding: 15px 16px;
    font: inherit;
    color: var(--text);
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    line-height: 1.5;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%231f2f40' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(246,249,253,0.92) 100%);
    background-position: right 16px center, 0 0;
    background-size: 12px 8px, 100% 100%;
    background-repeat: no-repeat;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 1px 2px rgba(25,43,74,0.03);
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .42s ease, box-shadow .42s ease, background-color .42s ease, background-image .42s ease, transform .42s ease;
}
select:hover {
    border-color: rgba(13,79,215,0.18);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%23172837' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(241,246,252,0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 4px 14px rgba(25,43,74,0.06);
}
select:focus,
select:focus-visible,
select:active {
    outline: none !important;
    border-color: rgba(13,79,215,0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.76), 0 6px 18px rgba(25,43,74,0.08) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' fill='none' stroke='%23172837' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(239,245,252,0.98) 100%);
    background-color: #fff;
    transform: translateY(-1px);
}
select::-ms-expand {
    display: none;
}
.form-card input[aria-invalid="true"] {
    border-color: #d86155;
    box-shadow: 0 0 0 3px rgba(216, 97, 85, 0.12);
}
input::placeholder {
    color: rgba(54, 62, 71, 0.58);
    font-size: 14px;
}
textarea::placeholder {
    color: rgba(54, 62, 71, 0.58);
}
textarea { min-height: 160px; resize: vertical; }
.notice {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    text-align: center;
}
.notice-success { background: #eaf8ef; color: #1d7a43; }
.notice-error { background: #fff0f0; color: #b53636; }

.site-footer {
    position: relative;
    margin-top: 16px;
    background: linear-gradient(180deg, #44566f 0%, #2c384b 48%, #1e2734 100%);
    color: rgba(255,255,255,0.88);
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8%;
    width: 116%;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(92,167,255,0) 0%,
        rgba(102,178,255,0.72) 8%,
        rgba(116,187,255,0.98) 18%,
        rgba(144,214,255,0.95) 30%,
        rgba(196,238,255,0.98) 42%,
        rgba(255,255,255,1) 50%,
        rgba(186,242,255,0.98) 58%,
        rgba(126,224,255,0.96) 70%,
        rgba(118,172,255,0.96) 82%,
        rgba(96,150,255,0.7) 92%,
        rgba(98,152,255,0) 100%);
    background-size: 240% 100%;
    animation: footerFlow 9s linear infinite;
    opacity: 1;
    filter: blur(0.35px);
    box-shadow:
        0 0 10px rgba(170, 228, 255, 0.48),
        0 0 22px rgba(110, 188, 255, 0.34),
        0 0 36px rgba(88, 148, 255, 0.18);
}
.footer-top {
    display: grid;
    gap: 12px;
    padding: 18px 0 8px;
}
.footer-top-simple {
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
    column-gap: 14px;
}
.site-footer h3,
.site-footer h4 { margin: 0 0 8px; color: #fff; }
.site-footer p {
    margin: 0;
    line-height: 1.62;
}
.footer-meta li { margin: 0 0 4px; color: rgba(255,255,255,0.76); }
.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-contact-grid li {
    margin: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-records {
    display: flex;
    align-items: center;
    gap: 8px 12px;
    flex-wrap: wrap;
}

@keyframes footerFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.empty-state {
    padding: 26px;
    border-radius: 20px;
    border: 1px dashed rgba(13,79,215,0.24);
    background: rgba(255,255,255,0.86);
}

body.activity-page-body .site-footer {
    background: linear-gradient(180deg, #8f4d17 0%, #6d3810 44%, #4a2509 100%);
    color: rgba(255,248,240,0.90);
}
body.activity-page-body .site-footer::before {
    background: linear-gradient(90deg,
        rgba(255,192,120,0) 0%,
        rgba(255,205,136,0.76) 10%,
        rgba(255,219,165,0.98) 22%,
        rgba(255,238,210,0.98) 34%,
        rgba(255,255,255,1) 50%,
        rgba(255,232,198,0.98) 64%,
        rgba(255,205,145,0.94) 78%,
        rgba(255,173,102,0.72) 90%,
        rgba(255,173,102,0) 100%);
    box-shadow:
        0 0 10px rgba(255, 220, 173, 0.42),
        0 0 22px rgba(255, 185, 112, 0.28),
        0 0 36px rgba(255, 151, 72, 0.16);
}
body.activity-page-body .site-footer h3,
body.activity-page-body .site-footer h4,
body.activity-page-body .site-footer a {
    color: #fff8f0;
}
body.activity-page-body .site-footer p,
body.activity-page-body .footer-meta li,
body.activity-page-body .footer-records a,
body.activity-page-body .footer-bottom a {
    color: rgba(255, 241, 228, 0.82);
}
body.activity-page-body .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
}
.activity-page {
    background:
        radial-gradient(circle at top center, rgba(255, 214, 153, 0.18) 0%, rgba(255, 214, 153, 0) 42%),
        linear-gradient(180deg, #fff8f0 0%, #fff3e4 36%, #fff9f2 100%);
}
.activity-page .page-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 179, 71, 0.28) 0%, rgba(255, 179, 71, 0) 44%),
        linear-gradient(135deg, rgba(255, 141, 26, 0.16) 0%, rgba(255, 196, 112, 0.10) 32%, rgba(255, 244, 230, 0.92) 100%);
}
.activity-page .page-hero-box {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.94) 0%, rgba(255,245,233,0.96) 100%),
        linear-gradient(135deg, rgba(255,156,56,0.08) 0%, rgba(255,210,150,0.04) 100%);
    border: 1px solid rgba(229, 146, 44, 0.20);
    box-shadow:
        0 18px 38px rgba(182, 107, 26, 0.10),
        inset 0 1px 0 rgba(255,255,255,0.78);
}
.activity-page .page-hero-box h1 {
    color: #8f4b12;
}
.activity-page .page-hero-box p {
    color: rgba(94, 60, 27, 0.82);
}
.activity-page .activity-filter-btn {
    border-color: rgba(207, 127, 37, 0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,245,236,0.94) 100%);
    color: #8a5521;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}
.activity-page .activity-filter-btn.is-active {
    background: linear-gradient(135deg, #d96a1d 0%, #f09534 100%);
    color: #fff9f3;
    border-color: rgba(201, 103, 27, 0.30);
    box-shadow: 0 12px 26px rgba(196, 102, 32, 0.18);
}
.activity-page .activity-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,246,237,0.97) 100%);
    border: 1px solid rgba(223, 151, 76, 0.22);
    box-shadow:
        0 16px 32px rgba(188, 113, 36, 0.10),
        0 4px 12px rgba(188, 113, 36, 0.05),
        inset 0 1px 0 rgba(255,255,255,0.76);
}
.activity-page .activity-media {
    background: linear-gradient(180deg, rgba(255,244,232,0.92) 0%, rgba(255,233,208,0.90) 100%);
    border-color: rgba(220, 149, 73, 0.20);
    box-shadow: inset 0 -1px 0 rgba(175, 103, 26, 0.08);
}
.activity-page .activity-content {
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,247,239,0.98) 100%);
}
.activity-page .activity-status.is-active {
    background: rgba(219, 108, 20, 0.12);
    color: #b45b16;
}
.activity-page .activity-status.is-upcoming {
    background: rgba(255, 166, 77, 0.16);
    color: #c06618;
}
.activity-page .activity-status.is-ended {
    background: rgba(201, 140, 88, 0.14);
    color: #9d6a3e;
}
.activity-page .activity-countdown {
    background: rgba(224, 116, 28, 0.12);
    color: #b65a15;
}
.activity-page .activity-countdown-value {
    color: #8e4610;
}
.activity-page .activity-actions .btn-primary {
    background: linear-gradient(135deg, #dc6d1f 0%, #f39a37 100%);
    border-color: rgba(205, 106, 28, 0.26);
    box-shadow: 0 12px 24px rgba(203, 107, 28, 0.16);
}
.activity-page .activity-actions .btn-secondary,
.activity-page .activity-disabled-btn,
.activity-page .activity-disabled-btn[disabled] {
    background: linear-gradient(180deg, rgba(255,247,240,0.96) 0%, rgba(255,236,217,0.96) 100%);
    border-color: rgba(214, 145, 78, 0.20);
    color: #aa6830;
}
.activity-shell {
    display: grid;
    gap: 18px;
}
.activity-filter {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.activity-filter-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(44,71,112,0.10);
    background: rgba(255,255,255,0.92);
    color: #506176;
    border-radius: 999px;
    min-height: 40px;
    padding: 0 12px;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
    transition: all .25s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.activity-filter-btn:focus,
.activity-filter-btn:focus-visible,
.activity-filter-btn:active {
    outline: none !important;
    box-shadow: none !important;
}
.activity-filter-btn.is-active {
    background: linear-gradient(135deg, #274e8e 0%, #3d6eb4 100%);
    color: #fff;
    border-color: rgba(39,78,142,0.28);
    box-shadow: 0 10px 22px rgba(33, 57, 98, 0.16);
}
.activity-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.activity-card {
    padding: 0 !important;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,253,0.96) 100%);
    border: 1px solid rgba(111, 126, 145, 0.20);
    border-radius: 22px;
    box-shadow:
        0 14px 30px rgba(26, 39, 62, 0.08),
        0 3px 10px rgba(26, 39, 62, 0.04),
        inset 0 1px 0 rgba(255,255,255,0.72);
}
.activity-media {
    position: relative;
    display: block;
    width: 100%;
    height: 272px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(246,248,252,0.92) 0%, rgba(235,240,247,0.88) 100%);
    border: 1px solid rgba(126, 132, 142, 0.22);
    border-radius: 18px 18px 0 0;
    margin: 0;
    box-sizing: border-box;
    box-shadow: inset 0 -1px 0 rgba(84, 98, 118, 0.08);
}
.activity-media .card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
    border-radius: 10px 10px 0 0;
}
.activity-media .card-media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
    border-radius: 10px 10px 0 0;
}
.activity-card.is-hidden {
    display: none;
}
.activity-content {
    padding: 16px 24px 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,250,253,0.98) 100%);
}
.activity-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 10px;
    flex-wrap: nowrap;
}
.activity-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(79, 95, 115, 0.10);
    color: #4f5f73;
}
.activity-status.is-active {
    background: rgba(39, 108, 75, 0.10);
    color: #1f7a4a;
}
.activity-status.is-upcoming {
    background: rgba(13, 79, 215, 0.10);
    color: #285cb3;
}
.activity-status.is-ended {
    background: rgba(112, 122, 136, 0.12);
    color: #667485;
}
.activity-period {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: #3f4e62;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 0;
    line-height: 1.35;
}
.activity-period-line {
    display: block;
}
.activity-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(39, 108, 75, 0.10);
    color: #1f7a4a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}
.activity-countdown-label {
    opacity: 0.88;
}
.activity-countdown-value {
    color: #185f39;
}
.activity-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.35;
    word-break: break-word;
}
.activity-card p {
    margin: 0;
    line-height: 1.72;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.activity-points {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}
.activity-points li {
    position: relative;
    padding-left: 18px;
    color: rgba(54, 62, 71, 0.82);
    line-height: 1.72;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.activity-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(39,78,142,0.58);
}
.activity-actions {
    margin-top: 16px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
}
.activity-disabled-btn,
.activity-disabled-btn[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}
.activity-disabled-btn:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 1280px) {
    .hero-slider-main {
        height: clamp(460px, 52vw, 720px);
    }
    .hero-copy-shell {
        padding: 26px 26px 24px;
    }
    .hero-copy-main h1 {
        font-size: clamp(34px, 4.2vw, 50px);
    }
    .hero-highlights {
        gap: 12px;
    }
}

@media (max-width: 1080px) {
    .contact-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .footer-top-simple,
    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slider-main {
        height: clamp(410px, 56vw, 640px);
    }

    .hero-copy-shell {
        padding: 24px 22px 22px;
    }
    .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .hero-copy-main h1 {
        font-size: 34px;
        line-height: 1.18;
    }
    .hero-copy-main p.lead {
        font-size: 17px;
    }
    .hero-highlights li {
        padding: 13px 14px 13px 36px;
    }
}

@media (max-width: 820px) {
    :root {
        --container-gutter: 12px;
    }
    .container { width: min(var(--container), calc(100% - (var(--container-gutter) * 2))); }
    body { font-size: 16px; }
    input::placeholder {
        font-size: 13px;
    }
    select {
        padding-right: 40px;
        background-position: right 14px center, 0 0;
        background-size: 11px 7px, 100% 100%;
    }
    .contact-captcha-row {
        grid-template-columns: minmax(108px, auto) minmax(0, 1fr);
    }
    .contact-captcha-row .contact-captcha-prefix {
        min-width: 108px;
        padding: 0 12px;
        font-size: 15px;
    }
    .contact-captcha-row input {
        padding: 15px 14px;
        background: #fff;
        box-shadow: inset 1px 0 0 rgba(13,79,215,0.10);
        border-radius: 0 14px 14px 0;
    }
    .form-submit-note {
        margin-top: 5px;
        padding: 8px 10px;
        text-align: left;
        font-size: 12px;
        line-height: 1.35;
    }
    .form-submit-note-inner {
        zoom: 0.8333;
        transform: none;
        width: auto;
        margin: 0;
    }
    .notice {
        font-size: 12.8px;
        line-height: 1.5;
        padding: 12px 14px;
        margin-bottom: 14px;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        display: flex;
        position: absolute;
        top: calc(100% + 3px);
        left: 0;
        right: 0;
        padding: 9px;
        border-radius: 20px;
        flex-direction: column;
        gap: 6px;
        max-height: calc(100vh - 108px);
        overflow-y: auto;
        background:
            linear-gradient(180deg, rgba(212,218,226,0.96) 0%, rgba(186,196,207,0.94) 52%, rgba(160,172,186,0.93) 100%),
            linear-gradient(125deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 32%, rgba(84,98,118,0.14) 68%, rgba(255,255,255,0.08) 100%);
        backdrop-filter: blur(24px) saturate(145%);
        -webkit-backdrop-filter: blur(24px) saturate(145%);
        border: 1px solid rgba(88, 106, 132, 0.24);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.40),
            inset 0 -1px 0 rgba(116,132,154,0.12),
            0 10px 18px rgba(18, 30, 52, 0.10),
            0 22px 40px rgba(18, 30, 52, 0.20);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transform-origin: top center;
        transition:
            opacity .34s ease,
            transform .38s cubic-bezier(.22,.61,.36,1),
            visibility .34s ease,
            box-shadow .38s ease;
        z-index: 70;
    }
    .site-nav::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background:
            linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.05) 36%, rgba(64,78,98,0.10) 100%),
            radial-gradient(circle at top center, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 58%);
    }
    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
    body.activity-page-body .site-nav {
        background:
            linear-gradient(180deg, rgba(255,240,222,0.97) 0%, rgba(255,225,192,0.95) 52%, rgba(255,206,158,0.93) 100%),
            linear-gradient(125deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.07) 32%, rgba(201,129,55,0.12) 68%, rgba(255,255,255,0.08) 100%);
        border: 1px solid rgba(206, 129, 49, 0.22);
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,0.42),
            inset 0 -1px 0 rgba(201,132,63,0.12),
            0 10px 18px rgba(140, 78, 22, 0.12),
            0 22px 40px rgba(140, 78, 22, 0.20);
    }
    body.activity-page-body .site-nav::before {
        background:
            linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.07) 36%, rgba(143,83,28,0.10) 100%),
            radial-gradient(circle at top center, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 58%);
    }
    .site-nav a {
        position: relative;
        z-index: 1;
        width: 100%;
        padding: 9px 12px;
        min-height: 40px;
        border-radius: 13px;
        font-size: 14px;
        line-height: 1.35;
        color: #233247;
        background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(226,232,239,0.16) 100%);
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
        transition: background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    body.activity-page-body .site-nav a {
        color: #8c511d;
        background: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,241,224,0.24) 100%);
        border: 1px solid rgba(255,255,255,0.16);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.28);
    }
    .site-nav a:hover,
    .site-nav a.is-active {
        color: #172537;
        background: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(232,238,245,0.24) 100%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.44), 0 8px 18px rgba(31, 47, 76, 0.12);
        border-color: rgba(255,255,255,0.18);
        transform: translateY(-1px);
    }
    body.activity-page-body .site-nav a:hover,
    body.activity-page-body .site-nav a.is-active {
        color: #8f4b12;
        background: linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(255,235,209,0.34) 100%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.46), 0 8px 18px rgba(176, 97, 28, 0.14);
        border-color: rgba(255,255,255,0.24);
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .activity-filter {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }
    .activity-filter-btn {
        min-height: 34px;
        padding: 0 8px;
        font-size: 12px;
        flex: 0 0 auto;
    }
    .activity-list {
        grid-template-columns: 1fr;
    }
    .activity-card-head {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }
    .activity-period {
        margin-left: 0;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
        align-items: flex-start;
    }
    .activity-content {
        padding: 16px 20px 18px;
    }
    .activity-media {
        height: 220px;
        border-radius: 16px 16px 0 0;
    }
    .activity-media .card-media,
    .activity-media .card-media img {
        border-radius: 8px 8px 0 0;
    }
    .activity-card h3,
    .activity-card-head,
    .activity-card > p,
    .activity-points,
    .activity-actions {
        margin-left: 0;
        margin-right: 0;
    }
    .activity-countdown {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 4px 8px;
        margin-bottom: 10px;
        padding: 8px 10px;
        font-size: 11px;
    }
    .activity-card h3 {
        font-size: 20px;
    }
    .activity-actions {
        margin-bottom: 0;
    }

    .hero { padding: 14px 0 12px; }
    .hero-stack { gap: 12px; }
    .hero-slider {
        border-radius: 12px 12px 18px 18px;
    }
    .hero-slider-main {
        height: clamp(270px, 68vw, 420px);
    }
    .slide-caption {
        padding: 8px 12px 16px;
    }
    .slide-caption h2 {
        font-size: 15px;
        line-height: 1.2;
    }
    .hero-pill-light {
        padding: 3px 8px;
        font-size: 11px;
        margin-bottom: 4px;
    }
    .slider-dots {
        right: 12px;
        bottom: 10px;
        left: auto;
    }

    .hero-copy-main {
        padding: 0;
    }
    .hero-copy-shell {
        padding: 22px 18px 18px;
        border-radius: 18px;
    }
    .hero-copy-head {
        text-align: center;
    }
    .eyebrow {
        font-size: 13px;
        padding: 6px 12px;
    }
    .hero-copy-main h1 {
        font-size: 28px;
        line-height: 1.18;
        margin: 14px 0 12px;
    }
    .hero-copy-main p.lead {
        font-size: 15px;
        line-height: 1.85;
        letter-spacing: 0.01em;
        margin-bottom: 0;
        text-indent: 2em;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
    }
    .hero-highlights li,
    .section-header p,
    .page-hero p,
    .card p,
    .check-list li,
    .contact-list li,
    .footer-meta li {
        font-size: 14px;
        line-height: 1.65;
    }
    .hero-highlights li {
        padding: 12px 12px 12px 34px;
        border-radius: 14px;
    }
    .hero-highlights li::before {
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
    }
    .button-row {
        gap: 10px;
        margin-top: 18px;
        justify-content: center;
    }
    .btn {
        min-height: 44px;
        padding: 0 18px;
        font-size: 14px;
    }

    .contact-grid,
    .grid-4,
    .grid-3,
    .grid-2,
    .footer-top-simple,
    .stats {
        grid-template-columns: 1fr;
    }

    .contact-captcha-row {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 50px;
    }
    .contact-captcha-prefix {
        min-width: 112px;
        padding: 0 12px;
        font-size: 15px;
    }

    .section { padding: 16px 0 42px; }
    .section-header {
        margin-bottom: 18px;
    }
    .section-header h2,
    .page-hero h1 { font-size: 26px; }
    .page-hero { padding: 16px 0 10px; }
    .page-hero-box {
        padding: 18px 16px;
        border-radius: 18px;
    }
    .cta-banner {
        padding: 22px 18px;
        border-radius: 18px;
    }
    .cta-header h2 {
        max-width: none;
        font-size: 19px;
        line-height: 1.32;
    }
    .cta-header p {
        max-width: none;
        font-size: 13px;
        line-height: 1.8;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    .card {
        padding: 18px;
        border-radius: 16px;
    }
    .page-media-hero {
        border-radius: 18px;
    }
    .page-media-hero .page-media-slider {
        aspect-ratio: 16 / 11;
    }
    .page-media-hero .page-media-overlay {
        padding: 16px 16px 18px;
    }
    .page-media-hero .page-media-overlay h1 {
        font-size: 26px;
        line-height: 1.28;
        margin-bottom: 8px;
    }
    .page-media-hero .page-media-overlay p {
        font-size: 13px;
        line-height: 1.75;
    }
    .page-media-dots {
        right: 12px;
        bottom: 12px;
        gap: 6px;
    }
    .media-card .card-body { padding: 16px; }
    .media-card > img,
    .media-card .card-media,
    .media-slider,
    .product-media,
    .product-media-slider {
        aspect-ratio: 16 / 11;
    }
    .media-card img,
    .media-slider .slide-media img {
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .product-media-image {
        width: 100%;
        height: 100%;
        object-fit: fill;
        object-position: center center;
    }
    .product-card {
        grid-template-rows: 252px minmax(0, auto);
    }
    .product-media,
    .product-media-slider {
        margin: 0;
        aspect-ratio: auto;
        height: 100%;
        min-height: 252px;
        border-radius: 14.8px 14.8px 0 0;
        box-sizing: border-box;
    }
    .product-media-frame {
        width: 100%;
        height: 100%;
        min-height: 0;
        border-radius: 8px 8px 0 0;
    }
    .product-media-nav {
        gap: 6px;
    }
    .product-media-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .contact-intro-card h3 {
        font-size: 17px;
        line-height: 1.4;
    }
    .partner-list {
        grid-template-columns: 1fr;
    }
    .partner-row-card {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        gap: 10px;
        margin-top: 18px;
    }
    .contact-info-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 10px;
        padding-bottom: 10px;
    }
    .contact-info-label {
        font-size: 12px;
        line-height: 1.55;
    }
    .contact-info-value {
        font-size: 12px;
        line-height: 1.55;
    }
    .partner-row-card {
        grid-template-columns: 80px minmax(0, 1fr);
        grid-template-areas:
            "logo text"
            "action text";
        align-items: center;
        gap: 4px 10px;
        padding: 13px 14px;
        border-radius: 18px;
    }
    .partner-row-logo {
        grid-area: logo;
        width: 80px;
    }
    .partner-row-logo-inner {
        min-height: 56px;
        padding: 7px;
        border-radius: 12px;
    }
    .partner-row-logo-img {
        max-height: 32px;
    }
    .partner-row-text {
        grid-area: text;
        min-width: 0;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .partner-row-text h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }
    .partner-row-text p {
        font-size: 12px;
        line-height: 1.56;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    .partner-row-action {
        grid-area: action;
        width: 80px;
        margin-top: 0;
        justify-content: center;
        align-self: start;
    }
    .partner-row-btn {
        width: 72px;
        min-width: 72px !important;
        height: 20px !important;
        min-height: 20px;
        padding: 0 7px !important;
        font-size: 10px !important;
        line-height: 20px !important;
    }
    .team-profile-card {
        border-radius: 22px;
    }
    .team-profile-card .card-body {
        border-radius: 22px;
    }
    .team-profile-body {
        padding: 13px 14px 14px;
        min-height: 0;
    }
    .team-profile-card h3 {
        font-size: 18px;
        margin: 0 0 4px;
    }
    .team-role {
        margin-bottom: 7px;
        font-size: 12px;
    }
    .team-profile-card p {
        font-size: 12px;
        line-height: 1.66;
    }
    .team-avatar-link {
        top: 10px;
        right: 12px;
        width: 64px;
        height: 64px;
        border-width: 2px;
    }

    .site-footer { margin-top: 8px; }
    .footer-top {
        padding: 11px 0 4px;
        gap: 6px;
    }
    .footer-top-simple {
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: start;
    }
    .site-footer h3,
    .site-footer h4 {
        margin: 0 0 6px;
        font-size: 14px;
        line-height: 1.35;
    }
    .site-footer p,
    .footer-meta li {
        font-size: 11px;
        line-height: 1.42;
    }
    .footer-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px 10px;
    }
    .footer-meta li {
        margin: 0;
    }
    .footer-bottom {
        padding: 5px 0 8px;
        font-size: 10px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 3px;
    }
    .footer-bottom > a {
        text-align: center;
        line-height: 1.35;
    }
    .footer-records {
        gap: 3px 8px;
        justify-content: center;
        width: 100%;
        line-height: 1.35;
    }
}
