.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .72s cubic-bezier(.2, .7, .2, 1), transform .72s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--reveal-delay, 0ms)
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none
}

.site-head {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--head-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

.site-head nav a, .text-link {
    position: relative;
    transition: color .25s ease
}

.site-head nav a:after, .text-link:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 1px;
    background: currentColor;
    transition: right .3s ease
}

.site-head nav a:hover:after, .text-link:hover:after {
    right: 0
}

.button {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 24, 39, .10)
}

.button.primary:hover {
    box-shadow: 0 12px 28px rgba(16, 24, 39, .18)
}

.product-shot {
    transition: transform .45s cubic-bezier(.2, .7, .2, 1), box-shadow .45s ease
}

.product-shot:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 90px #18243b24
}

.window {
    transition: transform .45s ease
}

.product-shot:hover .window {
    transform: scale(1.008)
}

.bars i {
    transform-origin: bottom;
    animation: bar-rise .85s cubic-bezier(.2, .7, .2, 1) both
}

.bars i:nth-child(2) {
    animation-delay: .06s
}

.bars i:nth-child(3) {
    animation-delay: .12s
}

.bars i:nth-child(4) {
    animation-delay: .18s
}

.bars i:nth-child(5) {
    animation-delay: .24s
}

.bars i:nth-child(6) {
    animation-delay: .30s
}

.bars i:nth-child(7) {
    animation-delay: .36s
}

@keyframes bar-rise {
    from {
        transform: scaleY(.08);
        opacity: .25
    }
    to {
        transform: scaleY(1);
        opacity: 1
    }
}

.feature-grid article, .mini-list span, .plan, .capability-card {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease
}

.feature-grid article:hover {
    transform: translateY(-4px);
    background: #fbfcfe;
    box-shadow: 0 18px 40px rgba(16, 24, 39, .055)
}

.mini-list span:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(16, 24, 39, .06)
}

.plan:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(16, 24, 39, .10)
}

.plan.featured:hover {
    box-shadow: 0 26px 65px #246bfe24
}

.capabilities {
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
    max-width: none;
    padding-left: max(24px, calc((100vw - 1132px) / 2));
    padding-right: max(24px, calc((100vw - 1132px) / 2))
}

.capability-head {
    max-width: 720px
}

.capability-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 14px;
    margin-top: 42px
}

.capability-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    min-height: 170px
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: #ccd8f4;
    box-shadow: 0 18px 45px rgba(16, 24, 39, .07)
}

.capability-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #edf3ff;
    color: var(--accent);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 28px
}

.capability-card h3 {
    font-size: 17px;
    margin: 0 0 9px
}

.capability-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0
}

.outcomes {
    display: grid;
    grid-template-columns:.85fr 1.15fr;
    gap: 80px;
    align-items: start
}

.outcome-list {
    display: grid;
    gap: 12px
}

.outcome {
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px
}

.outcome:last-child {
    border-bottom: 0
}

.outcome b {
    display: block;
    font-size: 17px;
    margin-bottom: 6px
}

.outcome span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6
}

.apply input {
    transition: border-color .2s ease, box-shadow .2s ease
}

.apply input:focus {
    outline: 0;
    border-color: #9ab8ff;
    box-shadow: 0 0 0 4px rgba(36, 107, 254, .09)
}

@media (max-width: 950px) {
    .capability-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .outcomes {
        grid-template-columns:1fr;
        gap: 34px
    }
}

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

    .capability-card {
        min-height: 0
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px
    }
}

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

    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .bars i {
        animation: none
    }

    .button, .product-shot, .window, .feature-grid article, .mini-list span, .plan, .capability-card {
        transition: none
    }
}

/* Navbar sticky + dark-mode correction. This stylesheet loads after landing.css. */
.site-head {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    z-index: 60;
    background: var(--head-bg);
    border-bottom-color: var(--line)
}

.site-head nav, .site-head nav a {
    color: var(--nav-text)
}

.mobile-menu {
    background: var(--paper);
    color: var(--ink)
}

.mobile-menu nav a, .mobile-menu-head {
    color: var(--ink)
}

html[data-theme="dark"] .site-head {
    background: rgba(13, 20, 32, .94);
    border-bottom-color: #293445
}

html[data-theme="dark"] .site-head nav, html[data-theme="dark"] .site-head nav a {
    color: #c2cad6
}

html[data-theme="dark"] .mobile-menu {
    background: #0d1420;
    color: #f5f7fb;
    border-left: 1px solid #293445
}

html[data-theme="dark"] .mobile-menu nav a, html[data-theme="dark"] .mobile-menu-head {
    color: #f5f7fb;
    border-color: #293445
}

html[data-theme="dark"] .theme-toggle, html[data-theme="dark"] .menu-toggle, html[data-theme="dark"] .menu-close {
    background: #121c2a;
    color: #f5f7fb;
    border-color: #293445
}

@media (max-width: 800px) {
    .site-head {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 60
    }
}

/* About + Contact interaction */
.value-card:hover {
    transform: translateY(-4px);
    background: var(--soft);
    box-shadow: 0 18px 40px rgba(16, 24, 39, .055)
}

.contact-card {
    transition: transform .25s ease
}

.contact-card:hover {
    transform: translateX(4px)
}

.contact-note {
    transition: transform .3s ease, box-shadow .3s ease
}

.contact-note:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(16, 24, 39, .07)
}

.footer-nav a {
    transition: color .2s ease
}

@media (prefers-reduced-motion: reduce) {
    .value-card, .contact-card, .contact-note {
        transition: none
    }

    .contact-card:hover, .contact-note:hover, .value-card:hover {
        transform: none
    }
}


/* How it works interaction */
.how-step {
    transition: transform .3s ease
}

.how-number {
    transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease
}

.how-step:hover {
    transform: translateY(-4px)
}

.how-step:hover .how-number {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 28px rgba(16, 24, 39, .12)
}

@media (prefers-reduced-motion: reduce) {
    .how-step, .how-number {
        transition: none
    }

    .how-step:hover, .how-step:hover .how-number {
        transform: none
    }
}
