/* =========================================================
   PROCLÉP — CORRESPONDENCE MANAGEMENT
========================================================= */

.cm-page {
    --cm-navy: #061b31;
    --cm-navy-2: #092c4d;
    --cm-blue: #2468df;
    --cm-blue-light: #72a7ff;
    --cm-orange: #f59b3d;
    --cm-purple: #735bd4;
    --cm-green: #32a66a;

    --cm-text: #081b30;
    --cm-muted: #718092;
    --cm-border: #e3e8ee;
    --cm-light: #f6f8fa;

    color: var(--cm-text);
    overflow: hidden;
}

.cm-page *,
.cm-page *::before,
.cm-page *::after {
    box-sizing: border-box;
}

.cm-page .container {
    width: min(1180px, calc(100% - 50px));
    margin: auto;
}

.cm-page a {
    text-decoration: none;
}

.cm-page .cm-kicker {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--cm-blue-light);

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cm-page .cm-kicker::before {
    content: "";

    width: 26px;
    height: 1px;

    background: currentColor;
}

.cm-page .cm-kicker.dark {
    color: var(--cm-blue);
}


/* =========================================================
   BUTTON
========================================================= */

.cm-page .cm-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    padding: 0 20px;

    border-radius: 3px;

    font-size: 18px;
    font-weight: 800;

    transition: .25s ease;
}

.cm-page .cm-btn-blue {
    color: #fff;
    background: var(--cm-blue);
}

.cm-page .cm-btn-blue:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 18px 40px rgba(36,104,223,.25);
}

.cm-page .cm-btn span {
    font-size: 14px;
}

.cm-page .cm-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: rgba(255,255,255,.65);

    font-size: 14px;
    font-weight: 700;
}

.cm-page .cm-text-btn span {
    color: #fff;

    font-size: 14px;
}


/* =========================================================
   HERO
========================================================= */

.cm-page .cm-hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 76% 50%,
            rgba(43,112,226,.25),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #04182b,
            #082b4c
        );
}

.cm-page .cm-hero-noise {
    position: absolute;
    inset: 0;

    opacity: .035;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.cm-page .cm-hero-line {
    position: absolute;

    height: 1px;

    background: rgba(255,255,255,.08);

    transform: rotate(-30deg);
}

.cm-page .cm-line-1 {
    width: 700px;

    right: -100px;
    top: 170px;
}

.cm-page .cm-line-2 {
    width: 900px;

    right: -250px;
    top: 500px;
}

.cm-page .cm-line-3 {
    width: 600px;

    left: -250px;
    bottom: 180px;
}

.cm-page .cm-hero .container {
    position: relative;
    z-index: 2;
}

.cm-page .cm-hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 70px;
}

.cm-page .cm-hero-index {
    color: rgba(255,255,255,.25);

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cm-page .cm-hero-main {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 50px;
}

.cm-page .cm-hero-copy {
    position: relative;
    z-index: 10;
}

.cm-page .cm-hero-copy h1 {
    margin-bottom: 25px;
    font-size: clamp(52px, 6vw, 76px);
    line-height: .94;
	margin: 22px 0 28px;
    letter-spacing: -0.05em;
}

.cm-page .cm-hero-copy h1 span {
    display: block;

    color: var(--cm-blue-light);
}

.cm-page .cm-hero-copy > p {
    max-width: 490px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.53);

    font-size: 18px;
    line-height: 1.9;
}

.cm-page .cm-hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cm-page .cm-hero-bottom {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 85px;

    color: rgba(255,255,255,.25);

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cm-page .cm-hero-bottom i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(255,255,255,.2);
}


/* =========================================================
   HERO ORBIT
========================================================= */

.cm-page .cm-hero-visual {
    position: relative;

    height: 550px;
}

.cm-page .cm-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(110,163,245,.14);

    border-radius: 50%;
}

.cm-page .orbit-one {
    width: 270px;
    height: 270px;
}

.cm-page .orbit-two {
    width: 400px;
    height: 400px;
}

.cm-page .orbit-three {
    width: 530px;
    height: 530px;

    border-color: rgba(110,163,245,.08);
}

.cm-page .cm-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 130px;
    height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(115,169,255,.4);
    border-radius: 50%;

    background: rgba(10,48,82,.8);

    box-shadow:
        0 0 60px rgba(36,104,223,.18),
        inset 0 0 30px rgba(36,104,223,.1);

    text-align: center;
}

.cm-page .cm-center-icon {
    margin-bottom: 8px;

    color: var(--cm-blue-light);

    font-size: 23px;
}

.cm-page .cm-center small {
    color: rgba(255,255,255,.4);

    font-size: 5px;
    letter-spacing: 1.5px;
}

.cm-page .cm-center strong {
    margin-top: 4px;

    color: #fff;

    font-size: 14px;
    letter-spacing: 1px;
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.cm-page .cm-float-card {
    position: absolute;
    z-index: 5;

    width: 250px;

    padding: 17px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 7px;

    background: rgba(255,255,255,.09);

    backdrop-filter: blur(20px);

    box-shadow: 0 30px 60px rgba(0,0,0,.25);
}

.cm-page .cm-card-in {
    left: 0;
    top: 85px;
}

.cm-page .cm-card-out {
    right: -10px;
    bottom: 85px;
}

.cm-page .cm-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;
}

.cm-page .cm-card-icon {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 4px;

    font-size: 14px;
    font-weight: 900;
}

.cm-page .cm-card-icon.blue {
    color: #7eb0ff;
    background: rgba(36,104,223,.2);
}

.cm-page .cm-card-icon.orange {
    color: #ffb666;
    background: rgba(245,155,61,.15);
}

.cm-page .cm-card-top small {
    color: rgba(255,255,255,.28);

    font-size: 10px;
    letter-spacing: 1px;
}

.cm-page .cm-float-card > strong {
    display: block;

    margin-bottom: 5px;

    color: #fff;

    font-size: 18px;
}

.cm-page .cm-float-card > p {
    margin: 0;

    color: rgba(255,255,255,.4);

    font-size: 18px;
}

.cm-page .cm-card-footer {
    display: flex;
    justify-content: space-between;

    margin-top: 18px;
    padding-top: 11px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.3);

    font-size: 14px;
}

.cm-page .cm-card-footer b {
    color: #83b3ff;
}

.cm-page .cm-card-footer b.green {
    color: #5fd497;
}


/* Note */

.cm-page .cm-card-note {
    position: absolute;

    right: 70px;
    top: 50px;

    width: 175px;

    padding: 13px;

    border: 0;

    background: rgba(255,255,255,.95);

    transform: rotate(3deg);
}

.cm-page .cm-note-line {
    width: 25px;
    height: 2px;

    margin-bottom: 10px;

    background: var(--cm-blue);
}

.cm-page .cm-card-note small {
    color: #7e8997;

    font-size: 10px;
    font-weight: 800;
}

.cm-page .cm-card-note p {
    margin: 7px 0 0;

    color: #21364c;

    font-size: 18px;
    line-height: 1.6;
}

.cm-page .cm-card-note strong {
    color: var(--cm-blue);
}

.cm-page .cm-floating-number {
    position: absolute;

    left: 90px;
    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 10px;
}

.cm-page .cm-floating-number strong {
    color: rgba(255,255,255,.75);

    font-size: 27px;
    letter-spacing: -.05em;
}

.cm-page .cm-floating-number span {
    color: rgba(255,255,255,.28);

    font-size: 10px;
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: 1px;
}


/* =========================================================
   STATEMENT
========================================================= */

.cm-page .cm-statement {
    padding: 150px 0;

    background: #fff;
}

.cm-page .cm-statement-label {
    margin-bottom: 35px;

    color: #98a3ae;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cm-page .cm-statement h2 {
    max-width: 900px;

    margin: 0;

    font-size: clamp(55px, 7vw, 92px);
    line-height: .92;

    letter-spacing: -.075em;
}

.cm-page .cm-statement h2 span {
    color: var(--cm-blue);
}

.cm-page .cm-statement-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-top: 65px;
}

.cm-page .cm-statement-bottom p {
    max-width: 510px;

    margin: 0;

    color: var(--cm-muted);

    font-size: 18px;
    line-height: 1.9;
}

.cm-page .cm-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #9ba6b2;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cm-page .cm-scroll-indicator span {
    width: 35px;
    height: 1px;

    background: #ccd3da;
}


/* =========================================================
   FLOW
========================================================= */

.cm-page .cm-flow {
    padding: 140px 0;

    background: var(--cm-light);
}

.cm-page .cm-section-intro {
    display: grid;
    grid-template-columns: 1fr .45fr;

    align-items: end;

    gap: 100px;
}

.cm-page .cm-section-intro h2,
.cm-page .cm-capabilities-head h2 {
    max-width: 650px;

    margin: 20px 0 0;

    font-size: clamp(48px, 6vw, 72px);
    line-height: .92;

    letter-spacing: -.07em;
}

.cm-page .cm-section-intro h2 span,
.cm-page .cm-capabilities-head h2 span {
    color: var(--cm-blue);
}

.cm-page .cm-section-intro > p {
    margin: 0;

    color: var(--cm-muted);

    font-size: 18px;
    line-height: 1.8;
}


/* Flow items */

.cm-page .cm-flow-track {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    margin-top: 110px;
}

.cm-page .cm-flow-line {
    position: absolute;

    left: 7%;
    right: 7%;
    top: 34px;

    height: 1px;

    background: #d9e0e8;
}

.cm-page .cm-flow-item {
    position: relative;

    padding: 0 17px;
}

.cm-page .cm-flow-number {
    position: absolute;

    right: 20px;
    top: -4px;

    color: #b1bbc5;

    font-size: 18px;
    font-weight: 800;
}

.cm-page .cm-flow-circle {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    border: 1px solid #d7dfe7;
    border-radius: 50%;

    background: var(--cm-light);

    transition: .3s ease;
}

.cm-page .cm-flow-circle span {
    color: #53657a;

    font-size: 18px;
}

.cm-page .cm-flow-item:hover .cm-flow-circle {
    color: #fff;

    border-color: var(--cm-blue);

    background: var(--cm-blue);

    box-shadow: 0 15px 30px rgba(36,104,223,.2);
}

.cm-page .cm-flow-item:hover .cm-flow-circle span {
    color: #fff;
}

.cm-page .cm-flow-content small {
    color: #9aa5b0;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cm-page .cm-flow-content h3 {
    margin: 9px 0 10px;

    font-size: 22px;

    letter-spacing: -.04em;
}

.cm-page .cm-flow-content p {
    margin: 0;

    color: var(--cm-muted);

    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   DARK FEATURE
========================================================= */

.cm-page .cm-feature-dark {
    position: relative;

    padding: 150px 0;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(36,104,223,.2),
            transparent 30%
        ),
        var(--cm-navy);
}

.cm-page .cm-feature-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;

    align-items: center;

    gap: 90px;
}

.cm-page .cm-feature-copy h2 {
    max-width: 580px;

    margin: 25px 0;

    font-size: clamp(50px, 6vw, 75px);
    line-height: .92;

    letter-spacing: -.07em;
}

.cm-page .cm-feature-copy h2 span {
    color: var(--cm-blue-light);
}

.cm-page .cm-feature-copy > p {
    max-width: 460px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.48);

    font-size: 18px;
    line-height: 1.9;
}

.cm-page .cm-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    padding: 14px 17px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 3px;

    color: #fff;

    font-size: 18px;
    font-weight: 800;
}

.cm-page .cm-outline-btn span {
    color: var(--cm-blue-light);

    font-size: 14px;
}


/* Document */

.cm-page .cm-document-scene {
    position: relative;

    min-height: 600px;
}

.cm-page .cm-document-back {
    position: absolute;

    width: 400px;
    height: 490px;

    left: 50%;
    top: 50%;

    transform:
        translate(-45%, -50%)
        rotate(8deg);

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.025);
}

.cm-page .cm-document {
    position: absolute;

    width: 450px;

    left: 50%;
    top: 50%;

    padding: 28px;

    transform: translate(-50%, -50%) rotate(-3deg);

    border: 1px solid #e3e7eb;

    color: var(--cm-text);

    background: #fff;

    box-shadow: 25px 35px 80px rgba(0,0,0,.35);
}

.cm-page .cm-document-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cm-page .cm-document-head small {
    display: block;

    color: #8793a0;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.cm-page .cm-document-head strong {
    display: block;

    margin-top: 5px;

    font-size: 18px;
}

.cm-page .cm-document-status {
    padding: 5px 7px;

    color: #238457;

    background: #e9f8ef;

    font-size: 5px;
    font-weight: 800;
}

.cm-page .cm-document-title {
    max-width: 320px;

    margin: 40px 0 25px;

    font-size: 27px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: -.05em;
}

.cm-page .cm-document-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.cm-page .cm-document-meta small {
    display: block;

    margin-bottom: 6px;

    color: #a0a9b2;

    font-size: 5px;
    font-weight: 800;
    letter-spacing: 1px;
}

.cm-page .cm-document-meta strong {
    font-size: 18px;
}

.cm-page .cm-document-divider {
    height: 1px;

    margin: 25px 0;

    background: #e8ebee;
}

.cm-page .cm-progress-label {
    display: flex;
    justify-content: space-between;

    margin-bottom: 8px;

    color: #89949f;

    font-size: 14px;
    font-weight: 800;
}

.cm-page .cm-progress-label b {
    color: var(--cm-blue);
}

.cm-page .cm-progress-bar {
    height: 4px;

    overflow: hidden;

    border-radius: 10px;

    background: #e9edf1;
}

.cm-page .cm-progress-bar span {
    display: block;

    width: 72%;
    height: 100%;

    background: var(--cm-blue);
}

.cm-page .cm-document-timeline {
    margin-top: 30px;
}

.cm-page .cm-doc-event {
    position: relative;

    display: flex;
    gap: 12px;

    padding-bottom: 18px;
}

.cm-page .cm-doc-event::before {
    content: "";

    position: absolute;

    left: 4px;
    top: 8px;
    bottom: 0;

    width: 1px;

    background: #e1e6eb;
}

.cm-page .cm-doc-event:last-child::before {
    display: none;
}

.cm-page .cm-doc-event > span {
    position: relative;
    z-index: 2;

    flex-shrink: 0;

    width: 9px;
    height: 9px;

    margin-top: 3px;

    border: 2px solid #cbd3dc;
    border-radius: 50%;

    background: #fff;
}

.cm-page .cm-doc-event.done > span {
    border-color: var(--cm-blue);

    background: var(--cm-blue);
}

.cm-page .cm-doc-event.current > span {
    border-color: var(--cm-blue);

    background: #fff;

    box-shadow: 0 0 0 4px rgba(36,104,223,.1);
}

.cm-page .cm-doc-event strong {
    display: block;

    font-size: 18px;
}

.cm-page .cm-doc-event small {
    display: block;

    margin-top: 4px;

    color: #929da7;

    font-size: 14px;
}

.cm-page .cm-ai-chip {
    position: absolute;

    right: 0;
    bottom: 95px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 15px;

    border: 1px solid rgba(114,167,255,.3);
    border-radius: 5px;

    background: #0b2d4e;

    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.cm-page .cm-ai-chip > span {
    color: #72a7ff;

    font-size: 15px;
}

.cm-page .cm-ai-chip small {
    display: block;

    color: #72a7ff;

    font-size: 5px;
    letter-spacing: 1px;
}

.cm-page .cm-ai-chip strong {
    display: block;

    margin-top: 4px;

    color: #fff;

    font-size: 18px;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.cm-page .cm-capabilities {
    padding: 150px 0;

    background: #fff;
}

.cm-page .cm-capabilities-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.cm-page .cm-capabilities-head > p {
    max-width: 320px;

    margin: 0 0 8px;

    color: var(--cm-muted);

    font-size: 18px;
    line-height: 1.8;
}

.cm-page .cm-cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 75px;
}

.cm-page .cm-cap {
    position: relative;

    min-height: 360px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid var(--cm-border);

    background: #fff;

    transition: .3s ease;
}

.cm-page .cm-cap:hover {
    transform: translateY(-5px);

    box-shadow: 0 25px 60px rgba(8,27,48,.08);
}

.cm-page .cm-cap-large {
    min-height: 430px;
}

.cm-page .cm-cap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cm-page .cm-cap-top span {
    color: #a4aeb8;

    font-size: 18px;
    font-weight: 800;
}

.cm-page .cm-cap-top b {
    color: #a4aeb8;

    font-size: 14px;
    letter-spacing: 1.2px;
}

.cm-page .cm-cap-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-top: 45px;
    margin-bottom: 25px;

    border-radius: 5px;

    color: var(--cm-blue);
    background: #eaf2ff;

    font-size: 19px;
}

.cm-page .cm-cap-icon.orange {
    color: #df812b;
    background: #fff0e0;
}

.cm-page .cm-cap-icon.purple {
    color: var(--cm-purple);
    background: #efecff;
}

.cm-page .cm-cap-icon.green {
    color: var(--cm-green);
    background: #e8f8ef;
}

.cm-page .cm-cap-icon.navy {
    color: var(--cm-navy);
    background: #e8edf3;
}

.cm-page .cm-cap h3 {
    max-width: 300px;

    margin: 0 0 14px;

    font-size: 25px;
    line-height: 1;

    letter-spacing: -.045em;
}

.cm-page .cm-cap p {
    max-width: 430px;

    margin: 0;

    color: var(--cm-muted);

    font-size: 14px;
    line-height: 1.8;
}

.cm-page .cm-cap > a {
    position: absolute;

    left: 30px;
    bottom: 28px;

    color: var(--cm-blue);

    font-size: 18px;
    font-weight: 800;
}


/* mini visual */

.cm-page .inward-visual {
    position: absolute;

    right: 40px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.cm-page .cm-mini-paper {
    width: 55px;
    height: 65px;

    padding: 12px;

    border: 1px solid #dce3ea;

    background: #fff;

    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.cm-page .cm-mini-paper span {
    display: block;

    height: 3px;

    margin-bottom: 7px;

    background: #e3e8ed;
}

.cm-page .cm-mini-paper span:nth-child(2) {
    width: 70%;
}

.cm-page .cm-mini-paper span:nth-child(3) {
    width: 85%;
}

.cm-page .cm-mini-arrow {
    color: var(--cm-blue);

    font-size: 18px;
}

.cm-page .cm-mini-box {
    padding: 9px 11px;

    color: #fff;

    background: var(--cm-blue);

    font-size: 14px;
    font-weight: 800;
}


/* Audit */

.cm-page .cm-audit-lines {
    position: absolute;

    right: 30px;
    bottom: 28px;

    width: 280px;
}

.cm-page .cm-audit-lines div {
    display: flex;
    justify-content: space-between;

    padding: 10px 0;

    border-top: 1px solid #edf0f3;
}

.cm-page .cm-audit-lines span {
    color: #a0a9b2;

    font-size: 14px;
}

.cm-page .cm-audit-lines b {
    color: #43566a;

    font-size: 18px;
}


/* =========================================================
   AI
========================================================= */

.cm-page .cm-ai {
    position: relative;

    padding: 150px 0;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(36,104,223,.28),
            transparent 32%
        ),
        #061b31;
}

.cm-page .cm-ai-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -200px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(114,167,255,.08);

    border-radius: 50%;
}

.cm-page .cm-ai-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 100px;
}

.cm-page .cm-ai-left h2 {
    max-width: 600px;

    margin: 25px 0;

    font-size: clamp(52px, 6vw, 75px);
    line-height: .91;

    letter-spacing: -.07em;
}

.cm-page .cm-ai-left h2 span {
    color: var(--cm-blue-light);
}

.cm-page .cm-ai-left > p {
    max-width: 460px;

    margin-bottom: 40px;

    color: rgba(255,255,255,.48);

    font-size: 18px;
    line-height: 1.9;
}

.cm-page .cm-ai-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.cm-page .cm-ai-points > div {
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.cm-page .cm-ai-points span {
    display: block;

    margin-bottom: 20px;

    color: #55718f;

    font-size: 14px;
}

.cm-page .cm-ai-points strong {
    display: block;

    margin-bottom: 7px;

    color: #fff;

    font-size: 14px;
}

.cm-page .cm-ai-points p {
    margin: 0;

    color: rgba(255,255,255,.35);

    font-size: 18px;
    line-height: 1.6;
}


/* AI Window */

.cm-page .cm-ai-window {
    padding: 25px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;

    background: rgba(255,255,255,.055);

    box-shadow: 0 35px 80px rgba(0,0,0,.25);
}

.cm-page .cm-ai-window-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.cm-page .cm-ai-window-top span {
    color: #74a9ff;

    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cm-page .cm-ai-window-top i {
    color: #4fd28f;

    font-size: 18px;
}

.cm-page .cm-ai-query {
    max-width: 450px;

    margin: 30px 0;
    padding: 17px;

    border: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.6);

    background: rgba(0,0,0,.14);

    font-size: 14px;
    line-height: 1.7;
}

.cm-page .cm-ai-result {
    display: flex;
    gap: 17px;

    padding: 23px;

    border: 1px solid rgba(114,167,255,.2);

    background: rgba(36,104,223,.07);
}

.cm-page .cm-ai-spark {
    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: #72a7ff;

    background: rgba(36,104,223,.16);
}

.cm-page .cm-ai-result small {
    color: #638fca;

    font-size: 5px;
    letter-spacing: 1.2px;
}

.cm-page .cm-ai-result h4 {
    margin: 8px 0;

    font-size: 18px;
}

.cm-page .cm-ai-result p {
    max-width: 400px;

    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 18px;
    line-height: 1.8;
}

.cm-page .cm-ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

    margin-top: 17px;
}

.cm-page .cm-ai-tags span {
    padding: 6px 8px;

    color: #82aff2;

    background: rgba(36,104,223,.13);

    font-size: 5px;
    font-weight: 800;
}

.cm-page .cm-ai-input {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 15px;
    padding: 12px 14px;

    border: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.25);

    font-size: 18px;
}

.cm-page .cm-ai-input b {
    color: #72a7ff;

    font-size: 18px;
}


/* =========================================================
   IMPACT
========================================================= */

.cm-page .cm-impact {
    padding: 130px 0;

    background: var(--cm-light);
}

.cm-page .cm-impact-head h2 {
    max-width: 700px;

    margin: 20px 0 0;

    font-size: clamp(50px, 6vw, 72px);
    line-height: .92;

    letter-spacing: -.07em;
}

.cm-page .cm-impact-head h2 span {
    color: var(--cm-blue);
}

.cm-page .cm-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 80px;

    border-top: 1px solid #dfe5eb;
    border-bottom: 1px solid #dfe5eb;
}

.cm-page .cm-impact-grid > div {
    padding: 35px 25px;

    border-right: 1px solid #dfe5eb;
}

.cm-page .cm-impact-grid > div:last-child {
    border-right: 0;
}

.cm-page .cm-impact-grid strong {
    display: block;

    margin-bottom: 12px;

    color: var(--cm-blue);

    font-size: 48px;

    letter-spacing: -.06em;
}

.cm-page .cm-impact-grid span {
    color: #8995a1;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
    letter-spacing: 1px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.cm-page .cm-final-cta {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            125deg,
            #061a30,
            #0a3156
        );
}

.cm-page .cm-final-circle {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -100px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(114,167,255,.12);

    border-radius: 50%;
}

.cm-page .cm-final-circle::before,
.cm-page .cm-final-circle::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(114,167,255,.08);

    border-radius: 50%;
}

.cm-page .cm-final-circle::before {
    inset: 70px;
}

.cm-page .cm-final-circle::after {
    inset: 145px;
}

.cm-page .cm-final-inner {
    position: relative;
    z-index: 2;

    max-width: 760px;
}

.cm-page .cm-final-inner h2 {
    margin: 25px 0;

    font-size: clamp(58px, 7vw, 90px);
    line-height: .9;

    letter-spacing: -.075em;
}

.cm-page .cm-final-inner h2 span {
    color: var(--cm-blue-light);
}

.cm-page .cm-final-inner p {
    max-width: 470px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.48);

    font-size: 18px;
    line-height: 1.9;
}


/* =========================================================
   1100px
========================================================= */

@media (max-width: 1100px) {

    .cm-page .cm-hero-main {
        grid-template-columns: 1fr 1fr;
    }

    .cm-page .cm-hero-copy h1 {
        font-size: 65px;
    }

    .cm-page .cm-hero-visual {
        transform: scale(.85);
    }

    .cm-page .cm-feature-layout,
    .cm-page .cm-ai-layout {
        gap: 50px;
    }

}


/* =========================================================
   850px
========================================================= */

@media (max-width: 850px) {

    .cm-page .container {
        width: min(700px, calc(100% - 40px));
    }

    .cm-page .cm-hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .cm-page .cm-hero-top {
        margin-bottom: 50px;
    }

    .cm-page .cm-hero-main {
        grid-template-columns: 1fr;
    }

    .cm-page .cm-hero-copy {
        max-width: 650px;
    }

    .cm-page .cm-hero-copy h1 {
        font-size: clamp(60px, 10vw, 82px);
    }

    .cm-page .cm-hero-visual {
        max-width: 600px;
        width: 100%;

        margin: -30px auto -70px;

        transform: scale(.8);
    }

    .cm-page .cm-hero-bottom {
        margin-top: 40px;
    }

    .cm-page .cm-section-intro,
    .cm-page .cm-capabilities-head {
        grid-template-columns: 1fr;

        display: grid;

        gap: 30px;
    }

    .cm-page .cm-flow-track {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 60px;
    }

    .cm-page .cm-flow-line {
        display: none;
    }

    .cm-page .cm-feature-layout,
    .cm-page .cm-ai-layout {
        grid-template-columns: 1fr;
    }

    .cm-page .cm-document-scene {
        max-width: 600px;

        margin: auto;
    }

    .cm-page .cm-cap-grid {
        grid-template-columns: 1fr;
    }

    .cm-page .cm-cap-large {
        min-height: 400px;
    }

    .cm-page .cm-impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cm-page .cm-impact-grid > div:nth-child(2) {
        border-right: 0;
    }

}


/* =========================================================
   600px
========================================================= */

@media (max-width: 600px) {

    .cm-page .container {
        width: calc(100% - 30px);
    }

    .cm-page .cm-hero {
        padding-top: 100px;
    }

    .cm-page .cm-hero-top {
        margin-bottom: 35px;
    }

    .cm-page .cm-hero-index {
        display: none;
    }

    .cm-page .cm-hero-copy h1 {
        font-size: 48px;
    }

    .cm-page .cm-hero-copy > p {
        font-size: 18px;
    }

    .cm-page .cm-hero-buttons {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .cm-page .cm-hero-bottom {
        flex-wrap: wrap;

        gap: 8px;
    }

    .cm-page .cm-hero-visual {
        height: 370px;

        transform: scale(.58);

        transform-origin: center;
    }

    .cm-page .cm-card-note,
    .cm-page .cm-floating-number {
        display: none;
    }

    .cm-page .cm-card-in {
        left: -15px;
    }

    .cm-page .cm-card-out {
        right: -15px;
    }


    /* Statement */

    .cm-page .cm-statement {
        padding: 90px 0;
    }

    .cm-page .cm-statement h2 {
        font-size: 46px;
    }

    .cm-page .cm-statement-bottom {
        display: block;

        margin-top: 40px;
    }

    .cm-page .cm-scroll-indicator {
        margin-top: 30px;
    }


    /* Flow */

    .cm-page .cm-flow {
        padding: 90px 0;
    }

    .cm-page .cm-section-intro h2,
    .cm-page .cm-capabilities-head h2,
    .cm-page .cm-impact-head h2 {
        font-size: 43px;
    }

    .cm-page .cm-flow-track {
        grid-template-columns: 1fr;

        margin-top: 60px;

        row-gap: 0;
    }

    .cm-page .cm-flow-item {
        display: grid;
        grid-template-columns: 68px 1fr;

        column-gap: 18px;

        padding-bottom: 45px;
    }

    .cm-page .cm-flow-number {
        right: 0;
    }

    .cm-page .cm-flow-circle {
        grid-row: span 2;

        margin: 0;
    }


    /* Feature */

    .cm-page .cm-feature-dark {
        padding: 90px 0;
    }

    .cm-page .cm-feature-copy h2,
    .cm-page .cm-ai-left h2 {
        font-size: 45px;
    }

    .cm-page .cm-document-scene {
        height: 500px;

        min-height: 500px;

        transform: scale(.78);
        transform-origin: center;
    }


    /* Capabilities */

    .cm-page .cm-capabilities {
        padding: 90px 0;
    }

    .cm-page .cm-cap-grid {
        margin-top: 50px;
    }

    .cm-page .cm-cap {
        min-height: 320px;
    }

    .cm-page .cm-cap-large {
        min-height: 380px;
    }

    .cm-page .inward-visual,
    .cm-page .cm-audit-lines {
        display: none;
    }


    /* AI */

    .cm-page .cm-ai {
        padding: 90px 0;
    }

    .cm-page .cm-ai-points {
        grid-template-columns: 1fr;
    }

    .cm-page .cm-ai-window {
        padding: 15px;
    }

    .cm-page .cm-ai-result {
        padding: 15px;
    }


    /* Impact */

    .cm-page .cm-impact {
        padding: 90px 0;
    }

    .cm-page .cm-impact-grid {
        margin-top: 50px;
    }

    .cm-page .cm-impact-grid > div {
        padding: 25px 15px;
    }

    .cm-page .cm-impact-grid strong {
        font-size: 36px;
    }


    /* CTA */

    .cm-page .cm-final-cta {
        min-height: 500px;
    }

    .cm-page .cm-final-inner h2 {
        font-size: 50px;
    }

}


/* =========================================================
   400px
========================================================= */

@media (max-width: 400px) {

    .cm-page .cm-hero-copy h1 {
        font-size: 43px;
    }

    .cm-page .cm-hero-visual {
        transform: scale(.48);

        margin-top: -60px;
        margin-bottom: -120px;
    }

    .cm-page .cm-float-card {
        width: 230px;
    }

    .cm-page .cm-statement h2,
    .cm-page .cm-section-intro h2,
    .cm-page .cm-capabilities-head h2,
    .cm-page .cm-impact-head h2 {
        font-size: 38px;
    }

    .cm-page .cm-feature-copy h2,
    .cm-page .cm-ai-left h2 {
        font-size: 40px;
    }

    .cm-page .cm-document-scene {
        transform: scale(.63);
    }

    .cm-page .cm-impact-grid {
        grid-template-columns: 1fr;
    }

    .cm-page .cm-impact-grid > div {
        border-right: 0;
        border-bottom: 1px solid #dfe5eb;
    }

    .cm-page .cm-impact-grid > div:last-child {
        border-bottom: 0;
    }

    .cm-page .cm-final-inner h2 {
        font-size: 43px;
    }

}