:root {
    --navy: #12264a;
    --navy-mid: #1b3a6b;
    --navy-deep: #07111f;
    --ink: #101828;
    --muted: #4b5568;
    --orange: #e85d04;
    --orange-hot: #f97316;
    --gold: #e8b923;
    --blue: #2f6fdb;
    --fog: #f5f3ee;
    --sand: #efeae2;
    --line: rgba(16, 24, 40, 0.1);
    --line-strong: rgba(16, 24, 40, 0.16);
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(7, 17, 31, 0.18);
    --radius: 18px;
    --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    --serif: "Instrument Serif", Georgia, serif;
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body.marketing-body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

.mkt-wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.mkt-skip {
    position: absolute;
    left: -999px;
}

.mkt-skip:focus {
    left: 16px;
    top: 16px;
    z-index: 80;
    background: #fff;
    padding: 8px 12px;
}

/* Nav */
.mkt-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(7, 17, 31, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mkt-nav__bar {
    display: flex;
    align-items: center;
    gap: 28px;
    min-height: 72px;
    position: relative;
}

.mkt-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.mkt-brand__mark {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 5px 10px 5px 8px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mkt-brand img,
.mkt-brand__mark img {
    height: 38px;
    width: auto;
    max-width: 186px;
    object-fit: contain;
}

.mkt-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mkt-nav__links > li {
    position: relative;
}

.mkt-nav__links a,
.mkt-nav__links button {
    font: inherit;
    background: none;
    border: 0;
    color: rgba(255, 255, 255, 0.86);
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.94rem;
}

.mkt-nav__links a:hover,
.mkt-nav__links button:hover,
.mkt-nav__links a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.mkt-drop {
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    min-width: 320px;
    padding: 10px;
    background: #fff;
    color: var(--ink);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
    grid-template-columns: 1fr;
    gap: 2px;
}

.mkt-nav__links > li:hover .mkt-drop,
.mkt-nav__links > li:focus-within .mkt-drop,
.mkt-nav__links > li.is-open .mkt-drop {
    display: grid;
}

.mkt-drop a {
    color: var(--ink) !important;
    padding: 10px 12px;
    border-radius: 10px;
    display: grid;
    gap: 2px;
}

.mkt-drop a strong {
    font-size: 0.92rem;
}

.mkt-drop a span {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.mkt-drop a:hover {
    background: var(--fog) !important;
}

.mkt-nav__panel {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    min-width: 0;
}

.mkt-nav__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.mkt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

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

.mkt-btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.28);
}

.mkt-btn--primary:hover {
    background: var(--orange-hot);
}

.mkt-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.mkt-btn--dark {
    background: var(--navy-deep);
    color: #fff;
}

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

.mkt-btn--lg {
    padding: 14px 22px;
    font-size: 1rem;
}

.mkt-menu-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

/* Hero */
.mkt-hero {
    background:
        radial-gradient(900px 420px at 80% -10%, rgba(232, 93, 4, 0.22), transparent 60%),
        radial-gradient(700px 400px at 10% 20%, rgba(47, 111, 219, 0.2), transparent 55%),
        var(--navy-deep);
    color: #fff;
    padding: 72px 0 28px;
    overflow: hidden;
}

.mkt-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.mkt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.mkt-hero h1,
.mkt-page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin: 0 0 18px;
    font-weight: 800;
}

.mkt-hero h1 em,
.mkt-page-hero h1 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: #ffd7b0;
}

.mkt-lede {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 38rem;
    margin: 0 0 28px;
}

.mkt-hero-form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mkt-hero-form input[type="email"] {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 10px 16px;
    font: inherit;
    outline: none;
}

.mkt-hero-form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.mkt-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.mkt-note {
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.mkt-flash {
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.mkt-error {
    color: #fecaca;
    font-size: 0.85rem;
    margin: 8px 0 0;
}

/* Device / UI mock */
.mkt-device {
    background: linear-gradient(180deg, #1c2d4a, #121c2e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.mkt-device__chrome {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.mkt-device__chrome span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3f4d66;
}

.mkt-ui {
    background: #f7f8fb;
    color: var(--ink);
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
}

.mkt-ui__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    font-size: 0.86rem;
}

.mkt-ui__prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--fog);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
}

.mkt-ui__body {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 12px;
    padding: 14px;
}

.mkt-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
}

.mkt-person {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.mkt-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy-mid), var(--orange));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.mkt-dl {
    display: grid;
    gap: 8px;
    font-size: 0.78rem;
}

.mkt-dl div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.mkt-dl dt {
    color: var(--muted);
}

.mkt-dl dd {
    margin: 0;
    font-weight: 700;
}

.mkt-bars {
    display: grid;
    gap: 10px;
    align-content: end;
    height: 180px;
    grid-template-columns: repeat(6, 1fr);
}

.mkt-bars span {
    background: linear-gradient(180deg, var(--orange-hot), var(--navy-mid));
    border-radius: 8px 8px 4px 4px;
    align-self: end;
}

.mkt-chip {
    display: inline-flex;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    background: #ecfdf3;
    color: #067647;
}

.mkt-chip--warn {
    background: #fff7ed;
    color: #c2410c;
}

/* Sections */
.mkt-section {
    padding: 88px 0;
}

.mkt-section--fog {
    background: var(--fog);
}

.mkt-section--sand {
    background: var(--sand);
}

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

.mkt-section h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0 0 14px;
}

.mkt-section h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
}

.mkt-section--navy h2 em {
    color: #ffd7b0;
}

.mkt-sub {
    color: var(--muted);
    max-width: 42rem;
    margin: 0 0 36px;
    font-size: 1.05rem;
}

.mkt-section--navy .mkt-sub {
    color: rgba(255, 255, 255, 0.72);
}

.mkt-center {
    text-align: center;
}

.mkt-center .mkt-sub {
    margin-left: auto;
    margin-right: auto;
}

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

.mkt-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.mkt-suite {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mkt-suite:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.mkt-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff;
}

.mkt-icon svg {
    width: 22px;
    height: 22px;
}

.mkt-suite h3 {
    margin: 8px 0 0;
    font-size: 1.15rem;
}

.mkt-suite p {
    margin: 0;
    color: var(--muted);
    flex: 1;
}

.mkt-suite span {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--orange);
}

.mkt-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mkt-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.mkt-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
}

.mkt-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff3e8;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-weight: 800;
}

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

.mkt-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px;
}

.mkt-stat b {
    display: block;
    font-size: 2rem;
    letter-spacing: -0.04em;
    color: var(--gold);
}

.mkt-stat span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.mkt-quote {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--line);
}

.mkt-quote p {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.mkt-quote h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.mkt-quote footer {
    color: var(--muted);
    font-size: 0.88rem;
}

.mkt-quote strong {
    color: var(--ink);
}

.mkt-cta-band {
    background:
        linear-gradient(120deg, rgba(232, 93, 4, 0.95), rgba(18, 38, 74, 0.95)),
        var(--navy);
    color: #fff;
    border-radius: 28px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.mkt-cta-band h2 {
    margin: 0 0 8px;
    font-size: 2rem;
}

.mkt-cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Inner pages */
.mkt-page-hero {
    background: var(--navy-deep);
    color: #fff;
    padding: 72px 0 64px;
}

.mkt-page-hero .mkt-lede {
    margin-bottom: 24px;
}

.mkt-feature {
    display: grid;
    gap: 8px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.mkt-feature h3 {
    margin: 0;
    font-size: 1.05rem;
}

.mkt-feature p {
    margin: 0;
    color: var(--muted);
}

.mkt-form {
    display: grid;
    gap: 14px;
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--line);
}

.mkt-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
    font-size: 0.88rem;
}

.mkt-form input,
.mkt-form select,
.mkt-form textarea {
    font: inherit;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
}

.mkt-form textarea {
    min-height: 120px;
    resize: vertical;
}

.mkt-price {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mkt-price.is-featured {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.mkt-price h3 {
    margin: 0;
}

.mkt-price .amt {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.mkt-price ul {
    margin: 0 0 12px;
    padding-left: 18px;
    color: var(--muted);
}

.mkt-flag {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
}

/* Footer */
.mkt-footer {
    background: #07111f;
    color: rgba(255, 255, 255, 0.75);
    padding: 56px 0 28px;
}

.mkt-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 28px;
}

.mkt-footer h4 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 0.86rem;
}

.mkt-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mkt-footer a:hover {
    color: #fff;
}

.mkt-footer__legal {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
}

@media (max-width: 980px) {
    .mkt-hero__grid,
    .mkt-split,
    .mkt-grid-2,
    .mkt-ui__body,
    .mkt-cta-band,
    .mkt-footer__grid {
        grid-template-columns: 1fr;
    }

    .mkt-grid-3,
    .mkt-stats {
        grid-template-columns: 1fr 1fr;
    }

    .mkt-menu-toggle {
        display: grid;
        place-items: center;
    }

    .mkt-nav__panel {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #07111f;
        padding: 12px 20px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mkt-nav.is-open .mkt-nav__panel {
        display: block;
    }

    .mkt-nav__links,
    .mkt-nav__cta {
        display: none;
    }

    .mkt-nav.is-open .mkt-nav__links {
        display: grid;
        gap: 4px;
    }

    .mkt-nav.is-open .mkt-nav__cta {
        display: flex;
        flex-wrap: wrap;
        margin: 12px 0 0;
    }

    .mkt-drop {
        position: static;
        min-width: 0;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.04);
        display: none;
    }

    .mkt-nav__links > li.is-open .mkt-drop {
        display: grid;
    }

    .mkt-drop a {
        color: #fff !important;
    }

    .mkt-drop a span {
        color: rgba(255, 255, 255, 0.6);
    }

    .mkt-hero-form {
        flex-direction: column;
        border-radius: 18px;
    }
}

@media (max-width: 640px) {
    .mkt-grid-3,
    .mkt-stats {
        grid-template-columns: 1fr;
    }

    .mkt-section,
    .mkt-hero,
    .mkt-page-hero {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .mkt-cta-band {
        padding: 28px;
    }

    .mkt-brand__name {
        display: none;
    }
}

.mkt-crumbs {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
}

.mkt-crumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 4px 0 12px;
}

.mkt-crumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    opacity: 0.45;
}

.mkt-crumbs a:hover {
    color: #fff;
}

.mkt-crumbs [aria-current="page"] {
    color: #fff;
}

.mkt-faq {
    display: grid;
    gap: 10px;
    max-width: 800px;
}

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

.mkt-faq summary {
    cursor: pointer;
    font-weight: 700;
    padding: 14px 0;
}

.mkt-faq details p {
    margin: 0 0 16px;
    color: var(--muted);
}
