@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --brand-ink: #07121f;
    --brand-navy: #0b1b2c;
    --brand-navy-2: #12263b;
    --brand-coral: #ff7448;
    --brand-orange: #ff9a3d;
    --brand-cream: #fff7ed;
    --brand-surface: #ffffff;
    --brand-soft: #f5f1ea;
    --text-main: #172033;
    --text-soft: #657186;
    --text-light: #f8fafc;
    --border-soft: rgba(20, 31, 48, 0.12);
    --border-dark: rgba(255, 255, 255, 0.16);
    --shadow-soft: 0 20px 55px rgba(7, 18, 31, 0.13);
    --shadow-deep: 0 24px 70px rgba(7, 18, 31, 0.38);
    --glow-coral: 0 18px 44px rgba(255, 116, 72, 0.36);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --heading-font: 'Fredoka', 'Poppins', Arial, sans-serif;
    --body-font: 'Poppins', Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.marketing-body {
    margin: 0;
    color: var(--text-main);
    font-family: var(--body-font);
    background:
        radial-gradient(circle at 6% 0%, rgba(255, 154, 61, 0.14), transparent 26rem),
        linear-gradient(180deg, #fffaf4 0%, #f7f2ea 48%, #fffaf4 100%);
}

.marketing-body h1,
.marketing-body h2,
.marketing-body h3,
.marketing-body h4 {
    margin: 0;
    color: var(--brand-ink);
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 0;
}

.marketing-body p,
.marketing-body li {
    line-height: 1.72;
}

.marketing-body p {
    margin-top: 0;
}

.site-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--text-light);
    background: rgba(7, 18, 31, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(7, 18, 31, 0.2);
    backdrop-filter: blur(16px);
}

.site-header .site-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    position: relative;
}

.site-brand {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 0.75rem;
    row-gap: 0.1rem;
    align-items: center;
    color: #fff;
    text-decoration: none;
    min-width: max-content;
}

.site-brand img {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(103, 211, 234, 0.18));
}

.site-brand-name {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--heading-font);
    font-size: 1.35rem;
    line-height: 1;
}

.site-brand-tagline {
    grid-column: 2;
    grid-row: 2;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    border-radius: 999px;
}

.site-nav-toggle-bars {
    display: inline-grid;
    gap: 0.28rem;
}

.site-nav-toggle-bars span {
    display: block;
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.1rem;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.site-nav-cta,
.btn-primary,
.footer-start-link {
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange));
    color: #fff !important;
    box-shadow: var(--glow-coral);
}

.site-nav-cta {
    padding-inline: 1rem !important;
}

.section {
    padding: 4.5rem 0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.25rem 0 4.5rem;
    color: var(--text-light);
    background:
        radial-gradient(circle at 74% 18%, rgba(255, 154, 61, 0.24), transparent 21rem),
        radial-gradient(circle at 18% 24%, rgba(255, 116, 72, 0.14), transparent 18rem),
        linear-gradient(135deg, #07121f 0%, #0b1b2c 58%, #142236 100%);
}

.hero--home {
    min-height: 720px;
    padding-top: 5.5rem;
}

.hero--home::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 18, 31, 0.96) 0%, rgba(7, 18, 31, 0.78) 42%, rgba(7, 18, 31, 0.1) 100%),
        url('/img/responsive/homepage-hero-1536.webp') center right / cover no-repeat;
    opacity: 0.95;
}

.hero--home::after {
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -4.25rem;
    height: 8rem;
    background: #fffaf4;
    border-radius: 50% 50% 0 0 / 55% 55% 0 0;
}

.hero > .site-shell {
    position: relative;
    z-index: 1;
}

.hero-grid,
.compare-grid,
.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    max-width: 650px;
}

.page-hero .hero-copy {
    padding: 1.35rem 0;
}

.hero-copy--home {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-visual-mobile {
    display: none;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 0.8rem;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 700;
}

.section-kicker {
    color: var(--brand-coral);
    background: rgba(255, 116, 72, 0.1);
    border-color: rgba(255, 116, 72, 0.18);
}

.hero h1,
.page-hero h1 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 4.15rem;
    line-height: 1.02;
    max-width: 680px;
}

.hero h1::first-line {
    color: #fff;
}

.hero h1 strong,
.hero .accent {
    color: var(--brand-coral);
}

.lead,
.section-intro {
    margin: 0;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.hero .lead {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-benefits,
.check-list {
    display: grid;
    gap: 0.58rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-benefits li,
.check-list li {
    position: relative;
    padding-left: 1.75rem;
}

.hero-benefits li {
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefits li::before,
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.78rem;
    height: 0.78rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange));
    box-shadow: 0 0 0 5px rgba(255, 116, 72, 0.14);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.35rem;
}

.btn-primary,
.btn-secondary,
.footer-start-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    border-radius: 999px;
    padding: 0.88rem 1.35rem;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary::after,
.site-nav-cta::after,
.footer-start-link::after {
    content: '→';
    margin-left: 0.6rem;
    font-weight: 700;
}

.btn-secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.site-nav-cta:hover,
.site-nav-cta:focus-visible,
.footer-start-link:hover,
.footer-start-link:focus-visible {
    transform: translateY(-1px);
}

.hero-art {
    position: relative;
    min-width: 0;
}

.hero-art::before {
    content: '';
    position: absolute;
    inset: 10% -5% -7% 18%;
    border-radius: 999px;
    background: rgba(255, 116, 72, 0.28);
    filter: blur(48px);
}

.hero-art img,
.media-card img,
.audience-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.hero-art img {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-deep);
}

.hero--home .hero-art {
    align-self: end;
}

.hero--home .hero-art img {
    opacity: 0;
}

.proof-chip-row,
.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.proof-chip-row span,
.cta-points span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.46rem 0.78rem;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.84rem;
    font-weight: 700;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.section-heading h2,
.fact-card h2,
.body-section h2,
.side-card h2,
.cta-card h2 {
    margin-bottom: 0.55rem;
    font-size: 2.2rem;
    line-height: 1.12;
}

.feature-grid,
.fact-grid,
.steps-grid {
    display: grid;
    gap: 1rem;
}

.feature-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-grid--two,
.fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-card,
.value-card,
.compare-card,
.fact-card,
.pricing-package-card,
.body-section,
.side-card {
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.media-card {
    overflow: hidden;
    padding: 0.72rem;
}

.media-card--feature {
    grid-column: span 2;
}

.media-card img,
.audience-card img {
    border-radius: calc(var(--radius-lg) - 6px);
}

.media-card h3,
.media-card p {
    padding-inline: 0.45rem;
}

.media-card h3,
.value-card h3,
.compare-card h3,
.audience-overlay h3,
.step-card h3 {
    margin: 0.9rem 0 0.4rem;
    font-size: 1.18rem;
}

.media-card p,
.value-card p,
.compare-card p,
.fact-card p,
.step-card p,
.body-section p,
.side-card p,
.pricing-package-description {
    color: var(--text-soft);
}

.audience-section,
.value-section {
    background: #fffaf4;
}

.audience-card {
    position: relative;
    overflow: hidden;
    min-height: 275px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.audience-card img {
    height: 100%;
    min-height: 275px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    transition: transform 0.35s ease;
}

.audience-card:hover img {
    transform: scale(1.03);
}

.audience-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(7, 18, 31, 0), rgba(7, 18, 31, 0.92));
}

.audience-overlay h3,
.audience-overlay p,
.audience-overlay a {
    color: #fff;
}

.audience-overlay p {
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}

.audience-overlay a,
.link-card,
.site-footer a {
    text-decoration: none;
}

.audience-overlay a {
    font-weight: 800;
}

.audience-overlay a::after {
    content: ' →';
}

.section-steps {
    background:
        radial-gradient(circle at 88% 28%, rgba(255, 116, 72, 0.18), transparent 22rem),
        linear-gradient(135deg, var(--brand-ink), var(--brand-navy));
    color: #fff;
}

.section-steps .section-heading h2,
.section-steps .step-card h3 {
    color: #fff;
}

.section-steps .section-intro,
.section-steps .step-card p {
    color: rgba(255, 255, 255, 0.72);
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
    position: relative;
    min-height: 190px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange));
    box-shadow: var(--glow-coral);
    font-weight: 800;
}

.compare-section,
.facts-section,
.page-sections {
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 154, 61, 0.08), transparent 22rem),
        #fffaf4;
}

.compare-grid,
.page-layout {
    align-items: start;
}

.compare-copy {
    position: sticky;
    top: 6rem;
}

.page-main,
.page-side {
    display: grid;
    gap: 1rem;
}

.body-section p:last-child,
.fact-card p:last-child,
.side-card p:last-child,
.media-card p:last-child,
.value-card p:last-child,
.compare-card p:last-child {
    margin-bottom: 0;
}

.pricing-package-card {
    display: grid;
    gap: 0.5rem;
    background: #fff;
}

.pricing-package-credits,
.pricing-package-price,
.pricing-package-description {
    margin: 0;
}

.pricing-package-credits {
    color: var(--brand-coral);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.82rem;
}

.pricing-package-price {
    color: var(--brand-ink);
    font-family: var(--heading-font);
    font-size: 2.35rem;
    line-height: 1;
}

.breadcrumbs {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.link-card-list {
    display: grid;
    gap: 0.75rem;
}

.link-card {
    display: grid;
    gap: 0.25rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 116, 72, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-main);
    background: rgba(255, 116, 72, 0.07);
}

.link-card strong {
    color: var(--brand-ink);
}

.link-card span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

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

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    padding: 0 1rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 12px 28px rgba(7, 18, 31, 0.07);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--brand-ink);
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0 0 1rem;
    color: var(--text-soft);
}

.faq-icon {
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange));
    font-weight: 800;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.cta-block {
    padding-bottom: 5rem;
    background: #fffaf4;
}

.cta-card {
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 2.2rem;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 82% 15%, rgba(255, 154, 61, 0.22), transparent 18rem),
        linear-gradient(135deg, var(--brand-ink), var(--brand-navy-2));
    box-shadow: var(--shadow-deep);
}

.cta-card h2,
.cta-card p {
    margin: 0;
    color: #fff;
}

.cta-card p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
}

.cta-card .btn-primary {
    margin-top: 0.2rem;
}

.site-footer {
    padding: 3rem 0 2.4rem;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 88% 20%, rgba(255, 116, 72, 0.13), transparent 20rem),
        linear-gradient(135deg, #07121f, #0b1b2c);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.site-footer h2 {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 1rem;
}

.site-footer p {
    margin: 0;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 0.42rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.footer-start-link {
    margin-top: 1rem;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(255, 154, 61, 0.55);
    outline-offset: 3px;
}

@media (max-width: 1160px) {
    .site-nav a {
        font-size: 0.82rem;
        padding-inline: 0.58rem;
    }

    .feature-grid--five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .site-nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 0;
        right: 0;
        display: none;
        padding: 0.85rem;
        background: rgba(7, 18, 31, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 22px;
        box-shadow: var(--shadow-deep);
    }

    .site-header.nav-open .site-nav {
        display: grid;
        gap: 0.25rem;
    }

    .site-nav a {
        width: 100%;
        justify-content: flex-start;
        font-size: 0.95rem;
    }

    .site-nav-cta {
        order: -1;
    }

    .hero-grid,
    .compare-grid,
    .page-layout,
    .feature-grid--three,
    .feature-grid--two,
    .fact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0 3.4rem;
    }

    .hero--home {
        min-height: auto;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 3.15rem;
    }

    .hero--home .hero-art {
        display: none;
    }

    .page-hero .hero-art img {
        aspect-ratio: 16 / 10;
    }

    .media-card--feature {
        grid-column: auto;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .compare-copy {
        position: static;
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .site-shell {
        width: calc(100% - 1.4rem);
    }

    .site-header .site-shell {
        padding: 0.65rem 0;
    }

    .site-brand img {
        width: 40px;
        height: 40px;
    }

    .site-brand-name {
        font-size: 1.18rem;
    }

    .site-brand-tagline {
        font-size: 0.64rem;
    }

    .hero {
        padding: 3.2rem 0 2.6rem;
    }

    .hero--home::before {
        background:
            linear-gradient(180deg, rgba(7, 18, 31, 0.96) 0%, rgba(7, 18, 31, 0.78) 54%, rgba(7, 18, 31, 0.94) 100%),
            url('/img/responsive/homepage-hero-768.webp') center top / cover no-repeat;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.35rem;
    }

    .lead,
    .section-intro {
        font-size: 1rem;
    }

    .hero-actions,
    .cta-card .btn-primary {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .proof-chip-row {
        display: none;
    }

    .section {
        padding: 3rem 0;
    }

    .section-heading {
        text-align: left;
    }

    .section-heading h2,
    .fact-card h2,
    .body-section h2,
    .side-card h2,
    .cta-card h2 {
        font-size: 1.75rem;
    }

    .feature-grid--five,
    .steps-grid,
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 1.35rem;
        justify-items: stretch;
        text-align: left;
    }

    .cta-points {
        display: none;
    }
}

/* 2026-05 product-led redesign: reduce generic SaaS/card feel and make Muzino's control flow visible. */
:root {
    --brand-ink: #06111d;
    --brand-navy: #081725;
    --brand-navy-2: #112437;
    --brand-coral: #ff6d45;
    --brand-orange: #f6a340;
    --brand-cream: #fff4e7;
    --brand-soft: #f3eadf;
    --shadow-soft: 0 18px 44px rgba(6, 17, 29, 0.11);
    --shadow-deep: 0 28px 90px rgba(6, 17, 29, 0.48);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --heading-font: 'Poppins', Arial, sans-serif;
    --body-font: 'Poppins', Arial, sans-serif;
}

.marketing-body {
    background:
        linear-gradient(180deg, #fff5ea 0%, #f6eee4 46%, #fffaf3 100%);
}

.marketing-body h1,
.marketing-body h2,
.marketing-body h3,
.marketing-body h4 {
    font-weight: 800;
}

.site-header {
    background: rgba(8, 18, 30, 0.94);
}

.site-brand-name {
    font-family: var(--body-font);
    font-weight: 800;
}

.hero--home {
    min-height: 760px;
    padding-top: 6rem;
}

.hero--home::before {
    background:
        linear-gradient(90deg, rgba(6, 17, 29, 0.98) 0%, rgba(6, 17, 29, 0.86) 42%, rgba(6, 17, 29, 0.34) 100%),
        radial-gradient(circle at 78% 18%, rgba(255, 109, 69, 0.28), transparent 18rem),
        url('/img/responsive/homepage-hero-1536.webp') center right / cover no-repeat;
}

.hero h1,
.page-hero h1 {
    max-width: 720px;
    font-size: clamp(3.25rem, 5.8vw, 5.9rem);
    line-height: 0.98;
}

.hero .lead {
    max-width: 660px;
    font-size: 1.08rem;
}

.eyebrow,
.section-kicker {
    border-radius: 0;
    border-left: 3px solid var(--brand-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.btn-primary,
.btn-secondary,
.footer-start-link {
    border-radius: 999px;
}

.hero-art--product::before {
    display: none;
}

.product-stage {
    position: relative;
    min-height: 520px;
}

.product-stage > img {
    width: min(100%, 620px);
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px 28px 120px 28px;
    opacity: 0.74;
    filter: saturate(0.92) contrast(1.05);
    box-shadow: var(--shadow-deep);
}

.hero--home .hero-art img {
    opacity: 0.74;
}

.host-panel,
.mobile-card-preview,
.print-card-preview {
    position: absolute;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(8, 23, 37, 0.94), rgba(20, 39, 58, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(16px);
}

.host-panel {
    left: -1.5rem;
    bottom: 2rem;
    width: 330px;
    padding: 1.2rem;
    border-radius: 18px;
}

.host-panel-label,
.mobile-card-preview > span,
.print-card-preview > span {
    display: block;
    color: var(--brand-orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.host-panel strong,
.mobile-card-preview strong,
.print-card-preview strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.05rem;
}

.host-panel ol {
    display: grid;
    gap: 0.45rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.host-panel li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    line-height: 1.2;
}

.host-panel li span {
    display: inline-grid;
    place-items: center;
    width: 1.35rem;
    height: 1.35rem;
    color: #06111d;
    background: var(--brand-orange);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
}

.mobile-card-preview {
    right: -0.8rem;
    top: 3.2rem;
    width: 210px;
    padding: 1rem;
    border-radius: 26px;
    transform: rotate(3deg);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin: 0.9rem 0;
}

.mini-grid i {
    display: block;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
}

.mini-grid i.hit {
    background:
        radial-gradient(circle at center, #fff 0 22%, transparent 23%),
        var(--brand-coral);
}

.print-card-preview {
    right: 4rem;
    bottom: 0.6rem;
    width: 210px;
    padding: 1rem;
    border-radius: 6px 18px 18px 18px;
    transform: rotate(-2deg);
}

.section-control {
    position: relative;
    background:
        linear-gradient(180deg, #fff7ec 0%, #fffaf5 100%);
}

.media-card--control {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 18px;
}

.media-card--control::before {
    content: '';
    display: block;
    width: 44px;
    height: 4px;
    margin: 0.35rem 0.45rem 0;
    background: linear-gradient(90deg, var(--brand-coral), var(--brand-orange));
    border-radius: 999px;
}

.media-card--control img {
    order: -1;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.section-steps {
    background:
        linear-gradient(135deg, #06111d 0%, #0b1d30 52%, #211824 100%);
}

.steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.step-card {
    border-radius: 4px 22px 22px 22px;
}

.compare-section {
    background:
        linear-gradient(90deg, #fff4e7 0%, #fffaf4 44%, #f2e7da 100%);
}

.compare-card {
    border-radius: 8px 24px 24px 8px;
}

.audience-card {
    border-radius: 8px 28px 8px 28px;
}

.cta-card {
    border-radius: 8px 30px 30px 30px;
}

@media (max-width: 960px) {
    .hero--home .hero-art {
        display: block;
        align-self: stretch;
    }

    .hero-visual-mobile {
        display: none;
    }

    .product-stage {
        min-height: 410px;
        margin-top: 1.4rem;
    }

    .product-stage > img {
        min-height: 410px;
        width: 100%;
        border-radius: 22px;
    }

    .host-panel {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
    }

    .mobile-card-preview {
        right: 1rem;
        top: 1rem;
        width: 160px;
    }

    .print-card-preview {
        display: none;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .site-header .site-shell {
        padding: 0.55rem 0;
    }

    .site-brand img {
        width: 38px;
        height: 38px;
    }

    .site-brand-name {
        font-size: 1.08rem;
    }

    .site-brand-tagline {
        font-size: 0.58rem;
    }

    .site-nav-toggle {
        width: 2.65rem;
        height: 2.65rem;
    }

    .hero {
        padding: 2.4rem 0 2.25rem;
    }

    .hero--home {
        padding-top: 2.5rem;
    }

    .eyebrow,
    .section-kicker {
        max-width: 100%;
        font-size: 0.66rem;
        line-height: 1.25;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.08rem;
        line-height: 1.06;
        margin-bottom: 0.8rem;
    }

    .hero .lead {
        font-size: 0.94rem;
        line-height: 1.65;
        margin-bottom: 0.9rem;
    }

    .hero-benefits {
        gap: 0.42rem;
        margin-top: 0.85rem;
    }

    .hero-benefits li {
        font-size: 0.9rem;
        line-height: 1.45;
        padding-left: 1.55rem;
    }

    .hero-actions {
        margin-top: 1rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        min-height: 3.05rem;
        padding-block: 0.82rem;
    }

    .product-stage {
        min-height: 330px;
        margin-top: 1rem;
    }

    .product-stage > img {
        min-height: 330px;
        opacity: 0.56;
        border-radius: 18px;
    }

    .mobile-card-preview {
        width: 132px;
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.75rem;
    }

    .host-panel {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 0.8rem;
    }

    .host-panel ol {
        grid-template-columns: 1fr;
        gap: 0.32rem;
        margin-top: 0.65rem;
    }

    .host-panel li {
        padding: 0.42rem 0.55rem;
        font-size: 0.84rem;
    }

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

/* Navigation and subpage polish pass: cleaner alignment and less blocky content pages. */
.site-header .site-shell {
    width: min(1260px, calc(100% - 2.2rem));
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    min-height: 76px;
}

.site-brand {
    min-width: 190px;
}

.site-brand img {
    width: 42px;
    height: 42px;
}

.site-brand-name {
    font-size: 1.18rem;
}

.site-brand-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
}

.site-nav {
    justify-content: flex-end;
    gap: 0.12rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.site-nav a {
    position: relative;
    min-height: 2.5rem;
    padding: 0.58rem 0.56rem;
    border-radius: 999px;
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
}

.site-nav a:not(.site-nav-cta).is-active,
.site-nav a:not(.site-nav-cta):hover,
.site-nav a:not(.site-nav-cta):focus-visible {
    background: rgba(255, 255, 255, 0.075);
}

.site-nav a:not(.site-nav-cta).is-active::after {
    content: '';
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.3rem;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-coral), var(--brand-orange));
    border-radius: 999px;
}

.site-nav-cta {
    min-height: 2.8rem;
    margin-left: 0.65rem;
    padding-inline: 1.25rem !important;
    box-shadow: 0 12px 28px rgba(255, 109, 69, 0.24);
}

.site-nav-cta::after {
    margin-left: 0.45rem;
}

.content-page:not(.content-page--legal) .page-hero {
    min-height: 540px;
    padding: 5.3rem 0 5rem;
    background:
        linear-gradient(115deg, rgba(6, 17, 29, 0.96) 0%, rgba(6, 17, 29, 0.86) 48%, rgba(6, 17, 29, 0.72) 100%),
        radial-gradient(circle at 78% 18%, rgba(255, 109, 69, 0.22), transparent 17rem);
}

.content-page:not(.content-page--legal) .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 17, 29, 0.42), transparent 58%),
        url('/img/responsive/homepage-hero-1536.webp') center right / cover no-repeat;
    opacity: 0.24;
}

.content-page:not(.content-page--legal) .page-hero .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
    gap: 3.2rem;
}

.content-page:not(.content-page--legal) .page-hero .hero-copy {
    max-width: 740px;
}

.content-page:not(.content-page--legal) .page-hero h1 {
    font-size: clamp(2.65rem, 4.4vw, 4.85rem);
    line-height: 1.02;
}

.content-page:not(.content-page--legal) .page-hero .lead {
    max-width: 690px;
}

.content-page:not(.content-page--legal) .page-hero .hero-art {
    align-self: center;
}

.content-page:not(.content-page--legal) .page-hero .hero-art::before {
    display: none;
}

.content-page:not(.content-page--legal) .page-hero .hero-art img {
    border-radius: 10px 42px 10px 42px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: rotate(1.5deg);
    box-shadow: var(--shadow-deep);
}

.content-page:not(.content-page--legal) .breadcrumbs {
    margin-bottom: 1.3rem;
    background: rgba(255, 255, 255, 0.08);
}

.content-page:not(.content-page--legal) .facts-section {
    position: relative;
    z-index: 2;
    margin-top: -3.25rem;
    padding-top: 0;
    background: transparent;
}

.content-page:not(.content-page--legal) .fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.content-page:not(.content-page--legal) .fact-card {
    position: relative;
    min-height: 145px;
    padding: 1.3rem 1.35rem;
    color: #fff;
    background:
        radial-gradient(circle at 22% 0%, rgba(255, 158, 67, 0.18), transparent 12rem),
        linear-gradient(145deg, rgba(9, 25, 40, 0.98), rgba(24, 43, 62, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px 8px 20px 8px;
    box-shadow: 0 18px 36px rgba(6, 17, 29, 0.22);
}

.content-page:not(.content-page--legal) .fact-card::before {
    content: '';
    position: absolute;
    inset: 0.75rem auto auto 0.85rem;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--brand-orange);
    border-radius: 999px;
    box-shadow: 0 0 0 0.35rem rgba(255, 123, 72, 0.14);
}

.content-page:not(.content-page--legal) .fact-card:nth-child(2) {
    border-radius: 8px 24px 8px 24px;
    transform: translateY(0.65rem);
}

.content-page:not(.content-page--legal) .fact-card:nth-child(3) {
    border-radius: 24px 8px 24px 8px;
}

.content-page:not(.content-page--legal) .fact-card h2 {
    color: var(--brand-orange);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-page:not(.content-page--legal) .fact-card p {
    color: rgba(255, 255, 255, 0.82);
}

.content-page:not(.content-page--legal) .page-sections {
    padding-top: 4.5rem;
    background:
        linear-gradient(90deg, #fff7ec 0%, #fffaf4 48%, #f4ecdf 100%);
}

.content-page:not(.content-page--legal) .page-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 4rem;
}

.content-page:not(.content-page--legal) .page-main {
    counter-reset: page-section;
    gap: 0;
}

.content-page:not(.content-page--legal) .body-section {
    counter-increment: page-section;
    position: relative;
    padding: 0 0 2.85rem 3rem;
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(6, 17, 29, 0.16);
    border-radius: 0;
    box-shadow: none;
}

.content-page:not(.content-page--legal) .body-section::before {
    content: counter(page-section);
    position: absolute;
    left: -1.1rem;
    top: 0;
    display: grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    color: #06111d;
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-orange));
    border-radius: 50%;
    font-size: 0.86rem;
    font-weight: 800;
}

.content-page:not(.content-page--legal) .body-section h2 {
    max-width: 760px;
    font-size: clamp(1.55rem, 2.1vw, 2.35rem);
}

.content-page:not(.content-page--legal) .body-section p,
.content-page:not(.content-page--legal) .body-section .check-list {
    max-width: 760px;
}

.content-page:not(.content-page--legal) .body-section .check-list {
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 249, 239, 0.74));
    border: 1px solid rgba(6, 17, 29, 0.08);
    border-radius: 8px 18px 18px 8px;
}

.content-page:not(.content-page--legal) .page-side {
    position: sticky;
    top: 7rem;
    align-self: start;
}

.content-page:not(.content-page--legal) .side-card {
    padding: 1.25rem;
    color: #fff;
    background:
        linear-gradient(150deg, rgba(8, 23, 37, 0.98), rgba(26, 39, 56, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px 24px 24px 8px;
    box-shadow: var(--shadow-soft);
}

.content-page:not(.content-page--legal) .side-card h2 {
    color: #fff;
    font-size: 1.15rem;
}

.content-page:not(.content-page--legal) .link-card {
    padding: 0.85rem 0;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
}

.content-page:not(.content-page--legal) .link-card:first-child {
    border-top: 0;
}

.content-page:not(.content-page--legal) .link-card strong {
    color: #fff;
}

.content-page:not(.content-page--legal) .link-card span {
    color: rgba(255, 255, 255, 0.68);
}

.content-page:not(.content-page--legal) .pricing-package-card {
    border-radius: 8px 22px 22px 8px;
}

@media (max-width: 1220px) {
    .site-header .site-shell {
        gap: 1.1rem;
    }

    .site-brand {
        min-width: 158px;
    }

    .site-nav a {
        font-size: 0.76rem;
        padding-inline: 0.43rem;
    }

    .site-nav-cta {
        margin-left: 0.35rem;
        padding-inline: 1rem !important;
    }
}

@media (max-width: 1040px) {
    .site-header .site-shell {
        display: flex;
        min-height: auto;
    }

    .site-brand img {
        width: 3.25rem;
        height: 3.25rem;
        padding: 0.26rem;
        background:
            radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86) 54%, rgba(213, 244, 251, 0.78) 100%);
        border: 1px solid rgba(103, 211, 234, 0.3);
        border-radius: 14px 7px 14px 7px;
        box-shadow:
            0 10px 22px rgba(0, 181, 226, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.76);
        object-fit: contain;
        filter: contrast(1.15) saturate(1.08);
    }

    .site-brand-name {
        color: #ffffff;
        font-size: 1.18rem;
        line-height: 1;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
    }

    .site-brand-tagline {
        color: rgba(255, 255, 255, 0.84);
        font-size: 0.58rem;
        font-weight: 800;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
    }

    .site-nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: auto;
        right: 0;
        display: none;
        width: min(360px, calc(100vw - 2rem));
        padding: 0.85rem;
        background: rgba(7, 18, 31, 0.98);
        border: 1px solid var(--border-dark);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-deep);
    }

    .site-header.nav-open .site-nav {
        display: grid;
        gap: 0.25rem;
    }

    .site-nav a {
        width: 100%;
        justify-content: flex-start;
        min-height: 2.8rem;
        font-size: 0.92rem;
    }

    .site-nav-cta {
        order: -1;
        justify-content: center !important;
        margin: 0 0 0.4rem !important;
    }

    .content-page:not(.content-page--legal) .page-hero .hero-grid,
    .content-page:not(.content-page--legal) .page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-page:not(.content-page--legal) .page-side {
        position: static;
    }
}

@media (max-width: 760px) {
    .site-header {
        background:
            linear-gradient(180deg, rgba(18, 30, 43, 0.99), rgba(13, 24, 37, 0.99));
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
    }

    .site-header .site-shell {
        width: min(100% - 1.5rem, 1260px);
    }

    .site-brand {
        min-width: 0;
        gap: 0.62rem;
    }

    .site-brand img {
        display: block;
    }

    .site-nav-toggle {
        width: 2.9rem;
        height: 2.9rem;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.22);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .site-nav {
        left: 50%;
        right: auto;
        width: min(352px, calc(100vw - 2rem));
        transform: translateX(-50%);
        border-radius: 20px;
    }

    .site-header.nav-open .site-nav {
        gap: 0.16rem;
    }

    .site-nav a {
        justify-content: center;
        min-height: 2.65rem;
        font-size: 0.9rem;
    }

    .content-page:not(.content-page--legal) .page-hero {
        min-height: auto;
        padding: 2.65rem 0 3.75rem;
    }

    .content-page:not(.content-page--legal) .page-hero .hero-art {
        display: none;
    }

    .content-page:not(.content-page--legal) .breadcrumbs {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        margin-bottom: 0.85rem;
        padding: 0.35rem 0.55rem;
        background: rgba(255, 255, 255, 0.08);
        border-left: 2px solid var(--brand-orange);
        border-radius: 0 10px 10px 0;
        font-size: 0.78rem;
        overflow: hidden;
    }

    .content-page:not(.content-page--legal) .breadcrumbs span {
        display: none;
    }

    .content-page:not(.content-page--legal) .page-hero h1 {
        font-size: clamp(2.25rem, 11.5vw, 2.85rem);
        line-height: 1.03;
    }

    .content-page:not(.content-page--legal) .page-hero .lead {
        font-size: 1rem;
        line-height: 1.72;
    }

    .content-page:not(.content-page--legal) .fact-grid {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        border-radius: 14px;
    }

    .content-page:not(.content-page--legal) .fact-card {
        min-height: auto;
        padding: 1.1rem 1.2rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px 18px 18px 8px;
        transform: none;
    }

    .content-page:not(.content-page--legal) .fact-card:nth-child(2),
    .content-page:not(.content-page--legal) .fact-card:nth-child(3) {
        border-radius: 8px 18px 18px 8px;
        transform: none;
    }

    .content-page:not(.content-page--legal) .body-section {
        padding-left: 1.65rem;
        padding-bottom: 2.25rem;
        border-left-color: rgba(255, 123, 72, 0.26);
    }

    .content-page:not(.content-page--legal) .body-section::before {
        left: -0.8rem;
        width: 1.62rem;
        height: 1.62rem;
        font-size: 0.72rem;
    }

    .content-page:not(.content-page--legal) .body-section h2 {
        font-size: clamp(1.5rem, 7.4vw, 2.05rem);
        line-height: 1.06;
    }

    .content-page:not(.content-page--legal) .body-section p {
        line-height: 1.68;
    }

    .content-page:not(.content-page--legal) .body-section .check-list {
        margin-left: -0.15rem;
        border-radius: 8px 16px 16px 8px;
    }

    .content-page:not(.content-page--legal) .side-card {
        border-radius: 8px 20px 20px 8px;
    }
}
