/* =========================================================
   BA-ICON — Site styles
   Layered on top of Bootstrap 5.3
   ========================================================= */

:root {
    --lime: #D4E100;
    --main-bg: #16161F;
    --lime-hover: #EAF080;
    --lime-deep: #B0B460;
    --dark: #171720;
    --dark-2: #1A1A1A;
    --dark-3: #242424;
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --eyebrow: #8C8C8C;
    --bg-light: #F5F3EF;
    --bg-card: #FFFFFF;
    --bg-lime: #F8F7F4;
    --border: #E8E6E1;
    --border-dark: #2A2A2A;
    --radius: 16px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .06);
    --shadow-lg: 0 18px 48px rgba(0, 0, 0, .12);
    --shadow-lime: 0 10px 28px rgba(212, 255, 61, .25);
    --ease: cubic-bezier(.2, .8, .2, 1);
    --t: 220ms;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 116px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: #fff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1, .h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1.05;
}

h2, .h2 {
    font-size: clamp(2rem, 3vw + 1rem, 3.25rem);
    line-height: 1.1;
}

h3, .h3 {
    font-size: clamp(1.25rem, 1.2vw + .8rem, 1.6rem);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .95rem;
    font-weight: 600;
    color: var(--eyebrow);
    margin-bottom: 4rem;
    display: inline-block;
}

.text-lime {
    color: var(--lime);
}

.bg-lime {
    background: var(--lime);
}

/* =====  Buttons ===== */
.btn-lime {
    --pulse: 0;
    background: var(--lime);
    color: var(--dark);
    border: none;
    border-radius: 999px;
    padding: .75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background-color var(--t) var(--ease);
    position: relative;
    overflow: visible;
}

    .btn-lime:hover, .btn-lime:focus-visible {
        background: var(--lime-hover);
        color: var(--dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lime);
    }

    .btn-lime:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(212, 255, 61, .25);
    }

.btn-cta {
    padding: .8rem 1.6rem;
}

.btn-cta-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid var(--lime);
    animation: ctaPulse 2.4s ease-out infinite;
    pointer-events: none;
    opacity: 0;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

.btn-ghost-light {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .25);
    color: #fff;
    border-radius: 999px;
    padding: .75rem 1.5rem;
    font-weight: 600;
    transition: all var(--t) var(--ease);
}

    .btn-ghost-light:hover {
        background: #fff;
        color: var(--dark);
        transform: translateY(-2px);
    }

.btn-ghost-dark {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    border-radius: 999px;
    padding: .75rem 1.5rem;
    font-weight: 600;
    transition: all var(--t) var(--ease);
}

    .btn-ghost-dark:hover {
        background: var(--text);
        color: #fff;
        transform: translateY(-2px);
    }

/* =====  Navigation ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: background-color var(--t) var(--ease), box-shadow var(--t) var(--ease), backdrop-filter var(--t) var(--ease);
}

.site-nav--transparent {
    background: transparent;
}

.site-nav.is-scrolled,
.site-nav--solid {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.site-nav__logo {
    height: 60px;
    width: auto;
    display: block;
}

@media (min-width: 576px) {
    .site-nav__logo {
        height: 70px;
    }
}

.site-nav__logo--light {
    display: none;
}

.site-nav--transparent:not(.is-scrolled) .site-nav__logo--dark {
    display: none;
}

.site-nav--transparent:not(.is-scrolled) .site-nav__logo--light {
    display: block;
}

.site-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    font-size: .95rem;
    padding: .5rem .9rem !important;
    transition: color var(--t) var(--ease);
}

    .site-nav .nav-link:hover {
        color: var(--dark);
    }

.site-nav--transparent:not(.is-scrolled) .nav-link {
    color: rgba(255, 255, 255, .9);
}

    .site-nav--transparent:not(.is-scrolled) .nav-link:hover {
        color: #fff;
    }

.site-nav .navbar-toggler {
    border: none;
    padding: .35rem .4rem;
    box-shadow: none !important;
    outline: none;
}

.site-nav--transparent:not(.is-scrolled) .navbar-toggler {
    filter: invert(1);
}

.site-nav .navbar {
    position: relative;
}

.site-nav__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    position: relative;
}

/* ----- Slide-in menu: shared ----- */
.site-nav__menu {
    background: var(--dark);
}

@media (min-width: 1200px) {
    .site-nav__menu {
        background: rgba(22,22,31,0.85);
    }
}

.site-nav__menu .navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__menu .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    border-radius: 10px;
    transition: background-color var(--t) var(--ease), color var(--t) var(--ease);
}

    .site-nav__menu .nav-link:hover,
    .site-nav__menu .nav-link:focus-visible {
        color: #fff !important;
        background: rgba(255, 255, 255, .08);
    }

.site-nav__close {
    background: none;
    border: 0;
    color: rgba(255, 255, 255, .8);
    line-height: 1;
    cursor: pointer;
}

    .site-nav__close:hover {
        color: #fff;
    }

/* ----- Mobile (<= 1200px): full-viewport panel sliding in from the right ----- */
@media (max-width: 1199.98px) {
    /* A backdrop-filter on the header (added on scroll) would trap the fixed
       menu in the header's box; drop it instantly (no transition) while the menu
       is open so the panel is full-height BEFORE it slides in — avoids a jump. */
    body.nav-open .site-nav {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        transition: none !important;
    }

    .site-nav__menu {
        position: fixed;
        inset: 0;
        z-index: 1040;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5rem 1.5rem;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 340ms var(--ease), visibility 340ms var(--ease);
    }

        .site-nav__menu.is-open {
            transform: translateX(0);
            visibility: visible;
        }

        .site-nav__menu .navbar-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .5rem;
            width: 100%;
        }

        .site-nav__menu .nav-link {
            font-size: 1.4rem;
            padding: .6rem 1rem !important;
        }

    .site-nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }

    .site-nav__menu .nav-item--cta {
        margin-top: 1rem;
    }

    body.nav-open {
        overflow: hidden;
    }
}

/* ----- Desktop (>= 1200px): horizontal items sliding in from the hamburger ----- */
@media (min-width: 1200px) {
    .site-nav__close {
        display: none;
    }

    .site-nav__menu {
        position: absolute;
        top: 50%;
        right: calc(100% + .5rem);
        border: 1px solid var(--border-dark);
        border-radius: 999px;
        padding: .35rem .5rem;
        box-shadow: var(--shadow-lg);
        transform-origin: right center;
        transform: translateY(-50%) translateX(20px) scaleX(.7);
        opacity: 0;
        visibility: hidden;
        transition: transform 280ms var(--ease), opacity 220ms var(--ease), visibility 280ms var(--ease);
    }

        .site-nav__menu.is-open {
            transform: translateY(-50%) translateX(0) scaleX(1);
            opacity: 1;
            visibility: visible;
        }

        .site-nav__menu .navbar-nav {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: .15rem;
        }

        .site-nav__menu .nav-link {
            white-space: nowrap;
            padding: .5rem .9rem !important;
            font-size: .95rem;
        }
}

/* =====  Section helpers ===== */
.section {
    padding: 5.5rem 0;
    position: relative;
}

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

    .section--dark h1, .section--dark h2, .section--dark h3 {
        color: #fff;
    }

    .section--dark .eyebrow {
        color: rgba(255, 255, 255, .55);
    }

.section--light {
    background: var(--bg-light);
}

.section--lime {
    background: var(--bg-lime);
}

.section--white {
    background: #fff;
}

.section--strategic {
    background: #16161F;
    color: #fff;
    padding: 7rem 0;
}

    .section--strategic .eyebrow {
        color: var(--lime);
    }

    .section--strategic .section-title {
        max-width: 980px;
    }

    .section--strategic h2 {
        color: #fff;
        font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
        line-height: 1.08;
        font-weight: 300;
    }

    .section--strategic .section-title p {
        color: rgba(255, 255, 255, .72);
        font-size: 1.45rem;
        margin-top: 3rem;
        max-width: 520px;
    }

.section-title {
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
}

    .section-title p {
        color: var(--text-muted);
        font-size: 1.1rem;
        max-width: 640px;
        margin: 1rem auto 0;
    }

.section--dark .section-title p {
    color: rgba(255, 255, 255, .7);
}

/* =====  Hero ===== */
.hero {
    position: relative;
    min-height: 120vh;
    padding: 8rem 0 5rem;
    color: #fff;
    background: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/hero.jpg');
    background-size: cover;
    background-position: top center;
    filter: brightness(.75);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, .35) 0%, rgba(14, 14, 14, .35) 45%, rgba(14, 14, 14, .7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 946px;
    margin: 0 auto;
}

    .hero__inner h6 {
        color: white;
        margin-bottom: 2rem
    }

.hero__title {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5.25rem);
    font-weight: 100;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1.hero__title span {
    color: var(--lime);
}

.hero__lead {
    color: rgba(255, 255, 255, .85);
    font-size: 1.35rem;
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta {
    margin-top: 2.5rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp 900ms var(--ease) forwards;
}

    .fade-up.d-150 {
        animation-delay: 150ms;
    }

    .fade-up.d-300 {
        animation-delay: 300ms;
    }

    .fade-up.d-450 {
        animation-delay: 450ms;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====  Scroll reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

    .reveal.d-100 {
        transition-delay: 100ms;
    }

    .reveal.d-200 {
        transition-delay: 200ms;
    }

    .reveal.d-300 {
        transition-delay: 300ms;
    }

    .reveal.d-400 {
        transition-delay: 400ms;
    }

/* =====  Legal / long-form content pages ===== */
.legal-hero {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

    .legal-hero h1 {
        font-size: clamp(2.25rem, 4vw, 3.25rem);
    }

.legal-updated {
    color: var(--text-muted);
    font-size: .9rem;
    margin-top: .75rem;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

    .legal-content .legal-lead {
        font-size: 1.15rem;
        line-height: 1.7;
        color: var(--text);
        margin-bottom: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.45rem;
        font-weight: 600;
        margin: 2.75rem 0 .85rem;
    }

    .legal-content p {
        color: var(--text-muted);
        line-height: 1.75;
        margin-bottom: 1.1rem;
    }

/* =====  Logo strip ===== */
.logo-strip {
    background: var(--main-bg);
    padding: 3rem 0;
}

.logo-strip__eyebrow {
    text-align: center;
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin: 0 0 3.25rem;
}

.logo-strip__sep {
    color: rgba(255, 255, 255, .5);
    margin: 0 .35em;
}

.logo-strip__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem 6rem;
    flex-wrap: wrap;
    margin: 0;
}

.logo-strip__item {
    display: inline-flex;
    align-items: center;
    color: #fff;
    opacity: 1;
    transition: opacity var(--t) var(--ease);
}

    .logo-strip__item:hover {
        opacity: 0.85;
    }


    .logo-strip__item img {
        height: 30px;
        width: auto;
    }
/* Mobile: lay logos out in an evenly centered 2-column grid so each one
   aligns within its cell instead of ragged, independently-centered pairs. */
@media (max-width: 767.98px) {

    .logo-strip__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem 1rem;
        justify-items: center;
        align-items: center;
    }

    .logo-strip__item {
        justify-content: center;
    }
}

@media (min-width: 768px) {

    .logo-strip__item img {
        height: 38px;
    }
}

/* Desktop: keep every logo on a single line at one uniform height.
   Gap and height scale with the viewport so all 10 logos fit without overflow. */
@media (min-width: 992px) {

    .logo-strip__row {
        flex-wrap: nowrap;
        gap: clamp(1rem, 3vw, 2rem);
    }

    .logo-strip__item img {
        height: clamp(18px, 1.9vw, 28px);
    }
}

@media (min-width: 1740px) {

    .logo-strip__row {
        flex-wrap: nowrap;
        gap: clamp(1rem, 4.3vw, 3.6rem);
    }

    .logo-strip__item img {
        height: clamp(24px, 2.2vw, 33px);
    }
}

.logo-strip__item--stack .brand {
    height: 40px;
}


/* =====  Feature cards ===== */
.section--features {
    background: #16161F;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: transparent;
    border: 1px solid white;
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    position: relative;
}

    .feature-card:hover {
        transform: translateY(-6px);
        border-color: var(--lime);
        box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
    }

.feature-card__icon {
    color: var(--lime);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1.75rem;
    display: block;
    transition: transform var(--t) var(--ease);
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.12);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--lime);
    padding: 0 50px
}

.feature-card p {
    color: rgba(255, 255, 255, 1);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

/* =====  Purpose built comparison ===== */
#purpose-built .section-title {
    max-width: 960px;
}

    #purpose-built .section-title h2 {
        font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
        line-height: 1.08;
    }

    #purpose-built .section-title p {
        font-size: 1.25rem;
        margin-top: 3rem;
    }

.purpose-strike {
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--text);
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin: 2rem 0;
}

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

.compare__col {
    border: 1px solid black;
    border-radius: var(--radius);
    padding: 2rem;
    background: white
}

    .compare__col h4 span {
        font-size: 0.95rem;
        border: solid 1px black;
        padding: 0.2rem 1rem;
        border-radius: 8px;
        margin-left: 1rem
    }

.compare__col--win {
    border-color: black;
}

.compare__col h4 {
    color: black;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.compare__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .compare__list li {
        padding: .85rem 0;
        color: black;
        font-size: 1rem;
        display: flex;
        gap: .65rem;
        align-items: flex-start;
    }

        .compare__list li:last-child {
            border-bottom: none;
        }

.compare__list--win li::before {
    content: "\f26b";
    font-family: "bootstrap-icons";
    color: black;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.compare__list--lose li::before {
    content: "\f659";
    font-family: "bootstrap-icons";
    color: #888;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.founder-quote {
    padding: 2.5rem;
    margin-top: 1.25rem;
    text-align: center;
}

    .founder-quote blockquote {
        font-size: 1.35rem;
        color: black;
        line-height: 1.55;
        margin: 0 0 1.25rem;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .founder-quote cite {
        color: black;
        font-style: normal;
        font-weight: 600;
        letter-spacing: .18em;
        font-size: 1rem;
        text-transform: uppercase;
    }

/* =====  Integration / Stash ===== */
.section--integration {
    background: #16161F;
    color: #fff;
}

    .section--integration .eyebrow {
        color: var(--lime);
    }

    .section--integration h2 {
        color: #fff;
        font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
        line-height: 1.08;
        font-weight: 300;
    }

    .section--integration .section-title {
        max-width: 900px;
    }

        .section--integration .section-title p {
            color: rgba(255, 255, 255, .72);
            font-size: 1.15rem;
        }

.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2.5rem 0 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    height: 68px;
    width: auto;
    display: block;
}

.partner-logo--stash svg {
    height: 56px;
    width: auto;
    display: block;
}

.partner-x {
    color: rgba(255, 255, 255, .5);
    font-size: 5rem;
    font-weight: 100;
    line-height: 1;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

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

@media (max-width: 576px) {
    .step-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    border: 1px solid white;
    border-radius: var(--radius-lg);
    padding: 5.25rem 1.85rem;
    text-align: center;
    color: #fff;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
        border-color: var(--lime);
    }

.step-card__icon {
    color: var(--lime);
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 1.25rem;
    display: block;
}

.step-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--lime);
}

.step-card p {
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
}

/* =====  Video cards ===== */
#watch .section-title h2 {
    font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
    line-height: 1.08;
}

.demo-heading-muted {
    color: #9c9c9c;
}

.video-feature {
    display: grid;
    grid-template-columns: 2.13fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .video-feature {
        grid-template-columns: 1fr;
    }
}

.video-feature__side {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.video-card {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
}

.video-card__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--dark-2);
    border: 1px solid var(--border);
}

.video-card--main .video-card__media {
    aspect-ratio: 16 / 10;
}

.video-card__thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 600ms var(--ease);
}

.video-card:hover .video-card__thumb {
    transform: scale(1.05);
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card__play {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    transition: transform var(--t) var(--ease);
    box-shadow: var(--shadow-lime);
}

.video-card--sm .video-card__play {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
}

.video-card:hover .video-card__play {
    transform: scale(1.1);
}

.video-card__caption {
    margin-top: .9rem;
}

    .video-card__caption h4 {
        color: var(--text);
        font-weight: 700;
        font-size: 1.05rem;
        margin: 0 0 .02rem;
    }

    .video-card__caption span {
        color: var(--text-muted);
        font-size: .9rem;
    }

.video-card--main .video-card__caption h4 {
    margin: 22px 0 .02rem;
    font-size: 2.1rem;
}

.video-card--main .video-card__caption span {
    font-size: 1.6rem;
}

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

.demo-cta-note {
    color: var(--text-muted);
}

/* =====  AML ===== */
.section--aml {
    background: #16161F;
    color: #fff;
}

    .section--aml .eyebrow {
        color: var(--lime);
    }

    .section--aml h2 {
        color: #fff;
        font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
        line-height: 1.08;
    }

    .section--aml .section-title {
        max-width: 1000px;
    }

        .section--aml .section-title p {
            color: rgba(255, 255, 255, .72);
            font-size: 1.15rem;
        }

.aml-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
    max-width: 820px;
    margin: 2.75rem auto 0;
}

.aml-feature {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: .6rem 1.25rem;
    color: rgba(255, 255, 255, .9);
    font-size: .95rem;
    font-weight: 500;
    transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease), transform var(--t) var(--ease);
}

    .aml-feature:hover {
        border-color: var(--lime);
        background: rgba(212, 225, 0, .06);
        transform: translateY(-3px);
    }

    .aml-feature i {
        color: var(--lime);
        font-size: 1.05rem;
    }

.aml-footnote {
    max-width: 720px;
    margin: 3rem auto 0;
    text-align: center;
    color: rgba(255, 255, 255, .42);
    font-size: .95rem;
    line-height: 1.7;
}

/* =====  Pricing ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    display: flex;
    flex-direction: column;
}

    .price-card:hover {
        transform: translateY(-6px);
        border-color: var(--lime);
        box-shadow: var(--shadow-lg);
    }

.price-card__tier {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .5rem;
}

.price-card__name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.price-card__price {
    font-size: 3.3rem;
    font-weight: 300;
    letter-spacing: -.02em;
    line-height: 1;
}

.price-card__price-unit {
    font-size: .9rem;
    color: var(--text-muted);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: .5rem;
    margin-bottom: 2rem;
}

.price-card p {
    color: var(--text-muted);
    font-size: .95rem;
    flex-grow: 1;
}

.price-card .btn {
    margin-top: 5.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inclusion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 3rem;
}

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

.inclusion-card {
    padding: 2.25rem;
}

.inclusion-card__label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.inclusion-card h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.25rem;
}

.inclusion-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .inclusion-card ul li {
        padding: .65rem 0;
        color: var(--text);
        font-size: .95rem;
        display: flex;
        gap: .65rem;
        align-items: flex-start;
    }

        .inclusion-card ul li::before {
            content: "\f26b";
            font-family: "bootstrap-icons";
            color: black;
        }

/* =====  Getting ahead CTA ===== */
.getting-ahead {
    background: var(--dark);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.getting-ahead__bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(.6);
    z-index: 0;
}

.getting-ahead::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 18, .82) 0%, rgba(12, 12, 18, .5) 42%, rgba(12, 12, 18, .66) 100%);
    z-index: 1;
}

.getting-ahead .container {
    position: relative;
    z-index: 2;
}

.getting-ahead__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.getting-ahead h2 {
    color: #fff;
    font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
    line-height: 1.08;
}

.getting-ahead p {
    color: rgba(255, 255, 255, .82);
    max-width: 620px;
    margin: 1.5rem auto 0;
}

/* Getting-ahead step cards */
.ga-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 760px;
    margin: 3rem auto 0;
}

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

.ga-step {
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 1.5rem 1.4rem;
    border-radius: var(--radius);
    background: rgba(10, 10, 16, .62);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(3px);
    transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

@media (min-width: 768px) {
    .ga-step {
        min-height: 360px;
    }
}

.ga-step:hover {
    transform: translateY(-6px);
    border-color: var(--lime);
    box-shadow: var(--shadow-lg);
}

.ga-step__label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.1rem;
}

.ga-step__icon {
    color: var(--lime);
    font-size: 1.85rem;
    line-height: 1;
}

.ga-step p {
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    line-height: 1.55;
    max-width: none;
    margin: auto 0 0;
}

/* =====  FAQ accordion ===== */
.section--faq {
    background: #16161F;
    color: #fff;
}

    .section--faq .eyebrow {
        color: var(--lime);
    }

    .section--faq h2 {
        color: #fff;
        font-size: clamp(2.5rem, 4.5vw + 1rem, 4.75rem);
        line-height: 1.08;
    }

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: var(--radius) !important;
    margin-bottom: .9rem;
    overflow: hidden;
    background: rgba(255, 255, 255, .02);
}

.accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    color: var(--lime);
}

    .accordion-button:not(.collapsed) {
        background: transparent;
        color: var(--lime);
        box-shadow: none;
    }

    /* Neutralise Bootstrap's default focus ring (it gets clipped to a line by the item's overflow) */
    .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

    /* Keyboard focus only — won't show on mouse click */
    .accordion-button:focus-visible {
        box-shadow: 0 0 0 .2rem rgba(212, 225, 0, .3);
    }

    /* Collapsed and expanded chevrons share the same lime colour */
    .accordion-button::after,
    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4E100'%3E%3Cpath d='M3.204 5L8 10.481 12.796 5l.708.708L8 11.897l-5.504-6.189L3.204 5z'/%3E%3C/svg%3E");
        transition: transform var(--t) var(--ease);
    }

.accordion-body {
    padding: 0 1.5rem 1.4rem;
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
    line-height: 1.7;
}

/* =====  Contact / Demo form ===== */

#contact h2 span {
    opacity: 0.5
}

#contact .section-title  {
    margin-bottom: 0!important
}

#contact .section-title {
    max-width: 600px
}

.demo-form-wrap {
    background: transparent;
    border: 0;
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
}

.demo-form .form-control {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.15rem 1.5rem;
    font-size: 1rem;
    color: var(--text);
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
    background: transparent;
}

    .demo-form .form-control::placeholder {
        color: var(--text);
        opacity: 1;
    }

    .demo-form .form-control:focus {
        border-color: var(--lime);
        box-shadow: 0 0 0 .2rem rgba(212, 255, 61, .25);
        background: transparent;
    }

.demo-form .form-label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.demo-form .honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.demo-form .field-validation-error {
    color: #c1272d;
    font-size: .8rem;
    margin-top: .25rem;
    display: block;
}

.demo-form .text-danger {
    color: #c1272d;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 3rem;
}

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

.step-pill {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.step-pill__num {
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.step-pill p {
    margin: 0;
    color: var(--text);
    font-size: .95rem;
    line-height: 1.55;
}

.alert-success-soft {
    background: rgba(212, 255, 61, .15);
    border: 1px solid var(--lime);
    color: var(--dark);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
}

.demo-form__alert {
    background: rgba(193, 39, 45, .08);
    border: 1px solid rgba(193, 39, 45, .4);
    color: #c1272d;
    border-radius: var(--radius);
    padding: .85rem 1.1rem;
    font-size: .92rem;
}

/* =====  Footer ===== */
.site-footer {
    background: var(--main-bg);
    color: rgba(255, 255, 255, .7);
    padding: 5rem 0 2rem;
}

.site-footer__top {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 9rem;
}

.site-footer__logo {
    height: 68px;
    width: auto;
}

.site-footer__awards {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__award {
    height: 120px;
    width: auto;
    border: 7px solid #fff;
    border-radius: 50%
}

.site-footer__tagline {
    color: rgba(255, 255, 255, .65);
    font-size: 1.2rem;
    max-width: 380px;
    line-height: 1.6;
}

.site-footer__heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .12em;
    margin-bottom: 0.9rem;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .site-footer__links li {
        margin-bottom: .4rem;
    }

    .site-footer__links a {
        color: rgba(255, 255, 255, .7);
        text-decoration: none;
        font-size: 1.1rem;
        transition: color var(--t) var(--ease);
    }

        .site-footer__links a:hover {
            color: var(--lime);
        }

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    font-size: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    flex-wrap: wrap;
    gap: 1rem;
}

/* =====  Team page ===== */
.team-page {
    padding-top: 8rem;
}

.team-hero {
    text-align: center;
    padding: 2rem 0 3rem;
}

.founder-feature {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    max-width: 920px;
    margin: 0 auto 5rem;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--bg-light) center/cover no-repeat;
    margin: 0 auto 1.25rem;
    border: 4px solid #fff;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t) var(--ease);
}

.founder-feature .team-photo {
    width: 160px;
    height: 160px;
}

.team-member__name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.team-member__role {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto 3rem;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    text-align: center;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

        .team-card:hover .team-photo {
            transform: scale(1.05);
        }

.team-bio {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 1.25rem auto 0;
}

/* =====  Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    html {
        scroll-behavior: auto;
    }

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

    .fade-up {
        opacity: 1;
        transform: none;
        animation: none;
    }
}


.hero__inner h6 span {
    background: var(--lime);
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 10px;
    animation: dotPulse 2.4s ease-out infinite;
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 225, 0, .6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 225, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 225, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__inner h6 span {
        animation: none;
    }
}

.video-lnk {
    color: white;
    text-decoration: none;
    border: solid 1px rgba(255,255,255,0.2);
    padding: 0.2rem 1rem;
}

    .video-lnk:hover {
        border: solid 1px rgba(255,255,255,0.5);
        transform: translateY(-2px);
    }

    .video-lnk i {
        color: var(--lime);
    }

.page-legal, .page-schedule-a-demo {
    margin-top: 4rem;
}


body.page-video-demo {
    margin-top: 0.75rem;
}

    body.page-video-demo section {
        padding-bottom: 0.1rem;
        background: #C0C155
    }

header.site-nav--mini nav {
    padding: 0.25rem !important;
}
