/**
 * Recurr landing: rebuilt home (editorial / product-map layout).
 * Fonts: Fraunces + DM Sans from index.html
 */

body.landing {
    --ld-paper: var(--recurr-paper);
    --ld-paper-deep: var(--recurr-paper-deep);
    --ld-ink: var(--recurr-ink);
    --ld-muted: var(--recurr-muted);
    --ld-line: var(--recurr-line);
    --ld-accent: var(--recurr-accent);
    --ld-accent-soft: var(--recurr-accent-soft);
    --ld-warm: var(--recurr-warm);
    --ld-forest: var(--recurr-forest);

    --ld-pad-x: clamp(20px, 4vw, 48px);
    --ld-radius: 16px;
    --ld-radius-sm: 10px;

    /* Contact sales / primary filled CTAs */
    --ld-contact-sales-bg:
        linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, transparent 48%),
        linear-gradient(155deg, #2563eb 0%, var(--ld-accent) 46%, #000f35 100%);
    --ld-contact-sales-bg-hover:
        linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, transparent 48%),
        linear-gradient(155deg, #3b82f6 0%, #0038b8 46%, #001452 100%);
    /* Filled “Contact sales” pills: subtle corners (not fully round) */
    --ld-contact-sales-radius: 8px;

    color: var(--ld-ink);
    background: var(--ld-paper);
    font-family:
        'DM Sans',
        system-ui,
        sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

/* Page content was visible *through* the fixed nav (looked like mystery “stuck” text) */
html:has(body.landing) {
    scroll-padding-top: 80px;
}

body.landing main.ld-main {
    margin: 0;
    padding: 0;
}

/* --- Focus --- */
body.landing *:focus-visible {
    outline: 2px solid var(--ld-accent);
    outline-offset: 3px;
}

body.landing .skip-link {
    position: absolute;
    top: -100px;
    left: var(--ld-pad-x);
    z-index: 10000;
    padding: 10px 18px;
    background: var(--ld-ink);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    transition: top 0.2s ease;
}

body.landing .skip-link:focus {
    top: 16px;
}

/* --- Shell --- */
.ld-wrap {
    width: min(var(--page-max-width), 100%);
    margin: 0 auto;
    padding-left: var(--ld-pad-x);
    padding-right: var(--ld-pad-x);
}

/*
 * Nav column = same horizontal box as `.ld-wrap` (centered max width + --ld-pad-x inset).
 * Global `nav { margin: 0 16px; padding: 8px 16px }` otherwise pulls chrome wider than hero.
 */
body.landing header.header-sticky nav {
    margin-left: 0;
    margin-right: 0;
    padding: 8px 0;
}

body.landing .nav-container {
    width: min(var(--page-max-width), 100%);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ld-pad-x);
    padding-right: var(--ld-pad-x);
    box-sizing: border-box;
}

/* Dropdown triggers: label + chevron on the right (home nav) */
body.landing .nav-dropdown > button.nav-link.nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.landing .nav-link__text {
    display: inline-block;
}

body.landing .nav-link__caret {
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.62;
    transition:
        transform 0.22s ease,
        opacity 0.2s ease;
}

body.landing .nav-dropdown:hover > button.nav-link .nav-link__caret,
body.landing .nav-dropdown:focus-within > button.nav-link .nav-link__caret {
    opacity: 0.95;
}

@media (max-width: 768px) {
    body.landing .nav-dropdown > button.nav-link.nav-link--dropdown {
        width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
    }

    body.landing .nav-link__text {
        flex: 1;
        min-width: 0;
        text-align: left;
    }

    body.landing .nav-dropdown.active > button.nav-link .nav-link__caret {
        transform: rotate(180deg);
        opacity: 0.95;
    }
}

/* Landing nav: compact type (Products, Solutions, Resources, Company, Pricing, Login, CTAs) */
body.landing header.header-sticky .nav-menu li {
    font-size: 13px;
}

body.landing header.header-sticky .nav-link,
body.landing header.header-sticky .nav-menu a.nav-link {
    font-size: 13px;
}

body.landing header.header-sticky .login-link {
    font-size: 13px;
}

body.landing header.header-sticky .nav-actions .cta-button.primary {
    font-size: 13px;
    height: 34px;
    padding-left: 12px;
    padding-right: 12px;
}

/* Footer inner column = same horizontal box as `.ld-wrap` / nav */
body.landing .footer-container {
    width: min(var(--page-max-width), 100%);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ld-pad-x);
    padding-right: var(--ld-pad-x);
    box-sizing: border-box;
}

/* --- Header on landing (always frosted: fixed bar + transparent bg = body text bleeding through) --- */
body.landing header.ld-header:not(.scrolled) {
    background: rgba(249, 246, 255, 0.82);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    box-shadow: 0 1px 0 rgba(1, 8, 28, 0.06);
}

body.landing header.ld-header:not(.scrolled) .nav-link,
body.landing header.ld-header:not(.scrolled) .nav-menu a.nav-link {
    color: var(--ld-ink);
}

body.landing header.ld-header:not(.scrolled) .login-link {
    color: var(--ld-muted);
}

body.landing header.ld-header:not(.scrolled) .nav-link:hover,
body.landing header.ld-header:not(.scrolled) .login-link:hover {
    color: var(--ld-accent);
}

body.landing header.ld-header:not(.scrolled) .site-nav-toggle__bar {
    background: var(--ld-ink);
}

body.landing header.scrolled .site-nav-toggle__bar {
    background: var(--ld-muted);
}

body.landing header.ld-header:not(.scrolled) .nav-link::after {
    background: var(--ld-accent);
}

body.landing .ld-nav-cta.cta-button.primary {
    background: var(--ld-contact-sales-bg);
    background-color: var(--ld-accent);
    color: #fff;
    border: none;
    border-radius: var(--ld-contact-sales-radius);
    font-weight: 600;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease,
        background 0.28s ease;
}

body.landing .ld-nav-cta.cta-button.primary:hover {
    background: var(--ld-contact-sales-bg-hover);
    background-color: var(--recurr-accent-hover);
    color: #fff;
}

body.landing header.scrolled .ld-nav-cta.cta-button.primary {
    background: var(--ld-contact-sales-bg);
    background-color: var(--ld-accent);
}

body.landing header.scrolled .ld-nav-cta.cta-button.primary:hover {
    background: var(--ld-contact-sales-bg-hover);
    background-color: var(--recurr-accent-hover);
    filter: none;
}

body.landing .dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--ld-line);
    box-shadow: 0 20px 50px rgba(1, 8, 28, 0.12);
}

body.landing .dropdown-menu a:hover {
    background: #fff;
    color: var(--ld-ink);
}

body.landing .dropdown-menu a::after {
    background-color: var(--ld-accent);
}

@media (max-width: 768px) {
    body.landing .nav-menu .nav-link,
    body.landing .nav-menu a.nav-link {
        color: var(--ld-ink);
    }

}

body.landing header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--ld-line);
}

body.landing header.scrolled .nav-link,
body.landing header.scrolled .login-link {
    color: var(--ld-muted);
}

body.landing header.scrolled .nav-link:hover,
body.landing header.scrolled .login-link:hover {
    color: var(--ld-accent);
}

/* Current page: nav parent underline (see site-nav-current.js) */
body.landing .nav-dropdown.nav-current > .nav-link::after,
body.landing .nav-menu > li.nav-current > a.nav-link::after {
    width: 100%;
    background-color: var(--ld-accent);
}

body.landing .nav-dropdown.nav-current > .nav-link,
body.landing .nav-menu > li.nav-current > a.nav-link {
    color: var(--ld-ink);
}

body.landing header.scrolled .nav-dropdown.nav-current > .nav-link,
body.landing header.scrolled .nav-menu > li.nav-current > a.nav-link {
    color: var(--ld-ink);
}

/* --- Buttons --- */
body.landing .ld-btn-primary.cta-button.primary {
    background: var(--ld-contact-sales-bg);
    background-color: var(--ld-accent);
    color: #fff;
    border: none;
    border-radius: var(--ld-contact-sales-radius);
    padding: 14px 28px;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.28s ease,
        filter 0.2s ease;
}

body.landing .ld-btn-primary.cta-button.primary:hover {
    background: var(--ld-contact-sales-bg-hover);
    background-color: var(--recurr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 36, 145, 0.38);
}

/* Contact sales primary CTAs: ambient glow loop + sheen sweep (disabled when prefers-reduced-motion) */
@media (prefers-reduced-motion: no-preference) {
    body.landing .ld-nav-cta.cta-button.primary,
    body.landing .ld-hero__cta .ld-btn-primary.cta-button.primary,
    body.landing .ld-cta__actions .ld-btn-primary.cta-button.primary,
    body.landing .ld-contact .landing-form-submit.ld-btn-primary {
        animation: ld-cta-ambient-glow 2.8s ease-in-out infinite;
    }

    body.landing .ld-nav-cta.cta-button.primary::after,
    body.landing .ld-hero__cta .ld-btn-primary.cta-button.primary::after,
    body.landing .ld-cta__actions .ld-btn-primary.cta-button.primary::after,
    body.landing .ld-contact .landing-form-submit.ld-btn-primary::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background: linear-gradient(
            105deg,
            transparent 0%,
            transparent 40%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 60%,
            transparent 100%
        );
        background-size: 220% 100%;
        background-position: 50% 0;
        animation: ld-cta-sheen-slide 3.2s ease-in-out infinite;
        mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 52%);
        -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, transparent 52%);
        opacity: 0.85;
    }

    /* Pause ambient loop on hover so static hover shadow wins (filled CTAs only) */
    body.landing .ld-nav-cta.cta-button.primary:hover,
    body.landing .ld-hero__cta .ld-btn-primary.cta-button.primary:hover,
    body.landing .ld-cta__actions .ld-btn-primary.cta-button.primary:hover,
    body.landing .ld-contact .landing-form-submit.ld-btn-primary:hover {
        animation-play-state: paused;
    }

    body.landing .ld-nav-cta.cta-button.primary:hover::after,
    body.landing .ld-hero__cta .ld-btn-primary.cta-button.primary:hover::after,
    body.landing .ld-cta__actions .ld-btn-primary.cta-button.primary:hover::after,
    body.landing .ld-contact .landing-form-submit.ld-btn-primary:hover::after {
        animation-play-state: paused;
    }
}

@keyframes ld-cta-ambient-glow {
    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(14, 221, 197, 0),
            0 0 0 0 rgba(0, 36, 145, 0);
    }

    50% {
        box-shadow:
            0 0 22px 2px rgba(14, 221, 197, 0.26),
            0 4px 16px rgba(0, 36, 145, 0.22);
    }
}

@keyframes ld-cta-sheen-slide {
    0%,
    100% {
        background-position: 130% 0;
    }

    50% {
        background-position: -30% 0;
    }
}

body.landing .ld-btn-ghost.cta-button.secondary {
    background: transparent;
    color: var(--ld-ink);
    border: 1px solid var(--ld-line);
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
}

body.landing .ld-btn-ghost.cta-button.secondary:hover {
    border-color: var(--ld-ink);
    background: rgba(255, 255, 255, 0.6);
}

body.landing .ld-btn-outline-light.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
}

body.landing .ld-btn-outline-light.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* --- Hero --- */
.ld-hero {
    position: relative;
    padding: calc(72px + 48px) 0 56px;
    overflow: hidden;
}

.ld-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ld-hero__inner {
    position: relative;
    z-index: 1;
}

.ld-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(32px, 6vw, 72px);
    align-items: start;
}

.ld-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ld-muted);
    margin-bottom: 20px;
}

.ld-eyebrow__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ld-warm);
    box-shadow: 0 0 0 4px rgba(14, 221, 197, 0.2);
    transform-origin: center;
}

@media (prefers-reduced-motion: no-preference) {
    .ld-eyebrow__dot {
        animation: ld-eyebrow-dot-pulse 2.4s ease-in-out infinite;
    }
}

@keyframes ld-eyebrow-dot-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 4px rgba(14, 221, 197, 0.22),
            0 0 14px rgba(14, 221, 197, 0.25);
    }

    50% {
        transform: scale(1.2);
        box-shadow:
            0 0 0 7px rgba(14, 221, 197, 0.14),
            0 0 22px rgba(14, 221, 197, 0.35);
    }
}

.ld-display {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.35rem, 4.5vw + 1rem, 3.75rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    color: var(--ld-ink);
}

.ld-lede {
    font-size: clamp(1.05rem, 1.2vw + 0.9rem, 1.2rem);
    color: var(--ld-muted);
    max-width: 38ch;
    margin: 0 0 28px;
}

.ld-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-bottom: 28px;
}

.ld-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ld-stat__n {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--ld-ink);
}

.ld-stat__l {
    font-size: 13px;
    font-weight: 500;
    color: var(--ld-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ld-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start; /* overrides global `.hero-cta` (center) */
}

.ld-hero__visual {
    position: relative;
    /* Critical: marquee track is `width:max-content`; without this, grid `min-width:auto`
       uses that intrinsic width and blows out the hero column → larger hero image */
    min-width: 0;
    max-width: 100%;
}

.ld-hero__blob {
    position: absolute;
    width: 88%;
    height: 88%;
    right: -6%;
    top: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 36, 145, 0.35), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(14, 221, 197, 0.2), transparent 45%);
    border-radius: 40% 60% 65% 35% / 45% 35% 65% 55%;
    filter: blur(0);
    z-index: 0;
    animation: ldBlob 18s ease-in-out infinite alternate;
}

@keyframes ldBlob {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(-12px, 16px) rotate(6deg);
    }
}

.ld-hero__figure {
    position: relative;
    z-index: 1;
    margin: 0;
    border-radius: var(--ld-radius);
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(1, 8, 28, 0.04),
        0 24px 48px rgba(1, 8, 28, 0.12);
    border: 1px solid var(--ld-line);
}

.ld-hero__figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.ld-hero__caption.ld-hero-caption-rotator {
    position: relative;
    z-index: 2;
    margin: 14px 0 0;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--ld-ink);
    width: 100%;
}

.ld-hero-caption-rotator__layout {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
}

/* Same as one line of caption: font-size × line-height (14px × 1.35) */
.ld-hero-caption-rotator__gauge {
    position: relative;
    flex-shrink: 0;
    width: 1.35em;
    height: 1.35em;
    min-width: 1.35em;
    min-height: 1.35em;
}

.ld-hero-caption-rotator__ring-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.ld-hero-caption-rotator__ring-bg {
    fill: none;
    stroke: var(--ld-line);
    stroke-width: 2.25;
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
}

.ld-hero-caption-rotator__ring-progress {
    fill: none;
    stroke: var(--ld-accent);
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transform: rotate(-90deg);
    transform-origin: 20px 20px;
}

.ld-hero-caption-rotator__ring-progress.is-ticking {
    animation: ldCaptionRingFill var(--caption-ring-duration, 4800ms) linear forwards;
}

/* Explicit from → to so each restart always runs empty → full (not 0 → 0) */
@keyframes ldCaptionRingFill {
    from {
        stroke-dashoffset: 100;
    }
    to {
        stroke-dashoffset: 0;
    }
}

.ld-hero-caption-rotator__slides {
    position: relative;
    display: block;
    flex: 1;
    min-width: 0;
    min-height: 1.6em;
}

.ld-hero-caption-rotator__slide {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition:
        opacity 0.45s ease-out,
        transform 0.5s ease-out;
    pointer-events: none;
}

.ld-hero-caption-rotator__slide.is-current {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    z-index: 1;
}

.ld-hero-caption-rotator__slide.is-exiting {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
    .ld-hero-caption-rotator__gauge {
        display: none;
    }

    .ld-hero-caption-rotator__layout {
        display: block;
    }

    .ld-hero-caption-rotator__slides {
        min-height: 0;
    }

    .ld-hero-caption-rotator__slide {
        position: relative;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        white-space: normal;
    }

    .ld-hero-caption-rotator__slide:not(:first-child) {
        display: none !important;
    }
}

/* Trusted-by logos (below hero image only; does not affect `.ld-hero__figure` / grid) */
.ld-hero-logos {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--ld-line);
}

.ld-hero-logos__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ld-ink);
    opacity: 0.55;
    margin: 0 0 14px;
}

.ld-hero-logos__viewport {
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.ld-hero-logos__track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: ldHeroLogosMarquee 35s linear infinite;
}

.ld-hero-logos__viewport:hover .ld-hero-logos__track {
    animation-play-state: paused;
}

.ld-hero-logos__row {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: center;
    gap: 20px 44px;
    list-style: none;
    margin: 0;
    padding: 0 16px 0 0;
}

.ld-hero-logos__row li {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.ld-hero-logos__row img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

/* Light/white marks on transparent PNGs: darken pixels so they read on paper (no bg tile) */
.ld-hero-logos__row img[src*='orchid-logo'],
.ld-hero-logos__row img[src*='nwachukwu'],
.ld-hero-logos__row img[src*='edoigiawerie'] {
    filter: brightness(0.34) contrast(1.08);
}

@keyframes ldHeroLogosMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- Marquee --- */
.ld-marquee {
    border-block: 1px solid var(--ld-line);
    background: var(--ld-paper-deep);
    padding: 14px 0;
    overflow: hidden;
}

.ld-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 28px;
    width: max-content;
    animation: ldMarquee 32s linear infinite;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    color: var(--ld-muted);
}

.ld-marquee__track span:nth-child(odd) {
    color: var(--ld-ink);
    opacity: 0.85;
}

@keyframes ldMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ld-marquee__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

/* --- Manifesto --- */
.ld-manifesto {
    padding: clamp(72px, 12vw, 120px) 0;
}

.ld-manifesto__row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(240px, 0.95fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.ld-manifesto__layout {
    max-width: 640px;
}

.ld-manifesto__visual {
    position: relative;
    min-height: min(56vw, 420px);
    isolation: isolate;
    pointer-events: none;
    overflow: clip;
}

.ld-manifesto__scene {
    position: relative;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(12px, 2.5vw, 22px);
    overflow: clip;
}

.ld-manifesto__icons {
    --orbit-r: clamp(96px, 26vw, 138px);
    --slot-size: clamp(52px, 12vw, 88px);
    --orbit-duration: 92s;
    --orbit-ring-flow: 26s;
    position: relative;
    z-index: 1;
    width: min(100%, 400px);
    margin: 0 auto;
    aspect-ratio: 1;
    pointer-events: auto;
    overflow: clip;
}

/* Soft vignette behind the orbit (does not rotate) */
.ld-manifesto__icons::before {
    content: '';
    position: absolute;
    inset: -14%;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.95;
    background:
        radial-gradient(circle at 42% 38%, rgba(0, 36, 145, 0.22), transparent 58%),
        radial-gradient(circle at 74% 72%, rgba(14, 221, 197, 0.14), transparent 54%),
        radial-gradient(circle at 50% 50%, rgba(249, 246, 255, 0.88), transparent 72%);
    filter: blur(22px);
}

.ld-manifesto__orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
    transform-origin: 50% 50%;
    pointer-events: none;
    filter: drop-shadow(0 10px 26px rgba(0, 36, 145, 0.14))
        drop-shadow(0 2px 10px rgba(0, 36, 145, 0.08));
}

@media (prefers-reduced-motion: no-preference) {
    .ld-manifesto__orbit {
        animation: ld-manifesto-orbit-cw var(--orbit-duration) linear infinite;
    }

    /* Cancels orbit rotation so glyphs stay upright while travelling the ring */
    .ld-manifesto__icon-bob {
        animation: ld-manifesto-counter-ccw var(--orbit-duration) linear infinite;
        transform-origin: center center;
    }

    .ld-manifesto__ring-path--main {
        stroke-dasharray: 19 81;
        animation: ld-manifesto-ring-flow var(--orbit-ring-flow) linear infinite;
    }

    /* Inner dashed track creeps opposite the highlight for depth */
    .ld-manifesto__ring-path--inner {
        animation: ld-manifesto-ring-flow calc(var(--orbit-ring-flow) * 1.55) linear infinite reverse;
    }

    /* Freeze ring + all counter-spins while any icon is hovered */
    .ld-manifesto__icons:has(.ld-manifesto__icon-slot:hover) .ld-manifesto__orbit,
    .ld-manifesto__icons:has(.ld-manifesto__icon-slot:hover) .ld-manifesto__icon-bob {
        animation-play-state: paused;
    }

    .ld-manifesto__icons:has(.ld-manifesto__icon-slot:hover) .ld-manifesto__ring-path--main,
    .ld-manifesto__icons:has(.ld-manifesto__icon-slot:hover) .ld-manifesto__ring-path--inner {
        animation-play-state: paused;
    }
}

@keyframes ld-manifesto-orbit-cw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes ld-manifesto-counter-ccw {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes ld-manifesto-ring-flow {
    to {
        stroke-dashoffset: -100;
    }
}

.ld-manifesto__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ld-manifesto__ring-path {
    fill: none;
}

.ld-manifesto__icon-slot {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: var(--slot-size);
    height: var(--slot-size);
    margin-left: calc(var(--slot-size) / -2);
    margin-top: calc(var(--slot-size) / -2);
    transform: rotate(var(--slot-angle)) translateY(calc(-1 * var(--orbit-r))) rotate(calc(-1 * var(--slot-angle)));
    pointer-events: auto;
}

.ld-manifesto__icon-slot:hover {
    z-index: 6;
}

.ld-manifesto__icon-slot--people {
    --slot-angle: -90deg;
}

.ld-manifesto__icon-slot--calendar {
    --slot-angle: -18deg;
}

.ld-manifesto__icon-slot--doc {
    --slot-angle: 54deg;
}

.ld-manifesto__icon-slot--pay {
    --slot-angle: 126deg;
}

.ld-manifesto__icon-slot--shield {
    --slot-angle: 198deg;
}

.ld-manifesto__icon-bob {
    width: 100%;
    height: 100%;
}

.ld-manifesto__icon-plate {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: clamp(14px, 2.5vw, 20px);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(1, 8, 28, 0.07);
    box-shadow:
        0 2px 4px rgba(1, 8, 28, 0.04),
        0 18px 36px rgba(1, 8, 28, 0.09);
    color: rgb(0, 36, 145);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease,
        filter 0.45s ease;
}

.ld-manifesto__icon-slot:hover .ld-manifesto__icon-plate {
    transform: scale(1.09);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 36, 145, 0.35);
    box-shadow:
        0 2px 6px rgba(0, 36, 145, 0.08),
        0 22px 44px rgba(0, 36, 145, 0.18),
        0 0 0 3px rgba(0, 36, 145, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 10px 28px rgba(0, 36, 145, 0.22));
}

.ld-manifesto__icon-slot:hover .ld-manifesto__icon-plate svg {
    filter: drop-shadow(0 2px 8px rgba(0, 36, 145, 0.12));
}

.ld-manifesto__icon-plate svg {
    width: 54%;
    height: 54%;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .ld-manifesto__orbit {
        animation: none !important;
    }

    .ld-manifesto__icon-bob {
        animation: none !important;
    }

    .ld-manifesto__icons::before {
        opacity: 0.65;
        filter: blur(14px);
    }

    .ld-manifesto__ring-path--main {
        animation: none !important;
        stroke-dasharray: 24 76;
        stroke-dashoffset: 0;
    }

    .ld-manifesto__ring-path--inner {
        animation: none !important;
    }
}

@media (max-width: 900px) {
    .ld-manifesto__row {
        grid-template-columns: 1fr;
    }

    .ld-manifesto__visual {
        min-height: min(78vw, 340px);
        max-width: 420px;
        width: 100%;
        margin: clamp(20px, 5vw, 36px) auto 0;
    }

    .ld-manifesto__scene {
        min-height: min(72vw, 320px);
        height: auto;
    }

    .ld-manifesto__icons {
        width: min(100%, 360px);
        margin-inline: auto;
        /* Fallback when aspect-ratio is flaky in older mobile WebKit */
        min-height: min(78vw, 340px);
    }

    /* Heavy blur + drop-shadow can hide or flatten the orbit on mobile GPUs */
    .ld-manifesto__icons::before {
        filter: blur(14px);
        inset: -10%;
        opacity: 0.88;
    }

    .ld-manifesto__orbit {
        filter: drop-shadow(0 6px 16px rgba(0, 36, 145, 0.12));
    }

    .ld-manifesto__layout {
        max-width: none;
    }
}

.ld-manifesto__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ld-warm);
    margin: 0 0 16px;
}

.ld-manifesto__title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.65rem);
    line-height: 1.15;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.ld-manifesto__title em {
    font-style: italic;
    color: var(--ld-accent);
}

.ld-manifesto__body {
    font-size: 1.15rem;
    color: var(--ld-muted);
    margin: 0 0 20px;
}

.ld-text-link {
    display: inline-block;
    font-weight: 600;
    color: var(--ld-accent);
    text-decoration: none;
    border-bottom: 2px solid var(--ld-accent-soft);
    padding-bottom: 2px;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.ld-text-link:hover {
    color: var(--ld-ink);
    border-color: var(--ld-ink);
}

.ld-text-link--inline {
    border-bottom-width: 1px;
}

/* --- Section heads --- */
.ld-section-head {
    margin-bottom: 40px;
    max-width: 640px;
}

.ld-section-head--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ld-section-head__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ld-muted);
    margin: 0 0 12px;
}

.ld-section-head__title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem);
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.ld-section-head__sub {
    margin: 0;
    color: var(--ld-muted);
    font-size: 1.05rem;
}

/* --- Bento --- */
.ld-bento {
    padding: 0 0 clamp(72px, 10vw, 100px);
}

.ld-bento__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.ld-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--ld-line);
    border-radius: var(--ld-radius);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    grid-column: span 2;
    min-height: 160px;
}

.ld-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(1, 8, 28, 0.08);
    border-color: rgba(0, 36, 145, 0.35);
}

.ld-card--tall {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 340px;
    background: linear-gradient(165deg, #fff 0%, var(--ld-paper) 100%);
}

.ld-card--wide {
    grid-column: span 3;
}

.ld-card__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ld-muted);
    margin-bottom: 10px;
}

.ld-card__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.2;
}

.ld-card__desc {
    font-size: 15px;
    color: var(--ld-muted);
    margin: 0;
    flex: 1;
}

.ld-card--tall .ld-card__desc {
    flex: 0 1 auto;
}

.ld-card__extras {
    list-style: none;
    margin: 0;
    margin-top: auto;
    padding: 16px 44px 0 0;
    border-top: 1px solid var(--ld-line);
}

.ld-card__extras li {
    position: relative;
    padding: 7px 44px 7px 1.15rem;
    font-size: 13px;
    line-height: 1.45;
    color: var(--ld-muted);
}

.ld-card__extras li::before {
    position: absolute;
    left: 0;
    top: 0.48em;
    line-height: 1;
}

/* Tall-card extras: asterisk (People tint vs Payroll tint) */
.ld-card--people .ld-card__extras li::before,
.ld-card--money .ld-card__extras li::before {
    content: '*';
    font-family:
        'DM Sans',
        system-ui,
        sans-serif;
    font-size: 1.15em;
    font-weight: 700;
}

.ld-card--people .ld-card__extras li::before {
    color: rgba(0, 36, 145, 0.85);
}

.ld-card--money .ld-card__extras li::before {
    color: rgba(14, 221, 197, 0.85);
}

.ld-card--people .ld-card__extras {
    border-top-color: rgba(0, 36, 145, 0.22);
}

.ld-card--money .ld-card__extras {
    border-top-color: rgba(14, 221, 197, 0.28);
}

.ld-card--money .ld-card__extras li:first-child {
    white-space: nowrap;
}

@media (max-width: 420px) {
    .ld-card--money .ld-card__extras li:first-child {
        white-space: normal;
    }
}

.ld-card__arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 1.25rem;
    color: var(--ld-accent);
}

/* --- Bento card icons (gradient wells + motion) --- */
.ld-card__icon {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 6px;
    display: grid;
    place-items: center;
    overflow: visible;
    isolation: isolate;
    transition:
        transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1),
        filter 0.35s ease;
}

.ld-card--tall .ld-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    margin-bottom: 8px;
}

.ld-card--wide.ld-card--growth .ld-card__icon,
.ld-card--wide.ld-card--records .ld-card__icon {
    width: 62px;
    height: 62px;
}

.ld-card__icon-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;
    transition:
        transform 0.45s cubic-bezier(0.34, 1.45, 0.64, 1),
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.ld-card__svg {
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 2;
    overflow: visible;
    filter: drop-shadow(0 3px 10px rgba(1, 8, 28, 0.18));
}

.ld-card--tall .ld-card__svg {
    width: 44px;
    height: 44px;
}

.ld-card--wide.ld-card--growth .ld-card__svg,
.ld-card--wide.ld-card--records .ld-card__svg {
    width: 40px;
    height: 40px;
}

/* Variant gradients */
.ld-card--people .ld-card__icon-glow {
    background: linear-gradient(145deg, #001050 0%, #002491 45%, #2b59d6 100%);
    box-shadow:
        0 6px 22px rgba(0, 36, 145, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.ld-card--time .ld-card__icon-glow {
    background: linear-gradient(145deg, #045a52 0%, #0ba99a 48%, #5eece0 100%);
    box-shadow:
        0 6px 22px rgba(14, 221, 197, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ld-card--money .ld-card__icon-glow {
    background: linear-gradient(145deg, #012a68 0%, #002491 38%, #0eddc5 100%);
    box-shadow:
        0 6px 22px rgba(0, 36, 145, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ld-card--talent .ld-card__icon-glow {
    background: linear-gradient(145deg, #067a6e 0%, var(--ld-warm) 50%, #8ef9ec 100%);
    box-shadow:
        0 6px 22px rgba(14, 221, 197, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ld-card--growth .ld-card__icon-glow {
    background: linear-gradient(145deg, #001060 0%, var(--ld-accent) 50%, #5b8cff 100%);
    box-shadow:
        0 6px 22px rgba(0, 36, 145, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.ld-card--records .ld-card__icon-glow {
    background: linear-gradient(145deg, #01081c 0%, var(--ld-forest) 48%, #0c6b7a 100%);
    box-shadow:
        0 6px 22px rgba(6, 61, 70, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* Money shimmer */
.ld-card__shimmer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 255, 255, 0.55) 48%,
        transparent 62%
    );
    background-size: 220% 100%;
    animation: ld-card-shimmer 2.8s ease-in-out infinite;
}

/* Stacked “paper” behind documents icon */
.ld-card__doc-sheet {
    position: absolute;
    width: 78%;
    height: 72%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    z-index: 1;
    pointer-events: none;
}

.ld-card__doc-sheet--back {
    transform: translate(-5px, 5px) rotate(-8deg);
    background: rgba(255, 255, 255, 0.12);
    animation: ld-card-paper-drift-a 5s ease-in-out infinite;
}

.ld-card__doc-sheet--mid {
    transform: translate(4px, 2px) rotate(5deg);
    background: rgba(255, 255, 255, 0.08);
    animation: ld-card-paper-drift-b 5s ease-in-out infinite;
}

/* People: expanding rings */
.ld-card--people .ld-card__pulse {
    transform-origin: 24px 14px;
    animation: ld-card-org-ring 2.8s ease-out infinite;
}

.ld-card--people .ld-card__pulse--2 {
    animation-delay: 1.4s;
}

/* Time: clock hand */
.ld-card__clock-hand {
    transform-origin: 24px 28px;
    animation: ld-card-clock 10s linear infinite;
}

/* Growth: chart stroke draw */
.ld-card--growth .ld-card__chart-line {
    stroke-dasharray: 52;
    stroke-dashoffset: 52;
    animation: ld-card-chart-draw 3s ease-in-out infinite;
}

.ld-card--growth .ld-card__chart-dot {
    animation: ld-card-dot-pulse-op 2s ease-in-out infinite;
}

/* Talent: float + sparkle */
.ld-card__svg--float {
    animation: ld-card-icon-float 3.2s ease-in-out infinite;
}

.ld-card__spark {
    transform-origin: 38px 13px;
    animation: ld-card-spark 2.4s ease-in-out infinite;
}

.ld-card:hover .ld-card__icon {
    transform: translateY(-4px) scale(1.03);
}

.ld-card:hover .ld-card__icon-glow {
    filter: brightness(1.12) saturate(1.08);
    box-shadow:
        0 12px 36px rgba(1, 8, 28, 0.15),
        0 6px 22px rgba(0, 36, 145, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.ld-card--people:hover .ld-card__icon-glow {
    box-shadow:
        0 12px 40px rgba(0, 36, 145, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.ld-card--time:hover .ld-card__icon-glow {
    box-shadow:
        0 12px 40px rgba(14, 221, 197, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ld-card--money:hover .ld-card__icon-glow {
    box-shadow:
        0 12px 40px rgba(0, 36, 145, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ld-card--talent:hover .ld-card__icon-glow {
    box-shadow:
        0 12px 40px rgba(14, 221, 197, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.ld-card--growth:hover .ld-card__icon-glow {
    box-shadow:
        0 12px 40px rgba(0, 36, 145, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.ld-card--records:hover .ld-card__icon-glow {
    box-shadow:
        0 12px 40px rgba(6, 61, 70, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

@keyframes ld-card-org-ring {
    0% {
        transform: scale(0.65);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes ld-card-clock {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ld-card-shimmer {
    0% {
        background-position: 120% 0;
    }
    100% {
        background-position: -120% 0;
    }
}

@keyframes ld-card-paper-drift-a {
    0%,
    100% {
        transform: translate(-5px, 5px) rotate(-8deg);
    }
    50% {
        transform: translate(-7px, 7px) rotate(-10deg);
    }
}

@keyframes ld-card-paper-drift-b {
    0%,
    100% {
        transform: translate(4px, 2px) rotate(5deg);
    }
    50% {
        transform: translate(6px, 0px) rotate(7deg);
    }
}

@keyframes ld-card-chart-draw {
    0%,
    100% {
        stroke-dashoffset: 52;
        opacity: 0.65;
    }
    45%,
    55% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes ld-card-dot-pulse-op {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

@keyframes ld-card-icon-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes ld-card-spark {
    0%,
    100% {
        opacity: 0.95;
        transform: rotate(0deg) scale(1);
    }
    40% {
        opacity: 0.55;
        transform: rotate(22deg) scale(0.88);
    }
    70% {
        opacity: 1;
        transform: rotate(-12deg) scale(1.05);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ld-card__pulse,
    .ld-card__clock-hand,
    .ld-card__shimmer,
    .ld-card__doc-sheet--back,
    .ld-card__doc-sheet--mid,
    .ld-card--growth .ld-card__chart-line,
    .ld-card--growth .ld-card__chart-dot,
    .ld-card__svg--float,
    .ld-card__spark {
        animation: none !important;
    }

    .ld-card--growth .ld-card__chart-line {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    .ld-card--growth .ld-card__chart-dot {
        opacity: 1;
    }

    .ld-card:hover .ld-card__icon {
        transform: none;
    }
}

@media (max-width: 900px) {
    .ld-bento__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ld-card,
    .ld-card--tall,
    .ld-card--wide {
        grid-column: span 1;
        grid-row: auto;
        min-height: auto;
    }

    .ld-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .ld-bento__grid {
        grid-template-columns: 1fr;
    }

    .ld-card--wide {
        grid-column: span 1;
    }
}

/* --- Spotlights --- */
.ld-spotlight {
    padding: clamp(56px, 8vw, 88px) 0;
    border-top: 1px solid var(--ld-line);
}

.ld-spotlight__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

.ld-spotlight--reverse .ld-spotlight__grid {
    direction: rtl;
}

.ld-spotlight--reverse .ld-spotlight__copy,
.ld-spotlight--reverse .ld-spotlight__media {
    direction: ltr;
}

.ld-spotlight__media {
    margin: 0;
    border-radius: var(--ld-radius);
    overflow: hidden;
    border: 1px solid var(--ld-line);
    box-shadow: 0 16px 40px rgba(1, 8, 28, 0.1);
}

.ld-spotlight__media img {
    display: block;
    width: 100%;
    height: auto;
}

.ld-spotlight__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ld-accent);
    margin: 0 0 12px;
}

.ld-spotlight__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
}

.ld-spotlight__body {
    color: var(--ld-muted);
    margin: 0 0 20px;
}

.ld-checklist {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.ld-checklist li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--ld-ink);
    font-size: 15px;
}

.ld-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ld-accent);
    opacity: 0.85;
}

@media (max-width: 768px) {
    .ld-spotlight__grid {
        grid-template-columns: 1fr;
    }

    .ld-spotlight--reverse .ld-spotlight__grid {
        direction: ltr;
    }
}

/* --- Principles --- */
.ld-principles {
    position: relative;
    padding: clamp(80px, 11vw, 128px) 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 55% at 50% -5%, rgba(0, 36, 145, 0.11), transparent 58%),
        radial-gradient(ellipse 70% 50% at 100% 70%, rgba(14, 221, 197, 0.07), transparent 55%),
        radial-gradient(ellipse 55% 45% at 0% 85%, rgba(6, 61, 70, 0.06), transparent 50%),
        linear-gradient(185deg, var(--ld-paper-deep) 0%, var(--ld-paper) 42%, rgba(249, 246, 255, 0.96) 100%);
}

.ld-principles::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.55), transparent 52%);
    opacity: 0.75;
}

.ld-principles .ld-wrap {
    position: relative;
    z-index: 1;
}

.ld-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ld-pillar {
    padding: 28px 24px;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.72) 55%,
        rgba(249, 246, 255, 0.35) 100%
    );
    border: 1px solid rgba(0, 36, 145, 0.1);
    border-radius: var(--ld-radius-sm);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 10px 36px rgba(1, 8, 28, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        box-shadow 0.35s ease,
        transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1),
        border-color 0.3s ease;
}

.ld-pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 36, 145, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 18px 44px rgba(0, 36, 145, 0.1);
}

.ld-pillar__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.ld-pillar__idx {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: none;
    line-height: 1.2;
    color: rgba(1, 8, 28, 0.5);
    font-variant-numeric: tabular-nums;
}

.ld-pillar__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 36, 145, 0.05);
    border: 1px solid rgba(0, 36, 145, 0.12);
    color: rgba(0, 36, 145, 0.5);
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.ld-pillar__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.ld-pillar:hover .ld-pillar__icon {
    color: rgba(0, 36, 145, 0.75);
    border-color: rgba(0, 36, 145, 0.2);
    background: rgba(0, 36, 145, 0.08);
}

.ld-pillar__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.ld-pillar p {
    margin: 0;
    font-size: 15px;
    color: var(--ld-muted);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .ld-principles__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .ld-principles__grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ --- */
.ld-faq {
    padding: clamp(64px, 10vw, 100px) 0;
}

.ld-faq__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(32px, 6vw, 64px);
    align-items: start;
}

.ld-faq__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.75rem, 2vw + 1rem, 2.35rem);
    margin: 12px 0 16px;
    line-height: 1.15;
}

.ld-faq__lede {
    color: var(--ld-muted);
    margin: 0;
    font-size: 1.05rem;
}

/* Full column width: avoid global .faq-container max-width + auto margins offsetting accordions vs intro */
body.landing .ld-faq .faq-container {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

body.landing .ld-faq .faq-item {
    background: #fff;
    border-radius: var(--ld-radius-sm);
    border: 1px solid var(--ld-line);
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
}

body.landing .ld-faq .faq-question {
    font-size: 16px;
    margin: 0;
    list-style: none;
    text-align: left;
    box-sizing: border-box;
    padding-top: 18px;
    padding-right: 20px;
    padding-bottom: 18px;
    padding-left: 20px;
}

body.landing .ld-faq .faq-answer {
    padding: 0 20px 22px 20px;
}

body.landing .ld-faq .faq-answer p {
    font-size: 15px;
    color: var(--ld-muted);
}

@media (max-width: 768px) {
    .ld-faq__layout {
        grid-template-columns: 1fr;
    }

    body.landing .ld-faq .faq-question {
        padding-top: 14px;
        padding-right: 12px;
        padding-bottom: 14px;
        padding-left: 16px;
    }

    body.landing .ld-faq .faq-answer {
        padding: 0 12px 18px 16px;
    }
}

/* --- CTA band --- */
body.landing .ld-cta.cta-section {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    max-width: none;
    margin: 0;
    text-align: left;
}

.ld-cta {
    --cta-hover-delay: 0s;
    padding: clamp(56px, 8vw, 88px) 0;
    background: linear-gradient(
        165deg,
        #f9f6ff 0%,
        var(--ld-paper) 52%,
        var(--ld-paper-deep) 100%
    );
    color: var(--ld-ink);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ld-cta:hover {
    --cta-hover-delay: 0.32s;
}

/* Layered mesh + noise (pseudo-elements were disabled on `.cta-section`; keep them visible) */
.ld-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 78% 58% at 92% 6%, rgba(0, 36, 145, 0.16), transparent 58%),
        radial-gradient(ellipse 65% 52% at 6% 94%, rgba(14, 221, 197, 0.12), transparent 58%),
        radial-gradient(ellipse 55% 45% at 48% 42%, rgba(6, 61, 70, 0.07), transparent 72%);
}

.ld-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.055;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: no-preference) {
    .ld-cta::before {
        animation: ld-cta-mesh 14s ease-in-out infinite alternate;
    }
}

@keyframes ld-cta-mesh {
    0% {
        opacity: 1;
        transform: scale(1) translate3d(0, 0, 0);
    }
    100% {
        opacity: 0.92;
        transform: scale(1.03) translate3d(-1%, 1%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ld-cta::before {
        animation: none;
    }
}

.ld-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(24px, 3.5vw, 36px);
    border-radius: var(--ld-radius);
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(14px) saturate(145%);
    -webkit-backdrop-filter: blur(14px) saturate(145%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 1px 0 rgba(1, 8, 28, 0.05),
        0 28px 56px -32px rgba(1, 8, 28, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition:
        transform 1.1s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay),
        box-shadow 1.05s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay),
        border-color 0.95s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay),
        background 0.95s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay);
}

.ld-cta:hover .ld-cta__inner {
    transform: translateY(-7px) scale(1.012);
    border-color: rgba(0, 36, 145, 0.26);
    background: rgba(255, 255, 255, 0.52);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95),
        0 36px 72px -36px rgba(0, 36, 145, 0.22),
        0 22px 48px rgba(1, 8, 28, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ld-cta:hover .ld-cta__title {
    color: var(--ld-accent);
}

.ld-cta:hover .ld-cta__copy::before {
    transform: scaleX(1.08);
    box-shadow: 0 10px 28px rgba(0, 36, 145, 0.38);
}

.ld-cta:hover .ld-cta__bullets li {
    border-color: rgba(0, 36, 145, 0.22);
    background: rgba(0, 36, 145, 0.09);
}

@media (prefers-reduced-motion: reduce) {
    .ld-cta:hover .ld-cta__inner {
        transform: none;
    }
}

.ld-cta__copy::before {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, var(--ld-accent), var(--ld-warm));
    box-shadow: 0 6px 18px rgba(0, 36, 145, 0.22);
    transform-origin: left center;
    transition:
        transform 1.05s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay),
        box-shadow 1s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay);
}

.ld-cta__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.65rem, 2vw + 1rem, 2.25rem);
    margin: 0 0 12px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
    color: var(--ld-ink);
    transition: color 1s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay);
}

.ld-cta__sub {
    margin: 0 0 16px;
    color: var(--ld-muted);
    max-width: 42ch;
}

.ld-cta__bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.ld-cta__bullets li {
    font-size: 13px;
    font-weight: 500;
    color: var(--ld-ink);
    position: relative;
    padding: 9px 16px 9px 30px;
    background: rgba(0, 36, 145, 0.06);
    border: 1px solid rgba(0, 36, 145, 0.12);
    border-radius: 999px;
    transition:
        border-color 1s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay),
        background 1s cubic-bezier(0.33, 1, 0.32, 1) var(--cta-hover-delay);
}

.ld-cta__bullets li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ld-accent);
    font-weight: 700;
    font-size: 13px;
}

.ld-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start; /* overrides `.hero-cta` (center) */
}

body.landing .ld-cta .ld-btn-primary.cta-button.primary {
    background: var(--ld-contact-sales-bg);
    background-color: var(--ld-accent);
    color: #fff;
    border: none;
    border-radius: var(--ld-contact-sales-radius);
    padding: 14px 28px;
    font-weight: 600;
    box-shadow: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.28s ease,
        filter 0.2s ease;
}

body.landing .ld-cta .ld-btn-primary.cta-button.primary:hover {
    background: var(--ld-contact-sales-bg-hover);
    background-color: var(--recurr-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 36, 145, 0.38);
}

/* Primary “Contact sales” without ld-btn / ld-nav (e.g. some marketing pages) */
body.landing a.cta-button.primary[href*='book-a-call'] {
    border-radius: var(--ld-contact-sales-radius);
}

body.landing .ld-cta .ld-btn-outline-light.cta-button.secondary {
    background: transparent;
    color: var(--ld-ink);
    border: 1px solid var(--ld-line);
}

body.landing .ld-cta .ld-btn-outline-light.cta-button.secondary:hover {
    border-color: var(--ld-ink);
    background: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    body.landing .ld-cta.cta-section {
        margin-inline: clamp(14px, 5vw, 28px);
    }
}

/* --- Contact / form --- */
body.landing .ld-contact.book-call-section {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    background: transparent;
    max-width: none;
    margin: 0;
}

body.landing .ld-contact.book-call-section::before,
body.landing .ld-contact.book-call-section::after {
    display: none !important;
}

.ld-contact {
    padding: clamp(72px, 10vw, 112px) 0;
}

.ld-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
}

.ld-contact__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ld-warm);
    margin: 0 0 12px;
}

.ld-contact__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.75rem, 2vw + 1rem, 2.35rem);
    margin: 0 0 16px;
}

.ld-contact__lede {
    color: var(--ld-muted);
    margin: 0 0 24px;
    font-size: 1.05rem;
}

.ld-contact__benefits.book-call-benefits li::before {
    background: var(--ld-accent);
}

.ld-form-card.book-call-form-wrapper {
    border-radius: var(--ld-radius);
    border: 1px solid var(--ld-line);
    box-shadow: 0 24px 48px rgba(1, 8, 28, 0.08);
    background: #fff;
    padding: clamp(24px, 5vw, 40px);
}

body.landing .book-call-form .form-group label {
    color: var(--ld-muted);
    font-size: 13px;
    font-weight: 600;
}

body.landing .book-call-form input,
body.landing .book-call-form select,
body.landing .book-call-form textarea {
    border-radius: 12px;
    border: 1px solid var(--ld-line);
    background: var(--ld-paper);
}

body.landing .book-call-form input:focus,
body.landing .book-call-form select:focus,
body.landing .book-call-form textarea:focus {
    border-color: var(--ld-accent);
    box-shadow: 0 0 0 3px var(--ld-accent-soft);
    outline: none;
}

body.landing .landing-form-submit.ld-btn-primary {
    width: 100%;
    margin-top: 8px;
}

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

.book-call-form {
    position: relative;
}

.book-call-form-status {
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
}

.book-call-form-turnstile {
    margin-top: 14px;
}

.book-call-form-status--success {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #14532d;
}

.book-call-form-status--error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #991b1b;
}

@media (max-width: 900px) {
    .ld-contact__grid {
        grid-template-columns: 1fr;
    }
}

/* --- Footer on landing --- */
body.landing footer {
    padding: 80px 0 32px;
    background: var(--ld-ink);
    color: rgba(255, 255, 255, 0.88);
    border-top: none;
}

body.landing .footer-column ul li a {
    color: rgba(255, 255, 255, 0.65);
}

body.landing .footer-column ul li a:hover {
    color: #5eece0;
}

body.landing .footer-contact-link:hover,
body.landing .social-link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    body.landing footer {
        padding: 60px 0 32px;
    }
}

/* --- Scroll reveals --- */
@media (prefers-reduced-motion: no-preference) {
    body.landing.landing-scrollfx .ld-manifesto:not(.active) .ld-manifesto__layout,
    body.landing.landing-scrollfx .ld-manifesto:not(.active) .ld-manifesto__visual,
    body.landing.landing-scrollfx .ld-bento:not(.active) .ld-section-head,
    body.landing.landing-scrollfx .ld-bento:not(.active) .ld-bento__grid,
    body.landing.landing-scrollfx .ld-spotlight:not(.active) .ld-spotlight__grid,
    body.landing.landing-scrollfx .ld-principles:not(.active) .ld-section-head,
    body.landing.landing-scrollfx .ld-principles:not(.active) .ld-principles__grid,
    body.landing.landing-scrollfx .ld-faq:not(.active) .ld-faq__layout,
    body.landing.landing-scrollfx .ld-cta:not(.active) .ld-cta__inner,
    body.landing.landing-scrollfx .ld-contact:not(.active) .ld-contact__grid {
        opacity: 0;
        transform: translateY(36px);
    }

    /* Orbit sits above copy on small screens; IO often under-reports intersection → stays opacity:0 */
    @media (max-width: 900px) {
        body.landing.landing-scrollfx .ld-manifesto:not(.active) .ld-manifesto__visual {
            opacity: 1;
            transform: none;
        }
    }

    body.landing.landing-scrollfx .ld-manifesto.active .ld-manifesto__layout,
    body.landing.landing-scrollfx .ld-manifesto.active .ld-manifesto__visual,
    body.landing.landing-scrollfx .ld-bento.active .ld-section-head,
    body.landing.landing-scrollfx .ld-bento.active .ld-bento__grid,
    body.landing.landing-scrollfx .ld-spotlight.active .ld-spotlight__grid,
    body.landing.landing-scrollfx .ld-principles.active .ld-section-head,
    body.landing.landing-scrollfx .ld-principles.active .ld-principles__grid,
    body.landing.landing-scrollfx .ld-faq.active .ld-faq__layout,
    body.landing.landing-scrollfx .ld-cta.active .ld-cta__inner,
    body.landing.landing-scrollfx .ld-contact.active .ld-contact__grid {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.landing.landing-scrollfx .ld-bento.active .ld-bento__grid {
        transition-delay: 0.06s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ld-hero__blob {
        animation: none;
    }

    .ld-hero-logos__track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 22px;
        column-gap: 40px;
        width: auto;
        max-width: 100%;
    }

    .ld-hero-logos__viewport {
        overflow: visible;
    }

    .ld-hero-logos__row {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }

    .ld-hero-logos__row[aria-hidden='true'] {
        display: none;
    }
}

/* --- Hero responsive --- */
@media (max-width: 900px) {
    .ld-hero__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ld-hero__visual {
        width: 100%;
        max-width: min(520px, 100%);
        margin-left: auto;
        margin-right: auto;
        /* Keep wide marquee from widening the column (prevents right-edge crop under overflow) */
        overflow-x: clip;
    }

    .ld-hero__figure {
        max-width: 100%;
    }

    .ld-hero__figure img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
    }

    .ld-hero__blob {
        right: 0;
        width: 82%;
    }

    .ld-hero__caption.ld-hero-caption-rotator {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .ld-hero-caption-rotator__layout {
        justify-content: center;
        align-items: flex-start;
    }

    .ld-hero-caption-rotator__slide {
        white-space: normal;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 42ch;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        transform: translateY(14px);
    }

    .ld-hero-caption-rotator__slide.is-current {
        transform: translateY(0);
    }

    .ld-hero-caption-rotator__slide.is-exiting {
        transform: translateY(-14px);
    }

    .ld-hero-caption-rotator__slides {
        min-height: 3.5em;
    }

    .ld-hero-logos {
        text-align: center;
    }

    .ld-hero-logos__label {
        text-align: center;
    }

    .ld-hero__copy {
        text-align: center;
    }

    .ld-lede {
        margin-left: auto;
        margin-right: auto;
    }

    .ld-hero__stats {
        justify-content: center;
    }

    .ld-hero__cta {
        justify-content: center;
    }
}

/* --- Marketing subpages (body.landing.landing-sub): solution + legal + pricing + faq --- */

/* Product pages: undo global page-load fades (conflicts with section scroll reveal) */
body.landing.landing-sub .solution-hero-container,
body.landing.landing-sub .solution-hero h1,
body.landing.landing-sub .solution-hero-subtitle,
body.landing.landing-sub .solution-intro,
body.landing.landing-sub .solution-benefits,
body.landing.landing-sub .solution-benefits ul li,
body.landing.landing-sub .solution-feature-item {
    opacity: 1 !important;
    animation: none !important;
}

/* Split product hero (image + copy) */
body.landing.landing-sub .solution-hero--split {
    padding: clamp(96px, 12vw, 132px) 0 clamp(40px, 5vw, 56px);
    border-bottom: 1px solid var(--ld-line);
}

body.landing.landing-sub .solution-hero--split .solution-hero-container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}

body.landing.landing-sub .solution-hero__inner {
    width: min(var(--page-max-width), 100%);
    margin: 0 auto;
    padding: 0 var(--ld-pad-x);
    box-sizing: border-box;
}

body.landing.landing-sub .solution-hero__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
}

body.landing.landing-sub .solution-hero__copy {
    position: relative;
    z-index: 1;
}

body.landing.landing-sub .solution-hero__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ld-accent);
    margin: 0 0 14px;
}

body.landing.landing-sub .solution-hero--split h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2rem, 3.5vw + 1rem, 3rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

body.landing.landing-sub .solution-hero--split .solution-hero-subtitle {
    font-size: clamp(1rem, 0.65vw + 0.92rem, 1.18rem);
    margin: 0;
    max-width: 42ch;
    line-height: 1.55;
}

body.landing.landing-sub .solution-hero__figure {
    margin: 0;
    border-radius: var(--ld-radius);
    overflow: hidden;
    border: 1px solid var(--ld-line);
    box-shadow:
        0 2px 8px rgba(1, 8, 28, 0.06),
        0 26px 52px rgba(1, 8, 28, 0.1);
}

body.landing.landing-sub .solution-hero__figure img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    body.landing.landing-sub .solution-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    body.landing.landing-sub .solution-hero__figure {
        order: -1;
        max-width: min(440px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    body.landing.landing-sub .solution-hero--split .solution-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        max-width: 38ch;
    }
}

/* Stack intro / features / benefits / CTA as independent sections for scroll reveal */
body.landing.landing-sub .solution-block {
    padding: clamp(44px, 7vw, 84px) 0;
}

body.landing.landing-sub .solution-block .solution-container {
    width: min(var(--page-max-width), 100%);
    margin: 0 auto;
    padding: 0 var(--ld-pad-x);
    box-sizing: border-box;
}

body.landing.landing-sub .solution-block + .solution-block {
    border-top: 1px solid var(--ld-line);
}

body.landing.landing-sub .solution-feature-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 14px;
    background: rgba(0, 36, 145, 0.07);
    border: 1px solid rgba(0, 36, 145, 0.14);
    color: var(--ld-accent);
    transition:
        transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1),
        border-color 0.32s ease,
        background 0.32s ease,
        color 0.25s ease;
}

body.landing.landing-sub .solution-feature-item:hover .solution-feature-item__icon {
    transform: translateY(-4px);
    border-color: rgba(0, 36, 145, 0.28);
    background: rgba(0, 36, 145, 0.11);
    color: var(--ld-accent);
}

body.landing.landing-sub .solution-feature-item__icon svg {
    width: 22px;
    height: 22px;
}

@media (prefers-reduced-motion: reduce) {
    body.landing.landing-sub .solution-feature-item:hover .solution-feature-item__icon {
        transform: none;
    }
}

body.landing.landing-sub .solution-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 88% 62% at 88% 12%, rgba(0, 36, 145, 0.1), transparent 58%),
        radial-gradient(ellipse 62% 48% at 8% 88%, rgba(14, 221, 197, 0.07), transparent 52%),
        linear-gradient(185deg, var(--ld-paper-deep) 0%, var(--ld-paper) 55%, rgba(249, 246, 255, 0.98) 100%);
}

body.landing.landing-sub .solution-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.5), transparent 55%);
}

body.landing.landing-sub .solution-hero-container {
    position: relative;
    z-index: 1;
}

body.landing.landing-sub .solution-content {
    position: relative;
}

body.landing.landing-sub .solution-intro h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

body.landing.landing-sub .solution-feature-item {
    border-radius: var(--ld-radius-sm);
    border: 1px solid rgba(0, 36, 145, 0.1);
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.78) 100%
    );
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 32px rgba(1, 8, 28, 0.05);
    transition:
        transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.35s ease;
}

body.landing.landing-sub .solution-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 36, 145, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 48px rgba(0, 36, 145, 0.1);
}

body.landing.landing-sub .solution-feature-item h3 {
    color: var(--ld-ink);
    transition: color 0.3s ease;
}

body.landing.landing-sub .solution-feature-item:hover h3 {
    color: var(--ld-accent);
}

body.landing.landing-sub .solution-benefits {
    border-radius: var(--ld-radius);
    border: 1px solid rgba(1, 8, 28, 0.06);
    background: rgba(255, 255, 255, 0.65);
    padding: clamp(22px, 4vw, 36px);
    box-shadow: 0 14px 40px rgba(1, 8, 28, 0.05);
}

body.landing.landing-sub .solution-benefits ul li {
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

body.landing.landing-sub .solution-benefits ul li:hover {
    transform: translateX(4px);
}

body.landing.landing-sub .solution-cta {
    margin-top: clamp(32px, 6vw, 56px);
    padding: clamp(28px, 5vw, 44px);
    border-radius: var(--ld-radius);
    background:
        radial-gradient(ellipse 80% 70% at 85% 20%, rgba(0, 36, 145, 0.09), transparent 55%),
        linear-gradient(175deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 246, 255, 0.55) 100%);
    border: 1px solid rgba(0, 36, 145, 0.12);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 22px 48px rgba(1, 8, 28, 0.06);
    text-align: center;
    /* style.css uses light text for dark CTA cards; landing subpages use a light panel */
    color: var(--ld-ink);
    opacity: 1;
    animation: none;
}

body.landing.landing-sub .solution-cta h2 {
    color: var(--ld-ink);
    opacity: 1 !important;
    animation: none !important;
}

body.landing.landing-sub .solution-cta > p {
    color: var(--ld-muted);
    opacity: 1 !important;
    animation: none !important;
}

body.landing.landing-sub .solution-cta .cta-button {
    opacity: 1 !important;
    animation: none !important;
}

body.landing.landing-sub .solution-cta::before {
    opacity: 0.35;
}

body.landing.landing-sub .solution-cta .hero-cta {
    justify-content: center;
}

/* ------------------------------------------------------------------
   Product pages: premium editorial (classier than home, per product)
   body: .product-page .product-page--{employees|payroll|leave|performance|recruitment}
   ------------------------------------------------------------------ */

body.product-page {
    --pp-ink: var(--ld-ink);
    --pp-muted: var(--ld-muted);
    --pp-line: var(--ld-line);
    --pp-sheen: rgba(255, 255, 255, 0.55);
    /* Filled in per .product-page--* */
    --pp-tint: var(--ld-accent);
    --pp-tint-soft: rgba(0, 36, 145, 0.08);
    --pp-blob-a: rgba(0, 36, 145, 0.32);
    --pp-blob-b: rgba(14, 221, 197, 0.2);
    --pp-eyebrow-glow: rgba(14, 221, 197, 0.22);
    --pp-mesh-1: rgba(0, 36, 145, 0.1);
    --pp-mesh-2: rgba(14, 221, 197, 0.08);
    --pp-mesh-3: rgba(99, 102, 241, 0.06);
    --pp-icon-surface: rgba(0, 36, 145, 0.07);
    --pp-icon-border: rgba(0, 36, 145, 0.16);
    --pp-cta-glow: rgba(0, 36, 145, 0.12);
}

/* —— People & connection: warm violet, human, soft structure —— */
body.product-page--employees {
    --pp-tint: #5b4aa8;
    --pp-tint-soft: rgba(91, 74, 168, 0.09);
    --pp-blob-a: rgba(91, 74, 168, 0.38);
    --pp-blob-b: rgba(196, 165, 214, 0.22);
    --pp-eyebrow-glow: rgba(196, 165, 214, 0.35);
    --pp-mesh-1: rgba(91, 74, 168, 0.14);
    --pp-mesh-2: rgba(232, 213, 245, 0.35);
    --pp-mesh-3: rgba(14, 221, 197, 0.07);
    --pp-icon-surface: rgba(91, 74, 168, 0.1);
    --pp-icon-border: rgba(91, 74, 168, 0.22);
    --pp-cta-glow: rgba(91, 74, 168, 0.14);
}

/* —— Payroll: precision, deep blue, mint highlight —— */
body.product-page--payroll {
    --pp-tint: #0038a8;
    --pp-tint-soft: rgba(0, 56, 168, 0.08);
    --pp-blob-a: rgba(0, 36, 145, 0.42);
    --pp-blob-b: rgba(14, 221, 197, 0.28);
    --pp-eyebrow-glow: rgba(14, 221, 197, 0.3);
    --pp-mesh-1: rgba(0, 25, 80, 0.12);
    --pp-mesh-2: rgba(0, 56, 168, 0.08);
    --pp-mesh-3: rgba(14, 221, 197, 0.1);
    --pp-icon-surface: rgba(0, 56, 168, 0.1);
    --pp-icon-border: rgba(0, 56, 168, 0.22);
    --pp-cta-glow: rgba(0, 56, 168, 0.16);
}

/* —— Leave & time: airy teal, daylight rhythm —— */
body.product-page--leave {
    --pp-tint: #0d8a7a;
    --pp-tint-soft: rgba(13, 138, 122, 0.08);
    --pp-blob-a: rgba(13, 138, 122, 0.32);
    --pp-blob-b: rgba(125, 211, 192, 0.28);
    --pp-eyebrow-glow: rgba(125, 211, 192, 0.45);
    --pp-mesh-1: rgba(13, 138, 122, 0.1);
    --pp-mesh-2: rgba(240, 253, 250, 0.9);
    --pp-mesh-3: rgba(0, 36, 145, 0.05);
    --pp-icon-surface: rgba(13, 138, 122, 0.09);
    --pp-icon-border: rgba(13, 138, 122, 0.2);
    --pp-cta-glow: rgba(13, 138, 122, 0.12);
}

/* —— Performance: aspiration, amber depth —— */
body.product-page--performance {
    --pp-tint: #b45309;
    --pp-tint-soft: rgba(180, 83, 9, 0.08);
    --pp-blob-a: rgba(180, 83, 9, 0.22);
    --pp-blob-b: rgba(251, 191, 36, 0.28);
    --pp-eyebrow-glow: rgba(251, 191, 36, 0.4);
    --pp-mesh-1: rgba(180, 83, 9, 0.09);
    --pp-mesh-2: rgba(254, 243, 199, 0.45);
    --pp-mesh-3: rgba(91, 74, 168, 0.05);
    --pp-icon-surface: rgba(180, 83, 9, 0.08);
    --pp-icon-border: rgba(180, 83, 9, 0.2);
    --pp-cta-glow: rgba(180, 83, 9, 0.14);
}

/* —— Recruitment: momentum, coral signal —— */
body.product-page--recruitment {
    --pp-tint: #be123c;
    --pp-tint-soft: rgba(190, 18, 60, 0.07);
    --pp-blob-a: rgba(190, 18, 60, 0.26);
    --pp-blob-b: rgba(251, 113, 133, 0.28);
    --pp-eyebrow-glow: rgba(251, 113, 133, 0.45);
    --pp-mesh-1: rgba(190, 18, 60, 0.08);
    --pp-mesh-2: rgba(255, 228, 230, 0.55);
    --pp-mesh-3: rgba(0, 36, 145, 0.05);
    --pp-icon-surface: rgba(190, 18, 60, 0.08);
    --pp-icon-border: rgba(190, 18, 60, 0.2);
    --pp-cta-glow: rgba(190, 18, 60, 0.12);
}

/* --- Solutions pages palettes --- */
body.product-page--startups {
    --pp-tint: #7c3aed;
    --pp-tint-soft: rgba(124, 58, 237, 0.08);
    --pp-blob-a: rgba(124, 58, 237, 0.28);
    --pp-blob-b: rgba(59, 130, 246, 0.22);
    --pp-eyebrow-glow: rgba(124, 58, 237, 0.3);
    --pp-mesh-1: rgba(124, 58, 237, 0.12);
    --pp-mesh-2: rgba(221, 214, 254, 0.45);
    --pp-mesh-3: rgba(56, 189, 248, 0.1);
    --pp-icon-surface: rgba(124, 58, 237, 0.09);
    --pp-icon-border: rgba(124, 58, 237, 0.2);
    --pp-cta-glow: rgba(124, 58, 237, 0.14);
}

body.product-page--smes {
    --pp-tint: #0f766e;
    --pp-tint-soft: rgba(15, 118, 110, 0.08);
    --pp-blob-a: rgba(15, 118, 110, 0.28);
    --pp-blob-b: rgba(20, 184, 166, 0.22);
    --pp-eyebrow-glow: rgba(45, 212, 191, 0.35);
    --pp-mesh-1: rgba(15, 118, 110, 0.11);
    --pp-mesh-2: rgba(204, 251, 241, 0.55);
    --pp-mesh-3: rgba(45, 212, 191, 0.08);
    --pp-icon-surface: rgba(15, 118, 110, 0.09);
    --pp-icon-border: rgba(15, 118, 110, 0.2);
    --pp-cta-glow: rgba(15, 118, 110, 0.13);
}

body.product-page--enterprises {
    --pp-tint: #1e3a8a;
    --pp-tint-soft: rgba(30, 58, 138, 0.08);
    --pp-blob-a: rgba(30, 58, 138, 0.3);
    --pp-blob-b: rgba(6, 182, 212, 0.18);
    --pp-eyebrow-glow: rgba(59, 130, 246, 0.28);
    --pp-mesh-1: rgba(30, 58, 138, 0.12);
    --pp-mesh-2: rgba(191, 219, 254, 0.4);
    --pp-mesh-3: rgba(125, 211, 252, 0.09);
    --pp-icon-surface: rgba(30, 58, 138, 0.1);
    --pp-icon-border: rgba(30, 58, 138, 0.24);
    --pp-cta-glow: rgba(30, 58, 138, 0.16);
}

body.product-page--hrteams {
    --pp-tint: #a16207;
    --pp-tint-soft: rgba(161, 98, 7, 0.08);
    --pp-blob-a: rgba(161, 98, 7, 0.24);
    --pp-blob-b: rgba(234, 179, 8, 0.24);
    --pp-eyebrow-glow: rgba(250, 204, 21, 0.35);
    --pp-mesh-1: rgba(161, 98, 7, 0.1);
    --pp-mesh-2: rgba(254, 243, 199, 0.45);
    --pp-mesh-3: rgba(251, 191, 36, 0.08);
    --pp-icon-surface: rgba(161, 98, 7, 0.09);
    --pp-icon-border: rgba(161, 98, 7, 0.21);
    --pp-cta-glow: rgba(161, 98, 7, 0.13);
}

body.product-page--finance {
    --pp-tint: #0f3d8f;
    --pp-tint-soft: rgba(15, 61, 143, 0.08);
    --pp-blob-a: rgba(15, 61, 143, 0.3);
    --pp-blob-b: rgba(14, 165, 233, 0.22);
    --pp-eyebrow-glow: rgba(14, 165, 233, 0.32);
    --pp-mesh-1: rgba(15, 61, 143, 0.11);
    --pp-mesh-2: rgba(186, 230, 253, 0.45);
    --pp-mesh-3: rgba(6, 182, 212, 0.08);
    --pp-icon-surface: rgba(15, 61, 143, 0.09);
    --pp-icon-border: rgba(15, 61, 143, 0.22);
    --pp-cta-glow: rgba(15, 61, 143, 0.15);
}

/* Hero: mesh + noise + home-parity polish */
body.product-page.landing-sub .solution-hero {
    background:
        radial-gradient(ellipse 90% 55% at 92% 8%, var(--pp-mesh-1), transparent 55%),
        radial-gradient(ellipse 65% 50% at 4% 92%, var(--pp-mesh-2), transparent 52%),
        radial-gradient(ellipse 50% 40% at 72% 78%, var(--pp-mesh-3), transparent 48%),
        linear-gradient(188deg, var(--ld-paper-deep) 0%, var(--ld-paper) 52%, rgba(249, 246, 255, 0.98) 100%);
}

body.product-page.landing-sub .solution-hero::after {
    opacity: 0.32;
    background: radial-gradient(circle at 38% 32%, var(--pp-sheen), transparent 58%);
}

body.product-page .solution-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.038;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: 0;
}

body.product-page .solution-hero--split {
    padding: calc(72px + clamp(40px, 8vw, 72px)) 0 clamp(48px, 6vw, 72px);
}

body.product-page .solution-hero__visual {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.product-page .solution-hero__blob {
    position: absolute;
    width: 92%;
    height: 90%;
    right: -8%;
    top: 4%;
    border-radius: 42% 58% 68% 32% / 48% 38% 62% 52%;
    background:
        radial-gradient(circle at 28% 28%, var(--pp-blob-a), transparent 58%),
        radial-gradient(circle at 72% 76%, var(--pp-blob-b), transparent 46%);
    z-index: 0;
    filter: blur(0);
}

@media (prefers-reduced-motion: no-preference) {
    body.product-page .solution-hero__blob {
        animation: productHeroBlob 20s ease-in-out infinite alternate;
    }
}

@keyframes productHeroBlob {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    100% {
        transform: translate(-14px, 18px) rotate(8deg) scale(1.03);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.product-page .solution-hero__blob {
        animation: none;
    }
}

body.product-page .solution-hero__figure {
    position: relative;
    z-index: 1;
    box-shadow:
        0 2px 4px rgba(1, 8, 28, 0.05),
        0 28px 56px rgba(1, 8, 28, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

body.product-page .solution-hero__tagline {
    position: relative;
    z-index: 2;
    margin: clamp(14px, 2.2vw, 18px) 0 0;
    padding: 12px 16px 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--pp-ink);
    max-width: 36ch;
}

@media (max-width: 900px) {
    body.product-page .solution-hero__tagline {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        max-width: 40ch;
    }
}

/* Eyebrow + display: home-scale type */
body.product-page.landing-sub .solution-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 clamp(18px, 3vw, 22px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pp-muted);
}

body.product-page .solution-hero__eyebrow-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pp-tint);
    box-shadow:
        0 0 0 4px var(--pp-eyebrow-glow),
        0 0 12px color-mix(in srgb, var(--pp-tint) 35%, transparent);
}

@media (prefers-reduced-motion: no-preference) {
    body.product-page .solution-hero__eyebrow-dot {
        animation: productEyebrowPulse 2.6s ease-in-out infinite;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.product-page .solution-hero__eyebrow-dot {
        animation: none;
    }
}

@keyframes productEyebrowPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 4px var(--pp-eyebrow-glow),
            0 0 10px color-mix(in srgb, var(--pp-tint) 28%, transparent);
    }

    50% {
        transform: scale(1.18);
        box-shadow:
            0 0 0 7px color-mix(in srgb, var(--pp-tint) 18%, transparent),
            0 0 18px color-mix(in srgb, var(--pp-tint) 38%, transparent);
    }
}

/* Wins over `body.landing.landing-sub .solution-hero--split h1` */
body.product-page.landing-sub .solution-hero--split h1.solution-display {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw + 1rem, 3.85rem);
    line-height: 1.03;
    letter-spacing: -0.035em;
    margin: 0 0 clamp(16px, 2.5vw, 22px);
    color: var(--pp-ink);
}

body.product-page.landing-sub .solution-hero--split .solution-hero-subtitle {
    font-size: clamp(1.05rem, 0.85vw + 0.92rem, 1.22rem);
    color: var(--pp-muted);
    max-width: 38ch;
    line-height: 1.58;
}

/* Intro: manifesto strip */
body.product-page .solution-intro--editorial {
    position: relative;
    padding-left: clamp(20px, 4vw, 36px);
    border-left: 3px solid color-mix(in srgb, var(--pp-tint) 55%, var(--ld-line));
}

body.product-page .solution-intro__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pp-tint);
    margin: 0 0 12px;
}

body.product-page .solution-intro--editorial h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.55rem, 2.2vw + 1rem, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--pp-ink);
}

body.product-page .solution-intro--editorial > p:not(.solution-intro__label) {
    font-size: clamp(1rem, 0.55vw + 0.95rem, 1.12rem);
    color: var(--pp-muted);
    line-height: 1.65;
    margin: 0;
    max-width: 56ch;
}

body.product-page .solution-intro__rule {
    width: 72px;
    height: 2px;
    margin: 22px 0 22px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--pp-tint), color-mix(in srgb, var(--pp-tint) 20%, transparent));
}

/* Bento feature grid + spotlight */
body.product-page .solution-features--bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(16px, 2vw, 22px);
}

body.product-page .solution-features--bento .solution-feature-item {
    grid-column: span 6;
    padding: clamp(22px, 3vw, 28px);
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--pp-tint) 12%, var(--ld-line));
    background:
        linear-gradient(168deg, rgba(255, 255, 255, 0.98) 0%, var(--pp-tint-soft) 140%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.92) inset,
        0 12px 36px rgba(1, 8, 28, 0.04);
}

body.product-page .solution-features--bento .solution-feature-item--spotlight {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(72px, 92px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: clamp(20px, 4vw, 32px);
    row-gap: 8px;
    align-items: start;
    padding: clamp(28px, 4vw, 40px);
    background:
        radial-gradient(ellipse 70% 90% at 0% 50%, var(--pp-tint-soft), transparent 52%),
        linear-gradient(168deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.86) 100%);
    border: 1px solid color-mix(in srgb, var(--pp-tint) 18%, var(--ld-line));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 50px color-mix(in srgb, var(--pp-tint) 10%, rgba(1, 8, 28, 0.04));
}

body.product-page .solution-features--bento .solution-feature-item--spotlight .solution-feature-item__icon {
    grid-column: 1;
    grid-row: 1 / -1;
    align-self: start;
    width: 56px;
    height: 56px;
    border-radius: 16px;
}

body.product-page .solution-features--bento .solution-feature-item--spotlight h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}

body.product-page .solution-features--bento .solution-feature-item--spotlight p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
}

body.product-page .solution-features--bento .solution-feature-item--spotlight .solution-feature-item__icon svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 720px) {
    body.product-page .solution-features--bento .solution-feature-item {
        grid-column: 1 / -1;
    }

    body.product-page .solution-features--bento .solution-feature-item--spotlight {
        grid-template-columns: 1fr;
    }

    body.product-page .solution-features--bento .solution-feature-item--spotlight .solution-feature-item__icon {
        grid-row: auto;
    }

    body.product-page .solution-features--bento .solution-feature-item--spotlight h3,
    body.product-page .solution-features--bento .solution-feature-item--spotlight p {
        grid-column: 1;
        grid-row: auto;
    }
}

body.product-page .solution-feature-item__icon {
    background: var(--pp-icon-surface);
    border-color: var(--pp-icon-border);
    color: var(--pp-tint);
}

body.product-page .solution-feature-item:hover .solution-feature-item__icon {
    border-color: color-mix(in srgb, var(--pp-tint) 38%, var(--ld-line));
    background: color-mix(in srgb, var(--pp-tint) 16%, white);
    color: var(--pp-tint);
}

body.product-page .solution-feature-item:hover h3 {
    color: var(--pp-tint);
}

/* Key capabilities: editorial header + capability cards */
body.product-page .solution-benefits--capabilities {
    margin-bottom: 0;
    padding: clamp(28px, 5vw, 44px);
    border-radius: var(--ld-radius);
    border: 1px solid color-mix(in srgb, var(--pp-tint) 14%, var(--ld-line));
    background:
        radial-gradient(ellipse 85% 55% at 100% 0%, var(--pp-tint-soft), transparent 58%),
        radial-gradient(ellipse 55% 40% at 0% 100%, color-mix(in srgb, var(--pp-tint) 6%, transparent), transparent 50%),
        rgba(255, 255, 255, 0.82);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 20px 48px rgba(1, 8, 28, 0.05);
    opacity: 1 !important;
    animation: none !important;
}

body.product-page .solution-benefits--capabilities .solution-benefits__head {
    margin-bottom: clamp(22px, 3.5vw, 32px);
    max-width: 48rem;
}

body.product-page .solution-benefits__kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pp-tint);
    margin: 0 0 10px;
}

body.product-page .solution-benefits--capabilities h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.45rem, 1.8vw + 1rem, 1.9rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--ld-ink);
    margin: 0 0 12px;
}

body.product-page .solution-benefits__lede {
    margin: 0;
    font-size: clamp(0.98rem, 0.4vw + 0.92rem, 1.08rem);
    line-height: 1.6;
    color: var(--ld-muted);
    max-width: 42rem;
}

body.product-page ul.solution-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 700px) {
    body.product-page ul.solution-benefits__grid {
        grid-template-columns: 1fr;
    }
}

body.product-page ul.solution-benefits__grid > li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin: 0;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--pp-tint) 11%, var(--ld-line));
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.32s cubic-bezier(0.34, 1.45, 0.64, 1);
    opacity: 1 !important;
    animation: none !important;
}

body.product-page ul.solution-benefits__grid > li:hover {
    border-color: color-mix(in srgb, var(--pp-tint) 26%, var(--ld-line));
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 12px 32px color-mix(in srgb, var(--pp-tint) 8%, rgba(1, 8, 28, 0.04));
    transform: translateY(-3px);
}

body.product-page .solution-benefits__check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-top: 1px;
    border-radius: 11px;
    background: var(--pp-icon-surface);
    border: 1px solid var(--pp-icon-border);
    color: var(--pp-tint);
}

body.product-page .solution-benefits__check svg {
    display: block;
}

body.product-page .solution-benefits__label {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ld-ink);
    padding-top: 6px;
}

@media (prefers-reduced-motion: reduce) {
    body.product-page ul.solution-benefits__grid > li {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    body.product-page ul.solution-benefits__grid > li:hover {
        transform: none;
    }
}

/* CTA: luxe inset + product glow */
body.product-page .solution-block--cta .solution-cta {
    margin-top: 0;
    background:
        radial-gradient(ellipse 90% 70% at 90% 15%, var(--pp-cta-glow), transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 90%, var(--pp-tint-soft), transparent 48%),
        linear-gradient(175deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 246, 255, 0.7) 100%);
    border: 1px solid color-mix(in srgb, var(--pp-tint) 20%, var(--ld-line));
}

body.landing.landing-sub .legal-page {
    padding-top: clamp(12px, 3vw, 28px);
}

body.landing.landing-sub .legal-container {
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    body.landing.landing-sub.landing-scrollfx main.ld-main > section:not(.active) {
        opacity: 0;
        transform: translateY(32px);
    }

    body.landing.landing-sub.landing-scrollfx main.ld-main > section.active {
        opacity: 1;
        transform: translateY(0);
        transition:
            opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    }

    body.landing.landing-sub.landing-scrollfx main.ld-main > section:nth-child(1).active {
        transition-delay: 0.02s;
    }

    body.landing.landing-sub.landing-scrollfx main.ld-main > section:nth-child(2).active {
        transition-delay: 0.06s;
    }

    body.landing.landing-sub.landing-scrollfx main.ld-main > section:nth-child(3).active {
        transition-delay: 0.1s;
    }

    body.landing.landing-sub.landing-scrollfx main.ld-main > section:nth-child(4).active {
        transition-delay: 0.14s;
    }

    body.landing.landing-sub.landing-scrollfx main.ld-main > section:nth-child(5).active {
        transition-delay: 0.18s;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.landing.landing-sub main.ld-main > section {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Thank you — book-a-call confirmation */
body.landing.landing-sub .thank-you-page {
    text-align: center;
}

body.landing.landing-sub .thank-you-kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ld-muted);
    margin: 0 0 12px;
}

body.landing.landing-sub .thank-you-page h1 {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

body.landing.landing-sub .thank-you-lede {
    margin-top: clamp(12px, 3vw, 20px);
}

body.landing.landing-sub .thank-you-note {
    max-width: 36rem;
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ld-muted);
}

body.landing.landing-sub .thank-you-note a {
    color: var(--ld-accent);
    font-weight: 600;
}

body.landing.landing-sub .thank-you-note a:hover {
    text-decoration: underline;
}

body.landing.landing-sub .thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: clamp(28px, 5vw, 44px);
}

@media (max-width: 520px) {
    body.landing.landing-sub .thank-you-actions {
        flex-direction: column;
    }

    body.landing.landing-sub .thank-you-actions .cta-button {
        width: 100%;
        max-width: 280px;
    }
}
