:root {
    color-scheme: dark;
    --bg: #05070b;
    --bg-soft: #080b12;
    --surface: #0d111a;
    --surface-2: #101722;
    --surface-3: #111d2d;
    --navy: #0a1a30;
    --navy-2: #0b2545;
    --blue: #2563eb;
    --blue-2: #4f86ff;
    --blue-soft: rgba(37, 99, 235, .14);
    --text: #f5f7fa;
    --text-soft: #a9b2c2;
    --text-muted: #788398;
    --line: rgba(183, 202, 231, .13);
    --line-strong: rgba(183, 202, 231, .23);
    --success: #58d6a2;
    --danger: #ff7d8f;
    --warning: #f3c56b;
    --shadow: 0 30px 90px rgba(0, 0, 0, .38);
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, .24);
    --radius-xs: .55rem;
    --radius-sm: .85rem;
    --radius: 1.15rem;
    --radius-lg: 1.75rem;
    --container: 1200px;
    --header-height: 76px;
    --ease: cubic-bezier(.2, .75, .2, 1);
}

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

html {
    min-width: 320px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 2rem);
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% -10%, rgba(24, 73, 145, .18), transparent 34rem),
        radial-gradient(circle at 92% 8%, rgba(37, 99, 235, .11), transparent 30rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

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

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

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

img {
    height: auto;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--text);
    font-weight: 690;
    line-height: 1.06;
    letter-spacing: -.035em;
    text-wrap: balance;
}

h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.7rem, 6.1vw, 5.9rem);
}

h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4.1vw, 4rem);
}

h3 {
    margin-bottom: .75rem;
    font-size: clamp(1.18rem, 2vw, 1.55rem);
}

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

::selection {
    background: rgba(79, 134, 255, .34);
    color: #fff;
}

:focus-visible {
    outline: 3px solid rgba(93, 147, 255, .82);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

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

.skip-link {
    position: fixed;
    z-index: 10000;
    top: .8rem;
    left: .8rem;
    padding: .7rem 1rem;
    transform: translateY(-180%);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xs);
    background: var(--text);
    color: var(--bg);
    font-weight: 750;
    transition: transform .2s ease;
}

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

.container {
    width: min(calc(100% - clamp(2rem, 6vw, 5rem)), var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(calc(100% - clamp(2rem, 8vw, 6rem)), 920px);
}

.section,
.hero {
    position: relative;
}

.section {
    padding-block: clamp(5.5rem, 10vw, 10rem);
}

.site-ambient {
    position: fixed;
    z-index: -1;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    opacity: .13;
    background-image:
        linear-gradient(rgba(142, 169, 211, .09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(142, 169, 211, .09) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0, transparent 72%);
}

.ambient-glow {
    position: absolute;
    width: 38rem;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .16;
}

.ambient-glow-a {
    top: -18rem;
    left: -13rem;
    background: #1453a4;
}

.ambient-glow-b {
    top: 24rem;
    right: -20rem;
    background: #1b4ca4;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    right: 0;
    left: 0;
    pointer-events: none;
    transition: top .3s var(--ease);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 2rem), 1280px);
    min-height: var(--header-height);
    margin-inline: auto;
    padding: .55rem .65rem .55rem 1rem;
    border: 1px solid rgba(184, 202, 229, .13);
    border-radius: 1.15rem;
    background: rgba(8, 11, 18, .72);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .2);
    backdrop-filter: blur(20px) saturate(130%);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    pointer-events: auto;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.site-header.is-scrolled {
    top: .55rem;
}

.site-header.is-scrolled .header-shell {
    border-color: rgba(184, 202, 229, .2);
    background: rgba(5, 7, 11, .9);
    box-shadow: 0 18px 58px rgba(0, 0, 0, .36);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    gap: .75rem;
    color: var(--text);
    text-decoration: none;
}

.brand-symbol {
    display: grid;
    flex: 0 0 auto;
    width: 2.7rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(113, 162, 255, .34);
    border-radius: .8rem;
    background:
        linear-gradient(145deg, rgba(79, 134, 255, .18), rgba(12, 25, 49, .82)),
        #0d1727;
    box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 10px 30px rgba(14, 50, 112, .24);
    color: #dce8ff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: .98rem;
    letter-spacing: -.01em;
}

.brand-copy small {
    margin-top: .3rem;
    color: var(--text-muted);
    font-size: .69rem;
    letter-spacing: .02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: .1rem;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: .6rem .78rem;
    border-radius: .65rem;
    color: var(--text-soft);
    font-size: .87rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s var(--ease);
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
    color: var(--text);
    background: rgba(255, 255, 255, .045);
}

.main-nav a::after {
    position: absolute;
    right: .75rem;
    bottom: .38rem;
    left: .75rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--blue-2);
    content: "";
    transition: transform .25s var(--ease);
}

.main-nav a[aria-current="true"]::after {
    transform: scaleX(1);
}

.main-nav .nav-cta {
    margin-left: .3rem;
    padding-inline: 1rem;
    border: 1px solid rgba(107, 154, 255, .34);
    background: linear-gradient(145deg, rgba(37, 99, 235, .94), rgba(24, 78, 175, .9));
    box-shadow: inset 0 1px rgba(255, 255, 255, .13), 0 10px 26px rgba(20, 69, 164, .25);
    color: #fff;
}

.main-nav .nav-cta:hover {
    background: linear-gradient(145deg, #3472f0, #1d56bc);
    transform: translateY(-1px);
}

.main-nav .nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: .78rem;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 1.15rem;
    height: 1px;
    margin: .28rem auto;
    background: var(--text);
    transition: transform .25s var(--ease), opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(.29rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-.29rem) rotate(-45deg);
}

.hero {
    display: grid;
    min-height: min(960px, 100svh);
    align-items: center;
    padding-top: calc(var(--header-height) + clamp(5rem, 10vw, 8rem));
    padding-bottom: clamp(3.5rem, 8vw, 7rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.25rem;
    color: #8db3fb;
    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 1.8rem;
    height: 1px;
    background: linear-gradient(90deg, var(--blue-2), transparent);
}

.hero-text,
.section-copy {
    color: var(--text-soft);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
}

.hero-text {
    max-width: 620px;
}

.hero-text p:last-child,
.section-copy p:last-child {
    margin-bottom: 0;
}

.hero-actions,
.pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .78rem 1.12rem;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: .78rem;
    font-weight: 680;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s var(--ease), border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease;
}

.button::before {
    position: absolute;
    inset: 0;
    transform: translateX(-105%);
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .13), transparent);
    content: "";
    transition: transform .55s var(--ease);
}

.button:hover::before {
    transform: translateX(105%);
}

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

.button:active {
    transform: translateY(0) scale(.985);
}

.button:disabled,
.button[aria-disabled="true"] {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.button-primary {
    border-color: rgba(106, 153, 255, .35);
    background: linear-gradient(145deg, #2563eb, #18499e);
    box-shadow: inset 0 1px rgba(255, 255, 255, .14), 0 14px 34px rgba(21, 69, 166, .28);
    color: #fff;
}

.button-primary:hover {
    border-color: rgba(145, 180, 255, .58);
    box-shadow: inset 0 1px rgba(255, 255, 255, .17), 0 18px 42px rgba(21, 69, 166, .37);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .035);
    color: var(--text);
}

.button-secondary:hover {
    border-color: rgba(117, 158, 240, .4);
    background: rgba(55, 100, 184, .1);
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1.25rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-assurances li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-muted);
    font-size: .82rem;
}

.hero-assurances li::before {
    position: absolute;
    top: .68em;
    left: 0;
    width: .35rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--blue-2);
    box-shadow: 0 0 12px rgba(79, 134, 255, .7);
    content: "";
}

.hero-stage {
    position: relative;
    min-width: 0;
    isolation: isolate;
}

.stage-glow {
    position: absolute;
    z-index: -2;
    top: 8%;
    left: 6%;
    width: 88%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .22), transparent 66%);
    filter: blur(24px);
}

.browser-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(167, 193, 232, .2);
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgba(15, 22, 34, .98), rgba(5, 9, 16, .98));
    box-shadow: 0 55px 110px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 255, 255, .055);
    transform: perspective(1300px) rotateY(-4deg) rotateX(2deg);
    transform-origin: center;
}

.browser-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, .035), transparent 30%, transparent 70%, rgba(37, 99, 235, .05));
    content: "";
    pointer-events: none;
}

.browser-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 3.4rem;
    padding-inline: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .018);
    color: var(--text-muted);
    font-size: .67rem;
}

.browser-dots {
    display: flex;
    gap: .34rem;
}

.browser-dots i {
    width: .48rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(174, 192, 218, .24);
}

.browser-address {
    justify-self: center;
    width: min(100%, 12rem);
    padding: .34rem .7rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 2rem;
    background: rgba(0, 0, 0, .18);
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.browser-status {
    color: #6be3ad;
}

.browser-body {
    display: grid;
    grid-template-columns: 3.4rem 1fr;
    min-height: 430px;
}

.ui-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem;
    border-right: 1px solid var(--line);
    background: rgba(3, 7, 13, .42);
}

.ui-logo {
    display: grid;
    width: 1.75rem;
    aspect-ratio: 1;
    place-items: center;
    margin-bottom: .6rem;
    border: 1px solid rgba(83, 137, 244, .4);
    border-radius: .5rem;
    color: #aac5fa;
    font-size: .48rem;
    font-weight: 800;
}

.ui-sidebar i {
    display: block;
    width: 1rem;
    height: .42rem;
    border-radius: 1rem;
    background: rgba(173, 190, 215, .17);
}

.ui-sidebar i.is-active {
    background: #3c79ee;
    box-shadow: 0 0 12px rgba(60, 121, 238, .48);
}

.ui-canvas {
    min-width: 0;
    padding: 1rem;
}

.ui-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: .62rem;
}

.ui-toolbar b {
    padding: .35rem .62rem;
    border: 1px solid rgba(76, 129, 235, .28);
    border-radius: .45rem;
    background: rgba(37, 99, 235, .1);
    color: #9ebcf7;
    font-weight: 650;
}

.ui-hero-block {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: .75rem;
    min-height: 210px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: .9rem;
    background: linear-gradient(145deg, rgba(15, 26, 44, .72), rgba(8, 12, 21, .82));
}

.ui-hero-block > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ui-hero-block > div:first-child i {
    width: 3.4rem;
    height: .28rem;
    margin-bottom: .72rem;
    border-radius: 1rem;
    background: #3572e7;
}

.ui-hero-block strong,
.ui-hero-block > div:first-child span {
    display: block;
    border-radius: 1rem;
    background: rgba(209, 222, 242, .15);
}

.ui-hero-block strong {
    width: 88%;
    height: .75rem;
    margin-bottom: .48rem;
}

.ui-hero-block > div:first-child span {
    width: 72%;
    height: .34rem;
    margin-bottom: .32rem;
}

.ui-hero-block > div:first-child span:nth-of-type(2) {
    width: 59%;
}

.ui-hero-block .ui-button {
    width: 4.6rem;
    height: 1.55rem;
    margin-top: 1rem;
    border: 0;
    border-radius: .38rem;
    background: linear-gradient(145deg, #3572e7, #164397);
}

.ui-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
    align-content: center;
    padding: .8rem;
    overflow: hidden;
    border: 1px solid rgba(87, 136, 227, .2);
    border-radius: .75rem;
    background:
        radial-gradient(circle at 70% 20%, rgba(47, 104, 220, .33), transparent 46%),
        rgba(4, 9, 18, .7);
}

.ui-visual em {
    display: block;
    height: 3.5rem;
    border: 1px solid rgba(165, 191, 232, .13);
    border-radius: .55rem;
    background: linear-gradient(145deg, rgba(26, 51, 92, .72), rgba(9, 18, 33, .86));
}

.ui-visual em:nth-child(2),
.ui-visual em:nth-child(3) {
    transform: translateY(.7rem);
}

.ui-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .65rem;
    margin-top: .75rem;
}

.ui-grid i {
    display: block;
    height: 90px;
    border: 1px solid var(--line);
    border-radius: .7rem;
    background:
        linear-gradient(rgba(136, 164, 207, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(136, 164, 207, .08) 1px, transparent 1px),
        rgba(11, 18, 29, .82);
    background-size: 16px 16px;
}

.stage-card {
    position: absolute;
    z-index: 2;
    min-width: 150px;
    padding: .75rem .9rem;
    border: 1px solid rgba(154, 185, 232, .19);
    border-radius: .78rem;
    background: rgba(10, 15, 24, .82);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .33), inset 0 1px rgba(255, 255, 255, .05);
    backdrop-filter: blur(16px);
}

.stage-card span,
.stage-card strong {
    display: block;
}

.stage-card span {
    color: #7fa9f6;
    font-size: .58rem;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.stage-card strong {
    margin-top: .25rem;
    font-size: .77rem;
}

.stage-card-a {
    top: 18%;
    right: -1.75rem;
}

.stage-card-b {
    bottom: 9%;
    left: -2rem;
}

.project-types {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-top: clamp(3.5rem, 8vw, 6.5rem);
    padding-top: 1.35rem;
    border-top: 1px solid var(--line);
}

.project-types > span {
    flex: 0 0 auto;
    color: var(--text-muted);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.project-types ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-types li {
    color: var(--text-soft);
    font-size: .82rem;
}

.project-types li::before {
    margin-right: .5rem;
    color: #4d7dce;
    content: "/";
}

.section-intro-block,
.portfolio-section,
.pricing-section,
.legal-page {
    border-top: 1px solid rgba(185, 204, 232, .07);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(170px, .36fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 7rem);
}

.split-heading > div {
    max-width: 800px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(3rem, 7vw, 6rem);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--line);
}

.benefit-card {
    position: relative;
    min-height: 270px;
    padding: clamp(1.5rem, 3vw, 2.35rem);
    background:
        linear-gradient(145deg, rgba(17, 25, 39, .93), rgba(8, 12, 20, .98));
    transition: background .25s ease;
}

.benefit-card::after {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 20% 0, rgba(37, 99, 235, .16), transparent 55%);
    content: "";
    transition: opacity .3s ease;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card > span,
.benefit-card h3,
.benefit-card p {
    position: relative;
    z-index: 1;
}

.benefit-card > span {
    display: block;
    margin-bottom: 4.2rem;
    color: #668cd3;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .68rem;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: .94rem;
}

.services-section {
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(8, 13, 23, .72), transparent);
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
    align-items: end;
    gap: clamp(2rem, 7vw, 7rem);
    margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.section-heading-row h2,
.testimonial-heading h2,
.method-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.services-list {
    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;
    grid-template-columns: 3rem 3rem minmax(180px, .62fr) minmax(280px, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.2rem);
    min-height: 135px;
    border-bottom: 1px solid var(--line);
    transition: background .22s ease, border-color .22s ease;
}

.service-row:hover {
    border-color: var(--line-strong);
    background: linear-gradient(90deg, rgba(31, 72, 142, .09), transparent 68%);
}

.service-index {
    color: #5279bb;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .65rem;
}

.service-icon {
    display: grid;
    width: 2.5rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(106, 151, 235, .2);
    border-radius: .65rem;
    background: rgba(28, 70, 143, .09);
    color: #75a2f2;
}

.service-icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

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

.service-row p {
    max-width: 610px;
    font-size: .92rem;
}

.service-row > a,
.text-link,
.footer-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: .45rem;
    color: #a7c3f9;
    font-size: .84rem;
    font-weight: 680;
    text-decoration: none;
    transition: color .2s ease, transform .2s var(--ease);
}

.service-row > a:hover,
.text-link:hover,
.footer-cta:hover {
    color: #fff;
    transform: translateX(3px);
}

.method-section {
    background:
        radial-gradient(circle at 10% 30%, rgba(31, 77, 157, .12), transparent 30rem),
        var(--bg-soft);
}

.method-shell {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.method-heading {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
    align-self: start;
}

.method-heading .section-copy {
    margin-top: 1.6rem;
}

.process-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.4rem;
    padding: 1.55rem 0;
    border-bottom: 1px solid var(--line);
}

.process-list li > span {
    padding-top: .25rem;
    color: #527abf;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .67rem;
}

.process-list h3 {
    margin-bottom: .45rem;
}

.process-list p {
    max-width: 600px;
    margin-bottom: 0;
    font-size: .92rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.2rem;
}

.project-card {
    grid-column: span 6;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(14, 21, 33, .97), rgba(7, 10, 17, .98));
    box-shadow: var(--shadow-soft);
    transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.project-card:first-child:nth-last-child(3),
.project-card:first-child:nth-last-child(3) ~ .project-card {
    grid-column: span 4;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(101, 149, 239, .3);
    box-shadow: 0 30px 75px rgba(0, 0, 0, .36);
}

.project-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(rgba(125, 157, 208, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 157, 208, .08) 1px, transparent 1px),
        #0a101b;
    background-size: 32px 32px;
}

.project-media img,
.project-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.project-card:hover .project-media img,
.project-card:hover .project-media video {
    transform: scale(1.035);
}

.project-content {
    padding: clamp(1.35rem, 3vw, 2rem);
}

.project-content > span {
    display: block;
    margin-bottom: 1rem;
    color: #668bcf;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .64rem;
    text-transform: uppercase;
}

.project-content p {
    font-size: .92rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
}

.project-tags li {
    padding: .28rem .52rem;
    border: 1px solid var(--line);
    border-radius: .4rem;
    background: rgba(255, 255, 255, .02);
    color: var(--text-muted);
    font-size: .65rem;
}

.testimonials-section {
    background: linear-gradient(180deg, transparent, rgba(8, 13, 23, .72));
}

.testimonial-layout {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.testimonial-heading {
    align-self: start;
}

.testimonial-list {
    display: grid;
    gap: 1rem;
}

.testimonial-card {
    margin: 0;
    padding: clamp(1.5rem, 3.2vw, 2.3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(16, 24, 38, .92), rgba(8, 12, 20, .96));
}

.rating {
    margin-bottom: 1.4rem;
    color: #77a5fa;
    font-size: .82rem;
    letter-spacing: .18em;
}

.rating span {
    color: rgba(119, 165, 250, .22);
}

.testimonial-card blockquote {
    margin-bottom: 1.7rem;
    color: var(--text);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.65;
}

.testimonial-card figcaption {
    display: grid;
    gap: .2rem;
}

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

.testimonial-card figcaption span {
    color: var(--text-muted);
    font-size: .75rem;
}

.pricing-section {
    overflow: hidden;
}

.pricing-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
    padding: clamp(2rem, 5vw, 4.2rem);
    overflow: hidden;
    border: 1px solid rgba(119, 158, 226, .2);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(16, 33, 59, .88), rgba(7, 11, 19, .98) 58%),
        var(--surface);
    box-shadow: var(--shadow);
}

.pricing-shell::before {
    position: absolute;
    width: 26rem;
    aspect-ratio: 1;
    right: -9rem;
    bottom: -13rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, .2);
    filter: blur(100px);
    content: "";
    pointer-events: none;
}

.pricing-signal {
    position: relative;
    z-index: 1;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(145, 178, 233, .17);
    border-radius: var(--radius);
    background: rgba(3, 7, 13, .45);
    box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}

.pricing-signal > span {
    color: #79a3ee;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pricing-signal > strong {
    display: block;
    margin: .9rem 0;
    font-size: clamp(1.65rem, 3vw, 2.7rem);
    letter-spacing: -.04em;
}

.pricing-signal p {
    margin-bottom: 1.7rem;
    font-size: .83rem;
}

.pricing-signal > div {
    display: flex;
    align-items: end;
    gap: .45rem;
    height: 4rem;
}

.pricing-signal i {
    flex: 1;
    border-radius: .25rem .25rem 0 0;
    background: linear-gradient(to top, rgba(35, 91, 195, .45), rgba(74, 132, 241, .88));
}

.pricing-signal i:nth-child(1) { height: 26%; }
.pricing-signal i:nth-child(2) { height: 44%; }
.pricing-signal i:nth-child(3) { height: 60%; }
.pricing-signal i:nth-child(4) { height: 82%; }
.pricing-signal i:nth-child(5) { height: 100%; }

.empty-state {
    padding: clamp(1.6rem, 4vw, 3rem);
    border: 1px dashed rgba(148, 178, 225, .23);
    border-radius: var(--radius);
    background: rgba(12, 18, 29, .62);
    text-align: left;
}

.empty-state-wide {
    grid-column: 1 / -1;
}

.empty-state > span {
    display: block;
    margin-bottom: 1.4rem;
    color: #6f98df;
    font-size: .67rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.empty-state p:last-child {
    margin-bottom: 0;
}

.pricing-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(.75rem, 3vw, 2rem);
    visibility: hidden;
    opacity: 0;
    transition: opacity .28s ease, visibility 0s linear .28s;
}

.pricing-modal.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 2, 6, .78);
    backdrop-filter: blur(12px);
}

.pricing-dialog {
    position: relative;
    width: min(100%, 1020px);
    max-height: min(880px, calc(100vh - 2rem));
    max-height: min(880px, calc(100dvh - 2rem));
    overflow: auto;
    overscroll-behavior: contain;
    transform: translateY(18px) scale(.985);
    border: 1px solid rgba(154, 185, 232, .22);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 80% 0, rgba(40, 98, 208, .13), transparent 23rem),
        #090d15;
    box-shadow: 0 40px 130px rgba(0, 0, 0, .62);
    transition: transform .3s var(--ease);
}

.pricing-modal.is-open .pricing-dialog {
    transform: translateY(0) scale(1);
}

.modal-header {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.3rem, 3vw, 2rem);
    border-bottom: 1px solid var(--line);
    background: rgba(9, 13, 21, .9);
    backdrop-filter: blur(16px);
}

.modal-header .eyebrow {
    margin-bottom: .65rem;
}

.modal-header h2 {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.icon-button {
    display: grid;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: .75rem;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.icon-button:hover {
    border-color: rgba(119, 161, 239, .45);
    background: rgba(40, 86, 171, .12);
    transform: rotate(3deg);
}

.icon-button span {
    font-size: 1.55rem;
    font-weight: 300;
    line-height: 1;
}

.simulator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
    gap: 1px;
    background: var(--line);
}

.simulator-controls,
.estimate-panel {
    background: #090d15;
}

.simulator-controls {
    padding: clamp(1.3rem, 3.5vw, 2.5rem);
}

.field-group label,
.field label,
.option-list legend {
    display: block;
    margin-bottom: .55rem;
    color: var(--text);
    font-size: .82rem;
    font-weight: 670;
}

.field label span {
    margin-left: .25rem;
    color: var(--text-muted);
    font-size: .67rem;
    font-weight: 500;
}

.field-group > p {
    min-height: 1.35em;
    margin: .55rem 0 0;
    color: var(--text-muted);
    font-size: .78rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(165, 187, 220, .17);
    border-radius: .72rem;
    background: #0c121d;
    color: var(--text);
    box-shadow: inset 0 1px rgba(255, 255, 255, .025);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
    padding: .72rem .85rem;
}

textarea {
    min-height: 150px;
    padding: .85rem;
    resize: vertical;
}

select {
    appearance: none;
    padding-right: 2.7rem;
    background-image:
        linear-gradient(45deg, transparent 50%, #8190a8 50%),
        linear-gradient(135deg, #8190a8 50%, transparent 50%);
    background-position:
        calc(100% - 1.05rem) calc(50% - .12rem),
        calc(100% - .72rem) calc(50% - .12rem);
    background-repeat: no-repeat;
    background-size: .36rem .36rem;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(143, 174, 225, .3);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(82, 139, 248, .8);
    outline: 0;
    background: #0e1624;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: rgba(255, 125, 143, .72);
    box-shadow: 0 0 0 3px rgba(255, 125, 143, .1);
}

.option-list {
    display: grid;
    gap: .7rem;
    margin: 1.7rem 0 0;
    padding: 1.5rem 0 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.option-list legend {
    float: left;
    width: 100%;
    margin-bottom: 1rem;
}

.option-line {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    padding: .85rem 1rem;
    border: 1px solid var(--line);
    border-radius: .78rem;
    background: rgba(255, 255, 255, .018);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.option-line:hover {
    border-color: rgba(121, 159, 225, .32);
    background: rgba(31, 76, 155, .07);
}

.option-line strong,
.option-line small {
    display: block;
}

.option-line strong {
    font-size: .84rem;
}

.option-line small {
    margin-top: .2rem;
    color: var(--text-muted);
    font-size: .7rem;
}

.switch-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.switch {
    position: relative;
    flex: 0 0 auto;
    width: 2.85rem;
    height: 1.6rem;
    border: 1px solid rgba(159, 183, 221, .2);
    border-radius: 2rem;
    background: #111a28;
    transition: border-color .2s ease, background .2s ease;
}

.switch::after {
    position: absolute;
    top: .2rem;
    left: .2rem;
    width: 1.08rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #8591a5;
    content: "";
    transition: transform .25s var(--ease), background .2s ease;
}

.switch-input:checked + .switch {
    border-color: rgba(78, 137, 248, .7);
    background: rgba(37, 99, 235, .48);
}

.switch-input:checked + .switch::after {
    transform: translateX(1.25rem);
    background: #fff;
}

.switch-input:focus-visible + .switch {
    outline: 3px solid rgba(93, 147, 255, .82);
    outline-offset: 3px;
}

.quantity-control {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: 42px 56px 42px;
    gap: .35rem;
}

.quantity-control button,
.quantity-control input {
    min-height: 42px;
    padding: 0;
    text-align: center;
}

.quantity-control button {
    border: 1px solid var(--line-strong);
    border-radius: .58rem;
    background: rgba(255, 255, 255, .035);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.quantity-control button:hover {
    border-color: rgba(113, 157, 240, .45);
    background: rgba(37, 99, 235, .12);
}

.quantity-control input {
    appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
    appearance: none;
}

.estimate-panel {
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100%;
    padding: clamp(1.5rem, 3.5vw, 2.5rem);
    background:
        radial-gradient(circle at 80% 5%, rgba(37, 99, 235, .15), transparent 18rem),
        #080c14;
}

.estimate-panel > span,
.estimate-panel > strong,
.estimate-panel > small {
    display: block;
}

.estimate-panel > span {
    color: #87a9e9;
    font-size: .67rem;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.estimate-panel > strong {
    margin: 1rem 0 1.6rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -.05em;
}

.estimate-panel > div {
    margin-bottom: 1.3rem;
    padding: .9rem;
    border: 1px solid var(--line);
    border-radius: .7rem;
    background: rgba(255, 255, 255, .025);
}

.estimate-panel > div span,
.estimate-panel > div b {
    display: block;
}

.estimate-panel > div span {
    color: var(--text-muted);
    font-size: .7rem;
}

.estimate-panel > div b {
    margin-top: .25rem;
    color: #dce8ff;
    font-size: 1.2rem;
}

.estimate-panel > p {
    min-height: 3em;
    margin-bottom: 1.3rem;
    color: var(--text-muted);
    font-size: .75rem;
}

.estimate-panel .button {
    width: 100%;
}

.estimate-panel > small {
    margin-top: 1rem;
    color: #657086;
    font-size: .66rem;
    line-height: 1.55;
}

.contact-section {
    padding-top: clamp(4.5rem, 9vw, 8rem);
    background:
        radial-gradient(circle at 5% 80%, rgba(32, 84, 177, .12), transparent 30rem),
        var(--bg-soft);
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 9vw, 9rem);
}

.contact-copy {
    align-self: start;
}

.contact-principles {
    display: grid;
    gap: 1rem;
    margin-top: 2.4rem;
}

.contact-principles div {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.contact-principles dt {
    color: #779ee6;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-principles dd {
    margin: 0;
    color: var(--text-soft);
    font-size: .84rem;
}

.contact-form {
    position: relative;
    padding: clamp(1.4rem, 4vw, 2.6rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(16, 24, 38, .92), rgba(7, 11, 18, .98));
    box-shadow: var(--shadow-soft);
}

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

.field {
    margin-bottom: 1.15rem;
}

.field-help,
.field-error {
    display: block;
    margin-top: .45rem;
    font-size: .7rem;
    line-height: 1.5;
}

.field-help {
    color: var(--text-muted);
}

.field-error {
    color: #ff9baa;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent-line {
    display: grid;
    grid-template-columns: 1.15rem 1fr;
    gap: .8rem;
    align-items: start;
    color: var(--text-soft);
    font-size: .74rem;
    cursor: pointer;
}

.consent-line input {
    width: 1.1rem;
    min-height: auto;
    height: 1.1rem;
    margin: .16rem 0 0;
    accent-color: var(--blue);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}

.form-submit p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: .67rem;
}

.contact-form.is-submitting {
    opacity: .76;
}

.contact-form.is-submitting::after {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 1.1rem;
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, .2);
    border-top-color: #fff;
    border-radius: 50%;
    content: "";
    animation: spin .7s linear infinite;
}

.site-footer {
    position: relative;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 0, rgba(22, 68, 145, .12), transparent 30rem),
        #05080d;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(130px, .55fr));
    gap: clamp(2rem, 6vw, 6rem);
    padding-block: clamp(3.5rem, 7vw, 6rem);
}

.footer-brand {
    max-width: 390px;
}

.footer-brand > p {
    margin: 1.4rem 0 .9rem;
    font-size: .87rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .65rem;
}

.footer-links h2 {
    margin-bottom: .5rem;
    color: var(--text-muted);
    font-size: .67rem;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-links a,
.footer-links span {
    color: var(--text-soft);
    font-size: .78rem;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-links a {
    transition: color .2s ease, transform .2s var(--ease);
}

.footer-links a:hover {
    color: var(--text);
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: .7rem;
}

.footer-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

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

.legal-page {
    min-height: 72vh;
    padding-top: calc(var(--header-height) + clamp(5rem, 10vw, 8rem));
}

.legal-page > .container > h1,
.legal-hero h1 {
    max-width: 800px;
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
}

.legal-page > .container > .section-copy,
.legal-hero .section-copy {
    max-width: 720px;
}

.legal-list {
    margin-top: 3.5rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 15, 24, .7);
}

.legal-row {
    display: grid;
    grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
}

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

.legal-row dt {
    color: var(--text-muted);
    font-size: .77rem;
}

.legal-row dd {
    margin: 0;
    color: var(--text);
    overflow-wrap: anywhere;
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    margin-top: clamp(3rem, 7vw, 6rem);
}

.policy-summary {
    align-self: start;
}

.text-card {
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 18, 29, .72);
}

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

.text-card p,
.text-card li {
    color: var(--text-soft);
    font-size: .82rem;
}

.policy-content {
    min-width: 0;
    color: var(--text-soft);
}

.policy-content h2 {
    margin-top: 2.8rem;
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    margin-top: 2rem;
    font-size: 1.15rem;
}

.policy-content a {
    color: #94b7f7;
}

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

.policy-content th,
.policy-content td {
    min-width: 150px;
    padding: .8rem;
    border: 1px solid var(--line);
    text-align: left;
}

.error-page {
    display: grid;
    min-height: 100svh;
    place-items: center;
    padding: 2rem;
    background:
        radial-gradient(circle at 50% 20%, rgba(30, 83, 175, .18), transparent 33rem),
        var(--bg);
}

.error-panel {
    width: min(100%, 720px);
    padding: clamp(2rem, 6vw, 4.5rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(9, 14, 23, .9);
    box-shadow: var(--shadow);
    text-align: center;
}

.error-code {
    display: block;
    color: #6895ea;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .75rem;
    letter-spacing: .18em;
}

.error-panel h1 {
    margin-top: 1.3rem;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.error-panel p {
    max-width: 520px;
    margin-inline: auto;
}

.error-panel .button {
    margin-top: 1rem;
}

.flash-message {
    width: min(calc(100% - 2rem), 860px);
    margin: calc(var(--header-height) + 2.8rem) auto -2rem;
    padding: .9rem 1rem;
    border: 1px solid var(--line);
    border-radius: .75rem;
    background: rgba(12, 18, 28, .92);
    box-shadow: var(--shadow-soft);
    font-size: .84rem;
}

.flash-message.is-success {
    border-color: rgba(88, 214, 162, .36);
    color: #b9f1d9;
}

.flash-message.is-error {
    border-color: rgba(255, 125, 143, .4);
    color: #ffc0ca;
}

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

[data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }

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

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

@media (max-width: 1100px) {
    .main-nav a {
        padding-inline: .58rem;
        font-size: .81rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
        gap: 3rem;
    }

    .browser-body {
        min-height: 360px;
    }

    .service-row {
        grid-template-columns: 2.5rem 2.6rem minmax(170px, .65fr) minmax(220px, 1fr) auto;
        gap: 1rem;
    }

    .project-card:first-child:nth-last-child(3),
    .project-card:first-child:nth-last-child(3) ~ .project-card {
        grid-column: span 6;
    }

    .footer-main {
        grid-template-columns: minmax(250px, 1.3fr) repeat(2, minmax(140px, .6fr));
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        top: .65rem;
    }

    .header-shell {
        width: min(calc(100% - 1.2rem), 760px);
        min-height: var(--header-height);
        padding: .45rem .5rem .45rem .75rem;
        border-radius: 1rem;
    }

    .brand-symbol {
        width: 2.45rem;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + .5rem);
        right: 0;
        left: 0;
        display: grid;
        gap: .2rem;
        max-height: calc(100svh - var(--header-height) - 2rem);
        padding: .6rem;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px) scale(.985);
        border: 1px solid var(--line-strong);
        border-radius: 1rem;
        background: rgba(6, 9, 15, .97);
        box-shadow: var(--shadow);
        transition: opacity .25s ease, transform .25s var(--ease), visibility 0s linear .25s;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
        transition-delay: 0s;
    }

    .main-nav a {
        justify-content: flex-start;
        min-height: 48px;
        padding-inline: .9rem;
    }

    .main-nav .nav-cta {
        justify-content: center;
        margin: .3rem 0 0;
    }

    .no-js .nav-toggle {
        display: none;
    }

    .no-js .main-nav {
        position: static;
        display: flex;
        max-height: none;
        padding: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .no-js .main-nav a:not(.nav-cta) {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 5.8rem);
    }

    .hero-grid,
    .method-shell,
    .testimonial-layout,
    .pricing-shell,
    .contact-shell,
    .policy-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-stage {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .browser-frame {
        transform: none;
    }

    .stage-card-a {
        right: .7rem;
    }

    .stage-card-b {
        left: .7rem;
    }

    .split-heading,
    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

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

    .benefit-card {
        min-height: auto;
    }

    .benefit-card > span {
        margin-bottom: 2.3rem;
    }

    .service-row {
        grid-template-columns: 2.5rem 2.6rem minmax(0, 1fr) auto;
        padding-block: 1.2rem;
    }

    .service-row p {
        grid-column: 3 / -1;
        padding-right: 4rem;
    }

    .method-heading {
        position: static;
    }

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

    .project-card,
    .project-card:first-child:nth-last-child(3),
    .project-card:first-child:nth-last-child(3) ~ .project-card {
        grid-column: auto;
    }

    .testimonial-heading {
        max-width: 720px;
    }

    .pricing-shell {
        padding: clamp(1.5rem, 5vw, 3rem);
    }

    .pricing-signal {
        max-width: 620px;
    }

    .contact-copy {
        max-width: 720px;
    }

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

    .estimate-panel {
        position: static;
        min-height: auto;
        border-top: 1px solid var(--line);
    }

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

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

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

    .narrow {
        width: min(calc(100% - 1.4rem), 920px);
    }

    h1 {
        font-size: clamp(2.45rem, 13.5vw, 4rem);
    }

    h2 {
        font-size: clamp(1.9rem, 9.5vw, 3rem);
    }

    .section {
        padding-block: clamp(4.5rem, 16vw, 7rem);
    }

    .brand-copy small {
        display: none;
    }

    .hero-actions,
    .pricing-actions {
        align-items: stretch;
    }

    .hero-actions .button,
    .pricing-actions .button {
        flex: 1 1 100%;
    }

    .hero-assurances {
        display: grid;
        gap: .6rem;
    }

    .hero-stage {
        margin-top: 1rem;
    }

    .browser-bar {
        grid-template-columns: auto 1fr;
    }

    .browser-status {
        display: none;
    }

    .browser-body {
        grid-template-columns: 2.8rem 1fr;
        min-height: 300px;
    }

    .ui-canvas {
        padding: .65rem;
    }

    .ui-toolbar span {
        display: none;
    }

    .ui-toolbar {
        justify-content: flex-end;
    }

    .ui-hero-block {
        grid-template-columns: 1fr;
        min-height: 185px;
    }

    .ui-visual {
        display: none;
    }

    .ui-grid i {
        height: 62px;
    }

    .stage-card {
        min-width: 130px;
        padding: .6rem .7rem;
    }

    .stage-card-a {
        top: 14%;
        right: -.2rem;
    }

    .stage-card-b {
        bottom: 6%;
        left: -.2rem;
    }

    .project-types {
        display: block;
    }

    .project-types ul {
        margin-top: .8rem;
    }

    .service-row {
        grid-template-columns: 2.2rem 2.5rem minmax(0, 1fr);
        gap: .8rem;
    }

    .service-row > a {
        grid-column: 3;
        justify-self: start;
    }

    .service-row p {
        grid-column: 3;
        padding-right: 0;
    }

    .process-list li {
        grid-template-columns: 2.2rem 1fr;
        gap: .8rem;
    }

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

    .pricing-modal {
        align-items: end;
        padding: 0;
    }

    .pricing-dialog {
        max-height: calc(100vh - 2.5rem);
        max-height: calc(100dvh - 2.5rem);
        transform: scale(.985);
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 1.35rem 1.35rem 0 0;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.55rem;
    }

    .simulator-controls,
    .estimate-panel {
        padding: 1rem;
    }

    .option-line {
        align-items: flex-start;
        min-height: 68px;
    }

    .option-quantity {
        flex-direction: column;
    }

    .quantity-control {
        width: 100%;
        grid-template-columns: 48px 1fr 48px;
    }

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

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

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

    .form-submit p {
        order: -1;
    }

    .contact-principles div {
        grid-template-columns: 1fr;
        gap: .3rem;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 1.2rem;
    }

    .legal-row {
        grid-template-columns: 1fr;
        gap: .3rem;
    }
}

@media (max-width: 390px) {
    .header-shell {
        width: calc(100% - .8rem);
    }

    .brand-copy strong {
        font-size: .91rem;
    }

    .browser-frame {
        border-radius: 1rem;
    }

    .stage-card {
        position: static;
        display: inline-block;
        min-width: 0;
        margin-top: .6rem;
    }

    .stage-card-b {
        float: right;
    }

    .project-types ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .4rem;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .site-header {
        top: .3rem;
    }

    .main-nav {
        max-height: calc(100svh - 4.8rem);
    }

    .pricing-dialog {
        max-height: calc(100vh - 1rem);
        max-height: calc(100dvh - 1rem);
    }

    .modal-header {
        padding-block: .8rem;
    }
}

@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;
        transition-delay: 0s !important;
    }

    .site-modal.is-open .callback-dialog,
    .site-modal.is-open .callback-dialog * {
        visibility: visible !important;
    }

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

@media (forced-colors: active) {
    .brand-symbol,
    .button,
    .icon-button,
    input,
    select,
    textarea,
    .option-line,
    .project-card,
    .contact-form {
        border: 1px solid CanvasText;
    }
}

html {
    scrollbar-width: thin;
    scrollbar-color: #315caa #070a10;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #070a10;
}

::-webkit-scrollbar-thumb {
    border: 3px solid #070a10;
    border-radius: 999px;
    background: linear-gradient(180deg, #284f95, #183565);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #3970cb, #24519a);
}

body {
    background: #05070b;
}

main {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

main::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 9% 9%, rgba(30, 80, 164, .13), transparent 31rem),
        radial-gradient(circle at 92% 24%, rgba(33, 92, 201, .1), transparent 32rem),
        radial-gradient(circle at 18% 52%, rgba(24, 67, 143, .11), transparent 34rem),
        radial-gradient(circle at 84% 72%, rgba(30, 83, 173, .11), transparent 30rem),
        linear-gradient(180deg, #05070b 0%, #070a11 24%, #05080e 48%, #080c14 75%, #060910 100%);
    content: "";
}

.section,
.hero {
    isolation: isolate;
}

.section::before {
    position: absolute;
    z-index: -1;
    inset: -4rem 0;
    pointer-events: none;
    content: "";
}

.section-intro-block::before {
    background: radial-gradient(ellipse at 72% 42%, rgba(35, 85, 178, .09), transparent 45%);
}

.services-section,
.method-section,
.contact-section {
    background: transparent;
}

.services-section::before {
    background:
        radial-gradient(ellipse at 12% 35%, rgba(31, 82, 176, .14), transparent 38%),
        radial-gradient(ellipse at 92% 72%, rgba(23, 60, 126, .1), transparent 36%);
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.method-section::before {
    background:
        linear-gradient(180deg, transparent, rgba(8, 13, 23, .64) 18%, rgba(8, 13, 23, .64) 82%, transparent),
        radial-gradient(ellipse at 85% 48%, rgba(39, 91, 184, .12), transparent 42%);
    mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.portfolio-section::before,
.testimonials-section::before,
.pricing-section::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(24, 62, 127, .07), transparent 58%);
}

.contact-section::before {
    background:
        radial-gradient(ellipse at 8% 58%, rgba(31, 83, 177, .14), transparent 38%),
        linear-gradient(180deg, transparent, rgba(8, 13, 22, .72) 28%, rgba(8, 13, 22, .86));
    mask-image: linear-gradient(to bottom, transparent, #000 14%);
}

.ambient-grid {
    opacity: .11;
    background-size: 84px 84px;
    mask-image: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, .7) 38%, transparent 94%);
}

.ambient-glow-c {
    top: 68%;
    left: 18%;
    width: 44rem;
    background: #123f82;
    opacity: .11;
}

.ambient-ribbon {
    position: absolute;
    width: 62rem;
    height: 14rem;
    border: 1px solid rgba(81, 131, 222, .1);
    border-radius: 50%;
    filter: blur(.2px);
    opacity: .36;
}

.ambient-ribbon-a {
    top: 32%;
    right: -31rem;
    transform: rotate(-24deg);
    box-shadow: 0 0 90px rgba(37, 99, 235, .05);
}

.ambient-ribbon-b {
    bottom: 7%;
    left: -34rem;
    transform: rotate(19deg);
    box-shadow: 0 0 100px rgba(37, 99, 235, .05);
}

.nav-panel-head,
.nav-panel-foot {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .1rem;
}

.main-nav .nav-link-index,
.main-nav a > i {
    display: none;
}

.main-nav a[aria-current] {
    color: var(--text);
    background: rgba(255, 255, 255, .045);
}

.main-nav a[aria-current]::after {
    transform: scaleX(1);
}

.service-background {
    position: absolute;
    z-index: -1;
    inset: 5% 0 0;
    overflow: hidden;
    pointer-events: none;
}

.service-background::before {
    position: absolute;
    top: 8%;
    left: 50%;
    width: min(92vw, 1180px);
    height: 70%;
    transform: translateX(-50%);
    border: 1px solid rgba(112, 151, 218, .06);
    border-radius: 48%;
    background: radial-gradient(ellipse, rgba(31, 79, 164, .08), transparent 68%);
    content: "";
}

.service-background span {
    position: absolute;
    width: 32rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(84, 132, 218, .18), transparent);
}

.service-background span:nth-child(1) {
    top: 18%;
    left: -8rem;
    transform: rotate(24deg);
}

.service-background span:nth-child(2) {
    top: 54%;
    right: -9rem;
    transform: rotate(-20deg);
}

.service-background span:nth-child(3) {
    bottom: 11%;
    left: 26%;
    width: 48rem;
    transform: rotate(4deg);
}

.services-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.service-card {
    position: relative;
    display: grid;
    min-height: 390px;
    padding: clamp(1.35rem, 3vw, 2rem);
    overflow: hidden;
    border: 1px solid rgba(157, 185, 230, .13);
    border-radius: 1.45rem;
    background:
        radial-gradient(circle at 100% 0, rgba(43, 103, 218, .12), transparent 19rem),
        linear-gradient(145deg, rgba(15, 23, 37, .95), rgba(7, 11, 18, .98));
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
    transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.service-card::after {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, .08), transparent 42%);
    content: "";
    transition: opacity .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(104, 152, 240, .31);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32), 0 0 45px rgba(20, 67, 157, .08);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-card .service-index {
    color: #658bd0;
    font-size: .72rem;
    letter-spacing: .14em;
}

.service-card .service-icon {
    width: 3rem;
    border-radius: .85rem;
    background: linear-gradient(145deg, rgba(43, 100, 204, .17), rgba(13, 25, 45, .7));
    box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}

.service-visual {
    position: relative;
    width: 100%;
    height: 105px;
    margin: 1.2rem 0 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(139, 170, 222, .1);
    border-radius: 1rem;
    background:
        linear-gradient(rgba(91, 128, 190, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 128, 190, .055) 1px, transparent 1px),
        rgba(4, 9, 17, .55);
    background-size: 24px 24px;
}

.service-visual::before,
.service-visual::after {
    position: absolute;
    border-radius: 999px;
    content: "";
}

.service-visual::before {
    top: 22px;
    left: 20px;
    width: 38%;
    height: 8px;
    background: linear-gradient(90deg, #376cc8, rgba(55, 108, 200, .08));
    box-shadow: 0 20px rgba(113, 145, 199, .12), 0 40px rgba(113, 145, 199, .07);
}

.service-visual::after {
    top: 20px;
    right: 20px;
    width: 70px;
    height: 64px;
    border: 1px solid rgba(93, 143, 230, .18);
    border-radius: .7rem;
    background: radial-gradient(circle at 50% 35%, rgba(64, 123, 230, .25), transparent 35%), rgba(16, 31, 55, .55);
}

.service-visual i {
    position: absolute;
    bottom: 18px;
    width: 8px;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, rgba(34, 81, 166, .45), #5488e3);
    transform-origin: bottom;
    animation: service-bars 4.8s ease-in-out infinite alternate;
}

.service-visual i:nth-child(1) {
    right: 110px;
    height: 21px;
}

.service-visual i:nth-child(2) {
    right: 96px;
    height: 36px;
    animation-delay: -.8s;
}

.service-visual i:nth-child(3) {
    right: 82px;
    height: 27px;
    animation-delay: -1.5s;
}

.service-visual i:nth-child(4) {
    right: 68px;
    height: 45px;
    animation-delay: -2.3s;
}

.service-visual span {
    position: absolute;
    right: 52px;
    bottom: 16px;
    width: 78px;
    height: 1px;
    transform: rotate(-17deg);
    transform-origin: right;
    background: linear-gradient(90deg, transparent, #72a0ef);
}

.service-card-copy {
    align-self: end;
}

.service-card-copy h3 {
    max-width: 510px;
    margin-bottom: .8rem;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.service-card-copy p {
    max-width: 590px;
    margin-bottom: 0;
    font-size: .93rem;
}

.service-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: #aec8f8;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease;
}

.service-card > a span:last-child {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(126, 167, 239, .2);
    border-radius: 50%;
    transition: transform .25s var(--ease), background .25s ease;
}

.service-card > a:hover {
    border-color: rgba(123, 162, 230, .27);
    color: #fff;
}

.service-card > a:hover span:last-child {
    transform: translate(2px, -2px);
    background: rgba(37, 99, 235, .15);
}

.method-shell {
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    align-items: start;
}

.method-heading {
    min-height: 580px;
}

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

.method-orbit {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 1;
    margin-top: 3rem;
    border: 1px solid rgba(104, 151, 232, .1);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(35, 90, 190, .13), transparent 58%);
}

.method-orbit::before,
.method-orbit::after {
    position: absolute;
    inset: 18%;
    border: 1px dashed rgba(104, 151, 232, .14);
    border-radius: 50%;
    content: "";
}

.method-orbit::after {
    inset: 38%;
    border-style: solid;
    background: radial-gradient(circle, rgba(67, 125, 232, .25), rgba(18, 49, 100, .12));
    box-shadow: 0 0 45px rgba(35, 92, 198, .16);
}

.method-orbit > span {
    position: absolute;
    inset: 8%;
    border-top: 1px solid rgba(101, 151, 240, .28);
    border-right: 1px solid transparent;
    border-radius: 50%;
    animation: orbit-spin 17s linear infinite;
}

.method-orbit i {
    position: absolute;
    z-index: 1;
    width: 9px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #5c91ef;
    box-shadow: 0 0 18px rgba(79, 134, 255, .65);
}

.method-orbit i:nth-child(2) {
    top: 16%;
    left: 25%;
}

.method-orbit i:nth-child(3) {
    top: 55%;
    right: 8%;
}

.method-orbit i:nth-child(4) {
    bottom: 12%;
    left: 34%;
}

.process-map {
    position: relative;
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-map::before {
    position: absolute;
    top: 3rem;
    bottom: 3rem;
    left: 35px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(86, 137, 225, .32) 10%, rgba(86, 137, 225, .18) 90%, transparent);
    content: "";
}

.process-map li {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.process-node {
    position: relative;
    z-index: 1;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border: 1px solid rgba(111, 159, 242, .22);
    border-radius: 1.1rem;
    background: linear-gradient(145deg, #111d30, #09101b);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .05);
    color: #85aef5;
}

.process-node > span {
    position: absolute;
    top: .42rem;
    right: .48rem;
    color: #5279bd;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .55rem;
}

.process-node svg {
    width: 1.45rem;
    height: 1.45rem;
}

.process-card {
    position: relative;
    min-height: 145px;
    padding: 1.45rem 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(152, 182, 229, .12);
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(15, 23, 36, .92), rgba(8, 12, 19, .96));
    transition: transform .3s var(--ease), border-color .3s ease, background .3s ease;
}

.process-card::after {
    position: absolute;
    top: -55%;
    right: -8%;
    width: 14rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .12), transparent 68%);
    content: "";
}

.process-map li:hover .process-card {
    transform: translateX(5px);
    border-color: rgba(100, 149, 236, .28);
    background: linear-gradient(135deg, rgba(18, 30, 50, .96), rgba(8, 12, 19, .98));
}

.process-card > span {
    display: block;
    margin-bottom: .5rem;
    color: #668fd7;
    font-size: .62rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.process-card h3 {
    margin-bottom: .55rem;
}

.process-card p {
    max-width: 640px;
    margin-bottom: 0;
    font-size: .9rem;
}

.contact-background {
    position: absolute;
    z-index: -1;
    inset: 8% 0 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-background > span {
    position: absolute;
    right: 5%;
    bottom: 6%;
    width: 26rem;
    aspect-ratio: 1;
    border: 1px solid rgba(73, 125, 219, .1);
    border-radius: 50%;
    box-shadow: inset 0 0 90px rgba(25, 73, 159, .05), 0 0 120px rgba(25, 73, 159, .04);
}

.contact-background > i {
    position: absolute;
    width: 36rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(85, 139, 234, .16), transparent);
}

.contact-background > i:nth-child(2) {
    top: 22%;
    left: -10rem;
    transform: rotate(18deg);
}

.contact-background > i:nth-child(3) {
    right: -10rem;
    bottom: 16%;
    transform: rotate(-21deg);
}

.form-intro {
    display: grid;
    gap: .35rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
}

.form-intro > span {
    color: #7198dd;
    font-size: .65rem;
    font-weight: 760;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.form-intro > strong {
    max-width: 600px;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.35;
}

.callback-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    margin-top: 2.2rem;
    padding: 1.15rem;
    border: 1px solid rgba(127, 168, 238, .18);
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at 0 0, rgba(47, 111, 224, .14), transparent 13rem),
        rgba(12, 19, 31, .72);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .2);
}

.callback-card-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 1px solid rgba(111, 160, 243, .24);
    border-radius: .9rem;
    background: rgba(37, 99, 235, .12);
    color: #82adf8;
}

.callback-card-icon svg {
    width: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callback-card > div:nth-child(2) {
    min-width: 0;
}

.callback-card > div:nth-child(2) > span {
    display: block;
    margin-bottom: .25rem;
    color: #7098df;
    font-size: .64rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.callback-card strong {
    display: block;
    margin-bottom: .4rem;
    line-height: 1.35;
}

.callback-card p {
    margin-bottom: 0;
    font-size: .8rem;
}

.callback-card .button {
    grid-column: 1 / -1;
    width: 100%;
}

.consent-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.4rem minmax(0, 1fr);
    align-items: start;
    gap: .85rem;
    min-height: 76px;
    padding: 1rem;
    border: 1px solid rgba(148, 178, 223, .14);
    border-radius: 1rem;
    background: rgba(7, 12, 20, .58);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.consent-card:hover {
    border-color: rgba(116, 160, 237, .28);
    background: rgba(13, 22, 37, .74);
}

.consent-card:has(input:focus-visible) {
    outline: 3px solid rgba(93, 147, 255, .82);
    outline-offset: 3px;
}

.consent-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.consent-check {
    display: grid;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: .08rem;
    place-items: center;
    border: 1px solid rgba(145, 178, 231, .32);
    border-radius: .42rem;
    background: #090f19;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.consent-check svg {
    width: .9rem;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(.65);
    transition: opacity .18s ease, transform .22s var(--ease);
}

.consent-card input:checked + .consent-check {
    border-color: #4f86ff;
    background: linear-gradient(145deg, #3473e9, #1f56bb);
    box-shadow: 0 0 24px rgba(37, 99, 235, .25);
}

.consent-card input:checked + .consent-check svg {
    opacity: 1;
    transform: scale(1);
}

.consent-card input[aria-invalid="true"] + .consent-check,
.consent-card:has(input[aria-invalid="true"]) {
    border-color: rgba(255, 125, 143, .58);
}

.consent-copy {
    display: grid;
    gap: .22rem;
}

.consent-copy strong {
    font-size: .82rem;
    line-height: 1.35;
}

.consent-copy small {
    color: var(--text-muted);
    font-size: .7rem;
    line-height: 1.55;
}

.consent-card.compact {
    min-height: 68px;
}

.contact-form.is-submitting,
.callback-form.is-submitting {
    opacity: .76;
    pointer-events: none;
}

.site-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    padding: clamp(.7rem, 3vw, 2rem);
    place-items: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .28s ease, visibility 0s linear .28s;
}

.site-modal.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.site-modal .modal-backdrop {
    background: rgba(0, 2, 7, .84);
    backdrop-filter: blur(16px) saturate(115%);
    -webkit-backdrop-filter: blur(16px) saturate(115%);
}

.site-modal .pricing-dialog,
.callback-dialog {
    position: relative;
    width: min(100%, 1060px);
    max-height: min(900px, calc(100dvh - 2rem));
    overflow: auto;
    overscroll-behavior: contain;
    transform: scale(.985);
    border: 1px solid rgba(154, 185, 232, .22);
    border-radius: 1.65rem;
    background:
        radial-gradient(circle at 88% 0, rgba(43, 102, 213, .14), transparent 26rem),
        #090d15;
    box-shadow: 0 40px 140px rgba(0, 0, 0, .68);
    transition: transform .32s var(--ease);
    scrollbar-width: thin;
}

.site-modal.is-open .pricing-dialog,
.site-modal.is-open .callback-dialog {
    transform: translateY(0) scale(1);
}

.callback-dialog {
    display: grid;
    grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
    width: min(100%, 1080px);
    overflow: hidden;
}

.callback-visual {
    position: relative;
    display: grid;
    min-height: 640px;
    place-items: center;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background:
        linear-gradient(rgba(104, 145, 215, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(104, 145, 215, .055) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(45, 103, 213, .22), transparent 48%),
        #080d16;
    background-size: 34px 34px, 34px 34px, auto, auto;
}

.callback-visual::before,
.callback-visual::after {
    position: absolute;
    border: 1px solid rgba(94, 145, 235, .15);
    border-radius: 50%;
    content: "";
}

.callback-visual::before {
    width: 310px;
    aspect-ratio: 1;
    animation: callback-pulse 4.2s ease-in-out infinite;
}

.callback-visual::after {
    width: 220px;
    aspect-ratio: 1;
    border-style: dashed;
    animation: orbit-spin 24s linear infinite reverse;
}

.callback-visual > svg {
    position: relative;
    z-index: 2;
    width: 4.2rem;
    padding: 1.25rem;
    overflow: visible;
    border: 1px solid rgba(118, 164, 242, .3);
    border-radius: 1.25rem;
    background: linear-gradient(145deg, rgba(50, 112, 222, .28), rgba(15, 38, 77, .78));
    box-shadow: 0 20px 70px rgba(14, 55, 139, .35), inset 0 1px rgba(255, 255, 255, .1);
    fill: none;
    stroke: #c5d9ff;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.callback-wave {
    position: absolute;
    width: 520px;
    height: 130px;
    border-top: 1px solid rgba(77, 135, 238, .22);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.callback-visual > div {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    height: 50px;
    align-items: end;
    gap: .35rem;
}

.callback-visual > div i {
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(to top, #2658b1, #70a0f5);
    animation: callback-bars 1.8s ease-in-out infinite alternate;
}

.callback-visual > div i:nth-child(1) {
    height: 22px;
}

.callback-visual > div i:nth-child(2) {
    height: 43px;
    animation-delay: -.6s;
}

.callback-visual > div i:nth-child(3) {
    height: 31px;
    animation-delay: -1.1s;
}

.callback-content {
    min-width: 0;
    max-height: min(900px, calc(100dvh - 2rem));
    overflow: auto;
    scrollbar-width: thin;
}

.callback-content .modal-header {
    position: static;
    background: transparent;
}

.callback-content .modal-header p:last-child {
    max-width: 620px;
    margin: .8rem 0 0;
    color: var(--text-soft);
    font-size: .85rem;
}

.callback-form {
    padding: clamp(1.2rem, 3vw, 2rem);
}

@keyframes service-bars {
    0% { transform: scaleY(.72); opacity: .68; }
    100% { transform: scaleY(1.08); opacity: 1; }
}

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

@keyframes callback-pulse {
    0%, 100% { transform: scale(.94); opacity: .5; }
    50% { transform: scale(1.06); opacity: .9; }
}

@keyframes callback-bars {
    from { transform: scaleY(.58); opacity: .65; }
    to { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1100px) {
    .services-map {
        gap: .9rem;
    }

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

    .callback-dialog {
        grid-template-columns: minmax(210px, .55fr) minmax(0, 1.45fr);
    }
}

@media (max-width: 900px) {
    .header-shell {
        position: relative;
    }

    .main-nav {
        position: fixed;
        z-index: 1200;
        inset: .6rem;
        top: .6rem;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 0;
        max-height: none;
        padding: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px) scale(.975);
        border: 1px solid rgba(149, 182, 233, .22);
        border-radius: 1.35rem;
        background:
            radial-gradient(circle at 100% 0, rgba(42, 104, 220, .18), transparent 23rem),
            rgba(6, 9, 15, .985);
        box-shadow: 0 35px 110px rgba(0, 0, 0, .72);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        transition: opacity .26s ease, transform .3s var(--ease), visibility 0s linear .3s;
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: none;
        transition-delay: 0s;
    }

    .nav-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        min-height: 84px;
        padding: 1rem 1rem 1rem 1.2rem;
        border-bottom: 1px solid var(--line);
    }

    .nav-panel-head > div {
        display: grid;
        gap: .15rem;
    }

    .nav-panel-head span {
        color: #6e96de;
        font-size: .61rem;
        font-weight: 760;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

    .nav-panel-head strong {
        font-size: 1.05rem;
    }

    .nav-panel-close {
        display: grid;
        width: 48px;
        height: 48px;
        padding: 0;
        place-items: center;
        border: 1px solid var(--line-strong);
        border-radius: .85rem;
        background: rgba(255, 255, 255, .035);
        font-size: 1.55rem;
        cursor: pointer;
    }

    .nav-links {
        display: grid;
        align-content: start;
        gap: .35rem;
        padding: 1rem;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
    }

    .main-nav a,
    .main-nav .nav-cta {
        display: grid;
        grid-template-columns: 2.4rem minmax(0, 1fr) auto;
        gap: .75rem;
        justify-content: stretch;
        min-height: 62px;
        margin: 0;
        padding: .65rem .9rem;
        border: 1px solid transparent;
        border-radius: 1rem;
        background: rgba(255, 255, 255, .018);
        color: var(--text-soft);
        font-size: .98rem;
        text-align: left;
    }

    .main-nav a:hover,
    .main-nav a[aria-current],
    .main-nav .nav-cta:hover {
        transform: none;
        border-color: rgba(114, 158, 235, .18);
        background: rgba(30, 70, 141, .14);
        color: #fff;
    }

    .main-nav .nav-cta {
        border-color: rgba(94, 145, 235, .18);
        background: linear-gradient(135deg, rgba(32, 81, 176, .2), rgba(16, 35, 70, .24));
        box-shadow: none;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav .nav-link-index,
    .main-nav a > i {
        display: block;
    }

    .main-nav .nav-link-index {
        color: #527bc2;
        font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
        font-size: .63rem;
    }

    .main-nav a > i {
        color: #7199e0;
        font-style: normal;
        transition: transform .22s var(--ease);
    }

    .main-nav a:hover > i {
        transform: translate(2px, -2px);
    }

    .nav-panel-foot {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border-top: 1px solid var(--line);
        background: rgba(4, 8, 14, .72);
    }

    .nav-panel-foot > span {
        color: var(--text-muted);
        font-size: .72rem;
    }

    .nav-panel-foot button {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        gap: .5rem;
        padding: .65rem .85rem;
        border: 1px solid rgba(102, 151, 238, .28);
        border-radius: .8rem;
        background: rgba(37, 99, 235, .13);
        color: #c1d5fa;
        font-size: .76rem;
        font-weight: 700;
        cursor: pointer;
    }

    .method-shell {
        grid-template-columns: 1fr;
    }

    .method-heading {
        min-height: auto;
    }

    .method-orbit {
        display: none;
    }

    .services-map {
        grid-template-columns: 1fr;
    }

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

    .callback-dialog {
        display: block;
        overflow: auto;
    }

    .callback-visual {
        min-height: 170px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .callback-visual::before {
        width: 170px;
    }

    .callback-visual::after {
        width: 120px;
    }

    .callback-wave {
        width: 340px;
        height: 80px;
    }

    .callback-content {
        max-height: none;
        overflow: visible;
    }

    .no-js .site-header {
        position: absolute;
    }

    .no-js .header-shell {
        flex-wrap: wrap;
        height: auto;
    }

    .no-js .main-nav {
        position: static;
        display: block;
        flex: 1 0 100%;
        margin-top: .6rem;
        visibility: visible;
        opacity: 1;
        transform: none;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .no-js .main-nav .nav-panel-head,
    .no-js .main-nav .nav-panel-foot {
        display: none;
    }

    .no-js .main-nav .nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: .25rem 0 0;
        overflow: visible;
    }

    .no-js .main-nav a,
    .no-js .main-nav a:not(.nav-cta) {
        display: grid;
        min-height: 48px;
        padding: .45rem .6rem;
    }

    .no-js .hero {
        padding-top: 16rem;
    }
}

@media (max-width: 680px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-thumb {
        border-width: 2px;
    }

    .section-heading-row {
        margin-bottom: 2.2rem;
    }

    .service-card {
        min-height: 0;
        padding: 1.15rem;
        border-radius: 1.2rem;
    }

    .service-visual {
        height: 88px;
        margin-block: 1rem;
    }

    .service-card-copy h3 {
        font-size: 1.45rem;
    }

    .process-map::before {
        left: 25px;
    }

    .process-map li {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: .75rem;
    }

    .process-node {
        width: 52px;
        height: 52px;
        border-radius: .9rem;
    }

    .process-node svg {
        width: 1.15rem;
        height: 1.15rem;
    }

    .process-node > span {
        top: .25rem;
        right: .3rem;
        font-size: .48rem;
    }

    .process-card {
        min-height: 0;
        padding: 1.15rem;
        border-radius: 1rem;
    }

    .process-card p {
        font-size: .84rem;
    }

    .callback-card {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 1rem;
    }

    .callback-card-icon {
        width: 2.7rem;
        height: 2.7rem;
    }

    .site-modal {
        align-items: end;
        padding: 0;
    }

    .site-modal .pricing-dialog,
    .callback-dialog {
        width: 100%;
        max-height: calc(100dvh - 1.2rem);
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 1.35rem 1.35rem 0 0;
    }

    .callback-visual {
        min-height: 120px;
    }

    .callback-visual > svg {
        width: 3.4rem;
        padding: .95rem;
    }

    .callback-visual > div {
        display: none;
    }

    .callback-content .modal-header {
        padding-bottom: .8rem;
    }

    .callback-form {
        padding: 1rem;
    }

    .consent-card {
        min-height: 0;
        padding: .85rem;
    }

    .nav-panel-foot {
        grid-template-columns: 1fr;
        gap: .6rem;
    }

    .nav-panel-foot button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 430px) {
    .main-nav {
        inset: .35rem;
    }

    .nav-panel-head {
        min-height: 74px;
        padding: .75rem;
    }

    .nav-links {
        padding: .65rem;
    }

    .main-nav a,
    .main-nav .nav-cta {
        min-height: 54px;
        padding: .55rem .75rem;
        font-size: .9rem;
    }

    .callback-card {
        grid-template-columns: 1fr;
    }

    .callback-card-icon {
        margin-bottom: -.2rem;
    }

    .service-visual::after {
        width: 58px;
        height: 53px;
    }

    .service-visual i,
    .service-visual span {
        display: none;
    }

    .no-js .main-nav .nav-links {
        grid-template-columns: 1fr;
    }

    .no-js .hero {
        padding-top: 25rem;
    }
}

@media (max-height: 560px) and (orientation: landscape) and (max-width: 900px) {
    .main-nav {
        inset: .3rem;
    }

    .nav-panel-head {
        min-height: 58px;
        padding: .35rem .65rem;
    }

    .nav-panel-close {
        width: 44px;
        height: 44px;
    }

    .nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: .45rem;
    }

    .main-nav a,
    .main-nav .nav-cta {
        min-height: 46px;
    }

    .nav-panel-foot {
        display: none;
    }

    .callback-dialog {
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .callback-visual {
        min-height: 100%;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .callback-content {
        max-height: calc(100dvh - .6rem);
        overflow: auto;
    }
}

@media (max-width: 900px) {
    .header-shell {
        background: rgba(8, 11, 18, .96);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.service-card .service-icon svg,
.process-node svg {
    fill: currentColor;
}
.stage-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-top: .9rem;
}

.stage-details .stage-card {
    position: relative;
    inset: auto;
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .2rem .75rem;
    padding: .9rem 1rem;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.stage-details .stage-card span,
.stage-details .stage-card strong {
    grid-column: 1;
}

.stage-details .stage-card i {
    grid-row: 1 / 3;
    grid-column: 2;
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(121, 163, 239, .22);
    border-radius: .75rem;
    background: linear-gradient(145deg, rgba(52, 114, 228, .2), rgba(12, 28, 52, .72));
}

.stage-details .stage-card i::before,
.stage-details .stage-card i::after {
    position: absolute;
    content: "";
}

.stage-details .stage-card-a i::before {
    right: 1.55rem;
    width: .9rem;
    height: .55rem;
    border: 1px solid #7fa9f6;
    border-radius: .2rem;
    box-shadow: -.42rem .42rem 0 -.1rem rgba(127, 169, 246, .42);
}

.stage-details .stage-card-b i::before {
    right: 1.45rem;
    width: 1.05rem;
    height: .72rem;
    border-right: 1px solid #7fa9f6;
    border-left: 1px solid #7fa9f6;
    transform: skewX(-20deg);
}

.benefit-grid {
    gap: .9rem;
    overflow: visible;
    border: 0;
    background: transparent;
}

.benefit-card {
    display: grid;
    min-height: 360px;
    grid-template-rows: auto 118px auto 1fr;
    gap: 1rem;
    overflow: hidden;
    border: 1px solid rgba(151, 181, 227, .14);
    border-radius: 1.35rem;
    background: radial-gradient(circle at 100% 0, rgba(40, 98, 209, .12), transparent 17rem), linear-gradient(145deg, rgba(15, 23, 37, .96), rgba(7, 11, 18, .99));
    box-shadow: 0 22px 68px rgba(0, 0, 0, .21);
    transition: transform .32s var(--ease), border-color .32s ease, box-shadow .32s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(106, 154, 239, .29);
    box-shadow: 0 30px 85px rgba(0, 0, 0, .3);
}

.benefit-card-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.benefit-number {
    color: #668cd3;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .68rem;
    letter-spacing: .12em;
}

.benefit-icon {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(116, 159, 236, .2);
    border-radius: .8rem;
    background: rgba(37, 99, 235, .1);
    color: #87adf4;
}

.benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.benefit-visual {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(137, 169, 222, .1);
    border-radius: .95rem;
    background: linear-gradient(rgba(91, 128, 190, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 128, 190, .05) 1px, transparent 1px), rgba(4, 9, 17, .55);
    background-size: 22px 22px;
}

.benefit-visual i,
.benefit-visual span,
.benefit-visual b {
    position: absolute;
    display: block;
}

.benefit-visual-scope i {
    width: 12px;
    height: 12px;
    border: 2px solid #6595ed;
    border-radius: 50%;
    background: #0d1c34;
    box-shadow: 0 0 18px rgba(72, 128, 230, .32);
}

.benefit-visual-scope i:nth-child(1) { top: 22px; left: 28px; }
.benefit-visual-scope i:nth-child(2) { top: 22px; right: 28px; }
.benefit-visual-scope i:nth-child(3) { bottom: 21px; left: 36%; }
.benefit-visual-scope i:nth-child(4) { right: 25%; bottom: 21px; }

.benefit-visual-scope span,
.benefit-visual-scope b {
    top: 50%;
    left: 50%;
    width: 68%;
    height: 1px;
    transform: translate(-50%, -50%) rotate(10deg);
    background: linear-gradient(90deg, transparent, rgba(101, 149, 237, .66), transparent);
}

.benefit-visual-scope b {
    transform: translate(-50%, -50%) rotate(-18deg);
}

.benefit-visual-interface::before {
    position: absolute;
    inset: 18px 22px;
    border: 1px solid rgba(110, 156, 237, .25);
    border-radius: .62rem;
    background: linear-gradient(90deg, rgba(55, 111, 211, .2) 28%, transparent 28%), rgba(9, 19, 34, .72);
    content: "";
}

.benefit-visual-interface::after {
    position: absolute;
    top: 32px;
    right: 38px;
    width: 45%;
    height: 10px;
    border-radius: 999px;
    background: #477edc;
    box-shadow: 0 20px rgba(135, 164, 211, .17), 0 37px rgba(135, 164, 211, .1);
    content: "";
}

.benefit-visual-interface i {
    left: 35px;
    width: 15%;
    height: 5px;
    border-radius: 999px;
    background: rgba(114, 155, 225, .34);
}

.benefit-visual-interface i:nth-child(1) { top: 35px; }
.benefit-visual-interface i:nth-child(2) { top: 54px; }
.benefit-visual-interface i:nth-child(3) { top: 73px; }
.benefit-visual-interface i:nth-child(4) { top: 92px; }

.benefit-visual-durable::before {
    position: absolute;
    top: 17px;
    left: 50%;
    width: 62px;
    height: 76px;
    transform: translateX(-50%);
    border: 1px solid rgba(112, 157, 236, .3);
    border-radius: 32px 32px 22px 22px;
    background: radial-gradient(circle at 50% 35%, rgba(63, 124, 232, .32), transparent 34%), rgba(10, 25, 47, .72);
    clip-path: polygon(50% 0, 96% 18%, 86% 72%, 50% 100%, 14% 72%, 4% 18%);
    content: "";
}

.benefit-visual-durable::after {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 25px;
    height: 12px;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-bottom: 2px solid #9dc0ff;
    border-left: 2px solid #9dc0ff;
    content: "";
}

.benefit-card h3,
.benefit-card p {
    position: relative;
    z-index: 2;
}

.service-visual-code::before {
    top: 20px;
    left: 22px;
    width: 54%;
    height: 7px;
    background: linear-gradient(90deg, #4e82df 42%, transparent 42% 49%, rgba(116, 151, 210, .18) 49%);
    box-shadow: 0 19px rgba(116, 151, 210, .16), 0 38px rgba(116, 151, 210, .1), 0 57px rgba(116, 151, 210, .07);
}

.service-visual-code::after {
    top: 16px;
    right: 18px;
    width: 82px;
    height: 72px;
    border-radius: .72rem;
    background: rgba(8, 18, 34, .78);
    box-shadow: inset 0 0 0 1px rgba(98, 144, 225, .18);
}

.service-visual-code i {
    display: none;
}

.service-visual-code span {
    right: 39px;
    bottom: 42px;
    width: 31px;
    height: 17px;
    transform: none;
    border-right: 2px solid #79a3ef;
    border-left: 2px solid #79a3ef;
    background: transparent;
}

.service-visual-code b,
.service-visual-code em {
    position: absolute;
    right: 48px;
    width: 13px;
    height: 1px;
    background: #79a3ef;
}

.service-visual-code b { top: 38px; transform: rotate(35deg); }
.service-visual-code em { top: 55px; transform: rotate(-35deg); }

.service-visual-database::before {
    top: 20px;
    left: 22px;
    width: 38%;
    height: 8px;
    background: linear-gradient(90deg, #376cc8, rgba(55, 108, 200, .08));
    box-shadow: 0 20px rgba(113, 145, 199, .12), 0 40px rgba(113, 145, 199, .07);
}

.service-visual-database::after {
    top: 18px;
    right: 28px;
    width: 78px;
    height: 24px;
    border: 1px solid rgba(101, 150, 235, .3);
    border-radius: 50%;
    background: rgba(18, 42, 78, .7);
    box-shadow: 0 20px 0 -1px rgba(14, 35, 67, .95), 0 20px 0 0 rgba(101, 150, 235, .23), 0 40px 0 -1px rgba(10, 28, 55, .95), 0 40px 0 0 rgba(101, 150, 235, .17);
}

.service-visual-database i,
.service-visual-database span,
.service-visual-database b,
.service-visual-database em {
    display: none;
}

.service-visual-support::before {
    top: 50%;
    left: auto;
    right: 52px;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    border: 1px solid rgba(107, 155, 239, .3);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 128, 233, .34) 0 8px, transparent 9px);
    box-shadow: 0 0 34px rgba(40, 96, 201, .18);
}

.service-visual-support::after {
    top: 50%;
    right: 37px;
    width: 84px;
    height: 84px;
    transform: translateY(-50%);
    border: 1px dashed rgba(107, 155, 239, .2);
    border-radius: 50%;
    background: transparent;
    animation: orbit-spin 18s linear infinite;
}

.service-visual-support i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #74a0ed;
    animation: none;
}

.service-visual-support i:nth-child(1) { right: 75px; bottom: 18px; }
.service-visual-support i:nth-child(2) { right: 24px; bottom: 47px; }
.service-visual-support i:nth-child(3) { right: 85px; bottom: 80px; }
.service-visual-support i:nth-child(4) { right: 118px; bottom: 48px; }

.service-visual-support span {
    top: 25px;
    right: auto;
    bottom: auto;
    left: 22px;
    width: 38%;
    height: 8px;
    transform: none;
    background: linear-gradient(90deg, #376cc8, rgba(55, 108, 200, .08));
    box-shadow: 0 20px rgba(113, 145, 199, .12), 0 40px rgba(113, 145, 199, .07);
}

.nav-cta-copy {
    display: inline-flex;
    align-items: center;
}

.nav-cta-copy strong {
    font: inherit;
}

.nav-cta-copy small {
    display: none;
}

.nav-scrim {
    position: fixed;
    z-index: 1150;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(1, 4, 9, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity .25s ease, visibility 0s linear .25s;
}

.nav-scrim.is-open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.callback-schedule {
    display: grid;
    gap: .85rem;
    margin-bottom: 1rem;
}

.same-day-choice {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .85rem;
    min-height: 72px;
    padding: .85rem 1rem;
    border: 1px solid rgba(141, 174, 226, .15);
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(18, 32, 54, .72), rgba(8, 14, 24, .88));
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s var(--ease);
}

.same-day-choice:hover,
.same-day-choice:has(input:focus-visible) {
    border-color: rgba(104, 153, 239, .34);
    background: linear-gradient(135deg, rgba(24, 48, 87, .78), rgba(9, 17, 31, .94));
}

.same-day-choice:has(input:focus-visible) {
    outline: 3px solid rgba(93, 147, 255, .78);
    outline-offset: 3px;
}

.same-day-choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.same-day-icon {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    place-items: center;
    border: 1px solid rgba(111, 159, 240, .22);
    border-radius: .78rem;
    background: rgba(37, 99, 235, .1);
    color: #88b0f7;
}

.same-day-icon svg,
.calendar-trigger svg {
    width: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.same-day-choice > span:nth-child(3) {
    display: grid;
    gap: .15rem;
}

.same-day-choice strong {
    font-size: .84rem;
}

.same-day-choice small {
    color: var(--text-muted);
    font-size: .68rem;
}

.same-day-switch {
    position: relative;
    width: 2.6rem;
    height: 1.45rem;
    border: 1px solid rgba(133, 166, 220, .28);
    border-radius: 999px;
    background: #09101b;
    transition: border-color .2s ease, background .2s ease;
}

.same-day-switch::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #8b9ab0;
    content: "";
    transition: transform .24s var(--ease), background .2s ease;
}

.same-day-choice input:checked ~ .same-day-switch {
    border-color: #4e82df;
    background: #1f56ba;
}

.same-day-choice input:checked ~ .same-day-switch::after {
    transform: translateX(1.1rem);
    background: #fff;
}

.callback-date-field[hidden] {
    display: none;
}

.calendar-picker {
    position: relative;
}

.calendar-trigger {
    display: grid;
    width: 100%;
    min-height: 62px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .8rem;
    padding: .7rem .85rem;
    border: 1px solid rgba(148, 178, 223, .16);
    border-radius: .9rem;
    background: rgba(7, 12, 20, .68);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.calendar-trigger:hover,
.calendar-trigger:focus-visible,
.calendar-picker.is-open .calendar-trigger {
    border-color: rgba(99, 151, 242, .42);
    background: rgba(13, 24, 42, .84);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.calendar-trigger > svg {
    color: #80a9f2;
}

.calendar-trigger > span {
    display: grid;
    gap: .1rem;
}

.calendar-trigger small {
    color: var(--text-muted);
    font-size: .61rem;
    font-weight: 750;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.calendar-trigger strong {
    overflow: hidden;
    font-size: .83rem;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.calendar-trigger > i {
    color: #7398d8;
    font-style: normal;
    transition: transform .2s var(--ease);
}

.calendar-picker.is-open .calendar-trigger > i {
    transform: rotate(180deg);
}

.calendar-native {
    width: 100%;
}

.calendar-picker.is-enhanced .calendar-native {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.calendar-popover {
    position: absolute;
    z-index: 30;
    top: calc(100% + .55rem);
    right: 0;
    width: min(100%, 350px);
    padding: .85rem;
    border: 1px solid rgba(145, 178, 230, .22);
    border-radius: 1rem;
    background: rgba(7, 12, 20, .985);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
    backdrop-filter: blur(18px);
}

.calendar-popover[hidden] {
    display: none;
}

.calendar-head,
.calendar-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.calendar-head {
    margin-bottom: .65rem;
}

.calendar-head strong {
    font-size: .83rem;
    text-transform: capitalize;
}

.calendar-head button,
.calendar-foot button {
    min-width: 40px;
    min-height: 40px;
    padding: .4rem .65rem;
    border: 1px solid rgba(133, 168, 224, .17);
    border-radius: .65rem;
    background: rgba(255, 255, 255, .025);
    color: var(--text-soft);
    font-size: .7rem;
    cursor: pointer;
}

.calendar-head button:disabled {
    opacity: .25;
    cursor: default;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .24rem;
}

.calendar-weekdays {
    margin-bottom: .3rem;
}

.calendar-weekdays span {
    padding-block: .3rem;
    color: var(--text-muted);
    font-size: .57rem;
    font-weight: 700;
    text-align: center;
}

.calendar-grid button,
.calendar-spacer {
    aspect-ratio: 1;
}

.calendar-grid button {
    display: grid;
    min-width: 0;
    min-height: 0;
    place-items: center;
    border: 1px solid transparent;
    border-radius: .58rem;
    background: transparent;
    color: var(--text-soft);
    font-size: .72rem;
    cursor: pointer;
    transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s var(--ease);
}

.calendar-grid button:hover:not(:disabled),
.calendar-grid button:focus-visible {
    border-color: rgba(102, 151, 238, .25);
    background: rgba(37, 99, 235, .12);
    color: #fff;
}

.calendar-grid button.is-today {
    border-color: rgba(113, 159, 239, .22);
}

.calendar-grid button.is-selected {
    border-color: #5d8fe8;
    background: linear-gradient(145deg, #3473e9, #1f56bb);
    box-shadow: 0 8px 22px rgba(37, 99, 235, .25);
    color: #fff;
    font-weight: 800;
}

.calendar-grid button:disabled {
    opacity: .2;
    cursor: default;
}

.calendar-foot {
    margin-top: .65rem;
    padding-top: .65rem;
    border-top: 1px solid var(--line);
}

.no-js .calendar-trigger,
.no-js .calendar-popover {
    display: none;
}

.confirmation-dialog {
    position: relative;
    width: min(100%, 520px);
    padding: clamp(1.5rem, 5vw, 2.5rem);
    overflow: hidden;
    transform: scale(.985);
    border: 1px solid rgba(151, 184, 234, .24);
    border-radius: 1.6rem;
    background: radial-gradient(circle at 50% 0, rgba(44, 108, 220, .18), transparent 18rem), linear-gradient(145deg, #0c1421, #070b12);
    box-shadow: 0 42px 130px rgba(0, 0, 0, .68);
    text-align: center;
    transition: transform .32s var(--ease);
}

.site-modal.is-open .confirmation-dialog {
    transform: none;
}

.confirmation-close {
    position: absolute;
    z-index: 3;
    top: .9rem;
    right: .9rem;
}

.confirmation-visual {
    position: relative;
    display: grid;
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1.3rem;
    place-items: center;
}

.confirmation-visual > span,
.confirmation-visual > i {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(90, 145, 239, .2);
    border-radius: 50%;
    animation: confirmation-ring 2.6s ease-in-out infinite;
}

.confirmation-visual > i {
    inset: .75rem;
    border-style: dashed;
    animation-delay: -.8s;
}

.confirmation-visual svg {
    position: relative;
    z-index: 2;
    width: 3.8rem;
    height: 3.8rem;
    padding: 1rem;
    border: 1px solid rgba(111, 162, 245, .35);
    border-radius: 1.2rem;
    background: linear-gradient(145deg, rgba(50, 116, 229, .35), rgba(15, 42, 84, .82));
    box-shadow: 0 18px 48px rgba(21, 70, 166, .32);
    fill: none;
    stroke: #d6e5ff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.confirmation-dialog h2 {
    margin-bottom: .75rem;
    font-size: clamp(1.7rem, 5vw, 2.35rem);
}

.confirmation-dialog > p:not(.eyebrow) {
    max-width: 420px;
    margin: 0 auto 1.35rem;
}

.confirmation-dialog .eyebrow {
    justify-content: center;
}

.confirmation-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin-bottom: 1.5rem;
}

.confirmation-details span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .65rem;
    border: 1px solid rgba(118, 159, 224, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    color: var(--text-soft);
    font-size: .67rem;
}

.confirmation-details i {
    width: .38rem;
    height: .38rem;
    border-radius: 50%;
    background: #5de0a3;
    box-shadow: 0 0 12px rgba(93, 224, 163, .45);
}

.confirmation-dialog .button {
    min-width: 190px;
}

.public-flash-stack {
    position: fixed;
    z-index: 2400;
    top: calc(var(--header-height) + 2rem);
    right: 1rem;
    display: grid;
    width: min(calc(100% - 2rem), 430px);
    gap: .55rem;
}

.public-flash-stack .flash-message {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: .7rem;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .46);
    backdrop-filter: blur(16px);
}

.public-flash-stack .flash-message > span {
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-weight: 800;
}

.public-flash-stack p {
    margin: 0;
    color: inherit;
}

.footer-links {
    gap: .55rem;
}

.footer-links > a,
.footer-contact-item {
    display: grid;
    width: 100%;
    min-height: 46px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .65rem;
    padding: .45rem;
    border: 1px solid transparent;
    border-radius: .75rem;
}

.footer-links > a:hover {
    transform: none;
    border-color: rgba(115, 158, 232, .15);
    background: rgba(255, 255, 255, .025);
}

.footer-link-icon {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(115, 158, 232, .14);
    border-radius: .62rem;
    background: rgba(37, 99, 235, .07);
    color: #719ce8;
}

.footer-link-icon svg {
    width: .95rem;
    height: .95rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-links > a > i {
    color: #5f86ca;
    font-style: normal;
    transition: transform .2s var(--ease);
}

.footer-links > a:hover > i {
    transform: translate(2px, -2px);
}

.footer-contact-links > a > span:nth-child(2),
.footer-contact-item > span:nth-child(2) {
    display: grid;
    gap: .12rem;
}

.footer-contact-links small,
.footer-contact-item small {
    color: var(--text-muted);
    font-size: .58rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@keyframes confirmation-ring {
    0%, 100% { transform: scale(.92); opacity: .42; }
    50% { transform: scale(1.04); opacity: .9; }
}

@media (max-width: 900px) {
    .main-nav {
        top: .6rem;
        right: .6rem;
        bottom: .6rem;
        left: auto;
        width: min(420px, calc(100% - 1.2rem));
        max-height: none;
        transform: translateX(28px) scale(.985);
        transform-origin: right top;
    }

    .main-nav.is-open {
        transform: none;
    }

    .main-nav .nav-cta {
        min-height: 76px;
        border-color: rgba(98, 151, 244, .38);
        background: radial-gradient(circle at 100% 0, rgba(116, 166, 255, .2), transparent 8rem), linear-gradient(145deg, #245fc8, #173f89);
        box-shadow: 0 16px 35px rgba(21, 66, 151, .28), inset 0 1px rgba(255, 255, 255, .11);
        color: #fff;
    }

    .nav-cta-copy {
        display: grid;
        gap: .18rem;
    }

    .nav-cta-copy strong {
        font-size: .98rem;
    }

    .nav-cta-copy small {
        display: block;
        color: #bdd3fb;
        font-size: .65rem;
        font-weight: 500;
    }

    .stage-details {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .benefit-grid {
        gap: .8rem;
    }

    .benefit-card {
        min-height: 300px;
        grid-template-rows: auto 105px auto 1fr;
    }

    .footer-main {
        align-items: start;
    }
}

@media (max-width: 680px) {
    .stage-details {
        grid-template-columns: 1fr;
        gap: .55rem;
    }

    .stage-details .stage-card {
        display: grid;
        margin-top: 0;
        float: none;
    }

    .benefit-card {
        min-height: 0;
        padding: 1.2rem;
    }

    .calendar-popover {
        right: auto;
        left: 0;
        width: 100%;
    }

    .confirmation-dialog {
        width: calc(100% - 1rem);
        margin-bottom: .5rem;
        border-radius: 1.35rem;
    }

    .public-flash-stack {
        top: calc(var(--header-height) + 1.2rem);
        right: .7rem;
        width: calc(100% - 1.4rem);
    }

    .footer-links > a,
    .footer-contact-item {
        min-height: 52px;
    }
}

@media (max-width: 430px) {
    .main-nav {
        top: .35rem;
        right: .35rem;
        bottom: .35rem;
        width: calc(100% - .7rem);
    }

    .same-day-choice {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .same-day-switch {
        grid-column: 1 / -1;
        justify-self: end;
        margin-top: -.25rem;
    }

    .calendar-popover {
        padding: .65rem;
    }

    .calendar-grid {
        gap: .15rem;
    }

    .confirmation-details {
        display: grid;
    }
}

@media (max-height: 560px) and (orientation: landscape) and (max-width: 900px) {
    .main-nav {
        top: .3rem;
        right: .3rem;
        bottom: .3rem;
        width: min(700px, calc(100% - .6rem));
    }

    .calendar-popover {
        position: fixed;
        top: .5rem;
        right: .5rem;
        bottom: .5rem;
        left: auto;
        width: min(360px, calc(100% - 1rem));
        overflow: auto;
    }
}

@media (max-width: 680px) {
    .calendar-popover {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        margin-top: .55rem;
    }
}
.stage-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    width: 100%;
    margin-top: .9rem;
}

.stage-details .stage-card {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    min-width: 0;
    min-height: 74px;
    grid-template-columns: minmax(0, 1fr) 2.55rem;
    grid-template-rows: auto auto;
    align-items: center;
    gap: .2rem .8rem;
    margin: 0 !important;
    padding: .85rem .95rem;
    overflow: hidden;
    float: none !important;
    border-color: rgba(133, 171, 234, .2);
    background: linear-gradient(145deg, rgba(11, 18, 30, .94), rgba(6, 10, 17, .98));
}

.stage-details .stage-card > span:not(.stage-card-glyph),
.stage-details .stage-card > strong {
    grid-column: 1;
    min-width: 0;
}

.stage-details .stage-card > .stage-card-glyph {
    display: grid !important;
    width: 2.55rem;
    height: 2.55rem;
    grid-row: 1 / 3;
    grid-column: 2;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(111, 159, 240, .26);
    border-radius: .78rem;
    background: linear-gradient(145deg, rgba(45, 104, 214, .2), rgba(11, 27, 51, .74));
    color: #8ab2f8 !important;
}

.stage-glyph-svg {
    width: 1.3rem;
    height: 1.3rem;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-visual,
.service-visual {
    display: grid;
    min-width: 0;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.benefit-visual::before,
.benefit-visual::after,
.service-visual::before,
.service-visual::after {
    display: none !important;
    content: none !important;
}

.benefit-visual > :not(svg),
.service-visual > :not(svg) {
    display: none !important;
}

.benefit-visual-svg,
.service-visual-svg {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.benefit-visual-svg *,
.service-visual-svg * {
    vector-effect: non-scaling-stroke;
}

.benefit-visual-svg .visual-frame,
.service-visual-svg .visual-frame,
.service-visual-svg .visual-panel,
.benefit-visual-svg .visual-panel {
    fill: rgba(12, 25, 45, .72);
    stroke: rgba(105, 152, 235, .28);
    stroke-width: 1.2;
}

.benefit-visual-svg .visual-divider,
.service-visual-svg .visual-divider,
.benefit-visual-svg .visual-connector {
    fill: none;
    stroke: rgba(108, 153, 232, .28);
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-visual-svg .visual-dot,
.service-visual-svg .visual-dot,
.benefit-visual-svg .visual-node,
.benefit-visual-svg .visual-orbit-node,
.service-visual-svg .visual-orbit-node {
    fill: #5889df;
}

.benefit-visual-svg .visual-node {
    stroke: #8bb4fb;
    stroke-width: 1.2;
}

.benefit-visual-svg .visual-core,
.service-visual-svg .visual-core {
    fill: #75a5f5;
    filter: drop-shadow(0 0 8px rgba(74, 132, 233, .65));
}

.benefit-visual-svg .visual-pulse {
    fill: none;
    stroke: rgba(86, 141, 236, .36);
    stroke-width: 1.2;
    stroke-dasharray: 4 5;
    transform-origin: center;
    animation: final-pulse 4.6s ease-in-out infinite;
}

.benefit-visual-svg .visual-accent,
.service-visual-svg .visual-accent {
    fill: #4d82df;
}

.benefit-visual-svg .visual-line,
.service-visual-svg .visual-line {
    fill: rgba(125, 158, 211, .18);
}

.benefit-visual-svg .visual-tile,
.service-visual-svg .visual-tile {
    fill: rgba(58, 109, 198, .22);
    stroke: rgba(118, 161, 234, .18);
    stroke-width: 1;
}

.benefit-visual-svg .visual-orbit,
.service-visual-svg .visual-orbit {
    fill: none;
    stroke: rgba(91, 143, 234, .3);
    stroke-width: 1.2;
    stroke-dasharray: 5 6;
    transform-origin: center;
    animation: orbit-spin 20s linear infinite;
}

.benefit-visual-svg .visual-orbit.is-inner,
.service-visual-svg .visual-orbit.is-inner {
    stroke: rgba(131, 169, 235, .2);
    stroke-dasharray: none;
    animation-direction: reverse;
    animation-duration: 14s;
}

.benefit-visual-svg .visual-shield {
    fill: rgba(39, 93, 190, .2);
    stroke: #719fed;
    stroke-width: 1.5;
    stroke-linejoin: round;
}

.benefit-visual-svg .visual-check {
    fill: none;
    stroke: #b9d2ff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-visual-svg .visual-code-mark,
.service-visual-svg .visual-database {
    fill: none;
    stroke: #78a4ef;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card .service-icon,
.benefit-icon,
.process-node,
.footer-link-icon,
.callback-card-icon,
.same-day-icon {
    flex: 0 0 auto;
    overflow: hidden;
}

.service-card .service-icon svg,
.benefit-icon svg,
.process-node svg,
.footer-link-icon svg,
.callback-card-icon svg,
.same-day-icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.service-card .service-icon svg,
.benefit-icon svg,
.process-node svg {
    fill: currentColor;
}

.service-visual {
    height: 108px;
    margin: 1.15rem 0 1.35rem;
    padding: .18rem;
}

.service-card {
    min-width: 0;
    grid-template-rows: auto 108px auto 1fr;
}

.service-card-copy {
    min-width: 0;
}

.service-card-copy h3,
.service-card-copy p,
.process-card h3,
.process-card p {
    overflow-wrap: break-word;
}

.benefit-visual {
    height: 118px;
    padding: .15rem;
}

.process-node svg {
    width: 1.45rem;
    height: 1.45rem;
}

.process-node > span {
    line-height: 1;
}

.nav-scrim {
    pointer-events: none;
}

.nav-scrim.is-open {
    pointer-events: auto;
}

.calendar-trigger {
    display: none;
}

.calendar-native {
    display: block;
    width: 100%;
    min-height: 54px;
    padding: .75rem .85rem;
    border: 1px solid rgba(148, 178, 223, .18);
    border-radius: .9rem;
    background: rgba(7, 12, 20, .74);
    color: var(--text);
    color-scheme: dark;
}

.calendar-picker.is-enhanced .calendar-trigger {
    display: grid;
}

.calendar-picker.is-enhanced .calendar-native {
    position: absolute;
    width: 1px;
    min-width: 0;
    height: 1px;
    min-height: 0;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
    pointer-events: none;
}

.calendar-trigger[aria-invalid="true"] {
    border-color: rgba(255, 125, 143, .68);
    box-shadow: 0 0 0 3px rgba(255, 125, 143, .12);
}

.calendar-trigger.has-value strong {
    color: #dce8ff;
}

.calendar-popover {
    position: relative;
    z-index: 3;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    margin-top: .6rem;
    padding: .85rem;
    overflow: hidden;
}

.calendar-popover[hidden] {
    display: none !important;
}

.calendar-grid button,
.calendar-spacer {
    min-width: 0;
    aspect-ratio: 1;
}

.callback-dialog {
    max-height: min(920px, calc(100dvh - 2rem));
    overflow: hidden;
}

.callback-content {
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

.callback-form,
.contact-form,
.pricing-dialog,
.simulator-layout,
.estimate-panel {
    min-width: 0;
}

.footer-main {
    grid-template-columns: minmax(250px, 1.2fr) repeat(auto-fit, minmax(205px, .72fr));
    gap: clamp(1.6rem, 4vw, 4rem);
}

.footer-contact-links {
    min-width: 235px;
}

.footer-links > a,
.footer-contact-item {
    min-width: 0;
}

.footer-contact-copy,
.footer-contact-value {
    min-width: 0;
}

.footer-contact-email {
    display: block;
    width: max-content;
    max-width: none;
    overflow: visible;
    overflow-wrap: normal !important;
    word-break: normal;
    text-overflow: clip;
    white-space: nowrap;
}

.footer-contact-link[href^="mailto:"] {
    width: max-content;
    max-width: 100%;
    grid-template-columns: auto auto;
}

.footer-contact-link[href^="mailto:"] > .footer-contact-copy {
    width: max-content;
}

@keyframes final-pulse {
    0%, 100% {
        transform: scale(.94);
        opacity: .45;
    }
    50% {
        transform: scale(1.04);
        opacity: .9;
    }
}

@media (max-width: 1100px) {
    .services-map {
        gap: .9rem;
    }

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

    .footer-main {
        grid-template-columns: minmax(240px, 1.2fr) repeat(2, minmax(210px, 1fr));
    }

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

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .site-header {
        position: fixed !important;
        z-index: 1300;
        top: .55rem;
        right: 0;
        left: 0;
        transform: none;
    }

    .site-header.is-scrolled {
        top: .4rem;
    }

    .header-shell {
        position: relative;
        width: min(calc(100% - 1.1rem), 760px);
        min-height: var(--header-height);
        padding: .45rem .48rem .45rem .72rem;
        border-radius: 1rem;
        background: rgba(7, 10, 17, .94);
        box-shadow: 0 18px 54px rgba(0, 0, 0, .38);
        backdrop-filter: blur(18px) saturate(120%);
        -webkit-backdrop-filter: blur(18px) saturate(120%);
    }

    .js .nav-toggle {
        position: relative;
        z-index: 3;
        display: grid !important;
        flex: 0 0 auto;
        place-content: center;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .js .main-nav {
        position: fixed !important;
        z-index: 1290;
        top: calc(.55rem + var(--header-height) + .55rem) !important;
        right: .6rem !important;
        bottom: auto !important;
        left: .6rem !important;
        display: grid !important;
        width: auto !important;
        max-width: 760px;
        max-height: calc(100vh - var(--header-height) - 1.8rem);
        max-height: calc(100dvh - var(--header-height) - 1.8rem);
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 0;
        margin-inline: auto;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none;
        transform: translateY(-10px) scale(.985) !important;
        transform-origin: top center;
        border: 1px solid rgba(145, 180, 235, .24) !important;
        border-radius: 1.2rem !important;
        background: radial-gradient(circle at 100% 0, rgba(44, 104, 219, .18), transparent 20rem), rgba(6, 9, 15, .985) !important;
        box-shadow: 0 28px 90px rgba(0, 0, 0, .66) !important;
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        transition: opacity .22s ease, transform .28s var(--ease), visibility 0s linear .28s;
    }

    .js .main-nav.is-open {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto;
        transform: none !important;
        transition-delay: 0s;
    }

    .nav-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        min-height: 68px;
        padding: .75rem .75rem .75rem 1rem;
        border-bottom: 1px solid var(--line);
    }

    .nav-panel-head > div {
        display: grid;
        gap: .1rem;
    }

    .nav-panel-head > div > span {
        color: #759ce1;
        font-size: .58rem;
        font-weight: 760;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .nav-panel-head strong {
        font-size: .95rem;
    }

    .nav-panel-close {
        display: grid;
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
        padding: 0;
        place-items: center;
        border: 1px solid var(--line-strong);
        border-radius: .78rem;
        background: rgba(255, 255, 255, .035);
        color: var(--text);
        font-size: 1.45rem;
        cursor: pointer;
    }

    .nav-links {
        display: grid;
        align-content: start;
        gap: .35rem;
        padding: .75rem;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .main-nav .nav-links > a,
    .no-js .main-nav .nav-links > a {
        display: grid !important;
        min-width: 0;
        min-height: 54px;
        grid-template-columns: 2.15rem minmax(0, 1fr) auto;
        align-items: center;
        justify-content: stretch;
        gap: .7rem;
        margin: 0;
        padding: .55rem .75rem;
        border: 1px solid transparent;
        border-radius: .9rem;
        background: rgba(255, 255, 255, .018);
        color: var(--text-soft);
        font-size: .9rem;
        text-align: left;
    }

    .main-nav .nav-links > a:hover,
    .main-nav .nav-links > a:focus-visible,
    .main-nav .nav-links > a[aria-current] {
        border-color: rgba(112, 158, 235, .17);
        background: rgba(43, 91, 178, .1);
        color: #fff;
    }

    .main-nav .nav-link-index {
        display: grid;
        width: 2.15rem;
        height: 2.15rem;
        place-items: center;
        border: 1px solid rgba(112, 158, 235, .15);
        border-radius: .65rem;
        color: #6f96dc;
        font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
        font-size: .58rem;
    }

    .main-nav .nav-links > a > i {
        display: block;
        color: #648bd0;
        font-style: normal;
    }

    .main-nav .nav-cta {
        min-height: 70px !important;
        margin-top: .25rem !important;
        border-color: rgba(104, 155, 244, .38) !important;
        background: radial-gradient(circle at 100% 0, rgba(128, 174, 255, .2), transparent 8rem), linear-gradient(145deg, #245fc8, #163d84) !important;
        box-shadow: 0 16px 35px rgba(20, 63, 145, .3), inset 0 1px rgba(255, 255, 255, .12);
        color: #fff !important;
    }

    .nav-cta-copy {
        display: grid;
        gap: .1rem;
    }

    .nav-cta-copy strong {
        font-size: .94rem;
    }

    .nav-cta-copy small {
        display: block;
        color: #c0d5fb;
        font-size: .62rem;
        font-weight: 520;
    }

    .nav-panel-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .8rem;
        padding: .72rem .85rem;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, .015);
    }

    .nav-panel-foot > span {
        color: var(--text-muted);
        font-size: .65rem;
    }

    .nav-panel-foot button {
        min-height: 42px;
        padding: .55rem .72rem;
        border: 1px solid rgba(104, 153, 238, .24);
        border-radius: .72rem;
        background: rgba(37, 99, 235, .1);
        color: #bcd2fa;
        font-size: .7rem;
        font-weight: 700;
        cursor: pointer;
    }

    .nav-scrim {
        z-index: 1200;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav-scrim.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .stage-details {
        width: min(100%, 680px);
        margin-inline: auto;
    }

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

    .service-card {
        min-height: 365px;
        padding: 1.25rem;
    }

    .service-card-copy h3 {
        font-size: clamp(1.35rem, 3.6vw, 1.75rem);
    }

    .callback-dialog {
        display: grid;
        width: min(calc(100% - 1rem), 720px);
        min-height: 0;
        max-height: calc(100dvh - 1rem);
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, 1fr);
        overflow: hidden;
        border-radius: 1.25rem;
    }

    .callback-content {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .callback-visual {
        display: none;
    }

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

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

    .footer-contact-links {
        min-width: 0;
    }
}

@media (max-width: 680px) {
    .stage-details {
        grid-template-columns: 1fr;
        gap: .55rem;
    }

    .stage-details .stage-card {
        display: grid !important;
    }

    .services-map {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
        padding: 1.15rem;
    }

    .service-visual {
        height: 102px;
        margin-block: 1rem 1.15rem;
    }

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

    .benefit-visual {
        height: 108px;
    }

    .process-map li {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: .7rem;
    }

    .process-map::before {
        left: 29px;
    }

    .process-node {
        width: 58px;
        height: 58px;
        border-radius: .9rem;
    }

    .process-node svg {
        width: 1.2rem;
        height: 1.2rem;
    }

    .process-card {
        min-height: 0;
        padding: 1.1rem;
    }

    .same-day-choice {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .calendar-popover {
        padding: .7rem;
    }

    .calendar-grid {
        gap: .15rem;
    }

    .calendar-grid button {
        border-radius: .48rem;
        font-size: .69rem;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-contact-link[href^="mailto:"] {
        width: max-content;
        max-width: 100%;
    }
}

@media (max-width: 430px) {
    .header-shell {
        width: calc(100% - .7rem);
    }

    .js .main-nav {
        top: calc(.4rem + var(--header-height) + .45rem) !important;
        right: .35rem !important;
        left: .35rem !important;
        max-height: calc(100dvh - var(--header-height) - 1.25rem);
        border-radius: 1rem !important;
    }

    .brand-copy strong {
        font-size: .9rem;
    }

    .nav-panel-foot {
        display: grid;
        grid-template-columns: 1fr;
    }

    .nav-panel-foot button {
        width: 100%;
    }

    .stage-details .stage-card {
        grid-template-columns: minmax(0, 1fr) 2.35rem;
        min-height: 68px;
        padding: .75rem .8rem;
    }

    .stage-card-glyph {
        width: 2.35rem;
        height: 2.35rem;
    }

    .same-day-choice {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .same-day-switch {
        grid-column: 1 / -1;
        justify-self: end;
        margin-top: -.2rem;
    }

    .calendar-trigger {
        min-height: 58px;
        gap: .65rem;
        padding: .65rem .72rem;
    }

    .calendar-trigger strong {
        font-size: .76rem;
    }

    .calendar-popover {
        padding: .58rem;
        border-radius: .85rem;
    }

    .calendar-head button,
    .calendar-foot button {
        min-width: 38px;
        min-height: 38px;
    }

    .footer-contact-email {
        font-size: .75rem;
    }
}

@media (max-height: 560px) and (orientation: landscape) and (max-width: 900px) {
    .js .main-nav {
        top: calc(.3rem + var(--header-height) + .3rem) !important;
        max-height: calc(100dvh - var(--header-height) - .9rem);
    }

    .nav-panel-head {
        min-height: 54px;
        padding-block: .4rem;
    }

    .nav-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: .55rem;
    }

    .main-nav .nav-links > a,
    .no-js .main-nav .nav-links > a {
        min-height: 48px;
    }

    .nav-panel-foot {
        padding-block: .45rem;
    }

    .site-modal {
        padding: .3rem;
        place-items: center;
    }

    .callback-dialog {
        width: min(calc(100% - .6rem), 720px);
        max-height: calc(100dvh - .6rem);
        border-radius: 1rem;
    }

    .callback-form {
        padding: 1rem;
    }

    .calendar-popover {
        padding: .5rem;
    }

    .calendar-head {
        margin-bottom: .3rem;
    }

    .calendar-weekdays {
        margin-bottom: .1rem;
    }

    .calendar-grid {
        gap: .1rem;
    }

    .calendar-grid button,
    .calendar-spacer {
        height: 32px;
        min-height: 32px;
        aspect-ratio: auto;
    }

    .calendar-foot {
        margin-top: .35rem;
        padding-top: .35rem;
    }

    .calendar-head button,
    .calendar-foot button {
        min-height: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .benefit-visual-svg .visual-pulse,
    .benefit-visual-svg .visual-orbit,
    .service-visual-svg .visual-orbit {
        animation: none;
    }
}
@media (min-width: 681px) {
    .calendar-popover {
        width: min(100%, 360px);
    }
}
.service-card {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
}

.service-card-copy {
    align-self: auto;
    margin-bottom: 1.25rem;
}

.service-card > a {
    margin-top: auto;
}
@media (max-width: 900px) {
    .nav-toggle > span:not(.sr-only) {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 1.15rem;
        height: 1px;
        margin: 0;
        transform: translate(-50%, -6px);
        transform-origin: center;
    }

    .nav-toggle > span:nth-child(2) {
        transform: translate(-50%, 0);
    }

    .nav-toggle > span:nth-child(3) {
        transform: translate(-50%, 6px);
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translate(-50%, 0) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
        transform: translate(-50%, 0) scaleX(.3);
    }

    .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translate(-50%, 0) rotate(-45deg);
    }
}


@media (max-height: 560px) and (orientation: landscape) and (max-width: 900px) {
    .calendar-popover {
        position: fixed !important;
        z-index: 3600;
        top: .35rem !important;
        right: .35rem !important;
        bottom: .35rem !important;
        left: auto !important;
        width: min(340px, calc(100vw - .7rem)) !important;
        max-height: calc(100dvh - .7rem);
        margin: 0 !important;
        padding: .5rem !important;
        overflow: auto !important;
        border-radius: .85rem;
    }

    .calendar-head {
        margin-bottom: .3rem;
    }

    .calendar-head strong {
        font-size: .78rem;
    }

    .calendar-head button,
    .calendar-foot button {
        min-width: 34px;
        min-height: 34px;
        padding: .25rem .5rem;
    }

    .calendar-weekdays,
    .calendar-grid {
        gap: 2px;
    }

    .calendar-weekdays {
        margin-bottom: .12rem;
    }

    .calendar-weekdays span {
        padding-block: .14rem;
        font-size: .52rem;
    }

    .calendar-grid button,
    .calendar-spacer {
        height: 30px;
        min-height: 30px;
        aspect-ratio: auto;
    }

    .calendar-grid button {
        border-radius: .42rem;
        font-size: .65rem;
    }

    .calendar-foot {
        margin-top: .3rem;
        padding-top: .3rem;
    }
}


@media (max-width: 900px) {
    .js .main-nav {
        align-items: stretch;
    }

    .nav-panel-head,
    .nav-panel-foot {
        position: relative;
        z-index: 2;
    }

    .nav-panel-head {
        background: rgba(7, 11, 19, .98);
    }

    .nav-links {
        z-index: 1;
        min-height: 0;
    }

    .nav-panel-close {
        position: relative;
        z-index: 3;
    }
}
