:root {
    --wp-primary: #00f5ff;
    --wp-accent: #00ccff;
    --wp-dark: #0a0a1f;
    --wp-card: #1a2340;
    --wp-border: rgba(0, 245, 255, 0.15);
    --wp-text: #e0f7ff;
    --wp-muted: rgba(224, 247, 255, 0.72);
    --wp-red: #ff3366;
    --wp-radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--wp-dark);
    color: var(--wp-text);
    line-height: 1.7;
    overflow-x: hidden;
}
.wp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wp-section { padding: 88px 0; }
.wp-section--alt { background: #111133; }
.wp-section-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    color: var(--wp-primary);
    margin-bottom: 48px;
}
.wp-section-sub {
    text-align: center;
    max-width: 760px;
    margin: -32px auto 40px;
    color: var(--wp-muted);
    font-size: 1.05rem;
}

/* Header */
.wp-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--wp-border);
}
.wp-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.wp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--wp-primary);
    text-decoration: none;
    flex-shrink: 0;
}
.wp-logo small { color: #fff; font-weight: 500; font-size: .85em; }
.wp-logo i { font-size: 1.4rem; }
.wp-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin-left: auto;
}
.wp-nav a {
    color: var(--wp-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 0;
}
.wp-nav a:hover { color: var(--wp-primary); }
.wp-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.wp-lang { position: relative; }
.wp-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--wp-border);
    color: var(--wp-text);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.wp-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #12122e;
    border: 1px solid var(--wp-border);
    border-radius: 12px;
    list-style: none;
    padding: 6px;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    z-index: 1100;
}
.wp-lang-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--wp-text);
    text-decoration: none;
    font-size: 13px;
}
.wp-lang-menu a:hover, .wp-lang-menu a.active { background: rgba(0,245,255,.12); color: var(--wp-primary); }
.wp-btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--wp-red), #e60033);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}
.wp-btn-buy:hover { transform: translateY(-2px); }
.wp-btn-sm { padding: 8px 14px; font-size: 12px; }
.wp-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.wp-burger span { width: 24px; height: 2px; background: var(--wp-primary); transition: .25s; }
.wp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 900;
}

/* Hero */
.wp-hero {
    padding: 150px 20px 100px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a1f 0%, #001a33 100%);
    position: relative;
}
.wp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0,245,255,.1) 0%, transparent 70%);
    pointer-events: none;
}
.wp-hero .wp-container { position: relative; z-index: 1; }
.wp-badge {
    display: inline-block;
    background: rgba(0,245,255,.12);
    color: var(--wp-primary);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
}
.wp-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--wp-primary), var(--wp-accent), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wp-hero p { max-width: 860px; margin: 0 auto 28px; font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--wp-muted); }
.wp-hero-trust { font-size: .95rem; color: var(--wp-muted); margin-top: 28px; }
.wp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.wp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.wp-btn-pro { background: linear-gradient(135deg, var(--wp-red), #e60033); color: #fff; box-shadow: 0 10px 30px rgba(255,51,102,.35); }
.wp-btn-outline {
    background: transparent;
    border: 1px solid var(--wp-border);
    color: var(--wp-text);
}
.wp-btn-outline:hover { border-color: var(--wp-primary); color: var(--wp-primary); }
.wp-btn:hover { transform: translateY(-3px); }

/* Features */
.wp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.wp-feature-card {
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius);
    padding: 28px 22px;
    transition: transform .25s, border-color .25s;
}
.wp-feature-card:hover { transform: translateY(-6px); border-color: rgba(0,245,255,.35); }
.wp-feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(0,245,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp-primary);
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.wp-feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.wp-feature-card p { font-size: 14px; color: var(--wp-muted); line-height: 1.55; }

/* Whatsnew */
.wp-whatsnew-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wp-whatsnew-list li {
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
}
.wp-whatsnew-list li::before { content: '✓ '; color: var(--wp-primary); font-weight: 700; }
.wp-whatsnew-cta {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 24px;
    text-align: center;
    background: rgba(0,245,255,.08);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius);
    color: var(--wp-primary);
    font-weight: 600;
}

/* Screenshots */
.wp-screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 400px));
    gap: 28px;
    justify-content: center;
    align-items: start;
}
.wp-screenshot-wrap {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.wp-screenshot {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.6);
    cursor: pointer;
    transition: transform .3s;
}
.wp-screenshot:hover { transform: scale(1.02); }
.wp-screens-more { text-align: center; margin-top: 28px; }
.wp-screens-more a { color: var(--wp-primary); font-weight: 600; }

/* Comparison */
.wp-table-wrap { overflow-x: auto; }
.wp-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #0f0f2b;
    border-radius: var(--wp-radius);
    overflow: hidden;
}
.wp-table th, .wp-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--wp-border); }
.wp-table th { background: #001a33; color: var(--wp-primary); font-weight: 600; }
.wp-check { color: #00ff88; font-size: 1.2rem; }
.wp-cross { color: var(--wp-red); font-size: 1.2rem; }

/* Install */
.wp-install-box {
    max-width: 820px;
    margin: 0 auto;
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius);
    padding: 36px 32px;
}
.wp-install-box ol { padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.wp-install-note { margin-top: 24px; text-align: center; color: var(--wp-primary); }

/* FAQ */
.wp-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.wp-faq-item {
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: 12px;
    overflow: hidden;
}
.wp-faq-item summary {
    padding: 16px 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}
.wp-faq-item summary::-webkit-details-marker { display: none; }
.wp-faq-item summary::after {
    content: '+';
    color: var(--wp-primary);
    font-size: 1.25rem;
    font-weight: 400;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.wp-faq-item[open] summary::after { content: '\2212'; }
.wp-faq-item p { margin: 0; padding: 0 18px 16px; font-size: 14px; color: var(--wp-muted); }

/* Ecosystem */
.wp-eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.wp-eco-card {
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wp-eco-card h3 { font-size: .95rem; }
.wp-eco-card p { font-size: 13px; color: var(--wp-muted); flex: 1; }
.wp-eco-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.wp-eco-links a {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--wp-border);
    color: var(--wp-text);
    text-decoration: none;
}
.wp-eco-links a:hover { border-color: var(--wp-primary); color: var(--wp-primary); }

/* Contact */
.wp-contact-box {
    max-width: 640px;
    margin: 0 auto;
    background: var(--wp-card);
    border: 1px solid var(--wp-border);
    border-radius: var(--wp-radius);
    padding: 32px 28px;
}
.wp-field { margin-bottom: 16px; }
.wp-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.wp-field input, .wp-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--wp-border);
    border-radius: 10px;
    color: var(--wp-text);
    font: inherit;
}
.wp-field textarea { min-height: 120px; resize: vertical; }
.wp-captcha-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.wp-submit {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wp-primary), var(--wp-accent));
    color: #000;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}
.wp-feedback { padding: 14px; border-radius: 10px; margin-bottom: 16px; text-align: center; font-weight: 600; }
.wp-feedback--ok { background: #28a745; color: #fff; }
.wp-feedback--err { background: #dc3545; color: #fff; }

/* CTA band */
.wp-cta-band {
    background: linear-gradient(135deg, var(--wp-primary), var(--wp-accent));
    color: #000;
    text-align: center;
    padding: 80px 20px;
}
.wp-cta-band h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.wp-cta-band p { max-width: 700px; margin: 0 auto 28px; font-size: 1.1rem; }
.wp-cta-band .wp-btn-pro { background: #000; color: #fff; }
.wp-cta-band .wp-btn-outline { border-color: rgba(0,0,0,.3); color: #000; }

/* Modal */
.wp-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wp-modal.is-open { display: flex; }
.wp-modal img {
    max-width: 95%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

/* Footer */
.wp-footer {
    background: #08081a;
    border-top: 1px solid var(--wp-border);
    padding: 56px 0 32px;
}
.wp-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}
.wp-footer h4 { color: var(--wp-primary); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.wp-footer ul { list-style: none; }
.wp-footer li { margin-bottom: 7px; }
.wp-footer a { color: var(--wp-muted); text-decoration: none; font-size: 13px; }
.wp-footer a:hover { color: var(--wp-primary); }
.wp-footer-brand p { font-size: 13px; color: var(--wp-muted); margin-top: 10px; }
.wp-footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--wp-border); font-size: 12px; color: var(--wp-muted); }
.wp-footer-author { margin-top: 6px; }

@media (max-width: 960px) {
    .wp-nav {
        position: fixed;
        top: 68px; left: 0; right: 0; bottom: 0;
        background: var(--wp-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 4px;
        transform: translateX(-100%);
        transition: transform .3s;
        z-index: 950;
        overflow-y: auto;
    }
    .wp-nav.is-open { transform: translateX(0); }
    .wp-nav a { padding: 12px 8px; font-size: 15px; border-bottom: 1px solid var(--wp-border); }
    .wp-burger { display: flex; }
    .wp-header-actions .wp-btn-buy span { display: none; }
}