/* =========================================================
   PROCLEP — CLAIMS & RISK
   PURE CSS
   NO BOOTSTRAP
========================================================= */

.cr-page {

    --cr-navy: #061a2d;
    --cr-navy-two: #092f52;

    --cr-blue: #287cf0;
    --cr-blue-light: #59a9ff;

    --cr-orange: #f49b24;
    --cr-red: #ff6262;
    --cr-green: #42d39a;
    --cr-purple: #9b7cff;

    --cr-text: #091b2e;
    --cr-muted: #6b7b8d;

    --cr-light: #f5f8fc;
    --cr-border: #dfe7ef;

    color: var(--cr-text);

    overflow: hidden;
}


/* =========================================================
   GLOBAL
========================================================= */

.cr-container {

    width: min(1180px, calc(100% - 48px));

    margin: 0 auto;
}

.cr-section {

    padding: 110px 0;
}

.cr-white {
    background: #fff;
}

.cr-light {
    background: #f5f8fc;
}

.cr-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #6db5ff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.cr-blue {
    color: var(--cr-blue);
}


/* =========================================================
   HERO
========================================================= */

.cr-hero {

    position: relative;

    min-height: 730px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(37,132,248,.19),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            #041525,
            #082c4c 58%,
            #063a66
        );
}

.cr-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .25;

    background-image:
        linear-gradient(
            rgba(255,255,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.035) 1px,
            transparent 1px
        );

    background-size: 58px 58px;
}

.cr-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}

.cr-glow-one {

    width: 400px;

    height: 400px;

    right: -100px;

    top: -140px;

    background: rgba(38,137,255,.13);
}

.cr-glow-two {

    width: 320px;

    height: 320px;

    bottom: -160px;

    left: -150px;

    background: rgba(38,103,187,.12);
}

.cr-hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: .88fr 1.12fr;

    align-items: center;

    gap: 35px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.cr-hero-content h1 {

    max-width: 620px;

    margin: 18px 0 25px;

    font-size:
        clamp(49px, 5.3vw, 73px);

    line-height: .98;

    letter-spacing: -4px;
}

.cr-hero-content h1 span {

    display: block;

    color: var(--cr-blue-light);
}

.cr-hero-content > p {

    max-width: 520px;

    color: rgba(255,255,255,.57);

    font-size: 14px;

    line-height: 1.85;
}

.cr-hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 34px;
}

.cr-btn {

    min-height: 49px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 21px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition: .3s ease;
}

.cr-btn-primary {

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ffad2d,
            #f48612
        );

    box-shadow:
        0 12px 30px rgba(245,138,20,.22);
}

.cr-btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px rgba(245,138,20,.32);
}

.cr-btn-ghost {

    color: rgba(255,255,255,.7);

    border: 1px solid rgba(255,255,255,.14);

    background: rgba(255,255,255,.035);
}

.cr-hero-meta {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 38px;

    color: rgba(255,255,255,.28);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.cr-meta-line {

    width: 25px;

    height: 1px;

    background: rgba(100,178,255,.55);
}


/* =========================================================
   HERO RISK RADAR
========================================================= */

.cr-hero-visual {

    position: relative;

    min-height: 610px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   RADAR RINGS
========================================================= */

.cr-radar {

    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(88,172,255,.14);

    pointer-events: none;
}

.cr-radar-one {

    width: 520px;

    height: 520px;

    transform:
        scaleY(.58)
        rotate(-18deg);

    animation:
        crRadarRotate 24s linear infinite;
}

.cr-radar-two {

    width: 410px;

    height: 410px;

    transform:
        scaleX(.75)
        rotate(28deg);

    border-color:
        rgba(88,172,255,.18);

    animation:
        crRadarRotateReverse 18s linear infinite;
}

.cr-radar-three {

    width: 295px;

    height: 295px;

    border-style: dashed;

    border-color:
        rgba(88,172,255,.2);

    animation:
        crRadarPulse 4s ease-in-out infinite;
}


/* =========================================================
   RADAR SWEEP
========================================================= */

.cr-radar-sweep {

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            rgba(67,159,255,.17) 18deg,
            transparent 44deg
        );

    transform:
        rotate(-35deg);

    animation:
        crSweep 6s linear infinite;
}


/* =========================================================
   RISK CORE
========================================================= */

.cr-risk-core {

    position: relative;

    z-index: 20;

    width: 210px;

    height: 210px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(36,116,201,.75),
            rgba(4,23,41,.98) 68%
        );

    box-shadow:
        0 0 90px rgba(47,143,255,.19),
        inset 0 0 50px rgba(91,171,255,.1);
}

.cr-core-ring {

    width: 166px;

    height: 166px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border: 1px solid rgba(95,177,255,.27);

    box-shadow:
        inset 0 0 25px rgba(75,160,255,.09);
}

.cr-core-inner {

    display: flex;

    flex-direction: column;

    align-items: center;
}

.cr-core-label {

    color: rgba(255,255,255,.36);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;
}

.cr-core-inner strong {

    margin: 6px 0;

    color: #fff;

    font-size: 48px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: -3px;
}

.cr-core-inner small {

    color: #61adff;

    font-size: 5px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


/* =========================================================
   CONNECTION PATHS
========================================================= */

.cr-risk-path {

    position: absolute;

    z-index: 5;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(
            90deg,
            rgba(86,171,255,.65),
            rgba(86,171,255,0)
        );
}

.cr-path-one {

    width: 190px;

    top: 190px;

    left: 100px;

    transform: rotate(24deg);
}

.cr-path-two {

    width: 170px;

    top: 250px;

    right: 95px;

    transform: rotate(-27deg);
}

.cr-path-three {

    width: 190px;

    bottom: 190px;

    left: 100px;

    transform: rotate(-25deg);
}

.cr-path-four {

    width: 180px;

    bottom: 190px;

    right: 90px;

    transform: rotate(25deg);
}


/* =========================================================
   CLAIM NODE
========================================================= */

.cr-node {

    position: absolute;

    z-index: 25;

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 170px;

    padding: 11px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 8px;

    background:
        rgba(5,25,43,.88);

    box-shadow:
        0 22px 45px rgba(0,0,0,.25);

    backdrop-filter: blur(13px);
}

.cr-claim-node {

    left: 20px;

    top: 130px;

    transform: rotate(-5deg);
}

.cr-risk-node {

    right: 0;

    top: 210px;

    transform: rotate(5deg);
}

.cr-evidence-node {

    left: 30px;

    bottom: 130px;

    transform: rotate(4deg);
}

.cr-node-icon {

    width: 31px;

    height: 31px;

    flex: 0 0 31px;

    display: grid;

    place-items: center;

    border-radius: 6px;

    color: #61adff;

    background: rgba(70,158,244,.1);

    font-size: 10px;

    font-weight: 800;
}

.cr-risk-node .cr-node-icon {

    color: #ff7676;

    background: rgba(255,93,93,.09);
}

.cr-evidence-node .cr-node-icon {

    color: #45d39b;

    background: rgba(69,211,155,.09);
}

.cr-node small {

    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,.25);

    font-size: 5px;

    letter-spacing: 1px;
}

.cr-node strong {

    color: rgba(255,255,255,.68);

    font-size: 8px;

    font-weight: 600;
}

.cr-node-status {

    margin-left: auto;

    color: #ff7373;

    font-size: 6px;

    font-weight: 800;
}


/* =========================================================
   EXPOSURE CARD
========================================================= */

.cr-exposure-card {

    position: absolute;

    z-index: 25;

    right: 5px;

    bottom: 105px;

    width: 165px;

    padding: 15px;

    border: 1px solid rgba(255,255,255,.11);

    border-radius: 8px;

    background:
        rgba(5,25,43,.92);

    transform: rotate(-4deg);
}

.cr-exposure-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: rgba(255,255,255,.25);

    font-size: 5px;

    font-weight: 800;

    letter-spacing: 1px;
}

.cr-exposure-top b {

    padding: 4px 6px;

    border-radius: 3px;

    color: #ff7373;

    background: rgba(255,91,91,.08);

    font-size: 5px;
}

.cr-exposure-value {

    margin: 15px 0 9px;

    color: rgba(255,255,255,.85);

    font-size: 24px;

    font-weight: 500;

    letter-spacing: -1px;
}

.cr-exposure-line {

    height: 4px;

    overflow: hidden;

    border-radius: 5px;

    background: rgba(255,255,255,.08);
}

.cr-exposure-line i {

    display: block;

    width: 76%;

    height: 100%;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            #f5a129,
            #ff6565
        );
}

.cr-exposure-card > small {

    display: block;

    margin-top: 9px;

    color: rgba(255,255,255,.22);

    font-size: 5px;

    letter-spacing: .8px;
}


/* =========================================================
   EVIDENCE CARD
========================================================= */

.cr-evidence-card {

    position: absolute;

    z-index: 23;

    right: 80px;

    top: 75px;

    width: 135px;

    padding: 12px;

    border: 1px solid rgba(255,255,255,.1);

    border-radius: 7px;

    background:
        rgba(255,255,255,.035);

    transform: rotate(6deg);
}

.cr-evidence-head {

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,.27);

    font-size: 5px;

    font-weight: 800;

    letter-spacing: .8px;
}

.cr-evidence-head b {

    color: #61adff;

    font-size: 8px;
}

.cr-evidence-lines {

    margin: 14px 0;
}

.cr-evidence-lines i {

    display: block;

    height: 3px;

    margin-bottom: 5px;

    border-radius: 4px;

    background: rgba(96,173,255,.13);
}

.cr-evidence-lines i:nth-child(1) {
    width: 92%;
}

.cr-evidence-lines i:nth-child(2) {
    width: 70%;
}

.cr-evidence-lines i:nth-child(3) {
    width: 82%;
}

.cr-evidence-footer {

    color: #5baaff;

    font-size: 5px;

    font-weight: 800;

    letter-spacing: .8px;
}


/* =========================================================
   MARKERS
========================================================= */

.cr-marker {

    position: absolute;

    z-index: 30;

    width: 9px;

    height: 9px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #ff6868;

    box-shadow:
        0 0 0 5px rgba(255,104,104,.08),
        0 0 18px rgba(255,104,104,.65);
}

.cr-marker-one {

    top: 195px;

    right: 190px;
}

.cr-marker-two {

    bottom: 180px;

    right: 190px;

    background: #f4a12c;

    box-shadow:
        0 0 0 5px rgba(244,161,44,.08),
        0 0 18px rgba(244,161,44,.55);
}

.cr-marker-three {

    top: 330px;

    left: 100px;

    background: #46d39b;

    box-shadow:
        0 0 0 5px rgba(70,211,155,.08),
        0 0 18px rgba(70,211,155,.55);
}


/* =========================================================
   LABELS
========================================================= */

.cr-orbit-label {

    position: absolute;

    z-index: 30;

    color: rgba(255,255,255,.25);

    font-size: 5px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.cr-label-one {

    top: 95px;

    left: 190px;
}

.cr-label-two {

    top: 390px;

    right: 100px;
}

.cr-label-three {

    bottom: 100px;

    left: 190px;
}

.cr-visual-caption {

    position: absolute;

    right: 15px;

    bottom: 28px;

    color: rgba(255,255,255,.18);

    font-size: 6px;

    letter-spacing: 2px;
}


/* =========================================================
   RADAR ANIMATIONS
========================================================= */

@keyframes crRadarRotate {

    from {
        transform:
            scaleY(.58)
            rotate(-18deg);
    }

    to {
        transform:
            scaleY(.58)
            rotate(342deg);
    }
}

@keyframes crRadarRotateReverse {

    from {
        transform:
            scaleX(.75)
            rotate(28deg);
    }

    to {
        transform:
            scaleX(.75)
            rotate(-332deg);
    }
}

@keyframes crRadarPulse {

    0%,100% {
        opacity: .5;
        transform: scale(.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes crSweep {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   INTRO
========================================================= */

.cr-intro {

    display: grid;

    grid-template-columns: 170px 1fr;

    gap: 80px;
}

.cr-section-marker {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

    padding-top: 10px;
}

.cr-section-marker span {

    color: var(--cr-blue);

    font-size: 28px;

    font-weight: 700;
}

.cr-section-marker i {

    width: 35px;

    height: 1px;

    background: var(--cr-border);
}

.cr-section-marker small {

    color: #9aa7b5;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.cr-intro-content {

    max-width: 820px;
}

.cr-intro-content h2 {

    margin: 15px 0 25px;

    font-size:
        clamp(39px,4.4vw,57px);

    line-height: 1.04;

    letter-spacing: -2.7px;
}

.cr-intro-content h2 span {

    display: block;

    color: var(--cr-blue);
}

.cr-intro-content p {

    max-width: 710px;

    color: var(--cr-muted);

    font-size: 13px;

    line-height: 1.9;
}

.cr-intro-content .cr-intro-lead {

    color: #354a5d;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   HEADINGS
========================================================= */

.cr-heading {

    max-width: 720px;

    margin-bottom: 55px;
}

.cr-heading h2 {

    margin: 15px 0;

    font-size:
        clamp(38px,4vw,54px);

    line-height: 1.03;

    letter-spacing: -2.3px;
}

.cr-heading h2 span {

    color: var(--cr-blue);
}

.cr-heading p {

    max-width: 550px;

    color: var(--cr-muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.cr-capability-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 1px;

    border: 1px solid var(--cr-border);

    background: var(--cr-border);
}

.cr-capability-card {

    position: relative;

    min-height: 340px;

    padding: 28px;

    background: #fff;

    transition: .3s ease;
}

.cr-capability-card:hover {

    z-index: 2;

    transform: translateY(-6px);

    box-shadow:
        0 25px 55px rgba(18,62,98,.1);
}

.cr-cap-number {

    color: #a0adba;

    font-size: 8px;

    font-weight: 800;
}

.cr-cap-icon {

    width: 49px;

    height: 49px;

    display: grid;

    place-items: center;

    margin: 34px 0 23px;

    border-radius: 9px;

    color: var(--cr-blue);

    background: #edf5ff;

    font-size: 16px;

    font-weight: 800;
}

.cr-cap-icon.cr-orange {

    color: #f39b29;

    background: #fff4e5;
}

.cr-cap-icon.cr-green {

    color: #36c991;

    background: #eafaf4;
}

.cr-cap-icon.cr-purple {

    color: #9074e8;

    background: #f1edff;
}

.cr-capability-card h3 {

    margin: 0 0 11px;

    font-size: 16px;
}

.cr-capability-card p {

    max-width: 225px;

    margin: 0;

    color: var(--cr-muted);

    font-size: 14px;

    line-height: 1.85;
}

.cr-cap-tags {

    position: absolute;

    left: 28px;

    bottom: 25px;

    display: flex;

    flex-wrap: wrap;

    gap: 5px;
}

.cr-cap-tags span {

    padding: 5px 6px;

    border: 1px solid var(--cr-border);

    border-radius: 3px;

    color: #8795a4;

    font-size: 5px;

    font-weight: 800;

    letter-spacing: .6px;
}


/* =========================================================
   NETWORK SECTION
========================================================= */

.cr-network {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.cr-network-visual {

    position: relative;

    min-height: 500px;

    overflow: hidden;

    border: 1px solid #dce6ef;

    background:
        radial-gradient(
            circle at center,
            rgba(43,128,235,.09),
            transparent 36%
        ),
        #f7fafd;
}

.cr-network-grid {

    position: absolute;

    inset: 0;

    opacity: .65;

    background-image:
        linear-gradient(#e5edf4 1px, transparent 1px),
        linear-gradient(90deg,#e5edf4 1px,transparent 1px);

    background-size: 38px 38px;
}

.cr-network-center {

    position: absolute;

    left: 50%;

    top: 50%;

    z-index: 5;

    width: 135px;

    height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    background:
        radial-gradient(
            circle,
            #277edb,
            #0c4c89
        );

    box-shadow:
        0 20px 45px rgba(31,112,207,.23);
}

.cr-network-center span {

    color: rgba(255,255,255,.55);

    font-size: 5px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.cr-network-center strong {

    margin-top: 7px;

    color: #fff;

    font-size: 12px;

    letter-spacing: .5px;
}

.cr-net-node {

    position: absolute;

    z-index: 6;

    padding: 8px 11px;

    border: 1px solid #d6e1eb;

    border-radius: 5px;

    color: #567084;

    background: #fff;

    box-shadow:
        0 8px 22px rgba(19,62,97,.07);

    font-size: 5px;

    font-weight: 800;

    letter-spacing: .8px;
}

.net-contract {

    left: 40px;

    top: 80px;
}

.net-event {

    right: 40px;

    top: 80px;
}

.net-correspondence {

    left: 20px;

    top: 245px;
}

.net-document {

    right: 20px;

    top: 245px;
}

.net-claim {

    left: 60px;

    bottom: 75px;

}

.net-risk {

    right: 60px;

    bottom: 75px;

    color: #d66c6c;

    border-color: #f2d7d7;

    background: #fff9f9;
}


/* network lines */

.cr-network-line {

    position: absolute;

    z-index: 2;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(41,125,231,.05),
            rgba(41,125,231,.5),
            rgba(41,125,231,.05)
        );

    transform-origin: left center;
}

.line-1 {

    width: 220px;

    left: 130px;

    top: 170px;

    transform: rotate(30deg);
}

.line-2 {

    width: 220px;

    left: 145px;

    top: 200px;

    transform: rotate(-30deg);
}

.line-3 {

    width: 220px;

    left: 130px;

    top: 270px;

    transform: rotate(-30deg);
}

.line-4 {

    width: 220px;

    left: 145px;

    top: 300px;

    transform: rotate(30deg);
}

.line-5 {

    width: 180px;

    left: 160px;

    top: 250px;

    transform: rotate(0deg);
}


/* network content */

.cr-network-content h2 {

    max-width: 530px;

    margin: 15px 0 22px;

    font-size:
        clamp(38px,4vw,54px);

    line-height: 1.04;

    letter-spacing: -2.3px;
}

.cr-network-content h2 span {

    display: block;

    color: var(--cr-blue);
}

.cr-network-content p {

    max-width: 510px;

    color: var(--cr-muted);

    font-size: 11px;

    line-height: 1.9;
}

.cr-text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;

    color: var(--cr-blue);

    text-decoration: none;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .6px;
}

.cr-text-link span {

    font-size: 13px;

    transition: .3s ease;
}

.cr-text-link:hover span {

    transform: translateX(5px);
}


/* =========================================================
   DARK PROCESS
========================================================= */

.cr-dark {

    color: #fff;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(44,130,235,.14),
            transparent 30%
        ),
        #061a2d;
}

.cr-dark-heading {

    max-width: 650px;

    margin-bottom: 70px;
}

.cr-dark-heading h2 {

    margin: 15px 0 0;

    font-size:
        clamp(40px,4.5vw,58px);

    line-height: 1;

    letter-spacing: -2.7px;
}

.cr-dark-heading h2 span {

    color: var(--cr-blue-light);
}

.cr-process {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 30px;
}

.cr-process-line {

    position: absolute;

    left: 4%;

    right: 4%;

    top: 30px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(86,171,255,.5),
            rgba(86,171,255,.08)
        );
}

.cr-process-item {

    position: relative;

    z-index: 2;
}

.cr-process-number {

    margin-bottom: 13px;

    color: rgba(255,255,255,.24);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;
}

.cr-process-dot {

    width: 10px;

    height: 10px;

    margin-bottom: 35px;

    border: 2px solid #59a9ff;

    border-radius: 50%;

    background: #061a2d;

    box-shadow:
        0 0 18px rgba(89,169,255,.45);
}

.cr-process-item h3 {

    margin: 0 0 10px;

    font-size: 18px;
}

.cr-process-item p {

    max-width: 220px;

    margin: 0;

    color: rgba(255,255,255,.4);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FEATURED CLAIM
========================================================= */

.cr-featured {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    min-height: 500px;

    border: 1px solid var(--cr-border);

    background: #fff;
}

.cr-featured-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px;
}

.cr-featured-content h2 {

    margin: 15px 0 20px;

    font-size:
        clamp(36px,4vw,52px);

    line-height: 1.04;

    letter-spacing: -2.4px;
}

.cr-featured-content h2 span {

    display: block;

    color: var(--cr-blue);
}

.cr-featured-content p {

    max-width: 450px;

    color: var(--cr-muted);

    font-size: 11px;

    line-height: 1.9;
}

.cr-featured-content .cr-btn {

    align-self: flex-start;

    margin-top: 25px;
}


/* =========================================================
   CLAIM MAP
========================================================= */

.cr-featured-visual {

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(43,126,235,.18),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #061b30,
            #0a3b67
        );
}

.cr-claim-map {

    position: absolute;

    inset: 0;
}

.cr-map-center {

    position: absolute;

    left: 50%;

    top: 50%;

    z-index: 5;

    width: 135px;

    height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    background:
        radial-gradient(
            circle,
            #236ead,
            #061a2d 70%
        );

    border: 1px solid rgba(90,171,255,.3);

    box-shadow:
        0 0 70px rgba(51,148,255,.18);
}

.cr-map-center small {

    color: rgba(255,255,255,.3);

    font-size: 5px;

    letter-spacing: 1.5px;
}

.cr-map-center strong {

    margin-top: 7px;

    color: #fff;

    font-size: 17px;

    letter-spacing: 1px;
}

.cr-map-item {

    position: absolute;

    z-index: 8;

    padding: 9px 12px;

    border: 1px solid rgba(255,255,255,.12);

    border-radius: 5px;

    color: rgba(255,255,255,.55);

    background: rgba(255,255,255,.04);

    font-size: 5px;

    font-weight: 800;

    letter-spacing: .9px;

    backdrop-filter: blur(10px);
}

.map-contract {

    left: 70px;

    top: 90px;
}

.map-event {

    right: 70px;

    top: 80px;

    color: #f6a22d;
}

.map-doc {

    left: 55px;

    bottom: 100px;
}

.map-mail {

    right: 55px;

    bottom: 100px;
}

.map-risk {

    right: 115px;

    top: 235px;

    color: #ff7373;

    border-color: rgba(255,105,105,.25);
}


/* claim map lines */

.cr-map-line {

    position: absolute;

    z-index: 3;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(88,171,255,.55),
            transparent
        );

    transform-origin: left center;
}

.map-line-one {

    width: 180px;

    left: 155px;

    top: 220px;

    transform: rotate(-32deg);
}

.map-line-two {

    width: 180px;

    left: 170px;

    top: 275px;

    transform: rotate(31deg);
}

.map-line-three {

    width: 180px;

    left: 260px;

    top: 220px;

    transform: rotate(32deg);
}

.map-line-four {

    width: 180px;

    left: 255px;

    top: 280px;

    transform: rotate(-32deg);
}

.map-line-five {

    width: 130px;

    left: 240px;

    top: 250px;

    transform: rotate(-5deg);
}


/* =========================================================
   FINAL CTA
========================================================= */

.cr-final {

    padding-top: 0;

    background: #fff;
}

.cr-final-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 65px;

    overflow: hidden;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(45,143,255,.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061a2d,
            #0a3862
        );
}

.cr-final-grid {

    position: absolute;

    inset: 0;

    opacity: .14;

    background-image:
        linear-gradient(
            rgba(255,255,255,.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.05) 1px,
            transparent 1px
        );

    background-size: 44px 44px;
}

.cr-final-content,
.cr-final-actions {

    position: relative;

    z-index: 2;
}

.cr-final-content h2 {

    max-width: 650px;

    margin: 15px 0;

    color: #fff;

    font-size:
        clamp(38px,4vw,54px);

    line-height: 1.04;

    letter-spacing: -2.4px;
}

.cr-final-content h2 span {

    display: block;

    color: #5caaff;
}

.cr-final-content p {

    max-width: 500px;

    margin: 0;

    color: rgba(255,255,255,.4);

    font-size: 11px;

    line-height: 1.8;
}

.cr-final-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .cr-hero-container {

        grid-template-columns: 1fr;
    }

    .cr-hero-content {

        max-width: 700px;

        margin: auto;

        text-align: center;
    }

    .cr-hero-content > p {

        margin-left: auto;

        margin-right: auto;
    }

    .cr-hero-actions,
    .cr-hero-meta {

        justify-content: center;
    }

    .cr-hero-visual {

        max-width: 680px;

        width: 100%;

        margin: auto;
    }

    .cr-capability-grid {

        grid-template-columns:
            repeat(2,1fr);
    }

    .cr-network {

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .cr-network-content {

        max-width: 700px;
    }

    .cr-featured {

        grid-template-columns: 1fr;
    }

    .cr-featured-visual {

        min-height: 470px;
    }

    .cr-final-box {

        flex-direction: column;

        align-items: flex-start;
    }
}


@media (max-width: 850px) {

    .cr-intro {

        grid-template-columns: 1fr;

        gap: 30px;
    }

    .cr-section-marker {

        flex-direction: row;

        align-items: center;
    }

    .cr-section-marker i {

        width: 25px;
    }

    .cr-process {

        grid-template-columns:
            repeat(2,1fr);

        gap: 50px 30px;
    }

    .cr-process-line {

        display: none;
    }
}


@media (max-width: 700px) {

    .cr-section {

        padding: 80px 0;
    }

    .cr-container {

        width:
            min(100% - 30px,1180px);
    }

    .cr-hero {

        min-height: auto;

        padding: 80px 0;
    }

    .cr-hero-content h1 {

        font-size: 44px;

        letter-spacing: -2.5px;
    }

    .cr-hero-visual {

        min-height: 500px;

        transform: scale(.88);

        transform-origin: center;
    }

    .cr-capability-grid {

        grid-template-columns: 1fr;
    }

    .cr-capability-card {

        min-height: 280px;
    }

    .cr-network-visual {

        min-height: 430px;
    }

    .cr-featured-content {

        padding: 40px 28px;
    }

    .cr-featured-visual {

        min-height: 410px;
    }

    .cr-final-box {

        padding: 40px 28px;
    }

    .cr-final-actions {

        width: 100%;

        flex-direction: column;
    }

    .cr-final-actions .cr-btn {

        width: 100%;
    }
}


@media (max-width: 500px) {

    .cr-hero-content h1 {

        font-size: 39px;
    }

    .cr-hero-actions {

        flex-direction: column;
    }

    .cr-hero-actions .cr-btn {

        width: 100%;
    }

    .cr-hero-visual {

        min-height: 430px;

        transform: scale(.72);
    }

    .cr-claim-node {

        left: 0;
    }

    .cr-risk-node {

        right: 0;
    }

    .cr-evidence-card {

        right: 20px;
    }

    .cr-exposure-card {

        right: 0;
    }

    .cr-intro-content h2,
    .cr-heading h2,
    .cr-network-content h2 {

        font-size: 36px;

        letter-spacing: -1.8px;
    }

    .cr-process {

        grid-template-columns: 1fr;
    }

    .cr-featured-content h2 {

        font-size: 34px;
    }

    .cr-map-item {

        font-size: 4px;

        padding: 7px 8px;
    }

    .map-contract {
        left: 25px;
    }

    .map-event {
        right: 25px;
    }

    .map-doc {
        left: 20px;
    }

    .map-mail {
        right: 20px;
    }

    .map-risk {
        right: 50px;
    }

    .cr-final-content h2 {

        font-size: 33px;
    }
}