:root {
    --site-navy: #071426;
    --site-navy-2: #0d1c32;
    --site-ink: #122036;
    --site-muted: #5d6e86;
    --site-line: #dbe4ef;
    --site-canvas: #f5f8fc;
    --site-white: #ffffff;
    --site-blue: #1677ff;
    --site-blue-dark: #0d57c7;
    --site-cyan: #08a8d8;
    --site-teal: #0f9f8a;
    --site-green: #15835e;
    --site-orange: #eb6f24;
    --site-violet: #7246d9;
    --site-red: #d64550;
    --site-shadow: 0 18px 48px rgba(28, 54, 91, .12);
}

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

body.public-body {
    margin: 0;
    overflow-x: hidden;
    background: var(--site-white);
    color: var(--site-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    letter-spacing: 0;
}

.public-body *,
.public-body *::before,
.public-body *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.public-body a,
.public-body button,
.public-body input,
.public-body select,
.public-body summary {
    -webkit-tap-highlight-color: transparent;
}

.public-body a:focus-visible,
.public-body button:focus-visible,
.public-body input:focus-visible,
.public-body select:focus-visible,
.public-body summary:focus-visible {
    outline: 3px solid rgba(22, 119, 255, .35);
    outline-offset: 3px;
}

.public-container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.public-nav {
    position: relative;
    z-index: 50;
    width: min(1200px, calc(100% - 48px));
    height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--site-white);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--site-ink);
    text-decoration: none;
}

.public-brand img {
    display: block;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(114, 70, 217, .22);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(80, 54, 154, .16);
}

.public-brand span {
    display: flex;
    width: auto;
    height: auto;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.public-brand strong {
    font-size: 17px;
    line-height: 1.15;
    font-weight: 800;
}

.public-brand small {
    color: var(--site-muted);
    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.public-nav nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.public-nav nav > a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 6px;
    color: #43536a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.public-nav nav > a:hover {
    background: #f0f5fb;
    color: var(--site-blue-dark);
}

.public-nav .public-nav__login {
    margin-left: 8px;
    border: 1px solid var(--site-line);
}

.public-nav .public-nav__cta {
    margin-left: 3px;
    padding-inline: 17px;
    background: var(--site-navy);
    color: var(--site-white);
    box-shadow: 0 10px 24px rgba(7, 20, 38, .18);
}

.public-nav .public-nav__cta:hover {
    background: #152a48;
    color: var(--site-white);
    transform: translateY(-1px);
}

.public-nav__toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--site-line);
    border-radius: 7px;
    background: var(--site-white);
    color: var(--site-ink);
    cursor: pointer;
}

.public-nav__toggle svg {
    width: 21px;
    height: 21px;
}

.home-hero {
    position: relative;
    min-height: min(690px, calc(100svh - 118px));
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--site-navy);
    background-image: url("../images/contalume-hero-dashboard.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-hero__scrim {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(5, 14, 28, .30);
}

.home-hero__content {
    padding-block: 76px 70px;
    color: #f7fbff;
}

.home-hero__content > * {
    max-width: 610px;
}

.home-hero__kicker,
.section-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 16px;
    color: #81d8ff;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.home-hero__kicker span {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: #22d3a6;
}

.home-hero h1 {
    margin: 0;
    color: var(--site-white);
    font-size: 68px;
    line-height: 1;
    font-weight: 850;
}

.home-hero__headline {
    margin: 18px 0 0;
    color: #f5f9ff;
    font-size: 29px;
    line-height: 1.22;
    font-weight: 750;
}

.home-hero__lead {
    margin: 20px 0 0;
    color: #cad7e8;
    font-size: 17px;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.site-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 7px;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.site-button svg,
.site-link svg {
    width: 18px;
    height: 18px;
}

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

.site-button--primary {
    background: var(--site-blue);
    color: var(--site-white);
    box-shadow: 0 12px 28px rgba(22, 119, 255, .28);
}

.site-button--primary:hover {
    background: var(--site-blue-dark);
}

.site-button--glass {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .10);
    color: var(--site-white);
    backdrop-filter: blur(10px);
}

.site-button--glass:hover {
    background: rgba(255, 255, 255, .17);
}

.site-button--outline {
    border-color: #bdcde1;
    background: var(--site-white);
    color: var(--site-ink);
}

.site-button--outline:hover {
    border-color: var(--site-blue);
    color: var(--site-blue-dark);
}

.site-button--light {
    background: var(--site-white);
    color: var(--site-navy);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.home-hero__assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #c5d3e6;
    font-size: 12px;
    font-weight: 700;
}

.home-hero__assurance span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.home-hero__assurance svg {
    width: 16px;
    height: 16px;
    color: #22d3a6;
}

.trust-strip {
    border-bottom: 1px solid var(--site-line);
    background: var(--site-white);
}

.trust-strip__inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #617187;
    font-size: 13px;
    white-space: nowrap;
}

.trust-strip__inner strong {
    color: var(--site-ink);
    font-size: 14px;
}

.trust-strip__inner span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.trust-strip__inner svg {
    width: 17px;
    height: 17px;
    color: var(--site-blue);
}

.site-section {
    padding: 104px 0;
}

.section-heading {
    max-width: 670px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .section-kicker {
    justify-content: center;
}

.section-kicker {
    margin-bottom: 13px;
    color: var(--site-blue-dark);
}

.section-heading h2,
.workflow-copy h2,
.security-copy h2,
.faq-copy h2 {
    margin: 0;
    color: var(--site-ink);
    font-size: 39px;
    line-height: 1.16;
    font-weight: 800;
}

.section-heading > p:last-child,
.workflow-copy > p,
.security-copy > p,
.faq-copy > p {
    margin: 18px 0 0;
    color: var(--site-muted);
    font-size: 16px;
    line-height: 1.7;
}

.product-tour {
    background: var(--site-canvas);
}

.product-tabs {
    width: max-content;
    max-width: 100%;
    margin: 38px auto 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 5px;
    border: 1px solid var(--site-line);
    border-radius: 8px;
    background: var(--site-white);
    box-shadow: 0 10px 28px rgba(28, 54, 91, .07);
}

.product-tabs::-webkit-scrollbar {
    display: none;
}

.product-tab {
    min-height: 43px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #586a82;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.product-tab svg {
    width: 17px;
    height: 17px;
}

.product-tab.active {
    background: var(--site-navy);
    color: var(--site-white);
}

.product-frame {
    min-height: 620px;
    display: grid;
    grid-template-columns: 196px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #b9c9dc;
    border-radius: 8px;
    background: #e9eff7;
    box-shadow: 0 32px 70px rgba(25, 51, 87, .17);
}

.demo-sidebar {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 22px 13px 15px;
    background: var(--site-navy);
    color: #9db0c8;
}

.demo-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 7px 24px;
    color: var(--site-white);
    font-size: 14px;
}

.demo-brand span {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #9b77ee;
    border-radius: 7px;
    background: #6d3ed1;
    font-weight: 800;
}

.demo-sidebar__item {
    height: 39px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 10px;
    margin-bottom: 5px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.demo-sidebar__item svg {
    width: 16px;
    height: 16px;
}

.demo-sidebar__item.active {
    border-color: #6446a5;
    background: #2d2051;
    color: #f3ecff;
}

.demo-sidebar__profile {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding: 10px;
    border: 1px solid #253a57;
    border-radius: 6px;
}

.demo-sidebar__profile > span {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #17304f;
    color: #dcecff;
    font-size: 10px;
    font-weight: 800;
}

.demo-sidebar__profile div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.demo-sidebar__profile small {
    font-size: 9px;
}

.demo-sidebar__profile b {
    overflow: hidden;
    color: #edf5ff;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-workspace {
    min-width: 0;
    background: #f7f9fc;
}

.demo-topbar {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid #d8e2ef;
    background: var(--site-white);
}

.demo-topbar > div {
    display: flex;
    flex-direction: column;
}

.demo-topbar small,
.demo-panel__title small,
.demo-block-title small {
    color: #7a8ba2;
    font-size: 9px;
    font-weight: 750;
    text-transform: uppercase;
}

.demo-topbar b {
    color: #263850;
    font-size: 12px;
}

.demo-topbar > span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9e3ef;
    border-radius: 6px;
    color: #5e7189;
}

.demo-topbar svg {
    width: 16px;
    height: 16px;
}

.demo-panel {
    padding: 24px;
}

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

.demo-panel__title {
    min-height: 46px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.demo-panel__title > div:first-child {
    display: flex;
    flex-direction: column;
}

.demo-panel__title h3 {
    margin: 4px 0 0;
    color: #17273e;
    font-size: 20px;
    line-height: 1.2;
}

.demo-status,
.demo-period {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid #cbd9e8;
    border-radius: 6px;
    background: var(--site-white);
    color: #52677f;
    font-size: 10px;
    font-weight: 750;
}

.demo-status {
    border-color: #9cddc9;
    background: #edf9f5;
    color: #107458;
}

.demo-status svg,
.demo-period svg {
    width: 14px;
    height: 14px;
}

.demo-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.demo-metric,
.demo-metrics article {
    min-width: 0;
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px;
    border: 1px solid #d8e2ef;
    border-top: 3px solid #93a4b9;
    border-radius: 7px;
    background: var(--site-white);
}

.demo-metrics article > span {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    color: #61748d;
    font-size: 10px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-metrics article > span svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.demo-metrics article strong {
    display: block;
    margin-top: 8px;
    color: #17273e;
    font-size: 19px;
    line-height: 1.1;
}

.demo-metrics article small {
    margin-top: 5px;
    overflow: hidden;
    color: #7a8ca3;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-metrics .demo-metric--blue {
    border-top-color: var(--site-blue);
    background: #eff6ff;
}

.demo-metrics .demo-metric--warning {
    border-top-color: var(--site-orange);
}

.demo-metrics .demo-metric--green {
    border-top-color: var(--site-teal);
    background: #effaf7;
}

.demo-dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.demo-chart,
.demo-next,
.demo-driver-form,
.demo-driver-result,
.demo-report-chart,
.demo-category-report {
    min-width: 0;
    padding: 16px;
    border: 1px solid #d8e2ef;
    border-radius: 7px;
    background: var(--site-white);
}

.demo-block-title {
    min-height: 35px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.demo-block-title > div {
    display: flex;
    flex-direction: column;
}

.demo-block-title b {
    color: #22344d;
    font-size: 12px;
}

.demo-block-title > span,
.demo-block-title > strong {
    color: #5f728c;
    font-size: 9px;
}

.demo-block-title svg {
    width: 16px;
    height: 16px;
    color: var(--site-blue);
}

.demo-bars {
    height: 145px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 12px;
    padding: 18px 10px 0;
    border-bottom: 1px solid #dbe4ee;
}

.demo-bars i {
    position: relative;
    width: 22px;
    height: var(--income);
    display: block;
    border-radius: 3px 3px 0 0;
    background: #2f82f4;
}

.demo-bars i::after {
    content: "";
    position: absolute;
    right: -9px;
    bottom: 0;
    width: 8px;
    height: var(--expense);
    border-radius: 2px 2px 0 0;
    background: #ee7b34;
}

.demo-chart__legend {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    color: #71839a;
    font-size: 9px;
}

.demo-chart__legend span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-chart__legend i {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: #2f82f4;
}

.demo-chart__legend span:last-child i {
    background: #ee7b34;
}

.demo-next ul,
.demo-category-report ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.demo-next li {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    border-bottom: 1px solid #e8eef5;
}

.demo-next li:last-child {
    border-bottom: 0;
}

.demo-next li > span {
    height: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #bcd0e5;
    border-radius: 5px;
    color: #285c99;
    font-size: 11px;
    font-weight: 800;
}

.demo-next li > span small {
    font-size: 7px;
}

.demo-next li div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.demo-next li div b,
.demo-next li > strong {
    overflow: hidden;
    color: #263850;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-next li div small {
    color: #8393a7;
    font-size: 8px;
}

.demo-action,
.demo-export button,
.demo-filter-row button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 11px;
    border: 0;
    border-radius: 6px;
    background: var(--site-blue);
    color: var(--site-white);
    font: inherit;
    font-size: 10px;
    font-weight: 750;
}

.demo-action svg,
.demo-export button svg,
.demo-filter-row button svg {
    width: 14px;
    height: 14px;
}

.demo-action--wide {
    width: 100%;
    margin-top: 12px;
}

.demo-filter-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr auto;
    gap: 8px;
    margin-bottom: 13px;
}

.demo-filter-row > span {
    min-width: 0;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    padding: 0 10px;
    border: 1px solid #d6e1ed;
    border-radius: 6px;
    background: var(--site-white);
    color: #75869b;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-filter-row svg {
    width: 13px;
    height: 13px;
}

.demo-table {
    overflow: hidden;
    border: 1px solid #d4dfeb;
    border-radius: 7px;
    background: var(--site-white);
}

.demo-table__row {
    min-height: 63px;
    display: grid;
    grid-template-columns: .85fr .75fr 1.8fr 1fr .8fr;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    border-bottom: 1px solid #e1e9f2;
    color: #354961;
    font-size: 10px;
}

.demo-table__row:last-child {
    border-bottom: 0;
}

.demo-table__row > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.demo-table__row > span:nth-child(3) {
    display: flex;
    flex-direction: column;
}

.demo-table__row > span b {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-table__row > span small {
    color: #8494a8;
    font-size: 8px;
}

.demo-table__head {
    min-height: 40px;
    background: var(--site-navy-2);
    color: #c4d2e5;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.demo-table__row > strong {
    text-align: right;
}

.status-chip {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 23px;
    padding: 0 8px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 800;
}

.status-chip--paid {
    background: #dff5ed;
    color: #0c7858;
}

.status-chip--pending {
    background: #fff0df;
    color: #b35416;
}

.status-chip--late {
    background: #ffe7e9;
    color: #bd303b;
}

.demo-credit-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.demo-credit-summary article {
    padding: 13px;
    border: 1px solid #d6e1ed;
    border-radius: 6px;
    background: var(--site-white);
}

.demo-credit-summary small {
    display: block;
    color: #74869b;
    font-size: 9px;
}

.demo-credit-summary strong {
    color: #263850;
    font-size: 16px;
}

.demo-credit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.demo-credit-grid article {
    min-width: 0;
    padding: 14px;
    border: 1px solid #d6e1ed;
    border-radius: 7px;
    background: var(--site-white);
}

.demo-credit-grid article > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-credit-grid article > div:first-child svg {
    width: 15px;
    height: 15px;
    color: #8291a5;
}

.demo-credit-grid h4 {
    min-height: 36px;
    margin: 14px 0 3px;
    color: #22344c;
    font-size: 12px;
    line-height: 1.35;
}

.demo-credit-grid article > small {
    display: block;
    min-height: 30px;
    color: #74869c;
    font-size: 8px;
}

.demo-credit-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin: 12px 0;
}

.demo-credit-values span {
    min-width: 0;
    padding: 8px;
    border: 1px solid #e0e7ef;
    border-radius: 5px;
    color: #77899f;
    font-size: 8px;
}

.demo-credit-values strong {
    display: block;
    overflow: hidden;
    color: #22344d;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-credit-grid progress {
    width: 100%;
    height: 5px;
    display: block;
    border: 0;
    border-radius: 3px;
    overflow: hidden;
    accent-color: var(--site-violet);
}

.demo-credit-grid p {
    margin: 4px 0 0;
    color: #75869b;
    font-size: 8px;
    text-align: right;
}

.demo-driver-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr;
    gap: 12px;
    margin-top: 12px;
}

.demo-input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-top: 8px;
}

.demo-input-grid label {
    min-width: 0;
    padding: 9px;
    border: 1px solid #dbe4ee;
    border-radius: 5px;
    color: #75869b;
    font-size: 8px;
}

.demo-input-grid strong {
    display: block;
    color: #21334b;
    font-size: 11px;
}

.demo-driver-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-color: #9cdcca;
    background: #eefaf6;
}

.demo-driver-result > small {
    color: #487468;
    font-size: 9px;
}

.demo-driver-result > strong {
    margin: 4px 0 13px;
    color: #0c7557;
    font-size: 27px;
}

.demo-driver-result > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.demo-driver-result span {
    padding: 7px;
    border: 1px solid #c9e8df;
    border-radius: 5px;
    color: #608277;
    font-size: 7px;
}

.demo-driver-result b {
    display: block;
    color: #235c4c;
    font-size: 9px;
}

.demo-export {
    display: flex;
    gap: 6px;
}

.demo-export button:last-child {
    background: var(--site-navy-2);
}

.demo-report-grid {
    display: grid;
    grid-template-columns: 1.55fr .75fr;
    gap: 12px;
}

.demo-report-chart svg {
    width: 100%;
    height: 205px;
    display: block;
}

.demo-report-chart .demo-block-title > strong {
    color: var(--site-green);
    font-size: 12px;
}

.demo-report-months {
    display: flex;
    justify-content: space-between;
    color: #7b8da3;
    font-size: 8px;
}

.demo-category-report li {
    display: grid;
    grid-template-columns: 9px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 13px 0;
    border-bottom: 1px solid #e6edf5;
}

.demo-category-report li:last-child {
    border-bottom: 0;
}

.demo-category-report li > i {
    width: 8px;
    height: 30px;
    border-radius: 3px;
    background: var(--color);
}

.demo-category-report li > span {
    display: flex;
    flex-direction: column;
    color: #354860;
    font-size: 9px;
    font-weight: 750;
}

.demo-category-report li small {
    color: #8796a9;
    font-size: 8px;
}

.demo-category-report li strong {
    color: #273950;
    font-size: 9px;
}

.features-section {
    background: var(--site-white);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.feature-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--site-line);
    border-top: 3px solid var(--accent);
    border-radius: 8px;
    background: var(--site-white);
    box-shadow: 0 14px 34px rgba(34, 58, 90, .07);
    transition: transform .2s ease, box-shadow .2s ease;
}

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

.feature-card > span {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--accent) 35%, white);
    border-radius: 8px;
    background: color-mix(in srgb, var(--accent) 10%, white);
    color: var(--accent);
}

.feature-card svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    margin: 21px 0 8px;
    font-size: 18px;
}

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

.feature-card > b {
    margin-top: auto;
    padding-top: 18px;
    color: var(--accent);
    font-size: 12px;
}

.feature-card--blue { --accent: var(--site-blue); }
.feature-card--teal { --accent: var(--site-teal); }
.feature-card--orange { --accent: var(--site-orange); }
.feature-card--violet { --accent: var(--site-violet); }
.feature-card--green { --accent: var(--site-green); }
.feature-card--cyan { --accent: var(--site-cyan); }

.workflow-section {
    background: #eef3f8;
}

.workflow-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 84px;
    align-items: start;
}

.workflow-copy {
    position: sticky;
    top: 110px;
}

.site-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--site-blue-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

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

.workflow-list li {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 30px;
}

.workflow-list li::before {
    content: "";
    position: absolute;
    top: 48px;
    bottom: 5px;
    left: 23px;
    width: 1px;
    background: #b7c8da;
}

.workflow-list li:last-child::before {
    display: none;
}

.workflow-list li > span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9cce0;
    border-radius: 8px;
    background: var(--site-white);
    color: var(--site-blue-dark);
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 8px 20px rgba(42, 67, 100, .09);
}

.workflow-list li > div {
    min-height: 118px;
    padding: 20px 22px;
    border: 1px solid #cedae8;
    border-radius: 8px;
    background: var(--site-white);
    box-shadow: 0 12px 28px rgba(37, 62, 95, .07);
}

.workflow-list svg {
    width: 20px;
    height: 20px;
    color: var(--site-teal);
}

.workflow-list h3 {
    display: inline;
    margin: 0 0 0 9px;
    font-size: 17px;
}

.workflow-list p {
    margin: 8px 0 0;
    color: var(--site-muted);
    font-size: 14px;
}

.security-section {
    background: var(--site-navy);
    color: var(--site-white);
}

.security-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.security-copy .section-kicker {
    color: #61ccec;
}

.security-copy h2 {
    color: var(--site-white);
}

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

.security-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.security-points article {
    min-height: 160px;
    padding: 20px;
    border: 1px solid #29405f;
    border-radius: 8px;
    background: #0d2039;
}

.security-points article > span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f826f;
    border-radius: 7px;
    background: #123f3a;
    color: #5ce1bd;
}

.security-points svg {
    width: 20px;
    height: 20px;
}

.security-points h3 {
    margin: 16px 0 5px;
    color: #f5f9ff;
    font-size: 15px;
}

.security-points p {
    margin: 0;
    color: #9fb1c8;
    font-size: 12px;
}

.plans-section {
    background: var(--site-canvas);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 27px;
    border: 1px solid #cad7e6;
    border-top: 4px solid #87a0bc;
    border-radius: 8px;
    background: var(--site-white);
    box-shadow: 0 18px 42px rgba(31, 56, 89, .09);
}

.plan-card--featured {
    border-color: #78adf3;
    border-top-color: var(--site-blue);
    box-shadow: 0 24px 52px rgba(22, 119, 255, .15);
}

.plan-card:nth-child(3) {
    border-top-color: var(--site-teal);
}

.plan-card__top {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.plan-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c3d2e3;
    border-radius: 8px;
    background: #f2f6fb;
    color: var(--site-blue-dark);
}

.plan-icon svg {
    width: 21px;
    height: 21px;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    background: #eaf2ff;
    color: var(--site-blue-dark);
    font-size: 10px;
    text-transform: uppercase;
}

.plan-card h3 {
    margin: 21px 0 4px;
    font-size: 22px;
}

.plan-card > p {
    min-height: 49px;
    margin: 0;
    color: var(--site-muted);
    font-size: 13px;
}

.plan-price {
    min-height: 73px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 18px 0;
    color: var(--site-ink);
}

.plan-price span {
    align-self: flex-start;
    margin-top: 9px;
    font-size: 14px;
    font-weight: 800;
}

.plan-price strong {
    font-size: 42px;
    line-height: 1;
}

.plan-price small {
    color: var(--site-muted);
    font-size: 12px;
}

.plan-card .site-button {
    width: 100%;
}

.plan-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid #e3eaf2;
    list-style: none;
}

.plan-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #465970;
    font-size: 13px;
}

.plan-card li svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--site-teal);
}

.plans-note {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 0;
    color: #697b91;
    font-size: 12px;
    text-align: center;
}

.plans-note svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.faq-section {
    background: var(--site-white);
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: start;
}

.faq-copy {
    position: sticky;
    top: 110px;
}

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

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

.faq-list summary {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 4px;
    color: var(--site-ink);
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: var(--site-blue);
    transition: transform .2s ease;
}

.faq-list details[open] summary svg {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 680px;
    margin: -2px 0 22px;
    padding: 0 42px 0 4px;
    color: var(--site-muted);
    font-size: 14px;
}

.final-cta {
    background: var(--site-blue-dark);
    color: var(--site-white);
}

.final-cta__inner {
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.final-cta .section-kicker {
    color: #a7d9ff;
}

.final-cta h2 {
    max-width: 670px;
    margin: 0;
    font-size: 35px;
    line-height: 1.2;
}

.final-cta p:last-child {
    margin: 12px 0 0;
    color: #c8ddf4;
}

.final-cta .site-button {
    flex: 0 0 auto;
}

.site-footer {
    padding: 64px 0 0;
    background: var(--site-navy);
    color: #9db0c7;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 48px;
}

.public-brand--footer {
    color: var(--site-white);
}

.public-brand--footer small {
    color: #91a6bf;
}

.site-footer__brand p {
    max-width: 350px;
    margin: 18px 0 0;
    color: #8ea2ba;
    font-size: 13px;
}

.site-footer__grid > div:not(.site-footer__brand) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__grid > div > strong {
    margin-bottom: 7px;
    color: #edf5ff;
    font-size: 13px;
}

.site-footer__grid a:not(.public-brand) {
    color: #94a8bf;
    font-size: 12px;
    text-decoration: none;
}

.site-footer__grid a:not(.public-brand):hover {
    color: var(--site-white);
}

.site-footer__bottom {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #243954;
    color: #71869e;
    font-size: 11px;
}

/* Authentication pages share the same public foundation. */
.public-body .auth-shell {
    width: min(1120px, calc(100% - 48px));
}

.public-body .auth-aside {
    border: 1px solid #28425f;
    background: var(--site-navy-2);
    box-shadow: var(--site-shadow);
}

.public-body .auth-card,
.public-body .status-panel {
    border-color: var(--site-line);
    box-shadow: var(--site-shadow);
}

.signup-plan-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 18px;
}

.signup-plan-option {
    position: relative;
    cursor: pointer;
}

.signup-plan-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.signup-plan-option span {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    border: 1px solid #ccd9e8;
    border-radius: 7px;
    background: var(--site-white);
    color: #53657d;
    font-size: 11px;
}

.signup-plan-option strong {
    color: var(--site-ink);
    font-size: 13px;
}

.signup-plan-option input:checked + span {
    border-color: var(--site-blue);
    background: #eff6ff;
    box-shadow: 0 0 0 2px rgba(22, 119, 255, .10);
}

.signup-plan-option input:focus-visible + span {
    outline: 3px solid rgba(22, 119, 255, .30);
}

.signup-plan-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 11px 12px;
    border: 1px solid #b9d8ce;
    border-radius: 7px;
    background: #effaf6;
    color: #315e53;
    font-size: 12px;
}

.signup-plan-summary svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--site-teal);
}

@media (max-width: 1060px) {
    .public-nav nav > a {
        padding-inline: 8px;
        font-size: 13px;
    }

    .home-hero {
        background-position: 56% center;
    }

    .product-frame {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .demo-panel {
        padding: 19px;
    }

    .demo-metrics article strong {
        font-size: 16px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-layout,
    .security-layout {
        gap: 48px;
    }
}

@media (max-width: 860px) {
    .public-container,
    .public-nav {
        width: min(100% - 32px, 720px);
    }

    .public-nav {
        height: 68px;
    }

    .public-nav__toggle {
        display: inline-flex;
    }

    .public-nav nav {
        position: absolute;
        top: 59px;
        right: 0;
        width: min(330px, calc(100vw - 32px));
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 10px;
        border: 1px solid var(--site-line);
        border-radius: 8px;
        background: var(--site-white);
        box-shadow: 0 20px 50px rgba(14, 36, 66, .18);
    }

    .public-nav.menu-open nav {
        display: flex;
    }

    .public-nav nav > a,
    .public-nav nav > a:not(.public-nav__cta) {
        display: inline-flex;
        min-height: 43px;
        justify-content: flex-start;
        padding-inline: 12px;
    }

    .public-nav .public-nav__login,
    .public-nav .public-nav__cta {
        margin-left: 0;
    }

    .public-nav .public-nav__cta {
        justify-content: center;
    }

    .home-hero {
        min-height: calc(100svh - 112px);
        background-position: 64% center;
    }

    .home-hero__scrim {
        background: rgba(5, 14, 28, .48);
    }

    .home-hero__content {
        padding-block: 58px 54px;
    }

    .home-hero h1 {
        font-size: 56px;
    }

    .home-hero__headline {
        font-size: 26px;
    }

    .trust-strip__inner {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .site-section {
        padding: 78px 0;
    }

    .section-heading h2,
    .workflow-copy h2,
    .security-copy h2,
    .faq-copy h2 {
        font-size: 33px;
    }

    .product-tabs {
        width: 100%;
        justify-content: flex-start;
    }

    .product-frame {
        min-height: 610px;
        display: block;
    }

    .demo-sidebar {
        display: none;
    }

    .demo-dashboard-grid,
    .demo-driver-grid,
    .demo-report-grid {
        grid-template-columns: 1fr;
    }

    .demo-next,
    .demo-driver-result,
    .demo-category-report {
        min-height: 180px;
    }

    .demo-credit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .demo-credit-grid article:last-child {
        display: none;
    }

    .workflow-layout,
    .security-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .workflow-copy,
    .faq-copy {
        position: static;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 610px;
        margin-inline: auto;
        margin-top: 38px;
    }

    .plan-card > p {
        min-height: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 620px) {
    .public-container,
    .public-nav,
    .public-body .auth-shell {
        width: calc(100% - 28px);
    }

    .public-brand strong {
        font-size: 16px;
    }

    .home-hero {
        min-height: calc(100svh - 108px);
        background-position: 70% center;
    }

    .home-hero__scrim {
        background: rgba(5, 14, 28, .64);
    }

    .home-hero__content {
        padding-block: 42px 38px;
    }

    .home-hero h1 {
        font-size: 46px;
    }

    .home-hero__headline {
        margin-top: 15px;
        font-size: 23px;
    }

    .home-hero__lead {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.55;
    }

    .home-hero__actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 23px;
    }

    .home-hero__actions .site-button {
        width: 100%;
    }

    .home-hero__assurance {
        gap: 9px 14px;
        margin-top: 20px;
    }

    .trust-strip__inner {
        min-height: 62px;
        gap: 18px;
    }

    .trust-strip__inner strong {
        display: none;
    }

    .site-section {
        padding: 64px 0;
    }

    .section-heading h2,
    .workflow-copy h2,
    .security-copy h2,
    .faq-copy h2 {
        font-size: 29px;
    }

    .section-heading > p:last-child,
    .workflow-copy > p,
    .security-copy > p,
    .faq-copy > p {
        font-size: 14px;
    }

    .product-tabs {
        margin-top: 30px;
    }

    .product-tab {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 11px;
    }

    .product-frame {
        min-height: 560px;
    }

    .demo-topbar {
        height: 54px;
        padding-inline: 14px;
    }

    .demo-panel {
        padding: 14px;
    }

    .demo-panel__title {
        min-height: 42px;
        margin-bottom: 12px;
    }

    .demo-panel__title h3 {
        font-size: 17px;
    }

    .demo-status,
    .demo-period {
        min-height: 29px;
        padding-inline: 8px;
        font-size: 8px;
    }

    .demo-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .demo-metric,
    .demo-metrics article {
        min-height: 86px;
        padding: 10px;
    }

    .demo-metrics article strong {
        font-size: 15px;
    }

    .demo-metrics article small {
        font-size: 8px;
    }

    .demo-dashboard-grid {
        gap: 7px;
        margin-top: 7px;
    }

    .demo-chart,
    .demo-next,
    .demo-driver-form,
    .demo-driver-result,
    .demo-report-chart,
    .demo-category-report {
        padding: 12px;
    }

    .demo-bars {
        height: 110px;
    }

    .demo-next {
        display: none;
    }

    .demo-filter-row {
        grid-template-columns: 1fr auto;
    }

    .demo-filter-row > span:nth-child(2),
    .demo-filter-row > span:nth-child(3) {
        display: none;
    }

    .demo-table__row {
        grid-template-columns: .8fr .65fr 1.5fr .75fr;
        gap: 6px;
        padding-inline: 9px;
    }

    .demo-table__row > span:nth-child(4) {
        display: none;
    }

    .demo-credit-summary {
        gap: 6px;
    }

    .demo-credit-summary article {
        padding: 9px;
    }

    .demo-credit-summary strong {
        display: block;
        font-size: 12px;
    }

    .demo-credit-grid {
        grid-template-columns: 1fr;
    }

    .demo-credit-grid article:nth-child(2),
    .demo-credit-grid article:nth-child(3) {
        display: none;
    }

    .demo-report-chart svg {
        height: 160px;
    }

    .feature-cards,
    .security-points {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 230px;
    }

    .workflow-list li {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .workflow-list li > span {
        width: 40px;
        height: 40px;
    }

    .workflow-list li::before {
        top: 40px;
        left: 19px;
    }

    .workflow-list li > div {
        padding: 17px;
    }

    .security-points article {
        min-height: 145px;
    }

    .plan-card {
        padding: 22px;
    }

    .plan-price strong {
        font-size: 38px;
    }

    .faq-list summary {
        min-height: 66px;
        font-size: 14px;
    }

    .final-cta__inner {
        min-height: 310px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 28px;
        padding-block: 48px;
    }

    .final-cta h2 {
        font-size: 29px;
    }

    .final-cta .site-button {
        width: 100%;
    }

    .site-footer {
        padding-top: 48px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding-block: 18px;
    }

    .signup-plan-options {
        grid-template-columns: 1fr;
    }

    .signup-plan-option span {
        min-height: 60px;
    }
}

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

    .site-button,
    .feature-card,
    .faq-list summary svg,
    .public-nav nav > a {
        transition: none;
    }
}
