:root {
    color-scheme: light;
    --stratedo-white: #ffffff;
    --stratedo-blue: #186ccc;
    --stratedo-green: #99e265;
    --stratedo-grey: #f4f4f4;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-body: #1e293b;
    --text-muted: #475569;
    --text-light: #64748b;
    --text-faint: #94a3b8;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0 32px 32px;
    color: var(--text-primary);
    background: var(--stratedo-grey);
    display: grid;
    gap: 24px;
    grid-template-rows: auto auto 1fr;
}

.site-header {
    background: var(--stratedo-white);
    border-radius: 18px;
    padding: 20px;
    margin-top: 24px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
}

.site-header .logo {
    width: 150px;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--stratedo-blue);
}

.site-nav-cta {
    background: var(--stratedo-blue);
    color: #fff !important;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
}

.site-nav-cta:hover {
    opacity: 0.88;
}

.logo {
    max-width: 40vw;
}

.headline {
    margin: 0;
    font-size: 1.5rem;
    color: var(--stratedo-blue);
}

.subheadline {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.secondary-button,
.subscribe-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.primary-button,
.subscribe-button {
    background: var(--stratedo-blue);
    color: var(--stratedo-white);
}

.primary-button:hover,
.subscribe-button:hover {
    background: var(--stratedo-green);
    color: var(--text-primary);
}

.secondary-button {
    border: 1px solid var(--stratedo-blue);
    color: var(--stratedo-blue);
}

.secondary-button:hover {
    border-color: var(--stratedo-green);
    color: var(--stratedo-green);
}

.social-proof {
    background: var(--stratedo-white);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(24, 108, 204, 0.2);
    max-width: 720px;
}

.social-proof h4 {
    margin: 0 0 8px;
    color: var(--stratedo-blue);
}

.social-proof ul {
    margin: 0;
    padding-left: 18px;
}

.content-section {
    background: var(--stratedo-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(24, 108, 204, 0.2);
    box-shadow: 0 10px 24px rgba(24, 108, 204, 0.08);
}

.content-section + .content-section {
    margin-top: 8px;
}

.section-title {
    margin: 0 0 12px;
    color: var(--stratedo-blue);
}

.section-lead {
    margin-top: 0;
    font-weight: 600;
}

.section-closer {
    font-weight: 600;
    margin-bottom: 0;
}

.content-section ul {
    padding-left: 18px;
}

.strategy-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stage-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.stage {
    background: var(--stratedo-white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(24, 108, 204, 0.2);
    box-shadow: 0 12px 30px rgba(24, 108, 204, 0.12);
}

.stage h3 {
    margin-top: 0;
    color: var(--stratedo-blue);
}

.stage h4 {
    margin-bottom: 8px;
    color: var(--stratedo-blue);
}

body > h1 {
    margin: 0;
    color: var(--stratedo-blue);
}

body > a {
    justify-self: start;
    text-decoration: none;
    font-weight: 600;
    color: var(--stratedo-blue);
}

body > a:hover {
    color: var(--stratedo-green);
}

.pricing-tiers {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.tier {
    background: var(--stratedo-white);
    border: 1px solid rgba(24, 108, 204, 0.2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(24, 108, 204, 0.12);
    display: flex;
    flex-direction: column;
}

.tier h3 {
    margin-top: 0;
    color: var(--stratedo-blue);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 8px 0 16px;
    color: var(--text-primary);
}

.tier ul {
    padding-left: 18px;
    margin-bottom: 24px;
}

.subscribe-button {
    margin-top: auto;
    align-self: flex-start;
}

.footer {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer a {
    color: var(--stratedo-blue);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    color: var(--stratedo-green);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--stratedo-blue);
    border-radius: 2px;
    transition: opacity 0.2s;
}

@media (max-width: 800px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    body {
        padding: 0 12px 24px;
    }

    .site-header {
        flex-wrap: wrap;
        position: relative;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
        padding: 16px 4px 4px;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav-cta {
        align-self: flex-start;
    }
}
