* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f5f7fa;
    --bg-deep: #e8f1eb;
    --panel: rgba(255, 255, 255, 0.92);
    --text: #20312a;
    --muted: #617066;
    --border: rgba(44, 95, 68, 0.12);
    --accent: #2f855a;
    --accent-strong: #256b48;
    --accent-soft: rgba(47, 133, 90, 0.12);
    --warm: #d7efe0;
    --shadow: 0 18px 50px rgba(28, 54, 38, 0.10);
}

body {
    font-family: "Avenir Next", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(47, 133, 90, 0.14), transparent 34%),
        radial-gradient(circle at 85% 12%, rgba(137, 201, 161, 0.18), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
    min-height: 100vh;
    color: var(--text);
    display: flex;
    flex-direction: column;
}

body::before,
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(10px);
}

body::before {
    width: 260px;
    height: 260px;
    top: 90px;
    right: 4%;
    background: rgba(47, 133, 90, 0.12);
}

body::after {
    width: 220px;
    height: 220px;
    bottom: 90px;
    left: 4%;
    background: rgba(137, 201, 161, 0.16);
}

.page-shell {
    width: min(1200px, calc(100% - 40px));
    margin: 24px auto 0;
    position: relative;
    z-index: 1;
}

.hero,
.hero-copy,
.hero-panel,
.signal-strip,
.section-block,
.info-card,
.home-link-card {
    border: 1px solid var(--border);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    border: none;
    background: transparent;
    box-shadow: none;
}

.hero-copy,
.hero-panel {
    padding: 34px;
    border-radius: 34px;
}

.hero-kicker,
.section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-strong);
    font-weight: 700;
}

.hero-copy h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.02;
    margin-top: 14px;
    max-width: 10ch;
}

.hero-lead {
    margin-top: 18px;
    font-size: 1.04rem;
    line-height: 1.85;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
}

.hero-button.primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(47, 133, 90, 0.20);
}

.hero-button.secondary {
    background: #fff;
    color: var(--text);
}

.hero-panel {
    background: linear-gradient(150deg, rgba(47, 133, 90, 0.95), rgba(72, 187, 120, 0.84));
    color: #f5fff8;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
}

.hero-avatar {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
    margin-bottom: auto;
}

.hero-panel-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.82;
}

.hero-panel-title {
    margin-top: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.95rem;
    line-height: 1.14;
}

.hero-points {
    margin-top: 18px;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-points li {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
}

main {
    padding: 28px 0 54px;
}

.signal-strip {
    display: grid;
    grid-template-columns: 1.2fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 24px;
    margin-top: 22px;
}

.signal-item p {
    color: var(--muted);
    line-height: 1.7;
}

.signal-label {
    display: block;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-strong);
    font-weight: 700;
    margin-bottom: 6px;
}

.badge-item {
    justify-self: center;
}

.visit-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.visit-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 133, 90, 0.16);
    color: var(--accent-strong);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}

.visit-chip strong {
    display: inline-flex;
    min-width: 2ch;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.84rem;
}

.signal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.signal-links a {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration: none;
}

.section-block {
    border-radius: 28px;
    padding: 28px;
    margin-top: 22px;
}

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

.info-card {
    border-radius: 22px;
    padding: 24px 22px;
}

.info-card-highlight {
    background: linear-gradient(145deg, rgba(47, 133, 90, 0.08), rgba(255, 255, 255, 0.96));
}

.card-icon {
    font-size: 1.9rem;
    line-height: 1;
}

.info-card h2,
.section-heading h2,
.home-link-card h3 {
    margin-top: 14px;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.15;
}

.info-card p,
.home-link-card p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.8;
}

.info-card ul {
    margin-top: 16px;
    padding-left: 1.15rem;
    display: grid;
    gap: 10px;
}

.inline-quote {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #1f2d26;
    color: #dff7e8;
    font-size: 0.92rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.badge-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    justify-content: center;
}

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

.stats-card {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(47, 133, 90, 0.12);
    background: rgba(47, 133, 90, 0.04);
}

.stats-card img {
    display: block;
    width: 100%;
    height: auto;
}

.home-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.home-link-card {
    border-radius: 28px;
    padding: 26px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 133, 90, 0.22);
    background: rgba(255, 255, 255, 0.94);
}

.link-arrow {
    display: inline-flex;
    margin-top: 20px;
    color: var(--accent-strong);
    font-weight: 700;
}

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px 30px;
    color: var(--muted);
    font-size: 0.84rem;
}

footer a {
    color: inherit;
}

@media (max-width: 960px) {
    .hero,
    .card-grid,
    .signal-strip,
    .stats-grid,
    .home-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .signal-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 20px, 100%);
        margin-top: 10px;
    }

    .hero-copy,
    .hero-panel,
    .signal-strip,
    .section-block,
    .home-link-card,
    .info-card {
        border-radius: 22px;
    }

    .hero-copy,
    .hero-panel,
    .signal-strip,
    .section-block,
    .home-link-card,
    .info-card {
        padding: 22px 18px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-button {
        width: 100%;
    }
}