:root {
    --maroon: #800000;
    --maroon-dark: #560000;
    --maroon-deep: #320000;
    --maroon-soft: #a52a2a;

    --black: #000000;
    --ink: #111111;
    --muted: #686868;

    --white: #ffffff;
    --off-white: #f7f7f5;

    --glass: rgba(255, 255, 255, .66);
    --glass-dark: rgba(20, 0, 0, .66);

    --line: rgba(0, 0, 0, .08);
    --line-light: rgba(255, 255, 255, .14);

    --shadow: 0 25px 70px rgba(0, 0, 0, .11);
    --shadow-maroon: 0 25px 70px rgba(128, 0, 0, .22);

    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;

    --max: 1240px;

    --font-body: "DM Sans", sans-serif;
    --font-display: "Manrope", sans-serif;

}


h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: var(--font-display);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}

/* =========================================
       GLOBAL BACKGROUND
    ========================================= */

.page-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.page-glow::before,
.page-glow::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .10;
}

.page-glow::before {
    width: 420px;
    height: 420px;
    background: var(--maroon);
    top: 4%;
    left: -180px;
}

.page-glow::after {
    width: 360px;
    height: 360px;
    background: #300000;
    right: -150px;
    top: 42%;
}

/* =========================================
       HEADER
    ========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: .35s ease;
}

.site-header.scrolled {
    padding: 10px 0;
}

.nav-shell {
    width: min(calc(100% - 28px), 1180px);
    margin: auto;
    padding: 9px 10px 9px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(255, 255, 255, .75);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .07);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-radius: 999px;
    transition: .35s ease;
}

.site-header.scrolled .nav-shell {
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .12);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;

    display: grid;
    place-items: center;

    color: var(--white);
    background:
        linear-gradient(145deg, #a00000, #620000);

    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, .25),
        0 8px 22px rgba(128, 0, 0, .25);
}

.logo-mark span {
    font-size: 17px;
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #333;
    font-size: 13px;
    font-weight: 650;
    transition: .2s ease;
}

.nav-links a:hover {
    color: var(--maroon);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nav-login {
    font-size: 13px;
    font-weight: 700;
    padding: 11px 15px;
}

.nav-cta {
    color: white;
    background: var(--black);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    transition: .25s ease;
}

.nav-cta:hover {
    background: var(--maroon);
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--black);
    color: white;
    cursor: pointer;
}

/* =========================================
       HERO
    ========================================= */

.hero {
    position: relative;
    min-height: 850px;
    padding: 180px 0 100px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 70% 35%,
            rgba(128, 0, 0, .09),
            transparent 34%),
        linear-gradient(180deg,
            #fff 0%,
            #faf9f8 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .28;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(128, 0, 0, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 0, 0, .06) 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(to bottom,
            black,
            transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 51%;
}

/* =========================================
   JOB DISCOVERY HERO
========================================= */

.job-hero {
    position: relative;
    min-height: 820px;

    padding:
        180px 0 110px;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(circle at 75% 30%,
            rgba(128, 0, 0, .42),
            transparent 28%),
        radial-gradient(circle at 20% 80%,
            rgba(128, 0, 0, .18),
            transparent 28%),
        #050505;
}


.job-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .08;

    background-image:
        linear-gradient(rgba(255, 255, 255, .15) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .15) 1px,
            transparent 1px);

    background-size: 80px 80px;

    mask-image:
        linear-gradient(to bottom,
            black,
            transparent 80%);
}


.job-hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: #800000;

    filter: blur(140px);

    opacity: .20;

    pointer-events: none;
}

.glow-one {
    right: -180px;
    top: 100px;
}

.glow-two {
    left: -250px;
    bottom: -250px;
}


.job-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}


.job-hero h1 {
    margin-top: 24px;

    font-size:
        clamp(60px, 8vw, 105px);

    line-height: .86;

    letter-spacing: -.085em;

    font-weight: 900;
}


.job-hero h1 span {
    color: #a52a2a;
}


.job-hero-copy {
    max-width: 600px;

    margin:
        28px auto 0;

    color:
        rgba(255, 255, 255, .55);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   SEARCH BOX
========================================= */

.job-search-box {

    position: relative;

    display: flex;
    align-items: center;

    max-width: 900px;

    margin:
        45px auto 0;

    padding: 8px;

    border:
        1px solid rgba(255, 255, 255, .14);

    border-radius: 19px;

    background:
        rgba(255, 255, 255, .075);

    backdrop-filter:
        blur(25px);

    -webkit-backdrop-filter:
        blur(25px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .35);
}


.search-field {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 10px 18px;

    text-align: left;
}


.search-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 10px;

    background:
        rgba(128, 0, 0, .35);

    color: #e3a0a0;

    font-size: 16px;
}


.search-input-wrap {
    flex: 1;
}


.search-input-wrap label {
    display: block;

    margin-bottom: 3px;

    color:
        rgba(255, 255, 255, .4);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.search-input-wrap input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: white;

    font-size: 12px;
}


.search-input-wrap input::placeholder {
    color:
        rgba(255, 255, 255, .45);
}


.search-divider {
    width: 1px;
    height: 42px;

    background:
        rgba(255, 255, 255, .12);
}


.job-search-button {
    min-height: 58px;

    padding:
        0 25px;

    border: 0;

    border-radius: 13px;

    background:
        #800000;

    color: white;

    cursor: pointer;

    font-size: 11px;

    font-weight: 850;

    box-shadow:
        0 15px 35px rgba(128, 0, 0, .3);

    transition:
        transform .3s ease,
        background .3s ease;
}


.job-search-button span {
    margin-left: 7px;
}


.job-search-button:hover {
    transform: translateY(-2px);

    background:
        #970000;
}


/* =========================================
   POPULAR TAGS
========================================= */

.popular-searches {

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 17px;
}


.popular-label {
    color:
        rgba(255, 255, 255, .35);

    font-size: 9px;

    font-weight: 700;
}


.job-tag {
    padding:
        7px 11px;

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .045);

    color:
        rgba(255, 255, 255, .58);

    cursor: pointer;

    font-size: 8px;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.job-tag:hover {
    background:
        rgba(128, 0, 0, .35);

    color: white;

    border-color:
        rgba(128, 0, 0, .6);
}


/* =========================================
   HERO JOB PREVIEW
========================================= */

.hero-job-preview {

    position: relative;

    z-index: 2;

    max-width: 1050px;

    margin:
        70px auto 0;

    padding: 24px;

    border:
        1px solid rgba(255, 255, 255, .1);

    border-radius: 26px;

    background:
        rgba(255, 255, 255, .055);

    backdrop-filter:
        blur(25px);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .3);
}


.preview-top {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        0 4px 18px;
}


.preview-label {
    display: block;

    margin-bottom: 5px;

    color:
        #b46d6d;

    font-size: 7px;

    font-weight: 850;

    letter-spacing: .14em;
}


.preview-top strong {
    font-size: 15px;

    letter-spacing: -.03em;
}


.preview-top a {
    color:
        rgba(255, 255, 255, .55);

    font-size: 9px;

    font-weight: 700;
}


.preview-jobs {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 9px;
}


.preview-job {

    position: relative;

    display: flex;

    gap: 12px;

    padding: 16px;

    min-height: 150px;

    border:
        1px solid rgba(255, 255, 255, .08);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, .045);

    transition:
        transform .35s ease,
        background .35s ease;
}


.preview-job:hover {

    transform:
        translateY(-5px);

    background:
        rgba(128, 0, 0, .16);
}


.company-avatar {

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border-radius: 11px;

    background:
        #800000;

    color: white;

    font-size: 12px;

    font-weight: 900;
}


.preview-job-info strong {
    display: block;

    padding-right: 20px;

    font-size: 11px;
}


.preview-job-info>span {
    display: block;

    margin-top: 4px;

    color:
        rgba(255, 255, 255, .42);

    font-size: 8px;
}


.job-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 14px;
}


.job-meta small {

    padding:
        5px 7px;

    border-radius: 6px;

    background:
        rgba(255, 255, 255, .06);

    color:
        rgba(255, 255, 255, .42);

    font-size: 7px;
}


.save-job {

    position: absolute;

    right: 13px;
    top: 13px;

    border: 0;

    background: transparent;

    color:
        rgba(255, 255, 255, .35);

    cursor: pointer;

    font-size: 15px;
}


.save-job.saved {
    color: #d47b7b;
}


/* =========================================
   JOB CATEGORIES
========================================= */

.job-categories-section {

    padding:
        130px 0;

    background:
        #f7f7f5;
}


.categories-head {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;
}


.categories-head h2 {

    margin-top: 15px;

    font-size:
        clamp(48px, 6vw, 75px);

    line-height: .9;

    letter-spacing: -.075em;

    font-weight: 900;
}


.categories-head h2 span {
    color:
        #800000;
}


.view-all-link {

    padding:
        12px 16px;

    border:
        1px solid rgba(0, 0, 0, .1);

    border-radius: 10px;

    font-size: 9px;

    font-weight: 800;

    transition:
        background .25s ease,
        color .25s ease;
}


.view-all-link:hover {

    background:
        #800000;

    color:
        white;
}


.categories-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 60px;
}


.category-card {

    position: relative;

    min-height: 270px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 24px;

    overflow: hidden;

    border:
        1px solid rgba(0, 0, 0, .07);

    border-radius: 24px;

    background:
        white;

    transition:
        transform .4s cubic-bezier(.2, .8, .2, 1),
        background .4s ease,
        color .4s ease;
}


.category-card:hover {

    transform:
        translateY(-8px);

    background:
        #800000;

    color:
        white;
}


.category-number {

    color:
        rgba(128, 0, 0, .3);

    font-size: 9px;

    font-weight: 900;
}


.category-card:hover .category-number {
    color:
        rgba(255, 255, 255, .4);
}


.category-icon {

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background:
        #f5eeee;

    color:
        #800000;

    font-size: 17px;

    font-weight: 800;
}


.category-card:hover .category-icon {

    background:
        rgba(255, 255, 255, .12);

    color:
        white;
}


.category-content h3 {

    font-size: 23px;

    letter-spacing: -.04em;
}


.category-content p {

    max-width: 230px;

    margin-top: 8px;

    color:
        #888;

    font-size: 10px;

    line-height: 1.55;
}


.category-card:hover .category-content p {

    color:
        rgba(255, 255, 255, .58);
}


.category-arrow {

    position: absolute;

    top: 22px;
    right: 22px;

    font-size: 17px;

    opacity: .25;
}


.category-card:hover .category-arrow {
    opacity: 1;

    transform:
        translate(3px, -3px);
}


/* =========================================
   TAG DISCOVERY
========================================= */

.job-tags-section {

    padding:
        130px 0;

    background:
        white;
}


.tags-layout {

    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 100px;

    align-items: center;
}


.tags-intro h2 {

    margin-top: 15px;

    font-size:
        clamp(48px, 6vw, 75px);

    line-height: .9;

    letter-spacing: -.075em;

    font-weight: 900;
}


.tags-intro h2 span {
    color:
        #800000;
}


.tags-intro p {

    max-width: 420px;

    margin-top: 20px;

    color:
        #777;

    font-size: 13px;

    line-height: 1.7;
}


.tags-cloud {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 9px;
}


.tags-cloud a {

    padding:
        13px 17px;

    border:
        1px solid rgba(0, 0, 0, .09);

    border-radius: 999px;

    background:
        #fafafa;

    color:
        #333;

    font-size: 10px;

    font-weight: 650;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease;
}


.tags-cloud a:nth-child(3n) {
    padding:
        16px 20px;
}


.tags-cloud a:hover {

    transform:
        translateY(-4px);

    background:
        #800000;

    color:
        white;

    border-color:
        #800000;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .job-search-box {
        flex-direction: column;

        align-items: stretch;
    }

    .search-divider {
        width: 100%;
        height: 1px;
    }

    .job-search-button {
        width: 100%;
    }

    .preview-jobs {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .tags-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .job-hero {
        min-height: auto;

        padding:
            140px 0 70px;
    }

    .job-hero h1 {
        font-size: 58px;
    }

    .job-hero-copy {
        font-size: 13px;
    }

    .job-search-box {
        margin-top: 35px;
    }

    .hero-job-preview {
        padding: 15px;

        margin-top: 45px;
    }

    .preview-job {
        min-height: 125px;
    }

    .categories-head {
        flex-direction: column;

        align-items: flex-start;
    }

    .categories-grid {
        grid-template-columns: 1fr;

        margin-top: 40px;
    }

    .category-card {
        min-height: 220px;
    }

}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 12px;
    border: 1px solid rgba(128, 0, 0, .15);
    background: rgba(128, 0, 0, .045);

    color: var(--maroon);
    border-radius: 999px;

    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--maroon);
    box-shadow: 0 0 0 5px rgba(128, 0, 0, .08);
}

.hero h1 {
    margin-top: 23px;

    font-size: clamp(58px, 7vw, 98px);
    line-height: .91;
    letter-spacing: -.075em;
    font-weight: 900;
}

.hero h1 .accent {
    color: var(--maroon);
    display: block;
}

.hero-copy {
    max-width: 540px;
    margin-top: 28px;

    color: #5f5f5f;
    font-size: 17px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;
    padding: 0 22px;

    border-radius: 999px;
    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;
    transition: .25s ease;
}

.btn-primary {
    color: white;
    background: var(--maroon);
    box-shadow: 0 14px 35px rgba(128, 0, 0, .24);
}

.btn-primary:hover {
    background: var(--maroon-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(128, 0, 0, .30);
}

.btn-secondary {
    background: white;
    border-color: rgba(0, 0, 0, .09);
    color: var(--ink);
}

.btn-secondary:hover {
    border-color: rgba(128, 0, 0, .25);
    color: var(--maroon);
    transform: translateY(-3px);
}

.play-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f1f1f1;
    font-size: 9px;
}

.hero-trust {
    margin-top: 34px;

    display: flex;
    align-items: center;
    gap: 14px;

    color: #777;
    font-size: 11px;
    font-weight: 650;
}

.avatars {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    margin-left: -7px;

    display: grid;
    place-items: center;

    border: 2px solid white;
    border-radius: 50%;

    color: white;
    background:
        linear-gradient(145deg,
            #111,
            #800000);

    font-size: 9px;
    font-weight: 800;
}

.avatar:first-child {
    margin-left: 0;
}

/* =========================================
   FOUR SIDES / BRAND MOTIVE
========================================== */

.motive-section {
    background: #fff;
    overflow: hidden;
}

.motive-head {
    max-width: 800px;
}

.motive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 65px;
}

.motive-card {
    position: relative;
    min-height: 570px;
    padding: 32px;

    overflow: hidden;

    border-radius: 32px;

    background: #f6f6f4;
    border: 1px solid rgba(0, 0, 0, .055);

    transition:
        transform .4s cubic-bezier(.2, .8, .2, 1),
        box-shadow .4s ease;
}

.motive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .11);
}

.motive-primary {
    color: white;

    background:
        radial-gradient(circle at 85% 15%,
            rgba(255, 255, 255, .16),
            transparent 28%),
        linear-gradient(140deg,
            #8d0000,
            #4c0000 65%,
            #190000);

    box-shadow:
        0 25px 70px rgba(128, 0, 0, .17);
}

.employer-card {
    background:
        linear-gradient(145deg,
            #f8f7f5,
            #efeeee);
}

.growth-card {
    background:
        linear-gradient(145deg,
            #f4eeee,
            #fafafa);
}

.ecosystem-card {
    color: white;

    background:
        radial-gradient(circle at 70% 20%,
            rgba(128, 0, 0, .22),
            transparent 35%),
        #080808;
}

.motive-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.motive-number {
    color: rgba(0, 0, 0, .22);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.motive-primary .motive-number,
.ecosystem-card .motive-number {
    color: rgba(255, 255, 255, .35);
}

.motive-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--maroon);
    background: rgba(128, 0, 0, .08);

    font-size: 17px;
    font-weight: 800;
}

.motive-primary .motive-icon,
.ecosystem-card .motive-icon {
    color: white;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12);
}

.motive-content {
    position: relative;
    z-index: 3;

    max-width: 430px;
    margin-top: 55px;
}

.motive-label {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.motive-primary .motive-label {
    color: #dba3a3;
}

.ecosystem-card .motive-label {
    color: #b98484;
}

.motive-content h3 {
    margin-top: 13px;

    font-size: clamp(34px, 4vw, 48px);
    line-height: .98;
    letter-spacing: -.06em;
    font-weight: 900;
}

.motive-content p {
    max-width: 390px;
    margin-top: 17px;

    color: #747474;
    font-size: 13px;
    line-height: 1.7;
}

.motive-primary .motive-content p,
.ecosystem-card .motive-content p {
    color: rgba(255, 255, 255, .60);
}

.motive-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 25px;

    color: var(--maroon);

    font-size: 11px;
    font-weight: 850;
}

.motive-link span {
    transition: transform .25s ease;
}

.motive-link:hover span {
    transform: translateX(5px);
}

.motive-primary .motive-link,
.ecosystem-card .motive-link {
    color: white;
}


/* =========================================
   JOB SEEKER VISUAL
========================================== */

.motive-visual {
    position: absolute;
    right: 25px;
    bottom: 25px;

    width: 390px;
    height: 180px;
}

.mini-profile-card {
    position: absolute;

    right: 15px;
    bottom: 25px;

    width: 300px;
    padding: 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .17);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
}

.mini-profile-avatar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    color: var(--maroon);
    background: white;

    font-size: 10px;
    font-weight: 900;
}

.mini-profile-card strong {
    display: block;
    font-size: 10px;
}

.mini-profile-card>div:nth-child(2) span {
    display: block;
    margin-top: 3px;

    color: rgba(255, 255, 255, .55);
    font-size: 8px;
}

.profile-match {
    margin-left: auto;

    color: white;
    font-size: 19px;
    font-weight: 900;
}

.match-pill {
    position: absolute;

    left: 20px;
    bottom: 0;

    padding: 9px 12px;

    display: flex;
    align-items: center;
    gap: 7px;

    border-radius: 999px;

    background: white;
    color: var(--maroon);

    font-size: 8px;
    font-weight: 850;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .22);
}

.match-pill span {
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #22a35a;
}


/* =========================================
   EMPLOYER VISUAL
========================================== */

.hiring-visual {
    position: absolute;

    right: 35px;
    bottom: 20px;

    width: 370px;
    height: 210px;
}

.candidate-stack {
    position: absolute;

    width: 220px;
    height: 180px;

    right: 50px;
    bottom: 5px;
}

.candidate {
    position: absolute;

    width: 190px;
    height: 105px;

    padding: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 17px;

    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .9);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .09);

    font-size: 10px;
    font-weight: 900;
}

.candidate span {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: #111;
    color: white;
}

.candidate i {
    color: var(--maroon);
    font-style: normal;
    font-size: 13px;
}

.candidate-back {
    right: 0;
    top: 0;
    transform: rotate(8deg);
    opacity: .5;
}

.candidate-middle {
    right: 12px;
    top: 28px;
    transform: rotate(4deg);
    opacity: .78;
}

.candidate-front {
    right: 25px;
    top: 57px;
}

.talent-pill {
    position: absolute;

    left: 0;
    bottom: 22px;

    padding: 12px 15px;

    border-radius: 999px;

    background: var(--maroon);
    color: white;

    font-size: 8px;
    font-weight: 800;

    box-shadow: 0 15px 30px rgba(128, 0, 0, .18);
}


/* =========================================
   CAREER GROWTH VISUAL
========================================== */

.growth-visual {
    position: absolute;

    left: 35px;
    right: 35px;
    bottom: 25px;

    height: 190px;

    border-radius: 22px;

    background: white;
    border: 1px solid rgba(0, 0, 0, .055);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);

    overflow: hidden;
}

.growth-visual::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -100px;
    bottom: -160px;

    border-radius: 50%;

    border: 1px solid rgba(128, 0, 0, .08);
}

.growth-score {
    position: absolute;

    left: 20px;
    top: 20px;

    display: flex;
    align-items: center;
    gap: 13px;
}

.score-ring {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--maroon);

    background:
        radial-gradient(circle,
            white 55%,
            transparent 56%);

    border: 6px solid rgba(128, 0, 0, .10);
    border-top-color: var(--maroon);

    transform: rotate(-25deg);
}

.score-ring span {
    transform: rotate(25deg);

    font-size: 18px;
    font-weight: 900;
}

.score-ring small {
    transform: rotate(25deg);
    margin-left: -19px;
    margin-top: 15px;

    font-size: 7px;
    font-weight: 900;
}

.score-copy strong {
    display: block;
    font-size: 10px;
}

.score-copy span {
    display: block;
    margin-top: 3px;

    color: #999;
    font-size: 8px;
}

.skill-chip {
    position: absolute;

    padding: 9px 12px;

    border-radius: 999px;

    background: #f5eeee;
    color: var(--maroon);

    font-size: 8px;
    font-weight: 800;
}

.chip-one {
    right: 25px;
    top: 30px;
}

.chip-two {
    right: 75px;
    top: 82px;
}

.chip-three {
    right: 18px;
    bottom: 27px;
}


/* =========================================
   ECOSYSTEM VISUAL
========================================== */

.ecosystem-visual {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 235px;
}

.ecosystem-node {
    position: absolute;

    display: grid;
    place-items: center;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .13);

    background: rgba(255, 255, 255, .05);

    backdrop-filter: blur(15px);

    color: rgba(255, 255, 255, .72);

    font-size: 8px;
    font-weight: 800;

    z-index: 3;
}

.node-center {
    left: 50%;
    top: 50%;

    width: 70px;
    height: 70px;

    transform: translate(-50%, -50%);

    background: var(--maroon);

    color: white;

    font-size: 21px;

    box-shadow:
        0 0 0 15px rgba(128, 0, 0, .09),
        0 20px 50px rgba(128, 0, 0, .3);
}

.node-one {
    left: 14%;
    top: 20%;

    width: 65px;
    height: 65px;
}

.node-two {
    right: 12%;
    top: 12%;

    width: 65px;
    height: 65px;
}

.node-three {
    right: 19%;
    bottom: 5%;

    width: 72px;
    height: 72px;
}

.ecosystem-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform-origin: left center;
    z-index: 1;
}

.line-one {
    width: 170px;
    left: 23%;
    top: 49%;
    transform: rotate(17deg);
}

.line-two {
    width: 150px;
    left: 53%;
    top: 45%;
    transform: rotate(-23deg);
}

.line-three {
    width: 145px;
    left: 51%;
    top: 61%;
    transform: rotate(32deg);
}


/* =========================================
   MOTIVE RESPONSIVE
========================================== */

@media (max-width: 850px) {

    .motive-grid {
        grid-template-columns: 1fr;
    }

    .motive-card {
        min-height: 540px;
    }

}

@media (max-width: 560px) {

    .motive-grid {
        gap: 14px;
    }

    .motive-card {
        min-height: 530px;
        padding: 25px;
        border-radius: 26px;
    }

    .motive-content {
        margin-top: 45px;
    }

    .motive-content h3 {
        font-size: 38px;
    }

    .motive-visual {
        right: 10px;
        width: calc(100% - 20px);
    }

    .mini-profile-card {
        width: 270px;
        right: 5px;
    }

    .hiring-visual {
        right: 10px;
        width: calc(100% - 20px);
    }

    .candidate-stack {
        right: 0;
    }

    .growth-visual {
        left: 20px;
        right: 20px;
    }

}


/* =========================================
   SETTLEU — IMAGE STORY SECTION
========================================== */

.settle-stories {
    position: relative;
    padding: 150px 0;
    background: #fff;
    overflow: hidden;
}

.stories-intro {
    max-width: 760px;
    margin-bottom: 100px;
}

.stories-intro h2 {
    margin-top: 15px;

    font-size: clamp(48px, 6vw, 78px);
    line-height: .94;
    letter-spacing: -.07em;
    font-weight: 900;
}

.stories-intro p {
    max-width: 520px;
    margin-top: 22px;

    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   STORY
========================================== */

.story {
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 90px;

    margin-bottom: 150px;
}

.story:last-child {
    margin-bottom: 0;
}
.story-image {
    position: relative;
    height: 610px;
    overflow: hidden;
    border-radius: 38px;
    background: #eee;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .12);
}

.story-image img {
    width: 100%;
    height: 100%;

    object-fit: contain; /* FIX: shows the complete image */
    object-position: center;

    transition:
        transform 1s cubic-bezier(.2, .8, .2, 1);
}

.story:hover .story-image img {
    transform: scale(1.045);
}

.image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, .02),
            rgba(0, 0, 0, .35));
}
.story-content {
    max-width: 510px;
}

.story-number {
    display: block;

    color: rgba(128, 0, 0, .25);

    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.story-label {
    margin-top: 30px;

    color: var(--maroon);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
}

.story-content h3 {
    margin-top: 15px;

    font-size: clamp(45px, 5vw, 67px);
    line-height: .94;
    letter-spacing: -.07em;
    font-weight: 900;
}

.story-content h3 span {
    color: var(--maroon);
}

.story-content p {
    max-width: 460px;

    margin-top: 25px;

    color: #707070;

    font-size: 14px;
    line-height: 1.75;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    color: var(--maroon);

    font-size: 12px;
    font-weight: 850;
}

.story-link span {
    transition: transform .25s ease;
}

.story-link:hover span {
    transform: translate(4px, -3px);
}


/* =========================================
   SEEKER IMAGE
========================================== */

.story-seeker .story-image {
    background:
        linear-gradient(145deg,
            #260000,
            #800000);
}

.story-seeker .story-image::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .18);

    box-shadow:
        0 0 0 60px rgba(255, 255, 255, .025),
        0 0 0 120px rgba(255, 255, 255, .02);
}


/* =========================================
   FLOATING SEEKER CARD
========================================== */

.story-floating-card {
    position: absolute;

    z-index: 4;

    background: rgba(255, 255, 255, .78);

    border: 1px solid rgba(255, 255, 255, .9);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .18);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.seeker-card {
    right: 30px;
    bottom: 30px;

    width: 210px;

    padding: 20px;

    border-radius: 20px;
}

.floating-label {
    display: block;

    color: #777;

    font-size: 9px;
    font-weight: 700;
}

.seeker-card strong {
    display: block;

    margin-top: 5px;

    color: var(--maroon);

    font-size: 38px;
    line-height: 1;
    letter-spacing: -.06em;
}

.floating-success {
    display: block;

    margin-top: 6px;

    color: #555;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================
   EMPLOYER
========================================== */

.story-employer .story-image {
    background: #111;
}

.story-employer .image-overlay {
    background:
        linear-gradient(145deg,
            rgba(128, 0, 0, .15),
            rgba(0, 0, 0, .65));
}

.employer-card {
    left: 30px;
    bottom: 30px;

    width: 280px;

    padding: 15px;

    display: flex;
    align-items: center;
    gap: 11px;

    border-radius: 18px;
}

.candidate-avatar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--maroon);
    color: white;

    font-size: 10px;
    font-weight: 900;
}

.candidate-info {
    flex: 1;
}

.candidate-info strong {
    display: block;

    font-size: 10px;
}

.candidate-info span {
    display: block;

    margin-top: 3px;

    color: #888;

    font-size: 8px;
}

.candidate-match {
    color: var(--maroon);

    font-size: 17px;
    font-weight: 900;
}


/* =========================================
   GROWTH
========================================== */

.story-growth .story-image {
    background:
        linear-gradient(145deg,
            #eee5e5,
            #f7f7f7);
}

.story-growth .image-overlay {
    background:
        radial-gradient(circle at 70% 30%,
            rgba(128, 0, 0, .15),
            transparent 35%);
}

.growth-dashboard {
    position: absolute;

    left: 30px;
    right: 30px;
    bottom: 30px;

    z-index: 4;

    padding: 22px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .83);

    border: 1px solid rgba(255, 255, 255, .9);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .13);

    backdrop-filter: blur(20px);
}

.growth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.growth-header span {
    color: #666;

    font-size: 10px;
    font-weight: 700;
}

.growth-header strong {
    color: var(--maroon);

    font-size: 24px;
    letter-spacing: -.05em;
}

.growth-bar {
    height: 6px;

    margin-top: 13px;

    border-radius: 99px;

    background: #e7e7e7;

    overflow: hidden;
}

.growth-bar i {
    display: block;

    width: 82%;
    height: 100%;

    border-radius: inherit;

    background: var(--maroon);
}

.growth-skills {
    display: flex;
    gap: 7px;

    margin-top: 13px;
}

.growth-skills span {
    padding: 7px 9px;

    border-radius: 8px;

    color: #666;
    background: #f1eeee;

    font-size: 7px;
    font-weight: 800;
}


/* =========================================
   ECOSYSTEM
========================================== */

.story-ecosystem {
    color: white;
}

.story-ecosystem .story-content {
    order: 1;
}

.story-ecosystem .story-image {
    order: 2;

    background:
        radial-gradient(circle at center,
            #800000,
            #120000 60%,
            #000);
}

.story-ecosystem .story-label {
    color: #800000;
}

.story-ecosystem .story-number {
    color: rgba(255, 255, 255, .25);
}

.story-ecosystem .story-content h3 {
    color: rgb(0, 0, 0);
}

.story-ecosystem .story-content h3 span {
    color: #800000;
}

.story-ecosystem .story-content p {
    color: rgba(0, 0, 0, 0.55);
}

.story-ecosystem .story-link {
    color: #800000;
}


/* =========================================
   ECOSYSTEM UI
========================================== */

.ecosystem-image {
    position: relative;
}

.ecosystem-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(128, 0, 0, .35),
            transparent 45%);
}

.ecosystem-ui {
    position: absolute;
    inset: 0;

    z-index: 4;
}

.eco-node {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    border-radius: 50%;

    background: rgba(255, 255, 255, .07);

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(15px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .25);
}

.eco-node span {
    font-size: 11px;
    font-weight: 900;
}

.eco-node small {
    margin-top: 3px;

    color: rgba(255, 255, 255, .5);

    font-size: 6px;
}

.eco-center {
    left: 50%;
    top: 50%;

    width: 105px;
    height: 105px;

    transform: translate(-50%, -50%);

    background:
        linear-gradient(145deg,
            #960000,
            #580000);

    box-shadow:
        0 0 0 20px rgba(128, 0, 0, .08),
        0 25px 70px rgba(128, 0, 0, .35);
}

.eco-center strong {
    font-size: 34px;
}

.eco-person {
    left: 13%;
    top: 25%;

    width: 85px;
    height: 85px;
}

.eco-business {
    right: 12%;
    top: 18%;

    width: 90px;
    height: 90px;
}

.eco-skill {
    right: 20%;
    bottom: 14%;

    width: 78px;
    height: 78px;
}

.eco-line {
    position: absolute;

    left: 50%;
    top: 50%;

    height: 1px;

    transform-origin: left center;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .02),
            rgba(255, 255, 255, .22));
}

.eco-line-one {
    width: 210px;
    transform: rotate(198deg);
}

.eco-line-two {
    width: 205px;
    transform: rotate(-28deg);
}

.eco-line-three {
    width: 170px;
    transform: rotate(55deg);
}


/* =========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .settle-stories {
        padding: 100px 0;
    }

    .stories-intro {
        margin-bottom: 70px;
    }

    .story {
        grid-template-columns: 1fr;
        gap: 45px;

        margin-bottom: 100px;
    }

    .story-content {
        max-width: 650px;
    }

    .story-image {
        height: 560px;
    }

    .story-employer .story-content {
        order: 1;
    }

    .story-employer .story-image {
        order: 2;
    }

    .story-ecosystem .story-content,
    .story-ecosystem .story-image {
        order: initial;
    }

}


@media (max-width: 560px) {

    .settle-stories {
        padding: 80px 0;
    }

    .stories-intro h2 {
        font-size: 46px;
    }

    .stories-intro p {
        font-size: 14px;
    }

    .story {
        gap: 35px;
        margin-bottom: 80px;
    }

    .story-image {
        height: 440px;
        border-radius: 27px;
    }

    .story-content h3 {
        font-size: 43px;
    }

    .story-content p {
        font-size: 13px;
    }

    .seeker-card {
        right: 15px;
        bottom: 15px;
    }

    .employer-card {
        left: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
    }

    .growth-dashboard {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .eco-person {
        left: 5%;
    }

    .eco-business {
        right: 5%;
    }

    .eco-skill {
        right: 13%;
    }

}

/* =========================================
       PHONE MOCKUP
    ========================================= */

.hero-visual {
    position: absolute;
    z-index: 2;

    right: -20px;
    top: 150px;

    width: 53%;
    height: 650px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-orbit {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;

    border: 1px solid rgba(128, 0, 0, .11);
    box-shadow:
        0 0 0 65px rgba(128, 0, 0, .018),
        0 0 0 130px rgba(128, 0, 0, .012);
}

.phone {
    position: relative;
    width: 300px;
    height: 600px;

    padding: 9px;

    border-radius: 43px;

    background:
        linear-gradient(145deg,
            #1b1b1b,
            #030303 45%,
            #4d0000);

    box-shadow:
        0 45px 100px rgba(0, 0, 0, .28),
        0 10px 30px rgba(128, 0, 0, .16),
        inset 1px 1px 1px rgba(255, 255, 255, .25);

    transform: rotate(4deg);
    transition: transform .4s ease;
}

.phone:hover {
    transform: rotate(0deg) translateY(-8px);
}

.phone::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);

    width: 90px;
    height: 22px;

    border-radius: 999px;
    background: #050505;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 35px;
    background: #f6f5f3;
}

.app-top {
    padding: 36px 18px 17px;

    background:
        linear-gradient(145deg,
            #800000,
            #580000);

    color: white;
}

.app-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-brand {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.app-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;

    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .22);

    font-size: 11px;
}

.hello {
    margin-top: 30px;
    font-size: 11px;
    opacity: .75;
}

.app-title {
    margin-top: 5px;
    font-size: 23px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -.05em;
}

.search {
    margin-top: 18px;

    height: 40px;
    padding: 0 12px;

    display: flex;
    align-items: center;
    gap: 8px;

    background: white;
    color: #999;

    border-radius: 12px;
    font-size: 10px;
}

.app-body {
    padding: 17px;
}

.section-label {
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 10px;
    font-weight: 850;
}

.section-label span {
    color: var(--maroon);
    font-size: 8px;
}

.job-card {
    margin-top: 10px;
    padding: 13px;

    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(0, 0, 0, .06);

    border-radius: 15px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.job-company {
    display: flex;
    align-items: center;
    gap: 9px;
}

.company-logo {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;

    border-radius: 9px;

    background: #111;
    color: white;

    font-size: 9px;
    font-weight: 900;
}

.job-name {
    font-size: 10px;
    font-weight: 850;
}

.job-company-name {
    margin-top: 2px;
    color: #929292;
    font-size: 8px;
}

.job-tags {
    display: flex;
    gap: 5px;
    margin-top: 11px;
}

.job-tag {
    padding: 5px 7px;
    border-radius: 6px;

    color: #6b6b6b;
    background: #f2f2f2;

    font-size: 7px;
    font-weight: 700;
}

.job-tag.active {
    color: var(--maroon);
    background: rgba(128, 0, 0, .08);
}

.match {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 13px;
    padding-top: 11px;

    border-top: 1px solid rgba(0, 0, 0, .06);
}

.match small {
    color: #999;
    font-size: 7px;
}

.match strong {
    color: var(--maroon);
    font-size: 9px;
}

/* Floating cards */

.float-card {
    position: absolute;
    z-index: 5;

    padding: 15px;

    background: rgba(255, 255, 255, .68);
    border: 1px solid rgba(255, 255, 255, .9);

    border-radius: 17px;

    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.float-card.one {
    top: 105px;
    left: 30px;
    width: 180px;
    animation: floatA 5s ease-in-out infinite;
}

.float-card.two {
    right: 5px;
    bottom: 105px;
    width: 185px;
    animation: floatB 6s ease-in-out infinite;
}

.float-label {
    color: #888;
    font-size: 8px;
    font-weight: 750;
}

.float-value {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.float-value span {
    color: var(--maroon);
}

.progress {
    height: 5px;
    margin-top: 11px;
    overflow: hidden;
    border-radius: 99px;
    background: #ececec;
}

.progress i {
    display: block;
    width: 82%;
    height: 100%;
    border-radius: inherit;
    background: var(--maroon);
}

.mini-row {
    display: flex;
    align-items: center;
    gap: 9px;
}

.check {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;

    border-radius: 9px;
    background: rgba(128, 0, 0, .08);
    color: var(--maroon);
    font-size: 12px;
}

.mini-text strong {
    display: block;
    font-size: 9px;
}

.mini-text span {
    display: block;
    margin-top: 2px;
    color: #999;
    font-size: 7px;
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0) rotate(4deg);
    }

    50% {
        transform: translateY(12px) rotate(2deg);
    }
}

/* =========================================
       TRUST BAR
    ========================================= */

.trust-bar {
    position: relative;
    z-index: 4;
    margin-top: -1px;

    padding: 25px 0;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: rgba(255, 255, 255, .75);
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.trust-label {
    color: #999;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.trust-numbers {
    display: flex;
    align-items: center;
    gap: 45px;
}

.trust-number strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.trust-number span {
    display: block;
    margin-top: 2px;
    color: #888;
    font-size: 9px;
    font-weight: 650;
}

/* =========================================
       SECTION BASE
    ========================================= */

section {
    position: relative;
}

.section {
    padding: 130px 0;
}

.section-head {
    max-width: 720px;
}

.section-kicker {
    color: var(--maroon);
    font-size: 10px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.section h2 {
    margin-top: 14px;

    font-size: clamp(42px, 5vw, 70px);
    line-height: .98;
    letter-spacing: -.065em;
    font-weight: 900;
}

.section-intro {
    max-width: 570px;
    margin-top: 20px;

    color: #686868;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
       HOW IT WORKS
    ========================================= */

.process-section {
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 65px;
}

.process-card {
    position: relative;
    min-height: 350px;
    padding: 30px;

    overflow: hidden;

    background: rgba(255, 255, 255, .66);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: var(--radius-lg);

    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    transition: .35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.process-number {
    position: absolute;
    top: 25px;
    right: 27px;

    color: rgba(128, 0, 0, .15);

    font-size: 60px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.08em;
}

.process-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    color: white;
    background: var(--maroon);

    box-shadow: 0 15px 30px rgba(128, 0, 0, .2);

    font-size: 18px;
}

.process-card h3 {
    margin-top: 85px;
    font-size: 23px;
    letter-spacing: -.04em;
}

.process-card p {
    margin-top: 11px;

    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

.process-line {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;

    height: 1px;
    background: rgba(0, 0, 0, .08);
}

/* =========================================
       APP SHOWCASE
    ========================================= */

.showcase {
    background: #080000;
    color: white;
    overflow: hidden;
}

.showcase::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    border-radius: 50%;
    background: rgba(128, 0, 0, .35);
    filter: blur(100px);
}

.showcase-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.showcase-copy .section-kicker {
    color: #d98b8b;
}

.showcase-copy h2 {
    max-width: 600px;
}

.showcase-copy p {
    color: rgba(255, 255, 255, .55);
}

.feature-list {
    margin-top: 35px;
    display: grid;
    gap: 14px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 650;
}

.feature-check {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .12);

    color: #e5a0a0;
    font-size: 10px;
}

.showcase-device-area {
    min-height: 650px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.device-backdrop {
    position: absolute;
    width: 470px;
    height: 470px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .015),
        0 0 0 110px rgba(255, 255, 255, .01);
}

.showcase-phone {
    position: relative;
    z-index: 3;

    width: 280px;
    height: 560px;

    border-radius: 40px;

    padding: 8px;

    background:
        linear-gradient(145deg,
            #666,
            #111 25%,
            #050505 70%,
            #620000);

    box-shadow:
        0 50px 100px rgba(0, 0, 0, .65),
        inset 1px 1px 1px rgba(255, 255, 255, .2);

    transform: rotate(-5deg);
}

.showcase-screen {
    width: 100%;
    height: 100%;
    border-radius: 33px;
    overflow: hidden;
    background: #f7f5f3;
    color: #111;
}

.profile-head {
    padding: 35px 18px 22px;

    background:
        linear-gradient(145deg,
            #800000,
            #4c0000);

    color: white;
}

.profile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-avatar {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;

    border-radius: 17px;

    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);

    font-size: 18px;
    font-weight: 900;
}

.profile-name {
    margin-top: 14px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.profile-role {
    margin-top: 4px;
    color: rgba(255, 255, 255, .65);
    font-size: 8px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 18px;
}

.profile-stat {
    padding: 9px 5px;

    border-radius: 10px;
    background: rgba(255, 255, 255, .08);

    text-align: center;
}

.profile-stat strong {
    display: block;
    font-size: 12px;
}

.profile-stat span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .55);
    font-size: 6px;
}

.profile-body {
    padding: 17px;
}

.profile-body-title {
    font-size: 10px;
    font-weight: 850;
}

.skill {
    margin-top: 13px;
}

.skill-top {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    font-weight: 750;
}

.skill-bar {
    height: 5px;
    margin-top: 6px;
    border-radius: 99px;
    background: #e7e7e7;
    overflow: hidden;
}

.skill-bar i {
    display: block;
    height: 100%;
    background: var(--maroon);
    border-radius: inherit;
}

.skill:nth-child(2) i {
    width: 88%;
}

.skill:nth-child(3) i {
    width: 72%;
}

.skill:nth-child(4) i {
    width: 94%;
}

.floating-notification {
    position: absolute;
    z-index: 5;

    right: -20px;
    top: 100px;

    width: 200px;
    padding: 14px;

    color: #111;

    border-radius: 17px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .9);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);

    backdrop-filter: blur(20px);
}

.notification-top {
    display: flex;
    align-items: center;
    gap: 9px;
}

.notification-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;

    border-radius: 9px;
    background: rgba(128, 0, 0, .09);
    color: var(--maroon);
}

.notification-title {
    font-size: 9px;
    font-weight: 850;
}

.notification-sub {
    margin-top: 2px;
    color: #999;
    font-size: 7px;
}

.notification-progress {
    margin-top: 12px;
    height: 4px;
    background: #ededed;
    border-radius: 99px;
    overflow: hidden;
}

.notification-progress i {
    display: block;
    width: 76%;
    height: 100%;
    background: var(--maroon);
}

/* =========================================
       WHY SETTLEU
    ========================================= */

.why-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    margin-top: 65px;
}

.why-main,
.why-side {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.why-main {
    min-height: 550px;
    padding: 40px;

    position: relative;

    color: white;
    background:
        radial-gradient(circle at 80% 20%,
            rgba(255, 255, 255, .14),
            transparent 30%),
        linear-gradient(145deg,
            #8e0000,
            #480000 70%,
            #150000);

    box-shadow: var(--shadow-maroon);
}

.why-main h3 {
    max-width: 470px;

    font-size: clamp(35px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.06em;
}

.why-main p {
    max-width: 420px;
    margin-top: 18px;

    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    line-height: 1.7;
}

.why-rings {
    position: absolute;
    width: 430px;
    height: 430px;
    right: -90px;
    bottom: -130px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 0 0 55px rgba(255, 255, 255, .025),
        0 0 0 110px rgba(255, 255, 255, .018),
        0 0 0 165px rgba(255, 255, 255, .012);
}

.why-pill {
    position: absolute;
    left: 40px;
    bottom: 40px;

    padding: 13px 15px;

    display: flex;
    align-items: center;
    gap: 9px;

    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .14);

    border-radius: 999px;
    backdrop-filter: blur(15px);
}

.why-pill strong {
    font-size: 10px;
}

.why-pill span {
    color: rgba(255, 255, 255, .55);
    font-size: 8px;
}

.why-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.why-card {
    padding: 30px;

    background: #f7f7f5;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--radius-lg);

    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;

    border-radius: 14px;

    color: var(--maroon);
    background: rgba(128, 0, 0, .07);
}

.why-card h4 {
    margin-top: 30px;
    font-size: 21px;
    letter-spacing: -.04em;
}

.why-card p {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================
       TESTIMONIAL
    ========================================= */

.testimonial-section {
    background: var(--off-white);
}

.testimonial {
    position: relative;

    max-width: 900px;
    margin: 65px auto 0;

    padding: 55px;

    text-align: center;

    border-radius: var(--radius-xl);

    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .9);

    box-shadow: var(--shadow);

    backdrop-filter: blur(20px);
}

.quote-mark {
    color: rgba(128, 0, 0, .16);
    font-size: 70px;
    line-height: .5;
    font-weight: 900;
}

.testimonial blockquote {
    margin-top: 20px;

    font-size: clamp(25px, 3.3vw, 42px);
    line-height: 1.15;
    letter-spacing: -.05em;
    font-weight: 800;
}

.testimonial-person {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.person-avatar {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: white;
    background: var(--maroon);

    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.person-info {
    text-align: left;
}

.person-info strong {
    display: block;
    font-size: 10px;
}

.person-info span {
    display: block;
    margin-top: 2px;
    color: #999;
    font-size: 8px;
}

/* =========================================
       CTA
    ========================================= */

.cta-section {
    padding: 120px 0;
}

.cta-box {
    position: relative;
    overflow: hidden;

    padding: 85px 70px;

    border-radius: 40px;

    color: white;

    background:
        radial-gradient(circle at 80% 20%,
            rgba(255, 255, 255, .13),
            transparent 30%),
        linear-gradient(130deg,
            #800000,
            #3d0000);

    box-shadow: var(--shadow-maroon);
}

.cta-box::after {
    content: "";
    position: absolute;

    width: 430px;
    height: 430px;

    right: -170px;
    top: -170px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);

    box-shadow:
        0 0 0 50px rgba(255, 255, 255, .02),
        0 0 0 100px rgba(255, 255, 255, .015);
}

.cta-box h2 {
    position: relative;
    z-index: 2;

    max-width: 720px;

    font-size: clamp(43px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.065em;
}

.cta-box p {
    position: relative;
    z-index: 2;

    max-width: 500px;
    margin-top: 20px;

    color: rgba(255, 255, 255, .63);
    font-size: 14px;
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    z-index: 2;

    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.cta-actions .btn-primary {
    color: var(--maroon);
    background: white;
    box-shadow: none;
}

.cta-actions .btn-primary:hover {
    background: #f2eeee;
}

.cta-actions .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .07);
}

.cta-actions .btn-secondary:hover {
    color: white;
    background: rgba(255, 255, 255, .12);
}

/* =========================================
       FOOTER
    ========================================= */

footer {
    padding: 55px 0 25px;

    color: white;
    background: #050505;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 280px;
    margin-top: 17px;

    color: #777;
    font-size: 11px;
    line-height: 1.7;
}

.footer-logo {
    color: white;
}

.footer-column h5 {
    color: #aaa;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.footer-column nav {
    display: grid;
    gap: 11px;
    margin-top: 17px;
}

.footer-column a {
    color: #777;
    font-size: 11px;
    transition: .2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #555;
    font-size: 9px;
}

/* =========================================
       SCROLL REVEAL
    ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2, .8, .2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .08s;
}

.delay-2 {
    transition-delay: .16s;
}

.delay-3 {
    transition-delay: .24s;
}

/* =========================================
       RESPONSIVE
    ========================================= */

@media (max-width: 1050px) {

    .hero-content {
        width: 55%;
    }

    .hero-visual {
        right: -90px;
        width: 55%;
        opacity: .92;
    }

    .float-card.one {
        left: 0;
    }

    .showcase-inner {
        gap: 50px;
    }

    .floating-notification {
        right: -5px;
    }
}

@media (max-width: 850px) {

    .container {
        width: min(calc(100% - 30px), var(--max));
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .site-header.menu-active .nav-links {
        position: fixed;
        inset: 75px 15px auto;

        display: grid;
        gap: 5px;

        padding: 15px;

        background: rgba(255, 255, 255, .94);
        border: 1px solid rgba(0, 0, 0, .07);

        border-radius: 22px;

        box-shadow: var(--shadow);

        backdrop-filter: blur(25px);
    }

    .site-header.menu-active .nav-links a {
        padding: 15px;
        border-radius: 12px;
    }

    .site-header.menu-active .nav-links a:hover {
        background: rgba(128, 0, 0, .06);
    }

    .hero {
        min-height: auto;
        padding: 145px 0 70px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-copy {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        position: relative;
        top: auto;
        right: auto;

        width: 100%;
        height: 620px;

        margin-top: 40px;
    }

    .trust-inner {
        display: grid;
        justify-content: center;
        text-align: center;
    }

    .trust-numbers {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: 300px;
    }

    .showcase-inner,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .showcase-copy {
        text-align: center;
    }

    .showcase-copy p {
        margin-inline: auto;
    }

    .feature-list {
        justify-items: center;
    }

    .showcase-device-area {
        min-height: 600px;
    }

    .why-main {
        min-height: 500px;
    }

    .why-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {

    .container {
        width: min(calc(100% - 24px), var(--max));
    }

    .nav-shell {
        padding-left: 13px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-copy {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
    }

    .hero-visual {
        height: 570px;
    }

    .phone {
        width: 265px;
        height: 530px;
    }

    .visual-orbit {
        width: 390px;
        height: 390px;
    }

    .float-card.one {
        left: -3px;
        top: 55px;
        transform: scale(.85);
    }

    .float-card.two {
        right: -5px;
        bottom: 70px;
        transform: scale(.85);
    }

    .trust-numbers {
        width: 100%;
        gap: 20px;
    }

    .trust-number strong {
        font-size: 17px;
    }

    .section {
        padding: 90px 0;
    }

    .section h2 {
        font-size: 44px;
    }

    .process-card {
        padding: 24px;
    }

    .showcase-device-area {
        min-height: 540px;
    }

    .showcase-phone {
        width: 255px;
        height: 510px;
    }

    .device-backdrop {
        width: 370px;
        height: 370px;
    }

    .floating-notification {
        right: -5px;
        top: 70px;
        transform: scale(.82);
    }

    .why-main {
        min-height: 480px;
        padding: 28px;
    }

    .why-main h3 {
        font-size: 40px;
    }

    .why-pill {
        left: 28px;
        bottom: 28px;
    }

    .why-side {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 35px 22px;
    }

    .cta-box {
        padding: 55px 27px;
        border-radius: 28px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}






 /* =========================================
       HERO
    ========================================= */

    .about-hero {
      min-height: 850px;

      position: relative;

      display: flex;
      align-items: center;

      overflow: hidden;

      background:
        radial-gradient(
          circle at 75% 35%,
          rgba(128,0,0,.45),
          transparent 30%
        ),
        radial-gradient(
          circle at 25% 80%,
          rgba(128,0,0,.18),
          transparent 30%
        ),
        #050505;

      color: white;
    }

    .hero-grid {
      position: absolute;
      inset: 0;

      opacity: .12;

      background-image:
        linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);

      background-size: 80px 80px;

      mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
      );
    }

    .hero-glow {
      position: absolute;

      width: 500px;
      height: 500px;

      right: -150px;
      top: 120px;

      border-radius: 50%;

      background: var(--maroon);

      filter: blur(120px);

      opacity: .35;
    }

    .hero-content {
      position: relative;
      z-index: 2;

      max-width: 900px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;

      color: #d89595;

      font-size: 10px;
      font-weight: 800;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";

      width: 24px;
      height: 1px;

      background: var(--maroon);
    }

    .hero-title {
      margin-top: 25px;

      font-size: clamp(65px, 9vw, 125px);

      line-height: .84;

      letter-spacing: -.085em;

      font-weight: 900;
    }

    .hero-title span {
      color: #a92727;
    }

    .hero-description {
      max-width: 610px;

      margin-top: 35px;

      color: rgba(255,255,255,.56);

      font-size: 17px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 12px;

      margin-top: 35px;
    }

    .btn {
      padding: 14px 20px;

      border-radius: 12px;

      font-size: 11px;
      font-weight: 800;

      transition:
        transform .3s var(--ease),
        box-shadow .3s ease;
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    .btn-primary {
      background: var(--maroon);
      color: white;

      box-shadow: 0 15px 35px rgba(128,0,0,.3);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,.15);

      color: white;

      background: rgba(255,255,255,.04);

      backdrop-filter: blur(12px);
    }


    /* Floating glass element */

    .hero-orbit {
      position: absolute;

      right: 10%;
      top: 52%;

      width: 360px;
      height: 360px;

      transform: translateY(-50%);

      border: 1px solid rgba(255,255,255,.12);

      border-radius: 50%;
    }

    .hero-orbit::before {
      content: "";

      position: absolute;
      inset: 45px;

      border: 1px solid rgba(255,255,255,.1);

      border-radius: 50%;
    }

    .hero-center {
      position: absolute;

      left: 50%;
      top: 50%;

      width: 100px;
      height: 100px;

      transform: translate(-50%,-50%);

      display: grid;
      place-items: center;

      border-radius: 50%;

      background:
        linear-gradient(145deg,#a00000,#570000);

      box-shadow:
        0 0 0 20px rgba(128,0,0,.1),
        0 30px 80px rgba(128,0,0,.4);

      font-size: 38px;
      font-weight: 900;
    }

    .orbit-node {
      position: absolute;

      padding: 12px 16px;

      border-radius: 12px;

      background: rgba(255,255,255,.07);

      border: 1px solid rgba(255,255,255,.13);

      backdrop-filter: blur(15px);

      font-size: 9px;
      font-weight: 700;
    }

    .orbit-one {
      top: 15px;
      left: 100px;
    }

    .orbit-two {
      right: -20px;
      top: 140px;
    }

    .orbit-three {
      bottom: 15px;
      left: 80px;
    }

    .orbit-four {
      left: -40px;
      top: 160px;
    }


    /* =========================================
       INTRO
    ========================================= */

    .intro-section {
      padding: 150px 0;
      background: white;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;

      gap: 100px;

      align-items: start;
    }

    .section-label {
      color: var(--maroon);

      font-size: 10px;
      font-weight: 900;
      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .intro-title {
      margin-top: 20px;

      font-size: clamp(45px, 5vw, 70px);

      line-height: .94;

      letter-spacing: -.07em;

      font-weight: 900;
    }

    .intro-copy {
      color: #696969;

      font-size: 18px;
      line-height: 1.75;
    }

    .intro-copy p + p {
      margin-top: 25px;
    }


    /* =========================================
       PROBLEM
    ========================================= */

    .problem-section {
      padding: 140px 0;

      background: #f5f5f3;

      overflow: hidden;
    }

    .problem-header {
      max-width: 780px;
    }

    .problem-title {
      margin-top: 18px;

      font-size: clamp(50px, 7vw, 92px);

      line-height: .9;

      letter-spacing: -.08em;

      font-weight: 900;
    }

    .problem-title span {
      color: var(--maroon);
    }

    .problem-visual {
      position: relative;

      height: 500px;

      margin-top: 80px;

      border-radius: 35px;

      overflow: hidden;

      background:
        radial-gradient(
          circle at center,
          #550000,
          #100000 55%,
          #050505
        );
    }

    .problem-word {
      position: absolute;

      color: rgba(255,255,255,.04);

      font-size: clamp(100px, 16vw, 230px);

      font-weight: 900;

      letter-spacing: -.1em;

      white-space: nowrap;
    }

    .word-one {
      left: -30px;
      top: 20px;
    }

    .word-two {
      right: -60px;
      bottom: -20px;
    }

    .problem-card {
      position: absolute;

      left: 50%;
      top: 50%;

      width: min(480px,80%);

      transform: translate(-50%,-50%) rotate(-2deg);

      padding: 30px;

      border-radius: 25px;

      background: rgba(255,255,255,.09);

      border: 1px solid rgba(255,255,255,.14);

      backdrop-filter: blur(25px);

      color: white;

      box-shadow: 0 30px 80px rgba(0,0,0,.4);
    }

    .problem-card small {
      color: #ca7777;

      font-size: 9px;
      font-weight: 800;
      letter-spacing: .14em;
    }

    .problem-card h3 {
      margin-top: 14px;

      font-size: 34px;
      line-height: 1;

      letter-spacing: -.05em;
    }

    .problem-card p {
      margin-top: 15px;

      color: rgba(255,255,255,.55);

      font-size: 12px;
      line-height: 1.6;
    }


    /* =========================================
       PHILOSOPHY
    ========================================= */

    .philosophy {
      padding: 160px 0;
      background: #050505;
      color: white;
    }

    .philosophy-head {
      max-width: 850px;
    }

    .philosophy-title {
      margin-top: 20px;

      font-size: clamp(55px, 7vw, 100px);

      line-height: .87;

      letter-spacing: -.085em;

      font-weight: 900;
    }

    .philosophy-title span {
      color: #a52b2b;
    }

    .principles {
      display: grid;
      grid-template-columns: repeat(3,1fr);

      gap: 15px;

      margin-top: 90px;
    }

    .principle {
      min-height: 280px;

      padding: 28px;

      border-radius: 25px;

      border: 1px solid rgba(255,255,255,.09);

      background:
        linear-gradient(
          145deg,
          rgba(255,255,255,.07),
          rgba(255,255,255,.025)
        );

      backdrop-filter: blur(20px);

      transition:
        transform .4s var(--ease),
        background .4s ease;
    }

    .principle:hover {
      transform: translateY(-8px);

      background:
        linear-gradient(
          145deg,
          rgba(128,0,0,.2),
          rgba(255,255,255,.03)
        );
    }

    .principle-number {
      color: #8f3030;

      font-size: 11px;
      font-weight: 900;
    }

    .principle h3 {
      margin-top: 80px;

      font-size: 27px;
      line-height: 1;

      letter-spacing: -.05em;
    }

    .principle p {
      margin-top: 12px;

      color: rgba(255,255,255,.45);

      font-size: 11px;
      line-height: 1.65;
    }


    /* =========================================
       ECOSYSTEM
    ========================================= */

    .ecosystem {
      padding: 160px 0;

      background: white;
    }

    .ecosystem-heading {
      max-width: 850px;
    }

    .ecosystem-heading h2 {
      margin-top: 18px;

      font-size: clamp(55px, 7vw, 100px);

      line-height: .87;

      letter-spacing: -.08em;

      font-weight: 900;
    }

    .ecosystem-heading h2 span {
      color: var(--maroon);
    }

    .ecosystem-heading p {
      max-width: 550px;

      margin-top: 25px;

      color: #777;

      font-size: 15px;
      line-height: 1.7;
    }

    .ecosystem-visual {
      position: relative;

      height: 650px;

      margin-top: 90px;

      border-radius: 40px;

      overflow: hidden;

      background:
        radial-gradient(
          circle at center,
          #700000,
          #150000 45%,
          #020202
        );
    }

    .eco-ring {
      position: absolute;

      left: 50%;
      top: 50%;

      border: 1px solid rgba(255,255,255,.14);

      border-radius: 50%;

      transform: translate(-50%,-50%);
    }

    .ring-one {
      width: 300px;
      height: 300px;
    }

    .ring-two {
      width: 500px;
      height: 500px;
    }

    .ring-three {
      width: 700px;
      height: 700px;
    }

    .eco-center {
      position: absolute;

      left: 50%;
      top: 50%;

      width: 115px;
      height: 115px;

      transform: translate(-50%,-50%);

      display: grid;
      place-items: center;

      border-radius: 50%;

      background: var(--maroon);

      color: white;

      font-size: 45px;
      font-weight: 900;

      box-shadow:
        0 0 0 25px rgba(128,0,0,.12),
        0 30px 100px rgba(0,0,0,.5);
    }

    .eco-item {
      position: absolute;

      padding: 16px 20px;

      border-radius: 15px;

      background: rgba(255,255,255,.08);

      border: 1px solid rgba(255,255,255,.14);

      color: white;

      backdrop-filter: blur(20px);

      text-align: center;
    }

    .eco-item strong {
      display: block;

      font-size: 12px;
    }

    .eco-item span {
      display: block;

      margin-top: 4px;

      color: rgba(255,255,255,.45);

      font-size: 8px;
    }

    .eco-job {
      top: 80px;
      left: 50%;
      transform: translateX(-50%);
    }

    .eco-business {
      right: 100px;
      top: 50%;
      transform: translateY(-50%);
    }

    .eco-growth {
      bottom: 70px;
      left: 50%;
      transform: translateX(-50%);
    }

    .eco-opportunity {
      left: 100px;
      top: 50%;
      transform: translateY(-50%);
    }


    /* =========================================
       VISION
    ========================================= */

    .vision {
      position: relative;

      min-height: 700px;

      display: flex;
      align-items: center;

      overflow: hidden;

      background: #050505;

      color: white;
    }

    .vision::before {
      content: "";

      position: absolute;

      width: 600px;
      height: 600px;

      right: -150px;
      top: 50%;

      transform: translateY(-50%);

      border-radius: 50%;

      background: var(--maroon);

      filter: blur(130px);

      opacity: .28;
    }

    .vision-content {
      position: relative;
      z-index: 2;

      max-width: 900px;
    }

    .vision-title {
      margin-top: 20px;

      font-size: clamp(60px, 8vw, 115px);

      line-height: .84;

      letter-spacing: -.09em;

      font-weight: 900;
    }

    .vision-title span {
      color: #a62b2b;
    }

    .vision-copy {
      max-width: 600px;

      margin-top: 30px;

      color: rgba(255,255,255,.5);

      font-size: 16px;
      line-height: 1.7;
    }


    /* =========================================
       FINAL CTA
    ========================================= */

    .about-cta {
      padding: 130px 0;

      background: #fff;

      text-align: center;
    }

    .about-cta h2 {
      max-width: 900px;

      margin: auto;

      font-size: clamp(55px, 8vw, 110px);

      line-height: .86;

      letter-spacing: -.09em;

      font-weight: 900;
    }

    .about-cta h2 span {
      color: var(--maroon);
    }

    .about-cta p {
      max-width: 520px;

      margin: 25px auto 0;

      color: #777;

      font-size: 14px;
      line-height: 1.7;
    }

    .cta-button {
      display: inline-flex;

      margin-top: 32px;

      padding: 16px 24px;

      border-radius: 13px;

      background: var(--maroon);

      color: white;

      font-size: 11px;
      font-weight: 800;

      box-shadow:
        0 20px 45px rgba(128,0,0,.22);

      transition:
        transform .3s var(--ease);
    }

    .cta-button:hover {
      transform: translateY(-4px);
    }


    /* =========================================
       REVEAL
    ========================================= */

    .reveal {
      opacity: 0;

      transform: translateY(35px);

      transition:
        opacity .8s ease,
        transform .8s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }


    /* =========================================
       RESPONSIVE
    ========================================= */

    @media (max-width: 900px) {

      .nav-links {
        display: none;
      }

      .about-hero {
        min-height: 760px;
      }

      .hero-orbit {
        opacity: .35;

        right: -120px;
        top: 65%;
      }

      .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .principles {
        grid-template-columns: 1fr;
      }

      .principle {
        min-height: 230px;
      }

      .principle h3 {
        margin-top: 50px;
      }

      .ecosystem-visual {
        height: 500px;
      }

      .ring-three {
        width: 550px;
        height: 550px;
      }

      .eco-business {
        right: 30px;
      }

      .eco-opportunity {
        left: 30px;
      }

    }


    @media (max-width: 600px) {

      .container {
        width: min(100% - 32px, 1240px);
      }

      .navbar {
        top: 10px;
      }

      .nav-button {
        padding: 10px 13px;
      }

      .about-hero {
        min-height: 720px;
      }

      .hero-title {
        font-size: 62px;
      }

      .hero-description {
        font-size: 14px;
      }

      .hero-orbit {
        width: 280px;
        height: 280px;

        right: -100px;
      }

      .intro-section,
      .problem-section,
      .philosophy,
      .ecosystem {
        padding: 100px 0;
      }

      .problem-visual {
        height: 430px;
        border-radius: 25px;
      }

      .problem-card {
        width: calc(100% - 40px);
        padding: 22px;
      }

      .problem-card h3 {
        font-size: 27px;
      }

      .ecosystem-visual {
        height: 430px;

        border-radius: 25px;
      }

      .ring-one {
        width: 200px;
        height: 200px;
      }

      .ring-two {
        width: 350px;
        height: 350px;
      }

      .ring-three {
        width: 470px;
        height: 470px;
      }

      .eco-center {
        width: 80px;
        height: 80px;

        font-size: 30px;
      }

      .eco-item {
        padding: 10px 12px;
      }

      .eco-job {
        top: 35px;
      }

      .eco-business {
        right: 15px;
      }

      .eco-opportunity {
        left: 15px;
      }

      .eco-growth {
        bottom: 35px;
      }

    }


       /* =========================================
       HERO
    ========================================== */

    .contact-hero {
      position: relative;

      min-height: 760px;

      display: flex;
      align-items: center;

      overflow: hidden;

      background:
        radial-gradient(
          circle at 80% 35%,
          rgba(128,0,0,.48),
          transparent 28%
        ),
        radial-gradient(
          circle at 15% 90%,
          rgba(128,0,0,.18),
          transparent 28%
        ),
        #050505;

      color: white;
    }

    .hero-grid {
      position: absolute;
      inset: 0;

      opacity: .1;

      background-image:
        linear-gradient(
          rgba(255,255,255,.12) 1px,
          transparent 1px
        ),
        linear-gradient(
          90deg,
          rgba(255,255,255,.12) 1px,
          transparent 1px
        );

      background-size: 75px 75px;

      mask-image:
        linear-gradient(
          to bottom,
          black,
          transparent 85%
        );
    }

    .hero-glow {
      position: absolute;

      width: 500px;
      height: 500px;

      right: -180px;
      top: 100px;

      border-radius: 50%;

      background: var(--maroon);

      filter: blur(130px);

      opacity: .35;
    }

    .contact-hero-content {
      position: relative;
      z-index: 2;

      max-width: 850px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;

      color: #d38d8d;

      font-size: 10px;
      font-weight: 800;

      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";

      width: 25px;
      height: 1px;

      background: var(--maroon);
    }

    .hero-title {
      margin-top: 25px;

      font-size: clamp(65px, 9vw, 120px);

      line-height: .84;

      letter-spacing: -.09em;

      font-weight: 900;
    }

    .hero-title span {
      color: #a52b2b;
    }

    .hero-copy {
      max-width: 570px;

      margin-top: 32px;

      color: rgba(255,255,255,.54);

      font-size: 16px;
      line-height: 1.75;
    }


    /* =========================================
       CONTACT LAYOUT
    ========================================== */

    .contact-section {
      padding: 130px 0;

      background: #fff;
    }

    .contact-grid {
      display: grid;

      grid-template-columns:
        .75fr
        1.25fr;

      gap: 100px;

      align-items: start;
    }


    /* =========================================
       LEFT INFORMATION
    ========================================== */

    .contact-info {
      position: sticky;
      top: 120px;
    }

    .section-label {
      color: var(--maroon);

      font-size: 10px;
      font-weight: 900;

      letter-spacing: .17em;
      text-transform: uppercase;
    }

    .contact-info h2 {
      margin-top: 18px;

      font-size: clamp(42px, 5vw, 65px);

      line-height: .92;

      letter-spacing: -.07em;

      font-weight: 900;
    }

    .contact-info h2 span {
      color: var(--maroon);
    }

    .contact-info > p {
      max-width: 430px;

      margin-top: 24px;

      color: #777;

      font-size: 14px;
      line-height: 1.75;
    }


    /* Contact channels */

    .contact-channels {
      margin-top: 55px;

      display: flex;
      flex-direction: column;

      gap: 14px;
    }

    .contact-channel {
      display: flex;
      align-items: center;
      gap: 15px;

      padding: 15px;

      border: 1px solid var(--line);

      border-radius: 16px;

      transition:
        transform .3s var(--ease),
        border-color .3s ease,
        box-shadow .3s ease;
    }

    .contact-channel:hover {
      transform: translateX(5px);

      border-color: rgba(128,0,0,.18);

      box-shadow:
        0 15px 40px rgba(0,0,0,.06);
    }

    .channel-icon {
      width: 43px;
      height: 43px;

      display: grid;
      place-items: center;

      border-radius: 12px;

      background: #f5eeee;

      color: var(--maroon);

      font-size: 13px;
      font-weight: 900;
    }

    .channel-content span {
      display: block;

      color: #999;

      font-size: 8px;
      font-weight: 800;

      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .channel-content strong {
      display: block;

      margin-top: 4px;

      font-size: 12px;
      font-weight: 700;
    }


    /* =========================================
       FORM CARD
    ========================================== */

    .contact-form-card {
      position: relative;

      padding: 45px;

      border-radius: 32px;

      background:
        linear-gradient(
          145deg,
          #fafafa,
          #f4f4f2
        );

      border: 1px solid rgba(0,0,0,.06);

      box-shadow:
        0 35px 90px rgba(0,0,0,.08);
    }

    .form-heading {
      margin-bottom: 35px;
    }

    .form-heading h3 {
      font-size: 31px;

      line-height: 1;

      letter-spacing: -.05em;

      font-weight: 850;
    }

    .form-heading p {
      margin-top: 9px;

      color: #888;

      font-size: 11px;
    }

    .form-grid {
      display: grid;

      grid-template-columns: 1fr 1fr;

      gap: 20px;
    }

    .form-group {
      position: relative;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group label {
      display: block;

      margin-bottom: 8px;

      color: #555;

      font-size: 9px;
      font-weight: 800;

      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {

      width: 100%;

      border: 1px solid rgba(0,0,0,.09);

      outline: none;

      border-radius: 13px;

      background: rgba(255,255,255,.8);

      color: #111;

      padding: 14px 15px;

      font-size: 12px;

      transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
    }

    .form-group input,
    .form-group select {
      height: 48px;
    }

    .form-group textarea {
      min-height: 145px;

      resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {

      border-color: rgba(128,0,0,.55);

      background: white;

      box-shadow:
        0 0 0 4px rgba(128,0,0,.06);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #aaa;
    }

    .submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;

      margin-top: 25px;
    }

    .privacy-note {
      max-width: 230px;

      color: #999;

      font-size: 8px;
      line-height: 1.5;
    }

    .submit-button {
      border: 0;

      padding: 15px 23px;

      border-radius: 12px;

      background: var(--maroon);

      color: white;

      cursor: pointer;

      font-size: 10px;
      font-weight: 850;

      box-shadow:
        0 15px 35px rgba(128,0,0,.2);

      transition:
        transform .3s var(--ease),
        box-shadow .3s ease;
    }

    .submit-button:hover {
      transform: translateY(-3px);

      box-shadow:
        0 20px 45px rgba(128,0,0,.28);
    }


    /* =========================================
       FOUR PATHS
    ========================================== */

    .paths-section {
      padding: 140px 0;

      background: #f5f5f3;
    }

    .paths-heading {
      max-width: 750px;
    }

    .paths-heading h2 {
      margin-top: 18px;

      font-size: clamp(48px, 6vw, 78px);

      line-height: .9;

      letter-spacing: -.08em;

      font-weight: 900;
    }

    .paths-heading h2 span {
      color: var(--maroon);
    }

    .paths-heading p {
      max-width: 520px;

      margin-top: 20px;

      color: #777;

      font-size: 14px;
      line-height: 1.7;
    }

    .paths-grid {
      display: grid;

      grid-template-columns: repeat(4,1fr);

      gap: 12px;

      margin-top: 70px;
    }

    .path-card {
      min-height: 310px;

      position: relative;

      display: flex;
      flex-direction: column;
      justify-content: space-between;

      padding: 25px;

      overflow: hidden;

      border-radius: 24px;

      background: white;

      border: 1px solid rgba(0,0,0,.06);

      transition:
        transform .45s var(--ease),
        background .45s ease;
    }

    .path-card:hover {
      transform: translateY(-9px);

      background: #800000;

      color: white;
    }

    .path-number {
      color: rgba(128,0,0,.3);

      font-size: 10px;
      font-weight: 900;
    }

    .path-card:hover .path-number {
      color: rgba(255,255,255,.35);
    }

    .path-icon {
      width: 50px;
      height: 50px;

      display: grid;
      place-items: center;

      border-radius: 15px;

      background: #f6eeee;

      color: var(--maroon);

      font-size: 14px;
      font-weight: 900;
    }

    .path-card:hover .path-icon {
      background: rgba(255,255,255,.12);

      color: white;
    }

    .path-card h3 {
      font-size: 23px;

      line-height: 1;

      letter-spacing: -.04em;
    }

    .path-card p {
      margin-top: 9px;

      color: #888;

      font-size: 10px;
      line-height: 1.6;
    }

    .path-card:hover p {
      color: rgba(255,255,255,.6);
    }

    .path-arrow {
      position: absolute;

      right: 20px;
      top: 20px;

      font-size: 17px;

      opacity: .3;

      transition:
        transform .3s ease,
        opacity .3s ease;
    }

    .path-card:hover .path-arrow {
      transform: translate(4px,-4px);

      opacity: 1;
    }


    /* =========================================
       RESPONSE PROMISE
    ========================================== */

    .response-section {
      padding: 150px 0;

      background: #050505;

      color: white;

      overflow: hidden;
    }

    .response-grid {
      display: grid;

      grid-template-columns: 1fr 1fr;

      gap: 100px;

      align-items: center;
    }

    .response-title {
      font-size: clamp(50px, 6vw, 82px);

      line-height: .88;

      letter-spacing: -.08em;

      font-weight: 900;
    }

    .response-title span {
      color: #a62b2b;
    }

    .response-copy {
      color: rgba(255,255,255,.48);

      font-size: 14px;
      line-height: 1.75;
    }

    .response-stat {
      margin-top: 35px;

      display: flex;
      align-items: center;
      gap: 15px;
    }

    .response-dot {
      width: 10px;
      height: 10px;

      border-radius: 50%;

      background: var(--maroon);

      box-shadow:
        0 0 0 8px rgba(128,0,0,.12);
    }

    .response-stat strong {
      font-size: 13px;
    }


    /* =========================================
       FAQ
    ========================================== */

    .faq-section {
      padding: 140px 0;

      background: white;
    }

    .faq-heading {
      max-width: 600px;
    }

    .faq-heading h2 {
      margin-top: 18px;

      font-size: clamp(50px, 6vw, 75px);

      line-height: .9;

      letter-spacing: -.08em;

      font-weight: 900;
    }

    .faq-list {
      max-width: 850px;

      margin-top: 60px;
    }

    .faq-item {
      border-top: 1px solid var(--line);
    }

    .faq-item:last-child {
      border-bottom: 1px solid var(--line);
    }

    .faq-question {
      width: 100%;

      display: flex;
      align-items: center;
      justify-content: space-between;

      padding: 25px 0;

      border: 0;

      background: transparent;

      color: #111;

      cursor: pointer;

      text-align: left;

      font-size: 15px;
      font-weight: 700;
    }

    .faq-plus {
      font-size: 20px;

      color: var(--maroon);

      transition: transform .3s ease;
    }

    .faq-answer {
      max-height: 0;

      overflow: hidden;

      transition:
        max-height .4s var(--ease);
    }

    .faq-answer p {
      max-width: 700px;

      padding-bottom: 25px;

      color: #777;

      font-size: 12px;
      line-height: 1.7;
    }

    .faq-item.open .faq-plus {
      transform: rotate(45deg);
    }


    /* =========================================
       CTA
    ========================================== */

    .final-cta {
      position: relative;

      padding: 140px 0;

      overflow: hidden;

      background: #800000;

      color: white;

      text-align: center;
    }

    .final-cta::before {
      content: "";

      position: absolute;

      width: 500px;
      height: 500px;

      left: 50%;
      top: 50%;

      transform: translate(-50%,-50%);

      border: 1px solid rgba(255,255,255,.13);

      border-radius: 50%;

      box-shadow:
        0 0 0 100px rgba(255,255,255,.025),
        0 0 0 200px rgba(255,255,255,.02);
    }

    .final-cta-content {
      position: relative;
      z-index: 2;
    }

    .final-cta h2 {
      max-width: 850px;

      margin: auto;

      font-size: clamp(55px, 8vw, 105px);

      line-height: .85;

      letter-spacing: -.09em;

      font-weight: 900;
    }

    .final-cta p {
      max-width: 500px;

      margin: 25px auto 0;

      color: rgba(255,255,255,.65);

      font-size: 14px;
      line-height: 1.7;
    }

    .final-cta a {
      display: inline-flex;

      margin-top: 30px;

      padding: 15px 22px;

      border-radius: 12px;

      background: white;

      color: #111;

      font-size: 10px;
      font-weight: 850;

      transition:
        transform .3s var(--ease);
    }

    .final-cta a:hover {
      transform: translateY(-4px);
    }


    /* =========================================
       REVEAL
    ========================================== */

    .reveal {
      opacity: 0;

      transform: translateY(35px);

      transition:
        opacity .8s ease,
        transform .8s var(--ease);
    }

    .reveal.visible {
      opacity: 1;

      transform: translateY(0);
    }


    /* =========================================
       SUCCESS MESSAGE
    ========================================== */

    .form-success {
      display: none;

      padding: 30px;

      border-radius: 18px;

      background: #f0e7e7;

      border: 1px solid rgba(128,0,0,.12);

      color: var(--maroon);

      text-align: center;
    }

    .form-success.show {
      display: block;
    }

    .form-success strong {
      display: block;

      font-size: 20px;
    }

    .form-success p {
      margin-top: 8px;

      color: #777;

      font-size: 11px;
    }


    /* =========================================
       RESPONSIVE
    ========================================== */

    @media (max-width: 950px) {

      .nav-links {
        display: none;
      }

      .contact-hero {
        min-height: 700px;
      }

      .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
      }

      .contact-info {
        position: static;
      }

      .paths-grid {
        grid-template-columns: 1fr 1fr;
      }

      .response-grid {
        grid-template-columns: 1fr;

        gap: 40px;
      }

    }


    @media (max-width: 600px) {

      .container {
        width: min(100% - 32px, 1240px);
      }

      .navbar {
        top: 10px;
      }

      .contact-hero {
        min-height: 650px;
      }

      .hero-title {
        font-size: 62px;
      }

      .hero-copy {
        font-size: 14px;
      }

      .contact-section,
      .paths-section,
      .response-section,
      .faq-section {
        padding: 90px 0;
      }

      .contact-form-card {
        padding: 25px 18px;

        border-radius: 24px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-group.full {
        grid-column: auto;
      }

      .submit-row {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
      }

      .submit-button {
        width: 100%;
      }

      .paths-grid {
        grid-template-columns: 1fr;
      }

      .path-card {
        min-height: 250px;
      }

      .final-cta {
        padding: 100px 0;
      }

    }






    
    /* =====================================================
       JOB HERO
    ===================================================== */

    .jobs-hero {

        position: relative;

        min-height: 480px;

        padding:
            155px 0 75px;

        overflow: hidden;

        color: white;

        background:

            radial-gradient(
                circle at 78% 35%,
                rgba(128,0,0,.50),
                transparent 30%
            ),

            radial-gradient(
                circle at 10% 90%,
                rgba(128,0,0,.20),
                transparent 28%
            ),

            var(--black);
    }


    .hero-grid {

        position: absolute;

        inset: 0;

        opacity: .075;

        background-image:

            linear-gradient(
                rgba(255,255,255,.15) 1px,
                transparent 1px
            ),

            linear-gradient(
                90deg,
                rgba(255,255,255,.15) 1px,
                transparent 1px
            );

        background-size:
            70px 70px;

        mask-image:
            linear-gradient(
                to bottom,
                black,
                transparent
            );
    }


    .hero-content {

        position: relative;

        z-index: 2;
    }


    .hero-kicker {

        display: inline-flex;

        align-items: center;

        gap: 7px;

        color:
            #c77b7b;

        font-size: 8px;

        font-weight: 850;

        letter-spacing: .16em;
    }


    .hero-kicker::before {

        content: "";

        width: 5px;
        height: 5px;

        border-radius: 50%;

        background:
            var(--maroon);

        box-shadow:
            0 0 15px
            rgba(128,0,0,.8);
    }


    .jobs-hero h1 {

        max-width: 900px;

        margin-top: 20px;

        font-size:
            clamp(58px, 7vw, 100px);

        line-height: .88;

        letter-spacing: -.085em;

        font-weight: 900;
    }


    .jobs-hero h1 span {
        color:
            #a83232;
    }


    .hero-description {

        max-width: 540px;

        margin-top: 23px;

        color:
            rgba(255,255,255,.48);

        font-size: 13px;

        line-height: 1.7;
    }


    /* =====================================================
       SEARCH
    ===================================================== */

    .search-wrapper {

        position: relative;

        z-index: 10;

        margin-top: 38px;
    }


    .jobs-search {

        display: flex;

        align-items: stretch;

        width: min(
            100%,
            1000px
        );

        padding: 7px;

        border:
            1px solid
            rgba(255,255,255,.14);

        border-radius: 17px;

        background:
            rgba(255,255,255,.075);

        backdrop-filter:
            blur(25px);

        -webkit-backdrop-filter:
            blur(25px);

        box-shadow:
            0 30px 80px
            rgba(0,0,0,.35);
    }


    .search-control {

        flex: 1;

        display: flex;

        align-items: center;

        gap: 12px;

        padding:
            11px 16px;
    }


    .search-control:first-child {
        min-width: 300px;
    }


    .search-icon {

        width: 36px;
        height: 36px;

        flex: 0 0 auto;

        display: grid;
        place-items: center;

        border-radius: 10px;

        background:
            rgba(128,0,0,.35);

        color:
            #e2a0a0;

        font-size: 17px;
    }


    .search-control input {

        width: 100%;

        border: 0;
        outline: 0;

        background: transparent;

        color: white;

        font-size: 11px;
    }


    .search-control input::placeholder {

        color:
            rgba(255,255,255,.43);
    }


    .search-divider {

        width: 1px;

        margin:
            9px 0;

        background:
            rgba(255,255,255,.12);
    }


    .search-submit {

        min-width: 135px;

        border: 0;

        border-radius: 11px;

        background:
            var(--maroon);

        color: white;

        font-size: 10px;

        font-weight: 800;

        transition:
            background .25s ease,
            transform .25s ease;
    }


    .search-submit:hover {

        background:
            #980000;

        transform:
            translateY(-1px);
    }


    /* =====================================================
       MAIN
    ===================================================== */

    .jobs-main {

        padding:
            65px 0 120px;
    }


    .jobs-layout {

        display: grid;

        grid-template-columns:
            230px minmax(0,1fr);

        gap: 45px;

        align-items: start;
    }


    /* =====================================================
       SIDEBAR
    ===================================================== */

    .filters {

        position: sticky;

        top: 30px;
    }


    .filter-title {

        margin-bottom: 25px;

        font-size: 9px;

        font-weight: 850;

        letter-spacing: .14em;

        text-transform:
            uppercase;
    }


    .filter-group {

        padding:
            20px 0;

        border-top:
            1px solid var(--border);
    }


    .filter-group h4 {

        margin-bottom: 13px;

        font-size: 10px;

        font-weight: 800;
    }


    .filter-option {

        display: flex;

        align-items: center;

        gap: 8px;

        margin:
            10px 0;

        color:
            #777;

        font-size: 9px;

        cursor: pointer;
    }


    .filter-option input {

        appearance: none;

        width: 15px;
        height: 15px;

        border:
            1px solid
            rgba(0,0,0,.17);

        border-radius: 4px;

        background: white;
    }


    .filter-option input:checked {

        border-color:
            var(--maroon);

        background:
            var(--maroon);

        box-shadow:
            inset 0 0 0 3px white;
    }


    .clear-filters {

        width: 100%;

        margin-top: 15px;

        padding:
            10px;

        border:
            1px solid var(--border);

        border-radius: 9px;

        background: white;

        color:
            #777;

        font-size: 8px;

        font-weight: 800;
    }


    /* =====================================================
       RESULTS HEADER
    ===================================================== */

    .results-header {

        display: flex;

        justify-content: space-between;

        align-items: flex-end;

        margin-bottom: 20px;
    }


    .results-header h2 {

        font-size: 25px;

        letter-spacing: -.05em;
    }


    .results-count {

        display: block;

        margin-top: 5px;

        color:
            #999;

        font-size: 9px;
    }


    .sort-select {

        padding:
            10px 12px;

        border:
            1px solid var(--border);

        border-radius: 9px;

        background: white;

        color:
            #555;

        outline: none;

        font-size: 9px;
    }


    /* =====================================================
       ACTIVE TAGS
    ===================================================== */

    .active-tags {

        display: flex;

        flex-wrap: wrap;

        gap: 6px;

        margin-bottom: 15px;
    }


    .active-tag {

        display: inline-flex;

        align-items: center;

        gap: 7px;

        padding:
            7px 10px;

        border-radius: 999px;

        background:
            #f1e5e5;

        color:
            var(--maroon);

        font-size: 8px;

        font-weight: 750;
    }


    .active-tag button {

        border: 0;

        background: none;

        color:
            var(--maroon);

        font-size: 11px;
    }


    /* =====================================================
       JOB CARD
    ===================================================== */

    .job-list {

        display: flex;

        flex-direction: column;

        gap: 10px;
    }


    .job-card {

        position: relative;

        display: grid;

        grid-template-columns:
            50px minmax(0,1fr) auto;

        gap: 16px;

        padding: 20px;

        border:
            1px solid var(--border);

        border-radius: 17px;

        background:
            white;

        box-shadow:
            0 5px 25px
            rgba(0,0,0,.025);

        transition:
            transform .3s ease,
            border-color .3s ease,
            box-shadow .3s ease;
    }


    .job-card:hover {

        transform:
            translateY(-3px);

        border-color:
            rgba(128,0,0,.2);

        box-shadow:
            var(--shadow);
    }


    .company-logo {

        width: 50px;
        height: 50px;

        display: grid;
        place-items: center;

        border-radius: 14px;

        background:
            #f5eaea;

        color:
            var(--maroon);

        font-size: 14px;

        font-weight: 900;
    }


    .job-main h3 {

        font-size: 14px;

        letter-spacing: -.025em;

        font-weight: 800;
    }


    .company-name {

        display: block;

        margin-top: 5px;

        color:
            #777;

        font-size: 9px;

        font-weight: 600;
    }


    .job-details {

        display: flex;

        flex-wrap: wrap;

        gap: 6px;

        margin-top: 13px;
    }


    .job-detail {

        padding:
            5px 7px;

        border-radius: 6px;

        background:
            #f6f6f6;

        color:
            #777;

        font-size: 7px;

        font-weight: 650;
    }


    .job-tags {

        display: flex;

        flex-wrap: wrap;

        gap: 5px;

        margin-top: 9px;
    }


    .job-tag {

        padding:
            5px 7px;

        border-radius: 5px;

        background:
            #faf3f3;

        color:
            #914b4b;

        font-size: 7px;

        font-weight: 650;
    }


    .job-side {

        display: flex;

        flex-direction: column;

        align-items: flex-end;

        justify-content: space-between;

        gap: 20px;
    }


    .save-button {

        width: 31px;
        height: 31px;

        display: grid;
        place-items: center;

        border:
            1px solid var(--border);

        border-radius: 9px;

        background: white;

        color:
            #999;

        font-size: 14px;

        transition:
            all .25s ease;
    }


    .save-button:hover,
    .save-button.saved {

        border-color:
            rgba(128,0,0,.2);

        background:
            #f9eded;

        color:
            var(--maroon);
    }


    .job-time {

        color:
            #aaa;

        font-size: 7px;
    }


    /* =====================================================
       FEATURED CARD
    ===================================================== */

    .featured-card {

        position: relative;

        overflow: hidden;

        margin-bottom: 10px;

        padding: 25px;

        border-radius: 20px;

        background:
            var(--black);

        color: white;
    }


    .featured-card::after {

        content: "";

        position: absolute;

        width: 220px;
        height: 220px;

        right: -80px;
        top: -90px;

        border-radius: 50%;

        background:
            var(--maroon);

        filter:
            blur(70px);

        opacity: .5;
    }


    .featured-label {

        position: relative;

        z-index: 2;

        color:
            #c77979;

        font-size: 7px;

        font-weight: 850;

        letter-spacing: .14em;
    }


    .featured-content {

        position: relative;

        z-index: 2;

        display: flex;

        justify-content: space-between;

        align-items: center;

        gap: 20px;

        margin-top: 18px;
    }


    .featured-content h3 {

        font-size: 20px;

        letter-spacing: -.045em;
    }


    .featured-content p {

        max-width: 450px;

        margin-top: 6px;

        color:
            rgba(255,255,255,.45);

        font-size: 9px;

        line-height: 1.5;
    }


    .featured-button {

        padding:
            11px 15px;

        border-radius: 9px;

        background:
            white;

        color:
            #111;

        font-size: 8px;

        font-weight: 800;

        white-space: nowrap;
    }


    /* =====================================================
       EMPTY STATE
    ===================================================== */

    .empty-state {

        display: none;

        padding: 80px 30px;

        border:
            1px dashed
            rgba(0,0,0,.12);

        border-radius: 18px;

        text-align: center;

        background: white;
    }


    .empty-state.visible {
        display: block;
    }


    .empty-state h3 {

        font-size: 22px;

        letter-spacing: -.04em;
    }


    .empty-state p {

        margin-top: 8px;

        color: #888;

        font-size: 10px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {

        padding:
            70px 0 35px;

        background:
            var(--black);

        color: white;
    }


    .footer-top {

        display: flex;

        justify-content: space-between;

        gap: 40px;

        padding-bottom: 60px;
    }


    .footer-brand {

        max-width: 300px;
    }


    .footer-brand p {

        margin-top: 15px;

        color:
            rgba(255,255,255,.38);

        font-size: 9px;

        line-height: 1.7;
    }


    .footer-links {

        display: flex;

        gap: 70px;
    }


    .footer-column h4 {

        margin-bottom: 15px;

        color:
            rgba(255,255,255,.35);

        font-size: 7px;

        letter-spacing: .13em;

        text-transform: uppercase;
    }


    .footer-column a {

        display: block;

        margin:
            10px 0;

        color:
            rgba(255,255,255,.62);

        font-size: 9px;
    }


    .footer-bottom {

        padding-top: 25px;

        border-top:
            1px solid
            rgba(255,255,255,.08);

        color:
            rgba(255,255,255,.3);

        font-size: 8px;
    }


    /* =====================================================
       MOBILE
    ===================================================== */

    @media(max-width: 900px) {

        .nav-links {
            display: none;
        }


        .jobs-layout {

            grid-template-columns:
                1fr;

            gap: 25px;
        }


        .filters {

            position: static;

            display: none;
        }


        .jobs-search {

            flex-direction: column;

            gap: 3px;
        }


        .search-control:first-child {
            min-width: 0;
        }


        .search-divider {

            width: auto;

            height: 1px;

            margin: 0 15px;
        }


        .search-submit {

            min-height: 48px;
        }


        .footer-top {

            flex-direction: column;
        }

    }


    @media(max-width: 600px) {

        .container {

            width:
                calc(100% - 28px);
        }


        .site-header .nav {

            height: 75px;
        }


        .nav-login {
            display: none;
        }


        .nav-post {

            padding:
                10px 12px;
        }


        .jobs-hero {

            min-height:
                580px;

            padding:
                125px 0 55px;
        }


        .jobs-hero h1 {

            font-size:
                57px;
        }


        .hero-description {

            font-size:
                12px;
        }


        .job-card {

            grid-template-columns:
                40px minmax(0,1fr);
        }


        .company-logo {

            width: 40px;
            height: 40px;
        }


        .job-side {

            grid-column:
                2;

            flex-direction:
                row;

            align-items:
                center;

            justify-content:
                space-between;
        }


        .results-header {

            align-items:
                flex-start;

            flex-direction:
                column;

            gap: 15px;
        }


        .footer-links {

            display:
                grid;

            grid-template-columns:
                1fr 1fr;

            gap: 25px;
        }

    }

    

/* =========================================================
   SETTLEU LARGE FOOTER
========================================================= */

.settle-footer {

    position: relative;

    overflow: hidden;

    background: #050505;

    color: #fff;

}


/* =========================================================
   GLOBAL
========================================================= */

.footer-container {

    width:
        min(
            1380px,
            calc(100% - 70px)
        );

    margin: auto;

}


/* =========================================================
   HERO
========================================================= */

.settle-footer-hero {

    position: relative;

    min-height: 780px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 45%,
            rgba(128,0,0,.50),
            transparent 27%
        ),

        radial-gradient(
            circle at 15% 85%,
            rgba(128,0,0,.22),
            transparent 25%
        ),

        #050505;

}


/* subtle grid */

.settle-footer-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .045;

    background-image:

        linear-gradient(
            rgba(255,255,255,.4) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,.4) 1px,
            transparent 1px
        );

    background-size:
        90px 90px;

}


/* noise */

.footer-noise {

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");

}


/* =========================================================
   ORBS
========================================================= */

.footer-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(80px);

}


.footer-orb-one {

    width: 350px;
    height: 350px;

    right: -120px;
    top: 70px;

    background:
        rgba(128,0,0,.35);

}


.footer-orb-two {

    width: 220px;
    height: 220px;

    left: 35%;
    bottom: -150px;

    background:
        rgba(128,0,0,.18);

}


/* =========================================================
   TOPLINE
========================================================= */

.footer-topline {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    padding-bottom: 35px;

    color:
        rgba(255,255,255,.30);

    font-size: 9px;

    font-weight: 800;

    letter-spacing:
        .16em;

}


/* =========================================================
   GIANT HEADING
========================================================= */

.footer-big-heading {

    position: relative;

    z-index: 2;

}


/* HUGE */

.footer-line {

    display: block;

    font-size:
        clamp(
            80px,
            11.5vw,
            175px
        );

    line-height:
        .79;

    letter-spacing:
        -.09em;

    font-weight:
        900;

    color: #fff;

}


/* OUTLINE TYPE */

.footer-outline {

    color: transparent;

    -webkit-text-stroke:
        2px rgba(255,255,255,.48);

}


.footer-hero-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-top: 65px;

}


.footer-hero-bottom p {

    max-width: 390px;

    color:
        rgba(255,255,255,.42);

    font-size: 13px;

    line-height: 1.7;

}


.footer-main-button {

    display: flex;

    align-items: center;

    gap: 35px;

    padding:
        9px 10px 9px 22px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 14px;

    background:
        rgba(255,255,255,.07);

    backdrop-filter:
        blur(25px);

    color: white;

    font-size: 12px;

    font-weight: 800;

    transition:
        .3s ease;

}


.footer-main-button b {

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        #800000;

    font-size: 18px;

}


.footer-main-button:hover {

    transform:
        translateY(-4px);

    background:
        rgba(255,255,255,.13);

}


/* =========================================================
   NAV AREA
========================================================= */

.settle-footer-nav {

    position: relative;

    background:
        #080808;

    border-top:
        1px solid
        rgba(255,255,255,.08);

}


/* =========================================================
   BRAND
========================================================= */

.footer-brand-row {

    display: flex;

    justify-content: space-between;

    gap: 70px;

    padding:
        90px 0 100px;

}


.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    font-size: 27px;

    font-weight: 900;

    letter-spacing:
        -.065em;

}


.footer-logo-box {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        #800000;

    font-size: 15px;

    box-shadow:
        0 15px 45px
        rgba(128,0,0,.35);

}


.footer-brand-large p {

    max-width: 390px;

    margin-top: 22px;

    color:
        rgba(255,255,255,.38);

    font-size: 13px;

    line-height: 1.7;

}


.footer-brand-message {

    max-width: 390px;

}


.footer-brand-message span {

    display: block;

    margin-bottom: 15px;

    color:
        #9d5151;

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        .18em;

}


.footer-brand-message strong {

    display: block;

    font-size: 24px;

    line-height: 1.05;

    letter-spacing:
        -.05em;

}


/* =========================================================
   LINKS
========================================================= */

.footer-links-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 40px;

    padding:
        55px 0 100px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

}


.footer-link-group {

    min-width: 0;

}


.footer-section-number {

    display: block;

    margin-bottom: 22px;

    color:
        rgba(255,255,255,.23);

    font-size: 9px;

    font-weight: 800;

}


.footer-link-group h3 {

    margin-bottom: 30px;

    font-size: 25px;

    letter-spacing:
        -.045em;

}


.footer-link-group a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    max-width: 245px;

    margin-bottom: 17px;

    color:
        rgba(255,255,255,.52);

    font-size: 13px;

    font-weight: 500;

    transition:
        .25s ease;

}


.footer-link-group a i {

    color:
        rgba(255,255,255,.18);

    font-style:
        normal;

    font-size: 13px;

    transition:
        .25s ease;

}


.footer-link-group a:hover {

    color: white;

    transform:
        translateX(5px);

}


.footer-link-group a:hover i {

    color:
        #b34b4b;

}


/* =========================================================
   GIANT WORDMARK
========================================================= */

.footer-giant-brand {

    overflow: hidden;

    margin:
        0 -15px;

    padding:
        30px 0 60px;

    color:
        rgba(255,255,255,.045);

    font-size:
        clamp(
            120px,
            22vw,
            330px
        );

    line-height:
        .65;

    font-weight:
        900;

    letter-spacing:
        -.115em;

    white-space:
        nowrap;

    user-select:
        none;

}


.footer-giant-brand span {

    color:
        rgba(128,0,0,.24);

}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom-row {

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    gap: 30px;

    padding:
        25px 0 30px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.25);

    font-size: 9px;

}


.footer-policy {

    display: flex;

    gap: 30px;

}


.footer-policy a {

    transition:
        color .2s ease;

}


.footer-policy a:hover {

    color: white;

}


.footer-made {

    display: flex;

    justify-content: flex-end;

    gap: 9px;

    letter-spacing:
        .1em;

}


.footer-made em {

    color:
        #800000;

    font-style:
        normal;

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width: 900px) {

    .settle-footer-hero {

        min-height:
            670px;

    }


    .footer-container {

        width:
            calc(100% - 40px);

    }


    .footer-links-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-brand-row {

        flex-direction:
            column;

    }


    .footer-brand-message {

        max-width:
            450px;

    }


    .footer-bottom-row {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-made {

        justify-content:
            flex-start;

        grid-column:
            1 / -1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width: 600px) {

    .settle-footer-hero {

        min-height:
            620px;

    }


    .footer-container {

        width:
            calc(100% - 30px);

    }


    .footer-topline {

        font-size:
            7px;

    }


    .footer-topline span:last-child {

        display:
            none;

    }


    .footer-line {

        font-size:
            clamp(
                65px,
                17vw,
                100px
            );

        line-height:
            .83;

    }


    .footer-outline {

        -webkit-text-stroke:
            1px rgba(255,255,255,.4);

    }


    .footer-hero-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;

        margin-top:
            45px;

    }


    .footer-hero-bottom p {

        font-size:
            11px;

    }


    .footer-main-button {

        width:
            100%;

        justify-content:
            space-between;

    }


    .footer-brand-row {

        padding:
            60px 0;

    }


    .footer-logo {

        font-size:
            23px;

    }


    .footer-brand-message strong {

        font-size:
            21px;

    }


    .footer-links-grid {

        grid-template-columns:
            1fr;

        gap:
            50px;

        padding:
            45px 0 70px;

    }


    .footer-link-group h3 {

        font-size:
            27px;

    }


    .footer-link-group a {

        max-width:
            100%;

        font-size:
            14px;

    }


    .footer-giant-brand {

        font-size:
            27vw;

        margin-left:
            -5px;

    }


    .footer-bottom-row {

        grid-template-columns:
            1fr;

        gap:
            18px;

    }


    .footer-made {

        grid-column:
            auto;

        justify-content:
            flex-start;

    }

}


/* =========================================================
   COOKIE SYSTEM
========================================================= */

.cookie-banner{

    position:fixed;

    left:20px;
    right:20px;
    bottom:20px;

    z-index:9999;

    opacity:0;
    visibility:hidden;

    transform:
        translateY(30px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s ease;
}

.cookie-banner.show{

    opacity:1;
    visibility:visible;

    transform:
        translateY(0);
}


.cookie-inner{

    width:min(1180px,100%);

    margin:auto;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:35px;

    padding:
        22px 24px;

    border:
        1px solid rgba(128,0,0,.18);

    border-radius:22px;

    background:
        rgba(255,255,255,.93);

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    box-shadow:
        0 25px 80px rgba(0,0,0,.18);

}


/* =========================================================
   COPY
========================================================= */

.cookie-copy{

    display:flex;

    align-items:center;

    gap:16px;

    min-width:0;
}

.cookie-icon{

    flex:0 0 45px;

    width:45px;
    height:45px;

    display:grid;
    place-items:center;

    border-radius:13px;

    color:#fff;

    background:
        linear-gradient(
            145deg,
            #800000,
            #500000
        );

    font-size:23px;

    box-shadow:
        0 10px 30px rgba(128,0,0,.2);
}

.cookie-eyebrow{

    display:block;

    margin-bottom:6px;

    color:#800000;

    font-size:8px;

    font-weight:800;

    letter-spacing:.18em;
}

.cookie-copy h3{

    margin-bottom:5px;

    color:#111;

    font-family:
        "Manrope",
        sans-serif;

    font-size:18px;

    line-height:1;

    letter-spacing:-.05em;
}

.cookie-copy p{

    max-width:600px;

    margin:0;

    color:#777;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:11px;

    line-height:1.6;
}


/* =========================================================
   ACTIONS
========================================================= */

.cookie-actions{

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:8px;

    flex-shrink:0;
}

.cookie-btn{

    height:43px;

    padding:
        0 16px;

    border-radius:11px;

    border:1px solid #e5e5e5;

    background:#fff;

    color:#222;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:10px;

    font-weight:700;

    cursor:pointer;

    transition:
        .25s ease;
}

.cookie-btn:hover{

    border-color:#c9a3a3;

    transform:
        translateY(-2px);
}

.cookie-primary{

    border-color:#800000;

    color:#fff;

    background:#800000;

    box-shadow:
        0 8px 25px rgba(128,0,0,.18);
}

.cookie-primary:hover{

    color:#fff;

    border-color:#650000;

    background:#650000;
}

.cookie-primary span{

    margin-left:7px;

    font-size:13px;
}


/* =========================================================
   OVERLAY
========================================================= */

.cookie-overlay{

    position:fixed;

    inset:0;

    z-index:10000;

    display:grid;

    place-items:center;

    padding:20px;

    background:
        rgba(0,0,0,.58);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    opacity:0;

    visibility:hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.cookie-overlay.show{

    opacity:1;

    visibility:visible;
}


/* =========================================================
   MODAL
========================================================= */

.cookie-modal{

    width:
        min(600px,100%);

    max-height:
        calc(100vh - 40px);

    overflow:auto;

    position:relative;

    border:
        1px solid rgba(255,255,255,.7);

    border-radius:26px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 40px 120px rgba(0,0,0,.3);

    transform:
        translateY(20px)
        scale(.97);

    transition:
        transform .35s ease;
}

.cookie-overlay.show
.cookie-modal{

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CLOSE
========================================================= */

.cookie-close{

    position:absolute;

    top:18px;
    right:18px;

    width:36px;
    height:36px;

    display:grid;
    place-items:center;

    border:1px solid #e8e8e8;

    border-radius:50%;

    background:#fff;

    color:#444;

    font-size:20px;

    cursor:pointer;

    transition:.2s;
}

.cookie-close:hover{

    color:#800000;

    border-color:#d5b4b4;

    transform:rotate(90deg);
}


/* =========================================================
   MODAL TOP
========================================================= */

.cookie-modal-top{

    padding:
        45px 38px
        28px;

    border-bottom:
        1px solid #eeeeee;
}

.cookie-modal-top .cookie-eyebrow{

    margin-bottom:14px;

    font-size:9px;
}

.cookie-modal-top h2{

    margin-bottom:13px;

    color:#0a0a0a;

    font-family:
        "Manrope",
        sans-serif;

    font-size:
        clamp(42px,7vw,68px);

    line-height:.85;

    letter-spacing:-.085em;
}

.cookie-modal-top h2 span{

    color:transparent;

    -webkit-text-stroke:
        1.5px #800000;
}

.cookie-modal-top p{

    max-width:480px;

    margin:0;

    color:#777;

    font-size:12px;

    line-height:1.7;
}


/* =========================================================
   OPTIONS
========================================================= */

.cookie-options{

    padding:
        8px 38px;
}

.cookie-option{

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:25px;

    padding:
        24px 0;

    border-bottom:
        1px solid #eeeeee;
}

.cookie-option:last-child{

    border-bottom:0;
}

.cookie-option-info{

    flex:1;
}

.cookie-option-title{

    display:flex;

    align-items:center;

    gap:9px;

    margin-bottom:7px;
}

.cookie-option-title strong{

    color:#171717;

    font-family:
        "Manrope",
        sans-serif;

    font-size:14px;

    letter-spacing:-.03em;
}

.cookie-required,
.cookie-optional{

    padding:
        4px 7px;

    border-radius:5px;

    font-size:7px;

    font-weight:800;

    letter-spacing:.08em;
}

.cookie-required{

    color:#777;

    background:#eeeeee;
}

.cookie-optional{

    color:#800000;

    background:#f7eaea;
}

.cookie-option-info p{

    max-width:450px;

    margin:0;

    color:#858585;

    font-size:11px;

    line-height:1.65;
}


/* =========================================================
   SWITCH
========================================================= */

.cookie-switch{

    position:relative;

    display:block;

    width:46px;
    height:26px;

    flex:0 0 46px;
}

.cookie-switch input{

    position:absolute;

    opacity:0;
}

.cookie-switch span{

    position:absolute;

    inset:0;

    border-radius:30px;

    background:#ddd;

    cursor:pointer;

    transition:.25s;
}

.cookie-switch span::after{

    content:"";

    position:absolute;

    top:3px;
    left:3px;

    width:20px;
    height:20px;

    border-radius:50%;

    background:#fff;

    box-shadow:
        0 2px 6px rgba(0,0,0,.15);

    transition:.25s;
}

.cookie-switch input:checked + span{

    background:#800000;
}

.cookie-switch input:checked + span::after{

    transform:
        translateX(20px);
}

.cookie-switch input:disabled + span{

    cursor:not-allowed;

    opacity:.8;

    background:#800000;
}


/* =========================================================
   MODAL BOTTOM
========================================================= */

.cookie-modal-bottom{

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:15px;

    padding:
        24px 38px 30px;

    border-top:
        1px solid #eeeeee;
}

.cookie-modal-bottom a{

    color:#777;

    font-size:10px;

    font-weight:700;
}

.cookie-modal-bottom a:hover{

    color:#800000;
}

.cookie-modal-bottom a span{

    margin-left:4px;
}

.cookie-save{

    height:45px;

    padding:
        0 18px;

    border:0;

    border-radius:11px;

    background:#800000;

    color:#fff;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:10px;

    font-weight:700;

    cursor:pointer;

    box-shadow:
        0 10px 30px rgba(128,0,0,.18);

    transition:.25s;
}

.cookie-save:hover{

    background:#620000;

    transform:
        translateY(-2px);
}

.cookie-save span{

    margin-left:7px;
}


/* =========================================================
   REOPEN SETTINGS BUTTON
========================================================= */

.cookie-settings-trigger{

    position:fixed;

    left:18px;
    bottom:18px;

    z-index:9990;

    display:none;

    align-items:center;

    gap:7px;

    height:36px;

    padding:
        0 12px;

    border:
        1px solid rgba(128,0,0,.18);

    border-radius:9px;

    background:
        rgba(255,255,255,.92);

    backdrop-filter:
        blur(15px);

    color:#555;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:9px;

    font-weight:700;

    cursor:pointer;

    box-shadow:
        0 8px 30px rgba(0,0,0,.08);
}

.cookie-settings-trigger:hover{

    color:#800000;

    border-color:
        rgba(128,0,0,.35);
}

.cookie-settings-trigger span{

    color:#800000;

    font-size:13px;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:760px){

    .cookie-banner{

        left:10px;
        right:10px;
        bottom:10px;
    }

    .cookie-inner{

        align-items:stretch;

        flex-direction:column;

        gap:18px;

        padding:18px;
    }

    .cookie-copy{

        align-items:flex-start;
    }

    .cookie-icon{

        flex-basis:38px;

        width:38px;
        height:38px;

        font-size:19px;
    }

    .cookie-copy h3{

        font-size:16px;
    }

    .cookie-copy p{

        font-size:10px;
    }

    .cookie-actions{

        display:grid;

        grid-template-columns:
            1fr 1fr;

        width:100%;
    }

    .cookie-primary{

        grid-column:
            1 / -1;
    }

    .cookie-modal-top{

        padding:
            38px 24px
            25px;
    }

    .cookie-modal-top h2{

        font-size:52px;
    }

    .cookie-options{

        padding:
            5px 24px;
    }

    .cookie-option{

        align-items:flex-start;
    }

    .cookie-option-info p{

        font-size:10px;
    }

    .cookie-modal-bottom{

        flex-direction:column;

        align-items:stretch;

        padding:
            20px 24px 25px;
    }

    .cookie-save{

        width:100%;
    }

}

/* =========================================
   CAREER REACH
========================================= */

.career-reach {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.career-reach-head {
    display: grid;
    grid-template-columns: 1.2fr .7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 65px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--maroon);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.career-reach-head h2 {
    max-width: 850px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 100px);
    line-height: .9;
    letter-spacing: -.075em;
}

.career-reach-head h2 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--maroon);
}

.career-reach-head p {
    max-width: 420px;
    margin: 0 0 5px auto;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   CARDS
========================================= */

.career-reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.reach-card {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background: #111;
    isolation: isolate;
}

.reach-image {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.reach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}

.reach-card:hover .reach-image img {
    transform: scale(1.07);
}

.reach-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.08) 10%,
            rgba(0,0,0,.15) 35%,
            rgba(0,0,0,.88) 100%
        );
}


/* =========================================
   CONTENT
========================================= */

.reach-content {
    height: 100%;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
}

.reach-top {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reach-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);

    font-size: 10px;
}

.reach-tag {
    padding: 9px 12px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 100px;

    background: rgba(255,255,255,.1);
    backdrop-filter: blur(15px);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.reach-content h3 {
    margin-bottom: 20px;

    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 72px);
    line-height: .88;
    letter-spacing: -.065em;
}

.reach-content h3 em {
    color: #fff;
    font-style: normal;
    opacity: .65;
}

.reach-content p {
    max-width: 480px;
    margin-bottom: 28px;

    color: rgba(255,255,255,.7);
    font-size: 13px;
    line-height: 1.7;
}

.reach-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 0;

    border-bottom:
        1px solid rgba(255,255,255,.35);

    font-size: 11px;
    font-weight: 800;
}

.reach-link strong {
    font-size: 17px;
    transition: transform .25s ease;
}

.reach-card:hover .reach-link strong {
    transform: translate(4px,-4px);
}


/* =========================================
   BOTTOM LABEL
========================================= */

.reach-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    margin-top: 35px;

    color: #999;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
}

.reach-bottom i {
    width: 4px;
    height: 4px;

    border-radius: 50%;
    background: var(--maroon);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .career-reach {
        padding: 90px 0;
    }

    .career-reach-head {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .career-reach-head h2 {
        font-size: clamp(46px, 13vw, 70px);
    }

    .career-reach-head p {
        margin: 0;
    }

    .career-reach-grid {
        grid-template-columns: 1fr;
    }

    .reach-card,
    .reach-content {
        min-height: 540px;
    }

    .reach-content {
        padding: 28px;
    }

    .reach-content h3 {
        font-size: 48px;
    }

    .reach-bottom {
        flex-wrap: wrap;
        gap: 10px;
    }

}