:root {
    --ink: #0b1f3a;
    --ink-2: #17365f;
    --muted: #61728b;
    --muted-2: #8a9ab0;
    --line: #dce6f2;
    --line-soft: #edf2f8;
    --surface: #ffffff;
    --surface-soft: #f6f9fd;
    --navy: #061a33;
    --navy-2: #0a2748;
    --blue: #2468f2;
    --blue-2: #5158ed;
    --cyan: #10b8ca;
    --green: #0aaa70;
    --amber: #f59e0b;
    --red: #ef4444;
    --violet: #7c3aed;
    --shell: 1240px;
    --shadow-sm: 0 12px 32px rgba(7, 28, 54, .07);
    --shadow-md: 0 24px 70px rgba(7, 28, 54, .12);
    --shadow-lg: 0 40px 100px rgba(3, 18, 38, .2);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button,
input,
textarea {
    font: inherit;
}

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

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

a {
    color: inherit;
}

.site-shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

.top-signal {
    position: relative;
    z-index: 80;
    color: rgba(255, 255, 255, .88);
    background: var(--navy);
    font-size: 11px;
}

.top-signal-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-signal-inner span,
.top-signal-inner a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-signal-inner span:first-child {
    font-weight: 700;
}

.top-signal-inner span:first-child i,
.cta-panel > div:nth-child(2) > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #28d89a;
    box-shadow: 0 0 0 5px rgba(40, 216, 154, .13);
}

.top-signal-copy {
    color: rgba(255, 255, 255, .58);
}

.top-signal a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    border-bottom: 1px solid rgba(220, 230, 242, .8);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 10px 32px rgba(7, 28, 54, .08);
}

.header-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: 210px 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 175px;
}

.brand img {
    width: 100%;
    max-height: 54px;
    object-fit: contain;
}

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

.desktop-nav a {
    position: relative;
    color: #3d526d;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    transition: right .18s ease;
}

.desktop-nav a:hover {
    color: var(--blue);
}

.desktop-nav a:hover::after {
    right: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-login,
.header-demo {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.header-login {
    color: var(--ink-2);
}

.header-demo {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 10px 24px rgba(36, 104, 242, .22);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    display: none;
    place-content: center;
    gap: 4px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
}

.mobile-menu {
    display: none;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    box-shadow: 0 14px 34px rgba(36, 104, 242, .25);
}

.button-ghost {
    color: var(--ink-2);
    border-color: var(--line);
    background: rgba(255, 255, 255, .84);
}

.button-light {
    color: var(--navy);
    background: #fff;
    box-shadow: 0 14px 32px rgba(2, 15, 34, .14);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 0;
    background:
        radial-gradient(circle at 10% 25%, rgba(36, 104, 242, .09), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(16, 184, 202, .1), transparent 27%),
        linear-gradient(180deg, #fbfdff 0%, #f5f9ff 70%, #fff 100%);
}

.hero-grid,
.cta-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(27, 77, 135, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 77, 135, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-glow-one {
    width: 360px;
    height: 360px;
    top: -130px;
    left: -160px;
    background: rgba(64, 116, 255, .1);
}

.hero-glow-two {
    width: 470px;
    height: 470px;
    right: -220px;
    bottom: -130px;
    background: rgba(35, 204, 190, .1);
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(380px, .82fr) minmax(620px, 1.3fr);
    align-items: center;
    gap: 58px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    padding-bottom: 58px;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-kicker {
    margin-bottom: 20px;
    padding: 7px 11px;
    border: 1px solid rgba(36, 104, 242, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--shadow-sm);
}

.hero h1,
.section-heading h2,
.intelligence-copy h2,
.contact-copy h2,
.cta-panel h2 {
    font-family: Manrope, Inter, sans-serif;
    letter-spacing: -.045em;
}

.hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(44px, 5vw, 70px);
    line-height: .99;
    font-weight: 800;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(105deg, var(--blue) 0%, var(--blue-2) 55%, #11a8bc 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy > p {
    max-width: 600px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    margin-top: 25px;
    color: #50657f;
    font-size: 10.5px;
    font-weight: 650;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-proof i {
    color: var(--green);
}

.hero-product {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: 18px 4px 72px 20px;
}

.command-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(155, 180, 214, .55);
    border-radius: 20px;
    background: #f4f7fc;
    box-shadow: 0 40px 90px rgba(13, 43, 83, .2), 0 4px 0 #fff inset;
    transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.command-topbar {
    min-height: 56px;
    display: grid;
    grid-template-columns: 190px 1fr 34px;
    align-items: center;
    gap: 14px;
    padding: 0 15px;
    border-bottom: 1px solid #e4ebf5;
    background: rgba(255, 255, 255, .94);
}

.command-brand {
    display: grid;
    grid-template-columns: 30px auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 8px;
}

.command-mark {
    width: 30px;
    height: 30px;
    grid-row: 1 / 3;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.command-brand strong {
    color: var(--navy);
    font: 800 12px Manrope, sans-serif;
    line-height: 1;
}

.command-brand small {
    margin-top: 2px;
    color: var(--muted-2);
    font-size: 7px;
}

.command-search {
    height: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid #e0e8f3;
    border-radius: 9px;
    color: #9aa9bc;
    background: #fbfdff;
    font-size: 8.5px;
}

.command-user {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #5254e9);
    font-size: 9px;
    font-weight: 800;
}

.command-body {
    min-height: 430px;
    display: grid;
    grid-template-columns: 50px 1fr;
}

.command-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    background: linear-gradient(180deg, #071d38, #092746);
}

.command-sidebar span {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, .45);
    font-size: 10px;
}

.command-sidebar .is-active {
    color: #fff;
    background: rgba(104, 104, 255, .35);
    box-shadow: inset 2px 0 #8d7bff;
}

.command-content {
    min-width: 0;
    padding: 17px;
}

.command-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.command-heading > div > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #605af1;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
}

.command-heading > div > span i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c991;
    box-shadow: 0 0 0 3px rgba(34, 201, 145, .12);
}

.command-heading h2 {
    margin: 5px 0 2px;
    color: #17345c;
    font: 800 14px Manrope, sans-serif;
}

.command-heading p {
    margin: 0;
    color: #8595aa;
    font-size: 7.5px;
}

.command-heading button {
    height: 31px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #5961f2, #5052e6);
    font-size: 8px;
    font-weight: 750;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.metric-card {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 9px;
    border: 1px solid #e3eaf4;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(25, 57, 93, .04);
}

.metric-card > i {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 9px;
    font-size: 10px;
}

.metric-card div {
    min-width: 0;
    display: grid;
}

.metric-card span {
    overflow: hidden;
    color: #677a94;
    font-size: 6.5px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.metric-card strong {
    margin-top: 2px;
    color: #17345c;
    font-size: 17px;
    line-height: 1;
    transition: opacity .16s ease, transform .16s ease;
}

.metric-card strong.is-updating {
    opacity: .25;
    transform: translateY(-3px);
}

.metric-card small {
    margin-top: 4px;
    overflow: hidden;
    color: #92a0b2;
    font-size: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.metric-card small b {
    color: var(--green);
}

.metric-indigo > i { color: #5b5cf0; background: #eceeff; }
.metric-cyan > i { color: #0697a8; background: #e1fafc; }
.metric-green > i { color: #079a65; background: #e4f9ef; }
.metric-amber > i { color: #d68905; background: #fff5d9; }

.command-panels {
    display: grid;
    grid-template-columns: 1.55fr .9fr;
    gap: 9px;
    margin-top: 10px;
}

.analytics-card,
.activity-card {
    min-width: 0;
    border: 1px solid #e3eaf4;
    border-radius: 12px;
    background: #fff;
}

.panel-title {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
    border-bottom: 1px solid #edf2f8;
}

.panel-title div {
    display: grid;
    gap: 2px;
}

.panel-title span {
    color: #8392a7;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.panel-title strong {
    color: #19365e;
    font-size: 9px;
}

.panel-title small {
    padding: 4px 7px;
    border-radius: 6px;
    color: #5e61ed;
    background: #eef0ff;
    font-size: 6px;
    font-weight: 750;
}

.activity-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #24ca92;
    box-shadow: 0 0 0 4px rgba(36, 202, 146, .12);
}

.chart-area {
    position: relative;
    height: 165px;
    padding: 12px 12px 20px;
}

.chart-lines {
    position: absolute;
    inset: 15px 12px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chart-lines i {
    display: block;
    border-top: 1px dashed #e8eef6;
}

.chart-area svg {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 120px;
    overflow: visible;
}

.chart-fill {
    fill: url(#heroChartFill);
}

.chart-line {
    fill: none;
    stroke: #5b5cf0;
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 4px 4px rgba(91, 92, 240, .16));
}

.chart-area circle {
    fill: #fff;
    stroke: #5b5cf0;
    stroke-width: 3;
}

.chart-days {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 8px;
    display: flex;
    justify-content: space-between;
    color: #9aa8b9;
    font-size: 5.5px;
}

.activity-feed {
    padding: 7px 10px 10px;
}

.activity-feed > div {
    display: grid;
    grid-template-columns: 25px 1fr auto;
    align-items: center;
    gap: 7px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f3f8;
    transition: opacity .25s ease, transform .25s ease;
}

.activity-feed > div.is-new {
    opacity: 0;
    transform: translateY(-7px);
}

.activity-feed > div:last-child {
    border-bottom: 0;
}

.activity-feed > div > i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: #6262ef;
    background: #f0efff;
    font-size: 8px;
}

.activity-feed p {
    min-width: 0;
    display: grid;
    gap: 2px;
    margin: 0;
}

.activity-feed strong {
    overflow: hidden;
    color: #29415f;
    font-size: 6.7px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.activity-feed p span,
.activity-feed small {
    color: #97a4b6;
    font-size: 5.5px;
}

.floating-status {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid rgba(210, 224, 241, .9);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 45px rgba(18, 52, 91, .16);
    backdrop-filter: blur(12px);
}

.floating-status > span {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.floating-status div {
    display: grid;
    gap: 2px;
}

.floating-status small {
    color: var(--muted-2);
    font-size: 7px;
    text-transform: uppercase;
}

.floating-status strong {
    color: var(--ink-2);
    font-size: 9px;
}

.floating-status-left {
    left: -6px;
    bottom: 36px;
    animation: hoverFloat 5s ease-in-out infinite;
}

.floating-status-right {
    right: -18px;
    top: 115px;
    animation: hoverFloat 5.8s ease-in-out infinite .6s;
}

.product-orbit {
    position: absolute;
    z-index: 4;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(36, 104, 242, .14);
    border-radius: 50%;
    color: var(--blue);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-sm);
}

.orbit-one { top: -8px; right: 90px; }
.orbit-two { bottom: 42px; right: 28px; }

@keyframes hoverFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.capability-rail {
    position: relative;
    z-index: 4;
    min-height: 76px;
    display: grid;
    grid-template-columns: 1.35fr repeat(5, 1fr);
    align-items: center;
    gap: 16px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 -10px 45px rgba(17, 48, 84, .07);
}

.capability-rail > span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.capability-rail div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #38516f;
    font-size: 10px;
    font-weight: 650;
}

.capability-rail i {
    color: var(--blue);
}

.outcome-strip {
    padding: 28px 0;
    border-block: 1px solid var(--line-soft);
    background: #fff;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.outcome-grid > div {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    border-right: 1px solid var(--line);
}

.outcome-grid > div:first-child { padding-left: 0; }
.outcome-grid > div:last-child { padding-right: 0; border-right: 0; }

.outcome-grid strong {
    color: var(--navy);
    font: 800 30px Manrope, sans-serif;
    letter-spacing: -.05em;
}

.outcome-grid span {
    color: var(--muted);
    font-size: 10.5px;
    line-height: 1.5;
}

.section {
    padding: 108px 0;
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
    align-items: end;
    gap: 70px;
}

.section-heading h2,
.intelligence-copy h2,
.contact-copy h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 800;
}

.section-heading > p,
.section-heading-split > p,
.intelligence-copy > p,
.contact-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.centered {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.centered > p {
    max-width: 650px;
    margin: 16px auto 0;
}

.platform-section {
    background: #fff;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 68px 1fr;
    align-items: stretch;
    gap: 18px;
}

.before-card,
.after-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 24px;
}

.before-card {
    border: 1px solid #eadfe2;
    background: linear-gradient(145deg, #fff, #fff8f8);
}

.after-card {
    border: 1px solid #cfe5f2;
    background:
        radial-gradient(circle at 90% 10%, rgba(36, 104, 242, .1), transparent 35%),
        linear-gradient(145deg, #f9fdff, #eff7ff);
    box-shadow: var(--shadow-md);
}

.compare-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #b94a55;
    background: #fff0f1;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.after-card .compare-label {
    color: #087b57;
    background: #e4f8ef;
}

.before-card h3,
.after-card h3 {
    margin: 18px 0 24px;
    color: var(--navy);
    font: 800 25px Manrope, sans-serif;
    letter-spacing: -.03em;
}

.chaos-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.chaos-list span {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid #f0dcdf;
    border-radius: 11px;
    color: #7c5360;
    background: rgba(255, 255, 255, .86);
    font-size: 10px;
    font-weight: 650;
}

.chaos-list i {
    color: #db5965;
}

.chaos-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #f0dcdf;
}

.chaos-person > span {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #e66872, #a9364b);
}

.chaos-person div {
    display: grid;
    gap: 3px;
}

.chaos-person strong {
    color: var(--ink);
    font-size: 12px;
}

.chaos-person small {
    color: var(--muted);
    font-size: 9px;
}

.compare-switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--blue);
}

.compare-switch span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    font: 800 11px Manrope, sans-serif;
    box-shadow: 0 14px 25px rgba(36, 104, 242, .2);
}

.answer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.answer-grid > div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px;
    border: 1px solid #dce9f4;
    border-radius: 12px;
    background: rgba(255, 255, 255, .86);
}

.answer-grid i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: var(--blue);
    background: #eaf1ff;
}

.answer-grid span {
    display: grid;
    gap: 3px;
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.answer-grid strong {
    color: var(--ink-2);
    font-size: 10px;
    letter-spacing: 0;
    text-transform: none;
}

.workflow-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(64, 103, 255, .25), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(8, 184, 199, .15), transparent 32%),
        linear-gradient(145deg, #05162d, #082744 58%, #071d38);
}

.workflow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: radial-gradient(rgba(255, 255, 255, .28) .7px, transparent .7px);
    background-size: 20px 20px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.workflow-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -380px;
    left: 50%;
    border-radius: 50%;
    background: rgba(87, 96, 255, .2);
    filter: blur(30px);
    transform: translateX(-50%);
}

.workflow-section .site-shell {
    position: relative;
}

.light-heading h2,
.light-heading p {
    color: #fff;
}

.light-heading p {
    color: rgba(255, 255, 255, .65);
}

.workflow-section .section-kicker {
    color: #7ee5ef;
}

.workflow-runway {
    display: grid;
    grid-template-columns: repeat(4, 1fr 30px) 1fr;
    align-items: stretch;
}

.workflow-runway article {
    position: relative;
    min-width: 0;
    padding: 24px 19px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(10px);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.workflow-runway article:hover {
    border-color: rgba(111, 202, 255, .38);
    background: rgba(255, 255, 255, .09);
    transform: translateY(-5px);
}

.workflow-runway article > span {
    position: absolute;
    top: 13px;
    right: 14px;
    color: rgba(255, 255, 255, .25);
    font: 800 11px Manrope, sans-serif;
}

.workflow-runway article > i {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #3858e9, #23a6c8);
    box-shadow: 0 14px 30px rgba(14, 136, 201, .16);
}

.workflow-runway h3 {
    margin: 18px 0 9px;
    font: 750 15px Manrope, sans-serif;
}

.workflow-runway p {
    min-height: 68px;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 9.5px;
    line-height: 1.6;
}

.workflow-runway small {
    display: block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #77d8e5;
    font-size: 8px;
    font-weight: 700;
}

.workflow-runway > b {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .36);
}

.workflow-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
}

.workflow-actions > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: 9.5px;
}

.workflow-actions > span i {
    color: #67d5e4;
}

.control-section {
    background: linear-gradient(180deg, #fff, #f6f9fd);
}

.product-tabs {
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    margin: 0 auto 20px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.product-tabs button {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
    border: 0;
    border-radius: 11px;
    color: var(--muted);
    background: transparent;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
}

.product-tabs button i {
    color: var(--blue);
}

.product-tabs button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--navy), #123f70);
    box-shadow: 0 10px 25px rgba(7, 28, 54, .18);
}

.product-tabs button.is-active i {
    color: #73ddeb;
}

.product-stage {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.product-panel {
    min-height: 520px;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: 50px;
    padding: 48px;
    animation: panelReveal .34s ease both;
}

.product-panel[hidden] {
    display: none;
}

@keyframes panelReveal {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.product-panel-copy > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-panel-copy h3 {
    margin: 13px 0;
    color: var(--navy);
    font: 800 32px/1.13 Manrope, sans-serif;
    letter-spacing: -.04em;
}

.product-panel-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.75;
}

.product-panel-copy ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 24px;
    padding: 0;
    list-style: none;
}

.product-panel-copy li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #405772;
    font-size: 10px;
}

.product-panel-copy li i {
    color: var(--green);
}

.product-panel-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
}

.product-visual {
    min-height: 390px;
    overflow: hidden;
    border: 1px solid #dbe5f2;
    border-radius: 20px;
    background: #f5f8fc;
    box-shadow: 0 25px 60px rgba(17, 49, 86, .13);
}

.visual-toolbar {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    border-bottom: 1px solid #e2e9f2;
    background: #fff;
}

.visual-toolbar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d7dfea;
}

.visual-toolbar i:first-child { background: #ff8a8a; }
.visual-toolbar i:nth-child(2) { background: #ffc85f; }
.visual-toolbar i:nth-child(3) { background: #45d49d; }

.visual-toolbar span {
    margin-left: 8px;
    color: #71839a;
    font-size: 8px;
    font-weight: 700;
}

.visual-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 17px;
}

.visual-kpis div,
.pod-summary div {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid #e2eaf4;
    border-radius: 12px;
    background: #fff;
}

.visual-kpis span,
.pod-summary span {
    color: #8291a5;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.visual-kpis strong,
.pod-summary strong {
    color: var(--ink-2);
    font-size: 21px;
}

.visual-chart {
    position: relative;
    height: 220px;
    margin: 0 17px 17px;
    padding: 16px;
    border: 1px solid #e2eaf4;
    border-radius: 14px;
    background:
        linear-gradient(#edf2f8 1px, transparent 1px),
        #fff;
    background-size: 100% 42px;
}

.visual-chart > span {
    color: #46607d;
    font-size: 9px;
    font-weight: 750;
}

.visual-chart svg {
    width: 100%;
    height: 165px;
}

.visual-chart path {
    fill: none;
    stroke: #5b5cf0;
    stroke-width: 4;
    stroke-linecap: round;
}

.trip-form-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    padding: 24px;
}

.trip-form-demo label {
    display: grid;
    gap: 7px;
}

.trip-form-demo label span,
.trip-form-demo > div span {
    color: #708299;
    font-size: 8px;
    font-weight: 750;
    text-transform: uppercase;
}

.trip-form-demo label strong {
    min-height: 49px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid #dce5f0;
    border-radius: 11px;
    color: #314a68;
    background: #fff;
    font-size: 10px;
}

.trip-form-demo > div {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px dashed #b9c9dc;
    border-radius: 11px;
    background: #f8fbff;
}

.trip-form-demo > div b {
    color: var(--green);
    font-size: 10px;
}

.trip-form-demo button {
    grid-column: 1 / 3;
    min-height: 46px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-2));
    font-size: 10px;
    font-weight: 800;
}

.driver-visual {
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 12%, rgba(59, 104, 242, .13), transparent 32%),
        linear-gradient(145deg, #edf5ff, #f8fbff);
}

.phone-frame {
    width: 255px;
    min-height: 440px;
    padding: 13px;
    border: 7px solid #0a1b32;
    border-radius: 31px;
    background: #f4f7fb;
    box-shadow: 0 28px 60px rgba(8, 29, 56, .22);
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #60728a;
    font-size: 7px;
}

.phone-top span {
    color: var(--navy);
    font-size: 8px;
    font-weight: 800;
}

.phone-route {
    display: grid;
    gap: 6px;
    margin: 14px 0;
    padding: 16px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, #12385e, #0b2340);
}

.phone-route small {
    color: #72d5e0;
    font-size: 7px;
    text-transform: uppercase;
}

.phone-route strong {
    font-size: 12px;
    line-height: 1.35;
}

.phone-route span {
    color: rgba(255, 255, 255, .6);
    font-size: 7px;
}

.driver-step {
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;
    gap: 9px;
    margin-top: 9px;
    padding: 12px;
    border: 1px solid #dce6f1;
    border-radius: 13px;
    background: #fff;
}

.driver-step > i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--blue);
    background: #ebf2ff;
}

.driver-step div {
    display: grid;
    gap: 3px;
}

.driver-step strong { color: var(--ink); font-size: 8px; }
.driver-step small { color: var(--muted-2); font-size: 6px; }
.driver-step b { color: var(--blue); font-size: 7px; }

.phone-frame > button {
    width: 100%;
    min-height: 44px;
    margin-top: 14px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, #16a874, #0a8d62);
    font-size: 8px;
    font-weight: 800;
}

.pod-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px;
}

.pod-row {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 11px;
    margin: 0 20px 10px;
    padding: 14px;
    border: 1px solid #e0e8f2;
    border-radius: 12px;
    background: #fff;
}

.pod-row > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--blue);
    background: #ecf2ff;
}

.pod-row p {
    display: grid;
    gap: 3px;
    margin: 0;
}

.pod-row strong { color: var(--ink); font-size: 10px; }
.pod-row p span { color: var(--muted); font-size: 8px; }
.pod-row > b { padding: 5px 8px; border-radius: 999px; color: #078258; background: #e6f8f0; font-size: 7px; }
.pod-row > b.is-pending { color: #b37106; background: #fff4da; }

.report-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px;
}

.report-filters span,
.report-filters button {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border: 1px solid #dae4ef;
    border-radius: 10px;
    color: #536b86;
    background: #fff;
    font-size: 8px;
}

.report-filters button {
    margin-left: auto;
    color: #fff;
    border-color: transparent;
    background: var(--blue);
    font-weight: 750;
}

.report-bars {
    height: 265px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 16px;
    margin: 0 20px 20px;
    padding: 25px 25px 18px;
    border: 1px solid #e2e9f2;
    border-radius: 14px;
    background:
        linear-gradient(#edf2f7 1px, transparent 1px),
        #fff;
    background-size: 100% 50px;
}

.report-bars div {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 7px;
}

.report-bars i {
    width: 72%;
    border-radius: 7px 7px 2px 2px;
    background: linear-gradient(180deg, #5960ef, #2d82ed);
    box-shadow: 0 8px 18px rgba(45, 104, 237, .15);
}

.report-bars span {
    color: #8392a6;
    font-size: 7px;
}

.intelligence-section {
    overflow: hidden;
    background: #fff;
}

.intelligence-layout {
    display: grid;
    grid-template-columns: minmax(420px, .9fr) minmax(500px, 1.1fr);
    align-items: center;
    gap: 90px;
}

.intelligence-copy > p {
    margin-top: 18px;
}

.intelligence-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.intelligence-points article {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(14, 44, 80, .04);
}

.intelligence-points article > i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    color: var(--blue);
    background: #ebf2ff;
}

.intelligence-points article div {
    display: grid;
    gap: 4px;
}

.intelligence-points strong {
    color: var(--ink-2);
    font-size: 10px;
}

.intelligence-points span {
    color: var(--muted);
    font-size: 8.5px;
    line-height: 1.5;
}

.intelligence-core {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
}

.core-ring {
    position: absolute;
    border: 1px solid rgba(36, 104, 242, .15);
    border-radius: 50%;
}

.ring-one { width: 210px; height: 210px; }
.ring-two { width: 355px; height: 355px; border-style: dashed; animation: spinRing 32s linear infinite; }
.ring-three { width: 510px; height: 510px; opacity: .6; }

@keyframes spinRing { to { transform: rotate(360deg); } }

.core-center {
    position: relative;
    z-index: 3;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6e2f1;
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 30px 80px rgba(23, 68, 120, .18), inset 0 0 0 10px #f4f8fd;
}

.core-center img {
    width: 110px;
    margin-bottom: 7px;
}

.core-center strong {
    color: var(--blue);
    font: 800 12px/1.2 Manrope, sans-serif;
    text-align: center;
}

.core-node {
    position: absolute;
    z-index: 4;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    gap: 2px;
    border: 1px solid #d9e4f0;
    border-radius: 20px;
    color: var(--blue);
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow-sm);
}

.core-node i { font-size: 17px; }
.core-node b { color: #3d5674; font-size: 8px; }
.node-one { top: 48px; left: 50%; transform: translateX(-50%); }
.node-two { top: 165px; right: 15px; }
.node-three { right: 85px; bottom: 58px; }
.node-four { left: 85px; bottom: 58px; }
.node-five { top: 165px; left: 15px; }

.roles-section {
    background: #f5f8fc;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.roles-grid article {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(17, 49, 86, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.roles-grid article::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(36, 104, 242, .06);
}

.roles-grid article:hover {
    border-color: rgba(36, 104, 242, .25);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.roles-grid article > i {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--blue);
    background: #eaf1ff;
    font-size: 17px;
}

.roles-grid article > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.roles-grid h3 {
    margin: 9px 0;
    color: var(--navy);
    font: 800 18px Manrope, sans-serif;
}

.roles-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.65;
}

.cta-section {
    padding: 30px 0 0;
    background: #fff;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 58px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 0%, rgba(35, 197, 213, .24), transparent 30%),
        linear-gradient(135deg, #071a34, #0a2f55 58%, #0b3b61);
    box-shadow: var(--shadow-lg);
}

.cta-panel > *:not(.cta-grid) {
    position: relative;
    z-index: 2;
}

.cta-panel > div:nth-child(2) > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #70dbe8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cta-panel h2 {
    margin: 14px 0 9px;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
}

.cta-panel p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
}

.cta-panel > a {
    flex: 0 0 auto;
}

.contact-section {
    padding-top: 100px;
    background: linear-gradient(180deg, #fff, #f4f8fd);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(360px, .68fr) minmax(600px, 1.32fr);
    align-items: start;
    gap: 70px;
}

.contact-copy {
    padding-top: 30px;
}

.contact-copy > p {
    margin-top: 18px;
}

.contact-methods {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.contact-methods > a,
.contact-methods > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
}

.contact-methods > a > i,
.contact-methods > div > i {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--blue);
    background: #eaf1ff;
}

.contact-methods span {
    display: grid;
    gap: 3px;
}

.contact-methods small {
    color: var(--muted-2);
    font-size: 8px;
    text-transform: uppercase;
}

.contact-methods strong {
    color: var(--ink-2);
    font-size: 10px;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.contact-socials a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #3e5673;
    background: #fff;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

.contact-socials i {
    color: var(--blue);
}

.contact-form-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.contact-form-head {
    display: grid;
    gap: 5px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
}

.contact-form-head > span {
    color: var(--blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form-head strong {
    color: var(--navy);
    font: 800 22px Manrope, sans-serif;
}

.contact-form-head small {
    color: var(--muted-2);
    font-size: 8px;
}

.contact-form-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 13px;
    border: 1px solid #fecaca;
    border-radius: 11px;
    color: #b91c1c;
    background: #fef2f2;
    font-size: 10px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 22px;
}

.contact-form > label:not(.contact-honeypot) {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: #49617e;
    font-size: 9px;
    font-weight: 750;
}

.contact-form input,
.contact-form textarea,
.phone-input {
    width: 100%;
    border: 1px solid #d8e3ef;
    border-radius: 12px;
    color: var(--ink);
    background: #f8fbff;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-form input {
    height: 48px;
    padding: 0 13px;
}

.contact-form textarea {
    min-height: 125px;
    padding: 13px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa8b9;
}

.contact-form input:focus,
.contact-form textarea:focus,
.phone-input:focus-within {
    border-color: rgba(36, 104, 242, .52);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(36, 104, 242, .08);
}

.phone-input {
    display: flex;
    align-items: center;
}

.phone-input b {
    padding-left: 13px;
    color: #4a607b;
    font-size: 10px;
}

.phone-input input {
    border: 0;
    background: transparent;
    box-shadow: none !important;
}

.form-wide {
    grid-column: 1 / 3;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.form-submit small {
    color: var(--muted-2);
    font-size: 8px;
}

.form-submit small i {
    margin-right: 5px;
    color: var(--green);
}

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

.site-footer {
    color: rgba(255, 255, 255, .64);
    background: var(--navy);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.7fr .7fr .7fr 1fr;
    gap: 70px;
    padding: 58px 0 42px;
}

.footer-brand img {
    width: 180px;
    padding: 5px 8px;
    border-radius: 10px;
    background: #fff;
}

.footer-brand p {
    max-width: 300px;
    margin: 18px 0 0;
    font-size: 10px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column > strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 10px;
}

.footer-column > a {
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
    text-decoration: none;
}

.footer-column > a:hover {
    color: #fff;
}

.footer-connect > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.footer-connect > div {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.footer-connect > div a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

.footer-connect > div a:hover {
    border-color: rgba(113, 220, 233, .5);
    color: #71dce9;
}

.footer-bottom {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 8.5px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom span {
    color: #68d3e1;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .72, .2, 1);
}

.roles-grid article.reveal-item:nth-child(2),
.roles-grid article.reveal-item:nth-child(5) {
    transition-delay: .08s;
}

.roles-grid article.reveal-item:nth-child(3),
.roles-grid article.reveal-item:nth-child(6) {
    transition-delay: .16s;
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1180px) {
    .header-inner { grid-template-columns: 180px 1fr auto; }
    .desktop-nav { gap: 18px; }
    .hero-layout { grid-template-columns: .8fr 1.2fr; gap: 34px; }
    .command-window { transform: none; }
    .floating-status-right { right: -5px; }
    .capability-rail { grid-template-columns: repeat(5, 1fr); }
    .capability-rail > span { display: none; }
    .workflow-runway { grid-template-columns: repeat(5, 1fr); gap: 10px; }
    .workflow-runway > b { display: none; }
    .product-panel { gap: 30px; padding: 38px; }
    .intelligence-layout { gap: 45px; }
    .contact-layout { gap: 40px; }
    .footer-top { gap: 40px; }
}

@media (max-width: 980px) {
    .top-signal-copy { display: none !important; }
    .desktop-nav, .header-demo { display: none; }
    .header-inner { grid-template-columns: 1fr auto; }
    .menu-toggle { display: grid; }
    .mobile-menu {
        position: fixed;
        inset: 76px 0 auto;
        z-index: 69;
        display: grid;
        gap: 2px;
        padding: 14px 20px 20px;
        border-bottom: 1px solid var(--line);
        background: rgba(255, 255, 255, .98);
        box-shadow: 0 25px 50px rgba(7, 28, 54, .12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: .2s ease;
    }
    .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
    .mobile-menu a { padding: 13px 8px; border-bottom: 1px solid var(--line-soft); color: var(--ink-2); font-size: 12px; font-weight: 700; text-decoration: none; }
    .hero { padding-top: 60px; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; padding-bottom: 10px; text-align: center; margin-inline: auto; }
    .hero-copy > p { margin-inline: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-product { width: min(100%, 760px); margin-inline: auto; padding-left: 0; }
    .capability-rail { grid-template-columns: repeat(3, 1fr); padding: 18px 22px; }
    .outcome-grid { grid-template-columns: 1fr 1fr; row-gap: 20px; }
    .outcome-grid > div:nth-child(2) { border-right: 0; }
    .section { padding: 82px 0; }
    .section-heading-split { grid-template-columns: 1fr; gap: 20px; }
    .section-heading-split > p { max-width: 650px; }
    .before-after { grid-template-columns: 1fr; }
    .compare-switch { flex-direction: row; padding: 3px; }
    .compare-switch i { transform: rotate(90deg); }
    .workflow-runway { grid-template-columns: 1fr 1fr; }
    .workflow-runway article:last-of-type { grid-column: 1 / 3; }
    .product-tabs { overflow-x: auto; grid-template-columns: repeat(5, minmax(145px, 1fr)); justify-content: flex-start; }
    .product-panel { grid-template-columns: 1fr; }
    .product-panel-copy { max-width: 650px; }
    .intelligence-layout { grid-template-columns: 1fr; }
    .intelligence-core { min-height: 540px; }
    .roles-grid { grid-template-columns: 1fr 1fr; }
    .cta-panel { padding: 42px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-copy { max-width: 700px; padding-top: 0; }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-connect { grid-column: 1 / 4; }
}

@media (max-width: 680px) {
    .site-shell { width: min(calc(100% - 26px), var(--shell)); }
    .top-signal-inner { justify-content: center; min-height: 38px; }
    .top-signal-inner > a { display: none; }
    .header-inner { min-height: 68px; }
    .brand { width: 145px; }
    .header-login { padding: 0 7px; }
    .header-login i { display: none; }
    .mobile-menu { inset-block-start: 68px; }
    .hero { padding-top: 45px; }
    .hero h1 { font-size: clamp(40px, 13vw, 58px); }
    .hero-copy > p { font-size: 13px; }
    .hero-actions { align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .hero-proof { display: grid; justify-content: center; text-align: left; }
    .hero-product { padding-bottom: 68px; }
    .command-topbar { grid-template-columns: 1fr 28px; }
    .command-search { display: none; }
    .command-body { grid-template-columns: 38px 1fr; min-height: 390px; }
    .command-content { padding: 11px; }
    .command-heading button { display: none; }
    .metric-grid { grid-template-columns: 1fr 1fr; }
    .metric-card { padding: 9px; }
    .command-panels { grid-template-columns: 1fr; }
    .activity-card { display: none; }
    .chart-area { height: 145px; }
    .chart-area svg { height: 102px; }
    .floating-status { padding: 8px; }
    .floating-status-right { display: none; }
    .floating-status-left { left: 10px; bottom: 25px; }
    .product-orbit { display: none; }
    .capability-rail { grid-template-columns: 1fr 1fr; min-height: auto; }
    .capability-rail div:last-child { grid-column: 1 / 3; justify-content: center; }
    .outcome-grid { grid-template-columns: 1fr; }
    .outcome-grid > div { min-height: 60px; padding: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .outcome-grid > div:last-child { border-bottom: 0; }
    .section { padding: 68px 0; }
    .section-heading { margin-bottom: 34px; }
    .section-heading h2, .intelligence-copy h2, .contact-copy h2 { font-size: 34px; }
    .before-card, .after-card { padding: 23px; }
    .chaos-list, .answer-grid { grid-template-columns: 1fr; }
    .workflow-runway { grid-template-columns: 1fr; }
    .workflow-runway article:last-of-type { grid-column: auto; }
    .workflow-runway p { min-height: 0; }
    .workflow-actions { align-items: stretch; }
    .workflow-actions .button { width: 100%; }
    .product-tabs { margin-inline: -1px; }
    .product-tabs button { min-width: 130px; }
    .product-stage { min-height: 0; border-radius: 20px; }
    .product-panel { min-height: 0; padding: 24px; }
    .product-panel-copy h3 { font-size: 27px; }
    .product-visual { min-height: 340px; }
    .visual-kpis { grid-template-columns: 1fr 1fr; }
    .trip-form-demo { grid-template-columns: 1fr; padding: 17px; }
    .trip-form-demo > div, .trip-form-demo button { grid-column: auto; }
    .phone-frame { transform: scale(.9); }
    .report-filters { flex-wrap: wrap; }
    .report-filters button { margin-left: 0; }
    .report-bars { gap: 5px; padding-inline: 10px; }
    .intelligence-points { grid-template-columns: 1fr; }
    .intelligence-core { min-height: 460px; transform: scale(.82); margin: -40px -50px; }
    .roles-grid { grid-template-columns: 1fr; }
    .roles-grid article { min-height: 0; }
    .cta-panel { min-height: 360px; flex-direction: column; align-items: flex-start; padding: 32px 25px; }
    .cta-panel > a { width: 100%; }
    .contact-form-card { padding: 23px; }
    .contact-form { grid-template-columns: 1fr; }
    .form-wide { grid-column: auto; }
    .form-submit { align-items: stretch; flex-direction: column; }
    .form-submit .button { width: 100%; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
    .footer-brand, .footer-connect { grid-column: 1 / 3; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

@media (max-width: 420px) {
    .header-login { display: none; }
    .hero-kicker { font-size: 8px; }
    .command-window { border-radius: 14px; }
    .metric-card span { font-size: 6px; }
    .floating-status-left { transform: scale(.9); transform-origin: left bottom; }
    .capability-rail { grid-template-columns: 1fr; }
    .capability-rail div, .capability-rail div:last-child { grid-column: auto; justify-content: flex-start; }
    .intelligence-core { transform: scale(.7); margin: -70px -90px; }
}

/* Enterprise visual refinement */
:root {
    --ink: #111827;
    --ink-2: #26364b;
    --muted: #66758a;
    --muted-2: #8a96a7;
    --line: #dfe5ec;
    --line-soft: #edf0f4;
    --surface-soft: #f7f8fa;
    --navy: #071525;
    --navy-2: #10243c;
    --blue: #1459d9;
    --blue-2: #194bb8;
    --cyan: #23869a;
    --green: #15805f;
    --shadow-sm: 0 8px 24px rgba(7, 21, 37, .055);
    --shadow-md: 0 22px 64px rgba(7, 21, 37, .095);
    --shadow-lg: 0 38px 100px rgba(7, 21, 37, .16);
}

body {
    color: var(--ink);
    background: #fff;
}

.site-header {
    background: rgba(255, 255, 255, .94);
}

.header-inner {
    min-height: 72px;
}

.desktop-nav a {
    color: #455468;
    font-size: 12px;
    font-weight: 600;
}

.header-login,
.header-demo,
.button,
.menu-toggle {
    border-radius: 8px;
}

.header-demo,
.button-primary {
    background: var(--navy);
    box-shadow: none;
}

.header-demo:hover,
.button-primary:hover {
    background: #102b49;
    box-shadow: 0 12px 28px rgba(7, 21, 37, .16);
}

.hero {
    padding-top: 92px;
    background:
        radial-gradient(circle at 74% 18%, rgba(20, 89, 217, .065), transparent 32%),
        linear-gradient(180deg, #fbfcfd 0%, #f6f8fb 76%, #fff 100%);
}

.hero-grid {
    opacity: .45;
    background-size: 64px 64px;
}

.hero-glow,
.product-orbit,
.floating-status {
    display: none;
}

.hero-layout {
    grid-template-columns: minmax(400px, .82fr) minmax(630px, 1.18fr);
    gap: 68px;
}

.hero-copy {
    padding-bottom: 72px;
}

.hero-kicker {
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 10px;
    letter-spacing: .16em;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(48px, 5.2vw, 74px);
    line-height: 1.02;
    letter-spacing: -.052em;
}

.hero h1 span {
    color: var(--blue);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero-copy > p {
    max-width: 620px;
    margin-top: 28px;
    color: #5f6f84;
    font-size: 15px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 34px;
}

.hero-proof {
    margin-top: 28px;
    color: #5d6c80;
    font-size: 11px;
}

.hero-proof i {
    color: var(--blue);
}

.hero-product {
    padding: 6px 0 76px;
}

.command-window {
    border-color: #cfd8e3;
    border-radius: 12px;
    background: #f5f7fa;
    box-shadow: 0 34px 90px rgba(7, 31, 61, .16), 0 1px 0 #fff inset;
    transform: none;
}

.command-topbar {
    min-height: 60px;
    border-color: #e2e7ed;
}

.command-mark,
.command-heading button {
    border-radius: 7px;
    background: var(--navy);
}

.command-search {
    border-radius: 6px;
    background: #f8fafc;
}

.command-user {
    border-radius: 7px;
    background: #233b59;
}

.command-body {
    min-height: 438px;
}

.command-sidebar {
    background: var(--navy);
}

.command-sidebar span,
.command-sidebar .is-active {
    border-radius: 6px;
}

.command-sidebar .is-active {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    box-shadow: inset 2px 0 #4d8bf1;
}

.command-heading > div > span {
    color: var(--blue);
    letter-spacing: .13em;
}

.command-heading h2 {
    color: #152c48;
    font-size: 15px;
}

.metric-card,
.analytics-card,
.activity-card {
    border-color: #e0e6ed;
    border-radius: 8px;
    box-shadow: none;
}

.metric-card {
    padding: 12px 10px;
}

.metric-card > i {
    border-radius: 6px;
    color: #2e527d !important;
    background: #eef2f6 !important;
}

.metric-card span {
    color: #68788c;
}

.metric-card strong {
    color: #142d4a;
}

.metric-card small b,
.activity-pulse {
    color: var(--blue);
}

.activity-pulse {
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(20, 89, 217, .1);
}

.activity-feed > div > i {
    border-radius: 6px;
    color: #2e527d;
    background: #eef2f6;
}

.chart-line {
    stroke: var(--blue);
    filter: none;
}

.chart-area circle {
    stroke: var(--blue);
}

.capability-rail {
    min-height: 72px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -6px 30px rgba(7, 31, 61, .045);
}

.capability-rail > span {
    color: #6a788a;
    letter-spacing: .12em;
}

.capability-rail div {
    color: #4d5e73;
    font-size: 10.5px;
}

.capability-rail i {
    color: #466887;
}

.outcome-strip {
    padding: 32px 0;
}

.outcome-grid strong {
    color: #14283f;
    font-size: 28px;
}

.outcome-grid span {
    color: #69778a;
    font-size: 11px;
}

.section {
    padding-block: 118px;
}

.section-kicker {
    color: var(--blue);
    letter-spacing: .16em;
}

.section-heading h2,
.intelligence-copy h2,
.contact-copy h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
}

.section-heading > p,
.section-heading-split > p,
.intelligence-copy > p,
.contact-copy > p {
    color: #647387;
    font-size: 14px;
    line-height: 1.85;
}

.before-after {
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #dce3eb;
    border-radius: 12px;
    background: #dce3eb;
}

.before-card,
.after-card {
    min-height: 430px;
    padding: 42px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.before-card {
    background: #fafbfc;
}

.after-card {
    background: #fff;
}

.compare-label,
.after-card .compare-label {
    padding: 0;
    border-radius: 0;
    color: #6c7889;
    background: transparent;
    font-size: 9px;
    letter-spacing: .15em;
}

.after-card .compare-label {
    color: var(--blue);
}

.before-card h3,
.after-card h3 {
    max-width: 500px;
    margin: 20px 0 30px;
    font-size: 27px;
    line-height: 1.25;
}

.chaos-list {
    grid-template-columns: 1fr;
}

.chaos-list span {
    min-height: 44px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #e6e9ed;
    border-radius: 0;
    color: #687587;
    background: transparent;
    font-size: 11px;
}

.chaos-list i {
    width: 22px;
    color: #7c8796;
}

.chaos-person {
    border-color: #e3e7ec;
}

.chaos-person > span {
    border-radius: 8px;
    color: #46596f;
    background: #edf1f5;
}

.answer-grid {
    gap: 0;
}

.answer-grid > div {
    padding: 16px 10px 16px 0;
    border: 0;
    border-bottom: 1px solid #e5e9ee;
    border-radius: 0;
    background: transparent;
}

.answer-grid i {
    border-radius: 7px;
    color: var(--blue);
    background: #eef3fa;
}

.answer-grid span {
    color: #5a6b7f;
    letter-spacing: .08em;
}

.workflow-section {
    background: var(--navy);
}

.workflow-section::before {
    opacity: .1;
}

.workflow-glow {
    opacity: .35;
}

.workflow-runway {
    gap: 0;
    border-block: 1px solid rgba(255, 255, 255, .13);
}

.workflow-runway article {
    min-height: 285px;
    padding: 30px 22px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.workflow-runway article:last-of-type {
    border-right: 0;
}

.workflow-runway article:hover {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);
    transform: none;
}

.workflow-runway article > i {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    color: #dfe9f7;
    background: transparent;
    box-shadow: none;
}

.workflow-runway h3 {
    margin-top: 25px;
    font-size: 16px;
}

.workflow-runway p {
    color: rgba(255, 255, 255, .58);
    font-size: 10.5px;
}

.workflow-runway small {
    color: #81a8d9;
}

.control-section {
    background: #f7f8fa;
}

.product-tabs {
    gap: 0;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
}

.product-tabs button {
    min-height: 56px;
    border-right: 1px solid var(--line);
    border-radius: 0;
    color: #657387;
    font-size: 11px;
}

.product-tabs button:last-child {
    border-right: 0;
}

.product-tabs button i {
    color: #728196;
}

.product-tabs button.is-active {
    color: #fff;
    border-radius: 7px;
    background: var(--navy);
    box-shadow: none;
}

.product-tabs button.is-active i {
    color: #fff;
}

.product-stage {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.product-panel {
    padding: 56px;
}

.product-panel-copy > span {
    letter-spacing: .15em;
}

.product-panel-copy h3 {
    font-size: 34px;
}

.product-panel-copy > p {
    font-size: 12.5px;
}

.product-panel-copy li {
    font-size: 11px;
}

.product-panel-copy li i {
    color: var(--blue);
}

.product-visual {
    border-radius: 9px;
    background: #f5f6f8;
    box-shadow: 0 20px 55px rgba(7, 21, 37, .11);
}

.visual-toolbar {
    background: #fbfcfd;
}

.visual-toolbar i {
    background: #cbd3dd !important;
}

.visual-kpis div,
.pod-summary div,
.pod-row,
.trip-form-demo label strong,
.trip-form-demo > div {
    border-radius: 7px;
}

.visual-chart {
    border-radius: 8px;
}

.visual-chart path {
    stroke: var(--blue);
}

.trip-form-demo button,
.phone-frame > button {
    border-radius: 7px;
    background: var(--navy);
}

.driver-visual {
    background: #f2f4f7;
}

.phone-frame {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(7, 21, 37, .17);
}

.phone-route {
    border-radius: 9px;
    background: var(--navy);
}

.driver-step {
    border-radius: 8px;
}

.driver-step > i {
    border-radius: 6px;
    color: #365777;
    background: #eef2f6;
}

.system-map {
    overflow: hidden;
    border: 1px solid #d8e0e8;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.system-map-head {
    display: grid;
    gap: 8px;
    padding: 28px 30px;
    border-bottom: 1px solid #e4e9ef;
    background: var(--navy);
}

.system-map-head span {
    color: #81a8d9;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.system-map-head strong {
    max-width: 420px;
    color: #fff;
    font: 700 22px/1.35 Manrope, sans-serif;
}

.system-map-flow {
    padding: 10px 30px;
}

.system-map-flow article {
    display: grid;
    grid-template-columns: 28px 38px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    border-bottom: 1px solid #e7ebf0;
}

.system-map-flow article:last-child {
    border-bottom: 0;
}

.system-map-flow article > span {
    color: #98a3b2;
    font-size: 9px;
    font-weight: 700;
}

.system-map-flow article > i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid #dce3eb;
    border-radius: 7px;
    color: var(--blue);
    background: #f7f9fb;
}

.system-map-flow article div {
    display: grid;
    gap: 4px;
}

.system-map-flow strong {
    color: var(--ink-2);
    font-size: 12px;
}

.system-map-flow small {
    color: var(--muted);
    font-size: 9px;
}

.system-map-foundation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 1px;
    background: #e1e6ed;
}

.system-map-foundation span {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 16px;
    color: #52647a;
    background: #f7f8fa;
    font-size: 9px;
    font-weight: 650;
}

.system-map-foundation i {
    color: var(--blue);
}

.intelligence-points article,
.roles-grid article {
    border-radius: 9px;
    box-shadow: none;
}

.intelligence-points article > i,
.roles-grid article > i {
    border-radius: 7px;
    color: #365777;
    background: #eef2f6;
}

.roles-section {
    background: #fff;
}

.roles-grid {
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--line);
}

.roles-grid article {
    min-height: 245px;
    border: 0;
    border-radius: 0;
}

.roles-grid article::after {
    display: none;
}

.roles-grid article:hover {
    border-color: transparent;
    box-shadow: none;
    background: #f9fafb;
    transform: none;
}

.cta-panel {
    border-radius: 12px;
    background: var(--navy);
}

.cta-grid {
    opacity: .12;
}

.contact-section {
    background: #f7f8fa;
}

.contact-methods > a,
.contact-methods > div,
.contact-socials a,
.contact-form-card {
    border-radius: 8px;
}

.contact-methods > a > i,
.contact-methods > div > i {
    border-radius: 6px;
    color: #365777;
    background: #eef2f6;
}

.contact-form-card {
    box-shadow: var(--shadow-sm);
}

.contact-form input,
.contact-form textarea,
.phone-input {
    border-radius: 7px;
    background: #fafbfc;
}

.footer-brand img {
    border-radius: 6px;
}

.footer-connect > div a {
    border-radius: 6px;
}

@media (max-width: 1180px) {
    .hero-layout {
        grid-template-columns: .82fr 1.18fr;
        gap: 42px;
    }
}

@media (max-width: 980px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .before-card,
    .after-card {
        min-height: 0;
    }

    .workflow-runway {
        gap: 1px;
        background: rgba(255, 255, 255, .12);
    }

    .workflow-runway article {
        border: 0;
        background: var(--navy);
    }
}

@media (max-width: 680px) {
    .hero {
        padding-top: 58px;
    }

    .section {
        padding-block: 78px;
    }

    .before-card,
    .after-card,
    .product-panel {
        padding: 28px;
    }

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

    .system-map-foundation {
        grid-template-columns: 1fr;
    }

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

/* AI techno-blend identity */
:root {
    --tech-bg: #020718;
    --tech-bg-2: #061126;
    --tech-panel: rgba(10, 23, 48, .78);
    --tech-line: rgba(91, 197, 255, .18);
    --tech-cyan: #43e6ff;
    --tech-blue: #3182ff;
    --tech-violet: #bd4cff;
    --tech-text: #eaf6ff;
    --tech-muted: #8da4bd;
}

body {
    color: var(--tech-text);
    background: var(--tech-bg);
}

.site-header,
.site-header.is-scrolled {
    border-bottom-color: rgba(83, 169, 236, .14);
    background: rgba(2, 7, 24, .82);
    box-shadow: none;
    backdrop-filter: blur(22px);
}

.brand img {
    filter: brightness(0) invert(1);
}

.desktop-nav a,
.header-login {
    color: rgba(224, 241, 255, .7);
}

.desktop-nav a:hover,
.header-login:hover {
    color: var(--tech-cyan);
}

.desktop-nav a::after {
    background: linear-gradient(90deg, var(--tech-cyan), var(--tech-violet));
}

.header-demo,
.button-primary {
    color: #fff;
    background: linear-gradient(105deg, #176ee8, #6952ef 58%, #a83df0);
    box-shadow: 0 12px 34px rgba(100, 74, 241, .24);
}

.header-demo:hover,
.button-primary:hover {
    background: linear-gradient(105deg, #2580f5, #765ef7 58%, #ba4cff);
    box-shadow: 0 16px 42px rgba(117, 73, 246, .34);
}

.menu-toggle {
    border-color: rgba(94, 179, 242, .2);
    background: rgba(255, 255, 255, .04);
}

.menu-toggle > span:not(.sr-only) {
    background: #dff5ff;
}

.hero {
    min-height: 780px;
    padding-top: 76px;
    background:
        radial-gradient(circle at 75% 44%, rgba(167, 48, 255, .17), transparent 29%),
        radial-gradient(circle at 66% 36%, rgba(0, 205, 255, .13), transparent 28%),
        radial-gradient(circle at 14% 8%, rgba(0, 146, 208, .17), transparent 32%),
        linear-gradient(135deg, #020718 0%, #03112a 52%, #06142c 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0 49.85%, rgba(69, 211, 255, .06) 50%, transparent 50.15%),
        linear-gradient(transparent 0 49.85%, rgba(69, 211, 255, .045) 50%, transparent 50.15%);
    background-size: 140px 140px;
    mask-image: radial-gradient(circle at 72% 45%, #000, transparent 62%);
}

.hero-grid {
    opacity: .22;
    background-image:
        linear-gradient(rgba(73, 207, 255, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(73, 207, 255, .12) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, transparent 5%, #000 50%, transparent 100%);
}

.hero-layout {
    grid-template-columns: minmax(420px, .82fr) minmax(600px, 1.18fr);
    min-height: 640px;
    gap: 42px;
}

.hero-copy {
    padding-bottom: 25px;
}

.hero-kicker {
    color: var(--tech-cyan);
    text-shadow: 0 0 22px rgba(67, 230, 255, .35);
}

.hero h1 {
    color: #f5fbff;
    text-shadow: 0 8px 50px rgba(0, 0, 0, .2);
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(90deg, #63eaff 5%, #72a7ff 45%, #d36aff 96%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 24px rgba(116, 122, 255, .18));
}

.hero-copy > p {
    color: #9db1c6;
}

.button-ghost {
    color: #d8efff;
    border-color: rgba(102, 198, 255, .25);
    background: rgba(17, 43, 75, .42);
    backdrop-filter: blur(12px);
}

.button-ghost:hover {
    border-color: rgba(67, 230, 255, .55);
    box-shadow: 0 0 28px rgba(67, 230, 255, .08);
}

.hero-proof {
    color: #8099b3;
}

.hero-proof i {
    color: var(--tech-cyan);
    text-shadow: 0 0 12px rgba(67, 230, 255, .6);
}

.hero-product {
    min-height: 620px;
    display: grid;
    place-items: center;
    padding: 0;
}

.ai-stage {
    position: relative;
    width: min(100%, 650px);
    aspect-ratio: 1 / .94;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.ai-stage::before {
    content: "";
    position: absolute;
    width: 58%;
    height: 25%;
    bottom: 11%;
    left: 24%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(216, 53, 255, .42), rgba(86, 54, 255, .14) 40%, transparent 72%);
    filter: blur(22px);
    transform: rotate(-5deg);
    z-index: -1;
}

.ai-stage::after {
    content: "";
    position: absolute;
    width: 48%;
    height: 48%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 121, 235, .18), transparent 66%);
    box-shadow: 0 0 100px rgba(31, 115, 255, .13);
    z-index: -2;
}

.ai-grid-plane {
    position: absolute;
    width: 78%;
    height: 37%;
    left: 12%;
    bottom: 3%;
    opacity: .28;
    background-image:
        linear-gradient(rgba(59, 211, 255, .28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 211, 255, .28) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to top, #000, transparent 84%);
    transform: perspective(350px) rotateX(64deg);
    transform-origin: bottom;
}

.ai-stars {
    position: absolute;
    inset: 4% 7%;
}

.ai-stars i {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--tech-cyan);
    box-shadow: 0 0 13px 3px rgba(67, 230, 255, .65);
    animation: techTwinkle 3s ease-in-out infinite;
}

.ai-stars i:nth-child(1) { left: 8%; top: 26%; }
.ai-stars i:nth-child(2) { left: 17%; top: 62%; animation-delay: .6s; }
.ai-stars i:nth-child(3) { left: 35%; top: 11%; animation-delay: 1.2s; }
.ai-stars i:nth-child(4) { right: 8%; top: 21%; animation-delay: .3s; }
.ai-stars i:nth-child(5) { right: 14%; top: 67%; animation-delay: 1.7s; }
.ai-stars i:nth-child(6) { right: 34%; bottom: 8%; animation-delay: .9s; }
.ai-stars i:nth-child(7) { left: 44%; bottom: 2%; animation-delay: 2.1s; }
.ai-stars i:nth-child(8) { right: 2%; top: 45%; animation-delay: 1.4s; }

@keyframes techTwinkle {
    0%, 100% { opacity: .3; transform: scale(.65); }
    50% { opacity: 1; transform: scale(1.35); }
}

.ai-orbit {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ai-orbit-primary {
    width: 58%;
    height: 58%;
    border: 3px solid rgba(190, 75, 255, .92);
    box-shadow:
        0 0 10px #cf4eff,
        0 0 28px rgba(207, 78, 255, .8),
        inset 0 0 22px rgba(207, 78, 255, .35);
    transform: rotate(-12deg);
    animation: orbitPulse 4.5s ease-in-out infinite;
}

.ai-orbit-secondary {
    width: 70%;
    height: 37%;
    border: 2px solid rgba(72, 230, 255, .88);
    box-shadow: 0 0 12px rgba(72, 230, 255, .8), 0 0 28px rgba(53, 114, 255, .4);
    transform: rotate(25deg);
    animation: orbitCounter 12s linear infinite;
}

.ai-orbit-tertiary {
    width: 75%;
    height: 30%;
    border: 2px solid rgba(229, 72, 255, .88);
    box-shadow: 0 0 14px rgba(224, 65, 255, .72);
    transform: rotate(-28deg);
    animation: orbitForward 14s linear infinite;
}

.ai-orbit i {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px #fff, 0 0 20px var(--tech-cyan), 0 0 34px var(--tech-cyan);
}

.ai-orbit-primary i:nth-child(1) { left: -5px; top: 48%; }
.ai-orbit-primary i:nth-child(2) { right: 9%; top: 12%; background: #dc70ff; box-shadow: 0 0 8px #fff, 0 0 24px #dc70ff; }
.ai-orbit-primary i:nth-child(3) { right: 18%; bottom: 5%; }
.ai-orbit-secondary i:nth-child(1) { left: 17%; top: 5%; }
.ai-orbit-secondary i:nth-child(2) { right: 12%; bottom: 4%; background: #d95eff; box-shadow: 0 0 8px #fff, 0 0 25px #d95eff; }

@keyframes orbitPulse {
    0%, 100% { transform: rotate(-12deg) scale(1); }
    50% { transform: rotate(-10deg) scale(1.025); }
}

@keyframes orbitCounter {
    from { transform: rotate(25deg); }
    to { transform: rotate(385deg); }
}

@keyframes orbitForward {
    from { transform: rotate(-28deg); }
    to { transform: rotate(-388deg); }
}

.ai-core {
    position: relative;
    z-index: 5;
    width: 235px;
    height: 235px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(83, 216, 255, .32);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 40%, rgba(44, 92, 174, .38), transparent 55%),
        rgba(4, 15, 39, .72);
    box-shadow:
        0 0 0 12px rgba(36, 101, 181, .04),
        0 0 70px rgba(40, 124, 255, .27),
        inset 0 0 45px rgba(50, 153, 255, .13);
    backdrop-filter: blur(12px);
}

.ai-core > span {
    color: #83dff5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .28em;
}

.ai-core > strong {
    color: transparent;
    background: linear-gradient(180deg, #b8f7ff, #6dcbff 48%, #b56aff);
    -webkit-background-clip: text;
    background-clip: text;
    font: 400 92px/.92 Manrope, sans-serif;
    letter-spacing: -.09em;
    filter: drop-shadow(0 0 16px rgba(111, 218, 255, .3));
}

.ai-core > small {
    color: #8da9c4;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.ai-core > b {
    margin-top: 10px;
    color: #53dfd8;
    font-size: 7px;
    font-weight: 650;
}

.ai-module {
    position: absolute;
    z-index: 8;
    min-width: 162px;
    min-height: 55px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid rgba(82, 186, 255, .21);
    border-radius: 8px;
    color: #dff5ff;
    background: linear-gradient(135deg, rgba(13, 31, 66, .9), rgba(13, 22, 53, .76));
    box-shadow: 0 12px 34px rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .03);
    backdrop-filter: blur(13px);
}

.ai-module::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 48px;
    background: linear-gradient(90deg, rgba(68, 221, 255, .65), transparent);
}

.ai-module > i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(73, 219, 255, .25);
    border-radius: 6px;
    color: var(--tech-cyan);
    background: rgba(49, 139, 226, .1);
    text-shadow: 0 0 13px rgba(67, 230, 255, .5);
}

.ai-module div {
    display: grid;
    gap: 3px;
}

.ai-module span {
    color: #6fdff1;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ai-module strong {
    color: #cfdfed;
    font-size: 8.5px;
    font-weight: 600;
}

.ai-module-plan { left: 0; top: 22%; }
.ai-module-plan::after { left: 100%; top: 50%; }
.ai-module-track { right: -2%; top: 18%; }
.ai-module-track::after { right: 100%; top: 50%; transform: rotate(180deg); }
.ai-module-pod { left: 3%; bottom: 18%; }
.ai-module-pod::after { left: 100%; top: 50%; }
.ai-module-insight { right: 0; bottom: 16%; }
.ai-module-insight::after { right: 100%; top: 50%; transform: rotate(180deg); }

.ai-status-line {
    position: absolute;
    left: 50%;
    bottom: 4%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(72, 212, 255, .17);
    border-radius: 999px;
    color: #7892ad;
    background: rgba(4, 15, 37, .76);
    font-size: 7px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.ai-status-line i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #35e0c1;
    box-shadow: 0 0 11px #35e0c1;
}

.ai-status-line b {
    color: #50dacb;
}

.ai-scan {
    position: absolute;
    display: grid;
    gap: 5px;
    opacity: .5;
}

.ai-scan span {
    height: 1px;
    background: linear-gradient(90deg, var(--tech-cyan), transparent);
}

.ai-scan-left { width: 110px; left: 2%; top: 7%; }
.ai-scan-right { width: 95px; right: 1%; top: 5%; }
.ai-scan span:nth-child(2) { width: 68%; }
.ai-scan span:nth-child(3) { width: 42%; }
.ai-scan span:nth-child(4) { width: 76%; }

.capability-rail {
    border-color: rgba(75, 178, 245, .16);
    background: rgba(5, 16, 39, .83);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
}

.capability-rail > span,
.capability-rail div {
    color: #879db5;
}

.capability-rail i {
    color: var(--tech-cyan);
    text-shadow: 0 0 12px rgba(67, 230, 255, .35);
}

.outcome-strip {
    border-color: rgba(86, 177, 240, .12);
    background: #050d20;
}

.outcome-grid > div {
    border-color: rgba(86, 177, 240, .12);
}

.outcome-grid strong {
    color: #e9f7ff;
}

.outcome-grid span {
    color: #778fa8;
}

.platform-section,
.roles-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(32, 128, 231, .08), transparent 26%),
        #071126;
}

.section-heading h2,
.intelligence-copy h2,
.contact-copy h2 {
    color: #edf8ff;
}

.section-heading > p,
.section-heading-split > p,
.intelligence-copy > p,
.contact-copy > p {
    color: #8da3ba;
}

.section-kicker {
    color: var(--tech-cyan);
}

.before-after {
    border-color: rgba(88, 178, 242, .16);
    background: rgba(88, 178, 242, .16);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .17);
}

.before-card,
.after-card {
    background: rgba(8, 20, 44, .86);
}

.after-card {
    background:
        radial-gradient(circle at 92% 5%, rgba(145, 61, 248, .13), transparent 28%),
        rgba(9, 24, 51, .92);
}

.compare-label,
.after-card .compare-label {
    color: #6f8ba6;
}

.after-card .compare-label {
    color: var(--tech-cyan);
}

.before-card h3,
.after-card h3,
.chaos-person strong,
.answer-grid strong {
    color: #e5f3fc;
}

.chaos-list span,
.answer-grid > div,
.chaos-person {
    border-color: rgba(102, 169, 218, .12);
}

.chaos-list span,
.chaos-person small,
.answer-grid span {
    color: #7f96ad;
}

.chaos-person > span,
.answer-grid i {
    color: #6acfe8;
    background: rgba(54, 133, 199, .11);
}

.workflow-section {
    background:
        radial-gradient(circle at 82% 24%, rgba(166, 56, 244, .12), transparent 26%),
        #03091a;
}

.workflow-runway article > i {
    color: var(--tech-cyan);
    border-color: rgba(67, 230, 255, .25);
    box-shadow: 0 0 24px rgba(67, 230, 255, .07);
}

.workflow-runway small {
    color: #70cfe8;
}

.control-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(46, 108, 225, .1), transparent 30%),
        #050d20;
}

.product-tabs {
    border-color: rgba(91, 180, 244, .17);
    background: #09152b;
}

.product-tabs button {
    border-color: rgba(91, 180, 244, .13);
    color: #7990a9;
}

.product-tabs button i {
    color: #5d7794;
}

.product-tabs button.is-active {
    color: #effaff;
    background: linear-gradient(105deg, #0e5bd2, #6b42d9);
}

.product-stage {
    border-color: rgba(94, 181, 244, .17);
    background: #09152b;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .25);
}

.product-panel-copy h3 {
    color: #edf8ff;
}

.product-panel-copy > p,
.product-panel-copy li {
    color: #8fa4bb;
}

.product-panel-copy li i,
.product-panel-copy > a {
    color: var(--tech-cyan);
}

.intelligence-section {
    background:
        radial-gradient(circle at 75% 50%, rgba(159, 54, 239, .1), transparent 27%),
        #071126;
}

.intelligence-points article {
    border-color: rgba(92, 179, 243, .14);
    background: rgba(8, 22, 47, .72);
}

.intelligence-points article > i {
    color: var(--tech-cyan);
    background: rgba(46, 128, 199, .11);
}

.intelligence-points strong {
    color: #dcecf7;
}

.intelligence-points span {
    color: #7f95ac;
}

.system-map {
    border-color: rgba(90, 183, 246, .18);
    background: rgba(7, 19, 42, .86);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

.system-map-head {
    border-color: rgba(84, 179, 242, .15);
    background: linear-gradient(120deg, #0a1c3b, #101842 65%, #29134b);
}

.system-map-head span {
    color: var(--tech-cyan);
}

.system-map-flow article {
    border-color: rgba(90, 175, 236, .12);
}

.system-map-flow article > i {
    color: var(--tech-cyan);
    border-color: rgba(65, 202, 241, .2);
    background: rgba(36, 112, 180, .1);
}

.system-map-flow strong {
    color: #dcecf7;
}

.system-map-flow small,
.system-map-flow article > span {
    color: #738ba3;
}

.system-map-foundation {
    background: rgba(93, 180, 240, .13);
}

.system-map-foundation span {
    color: #7991a9;
    background: #08162d;
}

.system-map-foundation i {
    color: var(--tech-cyan);
}

.roles-grid {
    border-color: rgba(88, 177, 239, .16);
    background: rgba(88, 177, 239, .16);
}

.roles-grid article,
.roles-grid article:hover {
    background: rgba(8, 21, 45, .9);
}

.roles-grid article:hover {
    background: rgba(10, 27, 57, .95);
}

.roles-grid article > i {
    color: var(--tech-cyan);
    background: rgba(44, 127, 197, .11);
}

.roles-grid article > span {
    color: #73d9ed;
}

.roles-grid h3 {
    color: #e2f1fa;
}

.roles-grid p {
    color: #8096ad;
}

.cta-section {
    background: #071126;
}

.cta-panel {
    border: 1px solid rgba(123, 103, 255, .28);
    background:
        radial-gradient(circle at 80% 30%, rgba(208, 61, 255, .2), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(45, 190, 255, .14), transparent 26%),
        linear-gradient(125deg, #081a38, #111642 60%, #2a1248);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .04);
}

.contact-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 158, 224, .1), transparent 25%),
        #03091a;
}

.contact-methods > a,
.contact-methods > div,
.contact-socials a {
    border-color: rgba(85, 180, 243, .16);
    color: #b8ccdc;
    background: rgba(10, 24, 50, .75);
}

.contact-methods > a > i,
.contact-methods > div > i {
    color: var(--tech-cyan);
    background: rgba(42, 132, 201, .1);
}

.contact-methods small,
.contact-socials a {
    color: #7590a8;
}

.contact-methods strong {
    color: #dcecf7;
}

.contact-socials i {
    color: var(--tech-cyan);
}

.contact-form-card {
    border-color: rgba(89, 184, 245, .18);
    background: rgba(8, 20, 43, .88);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
    backdrop-filter: blur(16px);
}

.contact-form-head {
    border-color: rgba(92, 176, 235, .13);
}

.contact-form-head > span {
    color: var(--tech-cyan);
}

.contact-form-head strong {
    color: #e7f5fe;
}

.contact-form label > span {
    color: #93a9bd;
}

.contact-form input,
.contact-form textarea,
.phone-input {
    color: #e6f4fd;
    border-color: rgba(97, 174, 229, .18);
    background: rgba(3, 13, 31, .68);
}

.contact-form input:focus,
.contact-form textarea:focus,
.phone-input:focus-within {
    border-color: rgba(67, 230, 255, .58);
    background: rgba(3, 13, 31, .9);
    box-shadow: 0 0 0 4px rgba(67, 230, 255, .07), 0 0 24px rgba(67, 230, 255, .05);
}

.phone-input b {
    color: #90a8bd;
}

.site-footer {
    border-top: 1px solid rgba(84, 174, 235, .12);
    background: #010613;
}

@media (max-width: 980px) {
    .mobile-menu {
        border-color: rgba(89, 181, 242, .17);
        background: rgba(3, 10, 27, .98);
    }

    .mobile-menu a {
        color: #c7deed;
        border-color: rgba(89, 181, 242, .12);
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .ai-stage {
        width: min(100%, 680px);
    }
}

@media (max-width: 680px) {
    .hero {
        min-height: auto;
        padding-top: 60px;
    }

    .hero-product {
        min-height: 510px;
        margin-inline: -20px;
    }

    .ai-stage {
        transform: scale(.86);
    }

    .ai-module {
        min-width: 142px;
    }

    .ai-module strong {
        font-size: 7.5px;
    }

    .ai-core {
        width: 200px;
        height: 200px;
    }

    .ai-core > strong {
        font-size: 76px;
    }

    .capability-rail {
        background: rgba(5, 16, 39, .94);
    }
}

@media (max-width: 430px) {
    .ai-stage {
        width: 570px;
        max-width: none;
        transform: scale(.66);
    }

    .hero-product {
        min-height: 400px;
        margin: -35px -100px 0;
    }
}

/* Bright elevated technology surface */
body {
    color: #16243a;
    background: #fff;
}

.site-header,
.site-header.is-scrolled {
    border-bottom: 1px solid #e8edf4;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(31, 57, 91, .055);
    backdrop-filter: blur(20px);
}

.header-inner {
    min-height: 58px;
}

.brand {
    position: relative;
    width: 182px;
    height: 50px;
    overflow: hidden;
}

.brand img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 182px;
    max-height: none;
    filter: none;
    transform: translateY(-50%) scale(1.08);
    transform-origin: center;
}

.desktop-nav a,
.header-login {
    color: #526176;
}

.desktop-nav a:hover,
.header-login:hover {
    color: #345fe6;
}

.desktop-nav a::after {
    background: linear-gradient(90deg, #2c7df2, #8d4cf1);
}

.menu-toggle {
    border-color: #dfe6ef;
    background: #fff;
}

.menu-toggle > span:not(.sr-only) {
    background: #263b57;
}

.hero {
    min-height: 610px;
    padding-top: 0;
    background:
        radial-gradient(circle at 76% 39%, rgba(152, 74, 255, .11), transparent 26%),
        radial-gradient(circle at 67% 33%, rgba(49, 199, 255, .12), transparent 27%),
        radial-gradient(circle at 8% 0%, rgba(45, 151, 246, .08), transparent 25%),
        #fff;
}

.hero::before {
    opacity: .5;
    background:
        linear-gradient(90deg, transparent 0 49.85%, rgba(50, 119, 210, .07) 50%, transparent 50.15%),
        linear-gradient(transparent 0 49.85%, rgba(50, 119, 210, .055) 50%, transparent 50.15%);
    background-size: 120px 120px;
}

.hero-grid {
    opacity: .3;
    background-image:
        linear-gradient(rgba(58, 138, 223, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 138, 223, .09) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-layout {
    min-height: 540px;
    align-items: start;
    padding-top: 4px;
}

.hero-copy {
    padding: 22px 0 20px;
}

.hero-kicker {
    color: #3976de;
    text-shadow: none;
}

.hero h1 {
    color: #10233e;
    text-shadow: none;
}

.hero h1 span {
    background: linear-gradient(90deg, #237ee8 5%, #586ce9 48%, #a648eb 96%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none;
}

.hero-copy > p {
    color: #65758c;
}

.button-ghost {
    color: #334a67;
    border-color: #dce5ef;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 10px 26px rgba(35, 67, 108, .07);
}

.button-ghost:hover {
    border-color: rgba(70, 106, 230, .35);
    box-shadow: 0 15px 34px rgba(51, 81, 132, .1);
}

.hero-proof {
    color: #708097;
}

.hero-proof i {
    color: #397be4;
    text-shadow: none;
}

.hero-product {
    min-height: 535px;
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bubbles i {
    position: absolute;
    border: 1px solid rgba(92, 127, 238, .16);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95), rgba(127, 214, 255, .22) 40%, rgba(155, 82, 240, .11) 72%, transparent);
    box-shadow: 0 18px 45px rgba(64, 92, 163, .09), inset 0 0 16px rgba(255, 255, 255, .8);
    backdrop-filter: blur(2px);
    animation: bubbleFloat 8s ease-in-out infinite;
}

.hero-bubbles i:nth-child(1) { width: 70px; height: 70px; left: 3%; top: 19%; }
.hero-bubbles i:nth-child(2) { width: 28px; height: 28px; left: 16%; top: 9%; animation-delay: 1.3s; }
.hero-bubbles i:nth-child(3) { width: 44px; height: 44px; left: 42%; bottom: 14%; animation-delay: 2.1s; }
.hero-bubbles i:nth-child(4) { width: 92px; height: 92px; right: 3%; top: 13%; animation-delay: .8s; }
.hero-bubbles i:nth-child(5) { width: 36px; height: 36px; right: 13%; bottom: 13%; animation-delay: 2.8s; }
.hero-bubbles i:nth-child(6) { width: 20px; height: 20px; left: 52%; top: 8%; animation-delay: 1.8s; }
.hero-bubbles i:nth-child(7) { width: 55px; height: 55px; left: 28%; bottom: 4%; animation-delay: 3.4s; }
.hero-bubbles i:nth-child(8) { width: 24px; height: 24px; right: 38%; top: 16%; animation-delay: .4s; }

@keyframes bubbleFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(8px, -16px, 0); }
}

.ai-stage::before {
    background: radial-gradient(ellipse, rgba(201, 72, 255, .24), rgba(94, 96, 255, .08) 42%, transparent 72%);
    filter: blur(25px);
}

.ai-stage::after {
    background: radial-gradient(circle, rgba(38, 137, 238, .1), transparent 66%);
    box-shadow: 0 0 90px rgba(68, 132, 241, .09);
}

.ai-grid-plane {
    opacity: .18;
    background-image:
        linear-gradient(rgba(40, 139, 225, .24) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 139, 225, .24) 1px, transparent 1px);
}

.ai-scan span {
    background: linear-gradient(90deg, #338ee9, transparent);
}

.ai-stars i {
    background: #3aa8ef;
    box-shadow: 0 0 10px 2px rgba(61, 157, 232, .4);
}

.ai-core {
    border-color: rgba(81, 136, 227, .25);
    background:
        radial-gradient(circle at 50% 35%, rgba(137, 204, 255, .2), transparent 52%),
        rgba(255, 255, 255, .78);
    box-shadow:
        0 0 0 12px rgba(76, 122, 229, .035),
        0 24px 75px rgba(68, 86, 156, .15),
        inset 0 0 38px rgba(97, 156, 235, .1);
}

.ai-core > span {
    color: #3478d8;
}

.ai-core > strong {
    background: linear-gradient(180deg, #338ae6, #5c6deb 52%, #a24be5);
    -webkit-background-clip: text;
    background-clip: text;
    filter: none;
}

.ai-core > small {
    color: #627792;
}

.ai-core > b {
    color: #218e88;
}

.ai-module {
    border-color: rgba(80, 126, 218, .18);
    color: #253f61;
    background: rgba(255, 255, 255, .87);
    box-shadow: 0 18px 48px rgba(49, 75, 126, .12), inset 0 1px rgba(255, 255, 255, .9);
}

.ai-module::after {
    background: linear-gradient(90deg, rgba(74, 126, 226, .48), transparent);
}

.ai-module > i {
    border-color: rgba(62, 133, 222, .18);
    color: #397be4;
    background: #eef5ff;
    text-shadow: none;
}

.ai-module span {
    color: #477dda;
}

.ai-module strong {
    color: #4f6075;
}

.ai-status-line {
    border-color: rgba(73, 126, 217, .17);
    color: #71839a;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 12px 30px rgba(54, 78, 120, .08);
}

.ai-status-line b {
    color: #278a85;
}

.capability-rail {
    border-color: #e0e8f1;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 -12px 38px rgba(40, 68, 107, .06);
}

.capability-rail > span,
.capability-rail div {
    color: #65758a;
}

.capability-rail i {
    color: #4779dd;
    text-shadow: none;
}

.outcome-strip {
    border-color: #e9edf3;
    background: #fff;
}

.outcome-grid > div {
    border-color: #e4e9f0;
}

.outcome-grid strong {
    color: #172b47;
}

.outcome-grid span {
    color: #738197;
}

.platform-section,
.roles-section,
.intelligence-section,
.contact-section,
.cta-section {
    background: #fff;
}

.platform-section,
.intelligence-section {
    background:
        radial-gradient(circle at 93% 8%, rgba(139, 80, 239, .055), transparent 22%),
        radial-gradient(circle at 4% 70%, rgba(55, 165, 239, .055), transparent 24%),
        #fff;
}

.section-heading h2,
.intelligence-copy h2,
.contact-copy h2 {
    color: #152944;
}

.section-heading > p,
.section-heading-split > p,
.intelligence-copy > p,
.contact-copy > p {
    color: #68798f;
}

.section-kicker {
    color: #3e75d9;
}

.before-after {
    border-color: #e0e6ee;
    background: #e0e6ee;
    box-shadow: 0 28px 80px rgba(38, 61, 97, .09);
}

.before-card,
.after-card {
    background: rgba(255, 255, 255, .94);
}

.after-card {
    background:
        radial-gradient(circle at 92% 5%, rgba(151, 77, 238, .07), transparent 28%),
        #fff;
}

.compare-label,
.after-card .compare-label {
    color: #748398;
}

.after-card .compare-label {
    color: #4277dc;
}

.before-card h3,
.after-card h3,
.chaos-person strong,
.answer-grid strong {
    color: #1c304b;
}

.chaos-list span,
.answer-grid > div,
.chaos-person {
    border-color: #e6ebf1;
}

.chaos-list span,
.chaos-person small,
.answer-grid span {
    color: #718095;
}

.chaos-person > span,
.answer-grid i {
    color: #4678d7;
    background: #edf4ff;
}

.workflow-section {
    color: #172b47;
    background:
        radial-gradient(circle at 85% 10%, rgba(151, 75, 239, .07), transparent 25%),
        linear-gradient(180deg, #f8fbff, #fff);
}

.workflow-section::before {
    opacity: .15;
    background-image: radial-gradient(rgba(60, 132, 213, .3) .7px, transparent .7px);
}

.workflow-section .section-kicker {
    color: #4678d7;
}

.light-heading h2 {
    color: #152944;
}

.light-heading p {
    color: #718197;
}

.workflow-runway {
    border-color: #e1e7ef;
}

.workflow-runway article {
    border-color: #e3e8ef;
    color: #1b304c;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 18px 50px rgba(38, 68, 105, .055);
}

.workflow-runway article:hover {
    border-color: #dce3ec;
    background: #fff;
    box-shadow: 0 24px 60px rgba(45, 72, 110, .09);
}

.workflow-runway article > span {
    color: #a0adbd;
}

.workflow-runway article > i {
    color: #4678dc;
    border-color: #d9e5f5;
    background: #f1f6ff;
    box-shadow: none;
}

.workflow-runway p {
    color: #718096;
}

.workflow-runway small {
    color: #4778d2;
    border-color: #e3e9f0;
}

.workflow-actions > span {
    color: #718197;
}

.workflow-actions > span i {
    color: #4779dd;
}

.workflow-actions .button-light {
    border: 1px solid #dfe6ef;
    color: #294463;
    box-shadow: 0 12px 32px rgba(43, 68, 105, .08);
}

.control-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(79, 111, 232, .065), transparent 30%),
        #f9fbfe;
}

.product-tabs {
    border-color: #dde5ee;
    background: #fff;
    box-shadow: 0 12px 35px rgba(38, 62, 98, .06);
}

.product-tabs button {
    border-color: #e3e9f0;
    color: #718096;
}

.product-tabs button i {
    color: #7187a4;
}

.product-tabs button.is-active {
    color: #fff;
    background: linear-gradient(105deg, #347de4, #7758e7);
}

.product-stage {
    border-color: #dfe6ee;
    background: #fff;
    box-shadow: 0 30px 85px rgba(39, 62, 97, .11);
}

.product-panel-copy h3 {
    color: #182e4a;
}

.product-panel-copy > p,
.product-panel-copy li {
    color: #6f7e92;
}

.product-panel-copy li i,
.product-panel-copy > a {
    color: #4579dd;
}

.intelligence-points article {
    border-color: #e0e7ef;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 15px 42px rgba(42, 67, 103, .06);
}

.intelligence-points article > i {
    color: #4779dc;
    background: #eef4ff;
}

.intelligence-points strong {
    color: #203650;
}

.intelligence-points span {
    color: #728197;
}

.system-map {
    border-color: #dce5ee;
    background: #fff;
    box-shadow: 0 28px 78px rgba(39, 63, 98, .11);
}

.system-map-head {
    border-color: #dce5ee;
    background:
        radial-gradient(circle at 90% 10%, rgba(157, 75, 237, .12), transparent 31%),
        linear-gradient(120deg, #f5f9ff, #f7f4ff);
}

.system-map-head span {
    color: #4778da;
}

.system-map-head strong {
    color: #1b304b;
}

.system-map-flow article {
    border-color: #e7ebf1;
}

.system-map-flow article > i {
    color: #4779dd;
    border-color: #dbe5f1;
    background: #f2f7ff;
}

.system-map-flow strong {
    color: #223951;
}

.system-map-flow small,
.system-map-flow article > span {
    color: #75849a;
}

.system-map-foundation {
    background: #e3e8ef;
}

.system-map-foundation span {
    color: #62738a;
    background: #f8fafc;
}

.system-map-foundation i {
    color: #4779dc;
}

.roles-section {
    background:
        radial-gradient(circle at 5% 15%, rgba(52, 155, 235, .055), transparent 22%),
        #fff;
}

.roles-grid {
    border-color: #e0e6ed;
    background: #e0e6ed;
    box-shadow: 0 24px 70px rgba(42, 66, 100, .075);
}

.roles-grid article,
.roles-grid article:hover {
    background: #fff;
}

.roles-grid article:hover {
    background: #fbfdff;
    box-shadow: inset 0 0 0 1px rgba(78, 117, 223, .12);
}

.roles-grid article > i {
    color: #487adc;
    background: #eef4ff;
}

.roles-grid article > span {
    color: #4b79d5;
}

.roles-grid h3 {
    color: #20354f;
}

.roles-grid p {
    color: #728196;
}

.cta-section {
    background: #fff;
}

.cta-panel {
    border-color: rgba(105, 103, 230, .2);
    color: #172b47;
    background:
        radial-gradient(circle at 86% 25%, rgba(183, 75, 242, .15), transparent 29%),
        radial-gradient(circle at 13% 80%, rgba(49, 181, 242, .13), transparent 27%),
        linear-gradient(125deg, #f1f8ff, #f4f2ff 62%, #fbf3ff);
    box-shadow: 0 30px 80px rgba(57, 66, 132, .12), inset 0 1px rgba(255, 255, 255, .9);
}

.cta-panel > div:nth-child(2) > span {
    color: #4c76d6;
}

.cta-panel h2 {
    color: #192e49;
}

.cta-panel p {
    color: #6e7e93;
}

.cta-panel .button-light {
    color: #fff;
    background: linear-gradient(105deg, #347de4, #8750e5);
    box-shadow: 0 14px 35px rgba(83, 86, 206, .2);
}

.contact-section {
    background:
        radial-gradient(circle at 5% 20%, rgba(48, 159, 237, .07), transparent 24%),
        linear-gradient(180deg, #fff, #f8fbff);
}

.contact-methods > a,
.contact-methods > div,
.contact-socials a {
    border-color: #dfe7f0;
    color: #435a75;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 30px rgba(41, 68, 105, .055);
}

.contact-methods > a > i,
.contact-methods > div > i {
    color: #4779dd;
    background: #eef4ff;
}

.contact-methods small,
.contact-socials a {
    color: #718298;
}

.contact-methods strong {
    color: #203650;
}

.contact-socials i {
    color: #4779dc;
}

.contact-form-card {
    border-color: #dfe7ef;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 28px 80px rgba(39, 64, 100, .11);
}

.contact-form-head {
    border-color: #e7ecf2;
}

.contact-form-head > span {
    color: #4779dc;
}

.contact-form-head strong {
    color: #1c324d;
}

.contact-form label > span {
    color: #64758b;
}

.contact-form input,
.contact-form textarea,
.phone-input {
    color: #1f334d;
    border-color: #dce5ee;
    background: #f9fbfd;
}

.contact-form input:focus,
.contact-form textarea:focus,
.phone-input:focus-within {
    border-color: rgba(69, 116, 220, .5);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(67, 109, 218, .07), 0 14px 35px rgba(57, 83, 132, .06);
}

.phone-input b {
    color: #64758a;
}

.site-footer {
    color: #6f7e91;
    border-top: 1px solid #e4e9ef;
    background: #fff;
}

.footer-brand img {
    background: transparent;
}

.footer-column > strong {
    color: #20354e;
}

.footer-column > a {
    color: #718095;
}

.footer-column > a:hover {
    color: #4779dc;
}

.footer-connect > div a {
    color: #4779dc;
    border-color: #dce5ef;
}

.footer-connect > div a:hover {
    color: #8c4de0;
    border-color: rgba(117, 88, 221, .35);
}

.footer-bottom {
    border-color: #e6ebf1;
}

.footer-bottom span {
    color: #5577c9;
}

@media (max-width: 980px) {
    .mobile-menu {
        border-color: #e0e7ef;
        background: rgba(255, 255, 255, .98);
    }

    .mobile-menu a {
        color: #324863;
        border-color: #e8edf3;
    }

    .hero-layout {
        padding-top: 2px;
    }

    .hero-copy {
        padding-top: 18px;
    }

    .workflow-runway article {
        background: #fff;
    }
}

@media (max-width: 680px) {
    .header-inner {
        min-height: 58px;
    }

    .brand {
        width: 155px;
        height: 50px;
    }

    .brand img {
        width: 155px;
    }

    .hero {
        padding-top: 0;
    }

    .hero-layout {
        padding-top: 0;
    }

    .hero-copy {
        padding-top: 14px;
    }

    .hero-bubbles i:nth-child(1),
    .hero-bubbles i:nth-child(4) {
        opacity: .55;
    }
}

/* Compact anchors and LOGYX brand-only colour system */
:root {
    --navy: #08275f;
    --navy-2: #0b347d;
    --blue: #155ee8;
    --blue-2: #247ff0;
    --cyan: #3196f3;
    --violet: #0b347d;
}

html {
    scroll-padding-top: 58px;
}

#platform,
#workflow,
#product-tour,
#roles,
#contact {
    scroll-margin-top: 58px;
}

.section {
    padding: 38px 0 82px;
}

.desktop-nav a::after {
    background: linear-gradient(105deg, #0b347d, #155ee8 58%, #3196f3);
}

.header-demo,
.button-primary,
.product-tabs button.is-active,
.cta-panel .button-light,
.trip-form-demo button,
.phone-frame > button,
.report-filters button {
    border-color: #155ee8;
    background: #155ee8;
}

.header-demo:hover,
.button-primary:hover,
.product-tabs button.is-active:hover,
.cta-panel .button-light:hover,
.trip-form-demo button:hover,
.phone-frame > button:hover,
.report-filters button:hover {
    border-color: #08275f;
    background: #08275f;
}

.report-bars i {
    background: linear-gradient(135deg, #0b347d, #155ee8 60%, #3196f3);
}

.visual-chart path {
    stroke: #155ee8;
}

.hero {
    background:
        radial-gradient(circle at 76% 39%, rgba(21, 94, 232, .11), transparent 26%),
        radial-gradient(circle at 67% 33%, rgba(49, 150, 243, .11), transparent 27%),
        radial-gradient(circle at 8% 0%, rgba(8, 39, 95, .055), transparent 25%),
        #fff;
}

.hero h1 span,
.ai-core > strong {
    background: linear-gradient(90deg, #08275f 4%, #155ee8 52%, #3196f3 96%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-bubbles i {
    border-color: rgba(21, 94, 232, .16);
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .96), rgba(49, 150, 243, .2) 42%, rgba(21, 94, 232, .1) 72%, transparent);
    box-shadow: 0 18px 45px rgba(8, 39, 95, .09), inset 0 0 16px rgba(255, 255, 255, .82);
}

.ai-stage::before {
    background: radial-gradient(ellipse, rgba(21, 94, 232, .2), rgba(49, 150, 243, .08) 42%, transparent 72%);
}

.ai-orbit-primary,
.ai-orbit-secondary,
.ai-orbit-tertiary {
    border-color: rgba(21, 94, 232, .72);
    box-shadow: 0 0 12px rgba(21, 94, 232, .48), 0 0 30px rgba(49, 150, 243, .2);
}

.ai-orbit-primary i,
.ai-orbit-secondary i {
    background: #247ff0 !important;
    box-shadow: 0 0 8px #fff, 0 0 22px rgba(21, 94, 232, .72) !important;
}

.platform-section,
.intelligence-section {
    background:
        radial-gradient(circle at 93% 8%, rgba(21, 94, 232, .05), transparent 22%),
        radial-gradient(circle at 4% 70%, rgba(49, 150, 243, .05), transparent 24%),
        #fff;
}

.after-card {
    background:
        radial-gradient(circle at 92% 5%, rgba(21, 94, 232, .065), transparent 28%),
        #fff;
}

.workflow-section {
    background:
        radial-gradient(circle at 85% 10%, rgba(36, 127, 240, .065), transparent 25%),
        linear-gradient(180deg, #f7faff, #fff);
}

.control-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(21, 94, 232, .06), transparent 30%),
        #f9fbff;
}

.system-map-head {
    background:
        radial-gradient(circle at 90% 10%, rgba(49, 150, 243, .11), transparent 31%),
        linear-gradient(120deg, #f4f8ff, #f7faff);
}

.roles-section {
    background:
        radial-gradient(circle at 5% 15%, rgba(49, 150, 243, .05), transparent 22%),
        #fff;
}

.cta-panel {
    border-color: rgba(21, 94, 232, .18);
    background:
        radial-gradient(circle at 86% 25%, rgba(49, 150, 243, .13), transparent 29%),
        radial-gradient(circle at 13% 80%, rgba(21, 94, 232, .1), transparent 27%),
        linear-gradient(125deg, #f2f7ff, #f7faff 62%, #fff);
    box-shadow: 0 30px 80px rgba(8, 39, 95, .11), inset 0 1px rgba(255, 255, 255, .9);
}

.contact-section {
    background:
        radial-gradient(circle at 5% 20%, rgba(49, 150, 243, .065), transparent 24%),
        linear-gradient(180deg, #fff, #f7faff);
}

body {
    background: #f6f9fd;
}

.outcome-strip,
.platform-section,
.workflow-section,
.control-section,
.intelligence-section,
.roles-section,
.cta-section,
.contact-section,
.site-footer {
    background-color: #f7faff;
}

.button-ghost,
.workflow-actions .button-light,
.note-home-link {
    border-color: #dbe5f1;
    background: #f7faff;
}

@media (max-width: 980px) {
    .section {
        padding: 32px 0 68px;
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 58px;
    }

    .section {
        padding: 26px 0 56px;
    }
}

/* Readable type scale and native social-brand colours */
body {
    font-size: 15px;
}

.desktop-nav a,
.header-login,
.header-demo,
.button {
    font-size: 13px;
}

.hero-kicker {
    font-size: 11px;
}

.hero-copy > p {
    font-size: 16px;
    line-height: 1.7;
}

.hero-proof {
    font-size: 12px;
}

.capability-rail,
.outcome-grid span {
    font-size: 12px;
}

.section-kicker,
.compare-label,
.product-panel-copy > span,
.intelligence-copy .section-kicker,
.contact-form-head > span {
    font-size: 11px;
}

.section-heading > p,
.section-heading-split > p,
.intelligence-copy > p,
.contact-copy > p {
    font-size: 15px;
    line-height: 1.7;
}

.before-card h3,
.after-card h3 {
    font-size: 25px;
}

.chaos-list span,
.answer-grid span,
.chaos-person small,
.workflow-runway p,
.workflow-actions > span,
.roles-grid p,
.intelligence-points span {
    font-size: 13px;
    line-height: 1.65;
}

.answer-grid strong,
.chaos-person strong,
.workflow-runway h3,
.roles-grid h3,
.intelligence-points strong {
    font-size: 15px;
}

.workflow-runway small,
.roles-grid article > span {
    font-size: 11px;
}

.product-tabs button,
.product-panel-copy li,
.product-panel-copy > a {
    font-size: 13px;
}

.product-panel-copy > p {
    font-size: 15px;
    line-height: 1.7;
}

.visual-toolbar span,
.trip-form-demo label span,
.trip-form-demo > div span,
.trip-form-demo label strong,
.trip-form-demo button,
.phone-top span,
.phone-route small,
.phone-route span,
.driver-step strong,
.driver-step small,
.driver-step b,
.phone-frame > button,
.pod-summary span,
.pod-row strong,
.pod-row p span,
.pod-row > b,
.report-filters span,
.report-filters button,
.report-bars span {
    font-size: 9px;
}

.phone-route strong {
    font-size: 12px;
}

.contact-methods small,
.contact-form label > span,
.contact-form-head small,
.form-submit small {
    font-size: 11px;
}

.contact-methods strong,
.contact-form input,
.contact-form textarea,
.phone-input,
.phone-input b {
    font-size: 14px;
}

.contact-socials a {
    font-size: 12px;
    font-weight: 700;
}

.contact-socials i,
.footer-connect > div a i {
    font-size: 17px;
}

.footer-brand p {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.7;
}

.footer-column {
    gap: 12px;
}

.footer-column > strong {
    font-size: 13px;
}

.footer-column > a,
.footer-connect > a {
    font-size: 12px;
}

.footer-connect > div a {
    width: 40px;
    height: 40px;
}

.footer-bottom {
    font-size: 11px;
}

.contact-socials a:nth-child(1),
.footer-connect > div a:nth-child(1) {
    color: #0a66c2;
    border-color: rgba(10, 102, 194, .24);
    background: #eef6ff;
}

.contact-socials a:nth-child(2),
.footer-connect > div a:nth-child(2) {
    color: #0f172a;
    border-color: rgba(15, 23, 42, .2);
    background: #f1f5f9;
}

.contact-socials a:nth-child(3),
.footer-connect > div a:nth-child(3) {
    color: #ff0000;
    border-color: rgba(255, 0, 0, .2);
    background: #fff1f1;
}

.contact-socials a:nth-child(4),
.footer-connect > div a:nth-child(4) {
    color: #1877f2;
    border-color: rgba(24, 119, 242, .22);
    background: #eff6ff;
}

.contact-socials a:nth-child(1):hover,
.footer-connect > div a:nth-child(1):hover {
    color: #fff;
    border-color: #0a66c2;
    background: #0a66c2;
}

.contact-socials a:nth-child(2):hover,
.footer-connect > div a:nth-child(2):hover {
    color: #fff;
    border-color: #0f172a;
    background: #0f172a;
}

.contact-socials a:nth-child(3):hover,
.footer-connect > div a:nth-child(3):hover {
    color: #fff;
    border-color: #ff0000;
    background: #ff0000;
}

.contact-socials a:nth-child(4):hover,
.footer-connect > div a:nth-child(4):hover {
    color: #fff;
    border-color: #1877f2;
    background: #1877f2;
}

@media (max-width: 680px) {
    body {
        font-size: 14px;
    }

    .hero-copy > p,
    .section-heading > p,
    .section-heading-split > p,
    .intelligence-copy > p,
    .contact-copy > p,
    .product-panel-copy > p {
        font-size: 14px;
    }

    .footer-column > a,
    .footer-connect > a,
    .footer-brand p {
        font-size: 12px;
    }
}

/* Compact public-site scale -------------------------------------------------
   Keep the marketing surface visually restrained and consistent with the
   compact authentication screen. This final layer intentionally overrides
   older presentation passes above. */
body {
    font-size: 13px;
}

.header-inner {
    min-height: 58px;
}

.brand {
    width: 162px;
    height: 46px;
}

.brand img {
    width: 162px;
}

.desktop-nav {
    gap: 26px;
}

.desktop-nav a,
.header-login,
.header-demo,
.button {
    font-size: 11px;
}

.header-demo,
.button {
    min-height: 38px;
    padding-right: 15px;
    padding-left: 15px;
}

.hero {
    min-height: 0;
    padding-bottom: 0;
}

.hero-layout {
    grid-template-columns: minmax(360px, .88fr) minmax(520px, 1.12fr);
    min-height: 520px;
    gap: 30px;
    align-items: center;
}

.hero-copy {
    padding: 14px 0 20px;
}

.hero-kicker,
.section-kicker,
.compare-label,
.product-panel-copy > span,
.intelligence-copy .section-kicker,
.contact-form-head > span {
    font-size: 9px;
    letter-spacing: .13em;
}

.hero h1 {
    max-width: 650px;
    margin: 14px 0 15px;
    font-size: clamp(31px, 3.25vw, 40px);
    line-height: 1.08;
}

.hero-copy > p {
    max-width: 580px;
    font-size: 12px;
    line-height: 1.65;
}

.hero-actions {
    gap: 9px;
    margin-top: 21px;
}

.hero-proof {
    gap: 14px;
    margin-top: 19px;
    font-size: 10px;
}

.hero-product {
    min-height: 500px;
}

.ai-stage {
    width: min(100%, 520px);
}

.ai-core {
    width: 195px;
    height: 195px;
}

.ai-core > strong {
    font-size: 74px;
}

.ai-module {
    min-width: 145px;
    min-height: 48px;
    gap: 8px;
    padding: 8px 10px;
}

.ai-module > i {
    width: 28px;
    height: 28px;
}

.ai-module strong {
    font-size: 8px;
}

.capability-rail {
    min-height: 58px;
    font-size: 10px;
}

.outcome-grid {
    min-height: 86px;
}

.outcome-grid strong {
    font-size: 22px;
}

.outcome-grid span {
    font-size: 10px;
    line-height: 1.45;
}

.section {
    padding: 30px 0 58px;
}

.section-heading {
    margin-bottom: 25px;
}

.section-heading h2,
.intelligence-copy h2,
.contact-copy h2,
.cta-panel h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.16;
}

.section-heading > p,
.section-heading-split > p,
.intelligence-copy > p,
.contact-copy > p,
.cta-panel p,
.product-panel-copy > p {
    font-size: 12px;
    line-height: 1.65;
}

.before-card,
.after-card {
    padding: 28px;
}

.before-card h3,
.after-card h3 {
    font-size: 18px;
    line-height: 1.3;
}

.chaos-list span,
.answer-grid span,
.chaos-person small,
.workflow-runway p,
.workflow-actions > span,
.roles-grid p,
.intelligence-points span {
    font-size: 11px;
    line-height: 1.55;
}

.answer-grid strong,
.chaos-person strong,
.workflow-runway h3,
.roles-grid h3,
.intelligence-points strong {
    font-size: 13px;
}

.workflow-runway small,
.roles-grid article > span {
    font-size: 8px;
}

.workflow-runway article,
.roles-grid article,
.intelligence-points article {
    padding: 20px;
}

.workflow-runway article > i,
.roles-grid article > i {
    width: 38px;
    height: 38px;
    font-size: 14px;
}

.product-tabs button,
.product-panel-copy li,
.product-panel-copy > a {
    font-size: 11px;
}

.product-tabs button {
    min-height: 42px;
    padding: 0 14px;
}

.product-panel-copy h3 {
    font-size: 20px;
    line-height: 1.28;
}

.product-panel-copy li {
    line-height: 1.55;
}

.system-map-head span,
.system-map-flow small,
.system-map-flow article > span,
.system-map-foundation span {
    font-size: 8px;
}

.system-map-head strong,
.system-map-flow strong {
    font-size: 11px;
}

.cta-panel {
    padding: 30px 34px;
}

.contact-copy h2 {
    margin-bottom: 12px;
}

.contact-methods small,
.contact-form label > span,
.contact-form-head small,
.form-submit small {
    font-size: 9px;
}

.contact-methods strong,
.contact-form input,
.contact-form textarea,
.phone-input,
.phone-input b {
    font-size: 12px;
}

.contact-form input,
.phone-input {
    min-height: 42px;
}

.contact-form textarea {
    min-height: 86px;
}

.contact-form-card {
    padding: 28px;
}

.contact-form-head strong {
    font-size: 16px;
}

.contact-socials a {
    font-size: 9px;
}

.contact-socials i,
.footer-connect > div a i {
    font-size: 13px;
}

.footer-top {
    padding-top: 34px;
    padding-bottom: 30px;
}

.footer-brand img {
    width: 140px;
}

.footer-brand p,
.footer-column > a,
.footer-connect > a {
    font-size: 9px;
}

.footer-column {
    gap: 9px;
}

.footer-column > strong {
    font-size: 10px;
}

.footer-connect > div a {
    width: 32px;
    height: 32px;
}

.footer-bottom {
    min-height: 48px;
    font-size: 9px;
}

@media (max-width: 980px) {
    .section {
        padding: 27px 0 50px;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 35px);
    }

    .hero-layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-product {
        min-height: 430px;
    }

    .ai-stage {
        width: min(100%, 480px);
    }
}

@media (max-width: 680px) {
    body {
        font-size: 12px;
    }

    .brand,
    .brand img {
        width: 132px;
    }

    .brand {
        height: 40px;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        min-height: auto;
    }

    .hero h1 {
        font-size: 27px;
    }

    .hero-copy > p,
    .section-heading > p,
    .section-heading-split > p,
    .intelligence-copy > p,
    .contact-copy > p,
    .product-panel-copy > p {
        font-size: 11px;
    }

    .section {
        padding: 24px 0 44px;
    }

    .section-heading h2,
    .intelligence-copy h2,
    .contact-copy h2,
    .cta-panel h2 {
        font-size: 22px;
    }

    .before-card,
    .after-card,
    .contact-form-card {
        padding: 21px;
    }

    .before-card h3,
    .after-card h3 {
        font-size: 16px;
    }

    .product-panel-copy h3 {
        font-size: 18px;
    }

    .cta-panel {
        padding: 24px 21px;
    }

    .hero-product {
        min-height: 360px;
    }

    .ai-stage {
        width: min(100%, 390px);
    }
}

/* Professional surface refinement ---------------------------------------- */
body {
    background: #f4f7fc;
}

.site-header,
.site-header.is-scrolled {
    border-bottom-color: #dde6f2;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(21, 42, 76, .07);
}

.desktop-nav {
    padding: 4px;
    border: 1px solid #e4ebf5;
    border-radius: 12px;
    background: #f8faff;
}

.desktop-nav a {
    padding: 7px 10px;
    border-radius: 8px;
}

.desktop-nav a:hover {
    background: #edf3ff;
}

.desktop-nav a::after {
    display: none;
}

.header-login {
    padding: 8px 11px;
    border: 1px solid transparent;
    border-radius: 10px;
}

.header-login:hover {
    border-color: #dce6f4;
    background: #f7f9fd;
}

.header-demo,
.button-primary {
    border: 1px solid rgba(37, 99, 235, .18);
    background: linear-gradient(115deg, #155ee8, #316fee 58%, #5b5ce9);
    box-shadow: 0 10px 24px rgba(37, 91, 218, .18);
}

.header-demo:hover,
.button-primary:hover {
    background: linear-gradient(115deg, #0d4fcc, #275ed8 58%, #4d4fd5);
    box-shadow: 0 13px 28px rgba(37, 91, 218, .23);
    transform: translateY(-1px);
}

.hero {
    padding: 26px 0 28px;
    background:
        radial-gradient(circle at 82% 18%, rgba(36, 127, 240, .1), transparent 26%),
        radial-gradient(circle at 12% 82%, rgba(109, 93, 252, .07), transparent 25%),
        linear-gradient(180deg, #f8faff 0%, #f3f7fd 100%);
}

.hero::before,
.hero-grid {
    opacity: .22;
}

.hero-bubbles {
    opacity: .78;
}

.hero-layout {
    position: relative;
    min-height: 500px;
    padding: 24px 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-layout::after {
    display: none;
}

.hero-copy {
    padding: 0;
}

.hero-kicker {
    margin-bottom: 0;
    padding: 6px 9px;
    border-color: #dce6fa;
    color: #3568cf;
    background: #f1f5ff;
    box-shadow: none;
}

.hero h1 {
    margin: 18px 0 14px;
    letter-spacing: -.045em;
}

.hero-copy > p {
    margin-top: 0;
    color: #667791;
}

.button {
    border-radius: 10px;
}

.button-ghost {
    border-color: #d9e3f1;
    background: #f8faff;
    box-shadow: none;
}

.button-ghost:hover {
    border-color: #bdcce3;
    background: #fff;
    box-shadow: 0 8px 20px rgba(32, 58, 96, .08);
}

.hero-proof {
    gap: 7px;
}

.hero-proof span {
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid #e0e8f3;
    border-radius: 999px;
    color: #5c6e87;
    background: rgba(255, 255, 255, .78);
}

.hero-proof i {
    color: #159b67;
}

.hero-product {
    min-height: 430px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ai-stage {
    width: min(100%, 470px);
}

.ai-core {
    width: 176px;
    height: 176px;
    border-color: rgba(72, 126, 216, .22);
    background: rgba(255, 255, 255, .9);
    box-shadow:
        0 0 0 9px rgba(76, 122, 229, .035),
        0 22px 55px rgba(68, 86, 156, .14),
        inset 0 0 30px rgba(97, 156, 235, .08);
}

.ai-core-logo {
    width: 136px;
    max-width: 78%;
    height: auto;
    object-fit: contain;
}

.ai-core > b {
    margin-top: 5px;
    font-size: 6px;
    letter-spacing: .01em;
}

.ai-module {
    min-width: 136px;
    min-height: 44px;
    padding: 7px 9px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 28px rgba(49, 75, 126, .11);
}

.ai-module > i {
    width: 27px;
    height: 27px;
}

.ai-module::after {
    width: 34px;
}

.ai-status-line {
    bottom: 2%;
}

.capability-rail {
    min-height: 58px;
    margin-top: 14px;
    padding: 0 18px;
    border: 1px solid #dce6f2;
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 12px 30px rgba(31, 55, 92, .07);
}

.capability-rail > span {
    color: #60718a;
}

.outcome-strip {
    padding: 16px 0 38px;
    border: 0;
    background: #f4f7fc;
}

.outcome-grid {
    gap: 10px;
}

.outcome-grid > div {
    min-height: 72px;
    padding: 12px 17px !important;
    border: 1px solid #dfe7f2 !important;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(32, 56, 91, .055);
}

.outcome-grid strong {
    color: #174ba7;
}

.section-kicker {
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid #dce6f9;
    border-radius: 999px;
    background: #f2f6ff;
}

.before-after,
.roles-grid {
    gap: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.before-card,
.after-card,
.roles-grid article,
.intelligence-points article {
    border: 1px solid #dfe7f1;
    border-radius: 17px;
    box-shadow: 0 10px 28px rgba(31, 55, 91, .06);
}

.product-tabs,
.product-stage,
.system-map,
.contact-form-card,
.cta-panel {
    border-color: #dce5f0;
    box-shadow: 0 18px 48px rgba(31, 55, 91, .085);
}

.product-stage,
.system-map,
.contact-form-card {
    border-radius: 20px;
}

.contact-form input,
.contact-form textarea,
.phone-input {
    border-color: #d8e2ef;
    border-radius: 10px;
    background: #f9fbfe;
}

.contact-form input:focus,
.contact-form textarea:focus,
.phone-input:focus-within {
    border-color: #6e8fe9;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(69, 105, 218, .1);
}

@media (max-width: 980px) {
    .desktop-nav {
        display: none;
    }

    .hero-layout {
        padding: 22px 0;
    }

    .hero-layout::after {
        display: none;
    }

    .hero-product {
        margin-top: 10px;
    }

    .capability-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 13px 16px;
    }

    .capability-rail > span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .hero {
        padding: 14px 0 20px;
    }

    .hero-layout {
        padding: 20px 0;
        border-radius: 0;
    }

    .hero-product {
        min-height: 335px;
        border-radius: 0;
    }

    .ai-stage {
        width: min(100%, 350px);
    }

    .ai-core {
        width: 145px;
        height: 145px;
    }

    .ai-core-logo {
        width: 110px;
    }

    .ai-module {
        min-width: 118px;
        min-height: 40px;
    }

    .ai-module > i {
        width: 24px;
        height: 24px;
    }

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

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

/* Slightly larger homepage typography for improved readability. */
body {
    font-size: 14px;
}

.desktop-nav a,
.header-login,
.header-demo,
.button {
    font-size: 12px;
}

.hero-kicker,
.section-kicker,
.compare-label,
.product-panel-copy > span,
.intelligence-copy .section-kicker,
.contact-form-head > span {
    font-size: 10px;
}

.hero-copy > p,
.section-heading > p,
.section-heading-split > p,
.intelligence-copy > p,
.contact-copy > p,
.cta-panel p,
.product-panel-copy > p {
    font-size: 13px;
}

.hero-proof,
.capability-rail,
.outcome-grid span {
    font-size: 11px;
}

.chaos-list span,
.answer-grid span,
.chaos-person small,
.workflow-runway p,
.workflow-actions > span,
.roles-grid p,
.intelligence-points span,
.product-tabs button,
.product-panel-copy li,
.product-panel-copy > a {
    font-size: 12px;
}

.answer-grid strong,
.chaos-person strong,
.workflow-runway h3,
.roles-grid h3,
.intelligence-points strong {
    font-size: 14px;
}

.contact-methods small,
.contact-form label > span,
.contact-form-head small,
.form-submit small,
.contact-socials a,
.footer-brand p,
.footer-column > a,
.footer-connect > a,
.footer-bottom {
    font-size: 10px;
}

.footer-column > strong {
    font-size: 11px;
}

/* Keep social glyphs visible in every interaction state. */
.contact-socials a i,
.footer-connect > div a i {
    color: currentColor !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: color .18s ease, opacity .18s ease;
}

.contact-socials a:focus-visible,
.footer-connect > div a:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .22);
    outline-offset: 2px;
}

.contact-socials a:active,
.footer-connect > div a:active {
    transform: translateY(0);
}
.contact-request-types{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin:0;padding:0;border:0}.contact-request-types legend{grid-column:1/-1;margin-bottom:2px;color:#52627a;font-size:12px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.contact-request-types label{position:relative;cursor:pointer}.contact-request-types input{position:absolute;opacity:0;pointer-events:none}.contact-request-types label>span{box-sizing:border-box;display:grid;grid-template-columns:26px 1fr;align-items:center;min-height:86px;padding:13px;border:1px solid #d5dfec;border-radius:10px;background:#fbfcff;color:#213653}.contact-request-types label>span>i{grid-row:1/3;width:22px;height:22px;display:grid;place-items:center;border:1px solid #bdcadb;border-radius:6px;color:transparent}.contact-request-types b,.contact-request-types small{display:block}.contact-request-types b{font-size:13px}.contact-request-types small{margin-top:4px;color:#718098;font-size:10px;line-height:1.35}.contact-request-types input:checked+span{border-color:#3867e8;background:#f1f5ff;box-shadow:0 0 0 2px rgba(56,103,232,.1)}.contact-request-types input:checked+span>i{border-color:#3867e8;background:#3867e8;color:#fff}@media(max-width:720px){.contact-request-types{grid-template-columns:1fr}}

.contact-request-types label>span{position:relative;grid-template-columns:28px 38px 1fr;column-gap:10px;overflow:hidden;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease,background .2s ease}.contact-request-types label>span::after{content:"";position:absolute;right:-30px;bottom:-42px;width:100px;height:100px;border-radius:50%;background:rgba(49,91,232,.055)}.contact-request-types label:hover>span{transform:translateY(-2px);border-color:#9cb4ed;box-shadow:0 12px 28px rgba(27,55,108,.1)}.contact-request-types label>span>i{grid-row:1/3;grid-column:1}.contact-request-types label>span>em{grid-row:1/3;grid-column:2;width:38px;height:38px;display:grid;place-items:center;border-radius:10px;background:#edf3ff;color:#315be8;font-size:15px;font-style:normal}.contact-request-types label>span>b,.contact-request-types label>span>small{grid-column:3}.contact-request-types label>span>b{font-size:15px}.contact-request-types label>span>small{font-size:12px}.contact-request-types label:nth-of-type(1)>span>em{background:#eaf9f7;color:#079a84}.contact-request-types label:nth-of-type(3)>span>em{background:#fff3e8;color:#dc7107}.contact-request-types input:focus-visible+span{outline:3px solid rgba(49,91,232,.22);outline-offset:2px}.contact-request-types input:checked+span>em{background:#315be8;color:#fff;box-shadow:0 7px 16px rgba(49,91,232,.25)}

/* Compact, restrained contact-purpose selector. */
.contact-request-types{gap:12px}.contact-request-types label>span{grid-template-columns:20px 30px minmax(0,1fr);column-gap:9px;min-height:72px;padding:11px 12px;border-radius:9px;background:#fff;overflow:visible}.contact-request-types label>span::after{display:none}.contact-request-types label:hover>span{transform:none;box-shadow:0 5px 15px rgba(27,55,108,.06)}.contact-request-types label>span>i{width:18px;height:18px;border-radius:5px;font-size:9px}.contact-request-types label>span>em{width:30px;height:30px;border-radius:8px;font-size:12px}.contact-request-types label>span>b{font-size:13px;font-weight:600;line-height:1.2;white-space:nowrap}.contact-request-types label>span>small{margin-top:3px;color:#8794a7;font-size:9px;font-weight:400;line-height:1.2;white-space:nowrap}.contact-request-types input:checked+span{background:#f6f8ff;box-shadow:0 0 0 1px rgba(49,91,232,.1)}.contact-request-types input:checked+span>em{background:#e9efff;color:#315be8;box-shadow:none}

.contact-form [data-contact-submit]{min-width:168px;justify-content:center;gap:9px}.contact-form [data-contact-submit].is-sending{cursor:wait;opacity:.84;box-shadow:none}.contact-form [data-contact-submit]:disabled{pointer-events:none}.contact-form [data-contact-submit] .fa-spinner{font-size:14px}
