:root {
    --primary-color: rgb(236, 102, 2);
    --secondary-color: rgb(0, 153, 153);
    --accent-color: #f2f2f2;
    --text-color: #1f2933;
    --light-text: #64707d;
    --surface: #ffffff;
    --surface-soft: #f7fafc;
    --surface-tint: #edf7f7;
    --border-color: rgba(21, 52, 67, 0.1);
    --shadow-sm: 0 8px 24px rgba(24, 43, 57, 0.08);
    --shadow-md: 0 18px 45px rgba(24, 43, 57, 0.12);
    --shadow-lg: 0 28px 70px rgba(24, 43, 57, 0.16);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text-color);
    font-family: "Segoe UI", "Microsoft YaHei", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at 8% 0%, rgba(0, 153, 153, 0.14), transparent 28rem),
        radial-gradient(circle at 88% 8%, rgba(236, 102, 2, 0.13), transparent 24rem),
        linear-gradient(180deg, #fbfcfd 0%, #f3f7f8 48%, #eef4f5 100%);
}

a {
    transition: color 0.2s var(--ease-out), background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(0, 153, 153, 0.35);
    outline-offset: 3px;
}

.offline-banner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 16px;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    background: #ffc107;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.navbar {
    min-height: 64px;
    padding: 0.65rem 0;
    background: rgba(236, 102, 2, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 32px rgba(94, 45, 9, 0.2);
    backdrop-filter: blur(18px);
}

.navbar .container {
    max-width: 1440px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.brand-mark {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 13px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px rgba(99, 40, 0, 0.2);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    font-size: 1rem;
}

.brand-subtitle {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.navbar-search {
    width: min(100%, 380px);
}

.navbar-search .input-group {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(98, 41, 0, 0.16);
}

.navbar-search .input-group-text,
.navbar-search .form-control {
    border: 0;
    background: transparent !important;
}

.navbar-search .input-group-text {
    padding-left: 16px;
    color: var(--secondary-color);
}

.navbar-search .form-control {
    height: 42px;
    color: var(--text-color);
    font-size: 0.94rem;
}

.navbar-search .form-control::placeholder {
    color: #8a98a7;
}

.navbar-search .form-control:focus {
    box-shadow: none;
}

.page-container {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 100dvh;
    padding-top: 64px;
}

.main-wrapper {
    width: 100%;
}

.container.main-content {
    width: min(94vw, 1440px);
    max-width: 1440px !important;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 48px) 0 56px;
}

.hero-panel {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 18px;
   min-height: auto;
   padding: 12px 16px;
   overflow: hidden;
   isolation: isolate;
   color: #fff;
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 14px;
   background: linear-gradient(90deg, rgba(0,153,153,0.9) 0%, rgba(236,102,2,0.9) 100%);
   box-shadow: 0 8px 24px rgba(24,43,57,0.08);
}

.hero-panel::before,
.hero-panel::after {
    display: none; /* compact hero: decorative shapes hidden */
}

.hero-copy {
    align-self: center;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-eyebrow {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
}

.hero-copy h1 {
    max-width: 420px;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: normal;
}

.hero-copy p {
    max-width: 420px;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-button:active {
    transform: scale(0.98);
}

.hero-button.primary {
    color: var(--primary-color);
    background: #fff;
    box-shadow: 0 16px 36px rgba(65, 32, 0, 0.2);
}

.hero-button.primary:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-button.secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-insights {
    display: flex;
    align-items: center;
    gap: 10px;
}

.insight-card {
    display: inline-flex;
    min-height: 44px;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.insight-card.accent {
    background: rgba(255, 255, 255, 0.22);
}

.insight-value {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.insight-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin: clamp(30px, 5vw, 54px) 0 20px;
}

.section-kicker {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.section-heading h2 {
    margin: 0;
    color: #173241;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 420px;
    margin: 0;
    color: var(--light-text);
    line-height: 1.7;
}

.responsive-grid {
    display: grid;
    width: 100%;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: start;
}

.category-section {
    position: relative;
    display: flex;
    min-height: 220px;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
    transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), border-color 0.24s var(--ease-out), opacity 0.3s var(--ease-out);
}

.category-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.95;
}

.category-section:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 153, 153, 0.22);
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 0 0 14px;
    color: #173241;
    border-bottom: 1px solid rgba(21, 52, 67, 0.1);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.category-header i {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--secondary-color);
    border-radius: 12px;
    background: rgba(0, 153, 153, 0.1);
}

.category-section .link-group {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.link-card {
    flex-shrink: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 52, 67, 0.08);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: none;
    opacity: 1;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(236, 102, 2, 0.28);
    box-shadow: 0 16px 32px rgba(24, 43, 57, 0.1);
}

.link-card:active {
    transform: scale(0.99);
}

.link-card .card-body {
    padding: 13px 14px;
}

.link-card a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #243947;
    font-size: 0.94rem;
    font-weight: 760;
    line-height: 1.25;
    text-decoration: none;
}

.link-card a:hover {
    color: var(--primary-color);
}

.link-card .card-text {
    margin: 7px 0 0 35px;
    color: var(--light-text);
    font-size: 0.78rem;
    line-height: 1.45;
}

.link-icon {
    display: inline-grid;
    width: 26px;
    height: 26px;
    min-width: 26px;
    place-items: center;
    margin-right: 0;
    color: var(--secondary-color);
    border-radius: 9px;
    background: var(--surface-tint);
    font-size: 0.88rem;
}

.hidden {
    display: none;
}

.link-card.hidden {
    opacity: 0;
    transform: scale(0.98);
}

.category-header,
.link-group {
    transition: opacity 0.3s var(--ease-out);
}

#noResultsMessage {
    width: min(94vw, 720px);
    margin: 0 auto 36px;
    border: 1px solid rgba(0, 153, 153, 0.18);
    border-radius: 18px;
    color: #174650;
    background: rgba(237, 247, 247, 0.95);
    box-shadow: var(--shadow-sm);
    transition: opacity 0.3s var(--ease-out);
}

footer {
    margin-top: auto;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.88);
    background: #173241;
}

footer .container {
    max-width: 1440px;
}

footer a,
footer a.text-dark {
    color: rgba(255, 255, 255, 0.86) !important;
}

footer a:hover {
    color: #fff !important;
}

.footer-links a {
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.search-container {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.search-container .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.search-container .form-control {
    height: 40px;
}

.search-container .input-group-text {
    padding: 0 12px;
}

@media (min-width: 1600px) {
    .responsive-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .hero-panel {
        grid-template-columns: 1fr;
    }

    .hero-insights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        min-height: auto;
        padding: 0.5rem 0;
    }

    .navbar .container {
        gap: 10px;
    }

    .navbar-brand {
        gap: 9px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .brand-title {
        font-size: 0.9rem;
    }

    .brand-subtitle {
        display: none;
    }

    .navbar-search {
        width: min(52vw, 220px);
    }

    .navbar-search .form-control {
        height: 36px;
        font-size: 0.86rem;
    }

    .page-container {
        padding-top: 58px;
    }

    .container.main-content {
        width: min(92vw, 720px);
        padding-top: 20px;
    }

    .hero-panel {
        min-height: auto;
        padding: 20px 18px;
        border-radius: 22px;
    }

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

    .hero-insights {
        grid-template-columns: 1fr;
    }

    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-section {
        border-radius: 22px;
        padding: 18px;
    }

    .link-card .card-body {
        padding: 12px;
    }

    .section-heading {
        margin-top: 34px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding-right: 12px;
        padding-left: 12px;
    }

    .brand-copy {
        max-width: 104px;
    }

    .navbar-search {
        width: 48vw;
    }

    .hero-copy h1 {
        font-size: 1.8rem;
    }

    .link-card a {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/*# sourceMappingURL=main.4d07865590eec37024cd.css.map*/