:root {
    --bg: #050816;
    --bg-soft: #0d1120;
    --surface: rgba(13, 18, 33, 0.78);
    --surface-strong: #10162a;
    --surface-border: rgba(136, 164, 255, 0.16);
    --text: #f5f7ff;
    --text-soft: rgba(229, 233, 255, 0.72);
    --accent: #66b6ff;
    --accent-soft: rgba(102, 182, 255, 0.14);
    --accent-strong: #8f87ff;
    --success: #7ce3b1;
    --error: #ff918f;
    --container: min(1180px, calc(100vw - 40px));
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    --header-height: 84px;
    --admin-bar-height: 0px;
    --hero-viewport-offset: calc(var(--header-height) + var(--admin-bar-height));
    --hero-stage-height: clamp(520px, calc(100svh - var(--hero-viewport-offset)), 980px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(102, 182, 255, 0.2), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(143, 135, 255, 0.18), transparent 24%),
        linear-gradient(180deg, #060913 0%, #050816 42%, #080d19 100%);
    line-height: 1.6;
}

body.admin-bar {
    --admin-bar-height: 32px;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.site-shell::before,
.site-shell::after {
    content: '';
    position: fixed;
    inset: auto;
    width: 36vw;
    height: 36vw;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.4;
    z-index: -1;
}

.site-shell::before {
    top: -10vw;
    right: -8vw;
    background: rgba(102, 182, 255, 0.18);
}

.site-shell::after {
    bottom: -14vw;
    left: -10vw;
    background: rgba(143, 135, 255, 0.16);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 22, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-height);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.site-nav__list,
.footer-nav,
.mobile-nav__list,
.footer-contact,
.contact-links {
    display: flex;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list a,
.footer-nav a,
.mobile-nav__list a,
.footer-contact a,
.contact-links a {
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.site-nav__list a:hover,
.footer-nav a:hover,
.mobile-nav__list a:hover,
.footer-contact a:hover,
.contact-links a:hover {
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #80d6ff);
    color: #04101f;
    font-weight: 700;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
    box-shadow: 0 18px 40px rgba(102, 182, 255, 0.26);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(102, 182, 255, 0.28);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text);
    box-shadow: none;
}

.button--small {
    min-height: 44px;
    padding: 0 18px;
}

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

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

.section {
    padding: 110px 0;
}

.section--tight {
    padding-top: 70px;
}

.hero {
    padding-top: 0;
    padding-bottom: 0;
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
    font-size: 1.55rem;
}

p {
    margin: 0;
}

.hero__lead,
.section-heading p,
.about-copy,
.contact-grid p,
.prose {
    color: var(--text-soft);
    font-size: 1.06rem;
}

.hero__lead {
    max-width: 760px;
    margin-top: 24px;
    font-size: 1.18rem;
}

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

.card,
.contact-card,
.case-card,
.about-focus {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        var(--surface);
    box-shadow: var(--shadow);
}

.card::before,
.case-card::before,
.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 182, 255, 0.16), transparent 30%, transparent 70%, rgba(143, 135, 255, 0.1));
    opacity: 0.9;
    pointer-events: none;
}

.hero-stage {
    position: relative;
    min-height: var(--hero-stage-height);
    height: var(--hero-stage-height);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 50% 18%, rgba(102, 182, 255, 0.08), transparent 30%),
        radial-gradient(circle at 78% 22%, rgba(143, 135, 255, 0.06), transparent 26%),
        linear-gradient(180deg, #040711 0%, #050816 52%, #070c18 100%);
    isolation: isolate;
}

.hero-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(102, 182, 255, 0.05), transparent 36%),
        linear-gradient(180deg, rgba(4, 7, 17, 0.08) 0%, rgba(3, 6, 16, 0.26) 100%);
    pointer-events: none;
}

.hero-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, transparent 0%, rgba(4, 7, 17, 0.08) 44%, rgba(4, 7, 17, 0.54) 100%),
        linear-gradient(180deg, transparent 0%, rgba(143, 135, 255, 0.04) 100%);
    pointer-events: none;
    z-index: -1;
}

.hero-stage__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-stage__inner {
    position: relative;
    z-index: 1;
    min-height: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 5.4vh, 72px);
    padding-top: clamp(56px, 6vh, 88px);
    padding-bottom: clamp(64px, 6vh, 80px);
}

.hero-stage__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1 1 auto;
    padding-top: clamp(12px, 3.8vh, 56px);
    width: min(100%, 1400px);
    margin: 0 auto;
}

.hero-stage__content h1 {
    width: 100%;
    max-width: min(28ch, 100%);
    margin-inline: auto;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.85rem);
    line-height: 0.98;
}

.hero-stage__content .eyebrow {
    margin-bottom: 22px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.08em;
    width: 100%;
    max-width: 100%;
}

.hero-title__row {
    display: block;
}

.hero-title__row {
    display: inline-block;
    width: auto;
    text-shadow:
        0 18px 42px rgba(3, 8, 20, 0.5),
        0 0 18px rgba(102, 182, 255, 0.08);
    color: #eef5ff;
    font-weight: 800;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.hero-stage__content::after {
    content: '';
    position: absolute;
    top: calc(clamp(12px, 3.8vh, 56px) + 108px);
    left: 50%;
    width: min(560px, 72vw);
    height: min(280px, 34vw);
    background: radial-gradient(circle, rgba(102, 182, 255, 0.16) 0%, rgba(102, 182, 255, 0.05) 34%, rgba(102, 182, 255, 0) 72%);
    transform: translateX(-50%);
    filter: blur(24px);
    z-index: -1;
    pointer-events: none;
}

.hero-stage__content .hero__lead {
    margin-inline: auto;
    max-width: 680px;
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
    text-shadow: 0 12px 34px rgba(4, 7, 17, 0.44);
}

.hero-stage__meta {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 10px;
    width: min(100% - 40px, 680px);
    margin-top: auto;
    text-align: center;
}

.hero-stage__kicker {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(8, 13, 28, 0.24);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(8px);
    color: var(--text-soft);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-stage__summary {
    max-width: 520px;
    color: rgba(229, 233, 255, 0.56);
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.5;
}

.hero-stage__scroll {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(229, 233, 255, 0.72);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-stage__scroll-arrow {
    width: 12px;
    height: 12px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.section-heading h2,
.section-heading h1 {
    margin-bottom: 14px;
}

.services-section {
    position: relative;
    isolation: isolate;
}

.services-section::before {
    content: none;
}

.services-section__heading {
    display: grid;
    gap: 16px;
    margin-bottom: 38px;
    max-width: 980px;
}

.services-section__heading .eyebrow {
    margin-bottom: 0;
}

.services-section__heading h2 {
    max-width: none;
    font-size: clamp(1.95rem, 2.9vw, 2.7rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    text-shadow: 0 18px 40px rgba(4, 8, 20, 0.24);
}

.services-section__heading p {
    max-width: 58ch;
    font-size: 1.08rem;
}

.services-section__headline-prefix {
    display: block;
    color: rgba(244, 247, 255, 0.96);
    white-space: nowrap;
}

.services-section__headline-accent {
    position: relative;
    display: block;
    width: fit-content;
    color: #f5f8ff;
    white-space: nowrap;
}

.services-section__headline-accent::after {
    content: '';
    position: absolute;
    left: 0.04em;
    bottom: 0.08em;
    width: calc(100% - 0.08em);
    height: 0.14em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(102, 182, 255, 0.95), rgba(143, 135, 255, 0.55));
    opacity: 0.88;
    z-index: -1;
    filter: blur(0.4px);
}

.card-grid {
    display: grid;
    gap: 24px;
}

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

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

.card,
.contact-card {
    padding: 30px;
}

.service-card,
.principle-card {
    min-height: 280px;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.services-section .card-grid--three {
    grid-template-areas:
        "system automation"
        "system partnership"
        "infrastructure partnership";
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 28px;
    align-items: stretch;
}

.services-section .service-card--system {
    grid-area: system;
}

.services-section .service-card--automation {
    grid-area: automation;
}

.services-section .service-card--partnership {
    grid-area: partnership;
}

.services-section .service-card--infrastructure {
    grid-area: infrastructure;
}

.services-section .service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: 60px 30px 28px;
    border-radius: 34px;
    border-color: rgba(136, 164, 255, 0.14);
    background:
        radial-gradient(circle at top center, rgba(102, 182, 255, 0.06), transparent 42%),
        linear-gradient(180deg, rgba(17, 23, 42, 0.98) 0%, rgba(12, 17, 32, 0.98) 100%);
    overflow: hidden;
}

.services-section .service-card--system,
.services-section .service-card--partnership {
    min-height: 620px;
}

.services-section .service-card--automation,
.services-section .service-card--infrastructure {
    min-height: 300px;
}

.services-section .service-card::before {
    background:
        radial-gradient(circle at top center, rgba(102, 182, 255, 0.06), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 24%);
    opacity: 1;
}

.services-section .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(136, 164, 255, 0.24);
}

.service-card__content {
    position: relative;
    z-index: 1;
    max-width: 30rem;
}

.services-section .service-card--system .service-card__content,
.services-section .service-card--partnership .service-card__content {
    max-width: 36rem;
}

.services-section .service-card--infrastructure .service-card__content {
    max-width: 34rem;
}

.services-section .service-card h3 {
    max-width: none;
    margin-top: 4px;
    font-size: clamp(1.95rem, 2.15vw, 2.8rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-align: center;
    text-wrap: balance;
}

.services-section .service-card--system h3,
.services-section .service-card--partnership h3 {
    font-size: clamp(2.15rem, 2.35vw, 3rem);
}

.services-section .service-card--infrastructure h3 {
    font-size: clamp(1.95rem, 2.05vw, 2.65rem);
}

.services-section .service-card--system p,
.services-section .service-card--partnership p,
.services-section .service-card--infrastructure p {
    width: 100%;
}

.service-card:hover,
.principle-card:hover,
.case-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102, 182, 255, 0.32);
}

.card-index {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.service-card p,
.principle-card p,
.case-card p,
.site-footer__tagline {
    margin-top: 16px;
    color: var(--text-soft);
}

.services-section .service-card p {
    max-width: none;
    margin-top: 18px;
    font-size: clamp(1.08rem, 1vw + 0.6rem, 1.28rem);
    line-height: 1.62;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(229, 233, 255, 0.68);
}

.service-card__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 180px;
}

.services-section .service-card--system .service-card__visual,
.services-section .service-card--partnership .service-card__visual {
    min-height: 260px;
}

.service-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-visual--orbit {
    width: min(100%, 320px);
    aspect-ratio: 1;
    filter: saturate(1.08);
    isolation: isolate;
}

.service-visual--orbit::before,
.service-visual--orbit::after {
    content: '';
    position: absolute;
    inset: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.service-visual--orbit::before {
    width: 72%;
    height: 72%;
    border: 1px solid rgba(136, 164, 255, 0.1);
}

.service-visual--orbit::after {
    width: 72%;
    height: 72%;
    background: conic-gradient(
        from -90deg,
        #67b7ff 0deg 120deg,
        #8f87ff 120deg 240deg,
        #4fe0c8 240deg 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 14px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 14px), #000 calc(100% - 14px));
    animation: serviceOrbitSweep 8.4s linear infinite;
}

.service-visual__orbit {
    position: absolute;
    inset: 50%;
    border: 2px solid rgba(136, 164, 255, 0.11);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
    z-index: 0;
}

.service-visual__orbit--outer {
    width: 100%;
    height: 100%;
    border-color: rgba(136, 164, 255, 0.12);
}

.service-visual__orbit--mid {
    width: 74%;
    height: 74%;
    border-color: rgba(136, 164, 255, 0.08);
}

.service-visual__orbit--inner {
    width: 52%;
    height: 52%;
    border-color: rgba(136, 164, 255, 0.08);
}

.service-visual__arc {
    display: none;
}

.service-visual__arc--a {
    width: 72%;
    height: 72%;
    border: 14px solid transparent;
    border-top-color: #66b6ff;
    border-right-color: #66b6ff;
    filter: drop-shadow(0 0 10px rgba(102, 182, 255, 0.16));
    animation: serviceArcOrbitA 8s linear infinite;
}

.service-visual__arc--b {
    width: 72%;
    height: 72%;
    border: 14px solid transparent;
    border-bottom-color: #8f87ff;
    border-left-color: #8f87ff;
    transform: translate(-50%, -50%) rotate(140deg);
    filter: drop-shadow(0 0 10px rgba(143, 135, 255, 0.16));
    animation: serviceArcOrbitB 10s linear infinite;
}

.service-visual__arc--c {
    width: 72%;
    height: 72%;
    border: 14px solid transparent;
    border-top-color: rgba(143, 135, 255, 0.82);
    border-right-color: rgba(143, 135, 255, 0.82);
    transform: translate(-50%, -50%) rotate(48deg);
    filter: drop-shadow(0 0 12px rgba(143, 135, 255, 0.18));
    animation: serviceArcOrbitC 6.8s linear infinite;
}

.service-visual__center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(82%, 280px);
    min-height: 84px;
    padding: 0 24px;
    border: 1px solid rgba(136, 164, 255, 0.16);
    border-radius: 150px;
    background: rgba(12, 17, 31, 0.98);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.15rem, 1.55vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    will-change: transform, border-color, box-shadow;
    animation: serviceCenterPulse 5.2s ease-in-out infinite;
    z-index: 4;
}

.service-visual__ring-label {
    position: absolute;
    --ring-transform: translateY(0);
    color: rgba(229, 233, 255, 0.44);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.96rem, 1.2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    pointer-events: none;
    animation: none;
    transform: var(--ring-transform);
}

.service-visual__ring-label::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid rgba(229, 233, 255, 0.34);
    border-radius: 50%;
}

.service-visual__ring-label--top {
    top: -9px;
    left: 59%;
    --ring-transform: translateX(-50%);
}

.service-visual__ring-label--top::before {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.service-visual__ring-label--left {
    left: -99px;
    top: 46%;
    --ring-transform: translateY(-50%);
}

.service-visual__ring-label--left::before {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.service-visual__ring-label--right {
    right: -40px;
    top: 73%;
    --ring-transform: translateY(-50%);
}

.service-visual__ring-label--right::before {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

@keyframes serviceArcOrbitA {
    from {
        transform: translate(-50%, -50%) rotate(-40deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(320deg);
    }
}

@keyframes serviceArcOrbitB {
    from {
        transform: translate(-50%, -50%) rotate(140deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-220deg);
    }
}

@keyframes serviceArcOrbitC {
    from {
        transform: translate(-50%, -50%) rotate(48deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(408deg);
    }
}

@keyframes serviceOrbitSweep {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes serviceCenterPulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        border-color: rgba(136, 164, 255, 0.16);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.028);
        border-color: rgba(136, 164, 255, 0.26);
        box-shadow:
            0 16px 34px rgba(0, 0, 0, 0.26),
            0 0 12px rgba(102, 182, 255, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-visual--orbit::after,
    .service-visual__center {
        animation: none;
    }
}

.service-visual--tiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 380px);
    align-content: end;
}

.service-visual__tile {
    position: relative;
    aspect-ratio: 1;
    border: 1px solid rgba(136, 164, 255, 0.08);
    border-radius: 24px;
    background: rgba(18, 24, 40, 0.88);
    overflow: hidden;
}

.service-visual__tile::before,
.service-visual__tile::after {
    content: '';
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
}

.service-visual__tile::before {
    width: 42%;
    height: 42%;
    border-radius: 18px;
    border: 1px solid rgba(136, 164, 255, 0.08);
    background: rgba(10, 14, 26, 0.42);
}

.service-visual__tile::after {
    width: 26%;
    height: 26%;
    border-radius: 8px;
    background: rgba(9, 13, 24, 0.6);
}

.service-visual__tile:nth-child(3) {
    background: linear-gradient(180deg, rgba(143, 135, 255, 0.96), rgba(110, 132, 255, 0.92));
}

.service-visual__tile:nth-child(3)::before,
.service-visual__tile:nth-child(3)::after,
.service-visual__tile:nth-child(6)::before,
.service-visual__tile:nth-child(6)::after {
    background: rgba(255, 255, 255, 0.92);
    border-color: transparent;
}

.service-visual__tile:nth-child(6) {
    background: linear-gradient(180deg, rgba(102, 182, 255, 0.96), rgba(86, 154, 255, 0.92));
}

.service-visual__tile:nth-child(1) {
    background: rgba(28, 35, 54, 0.82);
}

.service-visual__tile:nth-child(8) {
    background: rgba(20, 29, 38, 0.84);
}

.service-visual--dashboard {
    width: min(100%, 420px);
    min-height: 260px;
}

.service-visual__panel {
    position: absolute;
    border: 1px solid rgba(136, 164, 255, 0.1);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(19, 26, 44, 0.96), rgba(13, 18, 32, 0.96));
}

.service-visual__panel--main {
    top: 10px;
    left: 50%;
    width: 78%;
    height: 74%;
    padding: 18px;
    transform: translateX(-50%);
}

.service-visual__panel--side {
    top: 34px;
    right: 2%;
    width: 22%;
    height: 44%;
}

.service-visual__panel--bottom {
    bottom: 8px;
    left: 8%;
    width: 34%;
    height: 22%;
}

.service-visual__panel-top,
.service-visual__panel-line,
.service-visual__panel-grid {
    position: absolute;
}

.service-visual__panel-top {
    top: 18px;
    left: 18px;
    width: 36%;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(102, 182, 255, 0.9), rgba(143, 135, 255, 0.7));
}

.service-visual__panel-line {
    left: 18px;
    height: 8px;
    border-radius: 999px;
    background: rgba(136, 164, 255, 0.14);
}

.service-visual__panel-line:nth-child(2) {
    top: 46px;
    width: 62%;
}

.service-visual__panel-line:nth-child(3) {
    top: 62px;
    width: 48%;
}

.service-visual__panel-grid {
    inset: auto 18px 18px 18px;
    height: 56%;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(136, 164, 255, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(136, 164, 255, 0.06) 1px, transparent 1px);
    background-size: 25% 33.33%;
}

.service-visual--pipeline {
    width: min(100%, 420px);
    min-height: 190px;
}

.service-visual__step,
.service-visual__pipe,
.service-visual__partner-card,
.service-visual__partner-link,
.service-visual__partner-core {
    position: absolute;
}

.service-visual__step {
    top: 50%;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(136, 164, 255, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(20, 26, 42, 0.96), rgba(15, 20, 34, 0.96));
    transform: translateY(-50%);
}

.service-visual__step::before {
    content: '';
    position: absolute;
    inset: 50%;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(102, 182, 255, 0.34);
    border-radius: 7px;
    transform: translate(-50%, -50%);
}

.service-visual__step--a {
    left: 0;
}

.service-visual__step--b {
    left: 30%;
}

.service-visual__step--c {
    left: 60%;
    background: linear-gradient(180deg, rgba(143, 135, 255, 0.96), rgba(102, 182, 255, 0.92));
}

.service-visual__step--d {
    right: 0;
}

.service-visual__step--c::before {
    background: rgba(255, 255, 255, 0.92);
    border-color: transparent;
}

.service-visual__pipe {
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(102, 182, 255, 0.1), rgba(102, 182, 255, 0.45), rgba(102, 182, 255, 0.1));
    transform: translateY(-50%);
}

.service-visual__pipe::before,
.service-visual__pipe::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(102, 182, 255, 0.65);
    transform: translateY(-50%);
}

.service-visual__pipe::before {
    left: 0;
}

.service-visual__pipe::after {
    right: 0;
}

.service-visual__pipe--ab {
    left: 74px;
    width: calc(30% - 74px);
}

.service-visual__pipe--bc {
    left: calc(30% + 74px);
    width: calc(30% - 74px);
}

.service-visual__pipe--cd {
    left: calc(60% + 74px);
    width: calc(40% - 148px);
}

.service-visual--partnership-map {
    width: min(100%, 420px);
    min-height: 220px;
}

.service-visual__partner-card {
    top: 50%;
    width: 118px;
    height: 78px;
    border: 1px solid rgba(136, 164, 255, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(20, 26, 42, 0.96), rgba(15, 20, 34, 0.96));
    transform: translateY(-50%);
}

.service-visual__partner-card::before {
    content: '';
    position: absolute;
    inset: 50%;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(102, 182, 255, 0.32);
    border-radius: 8px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.service-visual__partner-card--left {
    left: 18px;
}

.service-visual__partner-card--right {
    right: 18px;
}

.service-visual__partner-link {
    left: 50%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(102, 182, 255, 0.18), rgba(102, 182, 255, 0.56), rgba(102, 182, 255, 0.18));
    transform: translateX(-50%);
}

.service-visual__partner-link--top {
    top: 34%;
}

.service-visual__partner-link--mid {
    top: 50%;
}

.service-visual__partner-link--bot {
    top: 66%;
}

.service-visual__partner-core {
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(136, 164, 255, 0.14);
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 40%, rgba(102, 182, 255, 0.22), transparent 60%),
        linear-gradient(180deg, rgba(17, 23, 42, 0.98), rgba(12, 17, 32, 0.98));
    transform: translate(-50%, -50%) rotate(45deg);
}

.service-visual__partner-core::before,
.service-visual__partner-core::after {
    content: '';
    position: absolute;
    inset: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.service-visual__partner-core::before {
    background: rgba(102, 182, 255, 0.88);
    transform: translate(-75%, -50%);
}

.service-visual__partner-core::after {
    background: rgba(143, 135, 255, 0.88);
    transform: translate(-25%, -50%);
}

.service-visual--stack {
    width: min(100%, 640px);
    min-height: 210px;
}

.service-visual__node,
.service-visual__link,
.service-visual__stack-layer,
.service-visual__stack-core,
.service-visual__stack-signal {
    position: absolute;
}

.service-visual__node {
    width: 118px;
    height: 74px;
    border: 1px solid rgba(136, 164, 255, 0.1);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(20, 26, 42, 0.96), rgba(15, 20, 34, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-visual__node::before {
    content: '';
    position: absolute;
    inset: 50%;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(102, 182, 255, 0.3);
    border-radius: 8px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.service-visual__node--a {
    top: 18px;
    left: 8%;
}

.service-visual__node--b {
    top: 18px;
    left: 34%;
}

.service-visual__node--c {
    top: 18px;
    left: 60%;
}

.service-visual__node--d {
    top: 18px;
    right: 8%;
}

.service-visual__link {
    top: 54px;
    height: 1px;
    background: linear-gradient(90deg, rgba(102, 182, 255, 0.1), rgba(102, 182, 255, 0.45), rgba(102, 182, 255, 0.1));
}

.service-visual__link::before,
.service-visual__link::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(102, 182, 255, 0.65);
    box-shadow: 0 0 18px rgba(102, 182, 255, 0.3);
}

.service-visual__link::before {
    left: 0;
}

.service-visual__link::after {
    right: 0;
}

.service-visual__link--ab {
    left: calc(8% + 118px);
    width: calc(26% - 118px);
}

.service-visual__link--bc {
    left: calc(34% + 118px);
    width: calc(26% - 118px);
}

.service-visual__link--cd {
    left: calc(60% + 118px);
    width: calc(24% - 118px);
}

.service-visual__stack-layer {
    left: 50%;
    width: min(100%, 430px);
    height: 54px;
    border: 1px solid rgba(136, 164, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(19, 25, 40, 0.96), rgba(14, 19, 31, 0.96));
    transform: translateX(-50%);
}

.service-visual__stack-layer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 182, 255, 0.72);
    transform: translateY(-50%);
    box-shadow: 0 0 14px rgba(102, 182, 255, 0.3);
}

.service-visual__stack-layer::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 22px;
    width: 86px;
    height: 1px;
    background: linear-gradient(90deg, rgba(136, 164, 255, 0.06), rgba(136, 164, 255, 0.22), rgba(136, 164, 255, 0.06));
    transform: translateY(-50%);
}

.service-visual__stack-layer--a {
    top: 16px;
}

.service-visual__stack-layer--b {
    top: 78px;
}

.service-visual__stack-layer--c {
    top: 140px;
}

.service-visual__stack-core {
    top: 50%;
    left: 50%;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(136, 164, 255, 0.12);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 35%, rgba(102, 182, 255, 0.18), transparent 56%),
        linear-gradient(180deg, rgba(14, 19, 34, 0.98), rgba(10, 14, 24, 0.98));
    transform: translate(-50%, -50%) rotate(45deg);
}

.service-visual__stack-core::before,
.service-visual__stack-core::after {
    content: '';
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.service-visual__stack-core::before {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(102, 182, 255, 0.24);
}

.service-visual__stack-core::after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(102, 182, 255, 0.85);
    box-shadow: 0 0 20px rgba(102, 182, 255, 0.34);
}

.service-visual__stack-signal {
    top: 50%;
    width: 96px;
    height: 1px;
    background: linear-gradient(90deg, rgba(102, 182, 255, 0), rgba(102, 182, 255, 0.36), rgba(102, 182, 255, 0));
}

.service-visual__stack-signal--a {
    left: calc(50% - 164px);
    transform: translateY(-50%) rotate(-18deg);
}

.service-visual__stack-signal--b {
    right: calc(50% - 164px);
    transform: translateY(-50%) rotate(18deg);
}

.case-list {
    display: grid;
    gap: 26px;
}

.case-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 0;
}

.case-card__media {
    min-height: 320px;
    background: linear-gradient(135deg, rgba(102, 182, 255, 0.16), rgba(143, 135, 255, 0.16));
}

.case-card__media img,
.case-single__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 320px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.78);
}

.case-card__body {
    padding: 32px;
}

.case-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.case-card__meta span {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #c7e6ff;
    font-size: 0.82rem;
    font-weight: 700;
}

.about-focus ul {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.about-focus li {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
}

.contact-grid {
    align-items: start;
}

.contact-links {
    flex-wrap: wrap;
    margin-top: 24px;
}

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

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

.form-field label {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(3, 7, 19, 0.8);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(102, 182, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(102, 182, 255, 0.12);
}

.form-field--hidden {
    position: absolute;
    left: -9999px;
}

.field-error {
    font-size: 0.84rem;
    color: var(--error);
}

.form-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
}

.form-notice--success {
    background: rgba(124, 227, 177, 0.12);
    color: var(--success);
}

.form-notice--error {
    background: rgba(255, 145, 143, 0.12);
    color: var(--error);
}

.site-footer {
    padding: 42px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 32px;
}

.footer-title {
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0;
}

.site-footer__bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-soft);
    font-size: 0.92rem;
}

.prose > * + * {
    margin-top: 18px;
}

.prose h1,
.prose h2,
.prose h3 {
    max-width: none;
}

.case-single {
    max-width: 920px;
}

.case-single__image {
    margin: 34px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

[view-item] {
    opacity: 0;
    will-change: opacity, transform;
}

[view-item][data-view-animation="scale"] {
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[view-item][data-view-animation="scale-min"] {
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[view-item][data-view-animation="down"] {
    transform: translateY(10%);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[view-item].is-view-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1080px) {
    .about-grid,
    .contact-grid,
    .case-card,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

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

    .services-section__heading h2 {
        font-size: clamp(2.1rem, 4.4vw, 3rem);
    }

    h1 {
        max-width: 14ch;
    }

    .hero-stage__content {
        width: min(100%, 1180px);
    }

    .hero-stage__content h1 {
        max-width: min(24ch, 100%);
        font-size: clamp(1.8rem, 4.4vw, 3rem);
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 74px;
    }

    .site-nav,
    .site-header__cta {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
        background: transparent;
        color: var(--text);
    }

    .menu-toggle span {
        width: 18px;
        height: 1px;
        margin: 0 auto;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-toggle.is-active span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle.is-active span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .mobile-nav {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(5, 8, 22, 0.96);
    }

    .mobile-nav .container {
        padding: 20px 0 24px;
    }

    .mobile-nav__list,
    .footer-nav,
    .footer-contact {
        flex-direction: column;
        gap: 14px;
    }

    .card-grid--three,
    .card-grid--two {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 88px 0;
    }

    .hero {
        padding-top: 26px;
    }

    .hero-stage {
        --hero-stage-height: clamp(480px, calc(100svh - var(--hero-viewport-offset)), 920px);
    }

    .hero-stage__inner {
        gap: clamp(24px, 4.6vh, 48px);
        padding-top: clamp(50px, 5vh, 72px);
        padding-bottom: clamp(56px, 5vh, 72px);
    }

    .services-section__heading {
        margin-bottom: 28px;
    }

    .services-section .card-grid--three {
        grid-template-areas:
            "system automation"
            "partnership infrastructure";
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-section .service-card {
        min-height: 360px;
        padding: 28px 24px 24px;
    }

    .services-section .service-card--system,
    .services-section .service-card--partnership,
    .services-section .service-card--automation,
    .services-section .service-card--infrastructure {
        min-height: 360px;
    }

    .services-section .service-card h3,
    .services-section .service-card--system h3,
    .services-section .service-card--partnership h3,
    .services-section .service-card--infrastructure h3 {
        font-size: clamp(1.85rem, 4vw, 2.5rem);
    }

    .service-card__content,
    .services-section .service-card--system .service-card__content,
    .services-section .service-card--partnership .service-card__content,
    .services-section .service-card--infrastructure .service-card__content {
        max-width: none;
    }

    .service-card__visual {
        min-height: 170px;
    }

    .service-visual--orbit {
        width: min(100%, 290px);
    }

    .service-visual--tiles {
        width: min(100%, 320px);
    }

    .service-visual--flow {
        width: 100%;
        min-height: 156px;
    }

    .service-visual--stack {
        width: 100%;
        min-height: 182px;
    }

    .service-visual__node {
        width: 92px;
        height: 60px;
        border-radius: 18px;
    }

    .service-visual__node--a {
        left: 2%;
    }

    .service-visual__node--b {
        left: 28%;
    }

    .service-visual__node--c {
        left: 54%;
    }

    .service-visual__node--d {
        right: 2%;
    }

    .service-visual__link--ab {
        left: calc(2% + 92px);
        width: calc(26% - 92px);
    }

    .service-visual__link--bc {
        left: calc(28% + 92px);
        width: calc(26% - 92px);
    }

    .service-visual__link--cd {
        left: calc(54% + 92px);
        width: calc(24% - 92px);
    }

    .service-visual__stack-layer {
        height: 48px;
        width: min(100%, 360px);
    }

    .service-visual__stack-layer--a {
        top: 18px;
    }

    .service-visual__stack-layer--b {
        top: 72px;
    }

    .service-visual__stack-layer--c {
        top: 126px;
    }

    .service-visual__stack-core {
        width: 96px;
        height: 96px;
        border-radius: 24px;
    }

    .service-visual__stack-signal--a {
        left: calc(50% - 138px);
    }

    .service-visual__stack-signal--b {
        right: calc(50% - 138px);
    }

    .service-visual--dashboard {
        width: min(100%, 320px);
        min-height: 210px;
    }

    .service-visual__ring-label {
        font-size: 1rem;
    }

    .service-visual--pipeline {
        width: min(100%, 320px);
        min-height: 150px;
    }

    .service-visual__step {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .service-visual__step::before {
        width: 18px;
        height: 18px;
        border-radius: 6px;
    }

    .service-visual__pipe--ab {
        left: 60px;
        width: calc(30% - 60px);
    }

    .service-visual__pipe--bc {
        left: calc(30% + 60px);
        width: calc(30% - 60px);
    }

    .service-visual__pipe--cd {
        left: calc(60% + 60px);
        width: calc(40% - 120px);
    }

    .service-visual--partnership-map {
        width: min(100%, 320px);
        min-height: 180px;
    }

    .service-visual__partner-card {
        width: 92px;
        height: 62px;
        border-radius: 18px;
    }

    .service-visual__partner-card::before {
        width: 20px;
        height: 20px;
        border-radius: 6px;
    }

    .service-visual__partner-link {
        width: 92px;
    }

    .service-visual__partner-core {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 28px, 100%);
        --radius-lg: 24px;
    }

    h1 {
        font-size: clamp(2.6rem, 14vw, 4rem);
        max-width: none;
    }

    h2 {
        font-size: clamp(1.8rem, 9vw, 2.7rem);
    }

    .services-section__heading h2,
    .services-section__headline-prefix,
    .services-section__headline-accent {
        white-space: normal;
    }

    .services-section .card-grid--three {
        grid-template-areas:
            "system"
            "automation"
            "partnership"
            "infrastructure";
        grid-template-columns: 1fr;
    }

    .services-section .service-card h3,
    .services-section .service-card--system h3,
    .services-section .service-card--partnership h3,
    .services-section .service-card--infrastructure h3 {
        font-size: clamp(1.7rem, 7.4vw, 2.25rem);
        line-height: 0.98;
    }

    .services-section .service-card {
        min-height: 380px;
        padding: 24px;
        border-radius: 28px;
    }

    .service-card__visual {
        min-height: 180px;
        margin-top: 22px;
    }

    .service-visual--orbit {
        width: min(100%, 240px);
    }

    .service-visual__arc--a,
    .service-visual__arc--b,
    .service-visual__arc--c {
        border-width: 10px;
    }

    .service-visual__center {
        min-height: 54px;
        padding: 0 20px;
        font-size: 1rem;
    }

    .service-visual--tiles {
        gap: 8px;
        width: 100%;
    }

    .service-visual__tile {
        border-radius: 18px;
    }

    .service-visual--flow {
        min-height: 132px;
    }

    .service-visual--stack {
        min-height: 150px;
    }

    .service-visual__node {
        width: 64px;
        height: 46px;
        border-radius: 14px;
    }

    .service-visual__node::before {
        width: 16px;
        height: 16px;
        border-radius: 5px;
    }

    .service-visual__node--a {
        top: 24px;
        left: 0;
    }

    .service-visual__node--b {
        top: 24px;
        left: 26%;
    }

    .service-visual__node--c {
        top: 24px;
        left: 52%;
    }

    .service-visual__node--d {
        top: 24px;
        right: 0;
    }

    .service-visual__link {
        top: 47px;
    }

    .service-visual__link--ab {
        left: 64px;
        width: calc(26% - 64px);
    }

    .service-visual__link--bc {
        left: calc(26% + 64px);
        width: calc(26% - 64px);
    }

    .service-visual__link--cd {
        left: calc(52% + 64px);
        width: calc(48% - 128px);
    }

    .service-visual__stack-layer {
        width: 100%;
        height: 40px;
        border-radius: 14px;
    }

    .service-visual__stack-layer::before {
        left: 16px;
        width: 10px;
        height: 10px;
    }

    .service-visual__stack-layer::after {
        right: 16px;
        width: 58px;
    }

    .service-visual__stack-layer--a {
        top: 10px;
    }

    .service-visual__stack-layer--b {
        top: 58px;
    }

    .service-visual__stack-layer--c {
        top: 106px;
    }

    .service-visual__stack-core {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .service-visual__stack-core::before {
        width: 30px;
        height: 30px;
        border-radius: 10px;
    }

    .service-visual__stack-core::after {
        width: 10px;
        height: 10px;
    }

    .service-visual__stack-signal {
        width: 56px;
    }

    .service-visual__stack-signal--a {
        left: calc(50% - 96px);
    }

    .service-visual__stack-signal--b {
        right: calc(50% - 96px);
    }

    .service-visual--dashboard {
        width: min(100%, 240px);
        min-height: 168px;
    }

    .service-visual--orbit {
        width: min(100%, 250px);
    }

    .service-visual__ring-label {
        font-size: 0.8rem;
    }

    .service-visual__ring-label--top {
        left: 55%;
    }

    .service-visual__ring-label--left {
        left: -24px;
    }

    .service-visual__ring-label--right {
        right: -24px;
    }

    .service-visual__center {
        width: min(84%, 220px);
        min-height: 70px;
        padding: 0 18px;
        border-radius: 22px;
        font-size: 1rem;
        white-space: nowrap;
    }

    .service-visual__panel {
        border-radius: 18px;
    }

    .service-visual__panel--main {
        padding: 14px;
    }

    .service-visual__panel-top {
        top: 14px;
        left: 14px;
        height: 10px;
    }

    .service-visual__panel-line {
        left: 14px;
        height: 6px;
    }

    .service-visual__panel-line:nth-child(2) {
        top: 36px;
    }

    .service-visual__panel-line:nth-child(3) {
        top: 48px;
    }

    .service-visual__panel-grid {
        inset: auto 14px 14px 14px;
    }

    .service-visual--pipeline {
        width: 100%;
        min-height: 128px;
    }

    .service-visual__step {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .service-visual__step::before {
        width: 14px;
        height: 14px;
        border-radius: 5px;
    }

    .service-visual__pipe--ab {
        left: 48px;
        width: calc(30% - 48px);
    }

    .service-visual__pipe--bc {
        left: calc(30% + 48px);
        width: calc(30% - 48px);
    }

    .service-visual__pipe--cd {
        left: calc(60% + 48px);
        width: calc(40% - 96px);
    }

    .service-visual--partnership-map {
        width: 100%;
        min-height: 144px;
    }

    .service-visual__partner-card {
        width: 72px;
        height: 50px;
        border-radius: 14px;
    }

    .service-visual__partner-card--left {
        left: 0;
    }

    .service-visual__partner-card--right {
        right: 0;
    }

    .service-visual__partner-card::before {
        width: 14px;
        height: 14px;
        border-radius: 4px;
    }

    .service-visual__partner-link {
        width: 74px;
    }

    .service-visual__partner-core {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .service-visual__partner-core::before,
    .service-visual__partner-core::after {
        width: 12px;
        height: 12px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .card,
    .contact-card,
    .case-card__body {
        padding: 24px;
    }

    .hero-stage {
        --hero-stage-height: clamp(430px, calc(100svh - var(--hero-viewport-offset)), 860px);
    }

    .hero-stage__content h1 {
        max-width: 100%;
        font-size: clamp(1.65rem, 7.2vw, 2.5rem);
    }

    .hero-title {
        width: 100%;
    }

    .hero-title__row {
        width: 100%;
        display: block;
        white-space: normal;
        text-wrap: balance;
    }

    .hero-title {
        gap: 0.12em;
    }

    .hero-stage__inner {
        gap: 20px;
        padding-top: 48px;
        padding-bottom: 58px;
    }

    .hero-stage__content {
        padding-top: clamp(6px, 2vh, 20px);
    }

    .hero-stage__meta {
        width: min(100% - 28px, 560px);
    }
}

@supports (height: 100dvh) {
    .hero-stage {
        --hero-stage-height: clamp(520px, calc(100dvh - var(--hero-viewport-offset)), 980px);
    }

    @media (max-width: 860px) {
        .hero-stage {
            --hero-stage-height: clamp(480px, calc(100dvh - var(--hero-viewport-offset)), 920px);
        }
    }

    @media (max-width: 640px) {
        .hero-stage {
            --hero-stage-height: clamp(430px, calc(100dvh - var(--hero-viewport-offset)), 860px);
        }
    }
}

@media (max-width: 782px) {
    body.admin-bar {
        --admin-bar-height: 46px;
    }
}

@media (max-height: 920px) {
    .hero-stage__content h1 {
        font-size: clamp(1.6rem, 2.7vw, 2.55rem);
    }

    .hero-stage__content .hero__lead {
        margin-top: 18px;
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .hero__actions {
        margin-top: 24px;
    }

    .hero-stage__summary {
        font-size: 0.82rem;
    }
}

@media (max-height: 820px) {
    .hero-stage {
        --hero-stage-height: clamp(400px, calc(100svh - var(--hero-viewport-offset)), 760px);
    }

    @supports (height: 100dvh) {
        .hero-stage {
            --hero-stage-height: clamp(400px, calc(100dvh - var(--hero-viewport-offset)), 760px);
        }
    }

    .hero-stage__inner {
        gap: 18px;
        padding-top: clamp(36px, 4vh, 52px);
        padding-bottom: 48px;
    }

    .hero-stage__content {
        padding-top: 0;
    }

    .hero-stage__content h1 {
        font-size: clamp(1.45rem, 2.45vw, 2.2rem);
    }

    .hero-stage__content .eyebrow {
        margin-bottom: 16px;
    }

    .hero-stage__content .hero__lead {
        max-width: 620px;
        margin-top: 14px;
        font-size: 0.9rem;
    }

    .hero__actions {
        margin-top: 18px;
    }

    .hero-stage__meta {
        gap: 8px;
    }

    .hero-stage__summary {
        max-width: 500px;
        font-size: 0.78rem;
    }

    .hero-stage__scroll {
        bottom: 12px;
        gap: 8px;
        font-size: 0.72rem;
    }
}

@media (max-height: 720px) {
    .hero-stage {
        --hero-stage-height: clamp(340px, calc(100svh - var(--hero-viewport-offset)), 680px);
    }

    @supports (height: 100dvh) {
        .hero-stage {
            --hero-stage-height: clamp(340px, calc(100dvh - var(--hero-viewport-offset)), 680px);
        }
    }

    .hero-stage__inner {
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .hero-stage__content h1 {
        font-size: clamp(1.3rem, 2.15vw, 1.9rem);
    }

    .hero-stage__content .hero__lead {
        margin-top: 10px;
        font-size: 0.84rem;
    }

    .hero__actions {
        margin-top: 14px;
        gap: 12px;
    }

    .hero-stage__kicker {
        padding: 7px 12px;
        font-size: 0.74rem;
    }

    .hero-stage__summary {
        display: none;
    }

    .hero-stage__scroll {
        bottom: 8px;
    }
}
