/* Global layout page — Hikari-inspired, Reemoon VI #00856f, full-bleed */

.global-page,
.global-map {
    --global-brand: #00856f;
    --global-brand-dark: #004d41;
    --global-brand-light: #00a88a;
    --global-brand-bright: #6ee7c7;
    --global-brand-muted: #eef6f3;
    --global-text: #1a1a1a;
    --global-text-muted: #5a756e;
    --global-max: min(1680px, 100%);
    --global-gutter: clamp(20px, 4vw, 80px);
}

.global-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    color: var(--global-text);
    background: #fff;
}

.global-container {
    width: 100%;
    max-width: var(--global-max);
    margin: 0 auto;
    padding-left: var(--global-gutter);
    padding-right: var(--global-gutter);
    box-sizing: border-box;
}

.global-eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--global-brand);
}

.global-heading {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.global-heading--light {
    color: #fff;
}

.global-headline {
    margin: 0 0 20px;
    font-size: clamp(1.625rem, 3vw, 2.375rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--global-text);
}

.global-lead {
    margin: 0;
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    line-height: 1.8;
    color: var(--global-text-muted);
}

.global-lead--light {
    color: rgba(255, 255, 255, 0.82);
}

.global-section {
    width: 100%;
    padding: clamp(64px, 8vw, 112px) 0;
}

.global-section__head {
    max-width: 760px;
    margin: 0 auto clamp(48px, 5vw, 64px);
    text-align: center;
}

.global-section__head .global-lead {
    margin-inline: auto;
}

/* ── Hero ─────────────────────────────────────────────────────────── */

.global-hero {
    position: relative;
    min-height: clamp(520px, 68vh, 720px);
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(64px, 8vw, 112px);
    overflow: hidden;
}

.global-hero__media {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 75% 35%, rgba(0, 168, 138, 0.28), transparent 55%),
        linear-gradient(145deg, #001a16 0%, #003830 40%, #005a4a 100%);
}

.global-hero__video,
.global-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    opacity: 0.38;
}

.global-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 15% 40%, rgba(0, 133, 111, 0.25), transparent 55%),
        linear-gradient(155deg, rgba(0, 20, 18, 0.94) 0%, rgba(0, 45, 38, 0.82) 50%, rgba(0, 80, 66, 0.65) 100%);
}

.global-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.global-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: clamp(20px, 3vw, 28px);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.62);
}

.global-breadcrumb a,
.global-breadcrumb a:hover,
.global-breadcrumb a:focus,
.global-breadcrumb a:visited {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.global-breadcrumb a:hover,
.global-breadcrumb a:focus {
    color: var(--global-brand-bright);
}

.global-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--global-brand-bright);
}

.global-hero__title {
    margin: 0 0 20px;
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}

.global-hero__tagline {
    margin: 0 0 clamp(28px, 4vw, 36px);
    max-width: 680px;
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.global-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.global-hero__scroll {
    position: absolute;
    bottom: clamp(20px, 3vw, 32px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.global-hero__scroll-line {
    display: block;
    width: 1px;
    height: 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent);
    animation: globalScrollPulse 2.4s ease-in-out infinite;
}

@keyframes globalScrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
    50% { opacity: 1; transform: scaleY(1); }
}

.global-page .global-btn {
    border: 2px solid transparent;
    cursor: pointer;
}

.global-page a.global-btn:hover,
.global-page a.global-btn:focus,
.global-page a.global-btn:visited {
    text-decoration: none;
}

.global-page a.global-btn--light,
.global-page a.global-btn--light:hover,
.global-page a.global-btn--light:focus,
.global-page a.global-btn--light:visited,
.global-page button.global-btn--light {
    color: var(--global-brand-dark);
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.global-page a.global-btn--outline,
.global-page a.global-btn--outline:hover,
.global-page a.global-btn--outline:focus,
.global-page a.global-btn--outline:visited {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
}

.global-page a.global-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.global-page .global-btn:hover {
    transform: translateY(-2px);
}

/* ── Intro stats ──────────────────────────────────────────────────── */

.global-intro {
    background: #fff;
}

.global-intro__head {
    max-width: 880px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.global-intro__lead {
    max-width: 720px;
    margin-inline: auto;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 768px) {
    .global-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.global-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(24px, 3vw, 32px) clamp(16px, 2vw, 20px);
    background: #fff;
    border: 1px solid rgba(0, 133, 111, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 50, 42, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.global-stats__item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 133, 111, 0.22);
    box-shadow: 0 16px 40px rgba(0, 133, 111, 0.1);
}

.global-stats__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--global-brand-muted);
    color: var(--global-brand);
}

.global-stats__icon .citrus-icon {
    width: 22px;
    height: 22px;
}

.global-stats__value {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--global-brand);
    letter-spacing: -0.02em;
}

.global-stats__label {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--global-text);
}

.global-stats__desc {
    margin-top: 6px;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--global-text-muted);
}

/* ── Globe map ────────────────────────────────────────────────────── */

.global-map {
    position: relative;
    padding-bottom: clamp(80px, 10vw, 120px);
    overflow: hidden;
}

.global-map__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 168, 138, 0.12), transparent 70%),
        linear-gradient(180deg, #061f1a 0%, #0a2e28 40%, #004d41 100%);
}

.global-map__inner {
    position: relative;
    z-index: 1;
}

.global-map__head {
    max-width: 680px;
    margin: 0 auto clamp(40px, 5vw, 56px);
    text-align: center;
}

.global-map--visual-only .global-globe {
    margin-bottom: 0;
}

.global-map--visual-only .global-globe.is-active .global-globe__beam,
.global-map--visual-only .global-globe__beam {
    opacity: 1;
}

.global-globe {
    position: relative;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.global-globe__stage {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.global-globe__sphere {
    position: absolute;
    left: var(--hub-left);
    top: var(--hub-top);
    width: min(200px, 24vw);
    height: min(200px, 24vw);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.global-globe__core {
    position: absolute;
    inset: 28%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(110, 231, 199, 0.25), rgba(0, 133, 111, 0.08) 50%, transparent 70%);
    box-shadow: 0 0 80px rgba(0, 133, 111, 0.2);
    animation: globalCorePulse 4s ease-in-out infinite;
}

.global-globe__ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(110, 231, 199, 0.15);
    border-radius: 50%;
}

.global-globe__ring--1 {
    animation: globalRingSpin 24s linear infinite;
}

.global-globe__ring--2 {
    inset: 12%;
    animation: globalRingSpin 18s linear infinite reverse;
    border-color: rgba(0, 133, 111, 0.2);
}

.global-globe__ring--3 {
    inset: 24%;
    animation: globalRingSpin 30s linear infinite;
    border-style: dashed;
    border-color: rgba(110, 231, 199, 0.12);
}

@keyframes globalRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes globalCorePulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.global-globe__map {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(110, 231, 199, 0.12);
    line-height: 0;
}

.global-globe__map-img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.88;
    filter: saturate(0.85) brightness(0.95);
}

.global-globe__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.global-globe__beam {
    stroke: rgba(110, 231, 199, 0.35);
    stroke-width: 1;
    stroke-dasharray: 4 6;
    animation: globalBeamFlow 3s linear infinite;
    animation-delay: var(--beam-delay, 0s);
    opacity: 0;
}

.global-globe.is-active .global-globe__beam {
    opacity: 1;
}

@keyframes globalBeamFlow {
    0% { stroke-dashoffset: 40; opacity: 0.15; }
    50% { opacity: 0.55; }
    100% { stroke-dashoffset: 0; opacity: 0.15; }
}

.global-globe__dot {
    fill: var(--global-brand-bright);
    filter: drop-shadow(0 0 4px rgba(110, 231, 199, 0.95)) drop-shadow(0 0 10px rgba(0, 168, 138, 0.55));
}

.global-globe__hub-dot {
    fill: #fff;
    filter: drop-shadow(0 0 6px rgba(110, 231, 199, 0.9));
}

.global-globe__hub-glow {
    animation: globalHubGlow 3s ease-in-out infinite;
}

@keyframes globalHubGlow {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

/* HQ marker — 江西赣州信丰，与 SVG 辐射中心同坐标 */
.global-globe__hub-marker {
    position: absolute;
    left: var(--hub-left);
    top: var(--hub-top);
    z-index: 5;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.global-globe__hub-pin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.global-globe__hub-pin-core {
    position: relative;
    z-index: 2;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 133, 111, 0.45), 0 0 20px rgba(110, 231, 199, 0.85);
}

.global-globe__hub-pin-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(110, 231, 199, 0.65);
    animation: globalHubPinRing 2.4s ease-out infinite;
}

@keyframes globalHubPinRing {
    0% { transform: scale(0.85); opacity: 0.95; }
    100% { transform: scale(1.8); opacity: 0; }
}

.global-globe__hub-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%) translateY(6px);
    min-width: max-content;
    padding: 10px 14px;
    text-align: center;
    line-height: 1.35;
    color: #fff;
    background: rgba(0, 77, 65, 0.94);
    border: 1px solid rgba(110, 231, 199, 0.35);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    white-space: nowrap;
}

.global-globe__hub-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background: rgba(0, 77, 65, 0.94);
    border-right: 1px solid rgba(110, 231, 199, 0.35);
    border-bottom: 1px solid rgba(110, 231, 199, 0.35);
    transform: translateX(-50%) rotate(45deg);
}

.global-globe__hub-tooltip strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
}

.global-globe__hub-tooltip span {
    display: block;
    margin-top: 2px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
}

.global-globe__hub-marker:hover .global-globe__hub-tooltip,
.global-globe__hub-marker:focus-within .global-globe__hub-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 992px) {
    .global-globe__hub-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 991px) {
    .global-globe__hub-tooltip {
        bottom: auto;
        top: calc(100% + 10px);
        transform: translateX(-50%) translateY(-6px);
    }

    .global-globe__hub-marker:hover .global-globe__hub-tooltip,
    .global-globe__hub-marker:focus-within .global-globe__hub-tooltip {
        transform: translateX(-50%) translateY(0);
    }

    .global-globe__hub-tooltip::after {
        top: -6px;
        bottom: auto;
        border-right: none;
        border-bottom: none;
        border-left: 1px solid rgba(110, 231, 199, 0.35);
        border-top: 1px solid rgba(110, 231, 199, 0.35);
    }
}

.global-globe__ripple {
    fill: none;
    stroke: var(--global-brand-bright);
    stroke-width: 1;
    opacity: 0;
    transform-origin: center;
    animation: globalRipple 2.8s ease-out infinite;
    animation-delay: var(--node-delay, 0s);
}

.global-globe__ripple--2 {
    animation-delay: calc(var(--node-delay, 0s) + 0.6s);
}

.global-globe__ripple--3 {
    animation-delay: calc(var(--node-delay, 0s) + 1.2s);
}

.global-globe.is-active .global-globe__ripple {
    animation-play-state: running;
}

@keyframes globalRipple {
    0% {
        r: 3;
        opacity: 0.75;
    }
    100% {
        r: 22;
        opacity: 0;
    }
}

.global-globe__hub-ripple {
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
    opacity: 0;
    animation: globalHubRipple 2.4s ease-out infinite;
}

.global-globe__hub-ripple--2 {
    animation-delay: 0.8s;
}

@keyframes globalHubRipple {
    0% { r: 8; opacity: 0.95; }
    100% { r: 38; opacity: 0; }
}

.global-network {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 40px);
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(110, 231, 199, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.global-network__title {
    margin: 0 0 16px;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #fff;
}

.global-network__body {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
}

/* ── Subsidiaries ─────────────────────────────────────────────────── */

.global-subs {
    background: linear-gradient(180deg, #f8fbf9 0%, #fff 100%);
}

.global-subs__grid {
    display: grid;
    gap: clamp(20px, 2.5vw, 28px);
}

@media (min-width: 768px) {
    .global-subs__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .global-subs__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .global-subs__card--featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
    }

    .global-subs__card--featured .global-subs__media {
        min-height: 280px;
    }
}

.global-subs__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 133, 111, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 50, 42, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.global-subs__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 133, 111, 0.1);
}

.global-subs__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--global-brand-muted);
}

.global-subs__card--featured .global-subs__media {
    aspect-ratio: auto;
    min-height: 220px;
}

.global-subs__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.global-subs__card:hover .global-subs__media img {
    transform: scale(1.04);
}

.global-subs__region {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(0, 77, 65, 0.82);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.global-subs__body {
    flex: 1;
    padding: clamp(20px, 2.5vw, 28px);
}

.global-subs__name {
    margin: 0 0 6px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--global-text);
}

.global-subs__role {
    margin: 0 0 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--global-brand);
}

.global-subs__desc {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--global-text-muted);
}

/* ── CTA ──────────────────────────────────────────────────────────── */

.global-cta {
    width: 100%;
    padding: clamp(36px, 4.5vw, 52px) 0;
    background: linear-gradient(135deg, var(--global-brand-dark) 0%, var(--global-brand) 50%, #006b59 100%);
}

.global-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

@media (min-width: 768px) {
    .global-cta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.global-cta__copy {
    max-width: 640px;
}

.global-cta .global-heading--light {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.2vw, 1.625rem);
    line-height: 1.3;
}

.global-cta .global-lead--light {
    font-size: clamp(0.9375rem, 1vw, 1rem);
    line-height: 1.65;
}

.global-cta .global-btn {
    padding: 12px 24px;
    font-size: 0.875rem;
}

.global-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.global-btn--light {
    color: var(--global-brand-dark);
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.global-btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .global-globe__ring,
    .global-globe__core,
    .global-globe__beam,
    .global-globe__ripple,
    .global-globe__hub-ripple,
    .global-globe__hub-glow {
        animation: none !important;
    }

    .global-stats__item:hover,
    .global-subs__card:hover,
    .global-btn--light:hover {
        transform: none;
    }
}
