:root {
    --ink: #08234a;
    --muted: #667085;
    --line: #dfe7ea;
    --paper: #ffffff;
    --soft: #f4fbfb;

    --brand: #18b8b2;
    --brand-dark: #082b57;
    --accent: #ff6267;
    --success: #18a77e;

    --navy: #062650;
    --teal: #18b8b2;
    --coral: #ff6267;
    --mint: #e8f8f7;

    --shadow: 0 22px 55px rgba(6, 38, 80, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(223, 231, 234, .9);
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 46px;
    max-width: 240px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 650;
    font-size: .95rem;
}

.nav-links > a:not(.btn) {
    color: #405066;
}


/* HERO */

.hero {
    padding: 86px 0 72px;
    background:
        radial-gradient(circle at 10% 10%, #e8f8f7 0, transparent 34%),
        radial-gradient(circle at 92% 18%, #fff1f1 0, transparent 29%),
        #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .77rem;
    font-weight: 850;
    color: var(--brand);
    margin-bottom: 13px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.7rem);
    line-height: .94;
    letter-spacing: -.065em;
    margin-bottom: 25px;
    max-width: 760px;
}

h1 span {
    color: var(--brand);
}

.hero-copy {
    font-size: 1.16rem;
    color: #526174;
    max-width: 670px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0 22px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 800;
    transition: .2s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(24, 184, 178, .24);
}

.btn-primary:hover {
    background: #129f9a;
}

.btn-secondary,
.btn-ghost {
    background: #fff;
    border-color: var(--line);
}

.btn-ghost {
    padding-inline: 16px;
}

.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: .9rem;
    color: #4f5b67;
    font-weight: 700;
}


/* MOCK STORE */

.mock-shell {
    border: 1px solid #d9e2e6;
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: rotate(1deg);
}

.mock-top {
    height: 48px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    font-size: .77rem;
}

.mock-top strong {
    margin-left: 8px;
    opacity: .8;
    font-weight: 650;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7b8da3;
}

.mock-body {
    padding: 22px;
}

.mock-heading {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.mock-heading small {
    font-weight: 850;
    color: var(--brand);
    letter-spacing: .09em;
}

.mock-heading h3 {
    margin: 2px 0 0;
    font-size: 1.35rem;
}

.pill {
    font-size: .72rem;
    font-weight: 800;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--mint);
    color: #108f8b;
}

.mock-search {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 13px;
    color: #98a2b3;
    margin: 18px 0;
}

.mock-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-products article {
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 9px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: .72rem;
}

.fake-img {
    aspect-ratio: 1;
    border-radius: 9px;
    margin-bottom: 3px;
}

.fake-img.one {
    background: linear-gradient(145deg, #0a3a6b, #74d8d4);
}

.fake-img.two {
    background: linear-gradient(145deg, #ffc7c9, #fff1d9);
}

.fake-img.three {
    background: linear-gradient(145deg, #164d58, #aee8e4);
}

.mock-products span {
    font-weight: 800;
}

.mock-products button {
    border: 0;
    background: var(--brand);
    color: #fff;
    border-radius: 8px;
    padding: 7px;
    font-weight: 800;
    margin-top: auto;
}


/* FEATURE STRIP */

.strip {
    background: var(--navy);
    color: #fff;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.strip-grid > div {
    padding: 25px 24px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.strip-grid > div:last-child {
    border-right: 0;
}

.strip strong,
.strip span {
    display: block;
}

.strip strong {
    font-size: 1.02rem;
    margin-bottom: 3px;
}

.strip span {
    font-size: .85rem;
    color: #b9c8d8;
}


/* GENERAL SECTIONS */

.section {
    padding: 92px 0;
}

.section.alt {
    background: var(--soft);
}

.section-head {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-head h2,
.pricing-copy h2,
.audience h2,
.cta h2 {
    font-size: clamp(2.25rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin-bottom: 15px;
}

.section-head p,
.pricing-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}


/* STEPS */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps article,
.feature-grid article {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 26px;
}

.steps article > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--mint);
    color: var(--brand);
    font-weight: 900;
    margin-bottom: 22px;
}

.steps h3,
.feature-grid h3 {
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.steps p,
.feature-grid p {
    color: var(--muted);
    margin-bottom: 0;
}


/* FEATURES */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


/* DIRECT SELLERS */

.audience {
    background: #edfafa;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chips span {
    background: #fff;
    border: 1px solid rgba(24, 184, 178, .18);
    padding: 11px 14px;
    border-radius: 999px;
    font-weight: 750;
}


/* PRICING */

.pricing-wrap {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 70px;
    align-items: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 27px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.check-list li::before {
    content: "✓";
    color: var(--success);
    font-weight: 900;
    margin-right: 9px;
}

.price-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 34px;
    box-shadow: var(--shadow);
    background: #fff;
}

.price-badge {
    display: inline-block;
    background: #fff0f0;
    color: #c74449;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: .76rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 20px 0 4px;
}

.price-line > span {
    font-size: 1.5rem;
    font-weight: 850;
}

.price-line strong {
    font-size: 5rem;
    line-height: 1;
    letter-spacing: -.06em;
    color: var(--navy);
}

.price-line small {
    color: var(--muted);
}

.price-card hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 24px 0;
}

.domain-note {
    margin-bottom: 4px;
}

.btn-wide {
    width: 100%;
    margin: 24px 0 12px;
}

.text-link {
    display: block;
    text-align: center;
    color: var(--brand);
    font-weight: 800;
    font-size: .9rem;
}


/* MIGRATION */

.migration {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #fff;
}

.migration-card {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 45px;
    align-items: center;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, #eefafa, #fff7f7);
    box-shadow: var(--shadow);
}

.migration-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    margin-bottom: 15px;
}

.migration-card p {
    color: var(--muted);
    font-size: 1.05rem;
}

.migration-note {
    font-size: .88rem !important;
    margin-bottom: 0;
}

.migration-callout {
    background: #fff;
    border: 1px solid rgba(24, 184, 178, .20);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}

.migration-callout strong,
.migration-callout span,
.migration-callout small {
    display: block;
}

.migration-callout strong {
    font-size: 4.2rem;
    line-height: 1;
    color: var(--brand);
    letter-spacing: -.06em;
}

.migration-callout span {
    font-weight: 850;
    margin: 9px 0 5px;
}

.migration-callout small {
    color: var(--muted);
}


/* FAQ */

.faq {
    background: var(--soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    color: var(--muted);
    margin: 12px 0 0;
}


/* CTA */

.cta {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    padding: 68px 0;
}

.cta .eyebrow {
    color: #ffb0b3;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.cta h2 {
    margin-bottom: 0;
    max-width: 720px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-light {
    background: #fff;
    color: var(--navy);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}


/* FOOTER */

footer {
    background: #041d3d;
    color: #d6e0ea;
    padding: 44px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: end;
}

.footer-brand {
    color: #fff;
}

.footer-inner p {
    font-size: .9rem;
    margin: 8px 0 0;
    color: #97a9bb;
}

.footer-links {
    display: flex;
    gap: 18px;
    font-weight: 700;
    font-size: .9rem;
}

.copyright {
    font-size: .82rem;
    color: #97a9bb;
}


/* RESPONSIVE */

@media (max-width: 980px) {
    .hero-grid,
    .pricing-wrap,
    .audience-grid,
    .migration-card {
        grid-template-columns: 1fr;
    }

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

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

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

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .brand-logo {
        height: 38px;
        max-width: 190px;
    }

    .nav-links > a:not(.btn) {
        display: none;
    }

    .hero {
        padding-top: 62px;
    }

    .feature-grid,
    .faq-grid,
    .check-list,
    .mock-products {
        grid-template-columns: 1fr;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .price-line strong {
        font-size: 4.2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .migration-card {
        padding: 28px 22px;
    }
}
