@font-face {
    font-family: "MyEz Sans";
    src: url("https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FN_C-bk.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

:root {
    --ink: #08111f;
    --ink-soft: #334154;
    --muted: #6b778a;
    --line: #dfe5ed;
    --paper: #f6f8fb;
    --white: #ffffff;
    --mint: #57d7c3;
    --mint-light: #dff8f2;
    --blue: #235cf3;
    --blue-dark: #1645c7;
    --coral: #ff846c;
    --shell: min(1180px, calc(100% - 64px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "MyEz Sans", "Trebuchet MS", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgb(8 17 31 / 9%);
    background: rgb(255 255 255 / 88%);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px 10px 10px 2px;
    color: var(--ink);
    background: var(--mint);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.brand-name b {
    color: var(--blue);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    margin-left: auto;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 700;
}

.desktop-nav a,
.footer-meta a,
.card-link,
.text-link {
    transition: color 180ms ease, opacity 180ms ease;
}

.desktop-nav a:hover,
.footer-meta a:hover,
.card-link:hover,
.text-link:hover {
    color: var(--blue);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    border: 1px solid var(--blue);
    border-radius: 3px;
    color: var(--white);
    background: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
    border-color: var(--blue-dark);
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.button span {
    font-size: 17px;
    font-weight: 400;
    line-height: 0;
}

.button-small {
    min-height: 38px;
    padding: 0 15px;
    font-size: 10px;
}

.button-outline {
    border-color: var(--line);
    color: var(--ink);
    background: transparent;
}

.button-outline:hover {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: min(650px, calc(100svh - 145px));
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.hero-photo,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-photo {
    z-index: -2;
    object-fit: cover;
    object-position: center 46%;
}

.hero-shade {
    z-index: -1;
    background: rgb(8 17 31 / 72%);
}

.hero-inner {
    display: flex;
    min-height: min(650px, calc(100svh - 145px));
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 24px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow-dot,
.status-dot,
.label-pulse {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px var(--mint-light);
}

.hero .eyebrow {
    color: var(--mint);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    letter-spacing: 0;
}

h1 {
    max-width: 690px;
    margin-bottom: 13px;
    font-size: clamp(50px, 7vw, 92px);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 0.99;
}

h1 em,
h2 em {
    color: var(--blue);
    font-style: normal;
}

.hero h1 em {
    color: var(--mint);
}

.hero-tagline {
    max-width: 570px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -1.1px;
    line-height: 1.12;
}

.hero-lede {
    max-width: 510px;
    margin-bottom: 34px;
    color: rgb(255 255 255 / 78%);
    font-size: 16px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.text-link span {
    color: var(--blue);
    font-size: 17px;
    font-weight: 400;
}

.text-link-light {
    color: var(--white);
}

.text-link-light span {
    color: var(--mint);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 52px 0 0;
    color: rgb(255 255 255 / 63%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    box-shadow: none;
}

.proof-band {
    color: var(--white);
    background: var(--blue);
}

.proof-grid {
    display: grid;
    min-height: 154px;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    align-items: center;
    gap: 20px;
}

.proof-intro {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.proof-item {
    padding-left: 22px;
    border-left: 1px solid rgb(255 255 255 / 30%);
}

.proof-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.proof-item strong span {
    color: var(--mint);
}

.proof-item small {
    color: rgb(255 255 255 / 73%);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.35;
}

.section {
    padding-top: 122px;
    padding-bottom: 125px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(270px, .65fr);
    align-items: end;
    gap: 80px;
    margin-bottom: 56px;
}

.section-heading .eyebrow {
    margin-bottom: 17px;
}

h2 {
    max-width: 620px;
    margin-bottom: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -1.8px;
    line-height: 1.03;
}

.section-heading > p,
.talent-panel-copy > p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card {
    position: relative;
    min-height: 335px;
    padding: 32px 30px 29px;
    border: 1px solid var(--line);
    background: var(--white);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    border-color: var(--blue);
    box-shadow: 0 18px 35px rgb(20 51 100 / 10%);
    transform: translateY(-4px);
}

.service-card-featured {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.service-card-featured:hover {
    border-color: var(--ink);
}

.card-number {
    position: absolute;
    top: 32px;
    right: 30px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
}

.service-card-featured .card-number {
    color: rgb(255 255 255 / 45%);
}

.service-icon {
    display: flex;
    height: 48px;
    align-items: center;
    margin-bottom: 30px;
    color: var(--blue);
}

.service-card-featured .service-icon {
    color: var(--mint);
}

.icon-spark {
    font-size: 38px;
    line-height: 1;
}

.icon-bars {
    align-items: end;
    gap: 6px;
}

.icon-bars i {
    display: block;
    width: 7px;
    background: var(--blue);
}

.icon-bars i:nth-child(1) { height: 20px; }
.icon-bars i:nth-child(2) { height: 35px; }
.icon-bars i:nth-child(3) { height: 27px; }

.icon-people {
    position: relative;
    gap: 5px;
    align-items: end;
}

.icon-people i {
    display: block;
    width: 15px;
    height: 25px;
    border-radius: 9px 9px 2px 2px;
    background: var(--blue);
}

.icon-people i:nth-child(2) {
    width: 20px;
    height: 37px;
}

.icon-people i:nth-child(3) {
    height: 29px;
}

.service-card h3 {
    max-width: 220px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.18;
}

.service-card p {
    max-width: 290px;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.service-card-featured p {
    color: rgb(255 255 255 / 64%);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 10px;
    font-weight: 800;
}

.card-link span {
    color: var(--blue);
    font-size: 16px;
    font-weight: 400;
}

.service-card-featured .card-link {
    color: var(--mint);
}

.service-card-featured .card-link span {
    color: var(--white);
}

.approach-section {
    color: var(--white);
    background: var(--ink);
}

.approach-layout {
    display: grid;
    grid-template-columns: minmax(270px, .8fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
    padding-top: 115px;
    padding-bottom: 115px;
}

.eyebrow-light {
    color: var(--mint);
}

.approach-copy h2 {
    margin-bottom: 27px;
    color: var(--white);
}

.approach-copy h2 em {
    color: var(--mint);
}

.approach-copy > p:not(.eyebrow) {
    max-width: 395px;
    margin-bottom: 31px;
    color: rgb(255 255 255 / 64%);
    font-size: 14px;
    line-height: 1.8;
}

.button-light {
    border-color: var(--mint);
    color: var(--ink);
    background: var(--mint);
}

.button-light:hover {
    border-color: #86e7d7;
    background: #86e7d7;
}

.process-list {
    position: relative;
    padding-left: 63px;
}

.process-line {
    position: absolute;
    top: 20px;
    bottom: 24px;
    left: 15px;
    width: 1px;
    background: rgb(255 255 255 / 17%);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 21px;
    min-height: 100px;
}

.step-index {
    position: relative;
    z-index: 1;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgb(87 215 195 / 80%);
    border-radius: 50%;
    color: var(--mint);
    background: var(--ink);
    font-size: 9px;
    font-weight: 800;
}

.process-step h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
}

.process-step p {
    max-width: 390px;
    margin-bottom: 0;
    color: rgb(255 255 255 / 53%);
    font-size: 12px;
    line-height: 1.65;
}

.talent-panel {
    display: grid;
    min-height: 410px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
    overflow: hidden;
    color: var(--ink);
    background: var(--mint-light);
}

.talent-panel-copy {
    padding: 62px 60px;
}

.talent-panel-copy .eyebrow {
    margin-bottom: 20px;
}

.talent-panel-copy h2 {
    max-width: 500px;
    margin-bottom: 21px;
}

.talent-panel-copy > p {
    max-width: 455px;
    margin-bottom: 28px;
}

.text-link-dark {
    color: var(--blue);
}

.talent-art {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: var(--coral);
}

.art-ring {
    position: absolute;
    border: 1px solid rgb(8 17 31 / 34%);
    border-radius: 50%;
}

.ring-large {
    width: 430px;
    height: 430px;
    top: 30px;
    left: 8%;
}

.ring-small {
    width: 270px;
    height: 270px;
    top: 110px;
    left: 25%;
}

.art-star {
    position: absolute;
    top: 47%;
    left: 47%;
    color: var(--ink);
    font-size: 46px;
}

.art-word {
    position: absolute;
    right: 40px;
    bottom: 28px;
    color: rgb(8 17 31 / 20%);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: .95;
}

.art-word b {
    color: rgb(8 17 31 / 55%);
    font-size: 26px;
}

.cta-section {
    padding-top: 0;
    padding-bottom: 120px;
}

.cta-inner {
    position: relative;
    overflow: hidden;
    padding: 80px 70px;
    color: var(--white);
    background: var(--blue);
}

.cta-inner::after {
    position: absolute;
    right: -40px;
    bottom: -165px;
    width: 370px;
    height: 370px;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgb(255 255 255 / 7%), 0 0 0 100px rgb(255 255 255 / 4%);
    content: "";
}

.cta-inner .eyebrow {
    position: relative;
    z-index: 1;
    color: var(--mint);
}

.cta-inner h2 {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-bottom: 31px;
    color: var(--white);
}

.cta-inner h2 em {
    color: var(--mint);
}

.button-dark {
    position: relative;
    z-index: 1;
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    border-color: #172942;
    background: #172942;
}

.cta-contact {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 0 0 20px;
    color: rgb(255 255 255 / 68%);
    font-size: 11px;
}

.cta-contact a {
    color: var(--white);
    font-weight: 800;
}

.site-footer {
    color: rgb(255 255 255 / 67%);
    background: var(--ink);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 30px;
    min-height: 112px;
}

.brand-footer {
    color: var(--white);
}

.footer-inner > p {
    margin: 0;
    font-size: 10px;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgb(255 255 255 / 45%);
    font-size: 9px;
}

.footer-meta a {
    color: var(--mint);
    font-weight: 700;
}

@media (max-width: 900px) {
    :root {
        --shell: min(100% - 42px, 680px);
    }

    .desktop-nav {
        display: none;
    }

    .hero,
    .hero-inner {
        min-height: 590px;
    }

    .hero-inner {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .proof-intro {
        grid-column: span 2;
        margin-bottom: 25px;
    }

    .proof-item {
        padding: 15px 15px 15px 20px;
    }

    .section {
        padding-top: 82px;
        padding-bottom: 88px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 38px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 270px;
    }

    .approach-layout {
        grid-template-columns: 1fr;
        gap: 65px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .talent-panel {
        grid-template-columns: 1fr;
    }

    .talent-art {
        min-height: 300px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .footer-meta {
        justify-content: space-between;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: calc(100% - 32px);
    }

    .header-inner {
        min-height: 70px;
        gap: 12px;
    }

    .brand {
        font-size: 14px;
    }

    .brand-mark {
        width: 29px;
        height: 29px;
        border-radius: 9px 9px 9px 2px;
        font-size: 18px;
    }

    .header-inner .button-small {
        max-width: 150px;
        min-height: 34px;
        padding: 0 9px;
        font-size: 8px;
        text-align: center;
    }

    h1 {
        margin-bottom: 24px;
        font-size: clamp(42px, 13vw, 58px);
        letter-spacing: -1.8px;
    }

    h2 {
        font-size: 37px;
        letter-spacing: -1.3px;
    }

    .hero,
    .hero-inner {
        min-height: 540px;
    }

    .hero-inner {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 9px;
        letter-spacing: 1.25px;
    }

    .hero-lede {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-note {
        margin-top: 35px;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-item strong {
        font-size: 26px;
    }

    .proof-item small {
        font-size: 8px;
    }

    .section-heading > p,
    .talent-panel-copy > p,
    .approach-copy > p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.7;
    }

    .service-card {
        min-height: 285px;
        padding: 27px 23px 24px;
    }

    .card-number {
        top: 27px;
        right: 23px;
    }

    .approach-layout {
        gap: 50px;
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .process-list {
        padding-left: 42px;
    }

    .process-step {
        grid-template-columns: 35px 1fr;
        gap: 13px;
    }

    .process-step h3 {
        font-size: 17px;
    }

    .process-step p {
        font-size: 11px;
    }

    .talent-panel-copy {
        padding: 42px 25px;
    }

    .talent-art {
        min-height: 260px;
    }

    .ring-large {
        width: 300px;
        height: 300px;
        top: 20px;
    }

    .ring-small {
        width: 190px;
        height: 190px;
        top: 75px;
    }

    .cta-inner {
        padding: 52px 25px;
    }

    .cta-inner h2 {
        font-size: 36px;
    }

    .cta-contact {
        display: block;
        margin: 19px 0 0;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
    }
}
