@charset "UTF-8";

/* Design Tokens - System Prompt v2.1 Single Source of Truth */
:root {
    --color-bg: #f4f5f6;
    --color-surface: #ffffff;
    --color-surface-translucent: rgba(255, 255, 255, 0.7);
    --color-card-bg: rgba(255, 255, 255, 0.65);
    --color-tile-bg: #2c2e33;
    --color-border: rgba(44, 46, 51, 0.12);
    
    --color-text: #2c2e33;
    --color-text-muted: #5f6368;
    
    --color-accent: #d92055;
    --color-accent-hover: #c41848;
    --color-accent-light: rgba(217, 32, 85, 0.08);
    
    --color-success: #2e7d32;
    --color-danger: #d32f2f;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 30px;
    
    --elevation-1: 0 4px 15px rgba(0, 0, 0, 0.04);
    --elevation-2: 0 10px 30px rgba(0, 0, 0, 0.08);
    --elevation-3: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    --glass-blur: blur(16px);
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Noto Serif SC', 'Songti SC', 'Inter', serif;
}

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

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Mobile Sticky Bar Padding Adjustment for Body */
@media (max-width: 768px) {
    body {
        padding-bottom: calc(85px + env(safe-area-inset-bottom)) !important;
    }
}

/* Background Ambient Lighting */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}
body::before {
    top: -5%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217,32,85,0.12) 0%, rgba(244,245,246,0) 70%);
}
body::after {
    bottom: -10%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(44,46,51,0.08) 0%, rgba(244,245,246,0) 70%);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow-wrap: anywhere;
}
a:hover {
    color: var(--color-accent-hover);
}

.container, .z-box-a7 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing & Headings */
.k3-box-e5 {
    padding: 60px 0;
}

.m-wrap-s2, .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 45px;
    font-weight: 800;
    color: var(--color-tile-bg);
    position: relative;
    display: block;
    font-family: var(--font-display);
}
.m-wrap-s2::after, .section-title::after {
    content: '';
    display: block;
    margin: 12px auto 0;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Sticky Header Nav */
header, aside {
    padding: 15px 0;
    background: var(--color-surface-translucent);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container, .pz-wrap-c3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo-wrapper, .x-box-m2 {
    display: flex;
    align-items: center;
}
.logo, .m-panel-f1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
    color: var(--color-tile-bg);
    line-height: 1.1;
    padding: 4px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 10px rgba(217, 32, 85, 0.2);
}
.g-list-q4, .nav-links {
    display: flex;
    gap: 28px;
    margin-right: auto;
    margin-left: 40px;
}
.g-list-q4 a, .nav-links a {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 0;
}
.g-list-q4 a:hover, .nav-links a:hover {
    color: var(--color-accent);
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.hamburger-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-tile-bg);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Buttons */
.nav-btn, .v2-action-w9 {
    padding: 8px 22px;
    background: var(--color-accent);
    color: #ffffff !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.28s cubic-bezier(.34, 1.56, .64, 1), background 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 4px 15px rgba(217, 32, 85, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}
.nav-btn:hover, .v2-action-w9:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 32, 85, 0.5);
}

.k3-bt-p2, .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    font-weight: 700;
    background: var(--color-accent);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(217, 32, 85, 0.4);
    transition: transform 0.28s cubic-bezier(.34, 1.56, .64, 1), background 0.28s ease, box-shadow 0.28s ease;
    border: none;
    cursor: pointer;
    min-height: 44px;
}
.k3-bt-p2:hover, .btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(217, 32, 85, 0.6);
}

.g-action-d4, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.6);
    color: var(--color-tile-bg) !important;
    border: 1px solid rgba(44, 46, 51, 0.2);
    transition: transform 0.28s cubic-bezier(.34, 1.56, .64, 1), background 0.28s ease;
    cursor: pointer;
    min-height: 44px;
}
.g-action-d4:hover, .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Hero Trust Pills (Section 6.1 C1) */
.hero-trust-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: var(--elevation-1);
}

/* Hero Section */
.hero-section, .z-panel-r6 {
    padding: 60px 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 75vh;
}
.hero-content, .x-wrap-k5 {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}
.hero-section h1, .z-panel-r6 h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color-tile-bg);
}
.gradient-text, .z-panel-r6 h1 span {
    color: var(--color-accent);
    background: linear-gradient(135deg, #d92055 0%, #ff4d79 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
@supports not (background-clip: text) {
    .gradient-text, .z-panel-r6 h1 span {
        color: var(--color-accent);
    }
}
.hero-section p, .z-panel-r6 p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}
.trust-microcopy {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-top: 12px;
}

/* Hero Visual Art Container */
.hero-visual, .v2-box-u3 {
    flex: 1;
    position: relative;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Promo Banner in Pricing (Section 6.3 C3) */
.promo-banner {
    background: linear-gradient(135deg, rgba(217, 32, 85, 0.1) 0%, rgba(255, 77, 121, 0.15) 100%);
    border: 1px solid rgba(217, 32, 85, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 35px;
    box-shadow: var(--elevation-1);
}
.promo-banner code {
    background: var(--color-accent);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 6px;
    font-family: monospace;
    letter-spacing: 1px;
}

/* Cards & Grid Layouts */
.glass-card, .g-panel-j7 {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.3s ease;
    box-shadow: var(--elevation-1);
    word-break: break-word;
}
.glass-card:hover, .g-panel-j7:hover {
    transform: translateY(-5px);
    box-shadow: var(--elevation-2);
    border-color: rgba(217, 32, 85, 0.25);
}

.x-list-n4, .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.k3-list-b2, .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

/* Pricing Card Layout & Elements */
.m-box-f3 {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 35px 25px 30px;
}
.m-box-f3.x-item-w7, .pricing-card-featured {
    border: 2px solid var(--color-accent) !important;
    background: rgba(255, 255, 255, 0.85) !important;
    transform: scale(1.03);
}

/* Top Badge for Featured Plan */
.g-wrap-q1 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #ffffff;
    padding: 4px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(217, 32, 85, 0.35);
    z-index: 5;
}

.v2-panel-h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--color-tile-bg);
}

.pz-inner-m6 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--color-accent);
    line-height: 1;
}
.pz-inner-m6 span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Pricing Feature List (Clean Bullet Points) */
ul.z-list-a3, .z-list-a3 {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin: 0 0 25px 0 !important;
    text-align: left;
    flex-grow: 1;
}
ul.z-list-a3 li, .z-list-a3 li {
    list-style: none !important;
    list-style-type: none !important;
    margin-bottom: 12px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
ul.z-list-a3 li::before, .z-list-a3 li::before {
    content: '✦';
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Purchase button trust note */
.purchase-trust-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 10px;
}

/* FAQ Item Styling */
.k3-wrap-d9 {
    max-width: 800px;
    margin: 0 auto;
}
.m-box-p5 {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    padding: 24px;
    box-shadow: var(--elevation-1);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}
.x-panel-y4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-tile-bg);
}
.g-inner-c8 {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SEO Content Tables Responsive Wrapper (Section 12.4) */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}
table.data-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
table.data-table th, table.data-table td {
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    text-align: left;
}
table.data-table th {
    background: var(--color-accent-light);
    color: var(--color-tile-bg);
    font-weight: 700;
}

/* Mobile Sticky CTA Bar (Section 6.4 C4) */
.mobile-sticky-bar {
    display: none;
}
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid var(--color-border);
        z-index: 999;
        padding: 8px 16px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        gap: 12px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    }
    .mobile-sticky-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-pill);
        font-weight: 700;
        font-size: 0.95rem;
        text-align: center;
        min-height: 44px;
    }
    .mobile-sticky-bar .btn-sec {
        background: rgba(44, 46, 51, 0.08);
        color: var(--color-tile-bg);
        border: 1px solid rgba(44, 46, 51, 0.2);
    }
    .mobile-sticky-bar .btn-pri {
        background: var(--color-accent);
        color: #ffffff;
        box-shadow: 0 2px 10px rgba(217, 32, 85, 0.4);
    }
}

/* Exit-Intent Popup (Section 6.5 C5) */
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.exit-popup-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    padding: 35px 30px;
    position: relative;
    box-shadow: var(--elevation-3);
    text-align: center;
    border: 2px solid var(--color-accent);
}
.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    min-width: 44px;
    min-height: 44px;
}
.popup-close-btn:hover {
    color: var(--color-accent);
}
.exit-popup-card h3 {
    font-size: 1.6rem;
    color: var(--color-tile-bg);
    margin-bottom: 10px;
    font-weight: 800;
}
.exit-popup-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.discount-code-box {
    background: var(--color-bg);
    border: 2px dashed var(--color-accent);
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.discount-code-box span {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--color-accent);
    letter-spacing: 2px;
}
.copy-btn {
    padding: 8px 16px;
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
    min-height: 44px;
}
.copy-btn:hover {
    background: var(--color-accent-hover);
}
.popup-cta-btn {
    width: 100%;
    padding: 14px 0;
    margin-bottom: 12px;
}
.popup-trust-line {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Accessibility Focus Visible Styles */
:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Media Query Responsive Adjustments (Fix Mobile Bugs) */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .g-list-q4, .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        margin: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--elevation-2);
        z-index: 100;
    }
    .g-list-q4.mobile-active, .nav-links.mobile-active {
        display: flex;
    }
    .hero-section, .z-panel-r6 {
        flex-direction: column;
        text-align: center;
        padding-top: 30px;
        min-height: auto;
    }
    .hero-content, .x-wrap-k5 {
        margin-bottom: 30px;
        max-width: 100%;
    }
    .hero-trust-pills {
        justify-content: center;
    }
    .pz-box-h7 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container, .z-box-a7 {
        padding: 0 16px;
    }
    .k3-box-e5 {
        padding: 40px 0;
    }
    .hero-section h1, .z-panel-r6 h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    .x-list-n4, .k3-list-b2, .grid-3, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    /* Mobile Pricing Card Badge & Scale Fix */
    .m-box-f3.x-item-w7, .pricing-card-featured {
        transform: none !important;
        margin-top: 25px;
    }
    .m-box-f3 {
        padding: 28px 18px 24px;
    }
    .v2-box-u3 {
        height: 280px;
        max-width: 100%;
        overflow: hidden;
    }
    .x-panel-y1 {
        width: 260px;
        height: 320px;
    }
    .pz-wrap-o6 {
        left: -30px;
        width: 220px;
        height: 260px;
    }
    .promo-banner {
        font-size: 0.95rem;
        padding: 14px 16px;
    }
    /* Hide exit intent popup on mobile per Section 6.5 */
    .exit-popup-overlay {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-section h1, .z-panel-r6 h1 {
        font-size: 1.85rem;
    }
    .pz-box-h7 {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .pz-box-h7 a {
        width: 100%;
        text-align: center;
    }
    .glass-card, .g-panel-j7 {
        padding: 20px 16px;
    }
    .trust-pill {
        font-size: 0.82rem;
        padding: 5px 10px;
    }
}

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