:root {
    --ink-950: #06111f;
    --navy-900: #081a2d;
    --navy-800: #102a45;
    --text-700: #2a4059;
    --text-500: #587087;
    --ice-0: #fcfeff;
    --ice-50: #f4f8fc;
    --ice-100: #eaf2f9;
    --silver-200: #d5e0ea;
    --silver-400: #a9bacb;
    --silver-600: #72879b;
    --blue-500: #0877ff;
    --blue-600: #005ce6;
    --cyan-400: #16c8ff;
    --white: #ffffff;
    --focus-ring: 0 0 0 4px rgba(22, 200, 255, 0.25);
    --shadow-card: 0 18px 45px rgba(12, 35, 59, 0.12);
    --shadow-cta: 0 12px 28px rgba(8, 119, 255, 0.28);
    --content-width: 1280px;
    color-scheme: light;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 82% 18%, rgba(22, 200, 255, 0.1), transparent 31rem),
        linear-gradient(135deg, var(--ice-0) 0%, var(--ice-50) 52%, var(--ice-100) 100%);
    color: var(--ink-950);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink-950);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 82px;
    border-bottom: 1px solid rgba(169, 186, 203, 0.32);
    background: linear-gradient(90deg, #030b14 0%, #0a1e34 100%);
    transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    height: 68px;
    background: rgba(4, 14, 26, 0.93);
    box-shadow: 0 12px 35px rgba(6, 17, 31, 0.18);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(calc(100% - 64px), var(--content-width));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.brand {
    position: relative;
    z-index: 2;
    width: 92px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.brand img {
    width: auto;
    height: 74px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(22, 200, 255, 0.12));
    transition: height 220ms ease;
}

.site-header.is-scrolled .brand img {
    height: 60px;
}

.primary-navigation {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    position: relative;
    height: 100%;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 600;
    transition: color 180ms ease;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 11px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--cyan-400);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    min-width: 86px;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    cursor: pointer;
}

.menu-toggle__label {
    font-size: 13px;
    font-weight: 700;
}

.menu-toggle__icon {
    width: 19px;
    display: grid;
    gap: 5px;
}

.menu-toggle__icon span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease;
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 54px max(32px, calc((100vw - var(--content-width)) / 2)) 48px;
    overflow-x: clip;
    isolation: isolate;
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(8, 119, 255, 0.08);
    border-radius: 54px;
    content: "";
    pointer-events: none;
    transform: rotate(28deg);
}

.hero::before {
    top: 12%;
    right: 28%;
    width: 220px;
    height: 520px;
}

.hero::after {
    bottom: 2%;
    left: -90px;
    width: 330px;
    height: 560px;
}

.hero-grid {
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 54fr) minmax(440px, 46fr);
    align-items: center;
    gap: 40px;
}

.hero-copy {
    max-width: 670px;
    padding: 40px 0;
}

.eyebrow,
.section-kicker {
    margin: 0 0 26px;
    color: #295e96;
    font-size: 16px;
    font-weight: 700;
}

.eyebrow span {
    margin: 0 6px;
    color: var(--blue-500);
}

.hero h1,
.page-intro h1 {
    margin: 0;
    font-family: Manrope, Inter, "Segoe UI", sans-serif;
    font-size: clamp(58px, 5.4vw, 76px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.99;
}

.hero h1 span {
    color: var(--blue-600);
}

.hero-intro {
    max-width: 620px;
    margin: 26px 0 0;
    color: var(--text-700);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.65;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.button {
    min-height: 58px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 0;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button--primary {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    box-shadow: var(--shadow-cta);
    color: var(--white);
}

.button--primary:hover {
    background: linear-gradient(135deg, #1685ff 0%, #006bfa 100%);
    box-shadow: 0 15px 34px rgba(8, 119, 255, 0.36);
    transform: translateY(-2px);
}

.button--secondary {
    border: 2px solid var(--navy-800);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink-950);
}

.button--secondary:hover {
    border-color: var(--blue-500);
    background: #eaf4ff;
    transform: translateY(-2px);
}

.supporting-line {
    margin: 28px 0 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--text-500);
    font-size: 15px;
    font-weight: 500;
}

.supporting-line__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 6px rgba(8, 119, 255, 0.12);
    animation: pulse 2.6s ease-in-out infinite;
}

.buddy-stage {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    perspective: 1000px;
}

.buddy-frame {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    aspect-ratio: 0.88;
    padding: 12px;
    display: grid;
    border: 1px solid rgba(114, 135, 155, 0.55);
    border-radius: 52px;
    background: linear-gradient(145deg, #f9fcff 0%, #a9bacb 18%, #f8fbfe 36%, #72879b 63%, #ffffff 84%);
    box-shadow:
        0 28px 70px rgba(6, 17, 31, 0.18),
        0 0 0 6px rgba(255, 255, 255, 0.7);
    transform-style: preserve-3d;
    transition: transform 240ms ease-out;
}

.buddy-frame::before {
    position: absolute;
    inset: 9px;
    border: 2px solid rgba(22, 200, 255, 0.58);
    border-radius: 42px;
    box-shadow: inset 0 0 24px rgba(22, 200, 255, 0.22), 0 0 19px rgba(8, 119, 255, 0.16);
    content: "";
    pointer-events: none;
}

.buddy-frame__inner {
    position: relative;
    min-width: 0;
    min-height: 0;
    padding: 18px;
    overflow: hidden;
    border-radius: 40px;
    background:
        radial-gradient(circle at 50% 44%, rgba(22, 200, 255, 0.16), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 249, 0.88));
}

.buddy-frame__inner img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 42px);
    height: calc(100% - 42px);
    object-fit: contain;
    filter: drop-shadow(0 20px 20px rgba(6, 17, 31, 0.2));
    transform: translate(-50%, -50%);
}

.floating-panel {
    position: absolute;
    z-index: 3;
    width: 116px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.36);
    box-shadow: 0 15px 36px rgba(6, 17, 31, 0.08);
    backdrop-filter: blur(14px);
    animation: float-panel 8s ease-in-out infinite;
}

.floating-panel--one {
    top: 21%;
    left: -2%;
}

.floating-panel--two {
    right: -2%;
    bottom: 18%;
    width: 90px;
    animation-delay: -2.2s;
}

.floating-panel--three {
    right: 8%;
    top: 13%;
    width: 62px;
    height: 48px;
    animation-delay: -4.4s;
}

.stage-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(8, 119, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.stage-orbit--one {
    width: 590px;
    height: 590px;
}

.stage-orbit--two {
    width: 660px;
    height: 430px;
    transform: rotate(-18deg);
}

.foundation-cards {
    width: min(100%, var(--content-width));
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.foundation-card {
    min-height: 118px;
    padding: 24px 26px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(169, 186, 203, 0.55);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-card);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.foundation-card:hover {
    border-color: rgba(8, 119, 255, 0.6);
    box-shadow: 0 22px 54px rgba(8, 119, 255, 0.14);
    transform: translateY(-6px);
}

.foundation-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.22);
    border-radius: 14px;
    background: #edf6ff;
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-weight: 800;
}

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

.foundation-card strong {
    font-family: Manrope, sans-serif;
    font-size: 18px;
}

.foundation-card small {
    margin-top: 4px;
    color: var(--text-500);
    font-size: 13px;
}

.milestone-panel,
.page-shell {
    padding: 104px max(32px, calc((100vw - 920px) / 2));
    background: var(--white);
}

.milestone-panel {
    border-radius: 64px 64px 0 0;
    text-align: center;
}

.milestone-panel h2 {
    margin: 0 auto;
    max-width: 760px;
    font-family: Manrope, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.milestone-panel > p:not(.section-kicker) {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--text-700);
    font-size: 17px;
}

.intro-proof {
    max-width: 980px;
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(169, 186, 203, 0.5);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(244, 248, 252, 0.94), rgba(255, 255, 255, 0.98));
    box-shadow: 0 18px 44px rgba(12, 35, 59, 0.08);
    overflow: hidden;
    text-align: left;
}

.intro-proof > div {
    min-height: 150px;
    padding: 30px;
    display: grid;
    align-content: center;
    gap: 8px;
}

.intro-proof > div + div {
    border-left: 1px solid rgba(169, 186, 203, 0.42);
}

.intro-proof strong,
.intro-proof span {
    display: block;
}

.intro-proof strong {
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 21px;
}

.intro-proof span {
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.55;
}

.home-section {
    padding: 112px max(32px, calc((100vw - var(--content-width)) / 2));
}

.services-showcase {
    background:
        radial-gradient(circle at 8% 14%, rgba(22, 200, 255, 0.08), transparent 25rem),
        var(--ice-50);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 70px;
}

.section-heading .section-kicker {
    margin-bottom: 18px;
}

.section-heading h2,
.buddy-difference h2,
.home-cta h2 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(38px, 4.3vw, 58px);
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--text-700);
    font-size: 17px;
    line-height: 1.7;
}

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

.service-card {
    position: relative;
    min-height: 410px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(169, 186, 203, 0.58);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 249, 0.82));
    box-shadow: 0 16px 38px rgba(12, 35, 59, 0.08);
    overflow: hidden;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-card::after {
    position: absolute;
    right: -92px;
    bottom: -112px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(8, 119, 255, 0.13);
    border-radius: 50%;
    content: "";
    transition: transform 400ms ease;
}

.service-card:hover {
    border-color: rgba(8, 119, 255, 0.58);
    box-shadow: 0 24px 58px rgba(8, 119, 255, 0.13);
    transform: translateY(-6px);
}

.service-card:hover::after {
    transform: scale(1.18);
}

.service-card--featured {
    background:
        radial-gradient(circle at 88% 12%, rgba(22, 200, 255, 0.2), transparent 18rem),
        linear-gradient(145deg, #082139, #06111f);
    color: var(--white);
}

.service-card__number {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.service-card--featured .service-card__number {
    border-color: rgba(22, 200, 255, 0.35);
    background: rgba(22, 200, 255, 0.1);
    color: var(--cyan-400);
}

.service-card > div,
.service-card > a {
    position: relative;
    z-index: 1;
}

.service-card__label {
    margin: 0 0 14px;
    color: var(--blue-600);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.service-card--featured .service-card__label {
    color: var(--cyan-400);
}

.service-card h3 {
    max-width: 500px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(25px, 2.4vw, 34px);
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.service-card p:not(.service-card__label) {
    max-width: 540px;
    margin: 18px 0 0;
    color: var(--text-500);
    line-height: 1.7;
}

.service-card--featured p:not(.service-card__label) {
    color: rgba(255, 255, 255, 0.68);
}

.service-card > a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blue-600);
    font-weight: 700;
}

.service-card--featured > a {
    color: var(--cyan-400);
}

.service-card > a span {
    transition: transform 180ms ease;
}

.service-card > a:hover span {
    transform: translateX(5px);
}

.section-action {
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blue-600);
    font-weight: 700;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.buddy-difference {
    position: relative;
    padding: 116px max(32px, calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 92px;
    background:
        radial-gradient(circle at 8% 12%, rgba(8, 119, 255, 0.28), transparent 31rem),
        radial-gradient(circle at 92% 82%, rgba(22, 200, 255, 0.12), transparent 27rem),
        linear-gradient(135deg, #06111f, #092039 65%, #071827);
    color: var(--white);
    overflow: hidden;
}

.buddy-difference::before {
    position: absolute;
    top: -160px;
    right: 34%;
    width: 420px;
    height: 620px;
    border: 1px solid rgba(22, 200, 255, 0.08);
    border-radius: 80px;
    content: "";
    pointer-events: none;
    transform: rotate(33deg);
}

.difference-copy,
.difference-grid {
    position: relative;
    z-index: 1;
}

.section-kicker--light {
    color: var(--cyan-400);
}

.difference-copy > p:not(.section-kicker) {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.75;
}

.button--light {
    margin-top: 34px;
    background: var(--white);
    color: var(--ink-950);
}

.button--light:hover {
    background: #e9f7ff;
    box-shadow: 0 14px 34px rgba(22, 200, 255, 0.16);
    transform: translateY(-2px);
}

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

.difference-card {
    min-height: 230px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.difference-card:hover {
    border-color: rgba(22, 200, 255, 0.34);
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-5px);
}

.difference-card > span {
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.difference-card h3 {
    margin: 46px 0 0;
    font-family: Manrope, sans-serif;
    font-size: 22px;
}

.difference-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}

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

.process-list {
    margin: 64px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--silver-200);
    list-style: none;
}

.process-step {
    position: relative;
    min-height: 280px;
    padding: 34px 28px 18px 0;
}

.process-step + .process-step {
    padding-left: 28px;
    border-left: 1px solid var(--silver-200);
}

.process-step::before {
    position: absolute;
    top: -5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 7px rgba(8, 119, 255, 0.1);
    content: "";
}

.process-step + .process-step::before {
    left: 28px;
}

.process-step > span {
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.process-step h3 {
    margin: 72px 0 0;
    font-family: Manrope, sans-serif;
    font-size: 25px;
}

.process-step p {
    margin: 12px 0 0;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.7;
}

.projects-preview {
    background:
        radial-gradient(circle at 84% 12%, rgba(8, 119, 255, 0.08), transparent 31rem),
        var(--ice-50);
}

.project-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.project-card {
    min-width: 0;
    border: 1px solid rgba(169, 186, 203, 0.55);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(12, 35, 59, 0.08);
    overflow: hidden;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.project-card--wide {
    grid-column: span 2;
}

.project-card:hover {
    border-color: rgba(8, 119, 255, 0.48);
    box-shadow: 0 26px 62px rgba(8, 119, 255, 0.14);
    transform: translateY(-7px);
}

.project-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ice-100);
}

.project-card--wide .project-card__image {
    aspect-ratio: 2.25 / 1;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-card__image img {
    transform: scale(1.035);
}

.project-card__content {
    min-height: 190px;
    padding: 28px 30px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.project-card__content > div > span {
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-card__content h3 {
    margin: 8px 0 0;
    font-family: Manrope, sans-serif;
    font-size: 26px;
    letter-spacing: -0.025em;
}

.project-card__content p {
    max-width: 700px;
    margin: 10px 0 0;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.65;
}

.project-card__arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.22);
    border-radius: 50%;
    background: #edf6ff;
    color: var(--blue-600);
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-card:hover .project-card__arrow {
    background: var(--blue-600);
    color: var(--white);
    transform: translate(3px, -3px);
}

.home-cta {
    position: relative;
    min-height: 590px;
    padding: 110px max(32px, calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    align-items: center;
    gap: 64px;
    background: linear-gradient(90deg, rgba(6, 17, 31, 0.99) 0%, rgba(8, 26, 45, 0.95) 58%, rgba(8, 26, 45, 0.78) 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.home-cta__glow {
    position: absolute;
    z-index: -1;
    top: -220px;
    right: 12%;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 200, 255, 0.2), transparent 66%);
    filter: blur(6px);
}

.home-cta__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.home-cta__content > p:not(.section-kicker) {
    max-width: 660px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.75;
}

.button--ghost-light {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.button--ghost-light:hover {
    border-color: var(--cyan-400);
    background: rgba(22, 200, 255, 0.1);
    transform: translateY(-2px);
}

.home-cta > img {
    position: relative;
    z-index: 1;
    width: min(450px, 100%);
    height: auto;
    justify-self: end;
    object-fit: contain;
    opacity: 0.32;
    filter: saturate(1.12) drop-shadow(0 0 44px rgba(22, 200, 255, 0.16));
    pointer-events: none;
}

.about-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 82px max(32px, calc((100vw - var(--content-width)) / 2)) 96px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 78% 30%, rgba(22, 200, 255, 0.13), transparent 30rem),
        linear-gradient(135deg, var(--ice-0), var(--ice-50) 58%, var(--ice-100));
    overflow: hidden;
    isolation: isolate;
}

.about-hero::before,
.about-hero::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(8, 119, 255, 0.09);
    content: "";
    pointer-events: none;
    transform: rotate(27deg);
}

.about-hero::before {
    top: -230px;
    left: 4%;
    width: 310px;
    height: 690px;
    border-radius: 64px;
}

.about-hero::after {
    right: -110px;
    bottom: -240px;
    width: 360px;
    height: 620px;
    border-radius: 80px;
}

.about-hero__grid {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: 76px;
}

.about-hero__copy {
    max-width: 700px;
}

.about-hero__copy .section-kicker {
    margin-bottom: 22px;
}

.about-hero h1 {
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(52px, 5.2vw, 72px);
    font-weight: 800;
    letter-spacing: -0.052em;
    line-height: 1;
}

.about-hero__intro {
    max-width: 660px;
    margin: 28px 0 0;
    color: var(--text-700);
    font-size: 18px;
    line-height: 1.75;
}

.about-specialisms {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-specialisms span {
    min-height: 38px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(8, 119, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #295e96;
    font-size: 13px;
    font-weight: 700;
}

.about-hero__actions {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.about-portrait {
    position: relative;
    min-height: 600px;
    margin: 0;
    display: grid;
    place-items: center;
}

.about-portrait__ring {
    position: relative;
    z-index: 2;
    width: min(470px, 100%);
    aspect-ratio: 1;
    padding: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(114, 135, 155, 0.7);
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #a9bacb 18%, #f8fbfe 40%, #72879b 67%, #ffffff);
    box-shadow:
        0 30px 75px rgba(6, 17, 31, 0.19),
        0 0 0 8px rgba(255, 255, 255, 0.68);
}

.about-portrait__ring::before {
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(22, 200, 255, 0.62);
    border-radius: 50%;
    box-shadow: inset 0 0 26px rgba(22, 200, 255, 0.2), 0 0 22px rgba(8, 119, 255, 0.14);
    content: "";
    pointer-events: none;
}

.about-portrait__ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.about-portrait figcaption {
    position: absolute;
    z-index: 4;
    right: -4px;
    bottom: 38px;
    width: min(310px, 76%);
    padding: 21px 24px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
}

.about-portrait figcaption span,
.about-portrait figcaption strong,
.about-portrait figcaption small {
    display: block;
}

.about-portrait figcaption span {
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-portrait figcaption strong {
    margin-top: 4px;
    font-family: Manrope, sans-serif;
    font-size: 22px;
}

.about-portrait figcaption small {
    margin-top: 7px;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.5;
}

.about-portrait__orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(8, 119, 255, 0.12);
    border-radius: 50%;
}

.about-portrait__orbit--one {
    width: 560px;
    height: 560px;
}

.about-portrait__orbit--two {
    width: 620px;
    height: 410px;
    transform: rotate(-18deg);
}

.about-section {
    padding: 112px max(32px, calc((100vw - var(--content-width)) / 2));
}

.about-foundation {
    background: var(--white);
}

.about-story-grid {
    margin-top: 66px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: stretch;
    gap: 24px;
}

.about-story-copy {
    padding: 46px;
    border: 1px solid rgba(169, 186, 203, 0.5);
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #f4f8fc);
    box-shadow: 0 18px 44px rgba(12, 35, 59, 0.07);
}

.about-story-copy p {
    max-width: 68ch;
    margin: 0;
    color: var(--text-700);
    font-size: 16px;
    line-height: 1.82;
}

.about-story-copy p + p {
    margin-top: 20px;
}

.about-story-copy .about-story-copy__closing {
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.about-quote-panel {
    position: relative;
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(22, 200, 255, 0.22), transparent 17rem),
        linear-gradient(145deg, #092139, #06111f);
    color: var(--white);
    box-shadow: 0 24px 58px rgba(6, 17, 31, 0.18);
    overflow: hidden;
}

.about-quote-panel__mark {
    position: absolute;
    top: -44px;
    right: 24px;
    color: rgba(22, 200, 255, 0.12);
    font-family: Georgia, serif;
    font-size: 220px;
    line-height: 1;
}

.about-quote-panel blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.18;
}

.about-quote-panel > p {
    position: relative;
    z-index: 1;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.about-quote-panel > div {
    position: relative;
    z-index: 1;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-quote-panel > div span,
.about-quote-panel > div strong {
    display: block;
}

.about-quote-panel > div span {
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-quote-panel > div strong {
    margin-top: 5px;
    font-family: Manrope, sans-serif;
    font-size: 18px;
}

.about-values {
    background:
        radial-gradient(circle at 12% 18%, rgba(22, 200, 255, 0.08), transparent 25rem),
        var(--ice-50);
}

.values-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.value-card {
    min-height: 330px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(169, 186, 203, 0.55);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 38px rgba(12, 35, 59, 0.07);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.value-card:hover {
    border-color: rgba(8, 119, 255, 0.5);
    box-shadow: 0 24px 54px rgba(8, 119, 255, 0.12);
    transform: translateY(-6px);
}

.value-card > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.2);
    border-radius: 50%;
    background: #edf6ff;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
}

.value-card h3 {
    margin: auto 0 0;
    padding-top: 46px;
    font-family: Manrope, sans-serif;
    font-size: 22px;
    line-height: 1.2;
}

.value-card p {
    margin: 12px 0 0;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.68;
}

.human-section {
    position: relative;
    padding: 116px max(32px, calc((100vw - var(--content-width)) / 2));
    background:
        radial-gradient(circle at 12% 14%, rgba(8, 119, 255, 0.3), transparent 31rem),
        radial-gradient(circle at 90% 82%, rgba(22, 200, 255, 0.12), transparent 27rem),
        linear-gradient(135deg, #06111f, #092039 65%, #071827);
    color: var(--white);
    overflow: hidden;
}

.human-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: start;
    gap: 92px;
}

.human-section__heading h2,
.thea-section h2,
.evolution-copy h2,
.about-final-cta h2 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(38px, 4.3vw, 58px);
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.human-section__heading > p:not(.section-kicker) {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.75;
}

.human-section__content {
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
}

.human-section__content > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.82;
}

.human-section__content > p + p {
    margin-top: 20px;
}

.human-principles {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.human-principles span {
    min-height: 70px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 16px;
    background: rgba(22, 200, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
}

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

.thea-section__card {
    padding: 58px;
    display: grid;
    grid-template-columns: 100px minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: 48px;
    border: 1px solid rgba(169, 186, 203, 0.54);
    border-radius: 32px;
    background:
        radial-gradient(circle at 94% 18%, rgba(22, 200, 255, 0.1), transparent 20rem),
        linear-gradient(145deg, #ffffff, #f4f8fc);
    box-shadow: var(--shadow-card);
}

.thea-section__number {
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.25);
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #dcecff);
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 40px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(8, 119, 255, 0.12);
}

.thea-section__card .section-kicker {
    margin-bottom: 16px;
}

.thea-section h2 {
    font-size: clamp(34px, 3.8vw, 50px);
}

.thea-section__card > div:nth-child(2) > p:not(.section-kicker) {
    margin: 22px 0 0;
    color: var(--text-700);
    line-height: 1.78;
}

.thea-section__card blockquote {
    margin: 0;
    padding: 30px;
    border-left: 3px solid var(--blue-500);
    border-radius: 0 20px 20px 0;
    background: rgba(8, 119, 255, 0.055);
    color: var(--navy-800);
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.evolution-section {
    background:
        radial-gradient(circle at 18% 52%, rgba(22, 200, 255, 0.1), transparent 28rem),
        var(--ice-50);
}

.evolution-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 88px;
}

.evolution-visual {
    min-height: 560px;
    display: grid;
    place-items: center;
}

.evolution-visual__frame {
    position: relative;
    width: min(500px, 100%);
    aspect-ratio: 0.92;
    padding: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(114, 135, 155, 0.58);
    border-radius: 44px;
    background: linear-gradient(145deg, #ffffff, #d5e0ea 22%, #f8fbfe 44%, #a9bacb 74%, #ffffff);
    box-shadow: 0 28px 70px rgba(6, 17, 31, 0.16);
    overflow: hidden;
}

.evolution-visual__frame::before {
    position: absolute;
    inset: 11px;
    border: 2px solid rgba(22, 200, 255, 0.55);
    border-radius: 34px;
    box-shadow: inset 0 0 26px rgba(22, 200, 255, 0.2);
    content: "";
}

.evolution-visual__glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 200, 255, 0.24), transparent 68%);
    filter: blur(10px);
}

.evolution-visual__frame img {
    position: relative;
    z-index: 2;
    width: 92%;
    height: 92%;
    object-fit: contain;
    filter: drop-shadow(0 22px 22px rgba(6, 17, 31, 0.2));
}

.evolution-copy > p:not(.section-kicker) {
    margin: 24px 0 0;
    color: var(--text-700);
    font-size: 16px;
    line-height: 1.8;
}

.evolution-points {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.evolution-points > div {
    min-height: 128px;
    padding: 22px;
    border: 1px solid rgba(169, 186, 203, 0.5);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.evolution-points span,
.evolution-points strong {
    display: block;
}

.evolution-points span {
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.evolution-points strong {
    margin-top: 9px;
    font-family: Manrope, sans-serif;
    font-size: 17px;
    line-height: 1.4;
}

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

.learning-list {
    margin: 64px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid rgba(169, 186, 203, 0.5);
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #f4f8fc);
    box-shadow: 0 16px 38px rgba(12, 35, 59, 0.07);
    list-style: none;
    overflow: hidden;
}

.learning-list li {
    min-height: 190px;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.learning-list li + li {
    border-left: 1px solid rgba(169, 186, 203, 0.48);
}

.learning-list span {
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
}

.learning-list strong {
    font-family: Manrope, sans-serif;
    font-size: 22px;
}

.about-final-cta {
    position: relative;
    min-height: 600px;
    padding: 104px max(32px, calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    align-items: center;
    gap: 64px;
    background:
        radial-gradient(circle at 82% 30%, rgba(22, 200, 255, 0.18), transparent 29rem),
        linear-gradient(135deg, #06111f, #092039 70%, #071827);
    color: var(--white);
    overflow: hidden;
}

.about-final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.about-final-cta__content > p:not(.section-kicker) {
    max-width: 670px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.75;
}

.about-final-cta__actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.about-final-cta > img {
    position: relative;
    z-index: 1;
    width: min(430px, 100%);
    height: auto;
    justify-self: end;
    object-fit: contain;
    opacity: 0.24;
    filter: saturate(1.1) drop-shadow(0 0 42px rgba(22, 200, 255, 0.15));
    pointer-events: none;
}

.page-shell {
    min-height: calc(100vh - 82px);
    display: grid;
    align-items: center;
}

.page-intro {
    max-width: 820px;
}

.page-intro h1 {
    font-size: clamp(48px, 6vw, 72px);
}

.page-intro > p:not(.section-kicker) {
    max-width: 700px;
    margin: 26px 0 0;
    color: var(--text-700);
    font-size: 19px;
}

.site-footer {
    padding: 56px max(32px, calc((100vw - var(--content-width)) / 2)) 24px;
    background: var(--ink-950);
    color: var(--white);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
}

.footer-shell strong {
    font-family: Manrope, sans-serif;
    font-size: 24px;
}

.footer-shell p {
    max-width: 580px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-actions {
    display: grid;
    align-content: start;
    justify-items: end;
    gap: 8px;
}

.footer-actions a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-actions a:hover {
    color: var(--cyan-400);
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal-up 650ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-copy .reveal-item:nth-child(2) {
    animation-delay: 70ms;
}

.hero-copy .reveal-item:nth-child(3) {
    animation-delay: 140ms;
}

.hero-copy .reveal-item:nth-child(4) {
    animation-delay: 210ms;
}

.hero-copy .reveal-item:nth-child(5) {
    animation-delay: 280ms;
}

.buddy-stage.reveal-item {
    transform: scale(0.965);
    animation-name: emblem-in;
    animation-delay: 120ms;
    animation-duration: 720ms;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes reveal-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes emblem-in {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float-panel {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(8, 119, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(8, 119, 255, 0.02);
    }
}

@media (max-width: 1120px) {
    .primary-navigation {
        gap: 24px;
    }

    .hero {
        padding-inline: 40px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 52fr) minmax(390px, 48fr);
    }

    .hero h1 {
        font-size: clamp(54px, 6vw, 66px);
    }

    .buddy-frame {
        width: min(470px, 100%);
    }

    .stage-orbit--one {
        width: 500px;
        height: 500px;
    }

    .stage-orbit--two {
        width: 540px;
    }

    .buddy-difference {
        gap: 48px;
    }

    .home-cta > img {
        width: min(400px, 100%);
    }
}

@media (max-width: 900px) {
    .site-header,
    .site-header.is-scrolled {
        height: 72px;
    }

    .nav-shell {
        width: min(calc(100% - 40px), var(--content-width));
    }

    .brand {
        width: 82px;
        height: 100%;
    }

    .brand img {
        width: auto;
        height: 64px;
    }

    .menu-toggle {
        display: inline-flex;
        padding: 0 12px;
    }

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

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

    .primary-navigation {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        height: auto;
        padding: 36px 28px;
        display: grid;
        align-content: start;
        gap: 4px;
        background: rgba(4, 14, 26, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-14px);
        visibility: hidden;
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    }

    .primary-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        visibility: visible;
    }

    .nav-link {
        min-height: 58px;
        padding: 0 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 19px;
    }

    .nav-link::after {
        right: auto;
        bottom: 0;
        width: 56px;
    }

    .hero {
        min-height: auto;
        padding: 64px 40px 48px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hero-copy {
        max-width: 720px;
        padding: 0;
    }

    .buddy-stage {
        min-height: 650px;
    }

    .buddy-frame {
        width: min(610px, 86vw);
    }

    .foundation-cards {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .home-section,
    .buddy-difference {
        padding: 88px 40px;
    }

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

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

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

    .difference-copy {
        max-width: 700px;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top: 0;
    }

    .process-step {
        min-height: 240px;
        padding: 32px 26px 30px 0;
        border-top: 1px solid var(--silver-200);
    }

    .process-step + .process-step {
        padding-left: 26px;
    }

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

    .process-step:nth-child(3)::before {
        left: 0;
    }

    .project-card--wide .project-card__image {
        aspect-ratio: 16 / 9;
    }

    .home-cta {
        min-height: 560px;
        padding: 88px 40px;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
        gap: 34px;
    }

    .home-cta__content {
        max-width: 670px;
    }

    .home-cta > img {
        width: min(320px, 100%);
        opacity: 0.22;
    }

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

    .footer-actions {
        justify-items: start;
    }
}

@media (max-width: 640px) {
    .site-header,
    .site-header.is-scrolled {
        height: 66px;
    }

    .nav-shell {
        width: calc(100% - 32px);
    }

    .brand {
        width: 70px;
        height: 100%;
    }

    .brand img {
        width: auto;
        height: 58px;
    }

    .menu-toggle__label {
        display: none;
    }

    .menu-toggle {
        min-width: 46px;
        width: 46px;
        padding: 0 12px;
    }

    .primary-navigation {
        top: 66px;
    }

    .hero {
        padding: 52px 20px 36px;
    }

    .hero::before,
    .hero::after,
    .stage-orbit {
        display: none;
    }

    .eyebrow,
    .section-kicker {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.55;
    }

    .eyebrow span {
        margin: 0 3px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 56px);
        line-height: 1;
    }

    .hero-intro {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-actions {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .button {
        width: 100%;
        min-height: 56px;
        padding: 0 20px;
    }

    .supporting-line {
        justify-content: center;
        text-align: center;
    }

    .buddy-stage {
        min-height: auto;
        margin-top: 34px;
        padding: 0;
    }

    .buddy-frame {
        width: 100%;
        border-radius: 30px;
    }

    .buddy-frame::before {
        border-radius: 23px;
    }

    .buddy-frame__inner {
        padding: 6px;
        border-radius: 21px;
    }

    .buddy-frame__inner img {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .floating-panel {
        display: none;
    }

    .foundation-cards {
        gap: 14px;
    }

    .foundation-card {
        min-height: 106px;
        padding: 20px;
        grid-template-columns: auto 1fr;
    }

    .foundation-card > span:last-child {
        display: none;
    }

    .milestone-panel,
    .page-shell {
        padding: 68px 20px;
    }

    .milestone-panel {
        border-radius: 36px 36px 0 0;
    }

    .intro-proof {
        margin-top: 42px;
        grid-template-columns: 1fr;
    }

    .intro-proof > div {
        min-height: 0;
        padding: 24px;
    }

    .intro-proof > div + div {
        border-top: 1px solid rgba(169, 186, 203, 0.42);
        border-left: 0;
    }

    .home-section,
    .buddy-difference,
    .home-cta {
        padding: 72px 20px;
    }

    .section-heading h2,
    .buddy-difference h2,
    .home-cta h2 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
    }

    .section-heading > p,
    .difference-copy > p:not(.section-kicker),
    .home-cta__content > p:not(.section-kicker) {
        font-size: 16px;
    }

    .service-grid {
        margin-top: 42px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        min-height: 380px;
        padding: 26px;
        border-radius: 22px;
    }

    .service-card h3 {
        font-size: 27px;
    }

    .section-action {
        margin-top: 32px;
        align-items: stretch;
        flex-direction: column;
    }

    .text-link {
        justify-content: center;
    }

    .buddy-difference {
        gap: 50px;
    }

    .button--light {
        margin-top: 30px;
    }

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

    .difference-card {
        min-height: 210px;
    }

    .process-list {
        margin-top: 46px;
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step + .process-step {
        min-height: 0;
        padding: 30px 0 34px;
        border-top: 1px solid var(--silver-200);
        border-left: 0;
    }

    .process-step::before,
    .process-step + .process-step::before {
        left: 0;
    }

    .process-step h3 {
        margin-top: 42px;
    }

    .project-grid {
        margin-top: 42px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .project-card,
    .project-card__image {
        border-radius: 22px;
    }

    .project-card__content {
        min-height: 0;
        padding: 22px;
    }

    .project-card__content p {
        font-size: 13px;
    }

    .home-cta {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .home-cta__content {
        align-self: start;
    }

    .home-cta > img {
        width: min(300px, 82vw);
        justify-self: center;
        opacity: 0.16;
    }

    .page-shell {
        min-height: calc(100vh - 66px);
    }

    .page-intro h1 {
        font-size: clamp(42px, 13vw, 56px);
        line-height: 1.02;
    }

    .page-intro > p:not(.section-kicker) {
        font-size: 17px;
    }

    .site-footer {
        padding: 48px 20px 22px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 1120px) {
    .about-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
        gap: 42px;
    }

    .about-portrait {
        min-height: 540px;
    }

    .about-portrait__ring {
        width: min(420px, 100%);
    }

    .about-portrait__orbit--one {
        width: 500px;
        height: 500px;
    }

    .about-portrait__orbit--two {
        width: 530px;
    }

    .human-section__grid,
    .evolution-grid {
        gap: 48px;
    }

    .thea-section__card {
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 34px;
    }

    .thea-section__card blockquote {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .about-hero {
        min-height: 0;
        padding: 72px 40px 88px;
    }

    .about-hero__grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .about-hero__copy {
        max-width: 740px;
    }

    .about-portrait {
        min-height: 580px;
    }

    .about-portrait__ring {
        width: min(500px, 78vw);
    }

    .about-portrait figcaption {
        right: 8%;
    }

    .about-section,
    .human-section {
        padding: 88px 40px;
    }

    .about-story-grid,
    .human-section__grid,
    .evolution-grid {
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        margin-top: 52px;
    }

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

    .value-card {
        min-height: 290px;
    }

    .human-section__heading {
        max-width: 720px;
    }

    .human-section__content {
        max-width: 760px;
    }

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

    .evolution-visual__frame {
        width: min(500px, 78vw);
    }

    .learning-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .learning-list li:nth-child(4) {
        border-left: 0;
    }

    .learning-list li:nth-child(n + 4) {
        border-top: 1px solid rgba(169, 186, 203, 0.48);
    }

    .about-final-cta {
        min-height: 560px;
        padding: 88px 40px;
        grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
        gap: 34px;
    }

    .about-final-cta > img {
        width: min(300px, 100%);
        opacity: 0.18;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 58px 20px 70px;
    }

    .about-hero::before,
    .about-hero::after,
    .about-portrait__orbit {
        display: none;
    }

    .about-hero h1 {
        font-size: clamp(42px, 12vw, 54px);
        line-height: 1.02;
    }

    .about-hero__intro {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.65;
    }

    .about-specialisms {
        margin-top: 24px;
    }

    .about-hero__actions {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-portrait {
        min-height: 430px;
    }

    .about-portrait__ring {
        width: 100%;
        max-width: 390px;
        padding: 10px;
    }

    .about-portrait__ring::before {
        inset: 7px;
    }

    .about-portrait figcaption {
        right: 0;
        bottom: 0;
        width: min(286px, 82%);
        padding: 17px 19px;
    }

    .about-section,
    .human-section,
    .about-final-cta {
        padding: 72px 20px;
    }

    .human-section__heading h2,
    .thea-section h2,
    .evolution-copy h2,
    .about-final-cta h2 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.08;
    }

    .about-story-grid {
        margin-top: 42px;
    }

    .about-story-copy,
    .about-quote-panel,
    .human-section__content {
        padding: 27px;
        border-radius: 22px;
    }

    .about-story-copy p,
    .human-section__content > p {
        font-size: 15px;
    }

    .about-quote-panel blockquote {
        font-size: 29px;
    }

    .values-grid {
        margin-top: 42px;
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 270px;
        padding: 26px;
    }

    .human-section__grid {
        gap: 46px;
    }

    .human-section__heading > p:not(.section-kicker) {
        font-size: 16px;
    }

    .human-principles {
        grid-template-columns: 1fr;
    }

    .thea-section__card {
        padding: 28px;
        grid-template-columns: 1fr;
        gap: 28px;
        border-radius: 24px;
    }

    .thea-section__number {
        width: 74px;
        height: 74px;
        font-size: 32px;
    }

    .thea-section__card blockquote {
        grid-column: auto;
        padding: 22px;
        font-size: 18px;
    }

    .evolution-grid {
        gap: 44px;
    }

    .evolution-visual {
        min-height: 0;
    }

    .evolution-visual__frame {
        width: 100%;
        padding: 18px;
        border-radius: 30px;
    }

    .evolution-visual__frame::before {
        inset: 8px;
        border-radius: 23px;
    }

    .evolution-points {
        grid-template-columns: 1fr;
    }

    .learning-list {
        margin-top: 42px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 20px;
    }

    .learning-list li {
        min-height: 150px;
    }

    .learning-list li:nth-child(odd) {
        border-left: 0;
    }

    .learning-list li:nth-child(n + 3) {
        border-top: 1px solid rgba(169, 186, 203, 0.48);
    }

    .about-final-cta {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-final-cta__content > p:not(.section-kicker) {
        font-size: 16px;
    }

    .about-final-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-final-cta > img {
        width: min(290px, 80vw);
        justify-self: center;
        opacity: 0.14;
    }
}

.services-page {
    background: var(--ice-50);
}

.services-hero {
    position: relative;
    min-height: 760px;
    padding: 74px max(32px, calc((100vw - var(--content-width)) / 2)) 88px;
    display: grid;
    align-items: center;
    background:
        linear-gradient(115deg, rgba(252, 254, 255, 0.98) 0%, rgba(244, 248, 252, 0.96) 52%, rgba(224, 241, 255, 0.9) 100%);
    isolation: isolate;
    overflow: hidden;
}

.services-hero::before,
.services-hero::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(8, 119, 255, 0.1);
    content: "";
    pointer-events: none;
    transform: rotate(28deg);
}

.services-hero::before {
    top: -240px;
    left: -130px;
    width: 460px;
    height: 760px;
    border-radius: 70px;
}

.services-hero::after {
    right: 9%;
    bottom: -360px;
    width: 440px;
    height: 780px;
    border-radius: 50%;
}

.services-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(450px, 0.98fr);
    align-items: center;
    gap: 76px;
}

.services-hero__copy {
    max-width: 700px;
}

.services-hero__copy h1 {
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(54px, 5.3vw, 76px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.services-hero__intro {
    max-width: 660px;
    margin: 28px 0 0;
    color: var(--text-700);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.7;
}

.services-hero__actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.services-hero__proof {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.services-hero__proof span {
    padding: 8px 12px;
    border: 1px solid rgba(8, 119, 255, 0.17);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #315d89;
    font-size: 12px;
    font-weight: 700;
}

.capability-map {
    position: relative;
    min-height: 590px;
    display: grid;
    place-items: center;
}

.capability-map::before {
    position: absolute;
    inset: 7%;
    border: 1px solid rgba(114, 135, 155, 0.5);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(22, 200, 255, 0.14), transparent 36%),
        rgba(255, 255, 255, 0.42);
    box-shadow:
        inset 0 0 60px rgba(255, 255, 255, 0.72),
        0 28px 80px rgba(12, 35, 59, 0.12);
    content: "";
    backdrop-filter: blur(15px);
}

.capability-map__orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(8, 119, 255, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.capability-map__orbit--one {
    width: 84%;
    height: 58%;
    transform: rotate(24deg);
}

.capability-map__orbit--two {
    width: 58%;
    height: 84%;
    transform: rotate(-28deg);
}

.capability-map__core {
    position: relative;
    z-index: 3;
    width: 260px;
    aspect-ratio: 1;
    padding: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.38);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(229, 242, 253, 0.92) 72%);
    box-shadow:
        0 0 0 12px rgba(255, 255, 255, 0.52),
        0 0 54px rgba(22, 200, 255, 0.24);
}

.capability-map__core img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 16px rgba(6, 17, 31, 0.22));
}

.capability-map__node {
    position: absolute;
    z-index: 4;
    min-width: 128px;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(12, 35, 59, 0.11);
    color: var(--navy-800);
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    backdrop-filter: blur(14px);
    animation: float-panel 7s ease-in-out infinite;
}

.capability-map__node--web {
    top: 13%;
    left: 5%;
}

.capability-map__node--apps {
    top: 14%;
    right: 2%;
    animation-delay: -1.8s;
}

.capability-map__node--systems {
    right: 0;
    bottom: 22%;
    animation-delay: -3.4s;
}

.capability-map__node--hosting {
    bottom: 23%;
    left: 0;
    animation-delay: -5.1s;
}

.capability-map__status {
    position: absolute;
    z-index: 5;
    right: 8%;
    bottom: 4%;
    min-width: 270px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 16px;
    background: rgba(6, 17, 31, 0.88);
    box-shadow: 0 18px 42px rgba(6, 17, 31, 0.2);
    color: var(--white);
    backdrop-filter: blur(16px);
}

.capability-map__status > span {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #52f5b0;
    box-shadow: 0 0 0 6px rgba(82, 245, 176, 0.1);
}

.capability-map__status strong,
.capability-map__status small {
    display: block;
}

.capability-map__status strong {
    font-family: Manrope, sans-serif;
    font-size: 14px;
}

.capability-map__status small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.services-jump-nav {
    min-height: 80px;
    padding: 0 max(32px, calc((100vw - var(--content-width)) / 2));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-top: 1px solid rgba(169, 186, 203, 0.42);
    border-bottom: 1px solid rgba(169, 186, 203, 0.42);
    background: rgba(255, 255, 255, 0.9);
}

.services-jump-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--text-700);
    font-size: 13px;
    font-weight: 700;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.services-jump-nav a:hover {
    background: #e9f5ff;
    color: var(--blue-600);
    transform: translateY(-2px);
}

.services-introduction,
.service-process-section,
.digital-foundation-section {
    padding: 112px max(32px, calc((100vw - var(--content-width)) / 2));
}

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

.services-introduction__grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.service-outcome-card {
    min-height: 292px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(169, 186, 203, 0.52);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 253, 0.9));
    box-shadow: 0 14px 34px rgba(12, 35, 59, 0.07);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.service-outcome-card:hover {
    border-color: rgba(8, 119, 255, 0.48);
    box-shadow: 0 22px 48px rgba(8, 119, 255, 0.11);
    transform: translateY(-6px);
}

.service-outcome-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.22);
    border-radius: 50%;
    background: #e9f5ff;
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.service-outcome-card h3 {
    margin: auto 0 0;
    padding-top: 42px;
    font-family: Manrope, sans-serif;
    font-size: 23px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.service-outcome-card p {
    margin: 13px 0 0;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.65;
}

.service-detail-section {
    padding: 122px max(32px, calc((100vw - var(--content-width)) / 2));
    background:
        radial-gradient(circle at 92% 22%, rgba(22, 200, 255, 0.08), transparent 25rem),
        var(--ice-50);
    scroll-margin-top: 96px;
}

.service-detail-section--ice {
    background:
        radial-gradient(circle at 9% 78%, rgba(8, 119, 255, 0.08), transparent 26rem),
        var(--white);
}

.service-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    align-items: center;
    gap: 88px;
}

.service-detail--reverse .service-detail__copy {
    order: 2;
}

.service-detail--reverse .app-capability-panel {
    order: 1;
}

.service-detail__copy h2 {
    max-width: 670px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(40px, 4.5vw, 60px);
    letter-spacing: -0.048em;
    line-height: 1.04;
}

.service-detail__copy > p:not(.section-kicker) {
    max-width: 680px;
    margin: 26px 0 0;
    color: var(--text-700);
    font-size: 17px;
    line-height: 1.75;
}

.service-detail__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.service-detail__panel {
    padding: 34px;
    border: 1px solid rgba(169, 186, 203, 0.58);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(231, 242, 251, 0.9));
    box-shadow: 0 26px 62px rgba(12, 35, 59, 0.12);
}

.service-detail__panel-heading {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(8, 119, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.service-detail__panel-heading > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--blue-600);
    color: var(--white);
    font-family: Manrope, sans-serif;
    font-weight: 800;
}

.service-detail__panel-heading small,
.service-detail__panel-heading strong {
    display: block;
}

.service-detail__panel-heading small {
    color: var(--text-500);
    font-size: 12px;
}

.service-detail__panel-heading strong {
    margin-top: 2px;
    font-family: Manrope, sans-serif;
    font-size: 18px;
}

.service-feature-list {
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    list-style: none;
}

.service-feature-list li {
    min-height: 61px;
    padding: 13px 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(169, 186, 203, 0.4);
    color: var(--text-700);
    font-weight: 600;
}

.service-feature-list li:last-child {
    border-bottom: 0;
}

.service-feature-list li span {
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.app-capability-panel {
    min-height: 610px;
    padding: 46px;
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(230px, 1fr);
    align-items: center;
    gap: 34px;
    border: 1px solid rgba(169, 186, 203, 0.52);
    border-radius: 34px;
    background:
        radial-gradient(circle at 25% 25%, rgba(22, 200, 255, 0.18), transparent 18rem),
        linear-gradient(145deg, #06111f, #102a45);
    box-shadow: 0 28px 68px rgba(6, 17, 31, 0.2);
    overflow: hidden;
}

.app-capability-panel__phone {
    position: relative;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 0.53;
    margin: 0 auto;
    padding: 11px;
    border: 2px solid rgba(213, 224, 234, 0.7);
    border-radius: 42px;
    background: linear-gradient(145deg, #dfe9f2, #6f8498 42%, #f7fbff 78%);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.app-capability-panel__speaker {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 50%;
    width: 52px;
    height: 5px;
    border-radius: 999px;
    background: rgba(6, 17, 31, 0.72);
    transform: translateX(-50%);
}

.app-capability-panel__screen {
    height: 100%;
    padding: 52px 18px 22px;
    display: flex;
    flex-direction: column;
    border-radius: 31px;
    background:
        radial-gradient(circle at 72% 14%, rgba(22, 200, 255, 0.28), transparent 11rem),
        linear-gradient(165deg, #0f2b49, #071422);
    color: var(--white);
}

.app-screen__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22, 200, 255, 0.34);
    border-radius: 15px;
    background: rgba(22, 200, 255, 0.12);
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.app-capability-panel__screen > strong {
    margin-top: 28px;
    font-family: Manrope, sans-serif;
    font-size: clamp(24px, 2.6vw, 34px);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.app-screen__actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.app-screen__actions span {
    min-height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
}

.app-capability-panel__list {
    display: grid;
}

.app-capability-panel__list span {
    min-height: 72px;
    padding: 16px 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 600;
}

.app-capability-panel__list span::before {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--cyan-400);
    box-shadow: 0 0 0 5px rgba(22, 200, 255, 0.1);
    content: "";
}

.app-capability-panel__list span:last-child {
    border-bottom: 0;
}

.custom-systems-section {
    padding: 124px max(32px, calc((100vw - var(--content-width)) / 2));
    background:
        radial-gradient(circle at 85% 12%, rgba(22, 200, 255, 0.12), transparent 30rem),
        radial-gradient(circle at 4% 82%, rgba(8, 119, 255, 0.11), transparent 32rem),
        #061421;
    color: var(--white);
    scroll-margin-top: 90px;
}

.custom-systems-section__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 74px;
}

.custom-systems-section__heading h2 {
    max-width: 790px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(44px, 5vw, 66px);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.custom-systems-section__heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 17px;
    line-height: 1.75;
}

.solution-explorer {
    margin-top: 70px;
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.solution-explorer__tabs {
    padding: 18px;
    display: grid;
    align-content: stretch;
    gap: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.12);
}

.solution-tab {
    min-height: 66px;
    padding: 14px 17px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.solution-tab:hover {
    border-color: rgba(22, 200, 255, 0.2);
    background: rgba(22, 200, 255, 0.06);
    color: var(--white);
    transform: translateX(3px);
}

.solution-tab.is-active {
    border-color: rgba(22, 200, 255, 0.42);
    background: linear-gradient(135deg, rgba(8, 119, 255, 0.2), rgba(22, 200, 255, 0.08));
    box-shadow: inset 3px 0 0 var(--cyan-400);
    color: var(--white);
}

.solution-explorer__panel {
    min-height: 540px;
    padding: 54px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background:
        radial-gradient(circle at 92% 10%, rgba(22, 200, 255, 0.13), transparent 22rem);
}

.solution-explorer__panel.is-refreshing {
    animation: solution-refresh 360ms ease both;
}

.solution-explorer__eyebrow {
    color: var(--cyan-400);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.solution-explorer__panel h3 {
    max-width: 740px;
    margin: 20px 0 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(32px, 3.5vw, 48px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.solution-explorer__panel > p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.75;
}

.solution-explorer__panel ul {
    width: min(100%, 760px);
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}

.solution-explorer__panel li {
    min-height: 54px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
}

.solution-explorer__panel li::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--cyan-400);
    content: "";
}

.solution-explorer__panel .button {
    margin-top: auto;
}

.custom-system-principles {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.custom-system-principles article {
    min-height: 168px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.custom-system-principles span {
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.custom-system-principles p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.65;
}

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

.service-process {
    margin: 68px 0 0;
    padding: 0;
    display: grid;
    border-top: 1px solid rgba(169, 186, 203, 0.55);
    list-style: none;
}

.service-process li {
    min-height: 138px;
    padding: 28px 10px;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    border-bottom: 1px solid rgba(169, 186, 203, 0.55);
    transition: background 180ms ease, padding 180ms ease;
}

.service-process li:hover {
    padding-inline: 24px;
    background: #f4faff;
}

.service-process li > span {
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.service-process h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 24px;
    letter-spacing: -0.025em;
}

.service-process p {
    margin: 8px 0 0;
    color: var(--text-500);
    font-size: 15px;
}

.digital-foundation-section {
    background:
        radial-gradient(circle at 12% 14%, rgba(22, 200, 255, 0.08), transparent 25rem),
        var(--ice-50);
}

.foundation-service-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.foundation-service-card {
    min-height: 390px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(169, 186, 203, 0.56);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 38px rgba(12, 35, 59, 0.08);
    scroll-margin-top: 96px;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.foundation-service-card:hover {
    border-color: rgba(8, 119, 255, 0.5);
    box-shadow: 0 24px 58px rgba(8, 119, 255, 0.13);
    transform: translateY(-6px);
}

.foundation-service-card--featured {
    background:
        radial-gradient(circle at 88% 14%, rgba(22, 200, 255, 0.2), transparent 16rem),
        linear-gradient(145deg, #082139, #06111f);
    color: var(--white);
}

.foundation-service-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.24);
    border-radius: 15px;
    background: #e9f5ff;
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.foundation-service-card--featured .foundation-service-card__icon {
    border-color: rgba(22, 200, 255, 0.36);
    background: rgba(22, 200, 255, 0.1);
    color: var(--cyan-400);
}

.foundation-service-card .service-card__label {
    margin-top: 34px;
}

.foundation-service-card--featured .service-card__label {
    color: var(--cyan-400);
}

.foundation-service-card h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: 29px;
    letter-spacing: -0.035em;
    line-height: 1.13;
}

.foundation-service-card p:not(.service-card__label) {
    margin: 18px 0 0;
    color: var(--text-500);
    font-size: 15px;
    line-height: 1.7;
}

.foundation-service-card--featured p:not(.service-card__label) {
    color: rgba(255, 255, 255, 0.65);
}

.foundation-service-card > a {
    width: fit-content;
    margin-top: auto;
    padding-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--blue-600);
    font-weight: 700;
}

.foundation-service-card--featured > a {
    color: var(--cyan-400);
}

.foundation-service-card > a span {
    transition: transform 180ms ease;
}

.foundation-service-card > a:hover span {
    transform: translateX(5px);
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    margin: -1px !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.domains-section {
    padding: 122px max(32px, calc((100vw - var(--content-width)) / 2));
    background:
        radial-gradient(circle at 92% 4%, rgba(22, 200, 255, 0.1), transparent 31rem),
        linear-gradient(180deg, #edf6fd 0%, #f8fbfe 36%, #ffffff 100%);
    scroll-margin-top: 84px;
}

.domains-section [hidden] {
    display: none !important;
}

.domains-intro {
    position: relative;
    min-height: 550px;
    padding: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    align-items: center;
    gap: 74px;
    border: 1px solid rgba(22, 200, 255, 0.18);
    border-radius: 34px;
    background:
        radial-gradient(circle at 82% 14%, rgba(22, 200, 255, 0.2), transparent 26rem),
        radial-gradient(circle at 16% 88%, rgba(8, 119, 255, 0.18), transparent 32rem),
        linear-gradient(125deg, #06111f 0%, #0a2036 62%, #123452 100%);
    box-shadow: 0 36px 90px rgba(6, 17, 31, 0.2);
    color: var(--white);
    overflow: hidden;
}

.domains-intro::before {
    position: absolute;
    top: -150px;
    right: 19%;
    width: 310px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    transform: rotate(32deg);
    pointer-events: none;
}

.domains-intro__copy {
    position: relative;
    z-index: 1;
}

.domains-intro .section-kicker {
    color: var(--cyan-400);
}

.domains-intro h2 {
    max-width: 690px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(44px, 4.8vw, 66px);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.domains-intro__copy > p:not(.section-kicker) {
    max-width: 670px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 17px;
    line-height: 1.75;
}

.domains-intro__copy .button {
    margin-top: 34px;
}

.domain-price-highlights {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.domain-price-highlights article {
    min-height: 175px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.domain-price-highlights article:hover {
    border-color: rgba(22, 200, 255, 0.45);
    background: rgba(22, 200, 255, 0.1);
    transform: translateY(-4px);
}

.domain-price-highlights span,
.domain-price-highlights strong,
.domain-price-highlights small {
    display: block;
}

.domain-price-highlights span {
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 19px;
    font-weight: 800;
}

.domain-price-highlights strong {
    margin-top: 16px;
    font-family: Manrope, sans-serif;
    font-size: 30px;
    letter-spacing: -0.035em;
    line-height: 1;
}

.domain-price-highlights small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.domain-steps {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.domain-steps li {
    min-height: 180px;
    padding: 28px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    border: 1px solid rgba(169, 186, 203, 0.54);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(12, 35, 59, 0.06);
}

.domain-steps li > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e6f4ff;
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 11px;
    font-weight: 800;
}

.domain-steps h3 {
    margin: 2px 0 0;
    font-family: Manrope, sans-serif;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.domain-steps p {
    margin: 9px 0 0;
    color: var(--text-500);
    font-size: 13px;
    line-height: 1.65;
}

.domain-browser {
    margin-top: 78px;
    padding: 42px;
    border: 1px solid rgba(169, 186, 203, 0.56);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 68px rgba(12, 35, 59, 0.11);
}

.domain-browser__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    align-items: end;
    gap: 54px;
}

.domain-browser__heading h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(34px, 3.6vw, 50px);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.domain-browser__heading > p {
    margin: 0;
    color: var(--text-500);
    font-size: 15px;
    line-height: 1.7;
}

.domain-toolbar {
    margin-top: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
    align-items: end;
    gap: 16px;
}

.domain-search label,
.domain-sort label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-800);
    font-size: 12px;
    font-weight: 800;
}

.domain-search__field {
    position: relative;
}

.domain-search__field > span {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 18px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--silver-600);
    border-radius: 50%;
    transform: translateY(-56%);
    pointer-events: none;
}

.domain-search__field > span::after {
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    border-radius: 99px;
    background: var(--silver-600);
    content: "";
    transform: rotate(45deg);
}

.domain-search input,
.domain-sort select {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(114, 135, 155, 0.46);
    border-radius: 13px;
    background: var(--ice-0);
    color: var(--ink-950);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.domain-search input {
    padding: 0 86px 0 50px;
}

.domain-search input::placeholder {
    color: #7a8ea2;
}

.domain-search input:hover,
.domain-sort select:hover {
    border-color: rgba(8, 119, 255, 0.5);
    background: var(--white);
}

.domain-search input:focus,
.domain-sort select:focus {
    border-color: var(--blue-500);
    outline: none;
    box-shadow: var(--focus-ring);
}

.domain-search button {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 9px;
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    background: #e7f3fd;
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transform: translateY(-50%);
}

.domain-sort select {
    padding: 0 42px 0 16px;
    cursor: pointer;
}

.domain-filters {
    margin-top: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.domain-filters button {
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid rgba(114, 135, 155, 0.38);
    border-radius: 999px;
    background: var(--white);
    color: var(--text-700);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.domain-filters button:hover {
    border-color: rgba(8, 119, 255, 0.52);
    color: var(--blue-600);
    transform: translateY(-2px);
}

.domain-filters button.is-active {
    border-color: var(--blue-600);
    background: var(--navy-900);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(8, 26, 45, 0.16);
}

.domain-results-summary {
    margin-top: 32px;
    padding-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.domain-results-summary p,
.domain-results-summary span {
    margin: 0;
    color: var(--text-500);
    font-size: 12px;
    font-weight: 700;
}

.domain-results-summary p {
    color: var(--navy-800);
}

.domain-table-wrap {
    border: 1px solid rgba(169, 186, 203, 0.56);
    border-radius: 18px;
    overflow: hidden;
}

.domain-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    table-layout: fixed;
}

.domain-table thead {
    background: linear-gradient(105deg, #06111f, #102a45);
    color: var(--white);
}

.domain-table th,
.domain-table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(213, 224, 234, 0.82);
    text-align: left;
    vertical-align: middle;
}

.domain-table thead th {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.domain-table thead th:first-child {
    width: 21%;
}

.domain-table thead th:nth-child(2) {
    width: 13%;
}

.domain-table thead th:last-child {
    width: 14%;
}

.domain-table tbody tr {
    transition: background 160ms ease;
}

.domain-table tbody tr:nth-child(even) {
    background: #f7fbfe;
}

.domain-table tbody tr:hover {
    background: #eaf6ff;
}

.domain-table tbody tr:last-child th,
.domain-table tbody tr:last-child td {
    border-bottom: 0;
}

.domain-table tbody th {
    color: var(--navy-900);
    font-family: Manrope, sans-serif;
    font-size: 17px;
    letter-spacing: -0.02em;
}

.domain-table tbody th span,
.domain-table tbody th small {
    display: inline-block;
}

.domain-table tbody th small {
    margin-left: 8px;
    padding: 4px 7px;
    border-radius: 999px;
    background: #dff4ff;
    color: #0061bf;
    font-family: Inter, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: 2px;
}

.domain-table tbody td {
    color: var(--text-700);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

.domain-table tbody td:nth-child(3),
.domain-table tbody td:nth-child(5) {
    color: var(--navy-900);
    font-weight: 700;
}

.domain-table tbody td:last-child {
    text-align: right;
}

.domain-table tbody td a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
}

.domain-table tbody td a span {
    transition: transform 160ms ease;
}

.domain-table tbody td a:hover span {
    transform: translateX(4px);
}

.domain-empty {
    padding: 56px 24px;
    border: 1px dashed rgba(114, 135, 155, 0.5);
    border-radius: 18px;
    background: var(--ice-50);
    text-align: center;
}

.domain-empty strong {
    font-family: Manrope, sans-serif;
    font-size: 22px;
}

.domain-empty p {
    margin: 8px 0 0;
    color: var(--text-500);
    font-size: 14px;
}

.domain-show-more {
    min-height: 54px;
    margin: 24px auto 0;
    padding: 13px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(8, 119, 255, 0.3);
    border-radius: 12px;
    background: #ecf7ff;
    color: var(--blue-600);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.domain-show-more:hover {
    border-color: var(--blue-500);
    background: #dff1ff;
    transform: translateY(-2px);
}

.domain-price-note {
    max-width: 990px;
    margin: 24px auto 0;
    color: var(--text-500);
    font-size: 11px;
    line-height: 1.7;
    text-align: center;
}

.domain-faq {
    margin-top: 100px;
    display: grid;
    grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1.44fr);
    align-items: start;
    gap: 76px;
}

.domain-faq__heading h3 {
    max-width: 360px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(34px, 3.6vw, 48px);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.domain-faq__list {
    border-top: 1px solid rgba(169, 186, 203, 0.66);
}

.domain-faq details {
    border-bottom: 1px solid rgba(169, 186, 203, 0.66);
}

.domain-faq summary {
    position: relative;
    min-height: 82px;
    padding: 26px 54px 26px 4px;
    display: flex;
    align-items: center;
    color: var(--navy-900);
    font-family: Manrope, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.domain-faq summary::after {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.25);
    border-radius: 50%;
    background: #eaf5fe;
    color: var(--blue-600);
    content: "+";
    font-family: Inter, sans-serif;
    font-size: 18px;
    transform: translateY(-50%);
}

.domain-faq details[open] summary::after {
    content: "−";
}

.domain-faq details p {
    max-width: 820px;
    margin: -4px 0 0;
    padding: 0 54px 28px 4px;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.75;
}

.hosting-section {
    padding: 122px max(32px, calc((100vw - var(--content-width)) / 2));
    background:
        radial-gradient(circle at 88% 7%, rgba(22, 200, 255, 0.14), transparent 32rem),
        radial-gradient(circle at 7% 36%, rgba(8, 119, 255, 0.14), transparent 38rem),
        linear-gradient(145deg, #04101d 0%, #081a2d 54%, #102a45 100%);
    color: var(--white);
    scroll-margin-top: 84px;
    overflow: hidden;
}

.hosting-section [hidden] {
    display: none !important;
}

.hosting-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 84px;
}

.hosting-intro__copy h2 {
    max-width: 760px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(46px, 5.2vw, 72px);
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.hosting-intro__copy > p:not(.section-kicker) {
    max-width: 710px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 17px;
    line-height: 1.75;
}

.hosting-intro__actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hosting-intro__assurance {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 8%, rgba(22, 200, 255, 0.14), transparent 16rem),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.hosting-intro__assurance > p {
    margin: 0 0 16px;
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hosting-intro__assurance > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hosting-intro__assurance span {
    min-height: 96px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.hosting-intro__assurance strong {
    margin-bottom: 4px;
    color: var(--white);
    font-family: Manrope, sans-serif;
    font-size: 17px;
}

.hosting-pricing {
    padding-top: 114px;
    scroll-margin-top: 84px;
}

.hosting-billing-bar {
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
}

.hosting-billing-bar h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hosting-billing-bar [data-hosting-status] {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.hosting-billing-switch {
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
    background: rgba(0, 0, 0, 0.18);
}

.hosting-billing-switch button {
    min-height: 62px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hosting-billing-switch button:hover {
    color: var(--white);
}

.hosting-billing-switch button.is-active {
    border-color: rgba(22, 200, 255, 0.42);
    background: linear-gradient(135deg, rgba(8, 119, 255, 0.42), rgba(22, 200, 255, 0.18));
    box-shadow: 0 10px 24px rgba(0, 92, 230, 0.2);
    color: var(--white);
}

.hosting-billing-switch small {
    margin-top: 2px;
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 600;
}

.hosting-billing-switch button.is-active small {
    color: rgba(255, 255, 255, 0.72);
}

.hosting-plan-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

.hosting-plan-card {
    position: relative;
    min-width: 0;
    min-height: 760px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(169, 186, 203, 0.5);
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(235, 246, 255, 0.96));
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
    color: var(--ink-950);
    overflow: hidden;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hosting-plan-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
    content: "";
    opacity: 0.28;
}

.hosting-plan-card:hover {
    border-color: rgba(22, 200, 255, 0.55);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-6px);
}

.hosting-plan-card--featured {
    border-color: rgba(22, 200, 255, 0.72);
    background:
        radial-gradient(circle at 92% 8%, rgba(22, 200, 255, 0.2), transparent 16rem),
        linear-gradient(155deg, #0b2944, #061421 72%);
    color: var(--white);
    box-shadow:
        0 0 0 1px rgba(22, 200, 255, 0.15),
        0 26px 68px rgba(0, 0, 0, 0.34);
}

.hosting-plan-card--featured::before {
    height: 5px;
    opacity: 1;
}

.hosting-plan-card__badge {
    width: fit-content;
    margin: -4px 0 15px auto;
    padding: 6px 9px;
    border: 1px solid rgba(22, 200, 255, 0.36);
    border-radius: 999px;
    background: rgba(22, 200, 255, 0.1);
    color: var(--cyan-400);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hosting-plan-card__heading > p {
    margin: 0;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hosting-plan-card--featured .hosting-plan-card__heading > p {
    color: var(--cyan-400);
}

.hosting-plan-card__heading h3 {
    margin: 11px 0 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(19px, 1.65vw, 24px);
    letter-spacing: -0.035em;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
}

.hosting-plan-card__heading > span {
    min-height: 68px;
    margin-top: 14px;
    display: block;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.6;
}

.hosting-plan-card--featured .hosting-plan-card__heading > span {
    color: rgba(255, 255, 255, 0.58);
}

.hosting-plan-card__price {
    min-height: 70px;
    margin-top: 22px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.hosting-plan-card__price strong {
    font-family: Manrope, sans-serif;
    font-size: clamp(34px, 2.9vw, 45px);
    letter-spacing: -0.055em;
    line-height: 0.92;
    font-variant-numeric: tabular-nums;
}

.hosting-plan-card__price > span {
    color: var(--text-500);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.hosting-plan-card.is-price-refreshing .hosting-plan-card__price {
    animation: hosting-price-refresh 320ms ease both;
}

.hosting-plan-card--featured .hosting-plan-card__price > span {
    color: rgba(255, 255, 255, 0.56);
}

.hosting-plan-card__billing-note {
    min-height: 20px;
    margin: 10px 0 0;
    color: var(--text-500);
    font-size: 10px;
}

.hosting-plan-card--featured .hosting-plan-card__billing-note {
    color: rgba(255, 255, 255, 0.54);
}

.hosting-plan-card__annual {
    margin-top: 18px;
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3px 10px;
    border: 1px solid rgba(8, 119, 255, 0.16);
    border-radius: 13px;
    background: rgba(8, 119, 255, 0.055);
}

.hosting-plan-card__annual span,
.hosting-plan-card__annual small {
    color: var(--text-500);
    font-size: 9px;
    font-weight: 700;
}

.hosting-plan-card__annual strong {
    grid-row: 1 / 3;
    grid-column: 2;
    color: var(--navy-900);
    font-family: Manrope, sans-serif;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
}

.hosting-plan-card__annual small {
    color: var(--blue-600);
}

.hosting-plan-card--featured .hosting-plan-card__annual {
    border-color: rgba(22, 200, 255, 0.18);
    background: rgba(22, 200, 255, 0.07);
}

.hosting-plan-card--featured .hosting-plan-card__annual span,
.hosting-plan-card--featured .hosting-plan-card__annual strong,
.hosting-plan-card--featured .hosting-plan-card__annual small {
    color: rgba(255, 255, 255, 0.76);
}

.hosting-plan-card.is-annual .hosting-plan-card__annual {
    border-color: rgba(8, 119, 255, 0.58);
    background: rgba(8, 119, 255, 0.12);
    box-shadow: 0 8px 24px rgba(8, 119, 255, 0.1);
}

.hosting-plan-card--featured.is-annual .hosting-plan-card__annual {
    border-color: rgba(22, 200, 255, 0.55);
    background: rgba(22, 200, 255, 0.12);
}

.hosting-plan-card__features {
    margin: 24px 0 0;
    padding: 0;
    border-top: 1px solid rgba(169, 186, 203, 0.48);
    list-style: none;
}

.hosting-plan-card--featured .hosting-plan-card__features {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.hosting-plan-card__features li {
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(213, 224, 234, 0.76);
}

.hosting-plan-card--featured .hosting-plan-card__features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.hosting-plan-card__features span {
    color: var(--text-500);
    font-size: 10px;
}

.hosting-plan-card__features strong {
    color: var(--navy-900);
    font-size: 12px;
    text-align: right;
}

.hosting-plan-card--featured .hosting-plan-card__features span {
    color: rgba(255, 255, 255, 0.52);
}

.hosting-plan-card--featured .hosting-plan-card__features strong {
    color: var(--white);
}

.hosting-plan-card__shared {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hosting-plan-card__shared span {
    padding: 6px 8px;
    border-radius: 999px;
    background: #e8f5ff;
    color: #285b88;
    font-size: 8px;
    font-weight: 700;
}

.hosting-plan-card--featured .hosting-plan-card__shared span {
    background: rgba(22, 200, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.hosting-plan-card > .button {
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    padding-inline: 13px;
    font-size: 11px;
    text-align: center;
}

.hosting-annual-explainer {
    margin-top: 18px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(8, 119, 255, 0.16), rgba(22, 200, 255, 0.07));
}

.hosting-annual-explainer > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hosting-annual-explainer > div > span {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22, 200, 255, 0.38);
    border-radius: 15px;
    background: rgba(22, 200, 255, 0.09);
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.hosting-annual-explainer strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 16px;
}

.hosting-annual-explainer p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.hosting-annual-explainer > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--cyan-400);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.hosting-comparison {
    margin-top: 110px;
    padding: 46px;
    border: 1px solid rgba(169, 186, 203, 0.55);
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
    color: var(--ink-950);
}

.hosting-comparison__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: end;
    gap: 58px;
}

.hosting-comparison__heading h3 {
    max-width: 720px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.hosting-comparison__heading > p {
    margin: 0;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.7;
}

.hosting-comparison__tabs {
    margin-top: 40px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    border: 1px solid rgba(169, 186, 203, 0.5);
    border-radius: 15px;
    background: #eef5fb;
}

.hosting-comparison__tabs button {
    min-height: 50px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: #3f5f7e;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hosting-comparison__tabs button:hover {
    color: var(--blue-600);
}

.hosting-comparison__tabs button.is-active {
    border-color: rgba(8, 119, 255, 0.22);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(12, 35, 59, 0.1);
    color: var(--blue-600);
}

.hosting-comparison__scroll-note {
    margin: 15px 0 0;
    display: none;
    color: var(--text-500);
    font-size: 10px;
    font-weight: 700;
}

.hosting-comparison__panel {
    margin-top: 20px;
}

.hosting-comparison__table-wrap {
    border: 1px solid rgba(169, 186, 203, 0.56);
    border-radius: 17px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--silver-400) var(--ice-100);
}

.hosting-comparison-table {
    width: 100%;
    min-width: 970px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.hosting-comparison-table th,
.hosting-comparison-table td {
    min-height: 58px;
    padding: 17px 15px;
    border-right: 1px solid rgba(213, 224, 234, 0.82);
    border-bottom: 1px solid rgba(213, 224, 234, 0.82);
    text-align: center;
    vertical-align: middle;
}

.hosting-comparison-table th:first-child {
    width: 230px;
    position: sticky;
    left: 0;
    z-index: 2;
    text-align: left;
}

.hosting-comparison-table thead th {
    background: linear-gradient(115deg, #071827, #102f4d);
    color: rgba(255, 255, 255, 0.84);
    font-size: 10px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.hosting-comparison-table thead th:first-child {
    z-index: 3;
}

.hosting-comparison-table tbody th {
    background: var(--white);
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 800;
}

.hosting-comparison-table tbody td {
    background: var(--white);
    color: var(--text-700);
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.hosting-comparison-table tbody tr:nth-child(even) th,
.hosting-comparison-table tbody tr:nth-child(even) td {
    background: #f5faff;
}

.hosting-comparison-table tr > :last-child {
    border-right: 0;
}

.hosting-comparison-table tbody tr:last-child th,
.hosting-comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.hosting-check {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dff5ff;
    color: #006fbb;
    font-size: 12px;
    font-weight: 900;
}

.hosting-comparison__note {
    margin: 18px 0 0;
    color: var(--text-500);
    font-size: 10px;
    line-height: 1.65;
}

.hosting-faq {
    margin-top: 110px;
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
    align-items: start;
    gap: 84px;
}

.hosting-faq__heading h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.hosting-faq__heading > p:not(.section-kicker) {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
    line-height: 1.7;
}

.hosting-faq__list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hosting-faq details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hosting-faq summary {
    position: relative;
    min-height: 84px;
    padding: 26px 56px 26px 4px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.hosting-faq summary::after {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22, 200, 255, 0.3);
    border-radius: 50%;
    background: rgba(22, 200, 255, 0.08);
    color: var(--cyan-400);
    content: "+";
    font-family: Inter, sans-serif;
    font-size: 18px;
    transform: translateY(-50%);
}

.hosting-faq details[open] summary::after {
    content: "−";
}

.hosting-faq details p {
    max-width: 800px;
    margin: -3px 0 0;
    padding: 0 56px 28px 4px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 13px;
    line-height: 1.75;
}

.maintenance-section {
    position: relative;
    padding: 122px max(32px, calc((100vw - var(--content-width)) / 2));
    background:
        linear-gradient(rgba(8, 119, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 119, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 88% 7%, rgba(22, 200, 255, 0.18), transparent 30rem),
        radial-gradient(circle at 6% 47%, rgba(8, 119, 255, 0.1), transparent 34rem),
        #f3f8fc;
    background-size: 38px 38px, 38px 38px, auto, auto, auto;
    color: var(--ink-950);
    scroll-margin-top: 84px;
    overflow: hidden;
}

.maintenance-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: center;
    gap: 84px;
}

.maintenance-intro__copy h2 {
    max-width: 780px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(46px, 5.2vw, 72px);
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.maintenance-intro__copy > p:not(.section-kicker) {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--text-700);
    font-size: 17px;
    line-height: 1.75;
}

.maintenance-intro__actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.maintenance-intro__assurance {
    padding: 28px;
    border: 1px solid rgba(22, 200, 255, 0.24);
    border-radius: 28px;
    background:
        radial-gradient(circle at 90% 5%, rgba(22, 200, 255, 0.18), transparent 16rem),
        linear-gradient(150deg, #071827, #0d2d49);
    box-shadow: 0 28px 70px rgba(12, 35, 59, 0.18);
    color: var(--white);
}

.maintenance-intro__assurance > p {
    margin: 0 0 16px;
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.maintenance-intro__assurance > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.maintenance-intro__assurance span {
    min-height: 102px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.61);
    font-size: 12px;
    line-height: 1.55;
}

.maintenance-intro__assurance strong {
    margin-bottom: 4px;
    color: var(--white);
    font-family: Manrope, sans-serif;
    font-size: 17px;
}

.maintenance-plans {
    padding-top: 112px;
    scroll-margin-top: 84px;
}

.maintenance-selector {
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
    align-items: center;
    gap: 44px;
    border: 1px solid rgba(169, 186, 203, 0.55);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 46px rgba(12, 35, 59, 0.08);
    backdrop-filter: blur(14px);
}

.maintenance-selector h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.maintenance-selector [data-maintenance-status] {
    max-width: 740px;
    min-height: 39px;
    margin: 10px 0 0;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.55;
}

.maintenance-selector__choices {
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    border: 1px solid rgba(169, 186, 203, 0.52);
    border-radius: 17px;
    background: #eaf2f9;
}

.maintenance-selector__choices button {
    min-height: 62px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #3f5f7e;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.maintenance-selector__choices button:hover {
    color: var(--blue-600);
}

.maintenance-selector__choices button.is-active {
    border-color: rgba(8, 119, 255, 0.25);
    background: var(--white);
    box-shadow: 0 9px 22px rgba(12, 35, 59, 0.1);
    color: var(--blue-600);
}

.maintenance-plan-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 17px;
}

.maintenance-plan-card {
    position: relative;
    min-width: 0;
    min-height: 650px;
    padding: 31px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(169, 186, 203, 0.55);
    border-radius: 26px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(233, 245, 254, 0.96));
    box-shadow: 0 22px 54px rgba(12, 35, 59, 0.1);
    color: var(--ink-950);
    overflow: hidden;
    transition: border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.maintenance-plan-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
    content: "";
    opacity: 0.34;
    transition: opacity 220ms ease;
}

.maintenance-plan-card:hover {
    border-color: rgba(8, 119, 255, 0.42);
    box-shadow: 0 28px 66px rgba(12, 35, 59, 0.16);
    transform: translateY(-5px);
}

.maintenance-plan-card.is-recommended {
    border-color: rgba(22, 200, 255, 0.72);
    background:
        radial-gradient(circle at 92% 7%, rgba(22, 200, 255, 0.2), transparent 17rem),
        linear-gradient(155deg, #0c304f, #061421 74%);
    box-shadow:
        0 0 0 1px rgba(22, 200, 255, 0.15),
        0 28px 72px rgba(12, 35, 59, 0.25);
    color: var(--white);
    transform: translateY(-8px);
}

.maintenance-plan-card.is-recommended::before {
    opacity: 1;
}

.maintenance-plan-card.is-selecting {
    animation: maintenance-select 360ms ease both;
}

.maintenance-plan-card__heading > span {
    width: fit-content;
    margin-left: auto;
    padding: 7px 10px;
    border: 1px solid rgba(8, 119, 255, 0.22);
    border-radius: 999px;
    background: rgba(8, 119, 255, 0.07);
    color: var(--blue-600);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.maintenance-plan-card.is-recommended .maintenance-plan-card__heading > span {
    border-color: rgba(22, 200, 255, 0.34);
    background: rgba(22, 200, 255, 0.1);
    color: var(--cyan-400);
}

.maintenance-plan-card__heading > p:first-of-type {
    margin: 18px 0 0;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.maintenance-plan-card.is-recommended .maintenance-plan-card__heading > p:first-of-type {
    color: var(--cyan-400);
}

.maintenance-plan-card__heading h3 {
    margin: 10px 0 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(26px, 2.6vw, 36px);
    letter-spacing: -0.045em;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
}

.maintenance-plan-card__heading > strong {
    margin-top: 32px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 9px;
    font-family: Manrope, sans-serif;
    font-size: clamp(40px, 4.1vw, 56px);
    letter-spacing: -0.055em;
    line-height: 0.9;
    font-variant-numeric: tabular-nums;
}

.maintenance-plan-card__heading > strong small {
    padding-bottom: 4px;
    color: var(--text-500);
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.maintenance-plan-card.is-recommended .maintenance-plan-card__heading > strong small {
    color: rgba(255, 255, 255, 0.56);
}

.maintenance-plan-card__heading > p:last-child {
    min-height: 50px;
    margin: 20px 0 0;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.65;
}

.maintenance-plan-card.is-recommended .maintenance-plan-card__heading > p:last-child {
    color: rgba(255, 255, 255, 0.6);
}

.maintenance-plan-card__services {
    margin: 24px 0 28px;
    padding: 0;
    border-top: 1px solid rgba(169, 186, 203, 0.48);
    list-style: none;
}

.maintenance-plan-card.is-recommended .maintenance-plan-card__services {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.maintenance-plan-card__services li {
    min-height: 58px;
    padding: 14px 0;
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(213, 224, 234, 0.78);
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.maintenance-plan-card.is-recommended .maintenance-plan-card__services li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
}

.maintenance-plan-card__services li > span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dff5ff;
    color: #006fbb;
    font-size: 11px;
    font-weight: 900;
}

.maintenance-plan-card.is-recommended .maintenance-plan-card__services li > span {
    background: rgba(22, 200, 255, 0.12);
    color: var(--cyan-400);
}

.maintenance-plan-card > .button {
    width: 100%;
    min-height: 54px;
    margin-top: auto;
    padding-inline: 15px;
    text-align: center;
}

.maintenance-plan-card.is-recommended > .button {
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
    color: var(--navy-900);
}

.maintenance-scope-note {
    margin-top: 18px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(8, 119, 255, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 14px 36px rgba(12, 35, 59, 0.07);
}

.maintenance-scope-note > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.28);
    border-radius: 15px;
    background: #e5f4ff;
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.maintenance-scope-note strong {
    color: var(--navy-900);
    font-family: Manrope, sans-serif;
    font-size: 16px;
}

.maintenance-scope-note p {
    margin: 4px 0 0;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.6;
}

.maintenance-scope-note > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.maintenance-comparison {
    margin-top: 110px;
    padding: 46px;
    border: 1px solid rgba(169, 186, 203, 0.54);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 72px rgba(12, 35, 59, 0.12);
}

.maintenance-comparison__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    align-items: end;
    gap: 58px;
}

.maintenance-comparison__heading h3 {
    max-width: 700px;
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.maintenance-comparison__heading > p {
    margin: 0;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.7;
}

.maintenance-comparison__scroll-note {
    margin: 18px 0 0;
    display: none;
    color: var(--text-500);
    font-size: 10px;
    font-weight: 700;
}

.maintenance-comparison__table-wrap {
    margin-top: 34px;
    border: 1px solid rgba(169, 186, 203, 0.56);
    border-radius: 17px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--silver-400) var(--ice-100);
}

.maintenance-comparison-table {
    width: 100%;
    min-width: 920px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.maintenance-comparison-table th,
.maintenance-comparison-table td {
    min-height: 66px;
    padding: 18px 16px;
    border-right: 1px solid rgba(213, 224, 234, 0.82);
    border-bottom: 1px solid rgba(213, 224, 234, 0.82);
    text-align: left;
    vertical-align: middle;
}

.maintenance-comparison-table th:first-child {
    width: 210px;
    position: sticky;
    left: 0;
    z-index: 2;
}

.maintenance-comparison-table thead th {
    background: linear-gradient(115deg, #071827, #102f4d);
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.maintenance-comparison-table thead th:first-child {
    z-index: 3;
}

.maintenance-comparison-table tbody th {
    background: var(--white);
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 800;
}

.maintenance-comparison-table tbody td {
    background: var(--white);
    color: var(--text-700);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.maintenance-comparison-table tbody tr:nth-child(even) th,
.maintenance-comparison-table tbody tr:nth-child(even) td {
    background: #f5faff;
}

.maintenance-comparison-table tr > :last-child {
    border-right: 0;
}

.maintenance-comparison-table tbody tr:last-child th,
.maintenance-comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.maintenance-comparison-table__price td {
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.maintenance-faq {
    margin-top: 110px;
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
    align-items: start;
    gap: 84px;
}

.maintenance-faq__heading h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(36px, 4vw, 52px);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.maintenance-faq__heading > p:not(.section-kicker) {
    margin: 20px 0 0;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.7;
}

.maintenance-faq__list {
    border-top: 1px solid rgba(169, 186, 203, 0.58);
}

.maintenance-faq details {
    border-bottom: 1px solid rgba(169, 186, 203, 0.58);
}

.maintenance-faq summary {
    position: relative;
    min-height: 84px;
    padding: 26px 56px 26px 4px;
    display: flex;
    align-items: center;
    color: var(--navy-900);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.maintenance-faq summary::after {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.27);
    border-radius: 50%;
    background: #e5f4ff;
    color: var(--blue-600);
    content: "+";
    font-family: Inter, sans-serif;
    font-size: 18px;
    transform: translateY(-50%);
}

.maintenance-faq details[open] summary::after {
    content: "−";
}

.maintenance-faq details p {
    max-width: 800px;
    margin: -3px 0 0;
    padding: 0 56px 28px 4px;
    color: var(--text-500);
    font-size: 13px;
    line-height: 1.75;
}

.services-final-cta {
    min-height: 650px;
    padding: 106px max(32px, calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
    align-items: center;
    gap: 74px;
    background:
        radial-gradient(circle at 78% 44%, rgba(22, 200, 255, 0.16), transparent 28rem),
        linear-gradient(115deg, #06111f, #102a45 62%, #31465a);
    color: var(--white);
    overflow: hidden;
}

.services-final-cta__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.services-final-cta h2 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(42px, 4.9vw, 66px);
    letter-spacing: -0.05em;
    line-height: 1.03;
}

.services-final-cta__content > p:not(.section-kicker) {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.75;
}

.services-final-cta__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.services-final-cta > img {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    height: auto;
    justify-self: end;
    object-fit: contain;
    opacity: 0.26;
    filter: saturate(1.1) drop-shadow(0 0 42px rgba(22, 200, 255, 0.15));
    pointer-events: none;
}

@keyframes solution-refresh {
    from {
        opacity: 0.68;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes maintenance-select {
    from {
        opacity: 0.72;
        transform: translateY(-2px) scale(0.992);
    }
    to {
        opacity: 1;
        transform: translateY(-8px) scale(1);
    }
}

@keyframes hosting-price-refresh {
    from {
        opacity: 0.58;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .services-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
        gap: 42px;
    }

    .capability-map {
        min-height: 540px;
    }

    .capability-map__core {
        width: 230px;
    }

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

    .service-detail {
        gap: 52px;
    }

    .app-capability-panel {
        padding: 32px;
        grid-template-columns: minmax(190px, 0.8fr) minmax(190px, 1fr);
    }

    .domains-intro {
        padding: 56px;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
        gap: 50px;
    }

    .domain-browser {
        padding: 34px;
    }

    .domain-table th,
    .domain-table td {
        padding-inline: 12px;
    }

    .hosting-intro {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
        gap: 52px;
    }

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

    .hosting-plan-card {
        min-height: 700px;
    }

    .hosting-plan-card__heading h3 {
        font-size: 25px;
    }

    .hosting-plan-card__price strong {
        font-size: 44px;
    }

    .maintenance-intro {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
        gap: 52px;
    }

    .maintenance-selector {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
        gap: 30px;
    }

    .maintenance-plan-card {
        padding: 27px;
    }
}

@media (max-width: 900px) {
    .services-hero {
        min-height: 0;
        padding: 76px 40px 88px;
    }

    .services-hero__grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .services-hero__copy {
        max-width: 760px;
    }

    .capability-map {
        min-height: 580px;
    }

    .services-jump-nav {
        padding: 16px 28px;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .services-jump-nav a {
        flex: 0 0 auto;
    }

    .services-introduction,
    .service-detail-section,
    .custom-systems-section,
    .service-process-section,
    .digital-foundation-section,
    .domains-section,
    .hosting-section,
    .maintenance-section,
    .services-final-cta {
        padding: 90px 40px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-detail--reverse .service-detail__copy,
    .service-detail--reverse .app-capability-panel {
        order: initial;
    }

    .app-capability-panel {
        min-height: 590px;
        grid-template-columns: minmax(210px, 0.75fr) minmax(260px, 1fr);
    }

    .custom-systems-section__heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solution-explorer {
        grid-template-columns: 1fr;
    }

    .solution-explorer__tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .custom-system-principles,
    .foundation-service-grid {
        grid-template-columns: 1fr;
    }

    .foundation-service-card {
        min-height: 330px;
    }

    .domains-intro {
        min-height: 0;
        padding: 52px;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .domain-price-highlights {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .domain-price-highlights article {
        min-height: 150px;
        padding: 18px;
    }

    .domain-price-highlights strong {
        font-size: 24px;
    }

    .domain-steps {
        grid-template-columns: 1fr;
    }

    .domain-steps li {
        min-height: 0;
    }

    .domain-browser__heading,
    .domain-faq {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .domain-faq {
        gap: 40px;
    }

    .hosting-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hosting-intro__assurance > div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hosting-billing-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .hosting-billing-switch {
        width: min(100%, 480px);
    }

    .hosting-comparison__heading,
    .hosting-faq {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hosting-faq {
        gap: 42px;
    }

    .maintenance-intro {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .maintenance-selector {
        grid-template-columns: 1fr;
    }

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

    .maintenance-plan-card:last-child {
        grid-column: 1 / -1;
    }

    .maintenance-comparison {
        padding: 34px;
    }

    .maintenance-comparison__heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .maintenance-comparison__scroll-note {
        display: block;
    }

    .maintenance-faq {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .services-final-cta {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
        gap: 44px;
    }
}

@media (max-width: 760px) {
    .domain-table-wrap {
        border: 0;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    .domain-table,
    .domain-table tbody {
        display: block;
        background: transparent;
    }

    .domain-table {
        table-layout: auto;
    }

    .domain-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
    }

    .domain-table tbody tr {
        margin-bottom: 13px;
        padding: 18px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 20px;
        border: 1px solid rgba(169, 186, 203, 0.58);
        border-radius: 16px;
        background: var(--white);
        box-shadow: 0 10px 24px rgba(12, 35, 59, 0.06);
    }

    .domain-table tbody tr:nth-child(even),
    .domain-table tbody tr:hover {
        background: var(--white);
    }

    .domain-table tbody th,
    .domain-table tbody td {
        padding: 12px 0;
        border-bottom: 1px solid rgba(213, 224, 234, 0.82);
    }

    .domain-table tbody th {
        padding-top: 0;
        grid-column: 1 / -1;
        font-size: 20px;
    }

    .domain-table tbody td {
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        text-align: right;
    }

    .domain-table tbody td::before {
        color: var(--text-500);
        content: attr(data-label);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .domain-table tbody td:last-child {
        padding: 14px 0 0;
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .domain-table tbody td:last-child a {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        border-radius: 10px;
        background: #e8f4fe;
    }

    .domain-table tbody td:last-child::before {
        display: none;
    }

    .maintenance-plan-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-plan-card:last-child {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .services-hero {
        padding: 58px 20px 68px;
    }

    .services-hero__copy h1 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1.01;
    }

    .services-hero__intro {
        font-size: 16px;
    }

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

    .services-hero__proof {
        align-items: stretch;
        flex-direction: column;
    }

    .services-hero__proof span {
        width: fit-content;
    }

    .capability-map {
        min-height: 450px;
    }

    .capability-map::before {
        inset: 8% 0;
    }

    .capability-map__core {
        width: 190px;
        padding: 24px;
    }

    .capability-map__orbit--one {
        width: 98%;
    }

    .capability-map__node {
        min-width: 104px;
        padding: 10px 12px;
        font-size: 10px;
    }

    .capability-map__node--web {
        top: 10%;
        left: 0;
    }

    .capability-map__node--apps {
        top: 12%;
        right: 0;
    }

    .capability-map__node--systems {
        right: 0;
        bottom: 17%;
    }

    .capability-map__node--hosting {
        bottom: 17%;
        left: 0;
    }

    .capability-map__status {
        right: 50%;
        bottom: -4%;
        min-width: min(270px, 92vw);
        transform: translateX(50%);
    }

    .services-jump-nav {
        padding: 13px 16px;
    }

    .services-introduction,
    .service-detail-section,
    .custom-systems-section,
    .service-process-section,
    .digital-foundation-section,
    .domains-section,
    .hosting-section,
    .maintenance-section,
    .services-final-cta {
        padding: 72px 20px;
    }

    .services-introduction__grid {
        margin-top: 42px;
        grid-template-columns: 1fr;
    }

    .service-outcome-card {
        min-height: 250px;
        padding: 25px;
    }

    .service-detail__copy h2,
    .custom-systems-section__heading h2,
    .services-final-cta h2 {
        font-size: clamp(34px, 10.5vw, 46px);
        line-height: 1.06;
    }

    .service-detail__copy > p:not(.section-kicker),
    .custom-systems-section__heading > p,
    .services-final-cta__content > p:not(.section-kicker) {
        font-size: 16px;
    }

    .service-detail__actions {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .service-detail__panel {
        padding: 20px;
        border-radius: 22px;
    }

    .service-detail__panel-heading {
        padding: 16px;
    }

    .service-feature-list li {
        padding-inline: 4px;
        font-size: 13px;
    }

    .app-capability-panel {
        min-height: 0;
        padding: 28px 20px;
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .app-capability-panel__phone {
        width: min(230px, 84vw);
    }

    .app-capability-panel__list span {
        min-height: 60px;
    }

    .solution-explorer {
        margin-top: 44px;
        border-radius: 22px;
    }

    .solution-explorer__tabs {
        padding: 12px;
        grid-template-columns: 1fr;
    }

    .solution-tab {
        min-height: 56px;
    }

    .solution-explorer__panel {
        min-height: 600px;
        padding: 30px 22px;
    }

    .solution-explorer__panel h3 {
        font-size: 31px;
    }

    .solution-explorer__panel ul {
        grid-template-columns: 1fr;
    }

    .solution-explorer__panel .button {
        width: 100%;
    }

    .custom-system-principles {
        margin-top: 16px;
    }

    .service-process {
        margin-top: 44px;
    }

    .service-process li {
        min-height: 150px;
        padding: 24px 4px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 14px;
    }

    .service-process li:hover {
        padding-inline: 10px;
    }

    .foundation-service-grid {
        margin-top: 42px;
    }

    .foundation-service-card {
        min-height: 360px;
        padding: 26px;
    }

    .domains-intro {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .domains-intro h2 {
        font-size: clamp(36px, 11.5vw, 48px);
        line-height: 1.04;
    }

    .domains-intro__copy > p:not(.section-kicker) {
        font-size: 15px;
    }

    .domains-intro__copy .button {
        width: 100%;
    }

    .domain-price-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .domain-price-highlights article {
        min-height: 136px;
        padding: 17px;
    }

    .domain-price-highlights span {
        font-size: 16px;
    }

    .domain-price-highlights strong {
        font-size: 21px;
    }

    .domain-steps {
        margin-top: 14px;
    }

    .domain-steps li {
        padding: 22px;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }

    .domain-steps li > span {
        width: 40px;
        height: 40px;
    }

    .domain-browser {
        margin-top: 54px;
        padding: 24px 16px;
        border-radius: 22px;
    }

    .domain-browser__heading h3 {
        font-size: 34px;
    }

    .domain-toolbar {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }

    .domain-filters {
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .domain-filters button {
        padding-inline: 10px;
        border-radius: 11px;
    }

    .domain-results-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .domain-table tbody tr {
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .domain-table tbody th,
    .domain-table tbody td,
    .domain-table tbody td:last-child {
        grid-column: 1;
    }

    .domain-show-more {
        width: 100%;
    }

    .domain-price-note {
        text-align: left;
    }

    .domain-faq {
        margin-top: 72px;
    }

    .domain-faq summary {
        min-height: 76px;
        padding-right: 45px;
        font-size: 15px;
    }

    .domain-faq details p {
        padding-right: 4px;
    }

    .hosting-intro__copy h2 {
        font-size: clamp(38px, 11.5vw, 50px);
        line-height: 1.03;
    }

    .hosting-intro__copy > p:not(.section-kicker) {
        font-size: 15px;
    }

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

    .hosting-intro__assurance {
        padding: 19px;
        border-radius: 22px;
    }

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

    .hosting-intro__assurance span {
        min-height: 88px;
        padding: 14px;
    }

    .hosting-pricing {
        padding-top: 78px;
    }

    .hosting-billing-bar {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .hosting-billing-switch {
        width: 100%;
        grid-template-columns: 1fr;
    }

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

    .hosting-plan-card {
        min-height: 710px;
        padding: 25px;
    }

    .hosting-plan-card__heading h3 {
        font-size: 25px;
    }

    .hosting-plan-card__heading > span {
        min-height: 0;
    }

    .hosting-plan-card__price strong {
        font-size: 42px;
    }

    .hosting-annual-explainer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hosting-annual-explainer > a {
        white-space: normal;
    }

    .hosting-comparison {
        margin-top: 78px;
        padding: 25px 16px;
        border-radius: 22px;
    }

    .hosting-comparison__heading h3 {
        font-size: 34px;
    }

    .hosting-comparison__tabs {
        margin-top: 30px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hosting-comparison__scroll-note {
        display: block;
    }

    .hosting-comparison-table {
        min-width: 850px;
    }

    .hosting-comparison-table th:first-child {
        width: 185px;
    }

    .hosting-faq {
        margin-top: 78px;
    }

    .hosting-faq summary {
        min-height: 76px;
        padding-right: 46px;
        font-size: 15px;
    }

    .hosting-faq details p {
        padding-right: 4px;
    }

    .maintenance-intro__copy h2 {
        font-size: clamp(38px, 11.5vw, 50px);
        line-height: 1.03;
    }

    .maintenance-intro__copy > p:not(.section-kicker) {
        font-size: 15px;
    }

    .maintenance-intro__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .maintenance-intro__assurance {
        padding: 19px;
        border-radius: 22px;
    }

    .maintenance-intro__assurance span {
        min-height: 92px;
        padding: 14px;
    }

    .maintenance-plans {
        padding-top: 78px;
    }

    .maintenance-selector {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .maintenance-selector__choices {
        grid-template-columns: 1fr;
    }

    .maintenance-plan-card {
        min-height: 620px;
        padding: 25px;
    }

    .maintenance-plan-card.is-recommended,
    .maintenance-plan-card:hover {
        transform: none;
    }

    .maintenance-plan-card.is-selecting {
        animation: none;
    }

    .maintenance-plan-card__heading h3 {
        font-size: 30px;
    }

    .maintenance-plan-card__heading > strong {
        font-size: 44px;
    }

    .maintenance-scope-note {
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 20px;
    }

    .maintenance-scope-note > span {
        width: 50px;
        height: 50px;
    }

    .maintenance-scope-note > a {
        grid-column: 1 / -1;
        white-space: normal;
    }

    .maintenance-comparison {
        margin-top: 78px;
        padding: 25px 16px;
        border-radius: 22px;
    }

    .maintenance-comparison__heading h3 {
        font-size: 34px;
    }

    .maintenance-comparison-table {
        min-width: 820px;
    }

    .maintenance-comparison-table th:first-child {
        width: 175px;
    }

    .maintenance-faq {
        margin-top: 78px;
    }

    .maintenance-faq summary {
        min-height: 76px;
        padding-right: 46px;
        font-size: 15px;
    }

    .maintenance-faq details p {
        padding-right: 4px;
    }

    .services-final-cta {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .services-final-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-final-cta > img {
        width: min(290px, 80vw);
        justify-self: center;
        opacity: 0.15;
    }
}

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

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

    .reveal-item,
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ZIP 16: managed-project empty states */

.projects-hero__empty {
    position: absolute;
    inset: 10% 8%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 34%, rgba(22, 200, 255, 0.14), transparent 18rem),
        rgba(5, 20, 34, 0.7);
    text-align: center;
}

.projects-hero__empty img {
    width: min(230px, 46%);
    height: auto;
    object-fit: contain;
}

.projects-hero__empty strong {
    max-width: 320px;
    color: #e8f8ff;
    font-family: Manrope, sans-serif;
    font-size: 1rem;
}

.project-public-empty {
    max-width: 920px;
    margin: 64px auto 0;
    padding: 54px;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 28px;
    background:
        radial-gradient(circle at 86% 14%, rgba(22, 200, 255, 0.12), transparent 20rem),
        var(--ink-950);
    box-shadow: 0 28px 72px rgba(6, 17, 31, 0.16);
    color: var(--white);
    text-align: center;
}

.project-public-empty > span {
    display: grid;
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    place-items: center;
    border: 1px solid rgba(22, 200, 255, 0.28);
    border-radius: 16px;
    color: var(--cyan-400);
    background: rgba(22, 200, 255, 0.08);
    font-weight: 900;
}

.project-public-empty h3 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.035em;
}

.project-public-empty p {
    max-width: 620px;
    margin: 16px auto 0;
    color: rgba(224, 240, 250, 0.72);
    line-height: 1.72;
}

.project-public-empty .button {
    margin-top: 26px;
}

.project-public-empty--light {
    border-color: rgba(8, 119, 255, 0.17);
    background: var(--ice-50);
    box-shadow: none;
    color: var(--ink-950);
}

.project-public-empty--light p {
    color: var(--text-700);
}

@media (max-width: 680px) {
    .projects-hero__empty {
        inset: 8%;
    }

    .project-public-empty {
        margin-top: 42px;
        padding: 34px 22px;
        border-radius: 22px;
    }
}

/* ZIP 08: Complete Projects page */

.projects-page {
    background: var(--ice-50);
}

.projects-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 88px max(32px, calc((100vw - var(--content-width)) / 2)) 78px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 78% 32%, rgba(22, 200, 255, 0.19), transparent 28rem),
        radial-gradient(circle at 46% 106%, rgba(8, 119, 255, 0.14), transparent 34rem),
        linear-gradient(135deg, #030b14 0%, #07182a 48%, #0d2d4a 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.projects-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 54px 54px;
    content: "";
    mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%);
}

.projects-hero__grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    align-items: center;
    gap: 70px;
}

.projects-hero__copy {
    position: relative;
    z-index: 4;
    max-width: 670px;
}

.projects-hero .section-kicker {
    color: var(--cyan-400);
}

.projects-hero h1 {
    margin: 0;
    font-family: Manrope, Inter, "Segoe UI", sans-serif;
    font-size: clamp(54px, 5vw, 74px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.projects-hero__intro {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.72;
}

.projects-hero__actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.projects-hero .button--secondary {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.projects-hero .button--secondary:hover {
    border-color: var(--cyan-400);
    background: rgba(22, 200, 255, 0.1);
}

.projects-hero__proof {
    margin-top: 46px;
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.projects-hero__proof div {
    min-width: 0;
}

.projects-hero__proof strong,
.projects-hero__proof span {
    display: block;
}

.projects-hero__proof strong {
    color: var(--white);
    font-family: Manrope, sans-serif;
    font-size: 28px;
    line-height: 1;
}

.projects-hero__proof span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.projects-hero__stage {
    position: relative;
    min-height: 630px;
    perspective: 1200px;
}

.projects-hero__orbit {
    position: absolute;
    border: 1px solid rgba(22, 200, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.projects-hero__orbit--one {
    top: 4%;
    left: 3%;
    width: 590px;
    height: 590px;
}

.projects-hero__orbit--two {
    right: -3%;
    bottom: 9%;
    width: 620px;
    height: 390px;
    transform: rotate(-14deg);
}

.projects-hero__screen {
    position: absolute;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.projects-hero__screen img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.projects-hero__screen--main {
    z-index: 3;
    top: 11%;
    left: 7%;
    width: 82%;
    transform: rotateY(-4deg) rotateX(1deg);
}

.projects-hero__screen--security {
    z-index: 2;
    right: -2%;
    bottom: 2%;
    width: 46%;
    transform: rotate(4deg);
}

.projects-hero__screen--commerce {
    z-index: 1;
    bottom: 0;
    left: -2%;
    width: 42%;
    transform: rotate(-5deg);
}

.browser-bar {
    min-height: 34px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(169, 186, 203, 0.38);
    background: #f4f7fa;
}

.browser-bar > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9fb1c2;
}

.browser-bar > span:first-child {
    background: #ff6c72;
}

.browser-bar > span:nth-child(2) {
    background: #f6be4f;
}

.browser-bar > span:nth-child(3) {
    background: #56ca78;
}

.browser-bar small {
    margin-left: 7px;
    color: #678096;
    font-size: 9px;
    font-weight: 700;
}

.browser-bar--light {
    background: rgba(244, 248, 252, 0.96);
}

.projects-hero__signal {
    position: absolute;
    z-index: 5;
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(4, 14, 26, 0.76);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(16px);
}

.projects-hero__signal span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #55efbd;
    box-shadow: 0 0 0 5px rgba(85, 239, 189, 0.12);
}

.projects-hero__signal--one {
    top: 5%;
    right: 2%;
}

.projects-hero__signal--two {
    right: 8%;
    bottom: 21%;
}

.projects-jump-nav {
    position: sticky;
    z-index: 60;
    top: 68px;
    min-height: 58px;
    padding: 0 max(32px, calc((100vw - var(--content-width)) / 2));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    border-bottom: 1px solid rgba(169, 186, 203, 0.45);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(12, 35, 59, 0.05);
    backdrop-filter: blur(16px);
}

.projects-jump-nav a {
    position: relative;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    color: var(--text-700);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.projects-jump-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease;
}

.projects-jump-nav a:hover {
    color: var(--blue-600);
}

.projects-jump-nav a:hover::after {
    transform: scaleX(1);
}

.project-explorer-section,
.latest-projects-section,
.project-capabilities-section,
.projects-final-cta {
    scroll-margin-top: 132px;
}

.project-explorer-section,
.latest-projects-section {
    padding: 112px max(32px, calc((100vw - var(--content-width)) / 2));
}

.project-explorer-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(22, 200, 255, 0.09), transparent 25rem),
        var(--ice-50);
}

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

.project-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    align-items: end;
    gap: 70px;
}

.project-section-heading h2,
.project-capabilities__heading h2,
.projects-final-cta h2 {
    margin: 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(40px, 4.3vw, 60px);
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.project-section-heading > p {
    margin: 0;
    color: var(--text-700);
    font-size: 17px;
    line-height: 1.75;
}

.project-explorer {
    margin-top: 64px;
    padding: 14px;
    display: grid;
    grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1.68fr);
    gap: 14px;
    border: 1px solid rgba(22, 200, 255, 0.18);
    border-radius: 30px;
    background:
        radial-gradient(circle at 75% 24%, rgba(22, 200, 255, 0.12), transparent 25rem),
        var(--ink-950);
    box-shadow: 0 28px 72px rgba(6, 17, 31, 0.18);
}

.project-explorer__tabs {
    padding: 9px;
    display: grid;
    align-content: start;
    gap: 8px;
}

.project-explorer__tab {
    min-height: 94px;
    padding: 16px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    text-align: left;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-explorer__tab > span:first-child {
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.project-explorer__tab strong,
.project-explorer__tab small {
    display: block;
}

.project-explorer__tab strong {
    color: inherit;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    line-height: 1.3;
}

.project-explorer__tab small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-explorer__tab:hover {
    border-color: rgba(22, 200, 255, 0.28);
    background: rgba(22, 200, 255, 0.06);
    color: var(--white);
    transform: translateX(3px);
}

.project-explorer__tab.is-active {
    border-color: rgba(22, 200, 255, 0.5);
    background: linear-gradient(135deg, rgba(8, 119, 255, 0.24), rgba(22, 200, 255, 0.09));
    box-shadow: inset 3px 0 0 var(--cyan-400);
    color: var(--white);
}

.project-explorer__panel {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    border-radius: 22px;
    background: var(--white);
    overflow: hidden;
}

.project-explorer__panel.is-refreshing {
    animation: project-panel-in 480ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-explorer__visual {
    min-width: 0;
    align-self: start;
    margin: 24px 0 24px 24px;
    border: 1px solid rgba(169, 186, 203, 0.65);
    border-radius: 18px;
    background: var(--ice-100);
    box-shadow: 0 20px 42px rgba(12, 35, 59, 0.12);
    overflow: hidden;
}

.project-explorer__visual img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #eaf2f9;
}

.project-explorer__content {
    min-width: 0;
    padding: 42px 38px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-explorer__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.project-explorer__meta span:first-child {
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.project-explorer__meta span:last-child,
.project-case__category {
    margin: 0;
    color: #295e96;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.project-explorer__content h3 {
    margin: 14px 0 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(30px, 3vw, 44px);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.project-explorer__summary {
    margin: 18px 0 0;
    color: var(--text-700);
    font-size: 16px;
    line-height: 1.72;
}

.project-explorer__story {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-explorer__story > div {
    min-width: 0;
    padding-top: 17px;
    border-top: 1px solid rgba(169, 186, 203, 0.55);
}

.project-explorer__story span,
.project-case__details dt {
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.project-explorer__story p {
    margin: 8px 0 0;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.62;
}

.project-tag-list {
    margin: 24px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.project-tag-list li {
    min-height: 31px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(8, 119, 255, 0.18);
    border-radius: 999px;
    background: #edf6ff;
    color: #215483;
    font-size: 10px;
    font-weight: 700;
}

.project-explorer__actions,
.project-case__actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.project-explorer__actions .button,
.project-case__actions .button {
    min-height: 50px;
    padding-inline: 20px;
    gap: 12px;
    font-size: 13px;
}

.project-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue-600);
    font-size: 13px;
    font-weight: 800;
}

.project-inline-link span {
    transition: transform 180ms ease;
}

.project-inline-link:hover span {
    transform: translateX(4px);
}

.project-filter-bar {
    margin-top: 54px;
    padding: 14px 16px 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(169, 186, 203, 0.55);
    border-radius: 18px;
    background: var(--ice-50);
}

.project-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.project-filters button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 11px;
    background: transparent;
    color: var(--text-700);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.project-filters button:hover {
    border-color: rgba(8, 119, 255, 0.22);
    background: var(--white);
    color: var(--blue-600);
}

.project-filters button.is-active {
    border-color: var(--blue-600);
    background: var(--blue-600);
    color: var(--white);
}

.project-filter-bar > p {
    margin: 0;
    color: var(--text-500);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.project-case-list {
    margin-top: 72px;
    display: grid;
    gap: 100px;
}

.project-case {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
    align-items: center;
    gap: 70px;
}

.project-case[hidden] {
    display: none;
}

.project-case:nth-child(even) .project-case__visual {
    order: 2;
}

.project-case__visual {
    min-width: 0;
    border: 1px solid rgba(169, 186, 203, 0.6);
    border-radius: 24px;
    background: var(--ice-50);
    box-shadow: 0 24px 58px rgba(12, 35, 59, 0.13);
    overflow: hidden;
}

.project-case__visual > a {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-case__visual img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-case__open {
    position: absolute;
    right: 18px;
    bottom: 18px;
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 11px;
    background: rgba(6, 17, 31, 0.84);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    transition: background 180ms ease, transform 180ms ease;
}

.project-case__visual > a:hover img {
    transform: scale(1.025);
}

.project-case__visual > a:hover .project-case__open {
    background: var(--blue-600);
    transform: translateY(-3px);
}

.project-case__content {
    min-width: 0;
}

.project-case__number {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.2);
    border-radius: 15px;
    background: #edf6ff;
    color: var(--blue-600);
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.project-case__category {
    margin-top: 25px;
}

.project-case__content h3 {
    margin: 10px 0 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(34px, 3.4vw, 50px);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.project-case__summary {
    margin: 18px 0 0;
    color: var(--text-700);
    font-size: 16px;
    line-height: 1.72;
}

.project-case__details {
    margin: 26px 0 0;
    display: grid;
    gap: 15px;
}

.project-case__details > div {
    padding-top: 15px;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
    border-top: 1px solid rgba(169, 186, 203, 0.5);
}

.project-case__details dd {
    margin: 0;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.65;
}

.project-capabilities-section {
    position: relative;
    padding: 112px max(32px, calc((100vw - var(--content-width)) / 2));
    background:
        radial-gradient(circle at 82% 18%, rgba(22, 200, 255, 0.14), transparent 28rem),
        linear-gradient(135deg, #06111f 0%, #0b233b 100%);
    color: var(--white);
    overflow: hidden;
}

.project-capabilities-section::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    pointer-events: none;
}

.project-capabilities__heading {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.project-capabilities__heading > p:not(.section-kicker) {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 17px;
    line-height: 1.72;
}

.project-capability-grid {
    position: relative;
    z-index: 1;
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.project-capability-grid article {
    min-height: 300px;
    padding: 32px 28px;
}

.project-capability-grid article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.project-capability-grid span {
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.project-capability-grid h3 {
    margin: 86px 0 0;
    font-family: Manrope, sans-serif;
    font-size: 22px;
    letter-spacing: -0.025em;
}

.project-capability-grid p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.7;
}

.projects-final-cta {
    position: relative;
    min-height: 570px;
    padding: 108px max(32px, calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: center;
    gap: 70px;
    background: linear-gradient(90deg, #030b14 0%, #081a2d 62%, #0b2d4c 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.projects-final-cta__glow {
    position: absolute;
    z-index: -1;
    top: -280px;
    right: 5%;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 200, 255, 0.18), transparent 65%);
}

.projects-final-cta__content {
    max-width: 800px;
}

.projects-final-cta__content > p:not(.section-kicker) {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.72;
}

.projects-final-cta__actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.projects-final-cta__mark {
    position: relative;
    width: min(330px, 100%);
    aspect-ratio: 1;
    justify-self: end;
    display: grid;
    place-content: center;
    border: 1px solid rgba(22, 200, 255, 0.28);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(22, 200, 255, 0.16), transparent 62%),
        rgba(255, 255, 255, 0.025);
    box-shadow:
        inset 0 0 0 24px rgba(255, 255, 255, 0.018),
        0 0 80px rgba(22, 200, 255, 0.08);
    text-align: center;
}

.projects-final-cta__mark::before,
.projects-final-cta__mark::after {
    position: absolute;
    border: 1px solid rgba(22, 200, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.projects-final-cta__mark::before {
    inset: -22px;
}

.projects-final-cta__mark::after {
    inset: 48px;
}

.projects-final-cta__mark span,
.projects-final-cta__mark strong {
    position: relative;
    z-index: 1;
    display: block;
}

.projects-final-cta__mark span {
    color: var(--cyan-400);
    font-family: Manrope, sans-serif;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.projects-final-cta__mark strong {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes project-panel-in {
    from {
        opacity: 0.68;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .projects-hero__grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
        gap: 42px;
    }

    .projects-hero__stage {
        min-height: 540px;
    }

    .projects-hero__orbit--one {
        width: 500px;
        height: 500px;
    }

    .project-explorer {
        grid-template-columns: 1fr;
    }

    .project-explorer__tabs {
        display: flex;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .project-explorer__tab {
        min-width: 210px;
        flex: 1 0 210px;
    }

    .project-case {
        gap: 48px;
    }

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

    .project-capability-grid article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .project-capability-grid article:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 900px) {
    .projects-hero {
        min-height: 0;
        padding: 76px 40px 88px;
    }

    .projects-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projects-hero__copy {
        max-width: 760px;
    }

    .projects-hero__stage {
        width: min(760px, 100%);
        min-height: 590px;
        justify-self: center;
    }

    .projects-jump-nav {
        top: 72px;
        padding-inline: 28px;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .projects-jump-nav a {
        flex: 0 0 auto;
    }

    .project-explorer-section,
    .latest-projects-section,
    .project-capabilities-section,
    .projects-final-cta {
        padding: 90px 40px;
    }

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

    .project-explorer__panel {
        grid-template-columns: 1fr;
    }

    .project-explorer__visual {
        margin: 24px 24px 0;
    }

    .project-explorer__content {
        padding-top: 34px;
    }

    .project-case-list {
        gap: 84px;
    }

    .project-case {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .project-case:nth-child(even) .project-case__visual {
        order: initial;
    }

    .project-case__content {
        max-width: 760px;
    }

    .projects-final-cta {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .projects-hero {
        padding: 58px 20px 66px;
    }

    .projects-hero h1 {
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1.01;
    }

    .projects-hero__intro {
        font-size: 16px;
    }

    .projects-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .projects-hero__proof {
        gap: 10px;
    }

    .projects-hero__proof strong {
        font-size: 24px;
    }

    .projects-hero__proof span {
        font-size: 10px;
    }

    .projects-hero__stage {
        min-height: 390px;
    }

    .projects-hero__orbit {
        display: none;
    }

    .projects-hero__screen--main {
        top: 8%;
        left: 0;
        width: 100%;
        transform: none;
    }

    .projects-hero__screen--security {
        right: -1%;
        bottom: 0;
        width: 49%;
        border-radius: 13px;
    }

    .projects-hero__screen--commerce {
        bottom: 0;
        left: -1%;
        width: 47%;
        border-radius: 13px;
    }

    .projects-hero__signal--one {
        top: 0;
        right: 0;
    }

    .projects-hero__signal--two {
        display: none;
    }

    .projects-jump-nav {
        top: 66px;
        min-height: 54px;
        padding-inline: 20px;
        gap: 24px;
    }

    .projects-jump-nav a {
        min-height: 54px;
        font-size: 11px;
    }

    .project-explorer-section,
    .latest-projects-section,
    .project-capabilities-section,
    .projects-final-cta {
        padding: 76px 20px;
    }

    .project-explorer-section,
    .latest-projects-section,
    .project-capabilities-section,
    .projects-final-cta {
        scroll-margin-top: 120px;
    }

    .project-section-heading h2,
    .project-capabilities__heading h2,
    .projects-final-cta h2 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .project-section-heading > p,
    .project-capabilities__heading > p:not(.section-kicker),
    .projects-final-cta__content > p:not(.section-kicker) {
        font-size: 15px;
    }

    .project-explorer {
        margin-top: 44px;
        padding: 8px;
        border-radius: 22px;
    }

    .project-explorer__tabs {
        padding: 3px;
    }

    .project-explorer__tab {
        min-width: 190px;
        min-height: 82px;
        flex-basis: 190px;
    }

    .project-explorer__panel {
        border-radius: 16px;
    }

    .project-explorer__visual {
        margin: 12px 12px 0;
        border-radius: 13px;
    }

    .project-explorer__content {
        padding: 28px 20px 26px;
    }

    .project-explorer__content h3 {
        font-size: 32px;
    }

    .project-explorer__summary {
        font-size: 14px;
    }

    .project-explorer__story {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .project-explorer__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .project-explorer__actions .button {
        width: 100%;
    }

    .project-filter-bar {
        margin-top: 40px;
        padding: 12px;
        align-items: stretch;
        flex-direction: column;
    }

    .project-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .project-filters button {
        flex: 0 0 auto;
    }

    .project-filter-bar > p {
        padding-left: 5px;
    }

    .project-case-list {
        margin-top: 58px;
        gap: 74px;
    }

    .project-case {
        gap: 30px;
    }

    .project-case__visual {
        border-radius: 17px;
    }

    .project-case__open {
        right: 10px;
        bottom: 10px;
        min-height: 36px;
        padding-inline: 11px;
        font-size: 9px;
    }

    .project-case__content h3 {
        font-size: 34px;
    }

    .project-case__summary {
        font-size: 14px;
    }

    .project-case__details > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .project-case__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .project-case__actions .button {
        width: 100%;
    }

    .project-capability-grid {
        margin-top: 44px;
        grid-template-columns: 1fr;
    }

    .project-capability-grid article {
        min-height: 240px;
    }

    .project-capability-grid article + article,
    .project-capability-grid article:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .project-capability-grid h3 {
        margin-top: 56px;
    }

    .projects-final-cta {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .projects-final-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .projects-final-cta__mark {
        width: min(260px, 78vw);
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .project-explorer__panel.is-refreshing {
        animation: none;
    }

    .project-explorer__tab:hover,
    .project-case__visual > a:hover img,
    .project-case__visual > a:hover .project-case__open {
        transform: none;
    }
}

/* ZIP 09: Complete Calculator Page */

.calculator-page {
    background: #f4f8fc;
}

.calculator-hero {
    position: relative;
    min-height: 700px;
    padding: 104px 64px 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 42%, rgba(22, 200, 255, 0.2), transparent 28rem),
        radial-gradient(circle at 18% 86%, rgba(8, 119, 255, 0.17), transparent 32rem),
        linear-gradient(135deg, #020a13 0%, #081a2d 48%, #0c2b47 100%);
    color: var(--white);
}

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

.calculator-hero::after {
    position: absolute;
    top: -210px;
    right: -170px;
    width: 570px;
    height: 570px;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(22, 200, 255, 0.025),
        0 0 0 140px rgba(22, 200, 255, 0.018);
    content: "";
    pointer-events: none;
}

.calculator-hero__grid {
    position: relative;
    z-index: 1;
    width: min(100%, var(--content-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
    align-items: center;
    gap: 94px;
}

.calculator-hero .section-kicker {
    color: var(--cyan-400);
}

.calculator-hero h1 {
    max-width: 790px;
    margin: 20px 0 28px;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(58px, 6.3vw, 92px);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.calculator-hero__intro {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 18px;
    line-height: 1.75;
}

.calculator-hero__actions {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.calculator-hero .button--secondary {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.calculator-hero .button--secondary:hover {
    border-color: rgba(22, 200, 255, 0.68);
    background: rgba(22, 200, 255, 0.1);
}

.calculator-hero__proof {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.calculator-hero__proof span {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.67);
    font-size: 12px;
}

.calculator-hero__proof strong {
    color: var(--white);
    font-size: 13px;
}

.calculator-hero__display {
    position: relative;
    min-height: 500px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(125, 220, 255, 0.34);
    border-radius: 42px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        rgba(3, 13, 24, 0.72);
    box-shadow:
        0 45px 90px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(22px);
}

.calculator-hero__display::before,
.calculator-hero__display::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.calculator-hero__display::before {
    top: -32px;
    right: -28px;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(22, 200, 255, 0.35);
    background: rgba(22, 200, 255, 0.05);
}

.calculator-hero__display::after {
    right: 58px;
    bottom: 74px;
    width: 12px;
    height: 12px;
    background: var(--cyan-400);
    box-shadow: 0 0 24px rgba(22, 200, 255, 0.9);
}

.calculator-hero__display-top,
.calculator-hero__display-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.calculator-hero__display-top {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calculator-live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calculator-live-status i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-400);
    box-shadow: 0 0 14px rgba(22, 200, 255, 0.88);
    animation: calculatorPulse 1.8s ease-in-out infinite;
}

.calculator-hero__display > strong {
    margin-top: 72px;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(58px, 5.8vw, 82px);
    letter-spacing: -0.06em;
    line-height: 1;
}

.calculator-hero__display > p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.57);
    font-size: 14px;
}

.calculator-hero__mini-lines {
    margin: 54px 0 46px;
    display: grid;
    gap: 11px;
}

.calculator-hero__mini-lines span {
    width: var(--line-width);
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(22, 200, 255, 0.75), rgba(8, 119, 255, 0.12));
}

.calculator-hero__display-bottom {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.calculator-hero__display-bottom span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.calculator-jump-nav {
    position: sticky;
    z-index: 80;
    top: 68px;
    min-height: 62px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    border-bottom: 1px solid rgba(169, 186, 203, 0.42);
    background: rgba(252, 254, 255, 0.92);
    box-shadow: 0 10px 28px rgba(6, 17, 31, 0.06);
    backdrop-filter: blur(18px);
}

.calculator-jump-nav a {
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    color: var(--text-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 180ms ease;
}

.calculator-jump-nav a:hover {
    color: var(--blue-600);
}

.calculator-workspace {
    padding: 118px 64px 130px;
    background:
        radial-gradient(circle at 92% 8%, rgba(22, 200, 255, 0.1), transparent 24rem),
        #f4f8fc;
}

.calculator-workspace__heading {
    width: min(100%, var(--content-width));
    margin: 0 auto 64px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
    align-items: end;
    gap: 70px;
}

.calculator-workspace__heading h2 {
    max-width: 780px;
    margin: 14px 0 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(48px, 5.4vw, 74px);
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.calculator-workspace__heading > p {
    margin: 0 0 6px;
    color: var(--text-500);
    font-size: 16px;
}

.calculator-layout {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: start;
    gap: 30px;
}

.calculator-builder {
    display: grid;
    gap: 28px;
}

.calculator-step {
    scroll-margin-top: 150px;
    padding: 42px;
    border: 1px solid rgba(169, 186, 203, 0.46);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 55px rgba(12, 35, 59, 0.08);
}

.calculator-step__heading {
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: start;
    gap: 22px;
}

.calculator-step__heading > span {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 119, 255, 0.22);
    border-radius: 18px;
    background: linear-gradient(145deg, #f8fcff, #e8f4ff);
    color: var(--blue-600);
    font-family: Manrope, Inter, sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.calculator-step__heading .section-kicker {
    font-size: 10px;
}

.calculator-step__heading h3 {
    margin: 8px 0 10px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 33px;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.calculator-step__heading p:last-child {
    max-width: 780px;
    margin: 0;
    color: var(--text-500);
    font-size: 14px;
}

.calculator-choice-grid {
    display: grid;
    gap: 14px;
}

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

.calculator-choice {
    position: relative;
    min-height: 256px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--silver-200);
    border-radius: 22px;
    background: #fbfdff;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.calculator-choice:hover {
    border-color: rgba(8, 119, 255, 0.45);
    transform: translateY(-3px);
}

.calculator-choice:has(input:checked) {
    border-color: var(--blue-500);
    background: linear-gradient(145deg, #ffffff, #edf7ff);
    box-shadow: 0 18px 38px rgba(8, 119, 255, 0.13);
}

.calculator-choice:has(input:focus-visible),
.hosting-calculator__card:has(input:focus-visible),
.maintenance-calculator__card:has(input:focus-visible),
.calculator-addon:has(input:focus-visible),
.billing-toggle label:has(input:focus-visible),
.calculator-switch:has(input:focus-visible) {
    box-shadow: var(--focus-ring);
}

.calculator-choice > input,
.hosting-calculator__card > input,
.maintenance-calculator__card > input,
.calculator-addon > input,
.billing-toggle input,
.calculator-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.calculator-choice__control {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 22px;
    height: 22px;
    border: 1px solid var(--silver-400);
    border-radius: 50%;
    background: var(--white);
    box-shadow: inset 0 0 0 5px var(--white);
    transition: border-color 180ms ease, background 180ms ease;
}

label:has(> input:checked) > .calculator-choice__control {
    border-color: var(--blue-500);
    background: var(--blue-500);
}

.calculator-choice__eyebrow {
    padding-right: 34px;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.calculator-choice > strong {
    margin-top: 35px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 23px;
    letter-spacing: -0.035em;
}

.calculator-choice__price {
    margin-top: 8px;
    color: var(--blue-600);
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.calculator-choice > small {
    margin-top: 14px;
    color: var(--text-500);
    font-size: 12px;
    line-height: 1.65;
}

.page-count-control {
    margin-top: 18px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(130px, auto);
    align-items: center;
    gap: 28px;
    border: 1px solid var(--silver-200);
    border-radius: 20px;
    background: #f6faff;
    transition: opacity 180ms ease;
}

.page-count-control.is-disabled {
    opacity: 0.48;
}

.page-count-control > div:first-child {
    display: grid;
    gap: 3px;
}

.page-count-control > div:first-child > span {
    color: var(--text-500);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.page-count-control > div:first-child > strong {
    color: var(--ink-950);
    font-size: 15px;
}

.page-count-control > div:first-child > small {
    color: var(--text-500);
    font-size: 11px;
}

.quantity-control {
    padding: 5px;
    display: grid;
    grid-template-columns: 40px 58px 40px;
    align-items: center;
    border: 1px solid var(--silver-200);
    border-radius: 14px;
    background: var(--white);
}

.quantity-control button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 9px;
    background: var(--ice-100);
    color: var(--blue-600);
    font-size: 22px;
    cursor: pointer;
}

.quantity-control button:disabled {
    color: var(--silver-400);
    cursor: not-allowed;
}

.quantity-control input {
    width: 58px;
    border: 0;
    background: transparent;
    color: var(--ink-950);
    font-weight: 800;
    text-align: center;
    appearance: textfield;
}

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

.page-count-control__cost {
    display: grid;
    justify-items: end;
}

.page-count-control__cost span {
    color: var(--text-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.page-count-control__cost strong {
    margin-top: 2px;
    color: var(--blue-600);
    font-family: Manrope, Inter, sans-serif;
    font-size: 21px;
}

.domain-calculator,
.hosting-calculator {
    border: 1px solid var(--silver-200);
    border-radius: 24px;
    background: #f9fcff;
}

.domain-calculator {
    padding: 28px;
}

.domain-calculator__top,
.hosting-calculator__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.domain-calculator h4,
.hosting-calculator h4,
.calculator-option-group h4 {
    margin: 6px 0 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: 22px;
    letter-spacing: -0.035em;
}

.calculator-switch {
    position: relative;
    min-height: 46px;
    padding: 0 15px 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--silver-200);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
}

.calculator-switch > span {
    position: relative;
    width: 42px;
    height: 26px;
    border-radius: 999px;
    background: var(--silver-200);
    transition: background 180ms ease;
}

.calculator-switch > span::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 7px rgba(6, 17, 31, 0.2);
    content: "";
    transition: transform 180ms ease;
}

.calculator-switch:has(input:checked) > span {
    background: var(--blue-500);
}

.calculator-switch:has(input:checked) > span::after {
    transform: translateX(16px);
}

.calculator-switch strong {
    color: var(--text-700);
    font-size: 12px;
}

.domain-calculator__fields {
    margin-top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(150px, 0.58fr);
    gap: 14px;
    transition: opacity 180ms ease;
}

.domain-calculator__fields.is-disabled {
    opacity: 0.46;
}

.domain-calculator__fields label,
.domain-calculator__price {
    min-height: 118px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--silver-200);
    border-radius: 16px;
    background: var(--white);
}

.domain-calculator__fields label > span,
.domain-calculator__price > span {
    color: var(--text-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.domain-calculator__fields input,
.domain-calculator__fields select {
    width: 100%;
    margin-top: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink-950);
    font-size: 16px;
    font-weight: 800;
}

.domain-calculator__fields small,
.domain-calculator__price small {
    margin-top: auto;
    color: var(--text-500);
    font-size: 10px;
    line-height: 1.45;
}

.domain-calculator__price {
    background: linear-gradient(145deg, #07182b, #0d3353);
    color: var(--white);
}

.domain-calculator__price > span,
.domain-calculator__price small {
    color: rgba(255, 255, 255, 0.6);
}

.domain-calculator__price strong {
    margin-top: 8px;
    color: var(--cyan-400);
    font-family: Manrope, Inter, sans-serif;
    font-size: 25px;
}

.hosting-calculator {
    margin-top: 18px;
    padding: 28px;
}

.billing-toggle {
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--silver-200);
    border-radius: 14px;
    background: var(--white);
}

.billing-toggle label {
    position: relative;
    min-width: 145px;
    padding: 9px 12px;
    display: grid;
    border-radius: 10px;
    cursor: pointer;
}

.billing-toggle label:has(input:checked) {
    background: var(--navy-900);
    color: var(--white);
}

.billing-toggle span {
    font-size: 11px;
    font-weight: 800;
}

.billing-toggle small {
    color: var(--text-500);
    font-size: 9px;
}

.billing-toggle label:has(input:checked) small {
    color: rgba(255, 255, 255, 0.59);
}

.hosting-calculator__grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hosting-calculator__card {
    position: relative;
    min-height: 178px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--silver-200);
    border-radius: 18px;
    background: var(--white);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.hosting-calculator__card:has(input:checked) {
    border-color: var(--blue-500);
    box-shadow: 0 14px 30px rgba(8, 119, 255, 0.12);
}

.hosting-calculator__card .calculator-choice__control {
    top: 18px;
    right: 18px;
}

.hosting-calculator__name {
    max-width: calc(100% - 32px);
    color: var(--text-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hosting-calculator__card > strong {
    margin-top: 18px;
    color: var(--ink-950);
    font-family: Manrope, Inter, sans-serif;
    font-size: 28px;
}

.hosting-calculator__card > strong small {
    color: var(--text-500);
    font-size: 11px;
}

.hosting-calculator__card > span:not(.calculator-choice__control):not(.hosting-calculator__name) {
    margin-top: auto;
    color: var(--text-700);
    font-size: 11px;
    font-weight: 700;
}

.hosting-calculator__card > small {
    margin-top: 3px;
    color: var(--blue-600);
    font-size: 10px;
}

.hosting-calculator__card--none {
    justify-content: center;
}

.hosting-calculator__card--none > strong {
    margin-top: 0;
    font-size: 20px;
}

.hosting-calculator__card--none > small {
    margin-top: 8px;
    color: var(--text-500);
}

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

.maintenance-calculator__card {
    position: relative;
    min-height: 190px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--silver-200);
    border-radius: 18px;
    background: #fbfdff;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.maintenance-calculator__card:has(input:checked) {
    border-color: var(--blue-500);
    background: linear-gradient(145deg, #ffffff, #eff8ff);
    box-shadow: 0 14px 30px rgba(8, 119, 255, 0.11);
}

.maintenance-calculator__card .calculator-choice__control {
    top: 18px;
    right: 18px;
}

.maintenance-calculator__card > span:not(.calculator-choice__control) {
    padding-right: 30px;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.maintenance-calculator__card > strong {
    margin-top: 24px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
}

.maintenance-calculator__card > b {
    margin-top: 5px;
    color: var(--blue-600);
    font-family: Manrope, Inter, sans-serif;
    font-size: 23px;
}

.maintenance-calculator__card > b small {
    font-size: 10px;
}

.maintenance-calculator__card > small {
    margin-top: auto;
    color: var(--text-500);
    font-size: 10px;
}

.calculator-option-group + .calculator-option-group {
    margin-top: 36px;
}

.calculator-option-group__heading {
    margin-bottom: 18px;
}

.calculator-option-group__heading p {
    margin: 6px 0 0;
    color: var(--text-500);
    font-size: 12px;
}

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

.calculator-addon {
    position: relative;
    min-height: 128px;
    padding: 18px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-content: start;
    gap: 12px;
    border: 1px solid var(--silver-200);
    border-radius: 17px;
    background: #fbfdff;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.calculator-addon:hover {
    border-color: rgba(8, 119, 255, 0.44);
    transform: translateY(-2px);
}

.calculator-addon:has(input:checked) {
    border-color: var(--blue-500);
    background: #eff8ff;
}

.calculator-addon__check {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--silver-400);
    border-radius: 7px;
    background: var(--white);
    color: transparent;
    font-size: 12px;
    font-weight: 900;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.calculator-addon:has(input:checked) .calculator-addon__check {
    border-color: var(--blue-500);
    background: var(--blue-500);
    color: var(--white);
}

.calculator-addon > span:nth-of-type(2) {
    display: grid;
    gap: 6px;
}

.calculator-addon > span strong {
    color: var(--ink-950);
    font-size: 13px;
}

.calculator-addon > span small {
    color: var(--text-500);
    font-size: 10px;
    line-height: 1.55;
}

.calculator-addon > b {
    grid-column: 2;
    color: var(--blue-600);
    font-size: 11px;
}

.calculator-addon--development {
    min-height: 148px;
    background: linear-gradient(145deg, #f8fbff, #f0f6fc);
}

.calculator-summary {
    position: sticky;
    top: 150px;
    scroll-margin-top: 150px;
    padding: 30px;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(22, 200, 255, 0.15), transparent 18rem),
        linear-gradient(145deg, #06111f, #0b2944);
    color: var(--white);
    box-shadow: 0 30px 75px rgba(6, 17, 31, 0.24);
}

.calculator-summary__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.calculator-summary .section-kicker {
    color: var(--cyan-400);
    font-size: 9px;
}

.calculator-summary__top h2 {
    margin: 8px 0 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.calculator-summary__total {
    margin-top: 30px;
    display: block;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(44px, 4.2vw, 58px);
    letter-spacing: -0.06em;
    line-height: 1;
}

.calculator-summary__note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.6;
}

.calculator-summary__breakdown {
    margin-top: 26px;
    padding: 5px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.calculator-summary__breakdown > div {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
}

.calculator-summary__breakdown strong {
    color: var(--white);
    font-size: 12px;
}

.calculator-summary__saving strong {
    color: var(--cyan-400);
}

.calculator-summary__saving.is-zero {
    opacity: 0.42;
}

.calculator-summary__items {
    margin-top: 24px;
}

.calculator-summary__items-heading {
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

[data-estimate-lines] {
    max-height: 280px;
    padding-right: 4px;
    display: grid;
    overflow-y: auto;
    scrollbar-color: rgba(22, 200, 255, 0.4) transparent;
}

[data-estimate-lines] > div {
    padding: 11px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-estimate-lines] span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
    line-height: 1.45;
}

[data-estimate-lines] strong {
    color: var(--white);
    font-size: 10px;
}

.calculator-summary__terms {
    margin-top: 22px;
    padding: 16px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.calculator-summary__terms > span {
    color: var(--cyan-400);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calculator-summary__terms ul {
    margin: 10px 0 0;
    padding-left: 16px;
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    line-height: 1.5;
}

.calculator-summary__actions {
    margin-top: 26px;
    display: grid;
    gap: 9px;
}

.calculator-summary__actions .button {
    width: 100%;
    min-height: 49px;
}

.calculator-summary__actions .button--secondary {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    cursor: pointer;
}

.calculator-reset {
    min-height: 36px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.calculator-reset:hover {
    color: var(--cyan-400);
}

.calculator-summary__copy-status {
    min-height: 18px;
    margin: 9px 0 0;
    color: var(--cyan-400);
    font-size: 10px;
    text-align: center;
}

.calculator-guidance {
    padding: 118px 64px 130px;
    background:
        radial-gradient(circle at 10% 10%, rgba(8, 119, 255, 0.16), transparent 30rem),
        linear-gradient(135deg, #030b14, #091d32);
    color: var(--white);
}

.calculator-guidance__heading,
.calculator-guidance__grid {
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.calculator-guidance__heading {
    max-width: var(--content-width);
}

.calculator-guidance__heading h2 {
    max-width: 850px;
    margin: 14px 0 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(46px, 5.5vw, 76px);
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.calculator-guidance__grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.calculator-guidance__grid article {
    min-height: 310px;
    padding: 38px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.calculator-guidance__grid article:first-child {
    border-left: 0;
}

.calculator-guidance__grid span {
    color: var(--cyan-400);
    font-family: Manrope, Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.calculator-guidance__grid h3 {
    margin: 78px 0 14px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 25px;
    letter-spacing: -0.035em;
}

.calculator-guidance__grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.75;
}

.calculator-final-cta {
    min-height: 620px;
    padding: 110px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: center;
    gap: 90px;
    background:
        radial-gradient(circle at 82% 50%, rgba(22, 200, 255, 0.2), transparent 25rem),
        linear-gradient(135deg, #eef8ff, #ffffff);
}

.calculator-final-cta__content {
    width: min(100%, 820px);
    justify-self: end;
}

.calculator-final-cta h2 {
    margin: 14px 0 22px;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(46px, 5vw, 72px);
    letter-spacing: -0.058em;
    line-height: 1.02;
}

.calculator-final-cta__content > p:not(.section-kicker) {
    max-width: 700px;
    margin: 0;
    color: var(--text-500);
    font-size: 17px;
}

.calculator-final-cta__content > div {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.calculator-final-cta__mark {
    aspect-ratio: 1;
    width: min(100%, 370px);
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(8, 119, 255, 0.22);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(22, 200, 255, 0.14), transparent 62%),
        var(--white);
    box-shadow:
        0 32px 80px rgba(8, 119, 255, 0.14),
        0 0 0 24px rgba(8, 119, 255, 0.025);
    text-align: center;
}

.calculator-final-cta__mark span {
    color: var(--blue-600);
    font-family: Manrope, Inter, sans-serif;
    font-size: 92px;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
}

.calculator-final-cta__mark strong {
    max-width: 170px;
    margin-top: 13px;
    color: var(--text-700);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes calculatorPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.48;
        transform: scale(0.72);
    }
}

@media (max-width: 1180px) {
    .calculator-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
        gap: 60px;
    }

    .calculator-layout {
        grid-template-columns: minmax(0, 1fr) 360px;
    }

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

    .domain-calculator__price {
        grid-column: 1 / -1;
        min-height: 100px;
    }
}

@media (max-width: 1020px) {
    .calculator-hero {
        min-height: 0;
        padding: 88px 40px 96px;
    }

    .calculator-hero__grid {
        grid-template-columns: 1fr;
    }

    .calculator-hero__copy {
        max-width: 820px;
    }

    .calculator-hero__display {
        width: min(720px, 100%);
        min-height: 420px;
    }

    .calculator-workspace,
    .calculator-guidance {
        padding-inline: 40px;
    }

    .calculator-workspace__heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

    .calculator-summary {
        position: relative;
        top: auto;
        width: min(680px, 100%);
        justify-self: center;
    }

    .calculator-guidance__grid {
        grid-template-columns: 1fr;
    }

    .calculator-guidance__grid article {
        min-height: 220px;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }

    .calculator-guidance__grid article:first-child {
        border-top: 0;
    }

    .calculator-guidance__grid h3 {
        margin-top: 48px;
    }

    .calculator-final-cta {
        padding-inline: 40px;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
        gap: 50px;
    }
}

@media (max-width: 760px) {
    .calculator-jump-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .calculator-jump-nav a {
        flex: 0 0 auto;
    }

    .calculator-step {
        padding: 30px;
    }

    .calculator-choice-grid--build,
    .hosting-calculator__grid,
    .maintenance-calculator__grid,
    .calculator-addon-grid {
        grid-template-columns: 1fr;
    }

    .calculator-choice {
        min-height: 220px;
    }

    .page-count-control {
        grid-template-columns: 1fr auto;
    }

    .page-count-control__cost {
        grid-column: 1 / -1;
        padding-top: 15px;
        justify-items: start;
        border-top: 1px solid var(--silver-200);
    }

    .domain-calculator__top,
    .hosting-calculator__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .billing-toggle {
        width: 100%;
    }

    .calculator-final-cta {
        grid-template-columns: 1fr;
    }

    .calculator-final-cta__content {
        justify-self: start;
    }

    .calculator-final-cta__mark {
        width: min(300px, 80vw);
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .calculator-hero {
        padding: 60px 20px 72px;
    }

    .calculator-hero h1 {
        font-size: clamp(43px, 13vw, 58px);
        line-height: 1;
    }

    .calculator-hero__intro {
        font-size: 15px;
    }

    .calculator-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .calculator-hero__proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .calculator-hero__proof span {
        justify-content: center;
    }

    .calculator-hero__display {
        min-height: 360px;
        padding: 26px;
        border-radius: 26px;
    }

    .calculator-hero__display > strong {
        margin-top: 52px;
        font-size: 48px;
    }

    .calculator-hero__mini-lines {
        margin: 38px 0 34px;
    }

    .calculator-jump-nav {
        top: 66px;
        min-height: 54px;
        padding-inline: 20px;
        gap: 26px;
    }

    .calculator-jump-nav a {
        min-height: 54px;
        font-size: 10px;
    }

    .calculator-workspace,
    .calculator-guidance,
    .calculator-final-cta {
        padding: 78px 20px;
    }

    .calculator-workspace__heading {
        margin-bottom: 42px;
    }

    .calculator-workspace__heading h2,
    .calculator-guidance__heading h2,
    .calculator-final-cta h2 {
        font-size: clamp(37px, 11.5vw, 50px);
    }

    .calculator-step {
        scroll-margin-top: 126px;
        padding: 24px 18px;
        border-radius: 23px;
    }

    .calculator-step__heading {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 13px;
    }

    .calculator-step__heading > span {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 13px;
    }

    .calculator-step__heading h3 {
        font-size: 27px;
    }

    .calculator-choice {
        min-height: 214px;
        padding: 22px;
    }

    .page-count-control {
        padding: 18px;
        grid-template-columns: 1fr;
    }

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

    .quantity-control button {
        width: 100%;
    }

    .domain-calculator,
    .hosting-calculator {
        padding: 20px 16px;
        border-radius: 19px;
    }

    .calculator-switch {
        width: 100%;
        justify-content: space-between;
    }

    .domain-calculator__fields {
        grid-template-columns: 1fr;
    }

    .domain-calculator__price {
        grid-column: auto;
    }

    .billing-toggle {
        grid-template-columns: 1fr;
    }

    .billing-toggle label {
        min-width: 0;
    }

    .calculator-addon {
        min-height: 142px;
    }

    .calculator-summary {
        scroll-margin-top: 126px;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .calculator-summary__total {
        font-size: 46px;
    }

    .calculator-guidance__grid {
        margin-top: 46px;
    }

    .calculator-guidance__grid article {
        min-height: 230px;
        padding: 30px 4px;
    }

    .calculator-guidance__grid h3 {
        margin-top: 46px;
    }

    .calculator-final-cta {
        gap: 52px;
    }

    .calculator-final-cta__content > p:not(.section-kicker) {
        font-size: 15px;
    }

    .calculator-final-cta__content > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .calculator-final-cta__mark span {
        font-size: 74px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .calculator-live-status i {
        animation: none;
    }

    .calculator-choice:hover,
    .hosting-calculator__card:hover,
    .maintenance-calculator__card:hover,
    .calculator-addon:hover {
        transform: none;
    }
}

/* ZIP 10: Complete Contact Page */

.contact-page {
    background: var(--ice-50);
}

.contact-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 84px max(32px, calc((100vw - var(--content-width)) / 2)) 94px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 76% 26%, rgba(22, 200, 255, 0.15), transparent 31rem),
        radial-gradient(circle at 10% 100%, rgba(8, 119, 255, 0.13), transparent 28rem),
        linear-gradient(135deg, #030b14 0%, #07192b 50%, #0a2944 100%);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.contact-hero::before,
.contact-hero::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(22, 200, 255, 0.11);
    border-radius: 72px;
    content: "";
    pointer-events: none;
    transform: rotate(29deg);
}

.contact-hero::before {
    top: -240px;
    right: 12%;
    width: 340px;
    height: 760px;
}

.contact-hero::after {
    bottom: -300px;
    left: -30px;
    width: 380px;
    height: 710px;
}

.contact-hero__grid {
    width: min(100%, var(--content-width));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
    align-items: center;
    gap: 92px;
}

.contact-hero__copy {
    max-width: 790px;
}

.contact-hero .section-kicker {
    color: var(--cyan-400);
}

.contact-hero h1 {
    max-width: 820px;
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(58px, 6.2vw, 88px);
    font-weight: 800;
    letter-spacing: -0.062em;
    line-height: 0.98;
}

.contact-hero__intro {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 18px;
    line-height: 1.75;
}

.contact-hero__actions {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-hero__actions .button--ghost-light {
    margin: 0;
}

.contact-hero__proof {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-hero__proof span {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    backdrop-filter: blur(10px);
}

.contact-hero__proof strong {
    color: var(--white);
    font-size: 12px;
}

.contact-signal {
    position: relative;
    min-height: 550px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 34px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 42%, rgba(22, 200, 255, 0.13), transparent 19rem),
        rgba(4, 16, 29, 0.72);
    background-size: 28px 28px, 28px 28px, auto, auto;
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.contact-signal::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan-400), transparent);
    content: "";
    opacity: 0.68;
}

.contact-signal__top,
.contact-signal__footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-signal__live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cyan-400);
}

.contact-signal__live i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan-400);
    box-shadow: 0 0 0 5px rgba(22, 200, 255, 0.1);
    animation: contactPulse 1.8s ease-in-out infinite;
}

.contact-signal__core {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 38px auto 28px;
    display: grid;
    place-items: center;
}

.contact-signal__core::before,
.contact-signal__core::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.contact-signal__core::before {
    width: 142px;
    height: 142px;
    border: 1px solid rgba(22, 200, 255, 0.46);
    background:
        radial-gradient(circle, rgba(22, 200, 255, 0.2), rgba(8, 119, 255, 0.05) 54%, transparent 55%);
    box-shadow:
        0 0 60px rgba(22, 200, 255, 0.12),
        inset 0 0 30px rgba(22, 200, 255, 0.12);
}

.contact-signal__core::after {
    width: 10px;
    height: 10px;
    background: var(--cyan-400);
    box-shadow:
        0 0 0 7px rgba(22, 200, 255, 0.08),
        0 0 32px rgba(22, 200, 255, 0.72);
    transform: translate(98px, -72px);
}

.contact-signal__core strong {
    position: relative;
    z-index: 2;
    font-family: Manrope, Inter, sans-serif;
    font-size: 72px;
    letter-spacing: -0.1em;
    line-height: 1;
    text-shadow: 0 0 30px rgba(22, 200, 255, 0.28);
}

.contact-signal__orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-signal__orbit--one {
    inset: 18px;
    animation: contactOrbit 18s linear infinite;
}

.contact-signal__orbit--one::after {
    position: absolute;
    top: 28px;
    right: 25px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 18px rgba(8, 119, 255, 0.72);
    content: "";
}

.contact-signal__orbit--two {
    inset: 48px;
    border-style: dashed;
    animation: contactOrbit 14s linear infinite reverse;
}

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

.contact-signal__routes span {
    min-height: 42px;
    padding: 0 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
    font-weight: 700;
}

.contact-signal__footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-jump-nav {
    position: sticky;
    z-index: 75;
    top: 68px;
    min-height: 66px;
    padding: 0 max(32px, calc((100vw - var(--content-width)) / 2));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    border-bottom: 1px solid rgba(169, 186, 203, 0.52);
    background: rgba(252, 254, 255, 0.9);
    box-shadow: 0 10px 30px rgba(12, 35, 59, 0.06);
    backdrop-filter: blur(18px);
}

.contact-jump-nav a {
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    color: var(--text-500);
    font-size: 12px;
    font-weight: 800;
    transition: color 180ms ease;
}

.contact-jump-nav a:hover {
    color: var(--blue-600);
}

.contact-workspace {
    padding: 118px 64px 130px;
    background:
        radial-gradient(circle at 90% 8%, rgba(22, 200, 255, 0.1), transparent 27rem),
        linear-gradient(180deg, #f4f9fd, #ffffff 40%, #f8fbfe);
}

.contact-workspace__heading,
.contact-layout,
.contact-workspace > .contact-notice {
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.contact-workspace__heading {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: end;
    gap: 80px;
}

.contact-workspace__heading .section-kicker {
    margin-bottom: 18px;
}

.contact-workspace__heading h2 {
    max-width: 830px;
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(46px, 5.1vw, 72px);
    letter-spacing: -0.056em;
    line-height: 1.02;
}

.contact-workspace__heading > p {
    margin: 0;
    color: var(--text-500);
    font-size: 15px;
    line-height: 1.75;
}

.contact-workspace > .contact-notice {
    margin-top: -28px;
    margin-bottom: 34px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    align-items: start;
    gap: 26px;
}

.contact-form-card {
    min-width: 0;
    padding: 42px;
    border: 1px solid rgba(169, 186, 203, 0.58);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 80px rgba(12, 35, 59, 0.11);
}

.contact-form-card__header {
    padding-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--silver-200);
}

.contact-form-card__header > div {
    display: grid;
    gap: 6px;
}

.contact-form-card__header > div span {
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-card__header > div strong {
    font-family: Manrope, Inter, sans-serif;
    font-size: 25px;
    letter-spacing: -0.025em;
}

.contact-form-card__secure {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(8, 119, 255, 0.16);
    border-radius: 999px;
    background: #edf7ff;
    color: var(--blue-600);
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.contact-form-card__secure i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(8, 119, 255, 0.08);
}

.contact-notice {
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border-radius: 18px;
}

.contact-notice > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.contact-notice strong,
.contact-notice p {
    display: block;
}

.contact-notice strong {
    font-family: Manrope, Inter, sans-serif;
    font-size: 15px;
}

.contact-notice p {
    margin: 3px 0 0;
    font-size: 11px;
    line-height: 1.55;
}

.contact-notice small {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.contact-notice a {
    min-height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.contact-notice--success {
    border: 1px solid rgba(0, 151, 113, 0.2);
    background: #effcf8;
    color: #075f4c;
    box-shadow: 0 16px 40px rgba(0, 111, 82, 0.08);
}

.contact-notice--success > span,
.contact-notice--success a {
    background: #d9f8ee;
    color: #007e5f;
}

.contact-notice--error {
    grid-template-columns: 42px minmax(0, 1fr);
    margin-top: 24px;
    border: 1px solid rgba(204, 48, 64, 0.19);
    background: #fff4f5;
    color: #8b2030;
}

.contact-notice--error > span {
    background: #ffe3e7;
    color: #bd2c40;
}

.contact-form {
    position: relative;
    margin-top: 32px;
}

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

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.contact-field {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-field label,
.contact-preference legend {
    margin-bottom: 8px;
    color: var(--text-700);
    font-size: 11px;
    font-weight: 800;
}

.contact-field label > span:not([aria-hidden]),
.contact-preference legend > span:not([aria-hidden]) {
    margin-left: 5px;
    color: var(--text-500);
    font-size: 9px;
    font-weight: 600;
}

.contact-field label > span[aria-hidden],
.contact-preference legend > span[aria-hidden] {
    color: var(--blue-600);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--silver-200);
    border-radius: 12px;
    background: #fbfdff;
    color: var(--ink-950);
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-field input,
.contact-field select {
    min-height: 52px;
    padding: 0 15px;
}

.contact-field select {
    cursor: pointer;
}

.contact-field textarea {
    min-height: 190px;
    padding: 15px;
    line-height: 1.65;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #8799aa;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
    border-color: var(--silver-400);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: 0;
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(8, 119, 255, 0.1);
}

.contact-field.has-error input,
.contact-field.has-error select,
.contact-field.has-error textarea {
    border-color: #d74356;
    background: #fffafa;
}

.contact-field__hint,
.contact-field__error {
    display: block;
    font-size: 9px;
    line-height: 1.45;
}

.contact-field__hint {
    margin-top: 6px;
    color: var(--text-500);
}

.contact-field__error {
    min-height: 14px;
    margin-top: 5px;
    color: #b7273b;
    font-weight: 700;
}

.contact-preference {
    min-width: 0;
    margin: 26px 0 0;
    padding: 0;
    border: 0;
}

.contact-preference > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.contact-preference label {
    position: relative;
    min-height: 58px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--silver-200);
    border-radius: 12px;
    background: #fbfdff;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-preference label:hover {
    border-color: rgba(8, 119, 255, 0.42);
    transform: translateY(-1px);
}

.contact-preference input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-preference label > span {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border: 1px solid var(--silver-400);
    border-radius: 50%;
    background: var(--white);
    box-shadow: inset 0 0 0 4px var(--white);
}

.contact-preference label:has(input:checked) {
    border-color: var(--blue-500);
    background: #eff8ff;
}

.contact-preference label:has(input:checked) > span {
    border-color: var(--blue-500);
    background: var(--blue-500);
}

.contact-preference label:has(input:focus-visible) {
    box-shadow: var(--focus-ring);
}

.contact-preference strong {
    font-size: 11px;
}

.contact-preference.has-error > div {
    padding: 3px;
    border: 1px solid rgba(215, 67, 86, 0.5);
    border-radius: 14px;
}

.contact-field--message {
    margin-top: 24px;
}

.contact-field__message-meta {
    margin-top: 7px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.contact-field__message-meta small {
    color: var(--text-500);
    font-size: 9px;
}

.contact-field__message-meta [data-message-count] {
    flex: 0 0 auto;
    color: var(--blue-600);
    font-weight: 800;
}

.contact-consent {
    margin-top: 24px;
}

.contact-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.contact-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.contact-consent label > span {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--silver-400);
    border-radius: 7px;
    background: var(--white);
    color: transparent;
    font-size: 11px;
    font-weight: 900;
}

.contact-consent label:has(input:checked) > span {
    border-color: var(--blue-500);
    background: var(--blue-500);
    color: var(--white);
}

.contact-consent label:has(input:focus-visible) > span {
    box-shadow: var(--focus-ring);
}

.contact-consent label > strong {
    padding-top: 2px;
    color: var(--text-700);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.65;
}

.contact-consent.has-error label > strong {
    color: #9e2637;
}

.contact-consent > p {
    margin: 8px 0 0 35px;
    color: var(--text-500);
    font-size: 9px;
    line-height: 1.6;
}

.contact-form__footer {
    margin-top: 30px;
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--silver-200);
}

.contact-form__footer .button {
    min-width: 250px;
}

.contact-form__footer .button.is-submitting {
    opacity: 0.7;
    pointer-events: none;
}

.contact-form__footer p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-500);
    font-size: 9px;
}

.contact-form__footer p i {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #00a47c;
    box-shadow: 0 0 0 4px rgba(0, 164, 124, 0.09);
}

.contact-sidebar {
    position: sticky;
    top: 156px;
    padding: 32px;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(22, 200, 255, 0.13), transparent 18rem),
        linear-gradient(145deg, #06111f, #0a2843);
    color: var(--white);
    box-shadow: 0 30px 80px rgba(6, 17, 31, 0.2);
}

.contact-sidebar .section-kicker {
    margin-bottom: 10px;
    color: var(--cyan-400);
    font-size: 10px;
}

.contact-sidebar__heading h2 {
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: 31px;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.contact-sidebar__heading > p:last-child {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.65;
}

.contact-channel-list {
    margin-top: 28px;
    display: grid;
    gap: 9px;
}

.contact-channel-list > a {
    min-width: 0;
    min-height: 75px;
    padding: 13px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-channel-list > a:hover {
    border-color: rgba(22, 200, 255, 0.4);
    background: rgba(22, 200, 255, 0.07);
    transform: translateY(-2px);
}

.contact-channel-list__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22, 200, 255, 0.25);
    border-radius: 11px;
    background: rgba(22, 200, 255, 0.07);
    color: var(--cyan-400);
    font-family: Manrope, Inter, sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.contact-channel-list > a > span:nth-child(2) {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.contact-channel-list small {
    color: rgba(255, 255, 255, 0.44);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-channel-list strong {
    min-width: 0;
    color: rgba(255, 255, 255, 0.87);
    font-size: 10px;
    overflow-wrap: anywhere;
}

.contact-channel-list b {
    color: var(--cyan-400);
    font-size: 14px;
}

.contact-sidebar__checklist {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-sidebar__checklist > span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-sidebar__checklist ul {
    margin: 17px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.contact-sidebar__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    line-height: 1.5;
}

.contact-sidebar__checklist i {
    color: var(--cyan-400);
    font-style: normal;
    font-weight: 900;
}

.contact-sidebar__calculator {
    margin-top: 26px;
    padding: 18px;
    display: grid;
    gap: 5px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    box-shadow: 0 14px 32px rgba(8, 119, 255, 0.25);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-sidebar__calculator:hover {
    box-shadow: 0 18px 40px rgba(8, 119, 255, 0.34);
    transform: translateY(-2px);
}

.contact-sidebar__calculator span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
}

.contact-sidebar__calculator strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
}

.contact-next {
    padding: 118px 64px 130px;
    background:
        radial-gradient(circle at 12% 12%, rgba(8, 119, 255, 0.14), transparent 28rem),
        linear-gradient(135deg, #030b14, #081c31);
    color: var(--white);
}

.contact-next__heading,
.contact-next__steps {
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.contact-next .section-kicker {
    color: var(--cyan-400);
}

.contact-next__heading h2 {
    max-width: 860px;
    margin: 0;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(46px, 5.2vw, 74px);
    letter-spacing: -0.058em;
    line-height: 1.02;
}

.contact-next__steps {
    margin-top: 72px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    list-style: none;
}

.contact-next__steps li {
    min-height: 320px;
    padding: 38px;
}

.contact-next__steps li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-next__steps span {
    color: var(--cyan-400);
    font-family: Manrope, Inter, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.contact-next__steps h3 {
    margin: 82px 0 14px;
    font-family: Manrope, Inter, sans-serif;
    font-size: 25px;
    letter-spacing: -0.035em;
}

.contact-next__steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.75;
}

.contact-final-cta {
    min-height: 620px;
    padding: 110px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: center;
    gap: 90px;
    background:
        radial-gradient(circle at 82% 50%, rgba(22, 200, 255, 0.2), transparent 25rem),
        linear-gradient(135deg, #eef8ff, #ffffff);
}

.contact-final-cta__content {
    width: min(100%, 840px);
    justify-self: end;
}

.contact-final-cta h2 {
    margin: 14px 0 22px;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(46px, 5vw, 72px);
    letter-spacing: -0.058em;
    line-height: 1.02;
}

.contact-final-cta__content > p:not(.section-kicker) {
    max-width: 700px;
    margin: 0;
    color: var(--text-500);
    font-size: 17px;
    line-height: 1.7;
}

.contact-final-cta__content > div {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-final-cta__mark {
    aspect-ratio: 1;
    width: min(100%, 370px);
    display: grid;
    place-items: center;
    align-content: center;
    border: 1px solid rgba(8, 119, 255, 0.22);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(22, 200, 255, 0.14), transparent 62%),
        var(--white);
    box-shadow:
        0 32px 80px rgba(8, 119, 255, 0.14),
        0 0 0 24px rgba(8, 119, 255, 0.025);
    text-align: center;
}

.contact-final-cta__mark span {
    color: var(--blue-600);
    font-family: Manrope, Inter, sans-serif;
    font-size: 92px;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
}

.contact-final-cta__mark strong {
    max-width: 170px;
    margin-top: 13px;
    color: var(--text-700);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes contactPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.45;
        transform: scale(0.72);
    }
}

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

@media (max-width: 1180px) {
    .contact-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
        gap: 58px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr) 370px;
    }

    .contact-form-card {
        padding: 34px;
    }
}

@media (max-width: 1020px) {
    .contact-hero {
        min-height: 0;
        padding: 90px 40px 100px;
    }

    .contact-hero__grid {
        grid-template-columns: 1fr;
    }

    .contact-hero__copy {
        max-width: 840px;
    }

    .contact-signal {
        width: min(720px, 100%);
        min-height: 500px;
    }

    .contact-workspace,
    .contact-next {
        padding-inline: 40px;
    }

    .contact-workspace__heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .contact-workspace__heading > p {
        max-width: 700px;
    }

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

    .contact-sidebar {
        position: relative;
        top: auto;
        width: min(720px, 100%);
        justify-self: center;
    }

    .contact-next__steps {
        grid-template-columns: 1fr;
    }

    .contact-next__steps li {
        min-height: 230px;
    }

    .contact-next__steps li + li {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }

    .contact-next__steps h3 {
        margin-top: 48px;
    }

    .contact-final-cta {
        padding-inline: 40px;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
        gap: 50px;
    }
}

@media (max-width: 760px) {
    .contact-jump-nav {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .contact-jump-nav a {
        flex: 0 0 auto;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-preference > div {
        grid-template-columns: 1fr;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__footer .button {
        width: 100%;
    }

    .contact-form__footer p {
        justify-content: center;
    }

    .contact-notice {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .contact-notice a {
        grid-column: 2;
        justify-self: start;
    }

    .contact-final-cta {
        grid-template-columns: 1fr;
    }

    .contact-final-cta__content {
        justify-self: start;
    }

    .contact-final-cta__mark {
        width: min(300px, 80vw);
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 64px 20px 76px;
    }

    .contact-hero h1 {
        font-size: clamp(43px, 13vw, 58px);
        line-height: 1;
    }

    .contact-hero__intro {
        font-size: 15px;
    }

    .contact-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-hero__proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-hero__proof span {
        justify-content: center;
    }

    .contact-signal {
        min-height: 460px;
        padding: 23px;
        border-radius: 26px;
    }

    .contact-signal__core {
        width: 230px;
        height: 230px;
        margin-top: 28px;
    }

    .contact-signal__routes {
        grid-template-columns: 1fr;
    }

    .contact-signal__footer {
        margin-top: 20px;
    }

    .contact-jump-nav {
        top: 66px;
        min-height: 54px;
        padding-inline: 20px;
        gap: 28px;
    }

    .contact-jump-nav a {
        min-height: 54px;
        font-size: 10px;
    }

    .contact-workspace,
    .contact-next,
    .contact-final-cta {
        padding: 78px 20px;
    }

    .contact-workspace__heading {
        margin-bottom: 44px;
    }

    .contact-workspace__heading h2,
    .contact-next__heading h2,
    .contact-final-cta h2 {
        font-size: clamp(37px, 11.5vw, 50px);
    }

    .contact-form-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .contact-form-card__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-form-card__header > div strong {
        font-size: 22px;
    }

    .contact-notice {
        padding: 18px;
        gap: 13px;
    }

    .contact-notice > span {
        width: 38px;
        height: 38px;
    }

    .contact-field input,
    .contact-field select {
        min-height: 54px;
    }

    .contact-field textarea {
        min-height: 220px;
    }

    .contact-field__message-meta {
        flex-direction: column;
        gap: 4px;
    }

    .contact-form__footer .button {
        min-width: 0;
    }

    .contact-sidebar {
        padding: 25px 20px;
        border-radius: 24px;
    }

    .contact-channel-list > a {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .contact-channel-list > a > b {
        display: none;
    }

    .contact-next__steps {
        margin-top: 46px;
    }

    .contact-next__steps li {
        min-height: 235px;
        padding: 30px 4px;
    }

    .contact-next__steps h3 {
        margin-top: 46px;
    }

    .contact-final-cta {
        gap: 52px;
    }

    .contact-final-cta__content > p:not(.section-kicker) {
        font-size: 15px;
    }

    .contact-final-cta__content > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-final-cta__mark span {
        font-size: 74px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-signal__live i,
    .contact-signal__orbit {
        animation: none;
    }

    .contact-preference label:hover,
    .contact-channel-list > a:hover,
    .contact-sidebar__calculator:hover {
        transform: none;
    }
}

.calculator-summary__actions .calculator-download-button {
    border: 1px solid rgba(22, 200, 255, 0.34);
    background: linear-gradient(135deg, #e9faff, #d6f5ff);
    color: var(--navy-900);
    box-shadow: 0 12px 28px rgba(22, 200, 255, 0.12);
}

.calculator-summary__actions .calculator-download-button:hover {
    border-color: var(--cyan-400);
    background: linear-gradient(135deg, #f2fcff, #e0f8ff);
    box-shadow: 0 15px 34px rgba(22, 200, 255, 0.2);
    transform: translateY(-2px);
}

.calculator-summary__actions .calculator-download-button.is-preparing {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.calculator-summary__download-note {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    line-height: 1.55;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .calculator-summary__actions .calculator-download-button:hover {
        transform: none;
    }
}

/* ZIP 11: Final public-site polish and launch pack */

:focus-visible {
    outline: 3px solid transparent;
    outline-offset: 3px;
}

.footer-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.72fr) minmax(280px, 0.9fr);
    align-items: start;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
}

.footer-navigation a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-navigation a:hover {
    color: var(--cyan-400);
    transform: translateX(3px);
}

.not-found-page {
    background:
        radial-gradient(circle at 82% 12%, rgba(22, 200, 255, 0.14), transparent 28rem),
        linear-gradient(145deg, #f8fbff 0%, #eef6fc 100%);
}

.not-found-hero {
    min-height: calc(100vh - 82px);
    padding: 88px max(32px, calc((100vw - var(--content-width)) / 2));
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
    align-items: center;
    gap: 72px;
}

.not-found-hero__content {
    max-width: 720px;
}

.not-found-hero__content h1 {
    max-width: 690px;
    margin: 16px 0 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(52px, 6.4vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.not-found-hero__intro {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--text-700);
    font-size: 19px;
}

.not-found-hero__actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.not-found-hero__visual {
    position: relative;
    min-height: 570px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(22, 200, 255, 0.24);
    border-radius: 42px;
    background:
        radial-gradient(circle at 50% 42%, rgba(22, 200, 255, 0.2), transparent 37%),
        linear-gradient(145deg, #06111f, #0b2540);
    box-shadow: 0 30px 80px rgba(6, 17, 31, 0.24);
}

.not-found-hero__visual::before {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    content: "";
}

.not-found-hero__visual strong {
    position: absolute;
    top: 34px;
    left: 42px;
    color: rgba(255, 255, 255, 0.08);
    font-family: Manrope, sans-serif;
    font-size: clamp(120px, 15vw, 220px);
    line-height: 1;
    letter-spacing: -0.08em;
}

.not-found-hero__visual img {
    position: relative;
    z-index: 2;
    width: min(410px, 80%);
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.4));
}

.not-found-hero__visual small {
    position: absolute;
    z-index: 3;
    right: 32px;
    bottom: 28px;
    padding: 9px 13px;
    border: 1px solid rgba(22, 200, 255, 0.24);
    border-radius: 999px;
    background: rgba(6, 17, 31, 0.7);
    color: var(--cyan-400);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.not-found-orbit {
    position: absolute;
    border: 1px solid rgba(22, 200, 255, 0.18);
    border-radius: 50%;
    animation: not-found-orbit 16s linear infinite;
}

.not-found-orbit--one {
    width: 470px;
    height: 470px;
}

.not-found-orbit--two {
    width: 560px;
    height: 330px;
    animation-direction: reverse;
    animation-duration: 20s;
    transform: rotate(-18deg);
}

.not-found-routes {
    padding: 110px max(32px, calc((100vw - var(--content-width)) / 2));
    background: var(--white);
}

.not-found-routes__heading {
    max-width: 760px;
}

.not-found-routes__heading h2 {
    margin: 12px 0 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.not-found-route-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.not-found-route-grid a {
    min-height: 220px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--silver-200);
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #f5f9fd);
    box-shadow: var(--shadow-card);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.not-found-route-grid a:hover {
    border-color: rgba(8, 119, 255, 0.48);
    box-shadow: 0 24px 56px rgba(8, 119, 255, 0.14);
    transform: translateY(-5px);
}

.not-found-route-grid span {
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.not-found-route-grid strong {
    margin-top: 34px;
    font-family: Manrope, sans-serif;
    font-size: 22px;
}

.not-found-route-grid small {
    margin-top: 10px;
    color: var(--text-500);
    font-size: 14px;
    line-height: 1.65;
}

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

@media (max-width: 1020px) {
    .footer-shell {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

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

    .not-found-hero {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
        gap: 40px;
    }

    .not-found-hero__visual {
        min-height: 500px;
    }
}

@media (max-width: 760px) {
    .footer-shell,
    .not-found-hero,
    .not-found-route-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-actions {
        justify-items: start;
    }

    .not-found-hero {
        min-height: 0;
        padding: 74px 24px;
    }

    .not-found-hero__visual {
        min-height: 480px;
    }

    .not-found-routes {
        padding: 88px 24px;
    }
}

@media (max-width: 480px) {
    .footer-navigation {
        grid-template-columns: 1fr;
    }

    .not-found-hero__content h1 {
        font-size: clamp(46px, 14vw, 64px);
    }

    .not-found-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .not-found-hero__visual {
        min-height: 390px;
        border-radius: 28px;
    }

    .not-found-hero__visual strong {
        top: 24px;
        left: 24px;
        font-size: 110px;
    }

    .not-found-hero__visual img {
        width: min(330px, 88%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-navigation a:hover,
    .not-found-route-grid a:hover {
        transform: none;
    }

    .not-found-orbit {
        animation: none;
    }
}

@media (forced-colors: active) {
    :focus-visible {
        outline-color: Highlight;
        box-shadow: none;
    }

    .button,
    .not-found-route-grid a,
    .footer-navigation a {
        forced-color-adjust: auto;
    }
}

/* ZIP 15: managed custom-development offerings */

.custom-offering-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1320px;
    margin: 34px auto 0;
}

.custom-offering-grid article {
    display: flex;
    min-height: 290px;
    padding: 24px;
    border: 1px solid rgba(117, 209, 255, 0.18);
    border-radius: 22px;
    background:
        linear-gradient(145deg, rgba(17, 48, 73, 0.86), rgba(6, 22, 35, 0.9));
    box-shadow: 0 22px 54px rgba(0, 8, 18, 0.2);
    flex-direction: column;
    transition:
        border-color 180ms ease,
        transform 180ms ease,
        background 180ms ease;
}

.custom-offering-grid article:hover {
    border-color: rgba(81, 204, 255, 0.44);
    background:
        linear-gradient(145deg, rgba(20, 59, 89, 0.92), rgba(7, 27, 43, 0.94));
    transform: translateY(-4px);
}

.custom-offering-grid article > span {
    color: #63d8ff;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.custom-offering-grid h3 {
    margin: 12px 0 10px;
    color: #f5fbff;
    font-size: clamp(1.08rem, 1.6vw, 1.35rem);
    letter-spacing: -0.02em;
}

.custom-offering-grid p {
    margin: 0;
    color: rgba(218, 235, 247, 0.75);
    font-size: 0.9rem;
    line-height: 1.65;
}

.custom-offering-grid article > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.custom-offering-grid small {
    color: rgba(198, 224, 241, 0.62);
    font-size: 0.75rem;
}

.custom-offering-grid strong {
    color: #ffffff;
    font-size: 1.35rem;
}

.custom-offering-grid a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(117, 209, 255, 0.14);
    color: #75ddff;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1080px) {
    .custom-offering-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .custom-offering-grid {
        grid-template-columns: 1fr;
    }

    .custom-offering-grid article {
        min-height: 0;
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .custom-offering-grid article {
        transition: none;
    }

    .custom-offering-grid article:hover {
        transform: none;
    }
}

/* ZIP 19: calculator estimate lead delivery */
.calculator-client-details {
    position: relative;
    margin-top: 22px;
    padding: 17px;
    border: 1px solid rgba(22, 200, 255, 0.2);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

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

.calculator-client-details__heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.calculator-client-details__heading > span {
    color: var(--cyan-400);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calculator-client-details__heading small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    text-align: right;
}

.calculator-client-details__grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.calculator-client-details__grid label {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.calculator-client-details__grid label > span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    font-weight: 700;
}

.calculator-client-details__grid input {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 11px;
    outline: none;
    background: rgba(2, 12, 22, 0.42);
    color: var(--white);
    font: inherit;
    font-size: 11px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.calculator-client-details__grid input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.calculator-client-details__grid input:focus {
    border-color: rgba(22, 200, 255, 0.72);
    background: rgba(2, 12, 22, 0.62);
    box-shadow: 0 0 0 3px rgba(22, 200, 255, 0.1);
}

.calculator-client-details__grid input.is-invalid {
    border-color: rgba(255, 107, 107, 0.85);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.08);
}

.calculator-client-details__grid label > small {
    min-height: 11px;
    color: #ffb4b4;
    font-size: 8px;
    line-height: 1.35;
}

.calculator-client-details > p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 8.5px;
    line-height: 1.55;
}

.calculator-summary__actions [data-send-estimate] {
    cursor: pointer;
}

.calculator-summary__actions .is-sending-estimate {
    cursor: wait;
    opacity: 0.68;
    pointer-events: none;
}

@media (max-width: 560px) {
    .calculator-client-details__grid {
        grid-template-columns: 1fr;
    }

    .calculator-client-details__heading {
        display: grid;
    }

    .calculator-client-details__heading small {
        text-align: left;
    }
}
