:root {
    --odax-brand-950: #08243d;
    --odax-brand-900: #0b3152;
    --odax-brand-800: #0f466f;
    --odax-brand-700: #12639a;
    --odax-brand-600: #1681bf;
    --odax-brand-500: #2aa8df;
    --odax-brand-400: #62c7ec;
    --odax-brand-200: #cceefa;
    --odax-brand-100: #eaf8fd;
    --odax-ink: #122536;
    --odax-muted: #647789;
    --odax-line: #dbe7ee;
    --odax-surface: #ffffff;
    --odax-soft: #f3f8fb;
    --odax-warm: #f6c55f;
    --odax-success: #168663;
    --odax-shadow: 0 22px 70px rgba(9, 50, 82, 0.14);
    --odax-shadow-sm: 0 12px 35px rgba(9, 50, 82, 0.10);
    --odax-radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.odax-page-body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--odax-ink);
    background:
        radial-gradient(circle at 90% 5%, rgba(98, 199, 236, 0.22), transparent 29rem),
        radial-gradient(circle at 7% 18%, rgba(42, 168, 223, 0.10), transparent 25rem),
        #fff;
    line-height: 1.55;
}

.odax-page a {
    color: inherit;
    text-decoration: none;
}

.odax-page button,
.odax-page input,
.odax-page textarea {
    font: inherit;
}

.odax-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.odax-page .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(219, 231, 238, 0.8);
}

.odax-page .nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.odax-page .brand {
    display: flex;
    align-items: center;
    min-width: max-content;
}

.odax-page .brand img {
    display: block;
    width: min(100%, 320px);
    height: auto;
}

.odax-page .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.odax-page .nav-links a {
    padding: 9px 11px;
    border-radius: 10px;
    color: #3e586b;
    font-size: 14px;
    font-weight: 650;
}

.odax-page .nav-links a:hover,
.odax-page .nav-links a.active {
    color: var(--odax-brand-800);
    background: var(--odax-brand-100);
}

.odax-page .nav-cta {
    padding: 11px 17px !important;
    background: var(--odax-brand-800) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(15, 70, 111, 0.18);
}

.odax-page .menu-btn {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--odax-line);
    background: white;
    color: var(--odax-brand-900);
}

.odax-page .hero {
    padding: 74px 0 50px;
    overflow: hidden;
}

.odax-page .hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 58px;
    align-items: center;
}

.odax-page .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border: 1px solid #b8e5f7;
    background: rgba(234, 248, 253, 0.75);
    border-radius: 999px;
    color: var(--odax-brand-800);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.odax-page .eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--odax-success);
    box-shadow: 0 0 0 4px rgba(22, 134, 99, 0.12);
}

.odax-page .product-lockup {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0 14px;
}

.odax-page .product-logo {
    width: min(100%, 360px);
    height: auto;
}

.odax-page .product-divider {
    width: 1px;
    height: 46px;
    background: var(--odax-line);
}

.odax-page .product-sub {
    font-size: 14px;
    color: var(--odax-muted);
    line-height: 1.2;
}

.odax-page .product-sub strong {
    display: block;
    color: var(--odax-brand-700);
}

.odax-page h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.045em;
    margin: 0;
    max-width: 760px;
}

.odax-page h1 span {
    color: var(--odax-brand-600);
}

.odax-page .lead {
    font-size: 19px;
    color: #516779;
    max-width: 660px;
    margin: 24px 0 28px;
}

.odax-page .hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.odax-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 13px;
    padding: 14px 20px;
    font-weight: 750;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .2s transform, .2s box-shadow, .2s background;
}

.odax-page .btn:hover {
    transform: translateY(-2px);
}

.odax-page .btn-primary {
    background: linear-gradient(135deg, var(--odax-brand-800), var(--odax-brand-600));
    color: white;
    box-shadow: 0 15px 28px rgba(18, 99, 154, 0.22);
}

.odax-page .btn-secondary {
    background: white;
    border-color: var(--odax-line);
    color: var(--odax-brand-900);
    box-shadow: 0 8px 22px rgba(12, 56, 89, 0.08);
}

.odax-page .hero-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 30px;
    color: #60788a;
    font-size: 13px;
}

.odax-page .hero-trust span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.odax-page .check {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #e7f7f1;
    color: var(--odax-success);
    font-weight: 900;
}

.odax-page .app-stage {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.odax-page .stage-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.odax-page .orb-a {
    width: 370px;
    height: 370px;
    background: rgba(42, 168, 223, 0.12);
    right: -100px;
    top: -20px;
}

.odax-page .orb-b {
    width: 250px;
    height: 250px;
    background: rgba(246, 197, 95, 0.16);
    left: -40px;
    bottom: -30px;
}

.odax-page .app-window {
    position: relative;
    width: 100%;
    border-radius: 22px;
    background: white;
    border: 1px solid #cfe0ea;
    box-shadow: 0 32px 90px rgba(4, 39, 65, 0.23);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.odax-page .app-titlebar {
    height: 42px;
    background: #edf4f8;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 8px;
    border-bottom: 1px solid #d7e5ed;
}

.odax-page .win-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b9c9d3;
}

.odax-page .app-title {
    font-size: 11px;
    font-weight: 750;
    color: #587184;
    margin-left: 8px;
}

.odax-page .app-body {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 440px;
}

.odax-page .app-side {
    background: linear-gradient(180deg, var(--odax-brand-950), var(--odax-brand-900));
    padding: 17px 12px;
    color: white;
}

.odax-page .mini-brand {
    font-weight: 900;
    letter-spacing: .15em;
    font-size: 15px;
    padding: 0 8px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.odax-page .mini-brand small {
    display: block;
    font-size: 8px;
    color: #8ccce8;
    letter-spacing: .1em;
    margin-top: 4px;
}

.odax-page .side-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 8px;
    border-radius: 8px;
    font-size: 10px;
    color: #b9d2e1;
    margin-top: 3px;
}

.odax-page .side-item.active {
    background: rgba(98, 199, 236, 0.18);
    color: white;
}

.odax-page .side-icon {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.10);
    display: grid;
    place-items: center;
    font-size: 9px;
}

.odax-page .side-icon i,
.odax-page .feature-icon i,
.odax-page .principle-icon i,
.odax-page .floating-icon i {
    line-height: 1;
}

.odax-page .feature-icon i,
.odax-page .principle-icon i,
.odax-page .floating-icon i {
    font-size: 1.05rem;
}

.odax-page .app-content {
    padding: 17px;
    background: #f8fbfd;
}

.odax-page .app-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.odax-page .app-head h3 {
    font-size: 15px;
    margin: 0;
    color: #19354c;
}

.odax-page .app-head p {
    font-size: 9px;
    margin: 2px 0 0;
    color: #7890a0;
}

.odax-page .app-pill {
    font-size: 8px;
    background: #e5f6fc;
    color: #126a9e;
    border: 1px solid #c3eafa;
    padding: 5px 8px;
    border-radius: 999px;
    font-weight: 800;
}

.odax-page .app-tools {
    display: grid;
    grid-template-columns: 1.15fr .9fr .9fr auto;
    gap: 7px;
    margin: 14px 0 10px;
}

.odax-page .app-field,
.odax-page .app-button {
    height: 30px;
    border: 1px solid #d7e5ec;
    background: white;
    border-radius: 6px;
    padding: 7px;
    font-size: 8px;
    color: #688091;
}

.odax-page .app-button {
    background: var(--odax-brand-700);
    color: white;
    border-color: var(--odax-brand-700);
    padding-inline: 11px;
    font-weight: 800;
}

.odax-page .app-table {
    background: white;
    border: 1px solid #dbe7ed;
    border-radius: 8px;
    overflow: hidden;
}

.odax-page .table-row {
    display: grid;
    grid-template-columns: 50px 52px 1.35fr 62px 1.15fr 64px;
    min-height: 31px;
    align-items: center;
    border-bottom: 1px solid #e7eef2;
    font-size: 8px;
    color: #536c7e;
}

.odax-page .table-row:last-child {
    border-bottom: 0;
}

.odax-page .table-row > span {
    padding: 6px;
    border-right: 1px solid #edf2f5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.odax-page .table-row > span:last-child {
    border-right: 0;
    text-align: right;
}

.odax-page .table-head {
    background: #eef5f8;
    color: #35576d;
    font-weight: 800;
    min-height: 28px;
}

.odax-page .row-highlight {
    background: #f2fbff;
    box-shadow: inset 3px 0 0 var(--odax-brand-500);
}

.odax-page .app-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.odax-page .summary-box {
    background: white;
    border: 1px solid #dfeaf0;
    border-radius: 8px;
    padding: 9px;
}

.odax-page .summary-box small {
    display: block;
    font-size: 7px;
    color: #8195a3;
}

.odax-page .summary-box strong {
    font-size: 11px;
    color: #23445b;
}

.odax-page .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid #d8e7ee;
    box-shadow: var(--odax-shadow-sm);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    z-index: 3;
}

.odax-page .float-one {
    right: -24px;
    top: 105px;
}

.odax-page .float-two {
    left: -30px;
    bottom: 70px;
}

.odax-page .floating-icon {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--odax-brand-100);
    color: var(--odax-brand-700);
    font-weight: 900;
}

.odax-page .floating-card strong {
    display: block;
    font-size: 11px;
}

.odax-page .floating-card small {
    display: block;
    color: #758b9a;
    font-size: 9px;
}

.odax-page .signal-bar {
    padding: 18px 0 62px;
}

.odax-page .signals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.odax-page .signal {
    padding: 18px 20px;
    border: 1px solid var(--odax-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 30px rgba(11, 49, 82, 0.05);
}

.odax-page .signal strong {
    display: block;
    font-size: 15px;
    color: var(--odax-brand-900);
}

.odax-page .signal span {
    font-size: 12px;
    color: var(--odax-muted);
}

.odax-page section {
    padding: 86px 0;
}

.odax-page .soft-section {
    background: linear-gradient(180deg, #f5fafc, #eef7fb);
}

.odax-page .section-kicker {
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--odax-brand-600);
    margin-bottom: 10px;
}

.odax-page .section-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
    margin: 0;
    max-width: 820px;
}

.odax-page .section-intro {
    color: var(--odax-muted);
    font-size: 17px;
    max-width: 760px;
    margin: 18px 0 0;
}

.odax-page .difference-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 32px;
    margin-top: 42px;
}

.odax-page .quote-card {
    border-radius: var(--odax-radius);
    background: linear-gradient(150deg, var(--odax-brand-950), var(--odax-brand-800));
    color: white;
    padding: 35px;
    box-shadow: var(--odax-shadow);
    position: relative;
    overflow: hidden;
}

.odax-page .quote-card::after {
    content: "ODAX";
    position: absolute;
    right: -20px;
    bottom: -28px;
    font-weight: 900;
    font-size: 92px;
    color: rgba(255, 255, 255, 0.035);
    letter-spacing: .08em;
}

.odax-page .quote-card blockquote {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -.02em;
}

.odax-page .quote-card p {
    color: #a9d3e7;
    margin: 24px 0 0;
    font-size: 14px;
}

.odax-page .principles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.odax-page .principle {
    background: white;
    border: 1px solid var(--odax-line);
    border-radius: 18px;
    padding: 23px;
    box-shadow: 0 8px 26px rgba(12, 62, 96, 0.06);
}

.odax-page .principle-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--odax-brand-100);
    display: grid;
    place-items: center;
    color: var(--odax-brand-700);
    margin-bottom: 14px;
}

.odax-page .principle h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.odax-page .principle p {
    margin: 0;
    color: var(--odax-muted);
    font-size: 13px;
}

.odax-page .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 42px;
}

.odax-page .feature {
    position: relative;
    background: white;
    border: 1px solid var(--odax-line);
    border-radius: 20px;
    padding: 25px;
    min-height: 235px;
    overflow: hidden;
    transition: .25s transform, .25s box-shadow;
}

.odax-page .feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--odax-shadow-sm);
}

.odax-page .feature-number {
    position: absolute;
    right: 17px;
    top: 12px;
    color: #e7f1f6;
    font-size: 50px;
    font-weight: 900;
}

.odax-page .feature-icon {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 13px;
    background: #e8f7fd;
    color: var(--odax-brand-700);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 18px;
}

.odax-page .feature h3 {
    position: relative;
    margin: 0 0 9px;
    font-size: 18px;
}

.odax-page .feature p {
    position: relative;
    margin: 0;
    color: var(--odax-muted);
    font-size: 13px;
}

.odax-page .feature-link {
    position: absolute;
    bottom: 21px;
    font-size: 12px;
    font-weight: 800;
    color: var(--odax-brand-700);
}

.odax-page .spotlight-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    margin-top: 42px;
}

.odax-page .spotlight-main {
    background: linear-gradient(155deg, #0b3152, #11699f);
    color: white;
    border-radius: 28px;
    padding: 36px;
    min-height: 460px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--odax-shadow);
}

.odax-page .spotlight-main h3 {
    font-size: 31px;
    line-height: 1.15;
    max-width: 560px;
    margin: 0 0 14px;
    letter-spacing: -.03em;
}

.odax-page .spotlight-main p {
    max-width: 590px;
    color: #bddbea;
}

.odax-page .flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
    position: relative;
    z-index: 2;
}

.odax-page .flow-step {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 17px;
    backdrop-filter: blur(8px);
}

.odax-page .flow-step span {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 8px;
    background: var(--odax-warm);
    color: #5d460c;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 12px;
}

.odax-page .flow-step strong {
    font-size: 13px;
    display: block;
}

.odax-page .flow-step small {
    display: block;
    color: #b7d8e8;
    font-size: 10px;
    margin-top: 5px;
}

.odax-page .spotlight-main::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    right: -90px;
    bottom: -130px;
    border: 54px solid rgba(98, 199, 236, 0.10);
}

.odax-page .spot-stack {
    display: grid;
    gap: 16px;
}

.odax-page .spot-card {
    background: white;
    border: 1px solid var(--odax-line);
    border-radius: 21px;
    padding: 25px;
    min-height: 142px;
    box-shadow: 0 8px 30px rgba(9, 50, 82, 0.06);
}

.odax-page .spot-card .tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--odax-brand-700);
    background: var(--odax-brand-100);
    padding: 5px 7px;
    border-radius: 6px;
}

.odax-page .spot-card h4 {
    margin: 11px 0 5px;
    font-size: 17px;
}

.odax-page .spot-card p {
    margin: 0;
    font-size: 12px;
    color: var(--odax-muted);
}

.odax-page .audience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.odax-page .audience-single {
    grid-template-columns: 1fr;
    justify-items: center;
}

.odax-page .audience-card {
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--odax-line);
    padding: 34px;
    box-shadow: var(--odax-shadow-sm);
}

.odax-page .audience-single .audience-card {
    width: 100%;
    max-width: 920px;
}

.odax-page .audience-list {
    display: grid;
    gap: 14px;
    margin-top: 25px;
}

.odax-page .audience-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px solid #e6eef2;
}

.odax-page .audience-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.odax-page .audience-item span {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    border-radius: 9px;
    background: #e7f7f1;
    color: var(--odax-success);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.odax-page .audience-item span i {
    line-height: 1;
    font-size: .95rem;
}

.odax-page .audience-item strong {
    display: block;
    font-size: 14px;
}

.odax-page .audience-item small {
    color: var(--odax-muted);
    font-size: 12px;
}

.odax-page .not-for-all {
    background: linear-gradient(145deg, #eef8fc, #fff);
    border: 1px solid #cfe7f2;
    border-radius: 28px;
    padding: 38px;
}

.odax-page .not-for-all .big {
    font-size: 58px;
    font-weight: 900;
    color: var(--odax-brand-800);
    line-height: 1;
}

.odax-page .not-for-all h3 {
    font-size: 25px;
    margin: 14px 0 10px;
}

.odax-page .not-for-all p {
    color: var(--odax-muted);
}

.odax-page .roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-top: 42px;
}

.odax-page .phase {
    background: white;
    border: 1px solid var(--odax-line);
    border-radius: 20px;
    padding: 25px;
    position: relative;
}

.odax-page .phase::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: #d9e9f1;
    border-radius: 20px 20px 0 0;
}

.odax-page .phase.done::before {
    background: var(--odax-success);
}

.odax-page .phase.active::before {
    background: var(--odax-brand-500);
}

.odax-page .phase-status {
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--odax-muted);
}

.odax-page .phase h3 {
    margin: 10px 0 7px;
    font-size: 18px;
}

.odax-page .phase p {
    margin: 0;
    color: var(--odax-muted);
    font-size: 13px;
}

.odax-page .cta-section {
    padding: 90px 0 100px;
}

.odax-page .cta-box {
    background: linear-gradient(135deg, var(--odax-brand-950), #0b5686);
    border-radius: 32px;
    padding: 48px;
    color: white;
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 38px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(5, 43, 70, 0.25);
    overflow: hidden;
    position: relative;
}

.odax-page .cta-box::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    right: -130px;
    top: -160px;
    background: rgba(98, 199, 236, 0.10);
}

.odax-page .cta-box h2 {
    font-size: 39px;
    line-height: 1.12;
    margin: 0 0 14px;
    letter-spacing: -.035em;
    position: relative;
    z-index: 2;
}

.odax-page .cta-box p {
    color: #b9d9e8;
    position: relative;
    z-index: 2;
}

.odax-page .demo-form {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    padding: 20px;
    color: var(--odax-ink);
    display: grid;
    gap: 10px;
}

.odax-page .demo-form input,
.odax-page .demo-form textarea {
    width: 100%;
    border: 1px solid var(--odax-line);
    border-radius: 10px;
    padding: 11px 12px;
    outline: none;
    font-size: 13px;
}

.odax-page .demo-form input:focus,
.odax-page .demo-form textarea:focus {
    border-color: var(--odax-brand-400);
    box-shadow: 0 0 0 3px rgba(98, 199, 236, 0.18);
}

.odax-page .demo-form textarea {
    resize: vertical;
    min-height: 76px;
}

.odax-page .form-note {
    font-size: 11px;
    color: #8293a0;
    text-align: center;
}

.odax-page .form-success {
    border-radius: 10px;
    background: #e7f7f1;
    color: #116f53;
    padding: 11px;
    font-size: 12px;
    font-weight: 750;
}

.odax-page .validation-summary-errors,
.odax-page .field-validation-error {
    color: #c43636;
    font-size: 12px;
}

.odax-page .validation-summary-errors ul {
    margin: 0;
    padding-left: 18px;
}

.odax-page .input-validation-error {
    border-color: #d55353 !important;
    box-shadow: 0 0 0 3px rgba(213, 83, 83, 0.12);
}

.odax-page footer {
    border-top: 1px solid var(--odax-line);
    padding: 30px 0 34px;
    background: #fbfdfe;
}

.odax-page .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #6f8391;
    font-size: 12px;
}

.odax-page .footer-links {
    display: flex;
    gap: 18px;
}

@media (max-width: 980px) {
    .odax-page .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        background: white;
        border: 1px solid var(--odax-line);
        border-radius: 16px;
        padding: 12px;
        box-shadow: var(--odax-shadow-sm);
        flex-direction: column;
        align-items: stretch;
    }

    .odax-page .nav-links.open {
        display: flex;
    }

    .odax-page .menu-btn {
        display: grid;
        place-items: center;
    }

    .odax-page .hero-grid,
    .odax-page .difference-grid,
    .odax-page .spotlight-grid,
    .odax-page .audience,
    .odax-page .cta-box {
        grid-template-columns: 1fr;
    }

    .odax-page .hero {
        padding-top: 50px;
    }

    .odax-page .hero-copy {
        text-align: center;
    }

    .odax-page .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .odax-page .hero-actions,
    .odax-page .hero-trust,
    .odax-page .product-lockup {
        justify-content: center;
    }

    .odax-page .app-stage {
        min-height: 500px;
    }

    .odax-page .float-one {
        right: 0;
    }

    .odax-page .float-two {
        left: 0;
    }

    .odax-page .signals,
    .odax-page .features,
    .odax-page .roadmap {
        grid-template-columns: repeat(2, 1fr);
    }

    .odax-page .principles {
        grid-template-columns: 1fr 1fr;
    }

    .odax-page .cta-box {
        text-align: center;
    }

    .odax-page .demo-form {
        text-align: left;
    }
}

@media (max-width: 650px) {
    .odax-page .container {
        width: min(100% - 24px, 1180px);
    }

    .odax-page .nav {
        min-height: 68px;
    }

    .odax-page .brand img {
        width: min(100%, 240px);
    }

    .odax-page .hero {
        padding-top: 36px;
    }

    .odax-page .product-lockup {
        margin-top: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .odax-page .product-divider {
        width: 56px;
        height: 1px;
    }

    .odax-page h1 {
        font-size: 40px;
    }

    .odax-page .lead {
        font-size: 16px;
    }

    .odax-page .btn {
        width: 100%;
    }

    .odax-page .app-stage {
        min-height: 420px;
    }

    .odax-page .app-window {
        transform: none;
    }

    .odax-page .app-body {
        grid-template-columns: 105px 1fr;
    }

    .odax-page .app-side {
        padding: 12px 8px;
    }

    .odax-page .side-item {
        font-size: 0;
    }

    .odax-page .side-item .side-icon {
        font-size: 9px;
    }

    .odax-page .app-content {
        padding: 10px;
    }

    .odax-page .app-tools {
        grid-template-columns: 1fr 1fr;
    }

    .odax-page .app-tools .app-button {
        grid-column: span 2;
    }

    .odax-page .table-row {
        grid-template-columns: 40px 1fr 50px;
    }

    .odax-page .table-row span:nth-child(2),
    .odax-page .table-row span:nth-child(4),
    .odax-page .table-row span:nth-child(5) {
        display: none;
    }

    .odax-page .floating-card {
        display: none;
    }

    .odax-page .signals,
    .odax-page .features,
    .odax-page .roadmap,
    .odax-page .principles {
        grid-template-columns: 1fr;
    }

    .odax-page section {
        padding: 65px 0;
    }

    .odax-page .quote-card,
    .odax-page .spotlight-main,
    .odax-page .cta-box {
        padding: 28px;
    }

    .odax-page .flow {
        grid-template-columns: 1fr;
    }

    .odax-page .spotlight-main {
        min-height: auto;
    }

    .odax-page .cta-box h2 {
        font-size: 31px;
    }

    .odax-page .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .odax-page .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
