:root {
    --bg: #f4f7fb;
    --card: #ffffff;
    --card-alt: #f8fbff;
    --white: #ffffff;
    --text: #10233f;
    --muted: #60738f;
    --border: #dbe4ef;
    --primary: #2563eb;
    --primary-deep: #143fa8;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --accent-soft: #fff4dd;
    --success: #16a34a;
    --danger: #dc2626;
    --dark: #0b1220;
    --gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-dark: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
    --surface-panel: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    --surface-panel-selected: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
    --surface-glass: rgba(255, 255, 255, 0.92);
    --surface-border-soft: rgba(219, 228, 239, 0.88);
    --primary-bg-soft: rgba(37, 99, 235, 0.08);
    --primary-bg-soft-strong: rgba(15, 124, 255, 0.12);
    --primary-border-soft: rgba(37, 99, 235, 0.14);
    --primary-border-medium: rgba(37, 99, 235, 0.22);
    --primary-border-strong: rgba(37, 99, 235, 0.32);
    --focus-outline: rgba(37, 99, 235, 0.24);
    --focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.12);
    --primary-shadow: 0 16px 36px rgba(37, 99, 235, 0.22);
    --accent-shadow: 0 14px 34px rgba(245, 158, 11, 0.22);
    --warning-gradient: linear-gradient(135deg, #fffaf2 0%, #fff6e8 100%);
    --warning-border: #efd8b7;
    --warning-text: #6b5322;
    --warning-muted: #7a6330;
    --warning-link-text: #8b6522;
    --warning-link-border: rgba(107, 83, 34, 0.12);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.1);
    --container: 1040px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.is-nav-open {
    overflow: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(6, 182, 212, 0.08), transparent 24%),
        var(--bg);
    font-size: 15px;
    line-height: 1.68;
}

[data-naive-app]:not(.naive-mounted) {
    opacity: 1;
}

[data-naive-app].naive-mounted {
    opacity: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--focus-outline);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    height: auto;
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: -0.15em;
    fill: currentColor;
}

.site-shell {
    min-height: 100vh;
    background: transparent;
}

.site-shell > .n-layout-scroll-container {
    min-height: 100vh;
}

.site-content-shell {
    overflow: hidden;
}

.site-container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(16px);
    background: var(--surface-glass);
    border-bottom: 1px solid var(--surface-border-soft);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-sub {
    margin-top: 3px;
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--primary);
    background: var(--primary-bg-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions a,
.hero-actions a,
.mobile-cta a {
    display: inline-flex;
}

.card-actions {
    margin-top: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

button.btn {
    appearance: none;
}

.card-link:focus-visible .service-card,
.card-link:focus-visible .article-card,
.product-card-selector:focus-within .product-card,
.nav-link:focus-visible,
.mobile-nav-link:focus-visible,
.aside-link:focus-visible {
    border-color: var(--primary-border-strong);
    box-shadow: var(--focus-ring), var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
    box-shadow: none;
}

.btn-primary {
    color: var(--white);
    background: var(--gradient);
    box-shadow: var(--primary-shadow);
}

.btn-secondary {
    color: var(--text);
    background: var(--white);
    border-color: var(--border);
}

.btn-accent {
    color: var(--white);
    background: var(--accent-gradient);
    box-shadow: var(--accent-shadow);
}

.btn-block {
    width: 100%;
}

.btn-static-label {
    pointer-events: none;
    opacity: 0.75;
}

.input,
.select,
.textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    padding: 10px 12px;
    outline: none;
}

.textarea {
    resize: vertical;
    line-height: 1.68;
}

.input:focus,
.select:focus,
.textarea:focus {
    border-color: rgba(15, 124, 255, 0.44);
    box-shadow: var(--focus-ring);
}

.search-keyword-input {
    height: 48px;
    padding: 0 16px;
    font-size: 15px;
}

.search-select {
    height: 44px;
    padding: 0 14px;
}

.admin-form-full {
    grid-column: 1 / -1;
}

.editor-help {
    color: var(--muted);
    font-size: 12px;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.nav-toggle {
    display: none;
    font-size: 17px;
}

.nav-toggle.btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
}

.mobile-drawer-panel {
    display: none;
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(219, 228, 239, 0.88);
    background: rgba(255, 255, 255, 0.98);
}

.site-header.is-open .mobile-drawer-panel {
    display: block;
}

.mobile-drawer {
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
}

.mobile-drawer-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(219, 228, 239, 0.88);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 700;
    background: rgba(15, 124, 255, 0.04);
}

.mobile-nav-link.is-active {
    color: var(--primary);
    background: rgba(15, 124, 255, 0.08);
}

.mobile-drawer-actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mobile-drawer-actions a {
    display: block;
}

.card-link {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 82px;
    background: var(--gradient-dark);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -30% auto auto -25%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 22px;
    align-items: stretch;
}

.hero-panel {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-title {
    margin: 16px 0 12px;
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    margin: 0 0 20px;
    max-width: 720px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.glass-card {
    height: 100%;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.18);
    backdrop-filter: blur(14px);
}

.glass-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 900;
}

.glass-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.glass-item {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.glass-item strong {
    display: block;
    font-size: 20px;
    line-height: 1.1;
}

.glass-item span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.82);
}

.glass-note {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-contact-grid .glass-item strong {
    font-size: 18px;
}

.hero-proof-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.94);
}

.hero-proof-item .icon {
    color: #fff;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.hero-mini-stat {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-mini-stat strong {
    display: block;
    font-size: 19px;
    line-height: 1.1;
    color: #fff;
}

.hero-mini-stat span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.78);
}

.home-hub-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 92px;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 48%, #0f766e 100%);
    color: #fff;
}

.home-hub-hero::before,
.home-hub-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-hub-hero::before {
    top: -180px;
    left: -160px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.home-hub-hero::after {
    right: -140px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.home-hub-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.home-hub-copy {
    max-width: 760px;
}

.home-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.home-hub-title {
    margin: 18px 0 14px;
    font-size: clamp(34px, 4.8vw, 54px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.home-hub-subtitle {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.home-hub-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home-hub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hub-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.home-hub-action-row a,
.home-hub-contact-actions a {
    display: inline-flex;
}

.home-hub-side {
    display: grid;
    gap: 16px;
}

.home-hub-quick-card,
.home-hub-contact-card {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.18);
    backdrop-filter: blur(14px);
}

.home-hub-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

.home-hub-quick-list {
    display: grid;
    gap: 10px;
}

.home-hub-quick-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.home-hub-quick-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.24);
}

.home-hub-quick-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
}

.home-hub-quick-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.home-hub-quick-copy strong {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

.home-hub-quick-copy span {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.home-hub-quick-arrow {
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
}

.home-hub-contact-meta {
    display: grid;
    gap: 10px;
}

.home-hub-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.home-hub-contact-row .icon {
    color: #fff;
}

.home-hub-contact-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-hub-contact-copy small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.76);
}

.home-hub-contact-copy strong {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

.home-hub-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.home-hub-stat {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-hub-stat strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
    color: #fff;
}

.home-hub-stat span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.74);
}

.home-hub-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

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

.home-solution-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    box-shadow: var(--shadow-sm);
}

.home-solution-card.is-juhema {
    border-color: rgba(37, 99, 235, 0.18);
}

.home-solution-card.is-api {
    border-color: rgba(8, 145, 178, 0.18);
}

.home-solution-card.is-remote {
    border-color: rgba(15, 118, 110, 0.18);
}

.home-solution-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.home-solution-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

.home-solution-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.home-solution-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.home-solution-card > p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

.home-solution-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.home-solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

.home-solution-list .icon {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.home-solution-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.home-solution-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f2f6fb;
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: #475569;
    font-size: 11px;
    font-weight: 700;
}

.home-solution-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-solution-actions a {
    display: inline-flex;
}

.home-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.home-route-card {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--shadow-sm);
}

.home-route-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--text);
}

.home-route-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

.home-route-card a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.home-support-card {
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-color: rgba(37, 99, 235, 0.14);
}

.home-support-links {
    display: grid;
    gap: 10px;
}

.home-support-link {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(37, 99, 235, 0.08);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-support-link:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.18);
    box-shadow: var(--shadow-sm);
}

.home-support-link strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--text);
}

.home-support-link span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

.main-wrap {
    position: relative;
    z-index: 2;
    margin-top: -46px;
    padding-bottom: 48px;
}

.section {
    margin-bottom: 22px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.section-title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-subtitle {
    color: var(--muted);
    font-size: 13px;
}

.panel {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.service-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    min-height: 164px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface-panel);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-border-medium);
}

.service-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    background: var(--gradient);
}

.service-body {
    min-width: 0;
}

.service-title {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 900;
}

.service-desc {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-bg-soft);
    border: 1px solid var(--primary-border-soft);
}

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

.entry-card {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--card);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.entry-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-border-medium);
}

.entry-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.entry-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.product-card-selector {
    display: block;
    cursor: pointer;
}

.product-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-card {
    display: block;
    min-height: 100%;
}

.product-card-selector input:checked + .product-card {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: var(--focus-ring), var(--shadow-sm);
    background: var(--surface-panel-selected);
}

.product-price {
    display: inline-flex;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-deep);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
    align-items: start;
}

.content-grid-single {
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
}

.apply-layout-grid {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.member-layout-grid {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.article-list-panel {
    padding: 12px 0;
}

.article-list-item {
    display: block;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.18s ease, padding-left 0.18s ease;
}

.article-list-item:last-child {
    border-bottom: none;
}

.article-list-item:hover {
    background: rgba(37, 99, 235, 0.03);
    padding-left: 28px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--muted);
}

.article-hero-meta {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-title {
    margin: 0 0 8px;
    font-size: 19px;
    line-height: 1.42;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.article-summary {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.article-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.article-chip-row-spaced {
    margin-top: 16px;
}

.search-empty-tags {
    justify-content: center;
    margin-top: 18px;
}

.article-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    background: #f6f9fd;
    border: 1px solid var(--border);
}

.article-chip-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.article-card {
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.24);
}

.aside-card {
    padding: 20px;
}

.form-shell-card {
    padding: 24px;
}

.form-shell-card form {
    gap: 18px;
}

.auth-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 20px;
    align-items: start;
}

.auth-shell-single {
    grid-template-columns: minmax(0, 640px);
    justify-content: center;
}

.auth-shell-refined {
    grid-template-columns: minmax(0, 760px);
}

.auth-info-card,
.auth-form-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.auth-info-card {
    color: #fff;
    background: linear-gradient(145deg, #0f172a 0%, #1d4ed8 50%, #0f766e 100%);
}

.auth-info-card::before,
.auth-info-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.auth-info-card::before {
    width: 360px;
    height: 360px;
    top: -180px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
}

.auth-info-card::after {
    width: 280px;
    height: 280px;
    bottom: -140px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.auth-info-card > * {
    position: relative;
    z-index: 1;
}

.auth-kicker,
.auth-form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.auth-kicker {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.auth-info-card h2 {
    margin: 18px 0 12px;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.auth-info-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.auth-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.auth-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

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

.auth-metric {
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.auth-metric strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
}

.auth-metric span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.78);
}

.auth-feature-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.auth-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-feature-list .icon {
    margin-top: 2px;
    color: #fff;
}

.auth-feature-copy strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
}

.auth-feature-copy span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.auth-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.auth-info-actions a {
    display: inline-flex;
}

.auth-info-actions .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.auth-form-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.auth-form-card-refined {
    padding: 32px;
    border-color: rgba(191, 219, 254, 0.9);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.1), transparent 34%),
        radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.auth-form-card-refined::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: var(--gradient);
}

.auth-form-card-refined::after {
    content: "";
    position: absolute;
    top: -92px;
    right: -72px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 72%);
    pointer-events: none;
}

.auth-form-card-refined > * {
    position: relative;
    z-index: 1;
}

.auth-form-top {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.auth-mode-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.auth-form-card-refined .auth-mode-switch {
    padding: 7px;
    background: rgba(37, 99, 235, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.auth-mode-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.auth-mode-link:hover {
    color: var(--primary);
}

.auth-mode-link.is-active {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.12);
}

.auth-form-eyebrow {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.auth-form-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.auth-form-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 46ch;
}

.auth-flash {
    margin-bottom: 16px;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.auth-form-grid-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field.is-required .form-label::after {
    content: '*';
    display: inline-block;
    margin-left: 4px;
    color: #dc2626;
    font-weight: 900;
}

.auth-field-full {
    grid-column: 1 / -1;
}

.auth-input-shell {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 66px;
    padding: 0 24px;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.auth-form-card-refined .auth-input-shell {
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    border-color: #d7e3ef;
}

.auth-input-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.auth-input-shell:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: #bfd1f4;
}

.auth-input-shell:focus-within {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.72);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 14px 32px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

.auth-input-shell:focus-within::after {
    border-color: rgba(96, 165, 250, 0.42);
}

.auth-input-icon {
    width: 18px;
    height: 18px;
    color: #64748b;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.auth-input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    outline: none;
    box-shadow: none;
    caret-color: var(--primary);
}

.auth-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.auth-input:focus::placeholder {
    color: #a9b8ca;
    opacity: 0.75;
}

.auth-field:focus-within .form-label {
    color: var(--primary);
}

.auth-field:focus-within .auth-input-icon {
    color: var(--primary);
    transform: scale(1.06);
}

.auth-field:focus-within .auth-field-help {
    color: #3d5f87;
}

.auth-input:-webkit-autofill,
.auth-input:-webkit-autofill:hover,
.auth-input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text);
    box-shadow: inset 0 0 0 1000px #ffffff;
    transition: background-color 9999s ease-in-out 0s;
}

.auth-field-help {
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted);
}

.auth-top-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-top-point {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(37, 99, 235, 0.12);
    color: #36577f;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.auth-top-point .icon {
    color: var(--primary);
}

.auth-mini-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.auth-form-card-refined .auth-mini-note {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.06) 100%);
    border-color: rgba(37, 99, 235, 0.12);
}

.auth-mini-note .icon {
    color: var(--primary);
    margin-top: 2px;
}

.auth-submit-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
}

.auth-submit-row a,
.auth-submit-row button {
    display: inline-flex;
}

.auth-submit-row .btn {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    font-size: 15px;
}

.auth-inline-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.auth-inline-row .auth-input-shell {
    flex: 1 1 auto;
}

.auth-inline-button {
    flex: 0 0 148px;
    min-height: 66px;
    justify-content: center;
}

.auth-sms-message {
    min-height: 20px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--muted);
}

.auth-sms-message.is-success {
    color: #15803d;
}

.auth-sms-message.is-error {
    color: #b91c1c;
}

.auth-switch-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(219, 228, 239, 0.88);
    font-size: 13px;
    color: var(--muted);
}

.auth-switch-row a {
    color: var(--primary);
    font-weight: 800;
}

.auth-page-body .site-content-shell {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 74px);
    overflow: visible;
}

.auth-page-body .site-footer,
.auth-page-body .mobile-cta,
.auth-page-body .floating-service,
.auth-page-body .back-top {
    display: none !important;
}

.auth-focus-layout {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0 72px;
}

.auth-shell-minimal {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.auth-card-clean {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 24px;
    border: 1px solid rgba(219, 228, 239, 0.98);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(16, 35, 63, 0.06), 0 2px 8px rgba(16, 35, 63, 0.03);
    backdrop-filter: blur(10px);
}

.auth-card-clean::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--gradient);
}

.auth-card-clean > * {
    position: relative;
    z-index: 1;
}

.auth-header-clean {
    margin-bottom: 26px;
    text-align: center;
}

.auth-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--text);
}

.auth-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

.auth-mode-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-bottom: 24px;
    padding: 4px;
    border-radius: 14px;
    border: 1px solid rgba(219, 228, 239, 0.98);
    background: rgba(244, 247, 251, 0.88);
}

.auth-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-tab:hover {
    color: var(--text);
}

.auth-tab.is-active {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 2px 10px rgba(16, 35, 63, 0.06);
}

.auth-form-core {
    gap: 18px;
}

.auth-card-clean .auth-form-grid {
    gap: 15px;
}

.auth-card-clean .form-label {
    font-size: 13px;
    font-weight: 800;
    color: #314862;
}

.auth-card-clean .auth-input-shell {
    min-height: 56px;
    padding: 0 16px;
    gap: 12px;
    border-radius: 14px;
    border-color: #d7e1eb;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.auth-card-clean .auth-input-shell:hover {
    background: #fff;
    border-color: #c6d5e4;
}

.auth-card-clean .auth-input-shell:focus-within {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.68);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.09);
    transform: none;
}

.auth-card-clean .auth-input-shell:focus-within::after {
    border-color: transparent;
}

.auth-card-clean .auth-input {
    font-size: 15px;
    font-weight: 600;
}

.auth-card-clean .auth-input::placeholder {
    font-weight: 500;
}

.auth-card-clean .auth-field-help,
.auth-card-clean .auth-sms-message {
    font-size: 12px;
}

.auth-card-clean .auth-inline-row {
    flex-direction: column;
    gap: 10px;
}

.auth-card-clean .auth-inline-button {
    width: 100%;
    flex: 0 0 auto;
    min-height: 48px;
}

.auth-card-clean .auth-inline-button.btn-secondary {
    background: #f7fbff;
    border-color: #d7e1eb;
}

.auth-card-clean .auth-mini-note {
    padding: 13px 14px;
    border-radius: 14px;
    background: #f7fbff;
    border-color: #dce8f4;
    font-size: 12px;
    line-height: 1.7;
}

.auth-card-clean .auth-submit-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2px;
}

.auth-card-clean .auth-submit-row .btn {
    min-height: 50px;
    font-size: 15px;
}

.auth-switch-row-clean {
    justify-content: center;
    gap: 10px 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(219, 228, 239, 0.98);
    font-size: 13px;
}

.auth-switch-row-clean a {
    font-weight: 700;
}

.aside-title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 900;
}

.aside-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.aside-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.aside-list li + li {
    margin-top: 12px;
}

.aside-list-grid li + li {
    margin-top: 0;
}

.aside-link {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.aside-link-grid {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.aside-link:hover {
    background: var(--primary-bg-soft);
    transform: translateX(2px);
}

.aside-link.is-active {
    background: var(--primary-bg-soft-strong);
    color: var(--accent);
}

.aside-link small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-color: rgba(37, 99, 235, 0.14);
}

.support-panel {
    position: sticky;
    top: 92px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(96, 115, 143, 0.2);
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--gradient);
    font-size: 18px;
}

.contact-text b {
    display: block;
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
}

.contact-text span,
.contact-text a {
    display: block;
    margin-top: 2px;
    font-size: 15px;
    font-weight: 900;
    color: var(--text);
}

.qr-box {
    margin-top: 18px;
    display: grid;
    place-items: center;
    gap: 10px;
}

.qr-box img {
    width: 128px;
    height: 128px;
    border-radius: 18px;
    border: 1px solid var(--border);
    object-fit: cover;
    background: #fff;
}

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

.apply-section-title {
    margin-bottom: 14px;
}

.apply-layout-grid .form-shell-card {
    padding: 44px 48px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.apply-hero-title {
    text-align: center;
}

.apply-member-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.apply-layout-grid .apply-member-bar {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8fafc;
    border-color: rgba(148, 163, 184, 0.18);
}

.apply-member-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.apply-member-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.apply-member-meta strong {
    font-size: 16px;
    line-height: 1.2;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}

.apply-layout-grid .hero-card-grid {
    gap: 24px;
}

.apply-layout-grid .form-label {
    margin-bottom: 2px;
    color: #475569;
    font-weight: 700;
}

.apply-layout-grid .form-field.is-required .form-label::after,
.apply-layout-grid .section-required::after {
    content: '*';
    display: inline-block;
    margin-left: 4px;
    color: #dc2626;
    font-weight: 800;
}

.apply-layout-grid .input,
.apply-layout-grid .select,
.apply-layout-grid .textarea,
.apply-layout-grid .file-input {
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.apply-layout-grid .textarea {
    min-height: 128px;
}

.apply-layout-grid .input:focus,
.apply-layout-grid .select:focus,
.apply-layout-grid .textarea:focus,
.apply-layout-grid .file-input:focus {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.36);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.file-input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font-size: 13px;
    padding: 10px 12px;
}

.apply-layout-grid .file-input {
    min-height: auto;
    padding: 14px 16px;
    border-style: dashed;
    border-color: #94a3b8;
    color: #64748b;
    cursor: pointer;
}

.apply-dynamic-section {
    padding-top: 6px;
}

.apply-layout-grid .apply-dynamic-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.apply-dynamic-section .section-header {
    margin-bottom: 10px;
}

.apply-layout-grid .apply-dynamic-section .section-header {
    margin-bottom: 16px;
}

.apply-layout-grid .section-title {
    font-size: 20px;
}

.apply-dynamic-section .alert {
    margin-bottom: 6px;
}

.is-hidden {
    display: none !important;
}

.apply-code-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.apply-layout-grid .apply-code-row {
    gap: 12px;
    flex-wrap: nowrap;
}

.apply-layout-grid .apply-code-row .input {
    flex: 1;
    min-width: 0;
}

.apply-code-button {
    width: auto;
    min-width: 120px;
}

.apply-layout-grid .apply-code-button {
    min-width: 132px;
}

.apply-stepper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.apply-step-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #f8fafc;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
    text-align: left;
}

.apply-step-tab.is-active {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.28);
    color: #0f172a;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
}

.apply-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #e2e8f0;
    color: #1e293b;
    font-size: 13px;
    font-weight: 900;
    flex: 0 0 auto;
}

.apply-step-tab.is-active .apply-step-index {
    background: #2563eb;
    color: #fff;
}

.apply-step-panel {
    display: block;
}

#applyForm:not([data-step-ui-ready="1"]) .apply-stepper,
#applyForm:not([data-step-ui-ready="1"]) .apply-step-actions {
    display: none;
}

#applyForm[data-step-ui-ready="1"] .apply-step-panel {
    display: none;
}

#applyForm[data-step-ui-ready="1"] .apply-step-panel.is-active {
    display: block;
}

.apply-layout-grid .apply-step-panel > .apply-dynamic-section:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.apply-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.apply-consent-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.16);
    background: rgba(37, 99, 235, 0.05);
    color: #334155;
    line-height: 1.75;
}

.apply-consent-box a {
    color: #1d4ed8;
    font-weight: 700;
}

.apply-consent-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex: 0 0 auto;
}

.apply-actions {
    margin-top: 16px;
}

.apply-layout-grid .apply-actions {
    margin-top: 44px;
    justify-content: center;
    gap: 16px;
}

.apply-layout-grid .apply-actions > a,
.apply-layout-grid .apply-actions > button {
    display: inline-flex;
}

.apply-layout-grid .apply-actions .btn-primary {
    min-height: 54px;
    padding: 0 48px;
    border-radius: 999px;
    font-size: 16px;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.apply-layout-grid .apply-actions .btn-secondary {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
}

.apply-layout-grid .apply-step-actions .btn-primary,
.apply-layout-grid .apply-step-actions .btn-secondary {
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
}

.payment-method-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    flex: 0 0 46px;
}

.payment-method-logo {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.payment-method-logo-wechat {
    width: 22px;
    height: 22px;
}

.payment-method-logo-alipay {
    width: 24px;
    height: 24px;
}

.payment-method-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.payment-method-copy strong {
    margin: 0;
}

.payment-method-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    background: #eef2f7;
}

.apply-file-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 12px;
    background: #ffffff;
}

.apply-file-preview-image {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    border: 1px solid rgba(203, 213, 225, 0.9);
    object-fit: cover;
    background: #f8fafc;
    flex: 0 0 72px;
}

.apply-file-preview-name {
    min-width: 0;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    word-break: break-all;
}

.apply-sms-help {
    margin-top: 12px;
}

.panel-note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.member-menu-card {
    position: sticky;
    top: 92px;
}

.member-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-menu-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: #f8fbff;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.member-menu-link:hover,
.member-menu-link.is-active {
    color: var(--primary-deep);
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.14);
    transform: translateY(-1px);
}

.payment-main-card,
.payment-order-card,
.result-main-card {
    padding: 24px;
}

.payment-qr-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.payment-qr-stage #paymentQrCode {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 308px);
    min-height: 308px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.payment-qr-stage #paymentQrCode img,
.payment-qr-stage #paymentQrCode canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

.payment-status-note {
    margin-top: 18px;
}

.payment-status-meta {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--muted);
}

.payment-status-actions {
    align-items: center;
}

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

.feature-card {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.feature-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}

.callout {
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.12));
    border: 1px solid var(--primary-border-soft);
}

.callout h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.callout p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 13px;
}

.warning-card {
    border-radius: 22px;
    background: var(--warning-gradient);
    border: 1px solid var(--warning-border);
}

.warning-card-body {
    padding: 22px;
}

.warning-card-title {
    margin: 0 0 10px;
    color: var(--warning-text);
    font-size: 18px;
    font-weight: 900;
}

.warning-card p {
    margin: 0 0 14px;
    color: var(--warning-muted);
    font-size: 13px;
}

.warning-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.warning-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--warning-link-border);
    color: var(--warning-link-text);
    font-size: 12px;
    font-weight: 800;
}

.article-hero {
    padding: 22px 0 72px;
    background: var(--gradient-dark);
    color: #fff;
}

.article-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 18px;
    align-items: start;
}

.article-hero-detail {
    padding-bottom: 44px;
}

.article-hero-shell-compact {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.74);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
}

.article-hero-copy {
    max-width: 760px;
}

.article-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
}

.article-hero-heading {
    margin: 14px 0 8px;
    font-size: clamp(24px, 3.6vw, 34px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.article-hero-text {
    margin: 0;
    max-width: 620px;
    font-size: 14px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

.article-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.article-hero-actions a {
    display: inline-flex;
}

.article-hero-actions .btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.article-route-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.18);
    backdrop-filter: blur(14px);
}

.article-route-head {
    display: grid;
    gap: 0;
}

.article-route-card-compact {
    gap: 14px;
}

.article-route-title {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

.article-route-list {
    display: grid;
    gap: 8px;
}

.article-route-link {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.article-route-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.22);
}

.article-route-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12));
}

.article-route-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.article-route-copy strong {
    font-size: 13px;
    font-weight: 900;
    color: #fff;
}

.article-route-copy span {
    font-size: 11px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.8);
}

.article-route-footer {
    display: none;
}

.article-layout {
    position: relative;
    z-index: 2;
    margin-top: -28px;
}

@media (min-width: 900px) {
    .article-hero-shell-compact .article-route-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .article-hero-shell-compact .article-route-link {
        align-items: flex-start;
    }
}

.article-main {
    padding: 22px;
}

.article-header-card {
    margin-bottom: 20px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    box-shadow: var(--shadow-sm);
}

.article-header-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.article-entry-title {
    margin: 16px 0 12px;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    color: var(--text);
}

.article-entry-summary {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: var(--muted);
}

.article-cover {
    margin: 0 0 20px;
    padding: 14px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(6, 182, 212, 0.09));
    box-shadow: var(--shadow-sm);
}

.article-cover img {
    display: block;
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
    max-height: 360px;
    object-fit: cover;
    border-radius: 18px;
}

.article-main img {
    border-radius: 16px;
}

.prose {
    color: #1b2f4a;
    font-size: 15px;
    overflow-wrap: anywhere;
}

.prose > :first-child {
    margin-top: 0;
}

.prose > :last-child {
    margin-bottom: 0;
}

.prose a {
    color: var(--primary-deep);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
    color: var(--text);
    line-height: 1.34;
    margin: 1.4em 0 0.7em;
}

.prose p,
.prose li {
    margin: 0 0 1em;
    line-height: 1.75;
}

.prose img {
    display: block;
    margin: 1.2em auto;
    max-width: min(100%, 88%);
    box-shadow: var(--shadow-sm);
}

.prose blockquote {
    margin: 1.2em 0;
    padding: 14px 18px;
    border-left: 4px solid var(--primary);
    background: #f7faff;
    color: var(--muted);
    border-radius: 0 14px 14px 0;
}

.prose table {
    width: 100%;
    margin: 1.2em 0;
    display: block;
    max-width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    background: #fff;
}

.prose th,
.prose td {
    padding: 10px 12px;
    border: 1px solid var(--border);
}

.prose .lead-paragraph {
    margin: 0 0 1.15em;
    color: #16314f;
    font-size: 18px;
    line-height: 1.9;
    font-weight: 700;
}

.prose .content-callout {
    margin: 1.3em 0;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #d8e2ef;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.prose .content-callout p {
    margin: 0 0 0.85em;
}

.prose .content-callout p:last-child {
    margin-bottom: 0;
}

.prose .content-callout-info {
    background: linear-gradient(135deg, #f6fbff 0%, #eef6ff 100%);
    border-color: #c8dbfb;
    color: #234464;
}

.prose .content-callout-warning {
    background: linear-gradient(135deg, #fff8ef 0%, #fff0da 100%);
    border-color: #efcf99;
    color: #7a4d10;
}

.prose .content-checklist {
    margin: 1.2em 0;
    padding: 0;
    list-style: none;
}

.prose .content-checklist li {
    position: relative;
    margin: 0 0 0.9em;
    padding-left: 1.7em;
    list-style: none;
}

.prose .content-checklist li:last-child {
    margin-bottom: 0;
}

.prose .content-checklist li::before {
    content: "\2713";
    position: absolute;
    top: 0.05em;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
}

.pager span,
.pager a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-weight: 700;
    font-size: 13px;
}

.comment-actions {
    margin-bottom: 18px;
}

.site-footer {
    margin-top: 24px;
    padding: 24px 0 92px;
    background: #0b1220;
    color: rgba(255, 255, 255, 0.85);
}

.footer-simple {
    display: grid;
    gap: 12px;
}

.footer-simple-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-simple-brand {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
}

.footer-simple-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.footer-simple-links a,
.footer-simple-meta {
    color: rgba(255, 255, 255, 0.72);
}

.footer-simple-links a {
    font-size: 13px;
    font-weight: 700;
}

.footer-simple-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 12px;
}

.footer-simple-record {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-simple-record a {
    color: inherit;
    font-weight: 700;
}

.floating-service {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 92;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.18);
}

button.floating-btn {
    border: 0;
    cursor: pointer;
}

.floating-btn.phone {
    background: var(--gradient);
}

.floating-btn.wechat {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.floating-qr {
    position: absolute;
    right: 70px;
    bottom: 0;
    width: 186px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-service:hover .floating-qr,
.floating-service.is-open .floating-qr {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-qr img {
    display: block;
    width: min(100%, 160px);
    margin: 0 auto;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.floating-qr strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.floating-qr span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 110px;
    z-index: 91;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(11, 18, 32, 0.92);
    color: #fff;
    box-shadow: 0 18px 38px rgba(11, 18, 32, 0.24);
}

.js-ready .back-top {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.js-ready .back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pending-footer {
    text-align: left;
}

.empty-panel {
    padding: 38px 22px;
    text-align: center;
}

.empty-state-title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.alert {
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 700;
}

.alert p {
    margin: 6px 0 0;
    font-weight: 500;
}

.alert-success {
    color: #0b6b39;
    background: #edfdf3;
    border-color: #b7ebc6;
}

.alert-error {
    color: #962d21;
    background: #fff3f2;
    border-color: #f4c8c2;
}

.alert-warning {
    color: #8f2f18;
    background: #fff7ed;
    border-color: #f7caa3;
}

.alert-info {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #bfdbfe;
}

.faq-collapse {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: transparent;
}

.faq-item {
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    list-style: none;
    padding: 18px 18px 10px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 900;
    cursor: pointer;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
    font-size: 13px;
}

@media (min-width: 1080px) {
    .callout p,
    .warning-card p,
    .warning-links,
    .faq-answer {
        max-width: 860px;
    }
}

.mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 91;
    display: none;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(11, 18, 32, 0.92);
    box-shadow: 0 18px 38px rgba(11, 18, 32, 0.28);
    backdrop-filter: blur(12px);
}

.mobile-cta a {
    flex: 1;
}

.mobile-cta .btn {
    min-height: 40px;
    width: 100%;
}

@media (max-width: 1100px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-nav {
        display: none;
    }

    .brand-sub {
        display: none;
    }

    .content-grid-single,
    .member-layout-grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }

    .auth-shell {
        grid-template-columns: 1fr;
    }

    .footer-simple-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .member-menu-card,
    .support-panel {
        position: static;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .service-grid,
    .article-grid,
    .entry-grid,
    .feature-grid,
    .hero-card-grid {
        grid-template-columns: 1fr;
    }

    .home-solution-grid,
    .home-route-grid {
        grid-template-columns: 1fr;
    }

    .glass-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .member-menu-card {
        padding: 14px;
    }

    .member-menu-card .aside-title {
        display: none;
    }

    .member-menu-links {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .member-menu-links::-webkit-scrollbar {
        display: none;
    }

    .auth-inline-row {
        flex-direction: column;
    }

    .auth-inline-button {
        width: 100%;
        flex-basis: auto;
        min-height: 52px;
    }

    .member-menu-link {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .member-layout-grid .hero-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .member-layout-grid .hero-card-grid > .entry-card {
        padding: 14px 12px;
    }

    .member-layout-grid .hero-card-grid > .entry-card strong {
        font-size: 14px;
    }

    .member-layout-grid .entry-card .hero-card-grid > div {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: #f8fbff;
    }

    .member-layout-grid .entry-card .hero-card-grid > div strong {
        margin: 0;
        font-size: 12px;
        color: var(--muted);
    }

    .member-layout-grid .entry-card .hero-card-grid > div p {
        font-size: 13px;
        color: var(--text);
    }
}

@media (max-width: 820px) {
    .site-header-inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-nav {
        display: none;
    }

    .brand-sub {
        display: none;
    }

    .hero {
        padding: 40px 0 72px;
    }

    .home-hub-hero {
        padding: 34px 0 72px;
    }

    .home-hub-shell {
        grid-template-columns: 1fr;
    }

    .main-wrap,
    .article-layout {
        margin-top: -20px;
    }

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

@media (max-width: 640px) {
    .site-container {
        width: calc(100% - 24px);
    }

    .main-wrap,
    .article-layout {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .article-hero {
        padding: 18px 0 24px;
    }

    .article-hero-detail {
        padding: 14px 0 18px;
    }

    .article-hero-detail .breadcrumb {
        gap: 6px;
        margin-bottom: 8px;
        font-size: 11px;
    }

    .article-header-card {
        padding: 18px;
        border-radius: 20px;
    }

    .article-main {
        padding: 18px;
    }

    .article-hero-heading,
    .article-entry-title {
        font-size: 22px;
    }

    .article-hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-hero-actions a {
        width: 100%;
    }

    .article-hero-actions .btn {
        width: 100%;
    }

    .article-route-card {
        gap: 8px;
        padding: 14px;
    }

    .article-route-card-top {
        display: grid;
    }

    .article-route-head {
        gap: 8px;
    }

    .article-route-card-compact {
        gap: 10px;
        padding: 12px;
        border-radius: 18px;
    }

    .article-route-card-compact .article-hero-kicker {
        min-height: 30px;
        padding: 0 10px;
        font-size: 11px;
    }

    .article-route-title {
        font-size: 13px;
    }

    .article-route-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .article-route-link {
        grid-template-columns: 1fr;
        justify-items: center;
        align-content: flex-start;
        gap: 6px;
        padding: 10px 6px;
        text-align: center;
        border-radius: 14px;
    }

    .article-route-icon {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .article-route-copy {
        align-items: center;
        gap: 0;
    }

    .article-route-copy strong {
        font-size: 12px;
        line-height: 1.35;
    }

    .article-route-copy span {
        display: none;
    }

    .article-route-footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
        padding-top: 16px;
        border-top: 1px dashed var(--border);
    }

    .article-route-footer-label {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 10px;
        border-radius: 999px;
        background: var(--card-alt);
        color: var(--muted);
        font-size: 11px;
        font-weight: 800;
    }

    .article-route-footer-list {
        display: flex;
        flex: 1 1 0;
        flex-wrap: wrap;
        gap: 8px;
    }

    .article-route-footer-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        border: 1px solid var(--border);
        background: #fff;
        color: var(--text);
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
    }

    .article-route-footer-link:hover {
        border-color: var(--primary-border-medium);
        color: var(--primary-deep);
    }

    .hero {
        padding: 24px 0 44px;
    }

    .home-hub-hero {
        padding: 18px 0 32px;
    }

    .home-hub-shell {
        gap: 14px;
    }

    .home-hub-badge {
        gap: 6px;
        padding: 7px 11px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 26px;
    }

    .home-hub-title {
        margin: 12px 0 10px;
        font-size: 26px;
        line-height: 1.1;
    }

    .hero-subtitle {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .home-hub-subtitle {
        font-size: 14px;
        line-height: 1.7;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-tags {
        gap: 8px;
        margin-bottom: 18px;
    }

    .home-hub-tag-row {
        display: none;
    }

    .hero-actions {
        gap: 10px;
    }

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

    .hero .hero-actions a {
        flex: 1 1 calc(50% - 5px);
        width: auto;
    }

    .home-hub-action-row a,
    .home-hub-contact-actions a {
        width: 100%;
    }

    .home-hub-action-row a:first-child {
        grid-column: 1 / -1;
    }

    .home-hub-action-row .btn,
    .home-hub-contact-actions .btn {
        width: 100%;
    }

    .hero .hero-actions .btn {
        width: 100%;
    }

    .home-hub-contact-card {
        padding: 16px;
        border-radius: 20px;
    }

    .home-hub-card-title {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .home-hub-contact-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-hub-contact-row {
        gap: 10px;
        padding: 10px 12px;
        min-width: 0;
    }

    .home-hub-contact-copy strong {
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .home-hub-stat-strip {
        display: none;
    }

    .home-hub-contact-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 12px;
    }

    .card-actions a {
        width: 100%;
    }

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

    .auth-form-card-refined::before {
        left: 22px;
        right: 22px;
    }

    .auth-focus-layout {
        align-items: flex-start;
        padding: 32px 0 48px;
    }

    .auth-card-clean {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .auth-card-clean::before {
        left: 20px;
        right: 20px;
    }

    .auth-form-grid,
    .auth-metric-grid {
        grid-template-columns: 1fr;
    }

    .auth-submit-row {
        grid-template-columns: 1fr;
    }

    .auth-form-title {
        font-size: 24px;
    }

    .auth-title {
        font-size: 24px;
    }

    .auth-input-shell {
        min-height: 60px;
        padding: 0 18px;
    }

    .input,
    .select,
    .textarea,
    .file-input,
    .auth-input {
        font-size: 16px;
    }

    .article-title {
        font-size: 17px;
    }

    .section {
        margin-bottom: 18px;
    }

    .stack {
        gap: 14px;
    }

    .hero-grid {
        gap: 16px;
    }

    .home-hub-quick-link {
        grid-template-columns: auto 1fr;
    }

    .home-hub-quick-arrow {
        display: none;
    }

    .home-solution-card,
    .home-route-card,
    .home-support-card {
        padding: 18px;
    }

    .article-cover {
        padding: 10px;
        border-radius: 18px;
    }

    .article-cover img,
    .prose img {
        max-width: 100%;
    }

    .article-list-item,
    .callout,
    .warning-card {
        padding: 16px;
    }

    .service-card {
        min-height: 0;
    }

    .site-footer {
        padding-bottom: 86px;
    }

    .footer-simple-links,
    .footer-simple-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-simple-links a {
        width: 100%;
        padding: 6px 0;
    }

    .member-layout-grid .entry-card .section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .member-layout-grid .entry-card .section-header > a,
    .member-layout-grid .entry-card .section-header .btn {
        width: 100%;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .article-summary-box {
        padding: 12px 14px;
        border-radius: 16px;
    }

    .aside-list li + li {
        margin-top: 10px;
    }

    .aside-list-grid {
        gap: 8px;
    }

    .floating-service {
        display: none;
    }

    .back-top {
        right: 16px;
        bottom: calc(86px + env(safe-area-inset-bottom));
    }

    .mobile-cta {
        display: flex;
        bottom: calc(12px + env(safe-area-inset-bottom));
    }

    .apply-code-row {
        flex-direction: column;
    }

    .apply-code-button {
        width: 100%;
        min-width: 0;
    }

    .apply-member-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .apply-layout-grid .form-shell-card {
        padding: 26px 22px;
    }

    .apply-layout-grid .apply-member-bar {
        padding: 14px 16px;
    }

    .apply-stepper {
        grid-template-columns: 1fr;
    }

    .apply-step-tab {
        width: 100%;
    }

    .apply-layout-grid .apply-code-row {
        flex-direction: column;
        gap: 10px;
    }

    .apply-layout-grid .apply-code-button {
        width: 100%;
        min-width: 0;
    }

    .apply-step-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .apply-step-actions > .btn,
    .apply-step-actions > span {
        width: 100%;
    }

    .apply-step-actions > span {
        display: none;
    }

    .apply-layout-grid .apply-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .apply-layout-grid .apply-actions > a,
    .apply-layout-grid .apply-actions > button {
        width: 100%;
    }

    .apply-layout-grid .apply-actions .btn-primary,
    .apply-layout-grid .apply-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .pager {
        flex-direction: column;
        align-items: stretch;
    }

    .pager span,
    .pager a {
        width: 100%;
    }

    .contact-item {
        align-items: flex-start;
    }

    .qr-box img {
        width: 116px;
        height: 116px;
    }

    .payment-qr-stage #paymentQrCode {
        min-width: 0;
        min-height: 0;
        width: min(100%, 280px);
    }

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

.legacy-notice,
.empty-body-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.035);
    border: 1px dashed rgba(37, 99, 235, 0.18);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.legacy-notice .icon,
.empty-body-notice .icon {
    margin-top: 1px;
    color: var(--primary);
    font-size: 14px;
}

.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed var(--border);
}

.article-nav-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--card-alt);
    border: 1px solid var(--border);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

a.article-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(37, 99, 235, 0.22);
}

.article-nav-item.next {
    text-align: right;
    align-items: flex-end;
}

.article-nav-item .nav-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.article-nav-item .nav-link-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-nav-item .nav-link-title.disabled {
    color: var(--muted);
    font-weight: 400;
}

@media (max-width: 640px) {
    .article-nav {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .article-nav-item.next {
        text-align: left;
        align-items: flex-start;
    }
}
