body.marketing {
    --bg: #f6f7fb;
    --surface: #ffffff;
    --surface-alt: #eef3f9;
    --surface-soft: #f3f6fb;
    --ink: #1d2433;
    --muted: #586377;
    --accent: #2bb8b0;
    --accent-strong: #2d6ac8;
    --accent-violet: #6a5ed6;
    --accent-soft: rgba(43, 184, 176, 0.16);
    --border: rgba(29, 36, 51, 0.12);
    --shadow: 0 20px 40px rgba(20, 28, 45, 0.08);
    --shadow-soft: 0 12px 24px rgba(20, 28, 45, 0.06);
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --max-width: 1120px;
    --section-pad: 4.1rem;
    --section-pad-compact: 3.4rem;
    --header-height: 4.6rem;
    --brand-gradient: linear-gradient(135deg, #2cc7be 0%, #3d7dd6 55%, #6a5ed6 100%);

    margin: 0;
    min-height: 100%;
    font-family: "IBM Plex Sans", "Noto Sans", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1200px 620px at 10% -18%, rgba(44, 199, 190, 0.18) 0%, transparent 70%),
        radial-gradient(1000px 540px at 90% 0%, rgba(106, 94, 214, 0.16) 0%, transparent 68%),
        var(--bg);
    line-height: 1.6;
}

body.marketing *,
body.marketing *::before,
body.marketing *::after {
    box-sizing: border-box;
}

body.marketing img {
    max-width: 100%;
    display: block;
}

body.marketing a {
    color: inherit;
    text-decoration: none;
}

body.marketing a:focus-visible,
body.marketing button:focus-visible {
    outline: 3px solid rgba(45, 106, 200, 0.35);
    outline-offset: 3px;
    border-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 16px;
    background: var(--accent-strong);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    z-index: 1000;
}

.skip-link:focus {
    left: 16px;
}

.section-slot {
    display: contents;
}

.container {
    width: min(var(--max-width), 100% - 2rem);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(14px);
    background: rgba(246, 247, 251, 0.9);
    border-bottom: 1px solid rgba(29, 36, 51, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.8rem 0;
    flex-wrap: nowrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand__logo {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 18px rgba(20, 28, 45, 0.12);
    background: #ffffff;
}

.brand__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.brand__name {
    font-family: "IBM Plex Serif", "Spectral", serif;
    font-size: 1.05rem;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    row-gap: 0.4rem;
}

.nav a {
    padding: 0.25rem 0;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-gradient);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: left;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
    color: var(--ink);
}

.nav a:hover::after {
    opacity: 0.6;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.15rem 0.4rem;
    background: rgba(255, 255, 255, 0.85);
}

.lang-switcher select {
    border: none;
    background: transparent;
    font: inherit;
    color: var(--muted);
    font-weight: 600;
    padding: 0.25rem 0.4rem;
    cursor: pointer;
}

.lang-switcher select:focus-visible {
    outline: 2px solid rgba(45, 106, 200, 0.35);
    outline-offset: 2px;
    border-radius: 999px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2bb8b0 0%, #3171cc 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(45, 106, 200, 0.22);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(45, 106, 200, 0.28);
}

.btn-secondary {
    border-color: var(--border);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    border-color: rgba(45, 106, 200, 0.4);
    color: var(--accent-strong);
    transform: translateY(-1px);
}

.section {
    position: relative;
    padding: var(--section-pad) 0;
    scroll-margin-top: calc(var(--header-height) + 1.4rem);
}

.section--compact {
    padding: var(--section-pad-compact) 0;
}

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

.section--tint::before,
.section--tint::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(45, 106, 200, 0.2) 50%, transparent 100%);
}

.section--tint::before {
    top: 0;
}

.section--tint::after {
    bottom: 0;
}

.section__header {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2.4rem;
    max-width: 720px;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-strong);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-gradient);
}

h1,
h2,
h3 {
    font-family: "IBM Plex Serif", "Spectral", serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 0.6rem;
}

h1 {
    font-size: clamp(2.4rem, 3.2vw, 3.6rem);
}

h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.7rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1.2rem;
    color: var(--muted);
}

.lead {
    font-size: 1.1rem;
    color: var(--ink);
}

.hero {
    padding: 4.8rem 0 4rem;
    overflow: hidden;
}

.lang-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.lang-gate__card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.lang-gate__logo {
    width: 120px;
    margin: 0 auto 1rem;
}

.lang-gate__options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero__shape {
    position: absolute;
    top: -140px;
    right: -140px;
    width: 360px;
    height: 320px;
    opacity: 0.22;
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.6rem;
    align-items: center;
}

.hero__intro {
    display: grid;
    gap: 1rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0 1rem;
}

.highlight-grid {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.6rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--ink);
    box-shadow: 0 10px 20px rgba(20, 28, 45, 0.05);
}

.hero__panel {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(29, 36, 51, 0.1);
    box-shadow: var(--shadow);
}

.hero__logo {
    width: 180px;
    height: auto;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--accent-soft);
    color: var(--accent-strong);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    width: fit-content;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(20, 28, 45, 0.08);
}

.card p {
    margin-bottom: 0;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.list li {
    padding-left: 1.4rem;
    position: relative;
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-gradient);
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.7rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    box-shadow: var(--shadow-soft);
}

.pricing-card h3 {
    margin-bottom: 0.3rem;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink);
}

.pricing-card .subtle {
    font-size: 0.9rem;
    color: var(--muted);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
    color: var(--muted);
}

.pricing-card ul li {
    padding-left: 1.2rem;
    position: relative;
}

.pricing-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.pricing-card__cta {
    margin-top: auto;
}

.pricing-note {
    margin-top: 1.6rem;
    background: var(--surface-soft);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    color: var(--muted);
    border: 1px solid rgba(45, 106, 200, 0.12);
}

.callout {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(45, 106, 200, 0.12);
    box-shadow: var(--shadow-soft);
}

.callout h3 {
    margin-bottom: 0.8rem;
}

.trust-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(29, 36, 51, 0.12);
    background: #ffffff;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.footer a {
    color: var(--accent-strong);
    text-decoration: underline;
    text-decoration-color: rgba(45, 106, 200, 0.3);
}

.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;
}

.text-link {
    color: var(--accent-strong);
    text-decoration: underline;
    text-decoration-color: rgba(45, 106, 200, 0.3);
}

.muted {
    color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .card,
    .btn,
    .nav a::after {
        transition: none;
    }
}

@media (max-width: 900px) {
    .site-header {
        position: static;
    }

    .hero {
        padding-top: 4.2rem;
    }

    .hero__shape {
        top: -180px;
        right: -200px;
        opacity: 0.18;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .header-actions {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .brand__name {
        font-size: 0.95rem;
    }

    .hero__logo {
        width: 150px;
    }

    .pricing-grid,
    .grid--3,
    .grid--2 {
        grid-template-columns: 1fr;
    }
}
