:root {
    --ink: #0a192f;
    --ink-soft: #10233f;
    --panel: #101d2a;
    --line-dark: rgba(255, 255, 255, .105);
    --white: #fff;
    --paper: #f4f8f5;
    --paper-strong: #e7f0e9;
    --text: #0a192f;
    --muted: #677486;
    --muted-light: #9aa7b7;
    --red: #59c36a;
    --red-dark: #2f9250;
    --blue: #86db94;
    --blue-dark: #3b9f55;
    --green: #59c36a;
    --yellow: #d6de72;
    --container: 1240px;
    --radius: 18px;
    --radius-lg: 30px;
    --shadow: 0 30px 80px rgba(12, 25, 39, .13);
    --display: Arial, Helvetica, sans-serif;
    --body: Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    line-height: 1.07;
    letter-spacing: -.045em;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    color: var(--white);
    background: var(--red);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 24px));
}

.skip-link:focus {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 26px;
    height: 2px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: #59c36a;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .55fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 48px;
}

.section-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(38px, 5vw, 66px);
}

.section-heading > p {
    margin-bottom: 4px;
    color: var(--muted);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button span {
    color: var(--blue);
}

.button--primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 16px 36px rgba(89, 195, 106, .24);
}

.button--primary span {
    color: var(--white);
}

.button--primary:hover {
    background: #2f9250;
}

.button--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
}

.button--outline:hover {
    border-color: var(--blue);
    background: rgba(134, 219, 148, .08);
}

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--ghost {
    color: var(--text);
    border-color: #d4dce5;
    background: transparent;
}

.button--compact {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 11px;
}

.button--full {
    width: 100%;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(7, 12, 18, .94);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 14px 32px rgba(0, 0, 0, .24);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 36px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.brand-logo-shell {
    display: block;
    width: 178px;
    height: 54px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
}

.brand--footer .brand-logo-shell {
    width: 190px;
}

.brand-mark {
    position: relative;
    display: block;
    width: 33px;
    height: 36px;
    overflow: hidden;
    border-radius: 5px;
    transform: skew(-14deg);
}

.brand-mark i {
    position: absolute;
    top: -2px;
    bottom: -2px;
    width: 9px;
}

.brand-mark i:nth-child(1) {
    left: 0;
    background: var(--red);
}

.brand-mark i:nth-child(2) {
    left: 12px;
    background: var(--blue);
}

.brand-mark i:nth-child(3) {
    left: 24px;
    background: #86db94;
}

.brand-word {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.04em;
}

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

.brand-word b {
    color: #ff4b5f;
}

.brand-word small {
    grid-column: 1 / -1;
    margin-top: 5px;
    color: #7d8b9a;
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .18em;
}

.desktop-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.desktop-nav a {
    position: relative;
    color: #a9b3bf;
    font-size: 12px;
    font-weight: 700;
    transition: color .2s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -28px;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--white);
}

.desktop-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    color: #a9b3bf;
    font-size: 11px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 42px;
    border: 1px solid var(--line-dark);
    border-radius: 7px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 30%, rgba(134, 219, 148, .13), transparent 30%),
        radial-gradient(circle at 5% 60%, rgba(89, 195, 106, .12), transparent 25%),
        linear-gradient(125deg, #05090f, #071522 60%, #05101a);
}

.hero::before,
.page-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to bottom, #000, transparent 95%);
    content: "";
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 644px;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .87fr);
    gap: 72px;
    align-items: center;
    padding-block: 72px;
}

.hero-copy h1 {
    max-width: 700px;
    margin-bottom: 28px;
    font-size: clamp(52px, 6.2vw, 88px);
    letter-spacing: -.06em;
}

.hero-copy h1 em {
    position: relative;
    color: var(--blue);
    font-style: normal;
}

.hero-copy h1 em::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 4px;
    background: var(--red);
    content: "";
}

.hero-copy > p {
    max-width: 650px;
    margin-bottom: 34px;
    color: #aeb9c7;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 44px;
}

.hero-proof span {
    display: grid;
    min-width: 140px;
    gap: 2px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    padding-left: 18px;
}

.hero-proof span:first-child {
    border-left: 0;
    padding-left: 0;
}

.hero-proof strong {
    font-size: 12px;
}

.hero-proof small {
    color: #758495;
    font-size: 9px;
    letter-spacing: .05em;
}

.ops-window {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(5, 15, 25, .82);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .38);
}

.ops-window::after {
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(134, 219, 148, .08);
    filter: blur(20px);
    content: "";
}

.ops-bar {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--line-dark);
    padding: 0 18px;
    color: #617286;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
}

.ops-bar i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}

.ops-bar i:nth-child(2) {
    background: var(--yellow);
}

.ops-bar i:nth-child(3) {
    margin-right: 6px;
    background: var(--blue);
}

.live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    color: var(--green);
}

.live::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px var(--green);
    content: "";
}

.ops-content {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.ops-summary {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 22px;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    padding-bottom: 24px;
}

.ops-ring {
    position: relative;
    display: grid;
    width: 128px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0 78%, #142433 78%);
}

.ops-ring::before {
    position: absolute;
    width: 96px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #07131e;
    content: "";
}

.ops-ring span {
    position: relative;
    display: grid;
    text-align: center;
}

.ops-ring strong {
    font-size: 26px;
    line-height: 1;
}

.ops-ring small {
    color: #627284;
    font-size: 8px;
    letter-spacing: .08em;
}

.ops-summary-copy small {
    color: #627284;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
}

.ops-summary-copy h3 {
    margin: 7px 0 8px;
    font-size: 25px;
}

.ops-summary-copy p {
    margin: 0;
    color: #728295;
    font-size: 11px;
}

.ops-metrics {
    display: grid;
    gap: 10px;
    padding-block: 22px;
}

.ops-metric {
    display: grid;
    grid-template-columns: 116px 1fr 45px;
    gap: 12px;
    align-items: center;
    color: #8c9bad;
    font-size: 10px;
}

.ops-metric div {
    height: 5px;
    overflow: hidden;
    border-radius: 10px;
    background: #142433;
}

.ops-metric div i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--red), var(--blue));
}

.ops-metric strong {
    color: var(--white);
    text-align: right;
}

.ops-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(32, 201, 150, .18);
    border-radius: 9px;
    padding: 14px;
    color: #8fb5aa;
    background: rgba(32, 201, 150, .065);
    font-size: 10px;
}

.ops-alert i {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 18px rgba(32, 201, 150, .6);
}

.trust-strip {
    border-bottom: 1px solid #e6ebf0;
    background: var(--white);
}

.trust-inner {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    align-items: stretch;
}

.trust-intro,
.trust-item {
    min-height: 110px;
    padding: 26px 28px;
}

.trust-intro {
    display: grid;
    align-content: center;
    padding-left: 0;
}

.trust-intro small {
    color: var(--red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.trust-intro strong {
    font-size: 16px;
}

.trust-item {
    display: grid;
    align-content: center;
    gap: 4px;
    border-left: 1px solid #e6ebf0;
}

.trust-item b {
    font-size: 13px;
}

.trust-item span {
    color: var(--muted);
    font-size: 10px;
}

.services-section,
.process-section,
.blog-section,
.faq-section {
    padding-block: 110px;
}

.services-section {
    background: var(--white);
}

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

.service-card {
    position: relative;
    display: grid;
    min-height: 300px;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid #dde4ea;
    border-radius: var(--radius);
    padding: 28px;
    background: #fbfcfd;
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.service-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--red);
    content: "";
    transition: width .25s ease;
}

.service-card:hover {
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.service-card:hover::before {
    width: 100%;
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
}

.service-card__code {
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
}

.service-card__icon {
    display: grid;
    width: 48px;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid #dce4eb;
    border-radius: 12px;
    color: var(--blue-dark);
    background: var(--white);
    font-size: 12px;
    font-weight: 900;
}

.service-card h2,
.service-card h3 {
    margin-bottom: 14px;
    font-size: 25px;
}

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

.service-card:hover p {
    color: #9cabbc;
}

.service-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e1e7ed;
    padding-top: 18px;
    font-size: 11px;
    font-weight: 800;
}

.service-card:hover .service-card__link {
    border-color: rgba(255, 255, 255, .1);
}

.service-card__link span {
    color: var(--blue);
    font-size: 18px;
}

.services-footer {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.managed-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.managed-section::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 70%, rgba(89, 195, 106, .12), transparent 25%),
        radial-gradient(circle at 88% 20%, rgba(134, 219, 148, .1), transparent 28%);
    content: "";
}

.managed-inner {
    position: relative;
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 90px;
    align-items: center;
    padding-block: 110px;
}

.managed-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(42px, 5vw, 66px);
}

.managed-copy > p {
    margin-bottom: 32px;
    color: #9eabba;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 0 0 38px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d8dfe7;
    font-size: 13px;
}

.check-list li::before {
    display: grid;
    width: 22px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--green);
    content: "✓";
    font-size: 11px;
    font-weight: 900;
}

.managed-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.board-card {
    min-height: 180px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, .035);
}

.board-card--wide {
    grid-column: 1 / -1;
    min-height: 150px;
}

.board-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #718196;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.board-card__head i {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(32, 201, 150, .5);
}

.mini-chart {
    display: flex;
    height: 75px;
    align-items: end;
    gap: 6px;
}

.mini-chart i {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--blue-dark), var(--blue));
}

.mini-donut {
    position: relative;
    display: grid;
    width: 96px;
    aspect-ratio: 1;
    margin: 5px auto 0;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--green) 0 82%, #20303e 82%);
}

.mini-donut::before {
    position: absolute;
    width: 68px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #0e1b27;
    content: "";
}

.mini-donut strong {
    position: relative;
    font-size: 20px;
}

.event-list {
    display: grid;
    gap: 9px;
}

.event {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding-bottom: 9px;
    color: #9aa8b8;
    font-size: 10px;
}

.event i {
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--green);
}

.event:nth-child(2) i {
    background: var(--yellow);
}

.event:nth-child(3) i {
    background: var(--blue);
}

.event b {
    color: #5e6e80;
    font-size: 8px;
}

.solutions-section {
    padding-block: 110px;
    background: var(--paper);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.solution-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    border: 1px solid #dbe3ea;
    border-radius: var(--radius);
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .82)),
        linear-gradient(135deg, var(--blue), var(--red));
}

.solution-card::after {
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(59, 159, 85, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(59, 159, 85, .035), 0 0 0 56px rgba(89, 195, 106, .025);
    content: "";
}

.solution-card small {
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
}

.solution-card h3 {
    max-width: 360px;
    margin: 42px 0 16px;
    font-size: 31px;
}

.solution-card p {
    max-width: 440px;
    color: var(--muted);
    font-size: 13px;
}

.tag-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

.tag-list span {
    border: 1px solid #d4dde5;
    border-radius: 99px;
    padding: 6px 10px;
    color: #536274;
    background: rgba(255, 255, 255, .75);
    font-size: 9px;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dde4ea;
    border-bottom: 1px solid #dde4ea;
}

.process-card {
    position: relative;
    min-height: 260px;
    border-left: 1px solid #dde4ea;
    padding: 30px 26px;
}

.process-card:first-child {
    border-left: 0;
}

.process-card > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
}

.process-card > span::after {
    width: 30px;
    height: 1px;
    background: #d7dfe7;
    content: "";
}

.process-card h3 {
    margin: 70px 0 14px;
    font-size: 23px;
}

.process-card p {
    color: var(--muted);
    font-size: 12px;
}

.analysis-cta {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(120deg, #060b12, #0a1a27);
}

.analysis-cta::after {
    position: absolute;
    top: -130px;
    right: 3%;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(134, 219, 148, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(134, 219, 148, .025), 0 0 0 140px rgba(89, 195, 106, .018);
    content: "";
}

.analysis-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 500px;
    grid-template-columns: 1fr .75fr;
    gap: 80px;
    align-items: center;
    padding-block: 90px;
}

.analysis-copy h2 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(42px, 5.3vw, 70px);
}

.analysis-copy p {
    max-width: 650px;
    margin-bottom: 32px;
    color: #9daabb;
}

.analysis-score {
    display: grid;
    width: min(330px, 100%);
    aspect-ratio: 1;
    justify-self: center;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
    box-shadow: 0 0 0 22px rgba(255, 255, 255, .015), 0 0 80px rgba(134, 219, 148, .08);
}

.analysis-score > div {
    display: grid;
    width: 230px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(var(--blue) 0 68%, var(--red) 68% 82%, #1a2936 82%);
}

.analysis-score > div::before {
    position: absolute;
    width: 184px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--ink);
    content: "";
}

.analysis-score span {
    position: relative;
    display: grid;
    text-align: center;
}

.analysis-score strong {
    font-size: 58px;
    line-height: .9;
}

.analysis-score small {
    color: #7c8b9c;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.blog-card {
    display: grid;
    min-height: 330px;
    grid-template-rows: auto 1fr auto;
    border: 1px solid #dde4ea;
    border-radius: var(--radius);
    padding: 26px;
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}

.blog-card__meta span {
    color: var(--red);
    text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 16px;
    font-size: 27px;
}

.blog-card p {
    color: var(--muted);
    font-size: 12px;
}

.blog-card > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e1e7ed;
    padding-top: 18px;
    font-size: 10px;
    font-weight: 800;
}

.blog-card > span b {
    color: var(--blue-dark);
    font-size: 17px;
}

.faq-section {
    background: var(--paper);
}

.faq-inner {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: 90px;
}

.faq-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(38px, 4vw, 58px);
}

.faq-copy p {
    color: var(--muted);
}

.accordion {
    border-top: 1px solid #d7dfe7;
}

.accordion-item {
    border-bottom: 1px solid #d7dfe7;
}

.accordion-button {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 34px;
    gap: 20px;
    align-items: center;
    border: 0;
    padding: 24px 0;
    color: var(--text);
    background: transparent;
    text-align: left;
    font-size: 15px;
    font-weight: 800;
}

.accordion-button span {
    position: relative;
    width: 30px;
    aspect-ratio: 1;
    border: 1px solid #cfd8e1;
    border-radius: 50%;
}

.accordion-button span::before,
.accordion-button span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--text);
    content: "";
    transform: translate(-50%, -50%);
}

.accordion-button span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.accordion-item.is-open .accordion-button span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.accordion-content > div {
    overflow: hidden;
}

.accordion-content p {
    max-width: 700px;
    margin-bottom: 26px;
    padding-right: 50px;
    color: var(--muted);
    font-size: 13px;
}

.accordion-item.is-open .accordion-content {
    grid-template-rows: 1fr;
}

.contact-band {
    color: var(--white);
    background: var(--red-dark);
}

.contact-band-inner {
    display: grid;
    min-height: 250px;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.contact-band h2 {
    max-width: 850px;
    margin-bottom: 13px;
    font-size: clamp(34px, 4.5vw, 58px);
}

.contact-band p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
}

.contact-band .button {
    color: var(--text);
    background: var(--white);
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 35%, rgba(134, 219, 148, .12), transparent 28%),
        linear-gradient(125deg, #050a11, #0a1825);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 460px;
    grid-template-columns: 1fr .6fr;
    gap: 70px;
    align-items: center;
    padding-block: 75px;
}

.page-hero h1 {
    max-width: 820px;
    margin-bottom: 20px;
    font-size: clamp(48px, 6vw, 78px);
}

.page-hero p {
    max-width: 700px;
    margin-bottom: 0;
    color: #a8b3c1;
    font-size: 17px;
}

.page-hero-aside {
    display: grid;
    gap: 10px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    padding-left: 42px;
}

.page-hero-aside span {
    color: #68788a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.page-hero-aside strong {
    max-width: 320px;
    font-size: 20px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    color: #718196;
    font-size: 10px;
    font-weight: 800;
}

.breadcrumb a {
    color: var(--blue);
}

.content-section {
    padding-block: 100px;
}

.content-section--paper {
    background: var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 100px;
}

.story-title h2 {
    margin-bottom: 20px;
    font-size: clamp(38px, 4.5vw, 60px);
}

.story-title p,
.story-content p {
    color: var(--muted);
}

.story-content {
    font-size: 17px;
    line-height: 1.85;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.principle-card {
    min-height: 260px;
    border: 1px solid #dce4eb;
    border-radius: var(--radius);
    padding: 30px;
    background: var(--white);
}

.principle-card span {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
}

.principle-card h3 {
    margin: 62px 0 15px;
    font-size: 25px;
}

.principle-card p {
    color: var(--muted);
    font-size: 13px;
}

.service-search {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 480px;
    margin-bottom: 32px;
    border: 1px solid #d6dfe7;
    border-radius: 10px;
    padding: 0 16px;
    background: var(--white);
}

.service-search span {
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
}

.service-search input {
    width: 100%;
    height: 54px;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

[hidden] {
    display: none !important;
}

.detail-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 70px;
}

.detail-nav {
    position: sticky;
    top: 105px;
    align-self: start;
    border: 1px solid #dce4eb;
    border-radius: 14px;
    padding: 12px;
    background: var(--white);
}

.detail-nav strong {
    display: block;
    padding: 12px 13px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.detail-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 7px;
    padding: 11px 13px;
    color: #5f6d7e;
    font-size: 11px;
    font-weight: 700;
}

.detail-nav a:hover,
.detail-nav a.is-current {
    color: var(--white);
    background: var(--ink);
}

.detail-content > h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 4.5vw, 58px);
}

.detail-content > p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-block: 42px;
}

.benefit-card {
    min-height: 150px;
    border: 1px solid #dce4eb;
    border-radius: 13px;
    padding: 22px;
    background: var(--paper);
}

.benefit-card span {
    display: grid;
    width: 30px;
    aspect-ratio: 1;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--green);
    font-size: 12px;
    font-weight: 900;
}

.benefit-card strong {
    display: block;
    font-size: 13px;
}

.deliverable-panel {
    margin-top: 50px;
    border-radius: var(--radius);
    padding: 34px;
    color: var(--white);
    background: var(--ink);
}

.deliverable-panel h3 {
    margin-bottom: 24px;
    font-size: 27px;
}

.deliverable-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.deliverable-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-block: 10px;
    color: #b5c0cc;
    font-size: 12px;
}

.deliverable-list li::before {
    width: 7px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--blue);
    content: "";
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 80px;
}

.article-body {
    max-width: 800px;
}

.article-body .article-lead {
    margin-bottom: 42px;
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.55;
}

.article-body p {
    margin-bottom: 28px;
    color: #4e5e70;
    font-size: 17px;
    line-height: 1.9;
}

.article-note {
    margin-block: 42px;
    border-left: 4px solid var(--red);
    padding: 24px 28px;
    background: var(--paper);
}

.article-note strong {
    display: block;
    margin-bottom: 5px;
}

.article-note p {
    margin: 0;
    font-size: 13px;
}

.article-aside {
    position: sticky;
    top: 105px;
    align-self: start;
}

.article-aside-box {
    margin-bottom: 15px;
    border: 1px solid #dce4eb;
    border-radius: 14px;
    padding: 24px;
}

.article-aside-box--dark {
    color: var(--white);
    background: var(--ink);
}

.article-aside-box small {
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .13em;
}

.article-aside-box h3 {
    margin: 20px 0 12px;
    font-size: 22px;
}

.article-aside-box p {
    color: var(--muted);
    font-size: 11px;
}

.article-aside-box--dark p {
    color: #91a0b2;
}

.contact-layout {
    display: grid;
    grid-template-columns: .66fr 1fr;
    gap: 80px;
}

.contact-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(40px, 5vw, 62px);
}

.contact-copy > p {
    color: var(--muted);
}

.contact-list {
    display: grid;
    margin-top: 42px;
    border-top: 1px solid #dce4eb;
}

.contact-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    border-bottom: 1px solid #dce4eb;
    padding-block: 20px;
}

.contact-item small {
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-item a,
.contact-item span {
    font-size: 14px;
    font-weight: 700;
}

.contact-form-wrap {
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    margin-bottom: 10px;
    font-size: 32px;
}

.contact-form-wrap > p {
    margin-bottom: 30px;
    color: #8f9daf;
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    color: #b9c2ce;
    font-size: 10px;
    font-weight: 800;
}

.form-field label span {
    color: var(--red);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 8px;
    outline: 0;
    padding: 0 14px;
    color: var(--white);
    background: rgba(255, 255, 255, .045);
    transition: border-color .2s ease, background .2s ease;
}

.form-field input,
.form-field select {
    height: 51px;
}

.form-field textarea {
    min-height: 130px;
    padding-block: 13px;
    resize: vertical;
}

.form-field select option {
    color: var(--text);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--blue);
    background: rgba(134, 219, 148, .06);
}

.consent {
    display: flex;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 10px;
    color: #8695a7;
    font-size: 10px;
}

.consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    accent-color: var(--red);
}

.consent a {
    color: var(--blue);
    text-decoration: underline;
}

.form-status {
    min-height: 22px;
    grid-column: 1 / -1;
    color: #a9b5c3;
    font-size: 11px;
}

.form-status.is-success {
    color: var(--green);
}

.form-status.is-error {
    color: #ff6d7d;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.button.is-loading {
    opacity: .7;
    pointer-events: none;
}

.map-placeholder {
    display: grid;
    min-height: 270px;
    margin-top: 70px;
    place-items: center;
    border: 1px solid #dce4eb;
    border-radius: var(--radius);
    color: var(--muted);
    background:
        linear-gradient(rgba(255, 255, 255, .75), rgba(255, 255, 255, .75)),
        repeating-linear-gradient(45deg, #dce4eb 0 1px, transparent 1px 30px);
    text-align: center;
}

.map-placeholder strong {
    display: block;
    color: var(--text);
    font-size: 20px;
}

.map-placeholder span {
    font-size: 12px;
}

.privacy-content {
    max-width: 850px;
}

.privacy-content h2 {
    margin-top: 50px;
    font-size: 30px;
}

.privacy-content p,
.privacy-content li {
    color: var(--muted);
}

.not-found {
    display: grid;
    min-height: 70vh;
    place-items: center;
    padding: 80px 24px;
    color: var(--white);
    background: var(--ink);
    text-align: center;
}

.not-found strong {
    display: block;
    color: var(--red);
    font-size: 100px;
    line-height: 1;
}

.not-found h1 {
    margin: 20px 0 12px;
    font-size: 48px;
}

.not-found p {
    color: #93a1b2;
}

.site-footer {
    color: var(--white);
    background: #05090e;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 60px;
    padding-block: 70px;
}

.brand--footer {
    margin-bottom: 25px;
}

.footer-brand > p {
    max-width: 330px;
    margin-bottom: 28px;
    color: #748395;
    font-size: 12px;
}

.footer-analysis {
    display: inline-grid;
    gap: 2px;
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
}

.footer-analysis span {
    color: var(--red);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column > strong {
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-column a,
.footer-column span {
    color: #748395;
    font-size: 11px;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--blue);
}

.footer-contact a:first-of-type {
    color: var(--white);
    font-size: 15px;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #566678;
    font-size: 9px;
}

.footer-bottom > div {
    display: flex;
    gap: 25px;
}

.footer-bottom a:hover {
    color: var(--white);
}

.call-float {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 10px;
    border-radius: 99px;
    padding: 7px 17px 7px 7px;
    color: #fff;
    background: var(--red-dark);
    box-shadow: 0 16px 38px rgba(10, 25, 47, .28);
    font-size: 11px;
}

.call-float span {
    display: grid;
    width: 36px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    color: var(--red);
    background: var(--ink);
    font-size: 9px;
    font-weight: 900;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .desktop-nav,
    .header-phone {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        z-index: -1;
        top: 76px;
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100vh - 76px);
        gap: 0;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 20px 24px 30px;
        color: var(--white);
        background: #070c12;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .mobile-nav.is-open {
        z-index: 10;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .mobile-nav a {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        padding: 15px 4px;
        font-size: 15px;
        font-weight: 800;
    }

    .mobile-nav .mobile-nav-cta {
        margin-top: 16px;
        border: 0;
        border-radius: 8px;
        padding: 14px 17px;
        background: var(--red);
        text-align: center;
    }

    .hero-inner,
    .managed-inner {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

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

    .trust-inner {
        grid-template-columns: repeat(4, 1fr);
    }

    .trust-intro {
        grid-column: 1 / -1;
        min-height: 80px;
        border-bottom: 1px solid #e6ebf0;
    }

    .trust-item:first-of-type {
        border-left: 0;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .header-actions .button {
        display: none;
    }

    .hero-inner,
    .managed-inner,
    .analysis-inner,
    .page-hero-inner,
    .story-grid,
    .faq-inner,
    .contact-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
    }

    .hero-inner {
        padding-block: 75px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 12vw, 72px);
    }

    .ops-window {
        max-width: 590px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .process-card:nth-child(3) {
        border-left: 0;
    }

    .process-card:nth-child(-n + 2) {
        border-bottom: 1px solid #dde4ea;
    }

    .analysis-score {
        justify-self: start;
    }

    .blog-grid,
    .principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero-inner {
        gap: 36px;
    }

    .page-hero-aside {
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-left: 0;
        padding-top: 28px;
        padding-left: 0;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-nav {
        position: static;
    }

    .article-aside {
        position: static;
    }

    .footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .mobile-nav {
        top: 68px;
        max-height: calc(100vh - 68px);
    }

    .hero-inner {
        padding-block: 58px;
    }

    .hero-copy h1 {
        font-size: 49px;
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px 0;
    }

    .hero-proof span:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

    .ops-content {
        padding: 17px;
    }

    .ops-summary {
        grid-template-columns: 96px 1fr;
        gap: 14px;
    }

    .ops-ring {
        width: 92px;
    }

    .ops-ring::before {
        width: 70px;
    }

    .ops-ring strong {
        font-size: 20px;
    }

    .ops-summary-copy h3 {
        font-size: 20px;
    }

    .ops-metric {
        grid-template-columns: 90px 1fr 36px;
        gap: 8px;
        font-size: 8px;
    }

    .trust-inner,
    .service-grid,
    .solution-grid,
    .managed-board,
    .blog-grid,
    .principle-grid,
    .benefit-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-intro {
        grid-column: auto;
        padding-left: 0;
    }

    .trust-item {
        min-height: 86px;
        border-top: 1px solid #e6ebf0;
        border-left: 0;
        padding-inline: 0;
    }

    .services-section,
    .process-section,
    .blog-section,
    .faq-section,
    .solutions-section,
    .content-section {
        padding-block: 74px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 39px;
    }

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

    .managed-inner {
        padding-block: 76px;
    }

    .board-card--wide {
        grid-column: auto;
    }

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

    .process-card,
    .process-card:nth-child(3) {
        min-height: 220px;
        border-bottom: 1px solid #dde4ea;
        border-left: 0;
    }

    .process-card:last-child {
        border-bottom: 0;
    }

    .process-card h3 {
        margin-top: 48px;
    }

    .analysis-inner {
        min-height: 0;
        padding-block: 74px;
    }

    .analysis-score {
        width: 250px;
        justify-self: center;
    }

    .analysis-score > div {
        width: 180px;
    }

    .analysis-score > div::before {
        width: 142px;
    }

    .analysis-score strong {
        font-size: 45px;
    }

    .page-hero-inner {
        min-height: 430px;
        padding-block: 58px;
    }

    .page-hero h1 {
        font-size: 48px;
    }

    .deliverable-list {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        border-radius: var(--radius);
        padding: 28px 20px;
    }

    .form-field--full,
    .consent,
    .form-status {
        grid-column: auto;
    }

    .contact-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .contact-band-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 28px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        display: grid;
        gap: 12px;
        padding-block: 22px;
    }

    .footer-bottom > div {
        display: grid;
        gap: 5px;
    }

    .call-float {
        right: 14px;
        bottom: 14px;
        padding-right: 7px;
    }

    .call-float strong {
        display: none;
    }
}
