:root {
    --ink: #111114;
    --ink-soft: #1b1b20;
    --paper: #f4f2ee;
    --paper-deep: #e8e5df;
    --white: #ffffff;
    --muted: #69696f;
    --line: #d8d5cf;
    --red: #d20d0d;
    --red-dark: #a50909;
    --red-soft: #fff0ed;
    --success: #127044;
    --error: #b42318;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.75rem;
    --shadow-sm: 0 1rem 3rem rgba(17, 17, 20, 0.08);
    --shadow-lg: 0 2rem 6rem rgba(0, 0, 0, 0.24);
    --shell: 76rem;
    --font-sans: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-sans);
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

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

button,
summary,
select {
    cursor: pointer;
}

address {
    font-style: normal;
}

::selection {
    color: var(--white);
    background: var(--red);
}

:focus-visible {
    outline: 3px solid #ff4d42;
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius-sm);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(calc(100% - 2.5rem), var(--shell));
    margin-inline: auto;
}

.topbar {
    color: rgba(255, 255, 255, 0.76);
    background: #08080a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.025em;
}

.topbar__inner {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.topbar a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 180ms ease;
}

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

.topbar svg {
    width: 0.95rem;
    fill: none;
    stroke: var(--red);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    border-color: rgba(17, 17, 20, 0.08);
    box-shadow: 0 0.7rem 2rem rgba(17, 17, 20, 0.07);
}

.nav-wrap {
    min-height: 5.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand__crop {
    width: clamp(6.9rem, 11vw, 7.75rem);
    aspect-ratio: 841 / 538;
    display: block;
    padding: 0.4rem 0.55rem;
    background: var(--white);
    border-radius: 0.35rem;
}

.brand__crop img {
    width: 100%;
    height: auto;
}

.site-header .brand__crop {
    margin-block: 0.35rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.main-nav > a:not(.button) {
    position: relative;
    padding-block: 0.75rem;
    color: #38383e;
    font-size: 0.84rem;
    font-weight: 720;
    letter-spacing: 0.015em;
    text-decoration: none;
}

.main-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 0.4rem;
    left: 0;
    height: 2px;
    content: "";
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease);
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
}

.button {
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.8rem 1.35rem;
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 0.2rem;
    font-size: 0.9rem;
    font-weight: 760;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 0.65rem 1.5rem rgba(210, 13, 13, 0.2);
    transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms var(--ease), box-shadow 200ms ease;
}

.button:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 0.9rem 2rem rgba(165, 9, 9, 0.27);
    transform: translateY(-2px);
}

.button--small {
    min-height: 2.8rem;
    padding: 0.7rem 1.05rem;
    font-size: 0.8rem;
}

.button--outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: none;
}

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

.eyebrow {
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--red);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

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

.eyebrow--light {
    color: #ff5148;
}

.hero {
    position: relative;
    min-height: clamp(46rem, calc(100svh - 8rem), 54rem);
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: #0b0b0e;
    isolation: isolate;
}

.hero::before {
    position: absolute;
    inset: 0 0 0 42%;
    z-index: -1;
    content: "";
    background:
        linear-gradient(125deg, transparent 20%, rgba(210, 13, 13, 0.08) 50%, transparent 74%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.035), transparent 45%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(38vw, 34rem);
    height: 0.35rem;
    content: "";
    background: linear-gradient(90deg, transparent, var(--red) 28%);
}

.hero__grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
    background-size: 4.75rem 4.75rem;
    -webkit-mask-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.72) 58%, transparent 96%);
    mask-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.72) 58%, transparent 96%);
}

.hero__flare {
    position: absolute;
    top: 42%;
    right: 10%;
    z-index: -1;
    width: 42rem;
    height: 42rem;
    opacity: 0.15;
    background: radial-gradient(circle, var(--red) 0, rgba(210, 13, 13, 0.26) 18%, transparent 67%);
    filter: blur(1.5rem);
    transform: translate(50%, -50%);
}

.hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(22rem, 0.94fr);
    align-items: center;
    gap: clamp(3.5rem, 6.5vw, 6.75rem);
    padding-block: clamp(5.5rem, 9vw, 8rem);
}

.hero__copy {
    position: relative;
}

.hero__copy::before {
    position: absolute;
    top: -2.25rem;
    left: 0;
    width: 4.5rem;
    height: 0.18rem;
    content: "";
    background: linear-gradient(90deg, var(--red) 0 34%, rgba(255, 255, 255, 0.22) 34% 100%);
}

.hero__copy h1 {
    max-width: 10.5ch;
    margin: 0;
    font-size: clamp(3.4rem, 6.4vw, 6.15rem);
    font-weight: 790;
    letter-spacing: -0.072em;
    line-height: 0.94;
}

.hero__copy h1 em {
    display: block;
    color: #ff463d;
    font-size: 0.82em;
    font-style: normal;
    letter-spacing: -0.055em;
    white-space: nowrap;
}

.hero__lead {
    max-width: 39rem;
    margin: 2.1rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1.02rem, 1.45vw, 1.2rem);
    line-height: 1.68;
}

.hero__actions {
    margin-top: 2.35rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero__actions .button svg {
    width: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms var(--ease);
}

.hero__actions .button:hover svg {
    transform: translateX(0.22rem);
}

.text-link {
    width: fit-content;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--red-dark);
    font-size: 0.9rem;
    font-weight: 780;
    text-decoration: none;
}

.text-link svg {
    width: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms var(--ease);
}

.text-link:hover svg {
    transform: translateX(0.25rem);
}

.text-link--light {
    color: rgba(255, 255, 255, 0.86);
}

.hero__facts {
    max-width: 41rem;
    margin: 3.25rem 0 0;
    padding: 1.35rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__facts li {
    position: relative;
    padding-left: 0.9rem;
    display: grid;
    gap: 0.08rem;
}

.hero__facts li::before {
    position: absolute;
    top: 0.42rem;
    left: 0;
    width: 0.28rem;
    height: 0.28rem;
    content: "";
    background: var(--red);
}

.hero__facts strong {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.hero__facts span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.75rem;
}

.hero-system {
    position: relative;
    min-height: 35rem;
    padding: clamp(1.25rem, 2.3vw, 1.8rem);
    color: var(--white);
    background: linear-gradient(145deg, rgba(35, 35, 41, 0.96), rgba(18, 18, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, 0.45);
    isolation: isolate;
}

.hero-system::before {
    position: absolute;
    top: -1px;
    right: 26%;
    left: -1px;
    height: 0.25rem;
    content: "";
    background: var(--red);
}

.hero-system::after {
    position: absolute;
    right: -0.65rem;
    bottom: -0.65rem;
    z-index: -1;
    width: 42%;
    height: 46%;
    content: "";
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-system__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.62rem;
    font-weight: 780;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-system__header p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.hero-system__brand {
    width: 6rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.hero-system__brand img {
    width: 100%;
    height: auto;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.92;
}

.status-dot {
    width: 0.45rem;
    height: 0.45rem;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 0.22rem rgba(210, 13, 13, 0.14);
}

.hero-system h2 {
    max-width: 15ch;
    margin: 1.15rem 0 1.4rem;
    font-size: clamp(1.5rem, 2.25vw, 2rem);
    font-weight: 730;
    letter-spacing: -0.038em;
    line-height: 1.1;
}

.security-field {
    position: relative;
    height: 20.5rem;
    overflow: hidden;
    background-color: rgba(5, 5, 8, 0.54);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 2.5rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.security-field::before {
    position: absolute;
    inset: 8% 14%;
    content: "";
    background: radial-gradient(circle, rgba(210, 13, 13, 0.2), transparent 67%);
}

.security-field::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    opacity: 0.82;
    background: linear-gradient(90deg, transparent 4%, rgba(255, 70, 61, 0.65) 24%, #ff3027 50%, rgba(255, 70, 61, 0.65) 76%, transparent 96%);
    box-shadow: 0 0 0.7rem rgba(255, 48, 39, 0.65), 0 1rem 2.8rem rgba(210, 13, 13, 0.32);
    animation: security-scan 5.2s linear infinite;
    will-change: transform;
}

.security-field__connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-dasharray: 4 7;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.security-field__connections path {
    stroke: rgba(210, 13, 13, 0.42);
    stroke-dasharray: 3 6;
}

.security-field__core {
    position: absolute;
    top: 52%;
    left: 50%;
    width: 8.4rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: rgba(18, 18, 22, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0.5rem rgba(210, 13, 13, 0.06), 0 1.2rem 3rem rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%) rotate(45deg);
}

.security-field__core-content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transform: rotate(-45deg);
}

.security-field__core svg {
    width: 2rem;
    margin-bottom: 0.55rem;
    fill: none;
    stroke: #ff463d;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.security-field__core strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.security-field__core span {
    margin-top: 0.22rem;
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.57rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.security-node {
    position: absolute;
    width: 8.7rem;
    padding: 0.7rem 0.75rem;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.55rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(29, 29, 34, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.22);
}

.security-node b {
    grid-row: 1 / 3;
    color: #ff463d;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
}

.security-node strong {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.security-node span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.55rem;
    line-height: 1.4;
}

.security-node--people {
    top: 9%;
    left: 5%;
}

.security-node--technology {
    top: 9%;
    right: 5%;
}

.security-node--process {
    right: 5%;
    bottom: 8%;
}

.hero-system__footer {
    min-height: 3.2rem;
    padding-top: 1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.hero-system__footer > span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.59rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero-system__footer a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.68rem;
    font-weight: 760;
    text-decoration: none;
}

.hero-system__footer svg {
    width: 1rem;
    fill: none;
    stroke: var(--red);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms var(--ease);
}

.hero-system__footer a:hover svg {
    transform: translateX(0.2rem);
}

@keyframes security-scan {
    0% { opacity: 0.42; transform: translateY(0); }
    12% { opacity: 0.9; }
    84% { opacity: 0.82; }
    100% { opacity: 0.28; transform: translateY(20.5rem); }
}

.signal-strip {
    color: var(--white);
    background: var(--red);
}

.signal-strip__grid {
    min-height: 6rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.signal-strip p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 760;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.signal-strip p + p {
    padding-left: clamp(1rem, 4vw, 4rem);
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.signal-strip span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.67rem;
}

.section {
    padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section-heading {
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    align-items: end;
    gap: 3rem;
}

.section-heading h2,
.approach h2,
.local h2,
.faq h2,
.contact h2,
.legal-page h1 {
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.section-heading > p {
    max-width: 34rem;
    margin: 0 0 0.25rem;
    color: var(--muted);
    font-size: 1.02rem;
}

.services {
    background: var(--paper);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 25rem;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.42);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 240ms ease, transform 240ms var(--ease), box-shadow 240ms ease;
}

.service-card:hover {
    z-index: 2;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-0.35rem);
}

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

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

.service-card--dark:hover {
    background: #202025;
}

.service-card__number {
    color: #939298;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.service-card__icon {
    width: 4rem;
    height: 4rem;
    margin: 2.4rem 0 2.2rem;
    display: grid;
    place-items: center;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 50%;
}

.service-card__icon svg {
    width: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.service-card--dark .service-card__icon {
    color: #ff5148;
    background: rgba(210, 13, 13, 0.14);
}

.service-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.45rem;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.service-card--dark p {
    color: rgba(255, 255, 255, 0.62);
}

.service-card a {
    margin-top: auto;
    min-height: 2.75rem;
    padding-top: 1.5rem;
    display: flex;
    align-items: flex-end;
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 790;
    text-underline-offset: 0.3rem;
}

.service-card--dark a {
    color: #ff5c54;
}

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

.approach::before {
    position: absolute;
    top: -13rem;
    left: -16rem;
    width: 38rem;
    height: 38rem;
    content: "";
    border: 7rem solid rgba(210, 13, 13, 0.07);
    border-radius: 50%;
}

.approach__layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.76fr 1fr;
    gap: clamp(4rem, 9vw, 9rem);
}

.approach__intro {
    align-self: start;
    position: sticky;
    top: 8rem;
}

.approach__intro > p:not(.eyebrow) {
    max-width: 34rem;
    margin: 1.8rem 0 2.2rem;
    color: rgba(255, 255, 255, 0.62);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li {
    min-height: 9.6rem;
    display: grid;
    grid-template-columns: 4rem 1fr;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list > li > span {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    color: #ff5148;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 0.67rem;
    font-weight: 800;
}

.process-list h3 {
    margin: 0 0 0.45rem;
    font-size: 1.5rem;
    letter-spacing: -0.035em;
}

.process-list p {
    max-width: 33rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.93rem;
}

.local {
    background: var(--white);
}

.local__layout {
    display: grid;
    grid-template-columns: 1.05fr 0.75fr;
    align-items: center;
    gap: clamp(4rem, 10vw, 10rem);
}

.local__content {
    max-width: 42rem;
}

.local__lead {
    margin: 2rem 0 1.2rem;
    color: #333338;
    font-size: 1.18rem;
    font-weight: 570;
}

.local__content > p:not(.eyebrow):not(.local__lead) {
    color: var(--muted);
}

.local__content .text-link {
    margin-top: 1rem;
}

.location-card {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow-lg);
}

.location-card__top {
    padding: 2.2rem 2.3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
}

.location-card__top p {
    grid-column: 1 / -1;
    margin: 0;
    color: #ff5148;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.location-card__top strong {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.location-card__top span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    line-height: 1.5;
    text-align: right;
}

.location-card__map {
    position: relative;
    height: 17rem;
    overflow: hidden;
    background-color: #1c1c21;
    background-image: linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px);
    background-size: 2.25rem 2.25rem;
}

.location-card__map i {
    position: absolute;
    width: 12rem;
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(-35deg);
}

.location-card__map i:nth-of-type(1) { top: 20%; left: -8%; }
.location-card__map i:nth-of-type(2) { top: 63%; left: 8%; width: 26rem; transform: rotate(18deg); }
.location-card__map i:nth-of-type(3) { top: 30%; right: -8%; width: 21rem; transform: rotate(54deg); }
.location-card__map i:nth-of-type(4) { bottom: 13%; right: -5%; width: 20rem; transform: rotate(-12deg); }

.location-card__ring,
.location-card__pin {
    position: absolute;
    top: 51%;
    left: 50%;
    z-index: 2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.location-card__ring {
    width: 7.5rem;
    height: 7.5rem;
    border: 1px solid rgba(255, 65, 56, 0.65);
    box-shadow: 0 0 0 2.6rem rgba(210, 13, 13, 0.06), 0 0 0 5.2rem rgba(210, 13, 13, 0.03);
}

.location-card__pin {
    width: 1rem;
    height: 1rem;
    background: var(--red);
    border: 0.22rem solid var(--white);
    box-shadow: 0 0 1.4rem rgba(255, 49, 40, 0.9);
}

.location-card address {
    padding: 1.6rem 2.3rem;
    color: rgba(255, 255, 255, 0.64);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.87rem;
}

.location-card address span {
    display: block;
    color: var(--white);
    font-weight: 760;
}

.location-card > a {
    min-height: 4.5rem;
    padding: 1rem 2.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ff5c54;
    font-size: 0.8rem;
    font-weight: 760;
    text-decoration: none;
    transition: background 180ms ease;
}

.location-card > a:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.faq__layout {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
}

.faq__heading {
    position: sticky;
    top: 8rem;
}

.faq__heading p:not(.eyebrow) {
    margin: 1.5rem 0 0.5rem;
    color: var(--muted);
}

.faq__heading > a {
    color: var(--red-dark);
    font-weight: 760;
    text-underline-offset: 0.25rem;
}

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

.accordion details {
    border-bottom: 1px solid #c9c5bf;
}

.accordion summary {
    min-height: 5.5rem;
    padding: 1.25rem 3.5rem 1.25rem 0;
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 1.05rem;
    font-weight: 740;
    line-height: 1.35;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary span,
.accordion summary span::after {
    position: absolute;
    top: 50%;
    right: 0.25rem;
    width: 1.15rem;
    height: 2px;
    content: "";
    background: var(--red);
    transform: translateY(-50%);
    transition: transform 180ms ease;
}

.accordion summary span::after {
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.accordion details[open] summary span::after {
    transform: rotate(0);
}

.accordion details > p {
    max-width: 45rem;
    margin: -0.4rem 0 1.8rem;
    padding-right: 3rem;
    color: var(--muted);
}

.contact {
    padding-block: clamp(5rem, 9vw, 8.5rem);
    color: var(--white);
    background: var(--ink);
}

.contact__shell {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.contact__intro > p:not(.eyebrow) {
    max-width: 34rem;
    margin: 1.6rem 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.contact-details {
    margin-top: 3.5rem;
    display: grid;
    gap: 1rem;
}

.contact-details a {
    padding: 1.35rem 0;
    display: grid;
    gap: 0.2rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-details span {
    color: #ff5148;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-details strong {
    font-size: 1.05rem;
    font-weight: 680;
}

.contact-form-wrap {
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

#contact-form {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.form-heading {
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.form-heading span {
    font-size: 1.05rem;
    font-weight: 800;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.35rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

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

.field label {
    font-size: 0.73rem;
    font-weight: 760;
    letter-spacing: 0.025em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 3.2rem;
    padding: 0.75rem 0.9rem;
    color: var(--ink);
    background: #faf9f7;
    border: 1px solid #cac7c1;
    border-radius: 0.15rem;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
    min-height: 9rem;
    resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #94918c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(210, 13, 13, 0.11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.field small {
    color: var(--muted);
    font-size: 0.68rem;
}

.form-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.check-field {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: 1.15rem 1fr;
    align-items: start;
    gap: 0.7rem;
    color: #56565c;
    font-size: 0.76rem;
    line-height: 1.55;
}

.check-field input {
    width: 1.05rem;
    height: 1.05rem;
    margin: 0.12rem 0 0;
    accent-color: var(--red);
}

.check-field a {
    color: var(--red-dark);
    font-weight: 700;
}

.form-actions {
    margin-top: 1.7rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.form-actions button {
    flex: 0 0 auto;
}

.form-actions button svg {
    width: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.form-actions button[disabled] {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.form-status {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 650;
}

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

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

.noscript-note {
    padding: 0.75rem;
    color: #624b13;
    background: #fff8df;
    font-size: 0.75rem;
}

.site-footer {
    color: rgba(255, 255, 255, 0.62);
    background: #08080a;
}

.footer__main {
    padding-block: 4.5rem;
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr 1.15fr;
    gap: clamp(2rem, 5vw, 5rem);
}

.brand--footer .brand__crop {
    width: 7.25rem;
    padding: 0.6rem 0.75rem;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.18);
}

.footer__brand p {
    max-width: 22rem;
    margin: 1.25rem 0 0;
    font-size: 0.82rem;
}

.site-footer h2 {
    margin: 0 0 1rem;
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    list-style: none;
}

.site-footer li,
.site-footer address,
.site-footer a {
    font-size: 0.8rem;
}

.site-footer li a,
.footer__email {
    text-decoration: none;
    transition: color 160ms ease;
}

.site-footer li a,
.footer__email,
.footer__bottom a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
}

.site-footer li a:hover,
.footer__email:hover {
    color: var(--white);
}

.footer__email {
    margin-top: 0.8rem;
    display: inline-block;
    color: #ff5148;
    font-weight: 700;
}

.footer__bottom {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.68rem;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.footer__bottom p {
    margin: 0;
}

.js .reveal {
    opacity: 0;
    transform: translateY(1.75rem);
    transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Privacy page */
.legal-header {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.legal-header .nav-wrap {
    min-height: 5.6rem;
}

.legal-back {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    color: var(--red-dark);
    font-size: 0.83rem;
    font-weight: 760;
    text-underline-offset: 0.3rem;
}

.legal-page {
    min-height: 70vh;
    padding-block: clamp(4rem, 9vw, 8rem);
    background: var(--paper);
}

.legal-page__content {
    max-width: 48rem;
}

.legal-page__intro {
    margin: 1.5rem 0 3rem;
    color: var(--muted);
    font-size: 1.12rem;
}

.legal-page h2 {
    margin: 2.5rem 0 0.75rem;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.legal-page p,
.legal-page li {
    color: #55555b;
}

.legal-page a {
    color: var(--red-dark);
    font-weight: 650;
}

@media (max-width: 68rem) {
    .main-nav {
        gap: 1rem;
    }

    .main-nav > a:not(.button) {
        font-size: 0.76rem;
    }

    .hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.9fr);
        gap: 2.75rem;
    }

    .hero__copy h1 {
        font-size: clamp(3.35rem, 6.8vw, 5.3rem);
    }

    .service-card {
        min-height: 24rem;
    }

    .contact__shell {
        grid-template-columns: 0.6fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 56rem) {
    .shell {
        width: min(calc(100% - 2rem), var(--shell));
    }

    .topbar__inner {
        justify-content: space-between;
    }

    .menu-toggle {
        min-width: 4.7rem;
        min-height: 2.8rem;
        padding: 0.5rem 0.75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.65rem;
        color: var(--ink);
        background: transparent;
        border: 1px solid var(--line);
        border-radius: 0.15rem;
    }

    .menu-toggle__label {
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .menu-toggle__icon {
        position: relative;
        width: 1rem;
        height: 0.8rem;
    }

    .menu-toggle__icon i {
        position: absolute;
        right: 0;
        width: 1rem;
        height: 2px;
        display: block;
        background: currentColor;
        transition: top 180ms ease, transform 180ms ease;
    }

    .menu-toggle__icon i:first-child { top: 0.15rem; }
    .menu-toggle__icon i:last-child { top: 0.6rem; }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
        top: 0.38rem;
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
        top: 0.38rem;
        transform: rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: calc(100vh - 5.4rem);
        padding: 1.25rem 1rem 1.5rem;
        display: none;
        align-items: stretch;
        overflow-y: auto;
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 1.5rem 2rem rgba(17, 17, 20, 0.12);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav > a:not(.button) {
        min-height: 3.3rem;
        padding: 0.85rem 0.25rem;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
    }

    .main-nav > a:not(.button)::after {
        display: none;
    }

    .main-nav .button {
        margin-top: 0.5rem;
    }

    html.menu-open {
        overflow: hidden;
    }

    .hero__layout,
    .section-heading,
    .approach__layout,
    .local__layout,
    .faq__layout,
    .contact__shell {
        grid-template-columns: 1fr;
    }

    .hero__layout {
        gap: 3.5rem;
        padding-block: 5rem;
    }

    .hero__copy h1 {
        max-width: 12ch;
    }

    .hero-system {
        width: min(100%, 38rem);
        justify-self: end;
    }

    .section-heading {
        align-items: start;
        gap: 1.5rem;
    }

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

    .approach__layout {
        gap: 3.5rem;
    }

    .approach__intro,
    .faq__heading {
        position: static;
    }

    .local__layout {
        gap: 3.5rem;
    }

    .location-card {
        width: min(100%, 36rem);
    }

    .faq__layout,
    .contact__shell {
        gap: 3.5rem;
    }

    .contact__intro {
        max-width: 42rem;
    }

    .footer__main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer__main > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 40rem) {
    html {
        scroll-padding-top: 5rem;
    }

    .shell {
        width: min(calc(100% - 1.4rem), var(--shell));
    }

    .topbar__inner {
        min-height: 2.75rem;
        justify-content: center;
    }

    .topbar a {
        min-height: 2.75rem;
    }

    .topbar a:first-child {
        display: none;
    }

    .nav-wrap {
        min-height: 4.8rem;
    }

    .brand__crop {
        width: 6.5rem;
        padding: 0.35rem 0.45rem;
    }

    .hero {
        min-height: 0;
    }

    .hero__grid {
        background-size: 3.5rem 3.5rem;
    }

    .hero__layout {
        gap: 3.75rem;
        padding-block: 4.5rem;
    }

    .hero__copy h1 {
        max-width: 10.5ch;
        font-size: clamp(2.85rem, 13vw, 4.15rem);
        line-height: 0.96;
    }

    .hero__lead {
        margin-top: 1.5rem;
        font-size: 1rem;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__actions .text-link {
        min-height: 2.75rem;
        align-items: center;
    }

    .hero__facts {
        margin-top: 2.5rem;
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .hero__facts li {
        grid-template-columns: 8.2rem 1fr;
        align-items: center;
        gap: 0.7rem;
    }

    .hero-system {
        min-height: 0;
        padding: 1.15rem;
    }

    .hero-system__brand {
        width: 5.15rem;
    }

    .hero-system h2 {
        margin-bottom: 1.2rem;
        font-size: 1.55rem;
    }

    .security-field {
        height: 19rem;
        background-size: 2.2rem 2.2rem;
    }

    .security-field__core {
        width: 7.3rem;
    }

    .security-node {
        width: 7.9rem;
        padding: 0.58rem 0.62rem;
        column-gap: 0.42rem;
    }

    .security-node--people {
        top: 7%;
        left: 3%;
    }

    .security-node--technology {
        top: 7%;
        right: 3%;
    }

    .security-node--process {
        right: 3%;
        bottom: 6%;
    }

    .hero-system__footer {
        align-items: center;
    }

    .hero-system__footer > span {
        max-width: 8rem;
    }

    .signal-strip__grid {
        padding-block: 1rem;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .signal-strip p {
        min-height: 2.8rem;
    }

    .signal-strip p + p {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.26);
        border-left: 0;
    }

    .section {
        padding-block: 4.7rem;
    }

    .section-heading h2,
    .approach h2,
    .local h2,
    .faq h2,
    .contact h2,
    .legal-page h1 {
        font-size: clamp(2.3rem, 12vw, 3.5rem);
    }

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

    .service-card {
        min-height: 21.5rem;
        padding: 1.5rem;
    }

    .service-card__icon {
        margin: 1.8rem 0;
    }

    .process-list li {
        min-height: 0;
        grid-template-columns: 3rem 1fr;
        gap: 0.8rem;
    }

    .location-card__top,
    .location-card address,
    .location-card > a {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .location-card__map {
        height: 14rem;
    }

    .accordion summary {
        min-height: 5rem;
        padding-right: 2.5rem;
        font-size: 0.96rem;
    }

    .accordion details > p {
        padding-right: 1rem;
        font-size: 0.9rem;
    }

    .form-heading,
    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .field--full {
        grid-column: auto;
    }

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

    .footer__main {
        padding-block: 3.5rem;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1.5rem;
    }

    .footer__brand,
    .footer__main > div:last-child {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        padding-block: 1.2rem;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 0.3rem;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }

    .security-field::after {
        top: 50%;
        opacity: 0.55;
        animation: none;
    }
}
