/* =========================================================
   PROCLÉP — CONTRACT INTELLIGENCE
========================================================= */

.ci-page {

    --ci-navy: #061a2d;
    --ci-navy-2: #092e50;

    --ci-blue: #286de0;
    --ci-blue-light: #74a9ff;

    --ci-orange: #f49a3b;
    --ci-red: #e65e64;
    --ci-yellow: #e6a52f;
    --ci-purple: #765ed6;
    --ci-green: #31a66c;

    --ci-text: #071c31;
    --ci-muted: #758291;

    --ci-border: #e1e7ed;
    --ci-light: #f6f8fa;

    color: var(--ci-text);

    overflow: hidden;
}


.ci-page *,
.ci-page *::before,
.ci-page *::after {
    box-sizing: border-box;
}


.ci-page .container {

    width: min(1180px, calc(100% - 50px));

    margin: auto;
}


.ci-page a {
    text-decoration: none;
}


.ci-page .ci-kicker {

    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--ci-blue-light);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


.ci-page .ci-kicker::before {

    content: "";

    width: 27px;
    height: 1px;

    background: currentColor;
}


.ci-page .ci-kicker.dark {
    color: var(--ci-blue);
}


/* =========================================================
   BUTTON
========================================================= */

.ci-page .ci-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    min-height: 49px;

    padding: 0 19px;

    border-radius: 3px;

    color: #fff;

    background: var(--ci-blue);

    font-size: 9px;
    font-weight: 800;

    transition: .3s ease;
}


.ci-page .ci-btn:hover {

    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(40,109,224,.3);
}


.ci-page .ci-btn span {

    font-size: 14px;
}


/* =========================================================
   HERO
========================================================= */

.ci-page .ci-hero {

    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background:

        radial-gradient(
            circle at 78% 50%,
            rgba(40,109,224,.25),
            transparent 30%
        ),

        linear-gradient(
            120deg,
            #04182a,
            #092e50
        );
}


.ci-page .ci-grid-bg {

    position: absolute;
    inset: 0;

    opacity: .08;

    background-image:

        linear-gradient(
            rgba(255,255,255,.2) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.2) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 80%
        );
}


.ci-page .ci-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    opacity: .2;
}


.ci-page .ci-glow-1 {

    width: 350px;
    height: 350px;

    right: 5%;
    top: 10%;

    background: #286de0;
}


.ci-page .ci-glow-2 {

    width: 250px;
    height: 250px;

    left: 30%;
    bottom: -100px;

    background: #765ed6;
}


.ci-page .ci-hero .container {

    position: relative;
    z-index: 3;
}


.ci-page .ci-hero-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 65px;
}


.ci-page .ci-index {

    color: rgba(255,255,255,.25);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
}


.ci-page .ci-hero-layout {

    display: grid;

    grid-template-columns: .82fr 1.18fr;

    align-items: center;

    gap: 50px;
}


.ci-page .ci-small-label {

    color: rgba(255,255,255,.3);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}


.ci-page .ci-hero-content h1 {

    max-width: 650px;

    margin-bottom: 25px;
    font-size: clamp(52px, 6vw, 76px);
    line-height: .94;
    letter-spacing: -0.05em;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 800;
    color: #93c5fd;
}
.ci-page .ci-hero-content h1 span {

    display: block;

    color: var(--ci-blue-light);
}


.ci-page .ci-hero-content > p {

    max-width: 490px;

    margin: 0 0 35px;

    color: rgba(255,255,255,.5);

    font-size: 18px;

    line-height: 1.9;
}


.ci-page .ci-hero-actions {

    display: flex;
    align-items: center;

    gap: 25px;
}


.ci-page .ci-outline-link {

    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: rgba(255,255,255,.6);

    font-size: 14px;
    font-weight: 700;
}


.ci-page .ci-outline-link span {

    color: #fff;

    font-size: 13px;
}


.ci-page .ci-hero-stats {

    display: flex;

    gap: 0;

    margin-top: 70px;

    border-top: 1px solid rgba(255,255,255,.12);

    padding-top: 18px;
}


.ci-page .ci-hero-stats > div {

    min-width: 115px;

    padding-right: 20px;
    margin-right: 20px;

    border-right: 1px solid rgba(255,255,255,.1);
}


.ci-page .ci-hero-stats > div:last-child {

    border: 0;
}


.ci-page .ci-hero-stats strong {

    display: block;

    margin-bottom: 6px;

    color: #fff;

    font-size: 25px;

    letter-spacing: -.05em;
}


.ci-page .ci-hero-stats span {

    color: rgba(255,255,255,.3);

    font-size: 12px;

    font-weight: 800;

    line-height: 1.5;

    letter-spacing: 1px;
}


/* =========================================================
   CONTRACT STAGE
========================================================= */

.ci-page .ci-contract-stage {

    position: relative;

    height: 610px;
}


.ci-page .ci-scan-ring {

    position: absolute;

    left: 52%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(116,169,255,.1);

    border-radius: 50%;
}


.ci-page .ring-1 {

    width: 490px;
    height: 490px;
}


.ci-page .ring-2 {

    width: 600px;
    height: 600px;

    border-color: rgba(116,169,255,.05);
}


.ci-page .ci-document-shadow {

    position: absolute;

    width: 365px;
    height: 485px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(7deg);

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.1);
}


.ci-page .ci-contract {

    position: absolute;

    width: 385px;
    height: 520px;

    left: 50%;
    top: 50%;

    padding: 28px;

    transform:
        translate(-50%, -50%)
        rotate(-3deg);

    color: var(--ci-text);

    background: #fff;

    box-shadow:
        30px 45px 80px rgba(0,0,0,.35);
}


.ci-page .ci-contract-head {

    display: flex;

    align-items: flex-start;
    justify-content: space-between;
}


.ci-page .ci-contract-brand span {

    display: block;

    color: var(--ci-blue);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}


.ci-page .ci-contract-brand small {

    display: block;

    margin-top: 3px;

    color: #a2aab2;

    font-size: 12px;

    letter-spacing: 1px;
}


.ci-page .ci-contract-number {

    color: #a0a8b1;

    font-size: 12px;

    font-weight: 700;
}


.ci-page .ci-contract-title {

    margin-top: 48px;

    font-size: 34px;

    font-weight: 800;

    line-height: .88;

    letter-spacing: -.07em;
}


.ci-page .ci-contract-meta {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 32px;
}


.ci-page .ci-contract-meta small {

    display: block;

    margin-bottom: 5px;

    color: #a0a9b2;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ci-page .ci-contract-meta strong {

    font-size: 12px;

    line-height: 1.5;
}


.ci-page .ci-contract-line {

    height: 1px;

    margin: 25px 0;

    background: #e4e8ec;
}


.ci-page .ci-text-row {

    width: 90%;
    height: 4px;

    margin-bottom: 7px;

    background: #e7eaed;
}


.ci-page .ci-text-row.wide {
    width: 100%;
}


.ci-page .ci-text-row.short {
    width: 60%;
}


.ci-page .ci-text-row.medium {
    width: 75%;
}


.ci-page .ci-highlight {

    position: relative;

    display: flex;

    gap: 8px;

    margin: 14px 0;

    padding: 9px;

    border-left: 3px solid var(--ci-red);

    background: #fff0f0;
}


.ci-page .ci-highlight.obligation {

    border-color: var(--ci-orange);

    background: #fff6e9;
}


.ci-page .ci-highlight > span {

    color: #9aa2aa;

    font-size: 12px;

    font-weight: 800;
}


.ci-page .ci-highlight > div {

    flex: 1;
}


.ci-page .ci-highlight b {

    position: absolute;

    right: 7px;
    top: 7px;

    color: var(--ci-red);

    font-size: 12px;
}


.ci-page .ci-highlight.obligation b {

    color: var(--ci-orange);
}


.ci-page .ci-contract-footer {

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 20px;

    padding-top: 9px;

    border-top: 1px solid #e8ebee;

    color: #aab1b8;

    font-size: 4px;

    letter-spacing: 1px;
}


/* =========================================================
   AI ANALYSIS CARD
========================================================= */

.ci-page .ci-ai-analysis {

    position: absolute;

    right: -10px;
    bottom: 50px;

    width: 245px;

    padding: 17px;

    border: 1px solid rgba(116,169,255,.28);

    border-radius: 6px;

    background:
        rgba(7,35,61,.92);

    backdrop-filter: blur(15px);

    box-shadow: 0 25px 50px rgba(0,0,0,.3);
}


.ci-page .ci-ai-head {

    display: flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 13px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.ci-page .ci-ai-symbol {

    width: 27px;
    height: 27px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #74a9ff;

    background: rgba(40,109,224,.15);

    font-size: 12px;
}


.ci-page .ci-ai-head small {

    display: block;

    color: #6c99d4;

    font-size: 4px;

    letter-spacing: 1px;
}


.ci-page .ci-ai-head strong {

    display: block;

    margin-top: 3px;

    color: #fff;

    font-size: 12px;
}


.ci-page .ci-live-dot {

    width: 5px;
    height: 5px;

    margin-left: auto;

    border-radius: 50%;

    background: #3dd28a;

    box-shadow: 0 0 0 4px rgba(61,210,138,.08);
}


.ci-page .ci-risk-score {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px 0;
}


.ci-page .ci-score-circle {

    width: 58px;
    height: 58px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border: 4px solid rgba(230,165,47,.25);

    border-top-color: var(--ci-yellow);

    border-radius: 50%;
}


.ci-page .ci-score-circle strong {

    color: #fff;

    font-size: 17px;

    line-height: 1;
}


.ci-page .ci-score-circle span {

    color: rgba(255,255,255,.3);

    font-size: 12px;
}


.ci-page .ci-risk-score small {

    color: #7e9abd;

    font-size: 12px;

    letter-spacing: 1px;
}


.ci-page .ci-risk-score h4 {

    margin: 4px 0;

    color: #eab55b;

    font-size: 12px;
}


.ci-page .ci-risk-score p {

    margin: 0;

    color: rgba(255,255,255,.3);

    font-size: 10px;
}


.ci-page .ci-analysis-list {

    border-top: 1px solid rgba(255,255,255,.08);
}


.ci-page .ci-analysis-list > div {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 0;

    border-bottom: 1px solid rgba(255,255,255,.05);
}


.ci-page .ci-analysis-list p {

    flex: 1;

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 10px;
}


.ci-page .ci-analysis-list b {

    font-size: 12px;

    color: #8fa0b3;
}


.ci-page .ci-dot {

    width: 5px;
    height: 5px;

    border-radius: 50%;
}


.ci-page .ci-dot.red {
    background: var(--ci-red);
}


.ci-page .ci-dot.yellow {
    background: var(--ci-yellow);
}


.ci-page .ci-dot.blue {
    background: var(--ci-blue);
}


.ci-page .ci-ai-tag {

    position: absolute;

    left: 0;
    bottom: 55px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding: 9px 12px;

    color: #75a9ff;

    border: 1px solid rgba(116,169,255,.18);

    background: rgba(7,35,61,.8);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ci-page .ci-ai-tag span {

    font-size: 18px;
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.ci-page .ci-hero-bottom {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 65px;

    color: rgba(255,255,255,.25);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.ci-page .ci-hero-bottom i {

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(255,255,255,.18);
}


/* =========================================================
   STATEMENT
========================================================= */

.ci-page .ci-statement {

    padding: 145px 0;

    background: #fff;
}


.ci-page .ci-section-number {

    margin-bottom: 30px;

    color: #a1aab3;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.ci-page .ci-statement h2 {

    max-width: 980px;

    margin: 0;

    font-size: clamp(55px, 7vw, 91px);

    line-height: .91;

    letter-spacing: -.08em;
}


.ci-page .ci-statement h2 span {

    color: var(--ci-blue);
}


.ci-page .ci-statement-bottom {

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-top: 60px;
}


.ci-page .ci-statement-bottom p {

    max-width: 520px;

    margin: 0;

    color: var(--ci-muted);

    font-size: 18px;

    line-height: 1.9;
}


.ci-page .ci-statement-mark {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #9aa5af;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ci-page .ci-statement-mark strong {

    color: var(--ci-blue);

    font-size: 15px;
}


/* =========================================================
   REVIEW
========================================================= */

.ci-page .ci-review {

    padding: 145px 0;

    background: var(--ci-light);
}


.ci-page .ci-review-head {

    display: grid;

    grid-template-columns: 1fr .45fr;

    align-items: end;

    gap: 80px;
}


.ci-page .ci-review-head h2 {

    max-width: 650px;

    margin: 20px 0 0;

    font-size: clamp(52px, 6vw, 74px);

    line-height: .91;

    letter-spacing: -.075em;
}


.ci-page .ci-review-head h2 span {

    color: var(--ci-blue);
}


.ci-page .ci-review-head > p {

    margin: 0;

    color: var(--ci-muted);

    font-size: 18px;

    line-height: 1.8;
}


/* Review Interface */

.ci-page .ci-review-interface {

    display: grid;

    grid-template-columns: 210px 1fr 250px;

    min-height: 620px;

    margin-top: 75px;

    overflow: hidden;

    border: 1px solid #dfe5ea;

    background: #fff;

    box-shadow: 0 30px 70px rgba(7,28,49,.08);
}


/* Sidebar */

.ci-page .ci-clause-sidebar {

    border-right: 1px solid var(--ci-border);

    background: #f9fafb;
}


.ci-page .ci-sidebar-head {

    display: flex;

    justify-content: space-between;

    padding: 22px 18px;

    border-bottom: 1px solid var(--ci-border);

    color: #8a96a2;

    font-size: 10px;

    letter-spacing: 1px;
}


.ci-page .ci-sidebar-head span {

    color: var(--ci-blue);
}


.ci-page .ci-clause {

    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 15px 17px;

    border-bottom: 1px solid #edf0f3;

    transition: .2s;
}


.ci-page .ci-clause:hover,
.ci-page .ci-clause.active {

    background: #fff;
}


.ci-page .ci-clause.active {

    border-left: 2px solid var(--ci-blue);
}


.ci-page .ci-clause > span {

    color: #aab3bc;

    font-size: 10px;

    font-weight: 800;
}


.ci-page .ci-clause div {

    flex: 1;
}


.ci-page .ci-clause strong {

    display: block;

    color: #34485b;

    font-size: 12px;
}


.ci-page .ci-clause small {

    display: block;

    margin-top: 4px;

    color: #a0a9b2;

    font-size: 12px;
}


.ci-page .ci-clause b {

    width: 15px;
    height: 15px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background: var(--ci-red);

    font-size: 10px;
}


.ci-page .ci-clause.warning b {

    background: var(--ci-yellow);
}


/* Center */

.ci-page .ci-review-document {

    overflow: hidden;

    background: #eef1f4;
}


.ci-page .ci-document-toolbar {

    display: flex;

    align-items: center;
    justify-content: space-between;

    height: 63px;

    padding: 0 22px;

    border-bottom: 1px solid #dfe4e8;

    background: #fff;
}


.ci-page .ci-document-toolbar > div:first-child {

    display: flex;

    align-items: center;

    gap: 9px;
}


.ci-page .ci-doc-file {

    padding: 6px;

    color: #fff;

    background: var(--ci-red);

    font-size: 12px;

    font-weight: 900;
}


.ci-page .ci-document-toolbar strong {

    color: #3e5164;

    font-size: 12px;
}


.ci-page .ci-toolbar-icons {

    display: flex;

    gap: 12px;

    color: #9aa4ae;

    font-size: 12px;
}


.ci-page .ci-page-paper {

    position: relative;

    width: 450px;

    min-height: 560px;

    margin: 35px auto;

    padding: 45px;

    background: #fff;

    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}


.ci-page .ci-paper-title {

    color: #172b40;

    font-size: 17px;

    font-weight: 900;

    letter-spacing: -.03em;
}


.ci-page .ci-paper-subtitle {

    margin-top: 6px;

    color: var(--ci-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ci-page .ci-paper-lines {

    margin: 25px 0;
}


.ci-page .ci-paper-lines span {

    display: block;

    width: 100%;

    height: 4px;

    margin-bottom: 7px;

    background: #e6eaed;
}


.ci-page .ci-paper-lines span.small {

    width: 55%;
}


.ci-page .ci-paper-clause {

    position: relative;

    display: flex;

    gap: 13px;

    margin: 22px 0;
}


.ci-page .ci-clause-number {

    color: #a2abb3;

    font-size: 12px;

    font-weight: 800;
}


.ci-page .ci-paper-clause p {

    margin: 0;

    color: #66717c;

    font-size: 12px;

    line-height: 1.9;
}


.ci-page .ci-paper-clause.flagged {

    padding: 13px;

    border-left: 3px solid var(--ci-red);

    background: #fff0f0;
}


.ci-page .ci-paper-clause.warning {

    padding: 13px;

    border-left: 3px solid var(--ci-yellow);

    background: #fff7e9;
}


.ci-page .ci-flag {

    position: absolute;

    right: -80px;

    top: 15px;

    display: flex;

    align-items: center;

    gap: 7px;

    width: 110px;

    padding: 8px;

    border: 1px solid #ffd1d1;

    background: #fff;

    box-shadow: 0 10px 20px rgba(0,0,0,.06);
}


.ci-page .ci-flag > span {

    width: 18px;
    height: 18px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background: var(--ci-red);

    font-size: 12px;
}


.ci-page .ci-flag strong {

    display: block;

    color: var(--ci-red);

    font-size: 10px;
}


.ci-page .ci-flag small {

    display: block;

    margin-top: 2px;

    color: #9ca4ac;

    font-size: 4px;
}


.ci-page .ci-flag.yellow {

    border-color: #f4dfb6;
}


.ci-page .ci-flag.yellow > span {

    background: var(--ci-yellow);
}


.ci-page .ci-flag.yellow strong {

    color: var(--ci-yellow);
}


/* Insight */

.ci-page .ci-insight-panel {

    padding: 25px;

    border-left: 1px solid var(--ci-border);

    background: #fff;
}


.ci-page .ci-insight-top {

    display: flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--ci-border);
}


.ci-page .ci-insight-top > span {

    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--ci-blue);

    background: #edf4ff;

    font-size: 12px;
}


.ci-page .ci-insight-top small {

    display: block;

    color: #8c98a3;

    font-size: 12px;

    letter-spacing: 1px;
}


.ci-page .ci-insight-top strong {

    display: block;

    margin-top: 3px;

    color: #34495d;

    font-size: 12px;
}


.ci-page .ci-insight-score {

    padding: 25px 0;

    border-bottom: 1px solid var(--ci-border);
}


.ci-page .ci-insight-score small {

    display: block;

    color: #99a3ad;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ci-page .ci-insight-score > strong {

    display: block;

    margin: 7px 0;

    color: var(--ci-red);

    font-size: 19px;
}


.ci-page .ci-score-bar {

    height: 4px;

    overflow: hidden;

    background: #edf0f2;
}


.ci-page .ci-score-bar span {

    display: block;

    width: 82%;

    height: 100%;

    background: var(--ci-red);
}


.ci-page .ci-insight-block {

    padding: 20px 0;

    border-bottom: 1px solid var(--ci-border);
}


.ci-page .ci-insight-block small,
.ci-page .ci-insight-action small {

    display: block;

    margin-bottom: 8px;

    color: #9aa4ae;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ci-page .ci-insight-block p {

    margin: 0;

    color: #657382;

    font-size: 14px;

    line-height: 1.8;
}


.ci-page .ci-insight-action {

    margin-top: 20px;

    padding: 15px;

    background: #f4f7fa;
}


.ci-page .ci-insight-action strong {

    display: block;

    margin-bottom: 12px;

    color: #33485b;

    font-size: 14px;

    line-height: 1.5;
}


.ci-page .ci-insight-action a {

    color: var(--ci-blue);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   INTELLIGENCE
========================================================= */

.ci-page .ci-intelligence {

    padding: 150px 0;

    color: #fff;

    background: var(--ci-navy);
}


.ci-page .ci-intelligence-heading h2 {

    max-width: 750px;

    margin: 22px 0 0;

    font-size: clamp(53px, 6vw, 75px);

    line-height: .9;

    letter-spacing: -.075em;
}


.ci-page .ci-intelligence-heading h2 span {

    color: var(--ci-blue-light);
}


.ci-page .ci-intelligence-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 75px;
}


.ci-page .ci-int-card {

    position: relative;

    min-height: 350px;

    padding: 30px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.035);

    transition: .3s ease;
}


.ci-page .ci-int-card:hover {

    border-color: rgba(116,169,255,.35);

    transform: translateY(-4px);
}


.ci-page .ci-int-large {

    min-height: 430px;
}


.ci-page .ci-int-wide {

    grid-column: span 2;

    min-height: 320px;
}


.ci-page .ci-int-number {

    position: absolute;

    right: 25px;
    top: 25px;

    color: rgba(255,255,255,.2);

    font-size: 12px;
}


.ci-page .ci-int-icon {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    margin-top: 25px;
    margin-bottom: 25px;

    border-radius: 5px;

    color: #74a9ff;

    background: rgba(40,109,224,.15);

    font-size: 17px;
}


.ci-page .ci-int-icon.blue {

    color: #74a9ff;

    background: rgba(40,109,224,.15);
}


.ci-page .ci-int-icon.orange {

    color: #ffb466;

    background: rgba(244,154,59,.12);
}


.ci-page .ci-int-icon.purple {

    color: #9a86ee;

    background: rgba(118,94,214,.15);
}


.ci-page .ci-int-card h3 {

    max-width: 350px;

    margin: 0 0 14px;

    color: #fff;

    font-size: 28px;

    line-height: 1;

    letter-spacing: -.05em;
}


.ci-page .ci-int-card p {

    max-width: 430px;

    margin: 0;

    color: rgba(255,255,255,.4);

    font-size: 14px;

    line-height: 1.8;
}


/* Clause map */

.ci-page .ci-clause-map {

    position: absolute;

    right: 35px;
    bottom: 35px;

    width: 270px;
}


.ci-page .ci-clause-map > div {

    display: flex;

    justify-content: space-between;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.ci-page .ci-clause-map span {

    color: rgba(255,255,255,.4);

    font-size: 10px;
}


.ci-page .ci-clause-map b {

    color: #7db0ff;

    font-size: 10px;
}


/* Risk mini */

.ci-page .ci-risk-mini {

    position: absolute;

    right: 25px;
    bottom: 30px;

    width: 220px;
}


.ci-page .ci-risk-mini > div {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.5);

    font-size: 10px;
}


.ci-page .ci-risk-mini span {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--ci-red);
}


.ci-page .ci-risk-mini b {

    margin-left: auto;

    color: var(--ci-red);

    font-size: 12px;
}


/* Date */

.ci-page .ci-date-chip {

    position: absolute;

    right: 30px;
    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.04);
}


.ci-page .ci-date-chip > strong {

    color: #fff;

    font-size: 27px;
}


.ci-page .ci-date-chip small {

    display: block;

    color: #74a9ff;

    font-size: 12px;

    font-weight: 800;
}


.ci-page .ci-date-chip span {

    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,.4);

    font-size: 10px;
}


/* Comparison */

.ci-page .ci-int-wide-content {

    display: grid;

    grid-template-columns: .6fr 1fr;

    align-items: center;

    gap: 70px;
}


.ci-page .ci-compare {

    display: flex;

    align-items: center;

    gap: 18px;
}


.ci-page .ci-version {

    flex: 1;

    padding: 17px;

    border: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.035);
}


.ci-page .ci-version.changed {

    border-color: rgba(230,94,100,.35);

    background: rgba(230,94,100,.04);
}


.ci-page .ci-version > small {

    display: block;

    margin-bottom: 15px;

    color: rgba(255,255,255,.3);

    font-size: 12px;

    letter-spacing: 1px;
}


.ci-page .ci-version > div {

    display: flex;

    justify-content: space-between;

    padding: 9px 0;

    border-top: 1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.45);

    font-size: 10px;
}


.ci-page .ci-version > div span {

    color: #fff;
}


.ci-page .ci-version.changed > div:last-child span {

    color: #ff777b;
}


.ci-page .ci-compare-arrow {

    color: var(--ci-blue-light);

    font-size: 20px;
}


/* =========================================================
   LIFECYCLE
========================================================= */

.ci-page .ci-lifecycle {

    padding: 145px 0;

    background: #fff;
}


.ci-page .ci-lifecycle-head {

    display: grid;

    grid-template-columns: 1fr .45fr;

    align-items: end;

    gap: 70px;
}


.ci-page .ci-lifecycle-head h2 {

    max-width: 700px;

    margin: 20px 0 0;

    font-size: clamp(52px, 6vw, 73px);

    line-height: .91;

    letter-spacing: -.075em;
}


.ci-page .ci-lifecycle-head h2 span {

    color: var(--ci-blue);
}


.ci-page .ci-lifecycle-head > p {

    margin: 0;

    color: var(--ci-muted);

    font-size: 18px;

    line-height: 1.8;
}


.ci-page .ci-lifecycle-track {

    position: relative;

    display: grid;

    grid-template-columns: repeat(6,1fr);

    margin-top: 90px;
}


.ci-page .ci-life-line {

    position: absolute;

    left: 7%;
    right: 7%;
    top: 29px;

    height: 1px;

    background: #dce3e9;
}


.ci-page .ci-life-item {

    position: relative;

    padding-right: 20px;
}


.ci-page .ci-life-circle {

    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    margin-bottom: 25px;

    border: 1px solid #dbe2e8;

    border-radius: 50%;

    color: #9ba6b0;

    background: #fff;

    font-size: 12px;

    font-weight: 800;
}


.ci-page .ci-life-item.active .ci-life-circle {

    color: #fff;

    border-color: var(--ci-blue);

    background: var(--ci-blue);

    box-shadow: 0 10px 25px rgba(40,109,224,.2);
}


.ci-page .ci-life-item small {

    color: #a1abb5;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


.ci-page .ci-life-item strong {

    display: block;

    margin: 7px 0;

    color: #273c50;

    font-size: 18px;

    letter-spacing: -.03em;
}


.ci-page .ci-life-item p {

    margin: 0;

    color: var(--ci-muted);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   AI SECTION
========================================================= */

.ci-page .ci-ai-section {

    position: relative;

    padding: 150px 0;

    overflow: hidden;

    color: #fff;

    background:

        radial-gradient(
            circle at 85% 50%,
            rgba(40,109,224,.28),
            transparent 30%
        ),

        var(--ci-navy);
}


.ci-page .ci-ai-orb {

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(116,169,255,.08);

    border-radius: 50%;
}


.ci-page .ci-ai-layout {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    align-items: center;

    gap: 100px;
}


.ci-page .ci-ai-copy h2 {

    max-width: 600px;

    margin: 22px 0;

    font-size: clamp(55px,6vw,75px);

    line-height: .9;

    letter-spacing: -.075em;
}


.ci-page .ci-ai-copy h2 span {

    color: var(--ci-blue-light);
}


.ci-page .ci-ai-copy > p {

    max-width: 450px;

    color: rgba(255,255,255,.43);

    font-size: 18px;

    line-height: 1.9;
}


.ci-page .ci-ai-examples {

    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-top: 35px;
}


.ci-page .ci-ai-examples span {

    width: fit-content;

    padding: 8px 11px;

    border: 1px solid rgba(255,255,255,.1);

    color: rgba(255,255,255,.45);

    background: rgba(255,255,255,.035);

    font-size: 10px;
}


/* Chat */

.ci-page .ci-chat {

    padding: 25px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 7px;

    background: rgba(255,255,255,.05);

    box-shadow: 0 40px 80px rgba(0,0,0,.25);
}


.ci-page .ci-chat-head {

    display: flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}


.ci-page .ci-chat-logo {

    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #74a9ff;

    background: rgba(40,109,224,.15);
}


.ci-page .ci-chat-head small {

    display: block;

    color: #608ac0;

    font-size: 4px;

    letter-spacing: 1px;
}


.ci-page .ci-chat-head strong {

    display: block;

    margin-top: 3px;

    font-size: 12px;
}


.ci-page .ci-online {

    margin-left: auto;

    color: #46d28a;

    font-size: 12px;
}


.ci-page .ci-chat-body {

    min-height: 330px;

    padding: 30px 0;
}


.ci-page .ci-user-message {

    max-width: 350px;

    margin-left: auto;

    padding: 13px 15px;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(0,0,0,.15);

    color: rgba(255,255,255,.55);

    font-size: 14px;

    line-height: 1.7;
}


.ci-page .ci-ai-message {

    display: flex;

    gap: 12px;

    max-width: 470px;

    margin-top: 25px;
}


.ci-page .ci-ai-avatar {

    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #74a9ff;

    background: rgba(40,109,224,.15);

    font-size: 12px;
}


.ci-page .ci-ai-message small {

    color: #6491ca;

    font-size: 12px;

    letter-spacing: 1px;
}


.ci-page .ci-ai-message p {

    margin: 9px 0;

    color: rgba(255,255,255,.58);

    font-size: 9px;

    line-height: 1.8;
}


.ci-page .ci-ai-message p strong {

    color: #fff;
}


.ci-page .ci-source {

    display: flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    padding: 9px;

    border: 1px solid rgba(255,255,255,.08);

    color: rgba(255,255,255,.4);

    background: rgba(255,255,255,.03);

    font-size: 10px;
}


.ci-page .ci-source span {

    padding: 4px 5px;

    color: #75a9ff;

    background: rgba(40,109,224,.13);

    font-size: 12px;
}


.ci-page .ci-source b {

    color: #75a9ff;
}


.ci-page .ci-chat-input {

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 13px;

    border: 1px solid rgba(255,255,255,.09);

    color: rgba(255,255,255,.25);

    font-size: 12px;
}


.ci-page .ci-chat-input b {

    color: #75a9ff;

    font-size: 12px;
}


/* =========================================================
   FINAL
========================================================= */

.ci-page .ci-final {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;

    background:

        radial-gradient(
            circle at 80% 50%,
            rgba(40,109,224,.2),
            transparent 30%
        ),

        #061a2d;
}


.ci-page .ci-final-grid {

    position: absolute;
    inset: 0;

    opacity: .06;

    background-image:

        linear-gradient(
            rgba(255,255,255,.3) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.3) 1px,
            transparent 1px
        );

    background-size: 90px 90px;
}


.ci-page .ci-final-inner {

    position: relative;

    z-index: 2;

    max-width: 850px;
}


.ci-page .ci-final-inner h2 {

    margin: 25px 0;

    font-size: clamp(58px,7vw,92px);

    line-height: .88;

    letter-spacing: -.08em;
}


.ci-page .ci-final-inner h2 span {

    display: block;

    color: var(--ci-blue-light);
}


.ci-page .ci-final-inner p {

    max-width: 470px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.42);

    font-size: 18px;

    line-height: 1.9;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px) {

    .ci-page .ci-hero-layout {

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }


    .ci-page .ci-contract-stage {

        transform: scale(.82);

        transform-origin: center;
    }


    .ci-page .ci-review-interface {

        grid-template-columns: 180px 1fr;
    }


    .ci-page .ci-insight-panel {

        display: none;
    }


    .ci-page .ci-ai-layout {

        gap: 50px;
    }


    .ci-page .ci-intelligence-grid {

        grid-template-columns: 1fr;
    }


    .ci-page .ci-int-wide {

        grid-column: span 1;
    }


    .ci-page .ci-int-wide-content {

        grid-template-columns: 1fr;
    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media(max-width:800px) {

    .ci-page .container {

        width: min(700px, calc(100% - 40px));
    }


    .ci-page .ci-hero {

        min-height: auto;

        padding: 120px 0 80px;
    }


    .ci-page .ci-hero-layout {

        grid-template-columns: 1fr;
    }


    .ci-page .ci-hero-content {

        max-width: 650px;
    }


    .ci-page .ci-contract-stage {

        max-width: 600px;

        margin: -40px auto -60px;

        transform: scale(.8);
    }


    .ci-page .ci-hero-bottom {

        margin-top: 30px;
    }


    .ci-page .ci-review-head,
    .ci-page .ci-lifecycle-head {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .ci-page .ci-lifecycle-track {

        grid-template-columns: repeat(3,1fr);

        row-gap: 55px;
    }


    .ci-page .ci-life-line {

        display: none;
    }


    .ci-page .ci-ai-layout {

        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px) {

    .ci-page .container {

        width: calc(100% - 30px);
    }


    .ci-page .ci-hero {

        padding-top: 100px;
    }


    .ci-page .ci-hero-top {

        margin-bottom: 40px;
    }


    .ci-page .ci-index {

        display: none;
    }


    .ci-page .ci-hero-content h1 {

        font-size: 52px;
    }


    .ci-page .ci-hero-content > p {

        font-size: 18px;
    }


    .ci-page .ci-hero-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .ci-page .ci-hero-stats {

        gap: 0;

        margin-top: 45px;
    }


    .ci-page .ci-hero-stats > div {

        min-width: auto;

        flex: 1;

        padding-right: 10px;

        margin-right: 10px;
    }


    .ci-page .ci-hero-stats strong {

        font-size: 20px;
    }


    .ci-page .ci-contract-stage {

        height: 400px;

        margin-top: -30px;
        margin-bottom: -100px;

        transform: scale(.56);
    }


    .ci-page .ci-ai-analysis {

        right: -25px;
    }


    .ci-page .ci-ai-tag {

        left: -20px;
    }


    .ci-page .ci-hero-bottom {

        flex-wrap: wrap;

        gap: 8px;
    }


    /* Statement */

    .ci-page .ci-statement {

        padding: 90px 0;
    }


    .ci-page .ci-statement h2 {

        font-size: 46px;
    }


    .ci-page .ci-statement-bottom {

        display: block;

        margin-top: 40px;
    }


    .ci-page .ci-statement-mark {

        margin-top: 30px;

        flex-wrap: wrap;
    }


    /* Review */

    .ci-page .ci-review {

        padding: 90px 0;
    }


    .ci-page .ci-review-head h2,
    .ci-page .ci-lifecycle-head h2 {

        font-size: 44px;
    }


    .ci-page .ci-review-interface {

        display: block;

        margin-top: 50px;
    }


    .ci-page .ci-clause-sidebar {

        display: none;
    }


    .ci-page .ci-page-paper {

        width: calc(100% - 30px);

        padding: 30px;

        transform: scale(.9);
        transform-origin: top center;

        margin-bottom: -50px;
    }


    .ci-page .ci-flag {

        right: -30px;

        transform: scale(.85);
    }


    /* Intelligence */

    .ci-page .ci-intelligence {

        padding: 90px 0;
    }


    .ci-page .ci-intelligence-heading h2 {

        font-size: 46px;
    }


    .ci-page .ci-int-card,
    .ci-page .ci-int-large {

        min-height: 340px;
    }


    .ci-page .ci-clause-map,
    .ci-page .ci-risk-mini,
    .ci-page .ci-date-chip {

        right: 20px;
        bottom: 20px;
    }


    .ci-page .ci-int-wide-content {

        gap: 30px;
    }


    .ci-page .ci-compare {

        flex-direction: column;

        align-items: stretch;
    }


    .ci-page .ci-compare-arrow {

        align-self: center;

        transform: rotate(90deg);
    }


    /* Lifecycle */

    .ci-page .ci-lifecycle {

        padding: 90px 0;
    }


    .ci-page .ci-lifecycle-track {

        grid-template-columns: 1fr 1fr;

        row-gap: 40px;

        margin-top: 55px;
    }


    /* AI */

    .ci-page .ci-ai-section {

        padding: 90px 0;
    }


    .ci-page .ci-ai-copy h2 {

        font-size: 46px;
    }


    .ci-page .ci-chat {

        padding: 15px;
    }


    /* Final */

    .ci-page .ci-final {

        min-height: 500px;
    }


    .ci-page .ci-final-inner h2 {

        font-size: 51px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:400px) {

    .ci-page .ci-hero-content h1 {

        font-size: 45px;
    }


    .ci-page .ci-contract-stage {

        transform: scale(.47);

        margin-top: -70px;

        margin-bottom: -130px;
    }


    .ci-page .ci-statement h2,
    .ci-page .ci-review-head h2,
    .ci-page .ci-intelligence-heading h2,
    .ci-page .ci-lifecycle-head h2 {

        font-size: 39px;
    }


    .ci-page .ci-lifecycle-track {

        grid-template-columns: 1fr;
    }


    .ci-page .ci-final-inner h2 {

        font-size: 43px;
    }

}