/* ouyigai9 — Plum #6B21A8 + Peach #FB923C · diagonal hero matrix */
:root {
    --p-plum: #6b21a8;
    --p-plum-dark: #581c87;
    --p-plum-light: #9333ea;
    --p-peach: #fb923c;
    --p-peach-dark: #ea580c;
    --p-bg: #faf5ff;
    --p-bg-alt: #f3e8ff;
    --p-surface: #ffffff;
    --p-text: #1e1b4b;
    --p-muted: #6b7280;
    --p-border: rgba(107, 33, 168, 0.18);
    --p-container: 1200px;
    --p-nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: var(--p-text);
    background: var(--p-bg);
    overflow-x: hidden;
    padding-top: 0;
}

a { color: var(--p-plum); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--p-peach-dark); }

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

.zd2483container {
    max-width: var(--p-container);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 24px);
    width: 100%;
}

/* Header */
.zd2483site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--p-border);
    box-shadow: 0 2px 16px rgba(107, 33, 168, 0.06);
}

.zd2483header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: var(--p-nav-h);
    max-width: var(--p-container);
    margin: 0 auto;
    padding: 10px clamp(16px, 3vw, 24px);
}

.zd2483logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.zd2483logo i { font-size: 1.5rem; color: var(--p-plum); flex-shrink: 0; }

.zd2483logo-text h1 {
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 700;
    color: var(--p-plum);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zd2483logo-text p { font-size: 11px; color: var(--p-muted); }

.zd2483main-nav ul.zd2483nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 6px 14px;
    list-style: none;
}

.zd2483nav-item { position: relative; }

.zd2483nav-item a {
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 500;
    color: var(--p-text);
    padding: 6px 4px;
    white-space: nowrap;
}

.zd2483nav-item a:hover,
.zd2483nav-item.zd2483this > a { color: var(--p-plum); }

.zd2483nav-child {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 12px 32px rgba(107, 33, 168, 0.12);
    z-index: 1200;
}

.zd2483nav-item:hover .zd2483nav-child,
.zd2483nav-item:focus-within .zd2483nav-child { display: block; }

.zd2483nav-child dd { margin: 0; }
.zd2483nav-child dd a { display: block; padding: 8px 14px; font-size: 14px; }

.zd2483mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10120;
}

.zd2483mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--p-plum);
    margin: 5px 0;
    transition: transform 0.25s;
}

.zd2483nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 27, 75, 0.45);
    z-index: 10090;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s;
}

.zd2483nav-backdrop.is-open { display: block; opacity: 1; pointer-events: auto; }

@media (max-width: 768px) {
    .zd2483mobile-nav-toggle { display: block; }

    .zd2483main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(88vw, 320px);
        height: 100dvh;
        background: var(--p-surface);
        padding: 72px 20px 24px;
        transition: right 0.3s ease;
        z-index: 10100;
        overflow-x: hidden;
        overflow-y: auto;
        box-shadow: -6px 0 24px rgba(107, 33, 168, 0.15);
    }

    .zd2483main-nav.active { right: 0; }

    .zd2483main-nav ul.zd2483nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .zd2483nav-item a {
        display: block;
        padding: 14px 8px;
        font-size: 16px;
        border-bottom: 1px solid var(--p-border);
    }

    .zd2483nav-child {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        padding-left: 12px;
    }

    .zd2483mobile-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .zd2483mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
    .zd2483mobile-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    body.nav-open { overflow: hidden; touch-action: none; }
}

/* ===== Homepage (index) — matches index_article.htm class names ===== */

/* Hero diagonal */
.zd2483hero.zd2483hero--diagonal {
    position: relative;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    overflow: hidden;
    background: linear-gradient(135deg, var(--p-plum-dark) 0%, var(--p-plum) 45%, #7c3aed 100%);
    color: #fff;
}

.zd2483hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(251, 146, 60, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 146, 60, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: skewY(-6deg) scale(1.2);
    transform-origin: top left;
    pointer-events: none;
}

.zd2483hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 42%, rgba(251, 146, 60, 0.22) 42%, rgba(251, 146, 60, 0.22) 44%, transparent 44%);
}

.zd2483hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.zd2483hero-text h2 {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.zd2483hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    opacity: 0.92;
    margin-bottom: 0.75rem;
    max-width: 34rem;
}

.zd2483hero-lead,
.zd2483hero-excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.88;
    max-width: 34rem;
    margin-bottom: 0.65rem;
}

.zd2483hero-lead strong,
.zd2483hero-excerpt strong { color: #fde68a; font-weight: 600; }

.zd2483download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.zd2483hero .zd2483download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.15s, box-shadow 0.15s;
    color: inherit;
    text-decoration: none;
}

.zd2483hero .zd2483download-btn.zd2483android {
    background: var(--p-peach);
    color: var(--p-plum-dark);
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.35);
}

.zd2483hero .zd2483download-btn.zd2483android:hover { transform: translateY(-2px); color: var(--p-plum-dark); }

.zd2483hero .zd2483download-btn.zd2483ios {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.zd2483hero-image {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(251, 146, 60, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
}

.zd2483featured-image { width: 100%; height: auto; }

/* Features matrix */
.zd2483features.zd2483features--matrix {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--p-surface);
}

.zd2483mx-head { margin-bottom: 2rem; max-width: 40rem; }

.zd2483mx-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-peach-dark);
    margin-bottom: 0.5rem;
}

.zd2483mx-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.zd2483mx-lead {
    color: var(--p-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.65rem;
}

.zd2483mx-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--p-border);
    border: 2px solid var(--p-plum);
    border-radius: 16px;
    overflow: hidden;
}

.zd2483mx-cell {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--p-surface);
    text-align: center;
    min-width: 0;
}

.zd2483mx-ico {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--p-bg-alt);
    color: var(--p-plum);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.zd2483mx-cell h3 { font-size: 1.08rem; margin-bottom: 0.45rem; color: var(--p-text); }
.zd2483mx-cell p { font-size: 0.88rem; color: var(--p-muted); line-height: 1.55; margin-bottom: 0.5rem; }

/* Download section */
.zd2483download-section.zd2483download-section--bands {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--p-bg);
}

.zd2483download-container {
    max-width: var(--p-container);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 24px);
    width: 100%;
}

.zd2483download-header { margin-bottom: 2rem; max-width: 48rem; }

.zd2483download-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--p-plum);
    line-height: 1.2;
}

.zd2483download-subtitle,
.zd2483download-intro {
    color: var(--p-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.65rem;
}

.zd2483download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.zd2483download-card {
    padding: 1.5rem;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid var(--p-peach);
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zd2483download-card.zd2483android { border-top-color: #22c55e; }
.zd2483download-card.zd2483ios { border-top-color: var(--p-plum); }

.zd2483download-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--p-plum);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.zd2483download-card-title { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--p-text); }

.zd2483download-card-desc {
    font-size: 0.88rem;
    color: var(--p-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
    text-align: left;
}

.zd2483download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
}

.zd2483download-feature {
    font-size: 0.72rem;
    padding: 0.25rem 0.55rem;
    background: var(--p-bg-alt);
    border-radius: 999px;
    color: var(--p-plum);
    font-weight: 600;
}

.zd2483download-card .zd2483download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.88rem;
    background: var(--p-peach);
    color: var(--p-plum-dark);
    box-shadow: 0 4px 14px rgba(251, 146, 60, 0.3);
    transition: transform 0.15s;
    margin-top: auto;
    width: 100%;
    max-width: 220px;
}

.zd2483download-card .zd2483download-btn:hover {
    transform: translateY(-2px);
    color: var(--p-plum-dark);
}

.zd2483download-steps { margin-top: 1rem; }

.zd2483steps-title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--p-plum);
}

.zd2483steps-lead {
    text-align: center;
    font-size: 0.9rem;
    color: var(--p-muted);
    max-width: 40rem;
    margin: 0 auto 1.25rem;
    line-height: 1.65;
}

.zd2483steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.zd2483step-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--p-surface);
    border-radius: 12px;
    border: 1px solid var(--p-border);
    min-width: 0;
}

.zd2483step-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--p-plum);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.zd2483step-title { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--p-text); }
.zd2483step-desc { font-size: 0.82rem; color: var(--p-muted); line-height: 1.5; }

/* Guide triad */
.zd2483guide.zd2483guide--triad {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--p-surface);
}

.zd2483tr-head { margin-bottom: 2rem; max-width: 42rem; }

.zd2483tr-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-peach-dark);
    margin-bottom: 0.5rem;
}

.zd2483tr-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.zd2483tr-desc {
    color: var(--p-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.65rem;
}

.zd2483tr-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    border: 1px solid var(--p-border);
    border-radius: 16px;
    overflow: hidden;
    align-items: stretch;
}

.zd2483tr-step {
    padding: 1.5rem;
    text-align: center;
    background: var(--p-surface);
    min-width: 0;
}

.zd2483tr-vrule {
    width: 1px;
    background: var(--p-border);
    align-self: stretch;
}

.zd2483tr-badge {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--p-plum);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}

.zd2483tr-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.zd2483tr-step p { font-size: 0.86rem; color: var(--p-muted); line-height: 1.55; margin-bottom: 0.5rem; }

.zd2483tr-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.zd2483tr-tags span {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    background: var(--p-bg-alt);
    border-radius: 6px;
    color: var(--p-plum);
}

/* Security quadrant */
.zd2483security.zd2483security--quadrant {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: linear-gradient(160deg, var(--p-plum-dark), var(--p-plum));
    color: #fff;
}

.zd2483sq-head { margin-bottom: 2rem; max-width: 42rem; }

.zd2483sq-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-peach);
    margin-bottom: 0.5rem;
}

.zd2483sq-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.zd2483sq-lead {
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.88;
    margin-bottom: 0.65rem;
}

.zd2483sq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.zd2483sq-cell {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    min-width: 0;
}

.zd2483sq-ico {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(251, 146, 60, 0.2);
    color: var(--p-peach);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.zd2483sq-cell h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.zd2483sq-cell p { font-size: 0.86rem; opacity: 0.85; line-height: 1.55; margin-bottom: 0.5rem; }

.zd2483sq-mini {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.zd2483sq-mini li {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* About split */
.zd2483about.zd2483about--split {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--p-bg);
}

.zd2483about-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.zd2483about-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-peach-dark);
    margin-bottom: 0.5rem;
}

.zd2483about-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.zd2483about-narrative p {
    color: var(--p-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.zd2483about-note { font-size: 0.88rem; }

.zd2483about-aside { display: flex; flex-direction: column; gap: 10px; }

.zd2483about-chip {
    padding: 14px 16px;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-left: 4px solid var(--p-peach);
    border-radius: 10px;
}

.zd2483about-chip strong { display: block; color: var(--p-plum); margin-bottom: 4px; }
.zd2483about-chip span { font-size: 0.85rem; color: var(--p-muted); line-height: 1.55; }

/* Articles magazine */
.zd2483home-articles.zd2483home-articles--magazine {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--p-surface);
}

.zd2483mag-head {
    display: flex;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.zd2483mag-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-peach-dark);
    margin-bottom: 0.5rem;
}

.zd2483mag-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.zd2483mag-desc {
    color: var(--p-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
    max-width: 42rem;
}

.zd2483mag-rule {
    flex: 1;
    min-width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--p-peach), transparent);
    margin-bottom: 0.5rem;
}

.zd2483home-articles-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.zd2483home-article-card {
    background: var(--p-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--p-border);
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 0;
}

.zd2483home-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(107, 33, 168, 0.12);
}

.zd2483home-article-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--p-bg-alt);
}

.zd2483home-article-thumb img { width: 100%; height: 100%; object-fit: cover; }

.zd2483home-article-text { padding: 10px 12px 14px; }

.zd2483home-article-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--p-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zd2483home-article-meta {
    font-size: 0.72rem;
    color: var(--p-muted);
    margin-top: 4px;
    display: block;
}

.zd2483footer-content { /* wrapper */ }

/* Hero diagonal matrix (legacy plum-* — inner pages may still reference) */
.zd2483plum-hero {
    position: relative;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--p-plum-dark) 0%, var(--p-plum) 45%, #7c3aed 100%);
    color: #fff;
}

.zd2483plum-hero-matrix {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(251, 146, 60, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 146, 60, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: skewY(-6deg) scale(1.2);
    transform-origin: top left;
    pointer-events: none;
}

.zd2483plum-hero-diagonal {
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 42%, rgba(251, 146, 60, 0.22) 42%, rgba(251, 146, 60, 0.22) 44%, transparent 44%);
    pointer-events: none;
}

.zd2483plum-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.zd2483plum-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--p-peach);
    margin-bottom: 0.75rem;
}

.zd2483plum-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.zd2483plum-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    opacity: 0.92;
    margin-bottom: 0.75rem;
    max-width: 34rem;
}

.zd2483plum-lead,
.zd2483plum-excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.88;
    max-width: 34rem;
    margin-bottom: 0.65rem;
}

.zd2483plum-lead strong,
.zd2483plum-excerpt strong { color: #fde68a; font-weight: 600; }

.zd2483plum-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.zd2483plum-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.15s, box-shadow 0.15s;
}

.zd2483plum-btn--peach {
    background: var(--p-peach);
    color: var(--p-plum-dark);
    box-shadow: 0 6px 20px rgba(251, 146, 60, 0.35);
}

.zd2483plum-btn--peach:hover { transform: translateY(-2px); color: var(--p-plum-dark); }

.zd2483plum-btn--ghost {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.zd2483plum-btn--block { width: 100%; }

.zd2483plum-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(251, 146, 60, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    transform: rotate(2deg);
}

.zd2483plum-img { width: 100%; height: auto; }

/* Sections */
.zd2483plum-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.zd2483plum-section--alt { background: var(--p-surface); }
.zd2483plum-section--dark {
    background: linear-gradient(160deg, var(--p-plum-dark), var(--p-plum));
    color: #fff;
}

.zd2483plum-kicker {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--p-peach-dark);
    margin-bottom: 0.5rem;
}

.zd2483plum-section--dark .zd2483plum-kicker { color: var(--p-peach); }

.zd2483plum-sechead { margin-bottom: 2rem; max-width: 40rem; }
.zd2483plum-sechead--center { text-align: center; margin-left: auto; margin-right: auto; }
.zd2483plum-sechead--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    max-width: none;
}

.zd2483plum-sechead h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.zd2483plum-sechead p { color: var(--p-muted); font-size: 0.95rem; line-height: 1.65; }
.zd2483plum-section--dark .zd2483plum-sechead p { color: rgba(255, 255, 255, 0.78); }

.zd2483plum-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--p-border);
    border: 2px solid var(--p-plum);
    border-radius: 16px;
    overflow: hidden;
}

.zd2483plum-cell {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: var(--p-surface);
    text-align: center;
}

.zd2483plum-cell--accent {
    background: linear-gradient(135deg, var(--p-bg-alt), var(--p-surface));
}

.zd2483plum-ico {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--p-bg-alt);
    color: var(--p-plum);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.zd2483plum-cell h3 { font-size: 1.08rem; margin-bottom: 0.45rem; color: var(--p-text); }
.zd2483plum-cell p { font-size: 0.88rem; color: var(--p-muted); line-height: 1.55; }

.zd2483plum-dlgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.zd2483plum-dlcard {
    padding: 1.5rem;
    background: var(--p-bg);
    border: 1px solid var(--p-border);
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid var(--p-peach);
}

.zd2483plum-dlicon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--p-plum);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.zd2483plum-dlcard h3 { margin-bottom: 0.5rem; }
.zd2483plum-dlcard p { font-size: 0.9rem; color: var(--p-muted); margin-bottom: 1rem; }

.zd2483plum-steps h3 { text-align: center; font-size: 1.25rem; margin-bottom: 1.25rem; color: var(--p-plum); }

.zd2483plum-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.zd2483plum-step {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--p-bg);
    border-radius: 12px;
    border: 1px solid var(--p-border);
}

.zd2483plum-step > span {
    font-weight: 800;
    color: var(--p-peach-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.zd2483plum-step h4 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.zd2483plum-step p { font-size: 0.82rem; color: var(--p-muted); }

.zd2483plum-triad {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--p-border);
    border-radius: 16px;
    overflow: hidden;
}

.zd2483plum-triad-step {
    padding: 1.5rem;
    text-align: center;
    background: var(--p-surface);
    border-right: 1px solid var(--p-border);
}

.zd2483plum-triad-step:last-child { border-right: none; }

.zd2483plum-num {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--p-plum);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
}

.zd2483plum-triad-step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.zd2483plum-triad-step p { font-size: 0.86rem; color: var(--p-muted); }

.zd2483plum-sqgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.zd2483plum-sq {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.zd2483plum-sq i { font-size: 1.5rem; color: var(--p-peach); margin-bottom: 0.5rem; }
.zd2483plum-sq h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.zd2483plum-sq p { font-size: 0.86rem; opacity: 0.85; }

.zd2483plum-about {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.zd2483plum-about-text p { color: var(--p-muted); line-height: 1.7; margin-bottom: 0.75rem; }
.zd2483plum-note { font-size: 0.88rem; }

.zd2483plum-chips { display: flex; flex-direction: column; gap: 10px; }

.zd2483plum-chip {
    padding: 14px 16px;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-left: 4px solid var(--p-peach);
    border-radius: 10px;
}

.zd2483plum-chip strong { display: block; color: var(--p-plum); margin-bottom: 4px; }
.zd2483plum-chip span { font-size: 0.85rem; color: var(--p-muted); }

.zd2483plum-newsgrid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.zd2483plum-newscard {
    background: var(--p-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--p-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.zd2483plum-newscard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(107, 33, 168, 0.12);
}

.zd2483plum-newsthumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--p-bg-alt);
}

.zd2483plum-newsthumb img { width: 100%; height: 100%; object-fit: cover; }

.zd2483plum-newstext { padding: 10px 12px 14px; }

.zd2483plum-newstitle {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--p-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zd2483plum-newsmeta { font-size: 0.72rem; color: var(--p-muted); margin-top: 4px; display: block; }

/* Footer */
.zd2483site-footer {
    background: linear-gradient(160deg, #1e1b4b, var(--p-plum-dark));
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
}

.zd2483footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.zd2483footer-brand .zd2483logo i { color: var(--p-peach); }
.zd2483footer-brand h2 { color: #fff; font-size: 1.35rem; margin-bottom: 0.35rem; }

.zd2483footer-kw {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
}

.zd2483footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.zd2483link-group h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--p-peach);
}

.zd2483link-group ul { list-style: none; }
.zd2483link-group li { margin-bottom: 8px; }
.zd2483link-group a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.zd2483link-group a:hover { color: var(--p-peach); }

.zd2483footer-friends {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
}

.zd2483friends-section h3 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.zd2483friends-section ul { display: flex; flex-wrap: wrap; gap: 8px 14px; list-style: none; }
.zd2483friends-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.zd2483footer-legal p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 4px; }
.zd2483footer-legal a { color: var(--p-peach); }

/* Inner pages */
.zd2483inner { padding-top: 0; }

.zd2483inner-hero {
    padding: calc(var(--p-nav-h) + 1rem) 0 1.5rem;
    background: linear-gradient(135deg, var(--p-bg-alt), var(--p-surface));
    border-bottom: 1px solid var(--p-border);
}

.zd2483breadcrumb { font-size: 14px; color: var(--p-muted); margin-bottom: 10px; }
.zd2483breadcrumb a { color: var(--p-plum); }
.zd2483breadcrumb-sep { margin: 0 6px; opacity: 0.5; }

.zd2483inner-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--p-plum);
    line-height: 1.3;
    margin-bottom: 8px;
}

.zd2483inner-desc,
.zd2483inner-meta { font-size: 14px; color: var(--p-muted); display: flex; flex-wrap: wrap; gap: 14px; }

.zd2483inner-kw-strip {
    margin-top: 14px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--p-muted);
    background: rgba(107, 33, 168, 0.06);
    border-radius: 10px;
    border-left: 4px solid var(--p-peach);
}

.zd2483layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
    gap: 28px;
    padding: 28px clamp(16px, 3vw, 24px) 48px;
    max-width: var(--p-container);
    margin: 0 auto;
    align-items: start;
}

.zd2483main-column { min-width: 0; }

.zd2483list-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 12px 16px;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: 12px;
}

.zd2483list-toolbar-label { font-size: 13px; color: var(--p-muted); }
.zd2483list-toolbar-links { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.zd2483list-toolbar-links a { font-size: 14px; font-weight: 500; }

.zd2483article-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.zd2483article-list-item {
    display: grid;
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: 14px;
    align-items: start;
}

.zd2483article-list-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.zd2483article-list-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--p-text);
    display: block;
    margin-bottom: 6px;
}

.zd2483article-list-intro { font-size: 14px; color: var(--p-muted); margin-bottom: 8px; line-height: 1.55; }

.zd2483article-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: var(--p-muted);
}

.zd2483pagebar { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--p-border); }

.zd2483pagelist-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    list-style: none;
}

.zd2483pagelist-bar a,
.zd2483pagelist-bar span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--p-border);
    font-size: 14px;
    background: var(--p-surface);
    color: var(--p-text);
}

.zd2483pagelist-bar a:hover { border-color: var(--p-plum); color: var(--p-plum); }

.zd2483sidebar { position: sticky; top: calc(var(--p-nav-h) + 12px); min-width: 0; }

.zd2483sidebar-block {
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: 14px;
    padding: 16px;
}

.zd2483sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--p-plum);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--p-peach);
}

.zd2483sidebar-list { list-style: none; }
.zd2483sidebar-list li + li { margin-top: 10px; }

.zd2483sidebar-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
    color: inherit;
}

.zd2483sidebar-thumb img {
    width: 72px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

.zd2483sidebar-row-title { font-size: 13px; line-height: 1.4; color: var(--p-text); }
.zd2483sidebar-row:hover .zd2483sidebar-row-title { color: var(--p-plum); }

.zd2483article-hero-thumb {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    background: var(--p-bg-alt);
}

.zd2483article-hero-thumb img { width: 100%; max-height: 420px; object-fit: cover; }

.zd2483article-body { font-size: 16px; line-height: 1.75; color: var(--p-text); word-break: break-word; }
.zd2483article-body img { max-width: 100%; border-radius: 10px; }

.zd2483article-figure { margin: 16px 0; }
.zd2483article-figure figcaption { font-size: 13px; color: var(--p-muted); margin-top: 6px; }

.zd2483diyfield {
    margin-top: 18px;
    padding: 14px;
    background: var(--p-bg);
    border-radius: 10px;
    font-size: 14px;
}

.zd2483meta-tags-wrap {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--p-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.zd2483meta-tags-label { font-size: 14px; color: var(--p-muted); }
.zd2483meta-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }

.zd2483tagitem a {
    display: inline-block;
    padding: 4px 12px;
    background: var(--p-bg-alt);
    border-radius: 999px;
    font-size: 13px;
    color: var(--p-plum);
}

.zd2483block { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--p-border); }
.zd2483block-title { font-size: 1.15rem; font-weight: 700; color: var(--p-plum); margin-bottom: 14px; }

.zd2483card-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.zd2483card-list-horiz .zd2483card-item {
    display: grid;
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
    background: var(--p-surface);
    border: 1px solid var(--p-border);
    border-radius: 12px;
}

.zd2483card-thumb img { width: 100%; height: 80px; object-fit: cover; border-radius: 8px; }
.zd2483card-title { font-weight: 600; font-size: 15px; color: var(--p-text); display: block; margin-bottom: 4px; }
.zd2483card-desc { font-size: 13px; color: var(--p-muted); margin: 0; }

.zd2483article-prenext {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    width: 100%;
}

.zd2483article-prenext-item { flex: 1 1 42%; min-width: 0; }
.zd2483article-prenext-item--next { text-align: right; }

/* Responsive */
@media (max-width: 992px) {
    .zd2483hero-content,
    .zd2483plum-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .zd2483hero-lead, .zd2483hero-excerpt, .zd2483hero-subtitle,
    .zd2483plum-lead, .zd2483plum-excerpt, .zd2483plum-sub { margin-left: auto; margin-right: auto; }
    .zd2483download-buttons,
    .zd2483plum-cta { justify-content: center; }
    .zd2483hero-image,
    .zd2483plum-frame { transform: none; max-width: 420px; margin: 0 auto; }
    .zd2483mx-grid,
    .zd2483plum-matrix { grid-template-columns: 1fr; }
    .zd2483download-grid,
    .zd2483plum-dlgrid { grid-template-columns: 1fr; }
    .zd2483steps-grid,
    .zd2483plum-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zd2483tr-row { grid-template-columns: 1fr; }
    .zd2483tr-vrule { display: none; }
    .zd2483tr-step { border-bottom: 1px solid var(--p-border); }
    .zd2483tr-step:last-child { border-bottom: none; }
    .zd2483plum-triad { grid-template-columns: 1fr; }
    .zd2483plum-triad-step { border-right: none; border-bottom: 1px solid var(--p-border); }
    .zd2483about-split,
    .zd2483plum-about { grid-template-columns: 1fr; }
    .zd2483home-articles-grid,
    .zd2483plum-newsgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .zd2483layout { grid-template-columns: 1fr; }
    .zd2483sidebar { position: static; order: 2; }
    .zd2483main-column { order: 1; }
    .zd2483footer-main { grid-template-columns: 1fr; }
    .zd2483footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .zd2483steps-grid,
    .zd2483sq-grid,
    .zd2483plum-steps-grid,
    .zd2483plum-sqgrid { grid-template-columns: 1fr; }
    .zd2483download-grid { grid-template-columns: 1fr; }
    .zd2483home-articles-grid,
    .zd2483plum-newsgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .zd2483article-list-item { grid-template-columns: 1fr; }
    .zd2483article-list-thumb img { height: 180px; }
    .zd2483footer-links,
    .zd2483footer-friends { grid-template-columns: 1fr; }
    .zd2483article-prenext-item--next { text-align: left; }
}

@media (max-width: 480px) {
    .zd2483home-articles-grid,
    .zd2483plum-newsgrid { grid-template-columns: 1fr; }
    .zd2483hero .zd2483download-btn,
    .zd2483plum-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
