/*
 * ExpertEase AI homepage redesign
 * Scoped to .exa-site so the existing WordPress theme and Elementor pages stay untouched.
 */

.exa-site {
    --exa-bg: #f7f9fd;
    --exa-bg-soft: #eef4ff;
    --exa-surface: #ffffff;
    --exa-surface-soft: #f4f7fc;
    --exa-surface-strong: #0b1220;
    --exa-text: #0b1220;
    --exa-text-soft: #536174;
    --exa-text-faint: #66758a;
    --exa-border: #dce4f0;
    --exa-border-strong: #c9d5e5;
    --exa-blue: #2978b1;
    --exa-blue-deep: #1f5e8b;
    --exa-cyan: #70c7de;
    --exa-green: #66bf77;
    --exa-yellow: #fed900;
    --exa-orange: #f99b25;
    --exa-red: #b31e3d;
    --exa-shadow-sm: 0 12px 34px rgba(33, 54, 91, 0.08);
    --exa-shadow-md: 0 26px 80px rgba(26, 47, 82, 0.14);
    --exa-shadow-blue: 0 18px 45px rgba(41, 120, 177, 0.24);
    --exa-radius-sm: 14px;
    --exa-radius-md: 22px;
    --exa-radius-lg: 32px;
    color-scheme: light;
    width: 100%;
    min-width: 0;
    overflow: clip;
    background: var(--exa-bg);
    color: var(--exa-text);
    font-family: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html[data-exa-theme="dark"] .exa-site {
    --exa-bg: #070c16;
    --exa-bg-soft: #0b1425;
    --exa-surface: #0e1727;
    --exa-surface-soft: #111d30;
    --exa-surface-strong: #050910;
    --exa-text: #f5f8ff;
    --exa-text-soft: #aab6c8;
    --exa-text-faint: #7f8da2;
    --exa-border: rgba(190, 209, 236, 0.14);
    --exa-border-strong: rgba(190, 209, 236, 0.24);
    --exa-blue: #70c7de;
    --exa-blue-deep: #9adceb;
    --exa-cyan: #70c7de;
    --exa-green: #66bf77;
    --exa-yellow: #fed900;
    --exa-orange: #f99b25;
    --exa-red: #d94d68;
    --exa-shadow-sm: 0 14px 40px rgba(0, 0, 0, 0.22);
    --exa-shadow-md: 0 28px 88px rgba(0, 0, 0, 0.38);
    --exa-shadow-blue: 0 18px 52px rgba(112, 199, 222, 0.22);
    color-scheme: dark;
}

html:not([data-exa-theme]) .exa-site {
    --exa-bg: #070c16;
    --exa-bg-soft: #0b1425;
    --exa-surface: #0e1727;
    --exa-surface-soft: #111d30;
    --exa-surface-strong: #050910;
    --exa-text: #f5f8ff;
    --exa-text-soft: #aab6c8;
    --exa-text-faint: #7f8da2;
    --exa-border: rgba(190, 209, 236, 0.14);
    --exa-border-strong: rgba(190, 209, 236, 0.24);
    --exa-blue: #70c7de;
    --exa-blue-deep: #9adceb;
    --exa-cyan: #70c7de;
    --exa-green: #66bf77;
    --exa-yellow: #fed900;
    --exa-orange: #f99b25;
    --exa-red: #d94d68;
    --exa-shadow-sm: 0 14px 40px rgba(0, 0, 0, 0.22);
    --exa-shadow-md: 0 28px 88px rgba(0, 0, 0, 0.38);
    --exa-shadow-blue: 0 18px 52px rgba(112, 199, 222, 0.22);
    color-scheme: dark;
}

body.exa-homepage-redesign {
    margin: 0;
    overflow-x: hidden;
    background: #f7f9fd;
}

@media (prefers-reduced-motion: no-preference) {
    html:has(body.exa-homepage-redesign) {
        scroll-behavior: smooth;
    }
}

html:has(body.exa-homepage-redesign) {
    scroll-padding-top: 86px;
}

html[data-exa-theme="dark"] body.exa-homepage-redesign {
    background: #070c16;
}

html:not([data-exa-theme]) body.exa-homepage-redesign {
    background: #070c16;
}

body.exa-homepage-redesign #page,
body.exa-homepage-redesign #content,
body.exa-homepage-redesign .site-main,
body.exa-homepage-redesign .entry-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body.exa-homepage-redesign .entry-header,
body.exa-homepage-redesign .site-header,
body.exa-homepage-redesign .site-footer {
    display: none;
}

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

.exa-site h1,
.exa-site h2,
.exa-site h3,
.exa-site h4,
.exa-site h5,
.exa-site h6,
.exa-site p,
.exa-site ul,
.exa-site ol,
.exa-site figure {
    margin-top: 0;
}

.exa-site h1,
.exa-site h2,
.exa-site h3,
.exa-site h4,
.exa-site h5,
.exa-site h6,
.exa-site p,
.exa-site a,
.exa-site button,
.exa-site li,
.exa-site summary {
    font-family: "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.exa-site a {
    color: inherit;
    text-decoration: none;
}

.exa-site button,
.exa-site a {
    -webkit-tap-highlight-color: transparent;
}

.exa-site button {
    font: inherit;
}

.exa-site svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.exa-site :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--exa-blue) 72%, white);
    outline-offset: 4px;
}

.exa-shell {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.exa-skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 18px;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--exa-text);
    color: var(--exa-bg);
    font-size: 14px;
    font-weight: 800;
    transition: transform 180ms ease;
}

.exa-skip-link:focus {
    transform: translateY(0);
}

.exa-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Header */
.exa-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 86px;
    border-bottom: 1px solid transparent;
    transition: height 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.exa-header::before {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--exa-bg) 86%, transparent);
    content: "";
    opacity: 0;
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
    transition: opacity 220ms ease;
}

.exa-header.is-scrolled {
    height: 74px;
    border-color: var(--exa-border);
    box-shadow: 0 8px 28px rgba(13, 28, 52, 0.06);
}

.exa-header.is-scrolled::before {
    opacity: 1;
}

.exa-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 100%;
    gap: 18px;
}

.exa-header .exa-shell {
    width: min(1320px, calc(100% - 40px));
}

.exa-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 5px 0;
    border: 0;
    background: transparent;
}

.exa-brand img {
    display: block;
    width: 150px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
}

.exa-brand img.exa-brand__logo--dark {
    display: none;
}

html[data-exa-theme="dark"] .exa-brand img.exa-brand__logo--light {
    display: none;
}

html[data-exa-theme="dark"] .exa-brand img.exa-brand__logo--dark {
    display: block;
}

html:not([data-exa-theme]) .exa-brand img.exa-brand__logo--light {
    display: none;
}

html:not([data-exa-theme]) .exa-brand img.exa-brand__logo--dark {
    display: block;
}

.exa-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.exa-nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.exa-nav__link {
    position: relative;
    min-height: 38px;
    padding: 0 3px;
    border: 0;
    background: transparent;
    color: var(--exa-text-soft);
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 38px;
    white-space: nowrap;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease;
}

.exa-nav__link::after {
    position: absolute;
    right: 50%;
    bottom: 1px;
    left: 50%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--exa-blue), var(--exa-cyan), var(--exa-orange));
    content: "";
    transition: right 180ms ease, left 180ms ease;
}

.exa-nav__link:hover,
.exa-nav__link:focus-visible,
.exa-nav-item.is-expanded > .exa-nav__link {
    color: var(--exa-text);
}

.exa-nav__link:hover::after,
.exa-nav__link:focus-visible::after,
.exa-nav-item.is-expanded > .exa-nav__link::after {
    right: 0;
    left: 0;
}

.exa-nav__disclosure {
    display: grid;
    width: 24px;
    height: 34px;
    margin-left: -1px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--exa-text-faint);
    cursor: pointer;
}

.exa-nav__disclosure svg,
.exa-nav__more svg {
    width: 14px;
    height: 14px;
    transition: transform 180ms ease;
}

.exa-nav-item.is-expanded > .exa-nav__disclosure svg,
.exa-nav-item.is-expanded > .exa-nav__more svg {
    transform: rotate(180deg);
}

.exa-nav__more {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.exa-submenu {
    position: absolute;
    z-index: 1100;
    top: calc(100% + 12px);
    left: -18px;
    display: grid;
    min-width: 285px;
    gap: 3px;
    padding: 10px;
    border: 1px solid var(--exa-border);
    border-radius: 16px;
    background: color-mix(in srgb, var(--exa-surface) 96%, transparent);
    box-shadow: var(--exa-shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top left;
    visibility: hidden;
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
}

.exa-submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
    content: "";
}

.exa-submenu a {
    display: block;
    padding: 10px 11px;
    border-radius: 10px;
    color: var(--exa-text-soft);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.exa-submenu a:hover,
.exa-submenu a:focus-visible {
    transform: translateX(2px);
    background: color-mix(in srgb, var(--exa-blue) 9%, var(--exa-surface));
    color: var(--exa-text);
}

.exa-nav-item.is-expanded > .exa-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.exa-mega-menu {
    position: fixed;
    top: 78px;
    left: 50%;
    width: min(1120px, calc(100vw - 32px));
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 20px;
    transform: translate(-50%, -8px) scale(0.985);
    transform-origin: top center;
}

.exa-header.is-scrolled .exa-mega-menu {
    top: 70px;
}

.exa-nav-item.is-expanded > .exa-mega-menu {
    transform: translate(-50%, 0) scale(1);
}

.exa-mega-menu section {
    display: grid;
    align-content: start;
    gap: 3px;
    min-width: 0;
}

.exa-mega-menu strong {
    min-height: 37px;
    padding: 5px 11px 9px;
    color: var(--exa-blue-deep);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.065em;
    line-height: 1.25;
    text-transform: uppercase;
}

@media (min-width: 921px) {
    .exa-nav-item:hover > .exa-submenu,
    .exa-nav-item:focus-within > .exa-submenu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        visibility: visible;
    }

    .exa-nav-item--mega:hover > .exa-mega-menu,
    .exa-nav-item--mega:focus-within > .exa-mega-menu {
        transform: translate(-50%, 0) scale(1);
    }
}

.exa-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.exa-language-switcher {
    position: relative;
    z-index: 120;
    display: flex;
    width: 150px;
    min-width: 150px;
    min-height: 40px;
    align-items: center;
}

.exa-language-switcher .gtranslate_wrapper {
    display: block;
    width: 100%;
    min-height: 40px;
}

.exa-language-switcher .gtranslate_wrapper:empty::before {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid var(--exa-border);
    border-radius: 12px;
    background: color-mix(in srgb, var(--exa-surface) 82%, transparent);
    color: var(--exa-text-soft);
    content: "English";
    font-size: 12px;
    font-weight: 750;
}

.exa-site .exa-language-switcher .gt_switcher {
    position: relative !important;
    width: 100% !important;
    overflow: visible !important;
    font-family: inherit !important;
    font-size: 12px !important;
    line-height: normal !important;
}

.exa-site .exa-language-switcher .gt_switcher a {
    box-sizing: border-box !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

.exa-site .exa-language-switcher .gt_selected {
    position: relative !important;
    z-index: 2 !important;
    border-radius: 12px !important;
    background: transparent !important;
}

.exa-site .exa-language-switcher .gt_selected a {
    display: flex !important;
    width: 100% !important;
    min-height: 40px !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 7px 32px 7px 9px !important;
    border: 1px solid var(--exa-border) !important;
    border-radius: 12px !important;
    background: color-mix(in srgb, var(--exa-surface) 82%, transparent) !important;
    color: var(--exa-text-soft) !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease !important;
}

.exa-site .exa-language-switcher .gt_selected a:hover,
.exa-site .exa-language-switcher .gt_selected a:focus-visible,
.exa-site .exa-language-switcher .gt_selected a.open {
    border-color: var(--exa-border-strong) !important;
    background: var(--exa-surface) !important;
    color: var(--exa-text) !important;
}

.exa-site .exa-language-switcher .gt_selected a:focus-visible,
.exa-site .exa-language-switcher .gt_option a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--exa-blue) 35%, transparent) !important;
    outline-offset: 2px !important;
}

.exa-site .exa-language-switcher .gt_selected a::after {
    position: absolute !important;
    top: 50% !important;
    right: 13px !important;
    width: 7px !important;
    height: 7px !important;
    border: 0 !important;
    border-right: 1.5px solid currentColor !important;
    border-bottom: 1.5px solid currentColor !important;
    background: none !important;
    content: "" !important;
    transform: translateY(-70%) rotate(45deg) !important;
    transition: transform 180ms ease !important;
}

.exa-site .exa-language-switcher .gt_selected a.open::after {
    transform: translateY(-20%) rotate(225deg) !important;
}

.exa-site .exa-language-switcher.is-loading .gt_selected a {
    cursor: wait !important;
}

.exa-site .exa-language-switcher.is-loading .gt_selected a::before {
    position: absolute;
    top: 50%;
    left: 13px;
    width: 13px;
    height: 13px;
    border: 2px solid color-mix(in srgb, var(--exa-blue) 24%, transparent);
    border-top-color: var(--exa-blue);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
    animation: exa-language-spin 650ms linear infinite;
}

.exa-site .exa-language-switcher.is-loading .gt_selected a img {
    opacity: 0 !important;
}

.exa-site .exa-language-switcher .gt_switcher a img {
    display: inline-block !important;
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    object-fit: cover !important;
}

.exa-site .exa-language-switcher .gt_option {
    position: absolute !important;
    z-index: 1 !important;
    top: calc(100% + 7px) !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 5px !important;
    border: 1px solid var(--exa-border) !important;
    border-radius: 12px !important;
    background: var(--exa-surface) !important;
    box-shadow: var(--exa-shadow-md) !important;
    transition: none !important;
}

.exa-site .exa-language-switcher .gt_option a {
    display: flex !important;
    width: 100% !important;
    min-height: 40px !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px !important;
    border-radius: 8px !important;
    color: var(--exa-text-soft) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

.exa-site .exa-language-switcher .gt_option a:hover,
.exa-site .exa-language-switcher .gt_option a:focus-visible {
    background: var(--exa-surface-soft) !important;
    color: var(--exa-text) !important;
}

.exa-language-fallback {
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid var(--exa-border);
    border-radius: 12px;
    background: color-mix(in srgb, var(--exa-surface) 82%, transparent);
    color: var(--exa-text-soft);
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.exa-language-fallback > span {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--exa-blue) 12%, var(--exa-surface));
    color: var(--exa-blue-deep);
    font-size: 8px;
    letter-spacing: 0.04em;
}

.exa-nav__mobile-actions {
    display: none;
}

.exa-theme-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--exa-border);
    border-radius: 50%;
    background: color-mix(in srgb, var(--exa-surface) 78%, transparent);
    color: var(--exa-text-soft);
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.exa-theme-toggle:hover {
    transform: translateY(-2px);
    border-color: var(--exa-border-strong);
    background: var(--exa-surface);
    color: var(--exa-text);
}

.exa-theme-toggle svg {
    grid-area: 1 / 1;
    width: 18px;
    height: 18px;
    transition: opacity 180ms ease, transform 220ms ease;
}

.exa-theme-toggle__moon {
    opacity: 0;
    transform: rotate(-25deg) scale(0.75);
}

html[data-exa-theme="dark"] .exa-theme-toggle__sun {
    opacity: 0;
    transform: rotate(35deg) scale(0.75);
}

html[data-exa-theme="dark"] .exa-theme-toggle__moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.exa-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid var(--exa-border);
    border-radius: 12px;
    background: var(--exa-surface);
    cursor: pointer;
}

.exa-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    border-radius: 99px;
    background: var(--exa-text);
    transition: transform 200ms ease, opacity 180ms ease;
}

.exa-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.exa-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Buttons and type */
.exa-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 21px;
    border: 1px solid var(--exa-blue);
    border-radius: 13px;
    background: linear-gradient(135deg, var(--exa-blue), color-mix(in srgb, var(--exa-cyan) 72%, var(--exa-blue)));
    box-shadow: 0 9px 24px rgba(41, 120, 177, 0.18);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.exa-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--exa-shadow-blue);
}

.exa-button--small {
    min-height: 40px;
    padding-inline: 16px;
    border-radius: 11px;
    font-size: 13px;
}

.exa-button--large {
    min-height: 56px;
    padding-inline: 25px;
    border-radius: 15px;
    font-size: 15px;
}

.exa-button--large svg {
    width: 18px;
    height: 18px;
    transition: transform 180ms ease;
}

.exa-button--large:hover svg {
    transform: translateX(3px);
}

.exa-button--ghost {
    border-color: var(--exa-border-strong);
    background: color-mix(in srgb, var(--exa-surface) 80%, transparent);
    box-shadow: none;
    color: var(--exa-text) !important;
}

.exa-button--ghost:hover {
    border-color: color-mix(in srgb, var(--exa-blue) 42%, var(--exa-border));
    background: var(--exa-surface);
    box-shadow: var(--exa-shadow-sm);
}

.exa-button--light {
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
    color: #0b1220 !important;
}

.exa-button--outline-light {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
    color: #ffffff !important;
}

.exa-button--outline-light:hover {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.13);
}

.exa-eyebrow {
    display: inline-flex;
    margin-bottom: 17px;
    color: var(--exa-blue);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.exa-section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.exa-section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: 72px;
}

.exa-section-heading h2,
.exa-security-copy h2,
.exa-faq-intro h2,
.exa-cta h2 {
    margin-bottom: 19px;
    color: var(--exa-text);
    font-size: clamp(2.25rem, 4.2vw, 4rem);
    font-weight: 760;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.exa-section-heading p,
.exa-security-copy > p,
.exa-faq-intro > p {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--exa-text-soft);
    font-size: 18px;
    line-height: 1.7;
}

/* Hero */
.exa-hero {
    position: relative;
    min-height: 100vh;
    padding: 158px 0 54px;
    isolation: isolate;
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--exa-bg-soft) 74%, transparent), transparent 70%),
        radial-gradient(circle at 80% 12%, rgba(41, 120, 177, 0.1), transparent 34%);
}

.exa-hero::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(color-mix(in srgb, var(--exa-border) 48%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--exa-border) 48%, transparent) 1px, transparent 1px);
    background-position: center top;
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.38), transparent 63%);
    opacity: 0.44;
}

.exa-hero__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.exa-hero__glow--one {
    top: 110px;
    right: -230px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(41, 120, 177, 0.2), rgba(112, 199, 222, 0.05) 53%, transparent 72%);
}

.exa-hero__glow--two {
    top: 160px;
    left: -340px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(249, 155, 37, 0.1), transparent 68%);
}

.exa-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(530px, 1.08fr);
    align-items: center;
    gap: clamp(52px, 6vw, 90px);
}

.exa-hero__copy {
    position: relative;
    z-index: 2;
    padding-bottom: 26px;
}

.exa-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 27px;
    padding: 8px 13px;
    border: 1px solid color-mix(in srgb, var(--exa-blue) 25%, var(--exa-border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--exa-surface) 78%, transparent);
    box-shadow: var(--exa-shadow-sm);
    color: var(--exa-blue-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.exa-kicker__pulse {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--exa-green);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--exa-green) 16%, transparent);
}

.exa-kicker__pulse::after {
    position: absolute;
    inset: -4px;
    border: 1px solid var(--exa-green);
    border-radius: inherit;
    content: "";
    animation: exa-pulse 2.2s ease-out infinite;
}

.exa-hero h1 {
    max-width: 680px;
    margin-bottom: 27px;
    color: var(--exa-text);
    font-size: clamp(3.25rem, 5.35vw, 5.25rem);
    font-weight: 790;
    letter-spacing: -0.072em;
    line-height: 0.98;
}

.exa-hero h1 span {
    display: block;
    padding-bottom: 0.08em;
    background: linear-gradient(100deg, var(--exa-blue) 2%, var(--exa-cyan) 64%, var(--exa-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.exa-hero__lead {
    max-width: 610px;
    margin-bottom: 32px;
    color: var(--exa-text-soft);
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    line-height: 1.7;
}

.exa-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.exa-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 21px;
    margin: 0;
    padding: 0;
    color: var(--exa-text-soft);
    font-size: 12px;
    font-weight: 650;
    list-style: none;
}

.exa-proof-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.exa-proof-list li span {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--exa-green) 14%, transparent);
    color: var(--exa-green);
    font-size: 10px;
    font-weight: 900;
}

.exa-hero__visual {
    position: relative;
    z-index: 1;
    min-width: 0;
    perspective: 1200px;
}

.exa-orbit {
    position: absolute;
    z-index: -1;
    border: 1px dashed color-mix(in srgb, var(--exa-blue) 28%, transparent);
    border-radius: 50%;
    pointer-events: none;
}

.exa-orbit--one {
    top: -78px;
    right: -60px;
    width: 500px;
    height: 500px;
    animation: exa-orbit 35s linear infinite;
}

.exa-orbit--two {
    bottom: -95px;
    left: 40px;
    width: 330px;
    height: 330px;
    border-color: color-mix(in srgb, var(--exa-cyan) 24%, transparent);
    animation: exa-orbit 28s linear infinite reverse;
}

.exa-deploy-demo {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(112, 199, 222, 0.26);
    border-radius: 27px;
    background:
        linear-gradient(rgba(112, 199, 222, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(112, 199, 222, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 78% 8%, rgba(41, 120, 177, 0.23), transparent 34%),
        #070d17;
    background-size: 28px 28px, 28px 28px, auto, auto;
    box-shadow: 0 34px 95px rgba(2, 8, 18, 0.38), 0 0 0 7px color-mix(in srgb, var(--exa-surface) 22%, transparent);
    color: #f8fbff;
    transform: rotateY(-2deg) rotateX(0.6deg);
    transform-origin: center;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.exa-deploy-demo::before {
    position: absolute;
    inset: -36% -22% auto auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 199, 222, 0.16), transparent 67%);
    content: "";
    pointer-events: none;
}

.exa-deploy-demo > * {
    position: relative;
    z-index: 1;
}

.exa-deploy-brief,
.exa-deploy-employee {
    border: 1px solid rgba(163, 196, 230, 0.15);
    border-radius: 18px;
    background: rgba(11, 22, 39, 0.88);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.exa-deploy-brief {
    min-height: 166px;
    padding: 20px 22px 18px;
}

.exa-deploy-brief__head,
.exa-deploy-brief__listening,
.exa-deploy-employee__head,
.exa-deploy-employee__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.exa-deploy-brief__signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9adceb;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}

.exa-deploy-brief__signal > i {
    position: relative;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #d94d68;
    box-shadow: 0 0 0 4px rgba(179, 30, 61, 0.11);
}

.exa-deploy-brief__signal em {
    padding: 4px 7px;
    border: 1px solid rgba(112, 199, 222, 0.22);
    border-radius: 99px;
    background: rgba(112, 199, 222, 0.07);
    color: #b9cadf;
    font-size: 8.5px;
    font-style: normal;
    letter-spacing: 0.07em;
}

.exa-deploy-brief__id {
    color: #7f93ad;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9.5px;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.exa-deploy-brief__prompt {
    min-height: 53px;
    margin: 18px 0 15px;
    color: #eef6ff;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: clamp(0.86rem, 1.18vw, 0.98rem);
    font-weight: 650;
    letter-spacing: -0.015em;
    line-height: 1.65;
}

.exa-deploy-cursor {
    display: inline-block;
    width: 8px;
    height: 1.15em;
    margin-inline: 2px;
    vertical-align: -0.18em;
    background: #70c7de;
    opacity: 0;
}

.exa-deploy-brief__listening {
    justify-content: flex-start;
    color: #9fb0c6;
    font-size: 11.5px;
}

.exa-deploy-brief__listening > small {
    margin-left: auto;
    color: #73869f;
    font-size: 9.5px;
    white-space: nowrap;
}

.exa-deploy-wave {
    display: flex;
    width: 42px;
    height: 20px;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.exa-deploy-wave i {
    width: 2px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(to top, #2978b1, #70c7de);
}

.exa-deploy-pipeline {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr) 26px minmax(0, 1fr);
    align-items: center;
    gap: 0;
    margin: 14px 7px;
    isolation: isolate;
}

.exa-deploy-connector {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 30px;
    align-items: center;
    opacity: 0.42;
    transition: opacity 220ms ease;
}

.exa-deploy-connector__track {
    position: relative;
    display: block;
    height: 2px;
    flex: 1 1 auto;
    overflow: visible;
    border-radius: 99px;
    background: rgba(112, 199, 222, 0.2);
}

.exa-deploy-connector__track::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #66bf77, #a1ebb0);
    box-shadow: 0 0 8px rgba(102, 191, 119, 0.82), 0 0 18px rgba(102, 191, 119, 0.4);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.exa-deploy-connector__track > b {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(225, 255, 231, 0.92);
    border-radius: 50%;
    background: #66bf77;
    box-shadow: 0 0 8px #66bf77, 0 0 20px rgba(102, 191, 119, 0.9);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.55);
}

.exa-deploy-connector__track > b::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    border-top: 1.5px solid #ffffff;
    border-right: 1.5px solid #ffffff;
    content: "";
    transform: translate(-62%, -50%) rotate(45deg);
}

.exa-deploy-connector svg {
    width: 12px;
    height: 20px;
    flex: 0 0 12px;
    overflow: visible;
    fill: none;
    filter: none;
    stroke: rgba(112, 199, 222, 0.34);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: filter 180ms ease, stroke 180ms ease, transform 220ms ease;
}

.exa-deploy-connector.is-passing,
.exa-deploy-connector.is-active {
    opacity: 1;
}

.exa-deploy-connector.is-passing .exa-deploy-connector__track::after,
.exa-deploy-connector.is-active .exa-deploy-connector__track::after {
    transform: scaleX(1);
}

.exa-deploy-connector.is-passing svg,
.exa-deploy-connector.is-active svg {
    filter: drop-shadow(0 0 4px rgba(102, 191, 119, 0.95)) drop-shadow(0 0 9px rgba(102, 191, 119, 0.55));
    stroke: #8fe2a0;
    transform: translateX(1px);
}

.exa-deploy-stage {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: 0;
    grid-template-columns: 30px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 7px;
    padding: 9px 8px;
    border: 1px solid rgba(163, 196, 230, 0.13);
    border-radius: 12px;
    background: rgba(12, 25, 44, 0.88);
    opacity: 0.42;
    transform: translateY(5px);
    transition: opacity 280ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, background-color 280ms ease;
}

.exa-deploy-stage > span {
    display: grid;
    width: 30px;
    height: 30px;
    grid-row: 1 / 3;
    place-items: center;
    border: 1px solid rgba(112, 199, 222, 0.22);
    border-radius: 9px;
    color: #8da2bc;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 800;
}

.exa-deploy-stage b {
    overflow: hidden;
    color: #c7d5e7;
    font-size: 11.5px;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exa-deploy-stage small {
    overflow: hidden;
    color: #7588a2;
    font-size: 9px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exa-deploy-stage.is-active {
    border-color: rgba(112, 199, 222, 0.32);
    background: rgba(41, 120, 177, 0.14);
    box-shadow: 0 11px 28px rgba(2, 8, 18, 0.2);
    opacity: 1;
    transform: translateY(0);
}

.exa-deploy-stage.is-active > span {
    border-color: rgba(112, 199, 222, 0.52);
    background: rgba(41, 120, 177, 0.2);
    color: #9adceb;
}

.exa-deploy-stage:last-child.is-active {
    border-color: rgba(102, 191, 119, 0.34);
    background: rgba(102, 191, 119, 0.1);
}

.exa-deploy-stage:last-child.is-active > span {
    border-color: rgba(102, 191, 119, 0.5);
    background: rgba(102, 191, 119, 0.13);
    color: #8fdfa0;
}

.exa-deploy-employee {
    padding: 20px 22px 16px;
    background:
        radial-gradient(circle at 92% 4%, rgba(112, 199, 222, 0.13), transparent 35%),
        rgba(16, 31, 53, 0.94);
    opacity: 0.35;
    transform: translateY(12px) scale(0.99);
    transition: opacity 500ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1), border-color 450ms ease;
}

.exa-deploy-employee.is-live {
    border-color: rgba(112, 199, 222, 0.27);
    opacity: 1;
    transform: translateY(0) scale(1);
}

.exa-deploy-employee__head > div {
    display: grid;
    gap: 4px;
}

.exa-deploy-employee__head small {
    color: #79a6ce;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.exa-deploy-employee__head strong {
    color: #f8fbff;
    font-size: clamp(1.05rem, 1.65vw, 1.28rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.exa-deploy-employee__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(102, 191, 119, 0.23);
    border-radius: 99px;
    background: rgba(102, 191, 119, 0.11);
    color: #8fdfa0;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.exa-deploy-employee__status i,
.exa-deploy-employee__foot span i,
.exa-deploy-activity > div > i {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #66bf77;
    box-shadow: 0 0 0 4px rgba(102, 191, 119, 0.1);
}

.exa-deploy-employee__channels {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 16px 0 14px;
}

.exa-deploy-employee__channels span {
    padding: 5px 9px;
    border: 1px solid rgba(112, 199, 222, 0.13);
    border-radius: 8px;
    background: rgba(41, 120, 177, 0.15);
    color: #b9d7e5;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 9.5px;
    font-weight: 700;
}

.exa-deploy-activity {
    border-block: 1px solid rgba(163, 196, 230, 0.11);
}

.exa-deploy-activity > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    color: #c7d5e7;
    font-size: 12.5px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.exa-deploy-activity > div + div {
    border-top: 1px solid rgba(163, 196, 230, 0.08);
}

.exa-deploy-activity > div.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.exa-deploy-activity > div > i {
    width: 6px;
    height: 6px;
    box-shadow: none;
}

.exa-deploy-activity small {
    color: #78c98a;
    font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
    font-size: 8.5px;
    font-weight: 750;
    text-transform: uppercase;
}

.exa-deploy-employee__foot {
    margin-top: 12px;
    color: #8295ae;
    font-size: 9.5px;
}

.exa-deploy-employee__foot span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.exa-deploy-employee__foot span i {
    width: 6px;
    height: 6px;
    box-shadow: none;
}

.exa-deploy-demo.is-animated:not(.is-listening) .exa-deploy-cursor,
.exa-deploy-demo.is-complete .exa-deploy-cursor {
    opacity: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .exa-deploy-connector.is-passing .exa-deploy-connector__track > b {
        animation: exa-deploy-connector-pass 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .exa-deploy-connector.is-passing svg {
        animation: exa-deploy-arrow-flare 560ms ease both;
    }

    .exa-deploy-demo.is-animated .exa-deploy-stage.is-active {
        animation: exa-deploy-stage-arrive 520ms ease both;
    }

    .exa-deploy-demo.is-listening .exa-deploy-brief__signal > i {
        animation: exa-recording-pulse 1.65s ease-out infinite;
    }

    .exa-deploy-demo.is-listening .exa-deploy-cursor {
        animation: exa-cursor-blink 0.82s steps(1, end) infinite;
    }

    .exa-deploy-demo.is-listening .exa-deploy-wave i {
        animation: exa-wave 0.8s ease-in-out infinite alternate;
    }

    .exa-deploy-demo.is-listening .exa-deploy-wave i:nth-child(2n) { animation-delay: -0.28s; }
    .exa-deploy-demo.is-listening .exa-deploy-wave i:nth-child(3n) { animation-delay: -0.55s; }
}

.exa-mini-wave {
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.exa-mini-wave i {
    width: 3px;
    height: 18%;
    border-radius: 99px;
    background: linear-gradient(to top, var(--exa-blue), var(--exa-cyan));
    animation: exa-wave 1.2s ease-in-out infinite alternate;
}

.exa-mini-wave i:nth-child(2n) { animation-delay: -0.45s; }
.exa-mini-wave i:nth-child(3n) { animation-delay: -0.8s; }
.exa-mini-wave i:nth-child(4n) { animation-delay: -0.2s; }

.exa-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 84px;
    padding: 25px 0 5px;
    border-top: 1px solid var(--exa-border);
}

.exa-trust-strip > div {
    display: grid;
    gap: 3px;
    padding: 0 28px;
    border-left: 1px solid var(--exa-border);
}

.exa-trust-strip > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.exa-trust-strip strong {
    color: var(--exa-text);
    font-size: 21px;
    letter-spacing: -0.035em;
}

.exa-trust-strip span {
    color: var(--exa-text-soft);
    font-size: 11px;
}

/* Platform evolution */
.exa-section {
    position: relative;
    padding: 112px 0;
}

.exa-section--intro {
    border-top: 1px solid var(--exa-border);
    background: var(--exa-surface);
}

.exa-evolution {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
    align-items: stretch;
    gap: 25px;
}

.exa-evolution__old,
.exa-evolution__new {
    padding: 31px;
    border: 1px solid var(--exa-border);
    border-radius: var(--exa-radius-md);
    background: var(--exa-surface-soft);
}

.exa-evolution__old {
    opacity: 0.78;
}

.exa-evolution__new {
    border-color: color-mix(in srgb, var(--exa-blue) 35%, var(--exa-border));
    background:
        radial-gradient(circle at 100% 0, rgba(112, 199, 222, 0.12), transparent 45%),
        linear-gradient(140deg, color-mix(in srgb, var(--exa-blue) 10%, var(--exa-surface)), var(--exa-surface));
    box-shadow: var(--exa-shadow-sm);
}

.exa-evolution__old > span,
.exa-evolution__new > span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--exa-text);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.exa-evolution ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.exa-evolution li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--exa-text-soft);
    font-size: 14px;
}

.exa-evolution li::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--exa-text-faint);
    content: "";
}

.exa-evolution__new li::before {
    background: var(--exa-green);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--exa-green) 12%, transparent);
}

.exa-evolution__arrow {
    display: grid;
    place-items: center;
}

.exa-evolution__arrow svg {
    width: 46px;
    height: 46px;
    color: var(--exa-blue);
}

/* Capability bento */
.exa-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

.exa-bento-card {
    position: relative;
    display: flex;
    min-height: 430px;
    grid-column: span 5;
    flex-direction: column;
    overflow: hidden;
    padding: 34px;
    border: 1px solid var(--exa-border);
    border-radius: var(--exa-radius-md);
    background: var(--exa-surface);
    box-shadow: var(--exa-shadow-sm);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.exa-bento-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--exa-blue) 30%, var(--exa-border));
    box-shadow: var(--exa-shadow-md);
}

.exa-bento-card--wide {
    grid-column: span 7;
}

.exa-bento-card--dark {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
    align-items: center;
    gap: 28px;
    background:
        radial-gradient(circle at 90% 0, rgba(112, 199, 222, 0.18), transparent 40%),
        radial-gradient(circle at 0 100%, rgba(41, 120, 177, 0.18), transparent 42%),
        #09111f;
    color: #f8fbff;
}

.exa-icon-box {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 27px;
    place-items: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--exa-blue) 12%, transparent);
    color: var(--exa-blue);
}

.exa-icon-box svg {
    width: 24px;
    height: 24px;
}

.exa-icon-box.is-cyan { background: rgba(112, 199, 222, 0.12); color: var(--exa-cyan); }
.exa-icon-box.is-orange { background: rgba(249, 155, 37, 0.12); color: var(--exa-orange); }
.exa-icon-box.is-green { background: rgba(102, 191, 119, 0.12); color: #66bf77; }

.exa-card-kicker {
    margin-bottom: 10px;
    color: var(--exa-blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.exa-bento-card--dark .exa-card-kicker { color: #70c7de; }

.exa-bento-card h3 {
    max-width: 530px;
    margin-bottom: 15px;
    color: var(--exa-text);
    font-size: clamp(1.65rem, 2.4vw, 2.25rem);
    font-weight: 740;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.exa-bento-card--dark h3 { color: #f8fbff; }

.exa-bento-card > p,
.exa-bento-card__content > p {
    max-width: 570px;
    margin-bottom: 26px;
    color: var(--exa-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.exa-bento-card--dark .exa-bento-card__content > p { color: #aab7ca; }

.exa-chat-preview {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding: 17px;
    border: 1px solid var(--exa-border);
    border-radius: 15px;
    background: var(--exa-surface-soft);
}

.exa-chat-preview__user {
    max-width: 72%;
    justify-self: end;
    padding: 10px 13px;
    border-radius: 12px 12px 3px 12px;
    background: var(--exa-blue);
    color: #fff;
    font-size: 10px;
}

.exa-chat-preview__ai {
    display: flex;
    max-width: 86%;
    align-items: flex-start;
    gap: 8px;
}

.exa-chat-preview__ai > i {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(140deg, var(--exa-blue), var(--exa-cyan));
    color: #fff;
    font-size: 6px;
    font-style: normal;
    font-weight: 900;
}

.exa-chat-preview__ai > span {
    display: grid;
    gap: 5px;
    padding: 10px 12px;
    border: 1px solid var(--exa-border);
    border-radius: 3px 12px 12px;
    background: var(--exa-surface);
    color: var(--exa-text);
    font-size: 9px;
}

.exa-chat-preview__ai small {
    color: var(--exa-green);
    font-size: 6.5px;
    font-weight: 700;
}

.exa-mini-wave {
    height: 98px;
    margin-top: auto;
    gap: 7px;
    border: 1px solid var(--exa-border);
    border-radius: 16px;
    background:
        linear-gradient(90deg, transparent 49.8%, color-mix(in srgb, var(--exa-border) 70%, transparent) 50%, transparent 50.2%),
        var(--exa-surface-soft);
}

.exa-mini-wave i {
    width: 6px;
    min-height: 18px;
}

.exa-flow-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 26px 16px;
    border: 1px solid var(--exa-border);
    border-radius: 16px;
    background: var(--exa-surface-soft);
}

.exa-flow-mini span {
    min-width: 62px;
    padding: 10px 12px;
    border: 1px solid color-mix(in srgb, var(--exa-orange) 32%, var(--exa-border));
    border-radius: 9px;
    background: var(--exa-surface);
    color: var(--exa-text);
    font-size: clamp(0.78rem, 1vw, 0.875rem);
    font-weight: 780;
    line-height: 1.15;
    text-align: center;
}

.exa-flow-mini i {
    width: 24px;
    height: 1px;
    flex: 0 1 24px;
    background: var(--exa-orange);
}

.exa-source-stack {
    position: relative;
    display: grid;
    gap: 10px;
}

.exa-source-stack::before {
    position: absolute;
    inset: -55px -90px -70px -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 120, 177, 0.19), transparent 67%);
    content: "";
}

.exa-source-stack > div {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.exa-source-stack > div:nth-child(2) { transform: translateX(18px); }

.exa-source-stack i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 9px;
    background: rgba(248, 113, 113, 0.13);
    color: #fca5a5;
    font-size: 9px;
    font-style: normal;
    font-weight: 900;
}

.exa-source-stack i.is-web { background: rgba(112, 199, 222, 0.13); color: #70c7de; }
.exa-source-stack i.is-db { background: rgba(249, 155, 37, 0.13); color: #f99b25; }

.exa-source-stack span {
    display: grid;
    color: #f8fbff;
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    font-weight: 720;
    line-height: 1.25;
}

.exa-source-stack small {
    margin-top: 3px;
    color: #8fa0b8;
    font-size: clamp(0.68rem, 0.78vw, 0.75rem);
    font-weight: 500;
    line-height: 1.35;
}

.exa-source-stack b {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: rgba(102, 191, 119, 0.13);
    color: #66bf77;
    font-size: 11px;
}

/* Steps */
.exa-section--steps {
    background:
        radial-gradient(circle at 90% 10%, rgba(41, 120, 177, 0.08), transparent 31%),
        var(--exa-surface-soft);
}

.exa-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.exa-steps::before {
    position: absolute;
    top: 34px;
    right: 15%;
    left: 15%;
    height: 1px;
    background: linear-gradient(90deg, var(--exa-blue), var(--exa-cyan), var(--exa-orange));
    content: "";
    opacity: 0.34;
}

.exa-steps li {
    position: relative;
    z-index: 1;
    padding: 0 23px 26px 0;
}

.exa-step-number {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 28px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--exa-blue) 32%, var(--exa-border));
    border-radius: 21px;
    background: var(--exa-surface);
    box-shadow: var(--exa-shadow-sm);
    color: var(--exa-blue);
    font-size: 14px;
    font-weight: 900;
}

.exa-steps h3 {
    margin-bottom: 11px;
    color: var(--exa-text);
    font-size: 21px;
    font-weight: 730;
    letter-spacing: -0.035em;
}

.exa-steps p {
    margin-bottom: 0;
    color: var(--exa-text-soft);
    font-size: 14px;
    line-height: 1.75;
}

/* Security */
.exa-section--security {
    overflow: hidden;
    background: var(--exa-surface-strong);
    color: #f8fbff;
}

.exa-section--security::before {
    position: absolute;
    top: -320px;
    right: -250px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 120, 177, 0.28), transparent 68%);
    content: "";
    pointer-events: none;
}

.exa-security-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
    align-items: center;
    gap: clamp(70px, 9vw, 125px);
}

.exa-security-copy h2 {
    color: #f8fbff;
}

.exa-security-copy > p {
    color: #aab7ca;
}

.exa-section--security .exa-eyebrow { color: #70c7de; }

.exa-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 28px;
    margin: 34px 0 31px;
    padding: 0;
    list-style: none;
}

.exa-check-grid li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.exa-check-grid li > i {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: rgba(102, 191, 119, 0.13);
    color: #66bf77;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.exa-check-grid li > span {
    display: grid;
    gap: 3px;
}

.exa-check-grid b {
    color: #f8fbff;
    font-size: 13px;
}

.exa-check-grid small {
    color: #8fa0b8;
    font-size: 11px;
    line-height: 1.5;
}

.exa-text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--exa-blue);
    font-size: 14px;
    font-weight: 760;
}

.exa-section--security .exa-text-link { color: #70c7de; }

.exa-text-link span {
    transition: transform 180ms ease;
}

.exa-text-link:hover span {
    transform: translateX(4px);
}

.exa-security-visual {
    position: relative;
    min-height: 455px;
}

.exa-map-card {
    position: absolute;
    inset: 0 18px 32px 0;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        radial-gradient(circle at 68% 36%, rgba(112, 199, 222, 0.18), transparent 23%),
        rgba(255, 255, 255, 0.045);
    background-size: 26px 26px, 26px 26px, auto, auto;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
}

.exa-map-card__header,
.exa-map-card__legend {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.exa-map-card__label {
    color: #aab7ca;
    font-size: 10px;
    font-weight: 820;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.exa-map-card__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce8f7;
    font-size: 10px;
    font-weight: 720;
}

.exa-map-card__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #66bf77;
    box-shadow: 0 0 0 4px rgba(102, 191, 119, 0.12), 0 0 18px rgba(102, 191, 119, 0.55);
}

.exa-region-network {
    position: relative;
    min-height: 315px;
    margin: 2px -8px -4px;
}

.exa-region-network > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.exa-region-network__land,
.exa-region-network__tasmania {
    stroke: rgba(112, 199, 222, 0.68);
    stroke-linejoin: round;
    stroke-width: 2.2;
    vector-effect: non-scaling-stroke;
}

.exa-region-network__orbit {
    fill: none;
    stroke: rgba(112, 199, 222, 0.16);
    stroke-dasharray: 4 9;
    stroke-width: 1.25;
    vector-effect: non-scaling-stroke;
}

.exa-region-network__orbit--inner {
    stroke: rgba(102, 191, 119, 0.13);
}

.exa-region-network__mesh {
    fill: none;
    stroke: rgba(220, 232, 247, 0.17);
    stroke-width: 1.15;
    vector-effect: non-scaling-stroke;
}

.exa-region-network__nodes circle {
    fill: #70c7de;
    stroke: rgba(248, 251, 255, 0.92);
    stroke-width: 1.5;
    transform-box: fill-box;
    transform-origin: center;
}

.exa-region-network__nodes circle.is-region {
    fill: #66bf77;
}

.exa-region-network__route {
    fill: none;
    stroke: #70c7de;
    stroke-dasharray: 5 7;
    stroke-linecap: round;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.exa-region-network__route--south {
    stroke: #66bf77;
}

.exa-region-network__core {
    position: absolute;
    top: 44.7%;
    left: 45.7%;
    display: grid;
    width: 66px;
    height: 66px;
    transform: translate(-50%, -50%);
    place-content: center;
    border: 1px solid rgba(112, 199, 222, 0.52);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(41, 120, 177, 0.94), rgba(16, 37, 63, 0.96));
    box-shadow: 0 0 0 7px rgba(112, 199, 222, 0.07), 0 18px 45px rgba(0, 0, 0, 0.32), 0 0 34px rgba(112, 199, 222, 0.24);
    color: #f8fbff;
    text-align: center;
    transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.exa-region-network__core b {
    font-size: 16px;
    line-height: 1;
}

.exa-region-network__core small {
    margin-top: 5px;
    color: #b9d7e5;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.exa-region-pin {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    background: rgba(5, 10, 18, 0.82);
    box-shadow: 0 13px 30px rgba(0, 0, 0, 0.23);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: opacity 480ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.exa-region-pin--sydney {
    top: 54%;
    right: -1%;
}

.exa-region-pin--melbourne {
    top: 72%;
    right: auto;
    bottom: auto;
    left: 26%;
}

.exa-region-pin > i {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border: 2px solid #dce8f7;
    border-radius: 50%;
    background: #70c7de;
    box-shadow: 0 0 0 5px rgba(112, 199, 222, 0.11), 0 0 20px rgba(112, 199, 222, 0.55);
}

.exa-region-pin--melbourne > i {
    background: #66bf77;
    box-shadow: 0 0 0 5px rgba(102, 191, 119, 0.11), 0 0 20px rgba(102, 191, 119, 0.52);
}

.exa-region-pin > span {
    display: grid;
    gap: 2px;
}

.exa-region-pin b {
    color: #f8fbff;
    font-size: 12px;
    line-height: 1.1;
}

.exa-region-pin small {
    color: #9fb0c6;
    font-size: 9.5px;
    line-height: 1.25;
}

.exa-map-card__legend {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #dce8f7;
    font-size: 10px;
    font-weight: 700;
}

.exa-map-card__legend small {
    color: #8fa0b8;
    font-size: 9px;
    font-weight: 500;
}

@media (prefers-reduced-motion: no-preference) {
    .exa-motion-ready .exa-security-visual:not(.is-visible) .exa-region-network__land,
    .exa-motion-ready .exa-security-visual:not(.is-visible) .exa-region-network__tasmania {
        stroke-dasharray: 1;
        stroke-dashoffset: 1;
    }

    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__land {
        animation: exa-map-draw 1.45s 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
        stroke-dasharray: 1;
    }

    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__tasmania {
        animation: exa-map-draw 0.52s 1.15s ease-out both;
        stroke-dasharray: 1;
    }

    .exa-motion-ready .exa-security-visual:not(.is-visible) .exa-region-network__nodes circle {
        opacity: 0;
        transform: scale(0.2);
    }

    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle {
        animation: exa-map-node-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(1) { animation-delay: 0.55s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(2) { animation-delay: 0.65s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(3) { animation-delay: 0.75s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(4) { animation-delay: 0.85s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(5) { animation-delay: 0.95s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(6) { animation-delay: 1.05s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(7) { animation-delay: 1.15s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(8) { animation-delay: 1.25s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-network__nodes circle:nth-child(9) { animation-delay: 1.35s; }

    .exa-motion-ready .exa-security-visual:not(.is-visible) .exa-region-network__core {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.72);
    }

    .exa-motion-ready .exa-security-visual:not(.is-visible) .exa-region-pin {
        opacity: 0;
        transform: translateY(10px);
    }

    .exa-motion-ready .exa-security-visual.is-visible .exa-region-pin--sydney { transition-delay: 1.18s; }
    .exa-motion-ready .exa-security-visual.is-visible .exa-region-pin--melbourne { transition-delay: 1.38s; }

    .exa-region-network__route {
        animation: exa-region-flow 4.2s linear infinite;
    }

    .exa-region-pin > i {
        animation: exa-region-pulse 2.4s ease-in-out infinite;
    }

    .exa-region-pin--melbourne > i {
        animation-delay: 0.8s;
    }
}

.exa-security-score {
    position: absolute;
    right: -22px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(13, 25, 43, 0.91);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.36);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.exa-security-score svg {
    width: 28px;
    height: 28px;
    color: #66bf77;
}

.exa-security-score span { display: grid; }
.exa-security-score b { color: #f8fbff; font-size: 11px; }
.exa-security-score small { color: #8fa0b8; font-size: 8px; }

/* Integrations */
.exa-section--integrations {
    background: var(--exa-surface);
}

.exa-integration-cloud {
    display: flex;
    max-width: 970px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid var(--exa-border);
    border-radius: var(--exa-radius-lg);
    background:
        radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--exa-blue) 8%, transparent), transparent 60%),
        var(--exa-surface-soft);
}

.exa-integration-cloud span {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid var(--exa-border);
    border-radius: 13px;
    background: var(--exa-surface);
    box-shadow: var(--exa-shadow-sm);
    color: var(--exa-text);
    font-size: 13px;
    font-weight: 730;
    transition: transform 180ms ease, border-color 180ms ease;
}

.exa-integration-cloud span:hover {
    transform: translateY(-3px);
    border-color: var(--exa-border-strong);
}

.exa-integration-cloud span::before {
    width: 9px;
    height: 9px;
    border-radius: 3px;
    background: var(--exa-blue);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--exa-blue) 11%, transparent);
    content: "";
}

.exa-integration-cloud .is-orange::before { background: #f97316; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.11); }
.exa-integration-cloud .is-purple::before { background: #8b5cf6; box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.11); }
.exa-integration-cloud .is-green::before { background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.11); }
.exa-integration-cloud .is-cyan::before { background: #06b6d4; box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.11); }
.exa-integration-cloud .is-yellow::before { background: #eab308; box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.11); }
.exa-integration-cloud .is-red::before { background: #ef4444; box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.11); }
.exa-integration-cloud .is-indigo::before { background: #6366f1; box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.11); }
.exa-integration-cloud .is-slate::before { background: #64748b; box-shadow: 0 0 0 4px rgba(100, 116, 139, 0.11); }

/* FAQ */
.exa-section--faq {
    border-top: 1px solid var(--exa-border);
    background: var(--exa-surface-soft);
}

.exa-faq-grid {
    display: grid;
    max-width: 1080px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: clamp(38px, 5vw, 64px);
}

.exa-faq-intro {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: clamp(32px, 7vw, 90px);
}

.exa-faq-intro .exa-eyebrow,
.exa-faq-intro h2,
.exa-faq-intro > p {
    grid-column: 1;
}

.exa-faq-intro h2 {
    max-width: 760px;
}

.exa-faq-intro .exa-text-link {
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: end;
    margin-bottom: 8px;
    white-space: nowrap;
}

.exa-faq-list {
    border-top: 1px solid var(--exa-border);
}

.exa-faq-list details {
    border-bottom: 1px solid var(--exa-border);
}

.exa-faq-list summary {
    display: grid;
    min-height: 87px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 25px;
    padding: 22px 2px;
    color: var(--exa-text);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.025em;
    list-style: none;
    cursor: pointer;
}

.exa-faq-list summary::-webkit-details-marker { display: none; }

.exa-faq-list summary > span {
    position: relative;
    width: 26px;
    height: 26px;
    border: 1px solid var(--exa-border-strong);
    border-radius: 50%;
}

.exa-faq-list summary > span::before,
.exa-faq-list summary > span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    transform: translate(-50%, -50%);
    border-radius: 99px;
    background: var(--exa-text-soft);
    content: "";
    transition: transform 180ms ease;
}

.exa-faq-list summary > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.exa-faq-list details[open] summary > span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.exa-faq-list details[open] summary {
    color: var(--exa-blue);
}

.exa-faq-list details p {
    max-width: 78ch;
    margin: -5px 46px 28px 2px;
    color: var(--exa-text-soft);
    font-size: 16px;
    line-height: 1.75;
}

/* CTA and footer */
.exa-cta {
    padding: 24px;
    background: var(--exa-bg);
}

.exa-cta__inner {
    position: relative;
    display: grid;
    width: min(1180px, 100%);
    min-height: 400px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 55px;
    overflow: hidden;
    padding: 70px;
    border-radius: 31px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #1f5e8b, #2978b1 55%, #70c7de);
    background-size: 40px 40px, 40px 40px, auto;
    box-shadow: 0 35px 90px rgba(31, 94, 139, 0.25);
    color: #fff;
}

.exa-cta__glow {
    position: absolute;
    top: -170px;
    right: -90px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 199, 222, 0.34), transparent 67%);
    content: "";
    pointer-events: none;
}

.exa-cta__inner > div:not(.exa-cta__glow) {
    position: relative;
    z-index: 1;
}

.exa-cta .exa-eyebrow { color: #b9f4ff; }

.exa-cta h2 {
    max-width: 750px;
    color: #fff;
    font-size: clamp(2.5rem, 4.4vw, 4.1rem);
}

.exa-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
}

.exa-cta__actions {
    display: grid;
    gap: 12px;
    min-width: 220px;
}

.exa-footer {
    position: relative;
    padding: 76px 0 24px;
    border-top: 1px solid var(--exa-border);
    background:
        radial-gradient(circle at 8% 5%, color-mix(in srgb, var(--exa-cyan) 10%, transparent), transparent 28%),
        radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--exa-orange) 7%, transparent), transparent 25%),
        var(--exa-surface);
}

.exa-footer::before {
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--exa-blue), var(--exa-cyan), var(--exa-green), var(--exa-yellow), var(--exa-orange), var(--exa-red));
    content: "";
}

.exa-footer__directory {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
    padding-bottom: 52px;
}

.exa-footer__links {
    display: grid;
    align-content: start;
    gap: 13px;
}

.exa-footer__links strong {
    margin-bottom: 5px;
    color: var(--exa-text);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.exa-footer__links a {
    color: var(--exa-text-soft);
    font-size: 13px;
    transition: color 180ms ease, transform 180ms ease;
}

.exa-footer__links a:hover {
    transform: translateX(2px);
    color: var(--exa-blue);
}

.exa-footer__locations span {
    color: var(--exa-text-soft);
    font-size: 13px;
}

.exa-footer__about {
    display: grid;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.55fr);
    gap: 70px;
    padding-top: 46px;
    padding-bottom: 46px;
    border-top: 1px solid var(--exa-border);
    border-bottom: 1px solid var(--exa-border);
}

.exa-footer__about .exa-eyebrow {
    grid-column: 1;
    align-self: end;
    margin-bottom: 11px;
}

.exa-footer__about h2 {
    grid-column: 1;
    max-width: 500px;
    margin: 0;
    color: var(--exa-text);
    font-size: clamp(1.6rem, 2.4vw, 2.35rem);
    font-weight: 820;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.exa-footer__about-copy {
    display: grid;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-content: center;
    gap: 13px;
}

.exa-footer__about-copy p {
    margin: 0;
    color: var(--exa-text-soft);
    font-size: 13px;
    line-height: 1.72;
}

.exa-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: var(--exa-text-faint);
    font-size: 11px;
}

.exa-footer__socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.exa-footer__socials a {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid var(--exa-border);
    border-radius: 50%;
    background: color-mix(in srgb, var(--exa-surface) 82%, transparent);
    color: var(--exa-text-soft);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: -0.03em;
    text-transform: lowercase;
    transition: transform 170ms ease, border-color 170ms ease, color 170ms ease, background-color 170ms ease;
}

.exa-footer__socials a:hover,
.exa-footer__socials a:focus-visible {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--exa-blue) 45%, var(--exa-border));
    background: color-mix(in srgb, var(--exa-blue) 10%, var(--exa-surface));
    color: var(--exa-blue-deep);
}

.exa-footer__socials svg {
    width: 16px;
    height: 16px;
}

/* Motion: only hidden once JavaScript is ready, so content remains visible without JS. */
.exa-motion-ready [data-exa-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--exa-reveal-delay, 0ms);
}

.exa-motion-ready [data-exa-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes exa-pulse {
    0% { opacity: 0.7; transform: scale(0.75); }
    80%, 100% { opacity: 0; transform: scale(1.85); }
}

@keyframes exa-orbit {
    to { transform: rotate(360deg); }
}

@keyframes exa-wave {
    0% { height: 20%; }
    35% { height: 74%; }
    70% { height: 42%; }
    100% { height: 92%; }
}

@keyframes exa-deploy-connector-pass {
    0% { left: 0; opacity: 0; transform: translate(-50%, -50%) scale(0.45); }
    16% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    78% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
    100% { left: 100%; opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
}

@keyframes exa-deploy-arrow-flare {
    0% { filter: drop-shadow(0 0 0 rgba(102, 191, 119, 0)); transform: translateX(-2px) scale(0.9); }
    68% { filter: drop-shadow(0 0 7px rgba(102, 191, 119, 1)) drop-shadow(0 0 14px rgba(102, 191, 119, 0.7)); transform: translateX(2px) scale(1.12); }
    100% { filter: drop-shadow(0 0 4px rgba(102, 191, 119, 0.95)) drop-shadow(0 0 9px rgba(102, 191, 119, 0.55)); transform: translateX(1px) scale(1); }
}

@keyframes exa-deploy-stage-arrive {
    0% { filter: drop-shadow(0 0 0 rgba(102, 191, 119, 0)); }
    52% { filter: drop-shadow(0 0 13px rgba(102, 191, 119, 0.48)); }
    100% { filter: drop-shadow(0 0 0 rgba(102, 191, 119, 0)); }
}

@keyframes exa-recording-pulse {
    0% { box-shadow: 0 0 0 0 rgba(179, 30, 61, 0.42); }
    75%, 100% { box-shadow: 0 0 0 9px rgba(179, 30, 61, 0); }
}

@keyframes exa-cursor-blink {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}

@keyframes exa-map-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes exa-map-node-in {
    from { opacity: 0; transform: scale(0.2); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes exa-region-flow {
    to { stroke-dashoffset: -48; }
}

@keyframes exa-region-pulse {
    0%, 100% { opacity: 0.72; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.18); }
}

@keyframes exa-language-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

@media (max-width: 1120px) {
    .exa-language-switcher { width: 48px; min-width: 48px; }
    .exa-language-switcher .gtranslate_wrapper:empty::before { justify-content: center; padding-inline: 4px; content: "EN"; font-size: 9px; }
    .exa-site .exa-language-switcher .gt_selected a { width: 48px !important; padding: 7px 20px 7px 5px !important; font-size: 0 !important; }
    .exa-site .exa-language-switcher .gt_selected a::after { right: 8px !important; }
    .exa-site .exa-language-switcher .gt_option { width: 160px !important; }
    .exa-language-fallback { justify-content: center; padding: 7px 5px; font-size: 0; }
    .exa-nav { gap: 10px; }
    .exa-nav__link { font-size: 13px; }
    .exa-hero__grid { grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr); gap: 38px; }
    .exa-deploy-demo { padding: 13px; }
    .exa-deploy-brief { padding-inline: 18px; }
    .exa-deploy-employee { padding-inline: 18px; }
    .exa-deploy-stage { grid-template-columns: 27px minmax(0, 1fr); padding-inline: 6px; }
    .exa-deploy-stage > span { width: 27px; height: 27px; }
    .exa-security-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); gap: 65px; }
    .exa-cta__inner { padding: 58px; }
    .exa-footer__directory { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 38px; }
}

@media (max-width: 980px) {
    .exa-hero { min-height: 0; padding-top: 132px; }
    .exa-hero__grid { grid-template-columns: 1fr; }
    .exa-hero__copy { max-width: 740px; padding-bottom: 0; }
    .exa-hero h1 { max-width: 790px; }
    .exa-hero__visual { width: min(680px, 94%); margin: 25px auto 0; }
    .exa-trust-strip { margin-top: 90px; }
}

@media (max-width: 920px) {
    .exa-header { height: 76px; }
    .exa-header__inner { grid-template-columns: auto 1fr auto auto; gap: 12px; }
    .exa-brand { grid-column: 1; }
    .exa-menu-toggle { display: block; grid-column: 4; justify-self: end; }
    .exa-header__actions { grid-column: 3; grid-row: 1; }
    .exa-header__actions .exa-button { display: none; }
    .exa-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 10px;
        max-height: calc(100dvh - 100px);
        overflow-y: auto;
        border: 1px solid var(--exa-border);
        border-radius: 18px;
        background: color-mix(in srgb, var(--exa-surface) 95%, transparent);
        box-shadow: var(--exa-shadow-md);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top;
        visibility: hidden;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }
    .exa-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); visibility: visible; }
    .exa-nav-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
    .exa-nav__link { min-height: 46px; padding: 13px 14px; border-radius: 10px; font-size: 14px; line-height: 20px; text-align: left; }
    .exa-nav__link:hover { background: var(--exa-surface-soft); }
    .exa-nav__link::after { display: none; }
    .exa-nav__more { display: flex; width: 100%; justify-content: space-between; grid-column: 1 / -1; }
    .exa-nav__disclosure { width: 46px; height: 46px; margin: 0; }
    .exa-submenu,
    .exa-mega-menu {
        position: static;
        display: none;
        width: auto;
        min-width: 0;
        grid-column: 1 / -1;
        gap: 3px;
        margin: 0 7px 8px;
        padding: 5px 6px 7px 12px;
        border: 0;
        border-left: 2px solid color-mix(in srgb, var(--exa-blue) 38%, var(--exa-border));
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    .exa-submenu::before { display: none; }
    .exa-nav-item.is-expanded > .exa-submenu,
    .exa-nav-item.is-expanded > .exa-mega-menu { display: grid; transform: none; }
    .exa-submenu a { padding: 10px 12px; }
    .exa-mega-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 10px; }
    .exa-mega-menu strong { min-height: 0; padding-bottom: 6px; }
    .exa-nav__mobile-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 7px;
        padding: 13px 7px 5px;
        border-top: 1px solid var(--exa-border);
    }
    .exa-nav__mobile-actions .exa-button { width: 100%; }
    .exa-hero { min-height: 0; padding-top: 132px; }
    .exa-hero__grid { grid-template-columns: 1fr; }
    .exa-hero__copy { max-width: 740px; padding-bottom: 0; }
    .exa-hero h1 { max-width: 790px; }
    .exa-hero__visual { width: min(680px, 94%); margin: 25px auto 0; }
    .exa-trust-strip { margin-top: 90px; }
    .exa-section-heading--split { grid-template-columns: 1fr; gap: 20px; }
    .exa-bento-card, .exa-bento-card--wide { grid-column: span 6; }
    .exa-bento-card--dark { grid-template-columns: 1fr; }
    .exa-security-grid { grid-template-columns: 1fr; }
    .exa-security-copy { max-width: 720px; }
    .exa-security-visual { width: min(600px, 90%); margin: 0 auto; }
    .exa-faq-grid { grid-template-columns: 1fr; gap: 45px; }
    .exa-faq-intro { display: block; max-width: 760px; }
    .exa-faq-intro .exa-text-link { margin-top: 27px; white-space: normal; }
    .exa-cta__inner { grid-template-columns: 1fr; }
    .exa-cta__actions { display: flex; flex-wrap: wrap; }
    .exa-footer__about { grid-template-columns: 1fr; gap: 25px; }
    .exa-footer__about .exa-eyebrow,
    .exa-footer__about h2,
    .exa-footer__about-copy { grid-column: 1; grid-row: auto; }
}

@media (max-width: 720px) {
    .exa-shell { width: min(100% - 32px, 1180px); }
    .exa-brand img { width: 150px; }
    .exa-section { padding: 86px 0; }
    .exa-section-heading { margin-bottom: 36px; }
    .exa-section-heading h2, .exa-security-copy h2, .exa-faq-intro h2, .exa-cta h2 { letter-spacing: -0.045em; }
    .exa-hero { padding: 118px 0 44px; }
    .exa-hero h1 { font-size: clamp(2.85rem, 13vw, 4.25rem); letter-spacing: -0.065em; }
    .exa-deploy-demo { border-radius: 21px; transform: none; }
    .exa-deploy-brief { min-height: 0; padding: 18px; }
    .exa-deploy-brief__prompt { min-height: 0; }
    .exa-deploy-pipeline { margin-inline: 0; }
    .exa-deploy-stage { grid-template-columns: 25px minmax(0, 1fr); gap: 0 6px; padding: 8px 6px; }
    .exa-deploy-stage > span { width: 25px; height: 25px; }
    .exa-deploy-employee { padding: 18px; }
    .exa-trust-strip { grid-template-columns: repeat(2, 1fr); gap: 22px 0; margin-top: 84px; }
    .exa-trust-strip > div { padding: 0 18px; }
    .exa-trust-strip > div:nth-child(3) { padding-left: 0; border-left: 0; }
    .exa-evolution { grid-template-columns: 1fr; gap: 14px; }
    .exa-evolution__arrow { height: 50px; transform: rotate(90deg); }
    .exa-bento-card, .exa-bento-card--wide { min-height: 390px; grid-column: 1 / -1; padding: 28px; }
    .exa-bento-card--dark { min-height: auto; }
    .exa-steps { grid-template-columns: 1fr; gap: 32px; }
    .exa-steps::before { top: 34px; right: auto; bottom: 80px; left: 33px; width: 1px; height: auto; }
    .exa-steps li { display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding: 0; }
    .exa-step-number { margin-bottom: 0; }
    .exa-check-grid { grid-template-columns: 1fr; }
    .exa-security-visual { width: 100%; min-height: 460px; }
    .exa-map-card { right: 0; padding: 24px; }
    .exa-region-network { min-height: 300px; margin-inline: -12px; }
    .exa-region-pin--sydney { right: -2px; }
    .exa-region-pin--melbourne { right: 5%; left: auto; }
    .exa-security-score { right: 12px; }
    .exa-integration-cloud { padding: 24px 16px; border-radius: 22px; }
    .exa-integration-cloud span { min-height: 43px; padding-inline: 14px; font-size: 11px; }
    .exa-faq-list summary { min-height: 76px; font-size: 16px; }
    .exa-cta { padding: 12px; }
    .exa-cta__inner { min-height: 0; padding: 52px 28px; border-radius: 24px; }
    .exa-cta__actions { display: grid; }
    .exa-footer { padding-top: 60px; }
    .exa-footer__directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .exa-footer__bottom { align-items: flex-start; flex-direction: column; }
    .exa-footer__socials { justify-content: flex-start; }
}

@media (max-width: 560px) {
    .exa-deploy-pipeline { grid-template-columns: 1fr; gap: 0; margin-inline: 18px; }
    .exa-deploy-connector { width: 32px; height: 30px; justify-self: center; transform: rotate(90deg); }
}

@media (max-width: 480px) {
    .exa-shell { width: min(100% - 24px, 1180px); }
    .exa-header__inner { gap: 8px; }
    .exa-brand img { width: 132px; }
    .exa-theme-toggle { width: 38px; height: 38px; }
    .exa-menu-toggle { width: 40px; height: 40px; }
    .exa-kicker { font-size: 10px; }
    .exa-hero h1 { font-size: clamp(2.55rem, 13.4vw, 3.4rem); }
    .exa-hero__actions { display: grid; }
    .exa-hero__actions .exa-button { width: 100%; }
    .exa-proof-list { display: grid; }
    .exa-hero__visual { width: 100%; }
    .exa-deploy-demo { padding: 10px; border-radius: 18px; }
    .exa-deploy-brief { padding: 15px; }
    .exa-deploy-brief__head { align-items: flex-start; }
    .exa-deploy-brief__signal { flex-wrap: wrap; gap: 6px; font-size: 9px; }
    .exa-deploy-brief__signal em { display: none; }
    .exa-deploy-brief__id { display: none; }
    .exa-deploy-brief__prompt { margin-block: 15px 13px; font-size: 0.79rem; line-height: 1.62; }
    .exa-deploy-brief__listening { flex-wrap: wrap; gap: 6px 9px; font-size: 9.5px; }
    .exa-deploy-brief__listening > small { width: 100%; margin-left: 0; font-size: 8.5px; }
    .exa-deploy-stage { grid-template-columns: 26px minmax(0, 1fr); padding: 8px; }
    .exa-deploy-stage > span { width: 26px; height: 26px; }
    .exa-deploy-employee { padding: 15px; }
    .exa-deploy-employee__head { align-items: flex-start; flex-direction: column; }
    .exa-deploy-employee__head strong { font-size: 1rem; }
    .exa-deploy-employee__channels { gap: 5px; margin-block: 13px 11px; }
    .exa-deploy-employee__channels span { padding: 4px 7px; font-size: 8px; }
    .exa-deploy-activity > div { min-height: 46px; gap: 8px; font-size: 10.5px; }
    .exa-deploy-activity small { display: none; }
    .exa-deploy-employee__foot { align-items: flex-start; flex-direction: column; gap: 4px; }
    .exa-trust-strip { gap: 19px 0; }
    .exa-trust-strip > div { padding-inline: 13px; }
    .exa-trust-strip strong { font-size: 18px; }
    .exa-trust-strip span { font-size: 9px; }
    .exa-section { padding: 74px 0; }
    .exa-evolution__old, .exa-evolution__new { padding: 24px; }
    .exa-evolution ul { grid-template-columns: 1fr; }
    .exa-bento-card, .exa-bento-card--wide { min-height: auto; padding: 24px; }
    .exa-flow-mini { gap: 5px; padding: 22px 8px; }
    .exa-flow-mini span { min-width: 0; flex: 1; padding: 9px 5px; font-size: 12px; }
    .exa-flow-mini i { width: 10px; flex-basis: 10px; }
    .exa-source-stack > div:nth-child(2) { transform: none; }
    .exa-steps li { grid-template-columns: 57px 1fr; gap: 17px; }
    .exa-step-number { width: 57px; height: 57px; border-radius: 17px; }
    .exa-steps::before { top: 28px; left: 28px; }
    .exa-security-visual { min-height: 430px; }
    .exa-map-card { bottom: 62px; padding: 18px; }
    .exa-map-card__header { align-items: flex-start; }
    .exa-map-card__status { max-width: 90px; justify-content: flex-end; text-align: right; }
    .exa-region-network { min-height: 260px; margin-inline: -16px; }
    .exa-region-network__core { left: 45.7%; width: 56px; height: 56px; border-radius: 17px; }
    .exa-region-network__core b { font-size: 14px; }
    .exa-region-network__core small { font-size: 8px; }
    .exa-region-pin { gap: 7px; padding: 8px; }
    .exa-region-pin--sydney { top: 52%; right: -2px; }
    .exa-region-pin--melbourne { top: 72%; right: 1%; bottom: auto; }
    .exa-region-pin b { font-size: 11px; }
    .exa-region-pin small { display: none; }
    .exa-map-card__legend { align-items: flex-start; flex-direction: column; gap: 3px; }
    .exa-security-score { right: 7px; bottom: 0; }
    .exa-faq-list details p { margin-right: 15px; }
    .exa-cta__inner { padding: 46px 22px; }
    .exa-mega-menu { grid-template-columns: 1fr; }
    .exa-nav__mobile-actions { grid-template-columns: 1fr; }
    .exa-footer__directory { grid-template-columns: 1fr; gap: 34px; }
    .exa-footer__about { padding-block: 38px; }
}

@media (prefers-reduced-motion: reduce) {
    .exa-deploy-connector__track > b {
        display: none;
    }

    .exa-site *,
    .exa-site *::before,
    .exa-site *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .exa-motion-ready [data-exa-reveal] {
        opacity: 1;
        transform: none;
    }
}
