:root {
    --bg: #f5f7fb;
    --bg-strong: #eef3ff;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --surface-dark: #13203b;
    --surface-accent: #0f172a;
    --text: #101828;
    --text-soft: #475467;
    --text-muted: #667085;
    --brand: #1388ff;
    --brand-strong: #0058ff;
    --brand-mint: #8af4d0;
    --brand-lilac: #d7dbff;
    --shadow-lg: 0 30px 80px -40px rgba(18, 30, 61, 0.34);
    --shadow-md: 0 18px 45px -30px rgba(18, 30, 61, 0.32);
    --container: 1240px;
    --font-body: "Manrope", sans-serif;
    --font-display: "Space Grotesk", sans-serif;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(19, 136, 255, 0.16), transparent 26%),
        radial-gradient(circle at top right, rgba(138, 244, 208, 0.18), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f4f7fc 46%, #eef2f8 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(circle at center, black 28%, transparent 78%);
    opacity: 0.34;
}

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

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

button,
input,
select {
    font: inherit;
}

.hidden {
    display: none !important;
}

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

.landing-body {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 255, 0.74);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 88px;
}

.header-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand img {
    width: 278px;
    height: auto;
}

.header-menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.header-menu-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(19, 136, 255, 0.24);
}

.header-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.header-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}

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

.header-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--text-soft);
}

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

.header-link-ghost,
.header-link-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
}

.header-link-ghost {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.74);
}

.header-link-cta {
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #ffffff;
    box-shadow: 0 16px 34px -22px rgba(0, 88, 255, 0.62);
}

.hero-cascade {
    position: relative;
    padding: 72px 0 34px;
}

.hero-cascade::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 720px;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 14%, rgba(19, 136, 255, 0.18), transparent 24%),
        radial-gradient(circle at 82% 12%, rgba(138, 244, 208, 0.2), transparent 22%),
        radial-gradient(circle at 64% 62%, rgba(215, 219, 255, 0.36), transparent 24%);
}

.hero-layout,
.journey-layout,
.audience-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
    gap: 44px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--brand-strong);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.journey-copy h2,
.audience-copy h2,
.pricing-copy h2,
.final-cta-panel h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.hero-copy h1 span {
    display: block;
    margin-top: 18px;
    color: #2a3550;
}

.hero-text,
.section-head p,
.journey-copy p,
.audience-copy p,
.pricing-copy p,
.faq-card p,
.comparison-card li,
.feature-card p,
.impact-card p,
.final-cta-panel p {
    color: var(--text-soft);
    line-height: 1.75;
}

.hero-text {
    max-width: 62ch;
    margin: 28px 0 0;
    font-size: 1.05rem;
}

.hero-actions,
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-strong));
    color: #ffffff;
    box-shadow: 0 18px 38px -24px rgba(0, 88, 255, 0.68);
}

.button-secondary {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
}

.button-dark {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 18px 38px -26px rgba(15, 23, 42, 0.62);
}

.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.proof-pill {
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.proof-pill strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.proof-pill span {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-stage-shell {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 36px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(245, 249, 255, 0.72)),
        linear-gradient(135deg, rgba(19, 136, 255, 0.22), rgba(138, 244, 208, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-stage-shell::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 255, 0.76));
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.stage-topbar,
.stage-grid,
.stage-floating-row,
.stage-floating {
    position: relative;
    z-index: 1;
}

.stage-topbar {
    display: flex;
    gap: 8px;
}

.stage-topbar span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.14);
}

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

.stage-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-height: 160px;
    padding: 18px;
    border-radius: 24px;
    overflow: hidden;
}

.stage-card-primary {
    grid-column: span 2;
    background: linear-gradient(135deg, #eff5ff, #ffffff);
    border: 1px solid rgba(19, 136, 255, 0.16);
}

.stage-card-dark {
    background: linear-gradient(145deg, #10213e, #1c3461);
    color: #ffffff;
}

.stage-card-dark p {
    color: rgba(255, 255, 255, 0.82);
}

.stage-mini-card {
    background: rgba(248, 250, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.stage-card-head {
    display: grid;
    gap: 6px;
}

.stage-card-head p,
.stage-mini-card p,
.stage-floating span {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stage-card-head strong,
.stage-mini-card strong,
.stage-card-dark strong,
.stage-floating strong {
    font-size: 1rem;
    line-height: 1.45;
}

.timeline-list {
    display: grid;
    gap: 10px;
}

.timeline-list div {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.timeline-list span {
    color: var(--brand-strong);
    font-size: 0.82rem;
    font-weight: 800;
}

.timeline-list strong {
    font-size: 0.98rem;
}

.timeline-list small {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.stage-floating {
    position: static;
    display: grid;
    gap: 6px;
    max-width: none;
    padding: 14px 16px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-md);
}

.stage-floating-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.stage-floating-left {
    margin-top: 0;
}

.stage-floating-right {
    margin-top: 0;
}

.signal-band {
    padding: 10px 0 32px;
}

.signal-band-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.signal-band-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.clarity-section,
.journey-section,
.audience-section,
.faq-section,
.final-cta-section {
    padding: 68px 0;
}

.impact-section,
.feature-section,
.pricing-section {
    padding: 22px 0 68px;
}

.section-head {
    max-width: 860px;
}

.section-head h2,
.journey-copy h2,
.audience-copy h2,
.pricing-copy h2,
.final-cta-panel h2 {
    font-size: clamp(2.3rem, 4.6vw, 4rem);
}

.section-head p {
    margin: 20px 0 0;
    max-width: 68ch;
}

.clarity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.comparison-card,
.impact-card,
.feature-card,
.faq-card,
.pricing-card,
.final-cta-panel,
.audience-board,
.pricing-copy,
.journey-step {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.comparison-card {
    padding: 28px;
}

.comparison-card span,
.feature-tag {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(19, 136, 255, 0.1);
    color: var(--brand-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.comparison-before span {
    background: rgba(248, 113, 113, 0.12);
    color: #b42318;
}

.comparison-card h3,
.feature-card h3,
.faq-card h3 {
    margin: 18px 0 0;
    font-size: 1.28rem;
    line-height: 1.28;
}

.comparison-card ul {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding-left: 18px;
}

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

.impact-card {
    padding: 24px;
}

.impact-card strong {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.impact-card p {
    margin: 14px 0 0;
}

.journey-copy p {
    margin: 20px 0 0;
}

.journey-steps {
    display: grid;
    gap: 16px;
}

.journey-step {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
}

.journey-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(19, 136, 255, 0.16), rgba(138, 244, 208, 0.28));
    color: var(--brand-strong);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.journey-step h3 {
    margin: 0;
    font-size: 1.16rem;
}

.journey-step p {
    margin: 10px 0 0;
}

.feature-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.feature-card {
    padding: 26px;
}

.feature-card-large {
    grid-column: span 2;
    min-height: 280px;
    background:
        radial-gradient(circle at top right, rgba(138, 244, 208, 0.24), transparent 28%),
        radial-gradient(circle at bottom left, rgba(19, 136, 255, 0.18), transparent 24%),
        rgba(255, 255, 255, 0.82);
}

.feature-card p {
    margin: 16px 0 0;
}

.audience-layout {
    align-items: stretch;
}

.audience-board {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.audience-board article {
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(247, 250, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.audience-board h3 {
    margin: 0;
    font-size: 1.05rem;
}

.audience-board p {
    margin: 10px 0 0;
    color: var(--text-soft);
    line-height: 1.6;
}

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

.audience-chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(19, 136, 255, 0.1);
    color: var(--brand-strong);
    font-size: 0.88rem;
    font-weight: 700;
}

.pricing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 20px;
}

.pricing-copy,
.pricing-card {
    padding: 30px;
}

.pricing-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding-left: 18px;
    color: var(--text-soft);
}

.pricing-card {
    background: linear-gradient(160deg, #0f172a, #1d4ed8);
    color: #ffffff;
}

.price-main {
    display: grid;
    gap: 4px;
}

.pricing-seat-note {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.price-main strong {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.price-main span,
.pricing-note p,
.pricing-flow p {
    color: rgba(255, 255, 255, 0.82);
}

.pricing-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-flow {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
}

.pricing-flow div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.pricing-flow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 800;
}

.pricing-card .button-dark,
.pricing-card .button-primary,
.pricing-card .button-secondary {
    width: 100%;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.faq-card {
    padding: 24px;
}

.faq-card p {
    margin: 14px 0 0;
}

.final-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    background:
        radial-gradient(circle at top left, rgba(19, 136, 255, 0.22), transparent 24%),
        radial-gradient(circle at bottom right, rgba(138, 244, 208, 0.22), transparent 24%),
        rgba(255, 255, 255, 0.82);
}

.final-cta-panel p {
    margin: 18px 0 0;
    max-width: 58ch;
}

.site-footer {
    padding: 0 0 34px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-muted);
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-layout,
    .journey-layout,
    .audience-layout,
    .pricing-panel {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 12ch;
    }

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

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

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

    .final-cta-panel {
        grid-template-columns: 1fr;
    }

    .stage-floating {
        position: static;
        max-width: none;
        margin-top: 12px;
    }
}

@media (max-width: 820px) {
    .site-header {
        background: rgba(248, 251, 255, 0.9);
    }

    .header-row {
        align-items: flex-start;
        min-height: 82px;
        padding: 14px 0;
    }

    .header-brand-row {
        width: 100%;
    }

    .header-menu-toggle {
        display: inline-flex;
    }

    .header-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow-lg);
    }

    .header-nav.is-open {
        display: flex;
    }

    .header-link-ghost,
    .header-link-cta {
        width: 100%;
    }

    .clarity-grid,
    .impact-grid,
    .feature-mosaic,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-column: span 1;
    }

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

    .stage-card-primary {
        grid-column: span 1;
    }

    .stage-floating-row {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand img {
        width: 220px;
    }

    .hero-cascade {
        padding-top: 40px;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 4rem);
        max-width: none;
    }

    .hero-copy h1 span {
        margin-top: 14px;
    }

    .hero-text {
        font-size: 1rem;
    }

    .button,
    .header-link-ghost,
    .header-link-cta {
        width: 100%;
    }

    .hero-actions,
    .final-cta-actions {
        flex-direction: column;
    }

    .proof-pill {
        width: 100%;
        min-width: 0;
    }

    .journey-step {
        grid-template-columns: 1fr;
    }

    .journey-step span {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 1.2rem;
    }

    .comparison-card,
    .impact-card,
    .feature-card,
    .faq-card,
    .pricing-copy,
    .pricing-card,
    .final-cta-panel,
    .audience-board {
        padding: 22px;
    }
}

.button-wide {
    width: 100%;
}

.checkout-modern {
    background:
        radial-gradient(circle at 12% 10%, rgba(19, 136, 255, 0.18), transparent 24%),
        radial-gradient(circle at 88% 16%, rgba(138, 244, 208, 0.18), transparent 22%),
        radial-gradient(circle at 74% 72%, rgba(215, 219, 255, 0.36), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #f2f6fd 52%, #ebf1f8 100%);
}

.checkout-editorial-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 34px 20px;
}

.checkout-editorial-card {
    width: min(1180px, 100%);
    padding: 30px;
    border-radius: 32px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 255, 0.76)),
        linear-gradient(135deg, rgba(19, 136, 255, 0.12), rgba(138, 244, 208, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-lg);
}

.checkout-editorial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.checkout-top-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.back-link {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--text-soft);
}

.back-link:hover {
    color: var(--text);
}

.checkout-header-cta {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.92rem;
}

.checkout-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 22px;
    align-items: start;
}

.checkout-summary,
.checkout-form {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-md);
}

.checkout-summary {
    padding: 30px;
    background: rgba(255, 255, 255, 0.72);
}

.checkout-summary h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.checkout-summary p,
.form-note,
.checkout-message {
    color: var(--text-soft);
    line-height: 1.75;
}

.checkout-summary > p:not(.eyebrow) {
    margin: 20px 0 0;
}

.checkout-price-editorial {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(160deg, #0f172a, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 18px 38px -26px rgba(15, 23, 42, 0.6);
}

.checkout-price-editorial strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.checkout-price-editorial span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
}

.checkout-art-card {
    margin-top: 22px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(circle at top right, rgba(138, 244, 208, 0.24), transparent 28%),
        rgba(247, 250, 255, 0.92);
}

.checkout-artwork {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.checkout-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.checkout-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text-soft);
    line-height: 1.6;
}

.checkout-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--brand-mint));
    box-shadow: 0 0 0 5px rgba(19, 136, 255, 0.1);
}

.checkout-form {
    display: grid;
    gap: 16px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.84);
}

.checkout-login-note {
    margin: 0 0 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(19, 136, 255, 0.08), rgba(138, 244, 208, 0.12));
    border: 1px solid rgba(19, 136, 255, 0.12);
    color: var(--text-soft);
    line-height: 1.6;
}

.checkout-login-note a,
.consent-row a {
    color: var(--brand-strong);
    font-weight: 800;
}

.checkout-form label {
    display: grid;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
}

.checkout-price-editorial #checkoutTotalPriceValue:empty,
.checkout-price-editorial #checkoutSpecialistsSummary:empty {
    display: none;
}

.checkout-specialists-note {
    margin: -4px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-soft);
    line-height: 1.55;
}

.checkout-field-status {
    min-height: 20px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-muted);
}

.checkout-field-status[data-state="error"] {
    color: #b42318;
}

.checkout-field-status[data-state="success"] {
    color: #027a48;
}

.checkout-form input,
.checkout-form select {
    min-height: 56px;
    width: 100%;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.92));
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: rgba(19, 136, 255, 0.44);
    box-shadow: 0 0 0 4px rgba(19, 136, 255, 0.12);
}

.checkout-password-field {
    position: relative;
}

.checkout-password-field input {
    padding-right: 58px;
}

.checkout-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(19, 136, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-soft);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition);
}

.checkout-password-toggle:hover {
    transform: translateY(-50%);
    color: var(--brand-strong);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 20px -16px rgba(0, 88, 255, 0.45);
}

.checkout-password-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 136, 255, 0.16);
}

.checkout-password-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.consent-row {
    grid-template-columns: 20px 1fr;
    align-items: start;
}

.consent-row input {
    width: 20px;
    min-height: 20px;
    margin-top: 3px;
    accent-color: var(--brand-strong);
}

.consent-row span {
    color: var(--text-soft);
    line-height: 1.6;
}

.form-note {
    margin: -2px 0 0;
}

.checkout-message {
    min-height: 28px;
    margin-top: 18px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .checkout-editorial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .checkout-editorial-top,
    .checkout-top-links,
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .checkout-editorial-shell {
        padding: 22px 14px;
    }

    .checkout-editorial-card,
    .checkout-summary,
    .checkout-form {
        padding: 22px;
    }

    .checkout-summary h1 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }
}
