:root {
    color-scheme: dark;
    --space-950: #020817;
    --space-900: #031023;
    --space-850: #06162d;
    --space-800: #09203d;
    --surface: rgba(5, 20, 42, .78);
    --surface-strong: rgba(7, 25, 50, .94);
    --surface-soft: rgba(8, 28, 55, .58);
    --line: rgba(107, 169, 228, .27);
    --line-strong: rgba(40, 162, 255, .62);
    --text: #f7f9ff;
    --text-soft: #b8c4d8;
    --text-muted: #8ea0ba;
    --cyan: #29ceff;
    --blue: #0e75ff;
    --blue-strong: #0a5df1;
    --violet: #965cff;
    --success: #4cdda6;
    --warning: #ffc864;
    --danger: #ff7d92;
    --shadow: 0 24px 80px rgba(0, 3, 12, .42);
    --glow: 0 0 30px rgba(25, 160, 255, .18);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 18px;
    --container: 1460px;
    --reading: 760px;
    --header-height: 88px;
    --transition: 180ms ease;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-synthesis: none;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    background: var(--space-950);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 78% 10%, rgba(9, 94, 210, .12), transparent 28rem),
        radial-gradient(circle at 8% 36%, rgba(29, 183, 255, .06), transparent 30rem),
        linear-gradient(180deg, var(--space-950), var(--space-900) 45%, #020a18);
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(42, 118, 183, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 118, 183, .045) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

body::after {
    position: fixed;
    left: var(--pointer-x, 50%);
    top: var(--pointer-y, 25%);
    z-index: -1;
    width: 34rem;
    height: 34rem;
    content: "";
    pointer-events: none;
    border-radius: 50%;
    background: rgba(8, 116, 255, .045);
    filter: blur(72px);
    transform: translate(-50%, -50%);
    transition: left 500ms ease-out, top 500ms ease-out;
}

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

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

button,
summary,
label,
select {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: var(--cyan);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover {
    color: #8ce8ff;
}

p,
ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--text);
    font-weight: 710;
    letter-spacing: -.025em;
    line-height: 1.14;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.9rem);
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.42rem);
}

hr {
    border: 0;
    border-top: 1px solid var(--line);
}

::selection {
    background: rgba(31, 153, 255, .42);
    color: #fff;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--text);
    color: var(--space-950);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform var(--transition);
}

.skip-link:focus {
    color: var(--space-950);
    transform: translateY(0);
}

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

.container {
    max-width: 1240px;
}

.reading-width {
    max-width: var(--reading);
}

.section {
    position: relative;
    padding-block: clamp(72px, 9vw, 132px);
}

.section--compact {
    padding-block: clamp(48px, 6vw, 84px);
}

.section--flush-top {
    padding-top: 0;
}

.section--band {
    border-block: 1px solid rgba(78, 139, 202, .13);
    background: rgba(5, 18, 38, .42);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 500px);
    align-items: end;
    gap: 40px;
    margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading h2,
.section-heading p {
    margin-bottom: 0;
}

.section-heading p {
    color: var(--text-soft);
    font-size: 1.08rem;
}

.section-label {
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: .76rem;
    font-weight: 750;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(7, 24, 48, .82), rgba(3, 14, 31, .73));
    box-shadow: inset 0 1px rgba(255, 255, 255, .02);
}

.panel--glow {
    box-shadow: var(--glow), inset 0 1px rgba(255, 255, 255, .03);
}

.button,
.button:visited {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 7px;
    color: #fff;
    font-size: .98rem;
    font-weight: 690;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.button svg,
.text-link svg,
.icon-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:hover {
    color: #fff;
    transform: translateY(-1px);
}

.button--primary {
    border-color: rgba(65, 180, 255, .75);
    background: linear-gradient(115deg, #086df6, #115df3 58%, #7038db);
    box-shadow: 0 10px 30px rgba(4, 94, 245, .22), inset 0 1px rgba(255, 255, 255, .18);
}

.button--primary:hover {
    background: linear-gradient(115deg, #1385ff, #1a68ff 58%, #8350e9);
    box-shadow: 0 12px 34px rgba(4, 112, 255, .34), inset 0 1px rgba(255, 255, 255, .2);
}

.button--secondary {
    border-color: var(--line-strong);
    background: rgba(3, 14, 30, .52);
}

.button--secondary:hover {
    border-color: var(--cyan);
    background: rgba(16, 92, 165, .17);
}

.button--small {
    min-height: 42px;
    padding: 9px 16px;
    font-size: .88rem;
}

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

.button[disabled] {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 680;
    text-decoration: none;
}

.text-link svg {
    transition: transform var(--transition);
}

.text-link:hover svg {
    transform: translateX(4px);
}

.text-button,
.icon-button {
    border: 0;
    background: transparent;
    color: var(--cyan);
    cursor: pointer;
}

.text-button {
    padding: 0;
    text-decoration: underline;
    text-underline-offset: .2em;
}

.icon-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(2, 8, 23, .72);
    backdrop-filter: blur(16px) saturate(130%);
    transition: height var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-compact {
    height: 72px;
    border-color: var(--line);
    background: rgba(2, 8, 23, .94);
    box-shadow: 0 16px 34px rgba(0, 3, 12, .24);
}

.site-header__inner {
    display: grid;
    height: 100%;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(24px, 4vw, 58px);
}

.brand {
    display: block;
    flex: 0 0 auto;
}

.brand img {
    width: 228px;
    height: auto;
    transition: width var(--transition);
}

.is-compact .brand img {
    width: 196px;
}

.desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 38px);
}

.desktop-nav > a,
.nav-services > summary {
    position: relative;
    padding-block: 12px;
    color: var(--text);
    font-size: .94rem;
    font-weight: 570;
    text-decoration: none;
    white-space: nowrap;
}

.desktop-nav > a::after,
.nav-services > summary::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-services > summary:hover::after,
.nav-services > summary[aria-current="page"]::after,
.nav-services[open] > summary::after {
    transform: scaleX(1);
}

.nav-services {
    position: relative;
}

.nav-services > summary {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    cursor: pointer;
}

.nav-services > summary::-webkit-details-marker {
    display: none;
}

.nav-services > summary svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform var(--transition);
}

.nav-services[open] > summary svg {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    display: grid;
    width: min(880px, calc(100vw - 64px));
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    padding: 28px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(3, 14, 31, .98);
    box-shadow: var(--shadow), 0 0 60px rgba(9, 111, 255, .12);
    transform: translateX(-32%);
}

.mega-menu::before {
    position: absolute;
    top: -17px;
    right: 0;
    left: 0;
    height: 18px;
    content: "";
}

.mega-menu__title {
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: .74rem;
    font-weight: 780;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mega-menu a {
    display: flex;
    min-height: 38px;
    align-items: center;
    border-bottom: 1px solid rgba(102, 151, 201, .14);
    color: var(--text-soft);
    font-size: .88rem;
    text-decoration: none;
}

.mega-menu a:hover {
    color: var(--text);
}

.mega-menu .mega-menu__all {
    justify-content: space-between;
    border-bottom: 0;
    color: var(--cyan);
}

.mega-menu__all svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
}

.header-cta {
    min-height: 48px;
    white-space: nowrap;
}

.nav-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    padding-block: clamp(70px, 9vw, 140px) 110px;
}

.hero::before {
    position: absolute;
    inset: -6rem -5rem 0 37%;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 60% 48%, rgba(9, 123, 255, .18), transparent 20rem),
        radial-gradient(circle at 52% 54%, rgba(106, 68, 255, .1), transparent 30rem);
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 610px;
    grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: clamp(28px, 3vw, 60px);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.2vw, 5.1rem);
    letter-spacing: -.045em;
    line-height: 1.05;
}

.hero-copy > p {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--text-soft);
    font-size: clamp(1.08rem, 1.6vw, 1.32rem);
    line-height: 1.65;
}

.hero-actions,
.cta-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions .button {
    min-width: 220px;
    min-height: 62px;
    font-size: 1.08rem;
}

.location-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: var(--text-soft);
}

.location-label svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.8;
}

.hero-visual {
    position: relative;
    min-height: 600px;
}

.system-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: visible;
}

.system-map__grid {
    stroke: rgba(29, 126, 213, .14);
    stroke-width: 1;
}

.system-map__orbit {
    fill: none;
    stroke: rgba(35, 153, 255, .42);
    stroke-width: 1.2;
}

.system-map__orbit--violet {
    stroke: rgba(145, 91, 255, .48);
}

.system-map__axis {
    stroke: rgba(42, 202, 255, .36);
    stroke-width: 1;
}

.system-map__signal {
    fill: #1ecfff;
    filter: drop-shadow(0 0 7px #1aaeff);
}

.system-map__signal--violet {
    fill: #8b61ff;
    filter: drop-shadow(0 0 7px #8b61ff);
}

.system-map__node circle:first-child {
    fill: rgba(3, 15, 33, .94);
    stroke: #23bfff;
    stroke-width: 1.4;
}

.system-map__node:nth-of-type(even) circle:first-child {
    stroke: #815cff;
}

.system-map__node use {
    fill: none;
    stroke: #42cfff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.system-map__node text {
    fill: #f7f9ff;
    font-size: 15px;
    text-anchor: middle;
}

.system-map__node .node-label {
    fill: rgba(2, 10, 23, .88);
    stroke: rgba(79, 151, 216, .45);
}

.system-map__core {
    filter: drop-shadow(0 0 18px rgba(22, 157, 255, .54));
}

.system-map__pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: node-pulse 2.8s ease-in-out infinite;
}

.system-map__spin {
    transform-origin: 420px 310px;
    animation: orbit-spin 38s linear infinite;
}

.hero-next {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: grid;
    place-items: center;
    min-height: 118px;
    padding: 28px;
    border: 1px solid rgba(23, 117, 217, .5);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(180deg, rgba(7, 29, 60, .78), rgba(4, 18, 38, .9));
    text-align: center;
}

.hero-next h2 {
    margin-bottom: 6px;
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.hero-next p {
    margin: 0;
    color: var(--text-soft);
}

.service-navigator {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 28px;
}

.goal-list {
    overflow: hidden;
}

.goal-button {
    display: grid;
    width: 100%;
    min-height: 60px;
    grid-template-columns: 42px 1fr 24px;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}

.goal-button:last-of-type {
    border-bottom: 0;
}

.goal-button:hover {
    background: rgba(19, 102, 192, .12);
}

.goal-button[aria-selected="true"] {
    background: linear-gradient(90deg, rgba(9, 106, 242, .2), rgba(9, 67, 140, .08));
    box-shadow: inset 3px 0 var(--blue);
}

.goal-button > svg,
.icon-disc > svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.goal-button > svg {
    color: var(--cyan);
}

.goal-button__check {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: transparent;
}

.goal-button[aria-selected="true"] .goal-button__check {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.goal-button__check svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
}

.navigator-help {
    display: flex;
    gap: 8px;
    padding: 13px 18px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: .8rem;
}

kbd {
    min-width: 24px;
    padding: 1px 6px;
    border: 1px solid rgba(159, 188, 221, .45);
    border-bottom-width: 2px;
    border-radius: 4px;
    background: rgba(4, 12, 27, .72);
    color: var(--text-soft);
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: .74rem;
    text-align: center;
}

.recommendation-panel {
    min-height: 100%;
    padding: clamp(24px, 4vw, 40px);
}

.recommendation-panel__intro {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.recommendation-panel__intro h3 {
    margin-bottom: 8px;
    font-size: 1.9rem;
}

.recommendation-panel__intro p:last-child {
    margin-bottom: 0;
    color: var(--text-soft);
}

.recommended-service {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 18px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
}

.recommended-service h4 {
    margin-bottom: 3px;
    font-size: 1rem;
}

.recommended-service p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: .9rem;
}

.icon-disc {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    color: var(--cyan);
    background: rgba(3, 17, 36, .7);
    box-shadow: inset 0 0 20px rgba(14, 117, 255, .11);
}

.icon-disc--violet {
    border-color: var(--violet);
    color: var(--violet);
}

.recommendation-panel .button {
    margin-top: 18px;
}

.service-rows {
    overflow: hidden;
}

.service-row {
    display: grid;
    min-height: 90px;
    grid-template-columns: 72px minmax(220px, .75fr) minmax(280px, 1.25fr) auto;
    align-items: center;
    gap: 22px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
    transition: background var(--transition), padding var(--transition);
}

.service-row:last-child {
    border-bottom: 0;
}

.service-row:hover {
    padding-inline: 28px 20px;
    background: rgba(10, 85, 167, .12);
    color: var(--text);
}

.service-row h3,
.service-row p {
    margin: 0;
}

.service-row p {
    max-width: 520px;
    color: var(--text-soft);
    font-size: .9rem;
}

.service-row__action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blue);
    font-weight: 650;
    white-space: nowrap;
}

.service-row__action svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
}

.outcomes-panel {
    display: grid;
    grid-template-columns: .9fr repeat(4, 1fr);
    overflow: hidden;
}

.outcomes-intro,
.outcome {
    min-height: 180px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.outcomes-intro {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outcomes-intro h3 {
    font-size: 1.7rem;
}

.outcomes-intro p:last-child,
.outcome p {
    margin-bottom: 0;
}

.outcomes-intro p:last-child {
    color: var(--text-soft);
}

.outcome {
    display: grid;
    place-items: center;
    text-align: center;
}

.outcome:nth-last-child(-n + 4) {
    border-bottom: 0;
}

.outcome:last-child,
.outcome:nth-child(5) {
    border-right: 0;
}

.outcome .icon-disc {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
}

.process-shell {
    padding: clamp(22px, 3vw, 38px);
}

.process-shell__title {
    margin-bottom: 38px;
}

.process-shell__title h2 {
    margin-bottom: 0;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: clamp(1.55rem, 2.6vw, 2.4rem);
    font-weight: 560;
}

.code-blue {
    color: var(--blue);
}

.code-violet {
    color: var(--violet);
}

.process-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(110px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.process-tabs::before {
    position: absolute;
    top: 52px;
    right: 7%;
    left: 7%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--line), var(--blue), var(--line));
}

.process-tab {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    color: var(--text-soft);
    text-align: center;
    cursor: pointer;
}

.process-tab__number {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(81, 135, 212, .7);
    border-radius: 50%;
    background: var(--space-900);
    color: var(--text);
    font-size: .78rem;
}

.process-tab .icon-disc {
    width: 58px;
    height: 58px;
    background: var(--space-900);
}

.process-tab strong {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.25;
}

.process-tab small {
    max-width: 150px;
    color: var(--text-muted);
    font-size: .76rem;
    line-height: 1.4;
}

.process-tab[aria-selected="true"] .process-tab__number {
    border-color: var(--blue);
    background: var(--blue);
}

.process-tab[aria-selected="true"] .icon-disc {
    box-shadow: 0 0 26px rgba(28, 149, 255, .28);
}

.process-detail {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    padding: 28px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--blue);
    border-radius: var(--radius-sm);
    background: rgba(2, 13, 29, .62);
}

.process-detail h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
}

.process-detail p {
    color: var(--text-soft);
}

.process-detail ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-detail li,
.check-list li {
    position: relative;
    padding-left: 26px;
}

.process-detail li::before,
.check-list li::before {
    position: absolute;
    left: 0;
    top: .25em;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--cyan);
    content: "✓";
    font-size: .64rem;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.hosting-card {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(4, 17, 36, .76);
}

.hosting-card:nth-child(even) {
    border-color: rgba(145, 91, 255, .68);
}

.hosting-card.is-featured {
    box-shadow: 0 0 0 1px var(--cyan), 0 0 36px rgba(26, 171, 255, .14);
}

.hosting-card__head {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 14px;
    align-items: start;
}

.hosting-card h3 {
    margin-bottom: 5px;
}

.hosting-card__head p {
    color: var(--text-soft);
    font-size: .84rem;
}

.hosting-card__price {
    min-height: 44px;
    margin: 8px 0 14px;
    color: var(--text);
    font-size: 1.55rem;
    font-weight: 720;
}

.hosting-card__price small {
    color: var(--text-muted);
    font-size: .8rem;
    font-weight: 500;
}

.spec-list {
    margin: 0 0 20px;
}

.spec-list > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(98, 151, 205, .17);
    font-size: .78rem;
}

.spec-list dt {
    color: var(--text-soft);
}

.spec-list dd {
    margin: 0;
    color: var(--text);
    text-align: right;
}

.hosting-card .button {
    margin-top: auto;
}

.comparison-control {
    display: flex;
    justify-content: flex-end;
    margin-top: 22px;
}

.comparison-wrap {
    margin-top: 14px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.comparison-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    font-size: .84rem;
}

.comparison-table caption {
    padding: 14px;
    color: var(--cyan);
    font-weight: 720;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 10px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}

.comparison-table thead th,
.comparison-table th[scope="row"] {
    background: rgba(13, 43, 78, .42);
}

.comparison-table th[scope="row"] {
    text-align: left;
}

.security-grid,
.portfolio-grid,
.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
}

.security-copy > p,
.portfolio-copy > p,
.split-grid p {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.security-services,
.feature-list {
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.security-services li,
.feature-list li {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--line);
}

.security-services svg,
.feature-list svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.7;
}

.authorization-note,
.notice,
.form-notice {
    display: flex;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: rgba(3, 18, 38, .62);
    color: var(--text-soft);
    font-size: .9rem;
}

.authorization-note svg,
.notice svg,
.form-notice svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.8;
}

.security-orbit,
.portfolio-orbit,
.faq-orbit,
.cta-orbit {
    position: relative;
    display: grid;
    min-height: 430px;
    place-items: center;
}

.security-orbit::before,
.security-orbit::after,
.portfolio-orbit::before,
.portfolio-orbit::after,
.faq-orbit::before,
.faq-orbit::after,
.cta-orbit::before,
.cta-orbit::after {
    position: absolute;
    border: 1px solid rgba(60, 150, 234, .32);
    border-radius: 50%;
    content: "";
}

.security-orbit::before,
.portfolio-orbit::before,
.faq-orbit::before,
.cta-orbit::before {
    width: 80%;
    height: 80%;
}

.security-orbit::after,
.portfolio-orbit::after,
.faq-orbit::after,
.cta-orbit::after {
    width: 55%;
    height: 55%;
    border-color: rgba(141, 91, 255, .35);
    border-style: dashed;
}

.security-shield {
    position: relative;
    z-index: 1;
    display: grid;
    width: 230px;
    height: 260px;
    place-items: center;
    color: var(--blue);
    filter: drop-shadow(0 0 24px rgba(45, 113, 255, .42));
}

.security-shield::before,
.security-shield::after {
    position: absolute;
    inset: 10%;
    border: 2px solid currentColor;
    border-radius: 50% 50% 42% 42% / 38% 38% 62% 62%;
    content: "";
    clip-path: polygon(50% 0, 95% 18%, 88% 70%, 50% 100%, 12% 70%, 5% 18%);
}

.security-shield::after {
    inset: 23%;
    color: var(--violet);
}

.security-shield svg {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
    fill: none;
    stroke: var(--text);
    stroke-width: 1.3;
}

.readiness-checklist {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    padding: 22px;
}

.readiness-checklist h3 {
    margin-bottom: 16px;
}

.check-item {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 62px;
    padding: 8px 4px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
}

.check-item > svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.8;
}

.check-item span {
    line-height: 1.25;
}

.check-item small {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: .72rem;
}

.check-item input {
    width: 22px;
    height: 22px;
    accent-color: var(--blue);
}

.readiness-status {
    margin: 14px 0;
    color: var(--text-soft);
    font-size: .88rem;
}

.portfolio-note {
    margin: 28px 0 22px;
}

.portfolio-orbit .icon-disc,
.faq-orbit .icon-disc,
.cta-orbit .icon-disc {
    position: relative;
    z-index: 2;
    width: 108px;
    height: 108px;
    border-color: var(--blue);
    background: radial-gradient(circle, #185bfa, #3842cf 58%, #08162e 60%);
    box-shadow: 0 0 34px rgba(18, 111, 255, .38);
}

.portfolio-orbit .icon-disc svg,
.faq-orbit .icon-disc svg,
.cta-orbit .icon-disc svg {
    width: 46px;
    height: 46px;
    color: #fff;
}

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

.why-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    border-bottom: 1px solid var(--line);
}

.why-item .icon-disc {
    width: 50px;
    height: 50px;
}

.why-item p {
    margin: 0;
    font-weight: 600;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(260px, .54fr) minmax(0, 1.46fr);
    gap: clamp(38px, 7vw, 100px);
}

.faq-intro p {
    color: var(--text-soft);
}

.faq-orbit {
    min-height: 310px;
}

.faq-list {
    display: grid;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(4, 18, 38, .55);
}

.faq-item[open] {
    border-color: var(--line-strong);
    box-shadow: inset 0 0 24px rgba(9, 111, 255, .06);
}

.faq-item summary {
    display: grid;
    min-height: 56px;
    grid-template-columns: 34px 1fr 24px;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    color: var(--text);
    font-weight: 650;
    list-style: none;
    cursor: pointer;
}

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

.faq-item summary > svg:first-child {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.6;
}

.faq-item summary > svg:last-child {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform var(--transition);
}

.faq-item[open] summary > svg:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 56px 20px 64px;
    color: var(--text-soft);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.conversion-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
    align-items: center;
    gap: 40px;
    padding: clamp(28px, 4vw, 52px);
    overflow: hidden;
}

.conversion-panel h2 {
    margin-bottom: 14px;
}

.conversion-panel p {
    max-width: 680px;
    color: var(--text-soft);
}

.response-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: .8rem;
}

.response-note svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
}

.cta-orbit {
    min-height: 240px;
}

.site-footer {
    padding: 62px 0 30px;
    border-top: 1px solid var(--line);
    background: rgba(2, 9, 21, .82);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(5, 1fr);
    gap: clamp(24px, 3vw, 52px);
}

.site-footer h2 {
    margin-bottom: 14px;
    font-size: .9rem;
    letter-spacing: 0;
}

.site-footer a:not(.text-button) {
    display: block;
    margin-bottom: 7px;
    color: var(--text-soft);
    font-size: .82rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--text);
}

.site-footer__brand img {
    width: 210px;
    height: auto;
    margin-bottom: 12px;
}

.site-footer__brand p {
    max-width: 310px;
    color: var(--text-soft);
    font-size: .82rem;
}

.site-footer__brand p a {
    display: inline !important;
}

.site-footer__bottom {
    padding-top: 22px;
    margin-top: 34px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: .78rem;
}

.site-footer__bottom p {
    margin: 0;
}

.floating-project {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(4, 23, 49, .92);
    box-shadow: 0 14px 34px rgba(0, 3, 12, .4);
    color: var(--text);
    font-weight: 680;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: transform var(--transition), opacity var(--transition), border-color var(--transition);
}

.floating-project:hover {
    border-color: var(--cyan);
    color: var(--text);
    transform: translateY(-2px);
}

.floating-project svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.8;
}

.mobile-action-bar {
    display: none;
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 200;
    display: flex;
    max-width: 1180px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 24px;
    margin-inline: auto;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(3, 14, 31, .98);
    box-shadow: var(--shadow);
}

.cookie-banner h2 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.cookie-banner p {
    margin: 0;
    color: var(--text-soft);
    font-size: .86rem;
}

.cookie-banner__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.cookie-dialog {
    width: min(560px, calc(100% - 32px));
    padding: 0;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--space-900);
    color: var(--text);
    box-shadow: var(--shadow);
}

.cookie-dialog::backdrop {
    background: rgba(0, 4, 13, .78);
    backdrop-filter: blur(4px);
}

.cookie-dialog form {
    padding: 24px;
}

.dialog-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.dialog-heading h2 {
    margin-bottom: 4px;
    font-size: 1.45rem;
}

.dialog-heading p {
    margin: 0;
    color: var(--text-soft);
    font-size: .9rem;
}

.consent-option {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.consent-option small {
    display: block;
    color: var(--text-muted);
}

.consent-option input {
    width: 22px;
    height: 22px;
    accent-color: var(--blue);
}

.dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 20px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(72px, 9vw, 128px) clamp(58px, 8vw, 100px);
    border-bottom: 1px solid rgba(83, 151, 217, .17);
}

.page-hero::after {
    position: absolute;
    top: -16rem;
    right: -8rem;
    width: 46rem;
    height: 46rem;
    border: 1px solid rgba(34, 139, 241, .2);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 70px rgba(42, 123, 214, .04), 0 0 0 140px rgba(114, 76, 234, .03);
}

.page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .5fr);
    align-items: end;
    gap: 50px;
}

.page-hero h1 {
    max-width: 920px;
    margin-bottom: 20px;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--text-muted);
    font-size: .82rem;
}

.breadcrumbs a {
    color: var(--text-soft);
    text-decoration: none;
}

.breadcrumbs span:not(:last-child)::after,
.breadcrumbs a::after {
    margin-left: 8px;
    color: var(--line-strong);
    content: "/";
}

.page-hero__aside {
    justify-self: end;
    width: 100%;
    min-width: 0;
    max-width: 360px;
    padding: 22px;
}

.page-hero__aside h2 {
    max-width: 100%;
    font-size: clamp(1.125rem, 1.2vw, 1.3rem);
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: normal;
}

.page-hero__aside p {
    font-size: .9rem;
}

.page-content {
    color: var(--text-soft);
    font-size: 1.03rem;
}

.page-content h2,
.page-content h3 {
    margin-top: 2em;
}

.page-content h2:first-child,
.page-content h3:first-child {
    margin-top: 0;
}

.page-content a {
    overflow-wrap: anywhere;
}

.page-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.page-content th,
.page-content td {
    padding: 12px;
    border: 1px solid var(--line);
}

.content-with-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: clamp(40px, 7vw, 90px);
}

.sticky-aside {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
    padding: 22px;
}

.sticky-aside h2 {
    font-size: 1.1rem;
}

.sticky-aside a {
    display: flex;
    min-height: 42px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--text-soft);
    font-size: .88rem;
    text-decoration: none;
}

.sticky-aside a:hover {
    color: var(--text);
}

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

.info-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 20, 42, .58);
    color: var(--text);
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.info-card:hover {
    border-color: var(--line-strong);
    background: rgba(7, 29, 59, .72);
    color: var(--text);
    transform: translateY(-3px);
}

.info-card .icon-disc {
    margin-bottom: 22px;
}

.info-card h2,
.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.info-card p {
    color: var(--text-soft);
}

.info-card .text-link {
    margin-top: auto;
}

.service-category {
    margin-bottom: 56px;
}

.service-category__head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-strong);
}

.service-category__head h2 {
    margin: 0;
    font-size: 1.8rem;
}

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

.service-link-list a {
    display: grid;
    min-height: 78px;
    grid-template-columns: 1fr 22px;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
    text-decoration: none;
}

.service-link-list a:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.service-link-list a:hover {
    background: rgba(12, 89, 172, .1);
}

.service-link-list a span span {
    display: block;
    margin-top: 2px;
    color: var(--text-muted);
    font-size: .78rem;
}

.service-link-list svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--blue);
}

.content-section {
    padding-block: clamp(52px, 7vw, 94px);
    border-bottom: 1px solid rgba(84, 148, 210, .13);
}

.content-section:last-child {
    border-bottom: 0;
}

.content-section__grid {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: clamp(40px, 8vw, 110px);
}

.content-section__heading p {
    color: var(--text-soft);
}

.check-list,
.bullet-list {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.check-list li,
.bullet-list li {
    color: var(--text-soft);
}

.bullet-list li {
    position: relative;
    padding-left: 20px;
}

.bullet-list li::before {
    position: absolute;
    top: .68em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    content: "";
}

.two-column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 30px;
}

.step-list {
    display: grid;
    gap: 0;
    counter-reset: steps;
}

.step-list article {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    min-height: 120px;
    counter-increment: steps;
}

.step-list article::before {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--cyan);
    content: counter(steps);
    font-weight: 700;
}

.step-list article::after {
    position: absolute;
    top: 45px;
    bottom: 3px;
    left: 20px;
    width: 1px;
    background: var(--line);
    content: "";
}

.step-list article:last-child::after {
    display: none;
}

.step-list h3 {
    margin-bottom: 6px;
}

.step-list p {
    color: var(--text-soft);
}

.empty-state {
    display: grid;
    max-width: 920px;
    place-items: center;
    padding: clamp(40px, 7vw, 80px);
    margin-inline: auto;
    text-align: center;
}

.empty-state .portfolio-orbit {
    width: min(100%, 440px);
    min-height: 300px;
}

.empty-state h2 {
    max-width: 700px;
}

.empty-state p {
    max-width: 680px;
    color: var(--text-soft);
}

.pricing-explainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    background: var(--line);
}

.pricing-explainer article {
    padding: 28px;
    background: var(--space-900);
}

.pricing-explainer h2 {
    font-size: 1.3rem;
}

.pricing-explainer p {
    color: var(--text-soft);
}

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

.post-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 20, 42, .55);
}

.post-card__meta,
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    color: var(--text-muted);
    font-size: .78rem;
}

.post-card h2,
.post-card h3 {
    margin: 16px 0 10px;
    font-size: 1.45rem;
}

.post-card p {
    color: var(--text-soft);
}

.post-card .text-link {
    margin-top: auto;
}

.article-header {
    max-width: 980px;
}

.article-content {
    color: var(--text-soft);
    font-size: 1.07rem;
}

.article-content h2,
.article-content h3 {
    margin-top: 2.2em;
}

.article-content > p:first-of-type {
    color: var(--text);
    font-size: 1.2rem;
}

.article-content blockquote {
    padding: 20px 24px;
    margin: 32px 0;
    border-left: 3px solid var(--blue);
    background: rgba(10, 49, 94, .22);
}

.form-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 28px;
    align-items: start;
}

.form-panel {
    padding: clamp(22px, 4vw, 40px);
}

.form-panel h2,
.form-panel h3 {
    margin-bottom: 8px;
}

.form-intro {
    color: var(--text-soft);
}

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

.field,
.field-full {
    display: grid;
    gap: 8px;
}

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

.field label,
.field-full > label,
.field > legend {
    color: var(--text);
    font-size: .9rem;
    font-weight: 650;
}

.field label small,
.field-full label small {
    color: var(--text-muted);
    font-weight: 500;
}

input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(2, 12, 27, .76);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #72849e;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(80, 159, 229, .55);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(41, 206, 255, .15);
}

[aria-invalid="true"] {
    border-color: var(--danger) !important;
}

.field-error {
    margin: 0;
    color: #ff9aab;
    font-size: .8rem;
}

.consent-field {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    color: var(--text-soft);
    font-size: .86rem;
}

.consent-field input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--blue);
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.error-summary {
    padding: 16px 18px;
    margin-bottom: 22px;
    border: 1px solid var(--danger);
    border-radius: var(--radius-sm);
    background: rgba(150, 28, 51, .14);
}

.error-summary h2 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.error-summary ul {
    margin-bottom: 0;
}

.contact-aside {
    display: grid;
    gap: 18px;
}

.contact-card {
    padding: 22px;
}

.contact-card h2 {
    font-size: 1.15rem;
}

.contact-card a {
    overflow-wrap: anywhere;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.quote-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 30px;
    margin-bottom: 28px;
}

.quote-header h1 {
    margin-bottom: 8px;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.quote-header p {
    color: var(--text-soft);
}

.quote-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 24px;
}

.quote-progress__step {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: .8rem;
}

.quote-progress__step::after {
    position: absolute;
    top: 17px;
    right: 12px;
    left: 45px;
    z-index: -1;
    height: 1px;
    background: var(--line);
    content: "";
}

.quote-progress__step:last-child::after {
    display: none;
}

.quote-progress__number {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    background: var(--space-900);
    color: var(--text);
    font-size: .9rem;
}

.quote-progress__step[aria-current="step"] {
    color: var(--text);
}

.quote-progress__step[aria-current="step"] .quote-progress__number,
.quote-progress__step.is-complete .quote-progress__number {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 0 16px rgba(14, 117, 255, .35);
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.quote-step {
    padding: 26px;
}

.quote-step > h2 {
    margin-bottom: 6px;
    font-size: 1.35rem;
}

.quote-step > p {
    color: var(--text-soft);
}

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

.choice-card {
    display: grid;
    min-height: 76px;
    grid-template-columns: 22px 38px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(2, 13, 29, .45);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.choice-card:hover,
.choice-card:has(input:checked) {
    border-color: var(--blue);
    background: rgba(10, 92, 184, .13);
}

.choice-card input {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}

.choice-card > svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.6;
}

.choice-card strong,
.choice-card small {
    display: block;
}

.choice-card strong {
    font-size: .88rem;
}

.choice-card small {
    color: var(--text-muted);
    font-size: .72rem;
}

.quote-step .form-actions {
    justify-content: space-between;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.quote-aside {
    position: sticky;
    top: calc(var(--header-height) + 22px);
    padding: 22px;
}

.quote-aside h2 {
    font-size: 1.2rem;
}

.next-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.next-list li {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.next-list svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.7;
}

.next-list strong,
.next-list small {
    display: block;
}

.next-list small {
    color: var(--text-muted);
}

.quote-aside > p:last-child {
    color: var(--text-muted);
    font-size: .78rem;
}

.status-page {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    place-items: center;
    padding-block: 80px;
}

.status-card {
    width: min(720px, 100%);
    padding: clamp(30px, 6vw, 64px);
    text-align: center;
}

.status-card .icon-disc {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
}

.status-card .icon-disc svg {
    width: 38px;
    height: 38px;
}

.status-card h1 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.status-card p {
    color: var(--text-soft);
}

.status-card .cta-actions {
    justify-content: center;
    margin-top: 28px;
}

.legal-review-note {
    margin-bottom: 34px;
    border-color: var(--warning);
}

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes node-pulse {
    0%, 100% { opacity: .72; transform: scale(.78); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1260px) {
    .desktop-nav {
        gap: 17px;
    }

    .desktop-nav > a,
    .nav-services > summary {
        font-size: .85rem;
    }

    .brand img {
        width: 188px;
    }

    .site-header__inner {
        gap: 22px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, .9fr) minmax(450px, 1.1fr);
    }

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

    .outcomes-intro {
        grid-row: span 4;
    }

    .outcome:nth-child(3),
    .outcome:nth-child(5),
    .outcome:nth-child(7),
    .outcome:nth-child(9) {
        border-right: 0;
    }

    .outcome:nth-last-child(-n + 4) {
        border-bottom: 1px solid var(--line);
    }

    .outcome:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

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

    .site-footer__grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

@media (max-width: 1040px) {
    :root {
        --header-height: 76px;
    }

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .nav-toggle {
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        background: rgba(4, 21, 44, .62);
        color: var(--text);
        cursor: pointer;
    }

    .nav-toggle svg {
        width: 25px;
        height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }

    .nav-toggle__close,
    .nav-toggle[aria-expanded="true"] .nav-toggle__open {
        display: none;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__close {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        display: flex;
        width: min(420px, 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px 24px 120px;
        border-left: 1px solid var(--line);
        background: rgba(2, 10, 24, .98);
        box-shadow: -24px 0 60px rgba(0, 3, 12, .42);
        overflow-y: auto;
    }

    .mobile-nav > a:not(.button) {
        display: flex;
        min-height: 52px;
        align-items: center;
        border-bottom: 1px solid var(--line);
        color: var(--text);
        font-weight: 620;
        text-decoration: none;
    }

    .mobile-nav .button {
        margin-top: 20px;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::before {
        z-index: 70;
        background: rgba(0, 4, 13, .72);
        mask-image: none;
    }

    .hero {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-grid {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-copy,
    .hero-visual {
        min-width: 0;
    }

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

    .hero-visual {
        min-height: 520px;
    }

    .system-map {
        min-height: 520px;
    }

    .hero-next {
        position: static;
        width: min(100% - 48px, var(--container));
        margin: 40px auto 0;
        border-radius: var(--radius-lg);
    }

    .process-shell {
        overflow: hidden;
    }

    .process-tabs {
        grid-template-columns: repeat(7, 140px);
        overflow-x: auto;
        padding-bottom: 16px;
        scroll-snap-type: x proximity;
    }

    .process-tab {
        scroll-snap-align: start;
    }

    .process-tabs::before {
        display: none;
    }

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

    .site-footer__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-footer__brand {
        grid-column: span 3;
    }
}

@media (max-width: 780px) {
    .container-wide,
    .container,
    .reading-width {
        width: min(100% - 32px, var(--container));
    }

    .section-heading,
    .service-navigator,
    .security-grid,
    .portfolio-grid,
    .split-grid,
    .page-hero__grid,
    .content-with-aside,
    .content-section__grid,
    .form-shell,
    .quote-layout,
    .conversion-panel {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: start;
        gap: 16px;
    }

    .hero {
        padding-top: 56px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 12.5vw, 4.3rem);
    }

    .hero-visual {
        min-height: 420px;
    }

    .system-map {
        min-height: 420px;
    }

    .service-row {
        min-height: 110px;
        grid-template-columns: 58px 1fr auto;
    }

    .service-row p {
        grid-column: 2 / -1;
        margin-top: -16px;
    }

    .service-row__action span {
        display: none;
    }

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

    .outcomes-intro {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: auto;
    }

    .outcome {
        min-height: 160px;
    }

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

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

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

    .hosting-card {
        min-height: 0;
    }

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

    .faq-orbit {
        min-height: 220px;
    }

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

    .cta-orbit,
    .page-hero__aside {
        display: none;
    }

    .site-footer {
        padding-bottom: 110px;
    }

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

    .site-footer__brand {
        grid-column: span 2;
    }

    .floating-project {
        display: none;
    }

    .mobile-action-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        border-top: 1px solid var(--line-strong);
        background: rgba(3, 14, 31, .97);
        backdrop-filter: blur(14px);
    }

    .mobile-action-bar a {
        display: grid;
        min-height: 54px;
        place-items: center;
        align-content: center;
        gap: 2px;
        border-right: 1px solid var(--line);
        color: var(--text-soft);
        font-size: .7rem;
        text-decoration: none;
    }

    .mobile-action-bar a:last-child {
        border-right: 0;
    }

    .mobile-action-bar a[aria-current="page"] {
        border: 1px solid var(--blue);
        border-radius: var(--radius-sm);
        color: var(--text);
        background: linear-gradient(115deg, rgba(8, 109, 246, .32), rgba(112, 56, 219, .28));
    }

    .mobile-action-bar svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: var(--cyan);
        stroke-width: 1.7;
    }

    .cookie-banner {
        right: 12px;
        bottom: 78px;
        left: 12px;
        display: block;
        padding: 18px;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 16px;
    }

    .cookie-banner__actions .button:last-child {
        grid-column: 1 / -1;
    }

    .card-grid,
    .post-grid,
    .pricing-explainer {
        grid-template-columns: 1fr;
    }

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

    .service-link-list a:nth-child(odd) {
        border-right: 0;
    }

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

    .sticky-aside,
    .quote-aside {
        position: static;
    }

    .field-grid,
    .option-grid {
        grid-template-columns: 1fr;
    }

    .quote-header {
        grid-template-columns: 1fr;
    }

    .quote-progress__step {
        grid-template-columns: 34px;
        justify-content: center;
        text-align: center;
    }

    .quote-progress__step span:last-child {
        display: none;
    }

    .quote-progress__step[aria-current="step"] span:last-child {
        display: block;
        position: absolute;
        top: 42px;
        width: 100%;
        color: var(--text);
    }

    .quote-progress {
        margin-bottom: 42px;
    }
}

@media (max-width: 520px) {
    .brand img,
    .is-compact .brand img {
        width: 170px;
    }

    .hero-actions,
    .cta-actions,
    .form-actions,
    .dialog-actions {
        flex-direction: column;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 11.25vw, 3.35rem);
        line-height: 1.08;
    }

    .hero-actions .button,
    .cta-actions .button,
    .form-actions .button,
    .dialog-actions .button {
        width: 100%;
    }

    .hero-visual,
    .system-map {
        min-height: 330px;
    }

    .service-row {
        padding: 14px;
    }

    .service-row:hover {
        padding-inline: 16px 12px;
    }

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

    .outcome,
    .outcome:nth-child(n) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .outcome:last-child {
        border-bottom: 0;
    }

    .why-item {
        grid-template-columns: 48px 1fr;
    }

    .faq-answer {
        padding-inline: 20px;
    }

    .faq-item summary {
        grid-template-columns: 1fr 22px;
        padding: 12px 16px;
    }

    .faq-item summary > svg:first-child {
        display: none;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__grid > div:not(.site-footer__brand) {
        padding-top: 18px;
        border-top: 1px solid var(--line);
    }

    .cookie-banner__actions {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions .button:last-child {
        grid-column: auto;
    }

    .page-hero {
        padding-top: 60px;
    }

    .quote-step,
    .form-panel {
        padding: 20px 16px;
    }

    .choice-card {
        grid-template-columns: 22px 32px 1fr;
    }
}

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

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

    body::after {
        display: none;
    }

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

@media print {
    :root {
        color-scheme: light;
    }

    body {
        background: #fff;
        color: #111;
    }

    body::before,
    body::after,
    .site-header,
    .site-footer,
    .floating-project,
    .mobile-action-bar,
    .cookie-banner,
    .cookie-dialog,
    .button,
    .hero-visual,
    .page-hero::after {
        display: none !important;
    }

    h1,
    h2,
    h3,
    h4,
    p,
    li,
    a {
        color: #111 !important;
    }

    .panel,
    .info-card,
    .post-card {
        border-color: #aaa;
        background: #fff;
        box-shadow: none;
    }
}
