:root {
    --bg-dark: #0a1628;
    --bg-gradient-end: #1a2d4a;
    --accent: #e85d4c;
    --accent-hover: #ff6f5e;
    --text: #f4f7fb;
    --text-muted: #a8b8d0;
    --card-bg: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }

body.marketing {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-gradient-end) 60%, #2a1840 100%);
    min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    flex-shrink: 0;
}

.logo img { height: 32px; }

.logo-text { white-space: nowrap; }

.site-nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.site-nav-drawer {
    display: none;
}

.site-nav-drawer > summary {
    list-style: none;
    cursor: pointer;
}

.site-nav-drawer > summary::-webkit-details-marker {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.nav-toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 1px;
}

.site-nav-panel {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-main {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-main a {
    color: var(--text-muted);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-main a:hover, .nav-main a.active { color: var(--text); }

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 1.25rem;
    }

    .site-nav-desktop {
        display: none;
    }

    .site-nav-drawer {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.25rem 1.25rem;
        background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-gradient-end) 100%);
        border-bottom: 1px solid var(--card-border);
        z-index: 100;
    }

    .site-nav-drawer[open] .site-nav-panel {
        display: flex;
    }

    .nav-main {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--card-border);
        margin-bottom: 1rem;
    }

    .nav-main a {
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .nav-actions .btn {
        text-align: center;
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--card-border);
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    position: relative;
}

.hero-wave {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    opacity: 0.35;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    max-width: 600px;
    margin-bottom: 1rem;
}

.hero p.lead {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 520px;
    line-height: 1.6;
}

.domain-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    max-width: 560px;
    flex-wrap: wrap;
}

.domain-form input {
    flex: 1;
    min-width: 220px;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    border: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
    font-size: 1rem;
}

.trust-strip {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem 4rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(232, 93, 76, 0.15);
}

.badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card li {
    padding: 0.4rem 0;
    color: var(--text-muted);
}

.pricing-card li::before {
    content: '✓ ';
    color: var(--accent);
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.page-lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.seo-section {
    padding: 3rem 2rem;
    border-top: 1px solid var(--card-border);
}

.seo-section-alt {
    background: rgba(0, 0, 0, 0.12);
}

.seo-section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.seo-section h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.seo-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.seo-section p:last-child {
    margin-bottom: 0;
}

.seo-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.seo-benefits li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-muted);
    line-height: 1.6;
}

.seo-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.seo-faq {
    margin: 0;
}

.seo-faq dt {
    font-weight: 600;
    color: var(--text);
    margin-top: 1.25rem;
}

.seo-faq dt:first-child {
    margin-top: 0;
}

.seo-faq dd {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.steps { counter-reset: step; list-style: none; padding: 0; }

.steps li {
    counter-increment: step;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    width: 2rem;
    height: 2rem;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.flash {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flash .message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.flash .success { background: rgba(46, 204, 113, 0.2); color: #9fefb0; }
.flash .error { background: rgba(232, 93, 76, 0.2); color: #ffb4a8; }

.site-footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
