:root {
    --dc-font-body: "Sora", sans-serif;
    --dc-font-display: "Oxanium", sans-serif;
    --dc-shell-max: 77rem;
    --dc-page-gutter: clamp(1rem, 2.6vw, 1.75rem);
    --dc-header-height: clamp(2.9rem, 3.2vw, 3.25rem);
    --dc-radius-s: 0.35rem;
    --dc-radius-m: 0.6rem;
    --dc-radius-l: 0.95rem;
    --dc-radius-xl: 1.25rem;
    --dc-accent: #2842ff;
    --dc-accent-strong: #4d63ff;
    --dc-accent-soft: rgba(40, 66, 255, 0.14);
    --dc-bg: #070911;
    --dc-bg-soft: #0b0f19;
    --dc-bg-panel: rgba(13, 17, 28, 0.84);
    --dc-bg-card: rgba(255, 255, 255, 0.04);
    --dc-surface: #f4f6fb;
    --dc-surface-soft: #e8edf7;
    --dc-surface-card: rgba(255, 255, 255, 0.92);
    --dc-text: #eef2fb;
    --dc-text-strong: #ffffff;
    --dc-text-muted: #a4abc0;
    --dc-text-dim: #6f7895;
    --dc-ink: #0f1522;
    --dc-ink-soft: #5f687d;
    --dc-line: rgba(255, 255, 255, 0.09);
    --dc-line-strong: rgba(255, 255, 255, 0.16);
    --dc-line-dark: rgba(15, 21, 34, 0.12);
    --dc-shadow-soft: 0 1rem 2.75rem rgba(0, 0, 0, 0.14);
    --dc-shadow-dark: 0 1.75rem 4rem rgba(0, 0, 0, 0.28);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 20rem;
    font-family: var(--dc-font-body);
    color: var(--dc-text);
    background:
        radial-gradient(circle at 10% 0%, rgba(40, 66, 255, 0.14), transparent 30rem),
        radial-gradient(circle at 100% 12%, rgba(255, 255, 255, 0.06), transparent 24rem),
        linear-gradient(180deg, #090b14 0%, #070911 42%, #0b0f18 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem);
    opacity: 0.22;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 84%);
    pointer-events: none;
    z-index: -1;
}

body.admin-bar .dc-header {
    top: 2rem;
}

@media (max-width: 48.875rem) {
    body.admin-bar .dc-header {
        top: 2.875rem;
    }
}

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

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

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

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

[hidden] {
    display: none !important;
}

.screen-reader-text {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    padding: 0;
    margin: -0.0625rem;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dc-shell {
    width: min(calc(100% - (2 * var(--dc-page-gutter))), var(--dc-shell-max));
    margin-inline: auto;
}

.dc-main {
    position: relative;
    overflow: clip;
}

.dc-section {
    position: relative;
    padding-block: clamp(4rem, 7vw, 5.75rem);
}

.dc-section::before,
.dc-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background-image: url("../img/naszesieci-symbol.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
}

.dc-kicker {
    margin: 0 0 0.85rem;
    font-family: var(--dc-font-display);
    font-size: clamp(0.72rem, 0.7rem + 0.22vw, 0.88rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(242, 245, 255, 0.66);
}

.dc-section-heading {
    max-width: 34rem;
}

.dc-section-heading__title,
.dc-hero__title,
.dc-story__aside h3,
.dc-service-card h3,
.dc-step-card h3,
.dc-testimonial-card__meta strong,
.dc-simple-page h1,
.dc-simple-page h2 {
    font-family: var(--dc-font-display);
}

.dc-section-heading__title {
    margin: 0;
    font-size: clamp(1.85rem, 1.55rem + 1.7vw, 3rem);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: var(--dc-text-strong);
    text-wrap: balance;
}

.dc-section-heading__intro {
    margin-top: 0.9rem;
    max-width: 32rem;
}

.dc-prose {
    color: var(--dc-text-muted);
    font-size: clamp(0.98rem, 0.95rem + 0.2vw, 1.05rem);
    line-height: 1.72;
}

.dc-prose > *:first-child {
    margin-top: 0;
}

.dc-prose > *:last-child {
    margin-bottom: 0;
}

.dc-prose p {
    margin: 0 0 0.95rem;
}

.dc-prose strong {
    color: var(--dc-text);
}

.dc-breadcrumbs {
    margin-bottom: 1.2rem;
}

.dc-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.56);
}

.dc-breadcrumbs li {
    position: relative;
}

.dc-breadcrumbs li + li::before {
    content: "/";
    position: absolute;
    left: -0.5rem;
    color: rgba(255, 255, 255, 0.24);
}

.dc-breadcrumbs a {
    transition: color 0.3s ease;
}

.dc-breadcrumbs a:hover,
.dc-breadcrumbs a:focus-visible {
    color: var(--dc-text-strong);
}

.dc-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(7, 9, 17, 0.82);
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(0.9rem);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.dc-header.is-scrolled {
    background: rgba(7, 9, 17, 0.94);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.24);
}

.dc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    min-height: var(--dc-header-height);
}

.dc-brand {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
}

.dc-brand__logo {
    display: inline-flex;
    line-height: 0;
}

.dc-logo-full--header {
    width: auto;
    height: clamp(2.1rem, 2.45vw, 2.6rem);
}

.dc-logo-full--footer {
    width: clamp(10rem, 17vw, 14rem);
}

.dc-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.3rem;
    min-height: 2.45rem;
    padding: 0 0.85rem;
    border: 0.0625rem solid var(--dc-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--dc-text);
    font-family: var(--dc-font-display);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.dc-nav-toggle:hover,
.dc-nav-toggle:focus-visible {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-0.0625rem);
}

.dc-header__panel {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 1.2vw, 1.35rem);
}

.dc-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 0.8vw + 0.55rem, 1.35rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.dc-nav__list li {
    margin: 0;
}

.dc-nav__list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 1.55rem;
    padding: 0.1rem 0;
    color: rgba(238, 242, 251, 0.74);
    font-family: var(--dc-font-display);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.dc-nav__list a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.18rem;
    height: 0.125rem;
    background: linear-gradient(90deg, transparent 0%, var(--dc-accent) 18%, var(--dc-accent-strong) 82%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.dc-nav__list a:hover,
.dc-nav__list a:focus-visible,
.dc-nav__list .current-menu-item > a,
.dc-nav__list .current_page_item > a,
.dc-nav__list .current-menu-ancestor > a,
.dc-nav__list .current-page-ancestor > a {
    color: var(--dc-text-strong);
}

.dc-nav__list a:hover::after,
.dc-nav__list a:focus-visible::after,
.dc-nav__list .current-menu-item > a::after,
.dc-nav__list .current_page_item > a::after,
.dc-nav__list .current-menu-ancestor > a::after,
.dc-nav__list .current-page-ancestor > a::after {
    transform: scaleX(1);
}

.dc-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    min-height: 3.2rem;
    padding: 0.65rem 1.15rem 0.65rem 1.25rem;
    border: 0.0625rem solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dc-accent-strong) 0%, var(--dc-accent) 68%, #1a2a94 100%);
    color: var(--dc-text-strong);
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 1rem 2.6rem rgba(40, 66, 255, 0.24);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.dc-button:hover,
.dc-button:focus-visible {
    transform: translateY(-0.125rem);
    box-shadow: 0 1.25rem 2.6rem rgba(40, 66, 255, 0.32);
}

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

.dc-button--ghost:hover,
.dc-button--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.dc-button--small {
    min-height: 2.4rem;
    padding: 0.35rem 0.82rem 0.35rem 0.95rem;
    font-size: 0.86rem;
}

.dc-button__label {
    white-space: nowrap;
}

.dc-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
}

.dc-icon {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.dc-hero {
    padding-top: clamp(4.2rem, 7vw, 5.75rem);
    padding-bottom: clamp(3.8rem, 6vw, 5rem);
    min-height: calc(100svh - var(--dc-header-height));
}

.dc-hero::before,
.dc-hero::after,
.dc-steps::before,
.dc-testimonials::after,
.dc-cta--contact::before,
.dc-footer::before {
    opacity: 1;
}

.dc-hero::before {
    top: 0;
    left: 0;
    width: clamp(18rem, 32vw, 26rem);
    height: clamp(18rem, 32vw, 26rem);
    background: radial-gradient(circle, rgba(40, 66, 255, 0.18) 0%, rgba(40, 66, 255, 0) 70%);
}

.dc-hero::after {
    right: clamp(0.5rem, 5vw, 4rem);
    top: 8.5rem;
    width: clamp(8rem, 13vw, 11rem);
    aspect-ratio: 1;
    opacity: 0.14;
    filter: grayscale(1) brightness(3.6);
    animation: dc-drift-soft 14s ease-in-out infinite;
}

.dc-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.92fr);
    gap: clamp(1.8rem, 4vw, 3.5rem);
    align-items: center;
}

.dc-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

.dc-hero__title {
    margin: 0;
    max-width: 10ch;
    font-size: clamp(2.7rem, 4vw + 1rem, 4.95rem);
    font-weight: 500;
    line-height: 0.97;
    letter-spacing: -0.06em;
    color: var(--dc-text-strong);
    text-wrap: balance;
}

.dc-hero__lead {
    max-width: 30rem;
    margin-top: 1.2rem;
}

.dc-hero__actions,
.dc-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.dc-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
}

.dc-hero__facts li {
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0.4rem 0.8rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.12);
    border-radius: var(--dc-radius-s);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(238, 242, 251, 0.84);
    font-size: 0.88rem;
    line-height: 1.3;
}

.dc-hero__note {
    max-width: 30rem;
    margin: 1.15rem 0 0;
    color: var(--dc-text-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.dc-hero__visual {
    position: relative;
    min-height: clamp(22rem, 37vw, 32rem);
}

.dc-hero__halo {
    position: absolute;
    right: 10%;
    bottom: 16%;
    width: clamp(11rem, 20vw, 17rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 66, 255, 0.32) 0%, rgba(40, 66, 255, 0) 72%);
    filter: blur(0.75rem);
    animation: dc-pulse-halo 8s ease-in-out infinite;
}

.dc-hero__panel {
    position: relative;
    display: grid;
    gap: 1rem;
    align-content: start;
    height: 100%;
    min-height: clamp(22rem, 37vw, 31rem);
    padding: clamp(1rem, 2vw, 1.4rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    border-radius: var(--dc-radius-l);
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--dc-shadow-dark);
    overflow: hidden;
    transform:
        translate3d(calc(var(--dc-pointer-x, 0) * 1rem), calc(var(--dc-pointer-y, 0) * -0.8rem), 0)
        rotateX(calc(var(--dc-pointer-y, 0) * -5deg))
        rotateY(calc(var(--dc-pointer-x, 0) * 6deg));
    transition: transform 0.35s ease;
}

.dc-hero__panel::before {
    content: "";
    position: absolute;
    inset: 0.85rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.06);
    border-radius: var(--dc-radius-m);
}

.dc-hero__panel-label {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--dc-font-display);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(238, 242, 251, 0.58);
}

.dc-hero__panel-stage {
    position: relative;
    display: grid;
    place-items: center;
    flex: 1 1 auto;
    min-height: clamp(11.5rem, 18vw, 15rem);
    overflow: hidden;
}

.dc-hero__signal {
    position: absolute;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--dc-accent-strong);
    box-shadow: 0 0 0.9rem rgba(40, 66, 255, 0.55);
    animation: dc-signal 4.5s ease-in-out infinite;
}

.dc-hero__signal--one {
    top: 14%;
    right: 18%;
}

.dc-hero__signal--two {
    left: 18%;
    bottom: 16%;
    animation-delay: 1.2s;
}

.dc-hero__brand-plane {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0.9rem 1rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.08);
    border-radius: var(--dc-radius-m);
    background: rgba(7, 9, 17, 0.48);
    backdrop-filter: blur(0.5rem);
}

.dc-hero__brand-plane img {
    width: min(100%, 25rem);
}

.dc-hero__network-float {
    position: absolute;
    display: block;
}

.dc-hero__network-float--one {
    top: 2%;
    right: -2%;
    width: clamp(5.5rem, 9vw, 7.5rem);
    opacity: 0.45;
    animation: dc-drift-soft 16s ease-in-out infinite;
}

.dc-hero__network-float--two {
    right: -1%;
    bottom: 21%;
    width: clamp(4rem, 7vw, 5.8rem);
    animation:
        dc-drift-soft 12s ease-in-out infinite,
        dc-pulse-opacity 6s ease-in-out infinite;
}

.dc-network-motif {
    display: block;
    width: 100%;
    height: auto;
    color: var(--dc-accent);
}

.dc-network-motif.is-blue {
    color: var(--dc-accent);
}

.dc-network-motif.is-light {
    color: rgba(255, 255, 255, 0.28);
}

.dc-network-motif--hero-main {
    width: min(100%, 18rem);
    position: relative;
    z-index: 2;
}

.dc-network-motif--hero-ghost {
    position: absolute;
    right: -6%;
    bottom: -2%;
    width: clamp(7rem, 11vw, 10rem);
    opacity: 0.7;
    z-index: 1;
}

.dc-network-motif__line {
    stroke: currentColor;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: var(--dc-path-length);
    stroke-dashoffset: var(--dc-path-length);
    animation: dc-network-line 5.6s ease-in-out infinite;
}

.dc-network-motif__line--one {
    animation-delay: 0.18s;
}

.dc-network-motif__line--two {
    animation-delay: 0.95s;
}

.dc-network-motif__line--three {
    animation-delay: 1.7s;
}

.dc-network-motif__node {
    stroke: currentColor;
    stroke-width: 6;
    fill: rgba(7, 9, 17, 0.92);
    transform-origin: center;
    animation: dc-network-node 5.6s ease-in-out infinite;
}

.dc-network-motif__node--one {
    animation-delay: 0s;
}

.dc-network-motif__node--two {
    animation-delay: 0.75s;
}

.dc-network-motif__node--three {
    animation-delay: 1.5s;
}

.dc-network-motif__node--four {
    animation-delay: 2.2s;
}

.dc-service-card,
.dc-step-card,
.dc-testimonial-card,
.dc-story__media,
.dc-story__aside,
.dc-story__quote,
.dc-cta__card,
.dc-simple-page__inner {
    position: relative;
    border-radius: var(--dc-radius-l);
}

.dc-services__grid,
.dc-testimonials__grid {
    display: grid;
    gap: clamp(0.85rem, 1.5vw, 1.15rem);
    margin-top: clamp(1.6rem, 2.8vw, 2.25rem);
}

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

.dc-offer-marquee {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.4rem;
}

.dc-offer-marquee__row {
    overflow: hidden;
    padding-block: 0.55rem;
    border-top: 0.0625rem solid currentColor;
    border-bottom: 0.0625rem solid currentColor;
    opacity: 0.18;
}

.dc-offer-marquee__track {
    display: flex;
    gap: 1.3rem;
    width: max-content;
    min-width: 200%;
}

.dc-offer-marquee__row--left .dc-offer-marquee__track {
    animation: dc-marquee-left 24s linear infinite;
}

.dc-offer-marquee__row--right .dc-offer-marquee__track {
    animation: dc-marquee-right 25s linear infinite;
}

.dc-offer-marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 1.3rem;
    font-family: var(--dc-font-display);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.dc-offer-marquee__item::after {
    content: "";
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: currentColor;
}

.dc-service-card,
.dc-step-card,
.dc-testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.15rem;
    background: var(--dc-bg-card);
    border: 0.0625rem solid var(--dc-line);
    box-shadow: var(--dc-shadow-soft);
    transition:
        transform 0.35s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.dc-service-card::before,
.dc-step-card::before,
.dc-testimonial-card::before,
.dc-story__aside::before,
.dc-cta__card::before {
    content: "";
    position: absolute;
    top: -0.0625rem;
    right: -0.0625rem;
    width: 1.15rem;
    height: 1.15rem;
    border-top: 0.125rem solid var(--dc-accent);
    border-right: 0.125rem solid var(--dc-accent);
}

.dc-service-card {
    transform:
        perspective(62.5rem)
        rotateX(calc(var(--dc-tilt-y, 0) * -5deg))
        rotateY(calc(var(--dc-tilt-x, 0) * 6deg));
}

.dc-step-card,
.dc-testimonial-card {
    transform:
        perspective(62.5rem)
        rotateX(calc(var(--dc-tilt-y, 0) * -4deg))
        rotateY(calc(var(--dc-tilt-x, 0) * 5deg));
}

.dc-service-card:hover,
.dc-service-card:focus-visible,
.dc-step-card:hover,
.dc-step-card:focus-visible,
.dc-testimonial-card:hover,
.dc-testimonial-card:focus-visible {
    border-color: var(--dc-line-strong);
}

.dc-service-card__topline,
.dc-step-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.dc-service-card__index,
.dc-step-card__label {
    font-family: var(--dc-font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(238, 242, 251, 0.58);
}

.dc-service-card__icon,
.dc-step-card__icon,
.dc-contact-list__icon,
.dc-footer__contact-icon,
.dc-testimonial-card__quote-mark,
.dc-steps__note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(40, 66, 255, 0.12);
    color: var(--dc-accent-strong);
    box-shadow: inset 0 0 0 0.0625rem rgba(40, 66, 255, 0.16);
}

.dc-service-card h3,
.dc-step-card h3 {
    margin: 0.9rem 0 0;
    font-size: clamp(1.2rem, 0.75rem + 0.75vw, 1.55rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--dc-text-strong);
}

.dc-service-card p,
.dc-step-card p {
    margin: 0.75rem 0 0;
    color: var(--dc-text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.dc-service-card__meta {
    display: inline-flex;
    margin-top: auto;
    padding-top: 1rem;
    color: rgba(238, 242, 251, 0.58);
    font-size: 0.84rem;
}

.dc-service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    font-family: var(--dc-font-display);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dc-text-strong);
}

.dc-steps::before {
    left: clamp(0.5rem, 4vw, 3rem);
    top: 2.5rem;
    width: clamp(7rem, 12vw, 10rem);
    aspect-ratio: 1;
    opacity: 0.12;
    filter: grayscale(1) brightness(3.2);
    animation: dc-spin-slow 28s linear infinite;
}

.dc-steps__inner {
    display: grid;
    gap: 1.75rem;
}

.dc-steps__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: dc-step;
}

.dc-step-card {
    counter-increment: dc-step;
    padding-top: 1.75rem;
}

.dc-step-card::after {
    content: counter(dc-step, decimal-leading-zero);
    position: absolute;
    left: 1rem;
    top: -0.75rem;
    min-width: 2.4rem;
    padding: 0.3rem 0.6rem;
    background: rgba(7, 9, 17, 0.96);
    border: 0.0625rem solid rgba(40, 66, 255, 0.28);
    font-family: var(--dc-font-display);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-align: center;
    color: var(--dc-accent-strong);
}

.dc-steps__note {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.75rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    border-radius: var(--dc-radius-s);
    background: rgba(255, 255, 255, 0.04);
}

.dc-steps__note p {
    margin: 0;
    color: var(--dc-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.dc-story__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1rem, 2.4vw, 1.75rem);
    align-items: start;
}

.dc-story__content {
    max-width: 34rem;
}

.dc-story__quote {
    margin: 1.4rem 0 0;
    padding: 1.25rem;
    background: var(--dc-surface-card);
    border: 0.0625rem solid var(--dc-line-dark);
    color: var(--dc-ink);
}

.dc-story__quote p {
    margin: 0;
    font-family: var(--dc-font-display);
    font-size: clamp(1.25rem, 1vw + 0.9rem, 1.8rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.dc-story__quote cite {
    display: block;
    margin-top: 0.9rem;
    color: var(--dc-ink-soft);
    font-style: normal;
}

.dc-story__media {
    min-height: clamp(16rem, 24vw, 22rem);
    overflow: hidden;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(14, 18, 30, 0.92), rgba(8, 10, 18, 0.96));
    box-shadow: var(--dc-shadow-dark);
}

.dc-story__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(1rem, 2vw, 1.4rem);
}

.dc-story__aside {
    padding: 1.15rem;
    background: var(--dc-bg-card);
    border: 0.0625rem solid var(--dc-line);
}

.dc-story__aside h3 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.18rem, 0.9vw + 0.9rem, 1.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--dc-text-strong);
}

.dc-testimonials {
    color: var(--dc-text);
}

.dc-testimonials::after {
    right: clamp(0.75rem, 5vw, 4rem);
    top: clamp(2rem, 4vw, 3rem);
    width: clamp(6.5rem, 11vw, 9rem);
    aspect-ratio: 1;
    opacity: 0.12;
    filter: grayscale(1) brightness(3.4);
    animation: dc-drift-soft 16s ease-in-out infinite;
}

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

.dc-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    color: var(--dc-accent);
}

.dc-rating__star svg {
    width: 0.95rem;
    height: 0.95rem;
}

.dc-testimonial-card__text {
    margin: 0.95rem 0 0;
    color: var(--dc-text-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.dc-testimonial-card__meta {
    display: grid;
    gap: 0.2rem;
    margin-top: auto;
    padding-top: 1rem;
}

.dc-testimonial-card__meta strong {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--dc-text-strong);
}

.dc-testimonial-card__meta span {
    color: rgba(238, 242, 251, 0.54);
    font-size: 0.88rem;
}

.dc-cta__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
    gap: clamp(1rem, 2.6vw, 2rem);
    align-items: stretch;
}

.dc-cta__copy {
    max-width: 34rem;
}

.dc-cta__card {
    display: grid;
    align-content: start;
    gap: 0.5rem;
    padding: 1.2rem;
    border: 0.0625rem solid var(--dc-line);
    background: var(--dc-bg-card);
}

.dc-contact-list {
    display: grid;
    gap: 0.9rem;
    margin: 1rem 0 0;
}

.dc-contact-list__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.18rem 0.8rem;
    align-items: start;
}

.dc-contact-list__icon {
    grid-row: 1 / span 2;
}

.dc-contact-list dt {
    margin: 0;
    font-family: var(--dc-font-display);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(238, 242, 251, 0.54);
}

.dc-contact-list dd {
    margin: 0;
    color: var(--dc-text);
    line-height: 1.58;
}

.dc-contact-list a {
    transition: color 0.3s ease;
}

.dc-contact-list a:hover,
.dc-contact-list a:focus-visible {
    color: var(--dc-accent-strong);
}

.dc-footer {
    position: relative;
    padding-block: clamp(2.4rem, 5vw, 3.8rem);
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(8, 10, 18, 0.88), rgba(5, 7, 12, 0.98));
}

.dc-footer::before {
    right: 2rem;
    top: 1.5rem;
    width: clamp(6rem, 10vw, 8rem);
    aspect-ratio: 1;
    opacity: 0.1;
    filter: grayscale(1) brightness(3.3);
}

.dc-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(12rem, 0.5fr) minmax(14rem, 0.75fr);
    gap: clamp(1.1rem, 2vw, 2rem);
    align-items: start;
}

.dc-footer__brand {
    max-width: 28rem;
}

.dc-footer__orbit-cluster {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.dc-footer__logo {
    position: relative;
    z-index: 1;
}

.dc-footer__orbit {
    position: absolute;
    top: 50%;
    left: 70%;
    width: clamp(4rem, 7vw, 5rem);
    aspect-ratio: 1;
    border: 0.0625rem solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dc-spin-slow 18s linear infinite;
}

.dc-footer__orbit-node {
    position: absolute;
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
    background: var(--dc-accent);
    box-shadow: 0 0 0.8rem rgba(40, 66, 255, 0.48);
}

.dc-footer__orbit-node--one {
    top: -0.18rem;
    left: 50%;
    transform: translateX(-50%);
}

.dc-footer__orbit-node--two {
    right: -0.18rem;
    top: 50%;
    transform: translateY(-50%);
}

.dc-footer__orbit-node--three {
    left: 18%;
    bottom: -0.18rem;
}

.dc-footer__lead {
    margin: 0 0 0.9rem;
    color: var(--dc-text);
    line-height: 1.62;
}

.dc-footer__nav,
.dc-footer__contact {
    padding-top: 0.5rem;
}

.dc-footer__menu {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.dc-footer__menu a {
    color: rgba(238, 242, 251, 0.72);
    transition: color 0.3s ease;
}

.dc-footer__menu a:hover,
.dc-footer__menu a:focus-visible {
    color: var(--dc-text-strong);
}

.dc-footer__contact {
    display: grid;
    gap: 0.8rem;
}

.dc-footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(238, 242, 251, 0.78);
    line-height: 1.52;
}

.dc-footer__contact-item[href]:hover,
.dc-footer__contact-item[href]:focus-visible {
    color: var(--dc-text-strong);
}

.dc-footer__contact-icon {
    width: 2.3rem;
    height: 2.3rem;
    flex: 0 0 auto;
}

.dc-simple-page {
    padding-top: clamp(5rem, 8vw, 6.5rem);
    padding-bottom: clamp(4rem, 7vw, 5rem);
}

.dc-simple-page__inner {
    max-width: 44rem;
    padding: 1.4rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 100% 0%, rgba(40, 66, 255, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--dc-shadow-soft);
}

.dc-simple-page h1,
.dc-simple-page h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.9rem, 1.6rem + 1.6vw, 2.8rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--dc-text-strong);
}

.dc-simple-page article + article {
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
}

.dc-simple-page .dc-prose a,
.dc-simple-page article a {
    color: var(--dc-text-strong);
}

.dc-simple-page .dc-prose a:hover,
.dc-simple-page article a:hover,
.dc-simple-page .dc-prose a:focus-visible,
.dc-simple-page article a:focus-visible {
    color: var(--dc-accent-strong);
}

body.home .dc-services,
body.home .dc-story,
body.home .dc-cta--cta {
    background: linear-gradient(180deg, var(--dc-surface) 0%, var(--dc-surface-soft) 100%);
    color: var(--dc-ink);
}

body.home .dc-services::before,
body.home .dc-story::after,
body.home .dc-cta--cta::after {
    opacity: 0.12;
    filter: brightness(0);
}

body.home .dc-services::before {
    left: clamp(1rem, 5vw, 5rem);
    bottom: 1.5rem;
    width: clamp(6rem, 10vw, 8rem);
    aspect-ratio: 1;
}

body.home .dc-story::after {
    right: clamp(1rem, 4vw, 3rem);
    top: clamp(1.5rem, 4vw, 2.5rem);
    width: clamp(6rem, 10vw, 8rem);
    aspect-ratio: 1;
}

body.home .dc-cta--cta::after {
    right: clamp(1rem, 5vw, 4rem);
    bottom: clamp(1rem, 4vw, 3rem);
    width: clamp(6rem, 10vw, 8rem);
    aspect-ratio: 1;
}

body.home .dc-services .dc-kicker,
body.home .dc-story .dc-kicker,
body.home .dc-cta--cta .dc-kicker {
    color: rgba(15, 21, 34, 0.54);
}

body.home .dc-services .dc-section-heading__title,
body.home .dc-story .dc-section-heading__title,
body.home .dc-cta--cta .dc-section-heading__title,
body.home .dc-story__aside h3,
body.home .dc-contact-list dd,
body.home .dc-service-card h3,
body.home .dc-testimonial-card__meta strong {
    color: var(--dc-ink);
}

body.home .dc-services .dc-prose,
body.home .dc-story .dc-prose,
body.home .dc-cta--cta .dc-prose,
body.home .dc-services .dc-service-card p,
body.home .dc-story .dc-story__aside .dc-prose,
body.home .dc-cta--cta .dc-contact-list dt,
body.home .dc-cta--cta .dc-contact-list dd {
    color: var(--dc-ink-soft);
}

body.home .dc-services .dc-offer-marquee__row {
    color: rgba(15, 21, 34, 0.48);
}

body.home .dc-services .dc-service-card,
body.home .dc-story .dc-story__aside,
body.home .dc-cta--cta .dc-cta__card {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(15, 21, 34, 0.08);
}

body.home .dc-services .dc-service-card__index,
body.home .dc-story .dc-story__quote cite {
    color: rgba(15, 21, 34, 0.48);
}

body.home .dc-services .dc-service-card__meta {
    color: rgba(15, 21, 34, 0.56);
}

body.home .dc-services .dc-service-card__cta {
    color: var(--dc-ink);
}

body.home .dc-story .dc-story__quote {
    background: #ffffff;
}

body.home .dc-story .dc-story__media {
    border-color: rgba(15, 21, 34, 0.08);
    box-shadow: 0 1rem 2.6rem rgba(15, 21, 34, 0.12);
}

body.home .dc-cta--cta .dc-button--ghost {
    border-color: rgba(15, 21, 34, 0.12);
    color: var(--dc-ink);
}

body.home .dc-cta--cta .dc-button--ghost:hover,
body.home .dc-cta--cta .dc-button--ghost:focus-visible {
    background: rgba(15, 21, 34, 0.06);
    border-color: rgba(15, 21, 34, 0.2);
}

body.home .dc-cta--contact::before {
    left: clamp(1rem, 5vw, 4rem);
    bottom: clamp(1rem, 4vw, 2.5rem);
    width: clamp(7rem, 11vw, 9rem);
    aspect-ratio: 1;
    opacity: 0.12;
    filter: grayscale(1) brightness(3.4);
    animation: dc-spin-slow 34s linear infinite;
}

@media (min-width: 64rem) {
    body.home .dc-section:not(.dc-hero) {
        min-height: calc(100svh - var(--dc-header-height));
        display: flex;
        align-items: center;
    }

    body.home .dc-section > .dc-shell,
    body.home .dc-section > .dc-shell.dc-steps__inner,
    body.home .dc-section > .dc-shell.dc-story__inner {
        width: min(calc(100% - (2 * var(--dc-page-gutter))), var(--dc-shell-max));
    }
}

.dc-js [data-reveal] {
    opacity: 0;
    transform: translateY(1.35rem);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
    transition-delay: var(--dc-reveal-delay, 0ms);
}

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

@keyframes dc-spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dc-drift-soft {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0.55rem, -0.8rem, 0);
    }
}

@keyframes dc-pulse-halo {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.95;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.7;
    }
}

@keyframes dc-pulse-opacity {
    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 1;
    }
}

@keyframes dc-signal {
    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

@keyframes dc-network-line {
    0%,
    12% {
        stroke-dashoffset: var(--dc-path-length);
        opacity: 0.25;
    }

    24%,
    72% {
        stroke-dashoffset: 0;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.35;
    }
}

@keyframes dc-network-node {
    0%,
    12% {
        opacity: 0.25;
        transform: scale(0.92);
    }

    24%,
    68% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.45;
        transform: scale(0.96);
    }
}

@keyframes dc-marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes dc-marquee-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 75rem) {
    .dc-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .dc-footer__inner {
        grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.85fr);
    }

    .dc-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 60rem) {
    .dc-nav-toggle {
        display: inline-flex;
    }

    .dc-header__panel {
        position: absolute;
        top: calc(100% + 0.6rem);
        left: var(--dc-page-gutter);
        right: var(--dc-page-gutter);
        display: grid;
        gap: 0.9rem;
        padding: 1rem;
        background: rgba(9, 11, 18, 0.96);
        border: 0.0625rem solid rgba(255, 255, 255, 0.1);
        border-radius: var(--dc-radius-m);
        box-shadow: var(--dc-shadow-dark);
    }

    .dc-nav__list {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }

    .dc-hero__inner,
    .dc-story__inner,
    .dc-cta__panel,
    .dc-footer__inner {
        grid-template-columns: 1fr;
    }

    .dc-hero__copy {
        max-width: none;
    }

    .dc-hero__visual {
        min-height: 22rem;
    }

    .dc-services__grid,
    .dc-testimonials__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 60.0625rem) {
    .dc-nav-toggle {
        display: none;
    }

    .dc-header__panel[hidden] {
        display: flex !important;
    }
}

@media (max-width: 47.9375rem) {
    .dc-section {
        padding-block: 3.5rem;
    }

    .dc-hero {
        padding-top: 3.8rem;
    }

    .dc-hero__title {
        max-width: 9ch;
        font-size: clamp(2.2rem, 9vw, 3.95rem);
    }

    .dc-hero__actions,
    .dc-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .dc-button {
        width: 100%;
        justify-content: space-between;
    }

    .dc-hero__facts {
        gap: 0.55rem;
    }

    .dc-hero__facts li {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .dc-services__grid,
    .dc-steps__grid,
    .dc-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .dc-story__quote,
    .dc-story__aside,
    .dc-cta__card {
        padding: 1rem;
    }

    .dc-contact-list__item {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .dc-contact-list__icon {
        grid-row: auto;
    }

    .dc-footer__contact-item {
        align-items: flex-start;
    }

    .dc-hero__network-float--one {
        top: -2%;
        right: -4%;
    }

    .dc-hero__network-float--two {
        right: -2%;
        bottom: 24%;
    }
}

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

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

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

    .dc-hero__panel,
    .dc-service-card,
    .dc-step-card,
    .dc-testimonial-card {
        transform: none !important;
    }
}
