.landing-footer-wrap .site-footer {
    padding: 4rem 1.5rem 1.5rem;
}
.landing-footer-wrap .site-footer-grid,
.landing-footer-wrap .site-footer-bottom {
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .landing-footer-wrap .site-footer { padding: 3rem 1.25rem 1.25rem; }
}
@media (max-width: 768px) {
    .landing-footer-wrap .site-footer { padding: 2.5rem 1rem 1rem; }
}
@media (max-width: 480px) {
    .landing-footer-wrap .site-footer { padding: 2rem 0.75rem 1rem; }
}

.site-footer {
    margin-top: auto;
    padding: 4rem var(--space-8) 1.5rem;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid var(--surface-border);
}
.site-footer-grid {
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 1.75rem;
}
.site-footer-brand {
    grid-column: 1 / -1;
}
@media (max-width: 1024px) {
    .site-footer {
        padding: 3rem var(--space-5) 1.25rem;
    }
    .site-footer-grid {
        grid-template-columns: repeat(2, auto);
        gap: 1.25rem;
    }
}
@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem var(--space-4) 1rem;
    }
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    .site-footer-brand::before { margin-left: 0; margin-right: auto; }
    .site-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
    .site-footer {
        padding: 2rem var(--space-3) 1rem;
    }
    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .site-footer-col {
        text-align: center;
    }
    .site-footer-dots {
        justify-content: center;
    }
}
.site-footer-brand {
    position: relative;
    padding-top: 0;
}
.site-footer-brand::before {
    content: '';
    display: block;
    width: 4rem;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    margin-bottom: 1.125rem;
    border-radius: 2px;
}
.site-footer-brand .site-footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}
.site-footer-brand-icon {
    font-size: 1.25rem;
    color: var(--accent);
}
.site-footer-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading);
}
.site-footer-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
    font-style: italic;
    font-weight: 400;
}
.site-footer-dots {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}
.site-footer-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.site-footer-dot:hover { opacity: 1; }
.site-footer-dot-mvlempyr { background: #6C63FF; }
.site-footer-dot-royalroad { background: #F4A460; }
.site-footer-dot-scribblehub { background: #FF69B4; }
.site-footer-dot-wuxiaworld { background: #E53935; }
.site-footer-dot-webnovel { background: #FFB300; }
.site-footer-col-title {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--heading);
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.8;
}
.site-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}
.site-footer-col a {
    color: var(--text-muted);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.15s;
    width: fit-content;
}
.site-footer-col a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.site-footer-bottom {
    max-width: 1200px;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--surface-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}
.site-footer-bottom-tagline {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-style: italic;
}
.site-footer-bottom-diamond {
    color: var(--accent);
    font-size: 0.5rem;
    opacity: 0.6;
}

.page-hero {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--heading);
}
.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.page-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}
.page-body-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}
.page-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}
.page-body p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.page-body ul, .page-body ol {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.page-body li { margin-bottom: 0.375rem; }
.page-body strong { color: var(--heading); }
.page-body a { color: var(--accent); }
.page-body a:hover { text-decoration: underline; }
.page-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 0.75rem 1.25rem;
    margin: 1.25rem 0;
    background: var(--surface);
    border-radius: 0 0.5rem 0.5rem 0;
    color: var(--text-muted);
    font-style: italic;
}
.page-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2rem 0;
}
.page-body code {
    background: var(--surface);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: var(--accent);
}
.last-updated {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-style: italic;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}
.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.pricing-card--popular {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(108,99,255,0.15);
}
.pricing-card-accent {
    height: 4px;
}
.pricing-card-accent--free { background: var(--text-muted); }
.pricing-card-accent--pro { background: var(--accent); }
.pricing-card-accent--premium { background: linear-gradient(90deg, var(--accent), #FF6B6B); }
.pricing-card-body {
    padding: 1.5rem;
}
.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.pricing-card-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading);
}
.pricing-card-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
}
.pricing-card-price {
    margin: 0.75rem 0 1rem;
}
.pricing-card-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--heading);
}
.pricing-card-interval {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.pricing-card-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.pricing-card-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text);
    padding: 0.375rem 0;
}
.pricing-card-feature-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.pricing-card-feature-icon--yes { color: #43A047; }
.pricing-card-feature-icon--no { color: var(--text-muted); opacity: 0.4; }
.pricing-card-cta {
    display: block;
    text-align: center;
    padding: 0.625rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.pricing-card-cta--primary {
    background: var(--accent);
    color: #fff;
}
.pricing-card-cta--primary:hover { opacity: 0.9; }
.pricing-card-cta--outline {
    border: 1px solid var(--border);
    color: var(--text);
}
.pricing-card-cta--outline:hover { border-color: var(--accent); color: var(--accent); }
.pricing-card-cta--current {
    background: var(--surface);
    color: var(--text-muted);
    cursor: default;
    text-align: center;
    padding: 0.625rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}
.pricing-faq-link {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}
.pricing-faq-link a { color: var(--accent); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.feature-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: rgba(108,99,255,0.1);
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.faq-list { margin: 2rem 0; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--card);
}
.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    -webkit-appearance: none;
    appearance: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item[open] .faq-question::after {
    content: '−';
}
.faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.7;
}
.faq-answer p { margin-bottom: 0.5rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--accent); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-method-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    background: rgba(108,99,255,0.1);
    color: var(--accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.contact-method h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 0.25rem;
}
.contact-method p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.contact-method a { color: var(--accent); }

.about-section {
    margin: 2rem 0;
}
.about-section h2 {
    border-bottom: none;
    margin-top: 0;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}
.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}
.about-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.about-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.security-item {
    margin-bottom: 2rem;
}
.security-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.security-item h3 .sec-icon {
    color: var(--accent);
}

.status-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}
.status-indicator {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: var(--card);
    text-align: center;
}
.status-dot {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}
.status-dot--operational { background: #43A047; }
.status-dot--degraded { background: #FFB300; }
.status-dot--down { background: #E53935; }
.status-name {
    font-weight: 600;
    color: var(--heading);
    font-size: 0.9375rem;
}
.status-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .status-indicators { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 1.75rem; }
    .page-hero { padding: 2.5rem 1rem 2rem; }
    .page-body { padding: 2rem 1rem 3rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
