:root {
    --ink: #07070c;
    --ink-soft: #0d0d15;
    --ink-raised: #12121c;
    --paper: #f4f3ef;
    --paper-bright: #fbfaf7;
    --paper-muted: #d8d6d0;
    --text: #f7f6f2;
    --text-muted: #aaa9b3;
    --dark-text: #111119;
    --dark-muted: #62616a;
    --cyan: #14e5ea;
    --cyan-soft: #85f8f4;
    --violet: #8b5cff;
    --magenta: #da47ed;
    --lime: #c7ff66;
    --line: rgba(255, 255, 255, 0.12);
    --dark-line: rgba(17, 17, 25, 0.14);
    --header-height: 5.5rem;
    --radius-sm: 1rem;
    --radius-md: 1.75rem;
    --radius-lg: 2.5rem;
    --shell: min(88rem, calc(100vw - 3rem));
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--ink);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: var(--ink);
    background: var(--cyan);
}

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

a {
    color: inherit;
}

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

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

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 999;
    padding: 0.8rem 1rem;
    color: var(--ink);
    background: var(--cyan);
    border-radius: 0.5rem;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.page-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 2px;
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
    transform: scaleX(0);
    transform-origin: left center;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    isolation: isolate;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition:
        height 350ms var(--ease-out),
        background-color 350ms ease,
        border-color 350ms ease,
        backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
    height: 4.75rem;
    background: rgba(7, 7, 12, 0.72);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.brand {
    display: block;
    width: 10.5rem;
    text-decoration: none;
}

.brand img {
    width: 100%;
    height: auto;
}

.brand-header {
    position: relative;
    z-index: 4;
    display: block;
    flex: 0 0 10.5rem;
    width: 10.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.brand-monochrome {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 668 / 200;
    object-fit: contain;
    filter: drop-shadow(0 0 0.8rem rgba(255, 255, 255, 0.06));
}

.site-header.is-scrolled .brand-header,
.site-header.is-scrolled .brand-monochrome,
.menu-open .site-header .brand-header,
.menu-open .site-header .brand-monochrome {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 220ms ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.55rem;
    left: 0;
    height: 1px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 300ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.85rem;
    padding: 0 1.15rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 280ms ease,
        border-color 280ms ease,
        background 280ms ease,
        transform 280ms var(--ease-out);
}

.header-cta:hover {
    color: var(--ink);
    background: var(--cyan);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

.header-cta span {
    font-size: 1rem;
}

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

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100svh;
    padding: calc(var(--header-height) + 4rem) 0 5rem;
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 25%;
    background: linear-gradient(0deg, var(--ink) 0%, transparent 100%);
    pointer-events: none;
}

.hero-noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.1;
    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: 5rem 5rem;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

.hero-grid {
    position: absolute;
    top: 4rem;
    left: 49%;
    z-index: -2;
    width: 56rem;
    height: 56rem;
    border-radius: 50%;
    opacity: 0.38;
    background-image:
        radial-gradient(circle at center, transparent 0 26%, rgba(20, 229, 234, 0.1) 26.15% 26.3%, transparent 26.45%),
        radial-gradient(circle at center, transparent 0 42%, rgba(139, 92, 255, 0.1) 42.15% 42.3%, transparent 42.45%),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, auto, 2.5rem 2.5rem, 2.5rem 2.5rem;
    mask-image: radial-gradient(circle, #000 20%, transparent 69%);
}

.hero-aurora {
    position: absolute;
    z-index: -3;
    width: 46rem;
    height: 46rem;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-aurora-one {
    top: -17rem;
    left: 41%;
    opacity: 0.2;
    background: var(--violet);
}

.hero-aurora-two {
    right: -21rem;
    bottom: -14rem;
    opacity: 0.2;
    background: var(--cyan);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(29rem, 0.96fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 6rem);
}

.hero-copy {
    position: relative;
    z-index: 5;
    min-width: 0;
    padding-top: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    font-family: "Space Mono", monospace;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: rgba(255, 255, 255, 0.75);
}

.eyebrow.dark {
    color: rgba(17, 17, 25, 0.48);
}

.status-dot {
    position: relative;
    width: 0.48rem;
    height: 0.48rem;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 1rem var(--cyan);
}

.status-dot::before {
    content: "";
    position: absolute;
    inset: -0.3rem;
    border: 1px solid rgba(20, 229, 234, 0.4);
    border-radius: inherit;
    animation: status-pulse 2.4s ease-out infinite;
}

@keyframes status-pulse {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.7);
    }
}

.hero h1 {
    max-width: 15ch;
    margin: 1.75rem 0 1.6rem;
    font-size: clamp(3.4rem, 5.4vw, 6.5rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.93;
}

.hero h1 span {
    display: block;
    color: transparent;
    background:
        linear-gradient(105deg, #fff 0%, var(--cyan-soft) 24%, #8fc7ff 48%, #b59aff 70%, #f494ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-lead {
    max-width: 39rem;
    margin: 0;
    color: var(--text-muted);
    font-size: clamp(1.03rem, 1.4vw, 1.22rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.4rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 3.8rem;
    padding: 0 1.5rem;
    border: 0;
    border-radius: 999px;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 300ms var(--ease-out),
        box-shadow 300ms ease,
        color 300ms ease,
        background 300ms ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.5) 45%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 700ms var(--ease-out);
}

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

.button span,
.button i {
    position: relative;
    z-index: 1;
}

.button i {
    font-size: 1.1rem;
    font-style: normal;
    transition: transform 300ms var(--ease-out);
}

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

.button:hover i {
    transform: translate(0.15rem, -0.15rem);
}

.button-primary {
    color: var(--ink);
    background: var(--cyan);
    box-shadow: 0 0.75rem 2.75rem rgba(20, 229, 234, 0.14);
}

.button-primary:hover {
    box-shadow: 0 1rem 3.5rem rgba(20, 229, 234, 0.24);
}

.text-link,
.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link {
    color: rgba(255, 255, 255, 0.7);
}

.text-link span,
.inline-link span {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    transition:
        color 250ms ease,
        background 250ms ease,
        transform 250ms var(--ease-out);
}

.text-link:hover {
    color: #fff;
}

.text-link:hover span {
    color: var(--ink);
    background: #fff;
    transform: translateY(0.2rem);
}

.hero-proof {
    display: flex;
    gap: 0;
    margin-top: clamp(3.5rem, 8vh, 6.5rem);
}

.hero-proof > div {
    min-width: 9.5rem;
    padding: 0 1.4rem;
    border-left: 1px solid var(--line);
}

.hero-proof > div:first-child {
    padding-left: 0;
    border-left: 0;
}

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

.hero-proof strong {
    margin-bottom: 0.15rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
}

.hero-visual {
    position: relative;
    width: min(42vw, 39rem);
    aspect-ratio: 1;
    justify-self: end;
    perspective: 1000px;
}

.parallax-layer {
    position: absolute;
    will-change: transform;
    transition: transform 120ms linear;
}

.stage-glow {
    inset: 12%;
    border-radius: 50%;
    opacity: 0.8;
    background:
        radial-gradient(circle at 42% 38%, rgba(20, 229, 234, 0.28), transparent 36%),
        radial-gradient(circle at 62% 62%, rgba(218, 71, 237, 0.23), transparent 43%);
    filter: blur(40px);
}

.orbit {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.orbit::before,
.orbit::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
}

.orbit::before {
    inset: -1px;
    background: conic-gradient(from 40deg, transparent 0 62%, rgba(20, 229, 234, 0.7) 70%, transparent 78%);
    mask: radial-gradient(transparent calc(50% - 1px), #000 calc(50% - 0.5px));
}

.orbit span {
    position: absolute;
    display: block;
    width: 0.48rem;
    height: 0.48rem;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 1.2rem rgba(20, 229, 234, 0.75);
}

.orbit-outer {
    inset: 1%;
    animation: orbit-spin 32s linear infinite;
}

.orbit-outer span {
    top: 21%;
    left: 8%;
}

.orbit-middle {
    inset: 12%;
    border-color: rgba(139, 92, 255, 0.3);
    animation: orbit-spin-reverse 24s linear infinite;
}

.orbit-middle::before {
    background: conic-gradient(from 220deg, transparent 0 68%, rgba(218, 71, 237, 0.75) 75%, transparent 83%);
}

.orbit-middle span:first-child {
    right: 10%;
    bottom: 23%;
    background: var(--magenta);
    box-shadow: 0 0 1rem rgba(218, 71, 237, 0.75);
}

.orbit-middle span:last-child {
    top: 5%;
    right: 35%;
    width: 0.3rem;
    height: 0.3rem;
    background: var(--violet);
}

.orbit-inner {
    inset: 24%;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.14);
    animation: orbit-spin 18s linear infinite;
}

.orbit-inner span {
    right: 6%;
    bottom: 20%;
    width: 0.35rem;
    height: 0.35rem;
}

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

@keyframes orbit-spin-reverse {
    to { rotate: -360deg; }
}

.brand-core {
    inset: 26%;
    display: grid;
    place-items: center;
}

.core-halo {
    position: absolute;
    inset: -10%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 38%;
    background: rgba(255, 255, 255, 0.025);
    box-shadow:
        inset 0 0 2.5rem rgba(255, 255, 255, 0.04),
        0 0 5rem rgba(82, 39, 180, 0.12);
    rotate: 45deg;
    backdrop-filter: blur(8px);
}

.core-panel {
    position: relative;
    display: grid;
    width: 69%;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2.1rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
        rgba(8, 8, 16, 0.6);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.12),
        0 1.5rem 5rem rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    transform: rotate(-3deg);
}

.core-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    padding: 1px;
    background: linear-gradient(135deg, rgba(20, 229, 234, 0.65), transparent 42%, rgba(218, 71, 237, 0.5));
    border-radius: inherit;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.core-panel img {
    width: 60%;
    height: 71%;
    object-fit: contain;
    filter: drop-shadow(0 0 1.4rem rgba(20, 229, 234, 0.2));
}

.float-card {
    z-index: 5;
    display: flex;
    flex-direction: column;
    width: 12.25rem;
    min-height: 6.8rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(12, 12, 22, 0.68);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px) saturate(130%);
}

.float-card-top {
    top: 12%;
    right: -2%;
}

.float-card-bottom {
    bottom: 7%;
    left: -3%;
}

.card-label {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.38);
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
}

.float-card strong {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75rem;
    line-height: 1.5;
}

.signal-line {
    position: relative;
    display: block;
    height: 1px;
    margin-top: auto;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.signal-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: signal 2.8s ease-in-out infinite;
}

@keyframes signal {
    from { left: -45%; }
    to { left: 100%; }
}

.mini-bars {
    display: flex;
    align-items: end;
    gap: 0.25rem;
    height: 1.25rem;
    margin-top: auto;
}

.mini-bars i {
    flex: 1;
    height: 35%;
    border-radius: 0.15rem 0.15rem 0 0;
    background: linear-gradient(to top, var(--violet), var(--cyan));
}

.mini-bars i:nth-child(2) { height: 62%; }
.mini-bars i:nth-child(3) { height: 48%; }
.mini-bars i:nth-child(4) { height: 88%; }

.code-fragment {
    right: 4%;
    bottom: 22%;
    z-index: 4;
    display: flex;
    gap: 0.45rem;
    padding: 0.45rem 0.65rem;
    color: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.4rem;
    background: rgba(7, 7, 12, 0.55);
    font-family: "Space Mono", monospace;
    font-size: 0.5rem;
    backdrop-filter: blur(10px);
}

.code-fragment span:first-child { color: var(--cyan); }
.code-fragment b { color: var(--magenta); }

.scroll-cue {
    position: absolute;
    right: 1.5rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.34);
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-cue i {
    position: relative;
    width: 1px;
    height: 3.5rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    inset: -100% 0 auto;
    height: 75%;
    background: var(--cyan);
    animation: scroll-cue 2.2s ease-in-out infinite;
}

@keyframes scroll-cue {
    to { top: 130%; }
}

.section-light {
    position: relative;
    color: var(--dark-text);
    background: var(--paper);
}

.section-dark {
    position: relative;
    color: var(--text);
    background: var(--ink);
}

.section-ink {
    position: relative;
    color: var(--text);
    background: #0b0b12;
}

.section-index {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(17, 17, 25, 0.48);
    font-family: "Space Mono", monospace;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-index span {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    color: var(--dark-text);
    border: 1px solid var(--dark-line);
    border-radius: 50%;
}

.section-index p {
    margin: 0;
}

.section-index.inverse {
    color: rgba(255, 255, 255, 0.44);
}

.section-index.inverse span {
    color: rgba(255, 255, 255, 0.75);
    border-color: var(--line);
}

.manifesto {
    position: relative;
    padding: clamp(7rem, 12vw, 12rem) 0 clamp(6rem, 10vw, 10rem);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 22%, rgba(20, 229, 234, 0.1), transparent 25%),
        radial-gradient(circle at 82% 18%, rgba(139, 92, 255, 0.1), transparent 31%),
        linear-gradient(145deg, #f7f7f3 0%, #f0f0ed 53%, #f6f5f1 100%);
}

.manifesto::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(17, 17, 25, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 25, 0.035) 1px, transparent 1px);
    background-size: 6rem 6rem;
    mask-image: radial-gradient(circle at 30% 45%, #000, transparent 70%);
}

.manifesto::after {
    content: "ARX / PRINCÍPIO 01";
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
    z-index: -1;
    color: rgba(17, 17, 25, 0.18);
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    writing-mode: vertical-rl;
}

.manifesto .shell {
    position: relative;
    z-index: 2;
}

.manifesto .section-index {
    width: fit-content;
    padding: 0.45rem 0.8rem 0.45rem 0.45rem;
    border: 1px solid rgba(17, 17, 25, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 0.75rem 2.5rem rgba(23, 27, 38, 0.05);
    backdrop-filter: blur(10px);
}

.manifesto-orb {
    position: absolute;
    top: -10rem;
    right: -14rem;
    width: 35rem;
    height: 35rem;
    border: 1px solid rgba(139, 92, 255, 0.14);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 62%);
    box-shadow:
        0 0 0 4rem rgba(139, 92, 255, 0.028),
        0 0 0 9rem rgba(20, 229, 234, 0.018);
}

.manifesto-signal {
    position: absolute;
    top: 19%;
    left: -3rem;
    z-index: -1;
    display: flex;
    align-items: end;
    gap: 0.55rem;
    width: 18rem;
    height: 10rem;
    opacity: 0.34;
    transform: rotate(-8deg);
}

.manifesto-signal::before {
    content: "";
    position: absolute;
    right: -8rem;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(20, 229, 234, 0.7), rgba(139, 92, 255, 0.45), transparent);
}

.manifesto-signal i {
    width: 1px;
    background: linear-gradient(to top, var(--cyan), transparent);
    animation: manifesto-signal 3.4s var(--ease-smooth) infinite alternate;
}

.manifesto-signal i:nth-child(1) { height: 28%; }
.manifesto-signal i:nth-child(2) { height: 68%; animation-delay: -1.2s; }
.manifesto-signal i:nth-child(3) { height: 45%; animation-delay: -2.1s; }
.manifesto-signal i:nth-child(4) { height: 88%; animation-delay: -0.6s; }

@keyframes manifesto-signal {
    to {
        opacity: 0.35;
        transform: scaleY(0.42);
    }
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 9rem);
    margin-top: 4.5rem;
}

.manifesto h2 {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(2.8rem, 5.3vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.manifesto h2 span {
    color: transparent;
    background: linear-gradient(105deg, #1b5360 0%, #217f8c 35%, #6344ba 72%, #8f3ca3 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.manifesto-copy {
    padding-bottom: 0.55rem;
}

.manifesto-copy > p {
    margin: 0 0 2.2rem;
    color: var(--dark-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.inline-link.dark {
    color: var(--dark-text);
}

.inline-link.dark:hover span {
    color: var(--paper);
    background: var(--dark-text);
    transform: translate(0.15rem, 0.15rem);
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(6rem, 10vw, 10rem);
    border-top: 1px solid var(--dark-line);
}

.principles article {
    min-height: 15rem;
    padding: 2rem 2rem 0;
    border-left: 1px solid var(--dark-line);
}

.principles article:first-child {
    padding-left: 0;
    border-left: 0;
}

.principles article > span {
    display: block;
    margin-bottom: 3.8rem;
    color: rgba(17, 17, 25, 0.32);
    font-family: "Space Mono", monospace;
    font-size: 0.64rem;
}

.principles h3 {
    margin: 0 0 0.7rem;
    font-size: 1.15rem;
}

.principles p {
    max-width: 25rem;
    margin: 0;
    color: var(--dark-muted);
    font-size: 0.87rem;
    line-height: 1.7;
}

.services {
    padding: clamp(7rem, 12vw, 12rem) 0;
    overflow: hidden;
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    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: 7rem 7rem;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.services-glow {
    position: absolute;
    top: 20%;
    left: -24rem;
    width: 42rem;
    height: 42rem;
    border-radius: 50%;
    opacity: 0.14;
    background: var(--violet);
    filter: blur(120px);
}

.services .shell {
    position: relative;
    z-index: 2;
}

.services .section-index.inverse {
    width: fit-content;
    padding: 0.45rem 0.8rem 0.45rem 0.45rem;
    border: 1px solid rgba(20, 229, 234, 0.18);
    border-radius: 999px;
    background: rgba(20, 229, 234, 0.035);
    box-shadow: 0 0 3rem rgba(20, 229, 234, 0.05);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    gap: 3rem;
    align-items: start;
}

.section-heading h2 {
    max-width: 15ch;
    margin: 0;
    font-size: clamp(2.7rem, 4.6vw, 5.4rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.section-heading h2 span {
    color: transparent;
    background: linear-gradient(100deg, var(--cyan-soft) 0%, #89d9ff 38%, #b49bff 72%, #f09bff 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.services-heading-signal {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 1.5rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.34);
    font-family: "Space Mono", monospace;
    font-size: 0.54rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-heading-signal i {
    width: 0.22rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 0.8rem rgba(20, 229, 234, 0.5);
    animation: services-pulse 1.8s ease-in-out infinite alternate;
}

.services-heading-signal i:nth-child(2) {
    height: 0.85rem;
    animation-delay: -0.7s;
}

.services-heading-signal i:nth-child(3) {
    height: 0.62rem;
    animation-delay: -1.2s;
}

.services-heading-signal span {
    margin-left: 0.55rem;
}

@keyframes services-pulse {
    to {
        opacity: 0.3;
        transform: scaleY(0.45);
    }
}

.section-heading > div:last-child > p {
    max-width: 34rem;
    margin: 1.5rem 0 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 1rem;
    margin-top: clamp(4.5rem, 7vw, 7rem);
}

.service-card {
    --pointer-x: 50%;
    --pointer-y: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 28rem;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.09), transparent 28%),
        rgba(255, 255, 255, 0.035);
    transform-style: preserve-3d;
    transition:
        border-color 350ms ease,
        background-color 350ms ease,
        transform 180ms ease-out;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(135deg, rgba(20, 229, 234, 0.26), transparent 40%, rgba(139, 92, 255, 0.22));
    transition: opacity 350ms ease;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

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

.service-card-featured {
    grid-row: span 2;
    min-height: 58rem;
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(20, 229, 234, 0.1), transparent 30%),
        linear-gradient(150deg, rgba(20, 229, 234, 0.055), transparent 36%),
        rgba(255, 255, 255, 0.035);
}

.service-card-accent {
    background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(218, 71, 237, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(139, 92, 255, 0.07), rgba(218, 71, 237, 0.025));
}

.service-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.38);
    font-family: "Space Mono", monospace;
    font-size: 0.65rem;
}

.service-topline i {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-style: normal;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 300ms var(--ease-out);
}

.service-card:hover .service-topline i {
    color: var(--ink);
    background: var(--cyan);
    transform: rotate(45deg);
}

.service-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.service-kicker {
    margin: 0 0 0.85rem;
    color: var(--cyan);
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-content h3 {
    margin: 0 0 1.15rem;
    font-size: clamp(1.65rem, 2.6vw, 2.8rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.service-content > p:last-child {
    max-width: 34rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.service-visual {
    position: absolute;
    top: 17%;
    right: -6%;
    width: 77%;
    height: 46%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 1.25rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        rgba(255, 255, 255, 0.025);
    background-size: 2rem 2rem;
    box-shadow: -1.5rem 2rem 5rem rgba(0, 0, 0, 0.35);
    transform: rotate(-5deg) perspective(800px) rotateY(-12deg);
    transition: transform 700ms var(--ease-out);
}

.service-card-featured:hover .service-visual {
    transform: rotate(-2deg) perspective(800px) rotateY(-6deg) translateY(-0.5rem);
}

.window {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    height: 2rem;
    padding: 0 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window span {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.interface-line,
.interface-chip {
    position: absolute;
    left: 10%;
    border-radius: 999px;
}

.interface-line {
    height: 0.55rem;
    background: rgba(255, 255, 255, 0.09);
}

.line-a {
    top: 31%;
    width: 52%;
}

.line-b {
    top: 44%;
    width: 34%;
}

.interface-chip {
    bottom: 18%;
    width: 7rem;
    height: 2.25rem;
    background: linear-gradient(90deg, var(--cyan), #7d8fff);
    box-shadow: 0 0 2rem rgba(20, 229, 234, 0.24);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 2.2rem;
}

.service-tags span {
    padding: 0.35rem 0.65rem;
    color: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-family: "Space Mono", monospace;
    font-size: 0.52rem;
    text-transform: uppercase;
}

.nodes {
    position: absolute;
    top: 6rem;
    right: 2rem;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.nodes::before,
.nodes::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.09);
}

.nodes::before {
    top: 50%;
    left: -1rem;
    width: 10rem;
    height: 1px;
}

.nodes::after {
    top: -1rem;
    left: 50%;
    width: 1px;
    height: 10rem;
}

.nodes i {
    position: absolute;
    z-index: 2;
    width: 0.55rem;
    height: 0.55rem;
    background: var(--violet);
    border-radius: 50%;
    box-shadow: 0 0 1rem rgba(139, 92, 255, 0.7);
}

.nodes i:nth-child(1) { top: 14%; left: 18%; }
.nodes i:nth-child(2) { top: 22%; right: 6%; background: var(--cyan); }
.nodes i:nth-child(3) { right: 22%; bottom: 5%; }
.nodes i:nth-child(4) { bottom: 22%; left: 8%; background: var(--cyan); }

.pulse-rings {
    position: absolute;
    top: 4rem;
    right: 2rem;
    width: 9rem;
    height: 9rem;
}

.pulse-rings i {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(218, 71, 237, 0.22);
    border-radius: 50%;
    animation: ring-pulse 3s ease-out infinite;
}

.pulse-rings i:nth-child(2) { animation-delay: 1s; }
.pulse-rings i:nth-child(3) { animation-delay: 2s; }

@keyframes ring-pulse {
    0% {
        opacity: 0;
        transform: scale(0.18);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.method {
    padding: clamp(7rem, 12vw, 12rem) 0;
    overflow: hidden;
}

.method-grid-bg {
    position: absolute;
    inset: -10%;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(20, 229, 234, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 255, 0.07) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: radial-gradient(circle at 40% 45%, #000, transparent 62%);
    transform: rotate(-4deg);
}

.method::after {
    content: "";
    position: absolute;
    top: 28%;
    left: 18%;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    opacity: 0.11;
    background: var(--cyan);
    filter: blur(120px);
}

.method-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(4rem, 10vw, 10rem);
    align-items: start;
}

.method-intro {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
}

.method-intro h2 {
    max-width: 11ch;
    margin: 3.25rem 0 1.8rem;
    font-size: clamp(2.8rem, 4.6vw, 5.25rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.method-intro > p {
    max-width: 31rem;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
}

.method-steps {
    border-top: 1px solid var(--line);
}

.method-step {
    position: relative;
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1.5rem;
    min-height: 21rem;
    margin: 0 -1.5rem;
    padding: 3rem 1.5rem;
    border-bottom: 1px solid var(--line);
    border-radius: 1.25rem;
    overflow: hidden;
    opacity: 0.28;
    transition:
        opacity 450ms ease,
        transform 600ms var(--ease-out),
        border-color 450ms ease,
        background-color 450ms ease,
        box-shadow 450ms ease;
}

.method-step::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background:
        radial-gradient(circle at 15% 35%, rgba(20, 229, 234, 0.11), transparent 28%),
        linear-gradient(100deg, rgba(255, 255, 255, 0.045), transparent 58%);
    transition: opacity 450ms ease;
}

.method-step::after {
    content: "";
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 0;
    width: 2px;
    border-radius: 999px;
    opacity: 0;
    background: linear-gradient(to bottom, transparent, var(--cyan), var(--violet), transparent);
    transform: scaleY(0.35);
    transition:
        opacity 450ms ease,
        transform 550ms var(--ease-out);
}

.method-step.is-active,
.method-step:hover,
.method-step:focus-within {
    opacity: 1;
    transform: translateX(-1rem);
    border-color: rgba(20, 229, 234, 0.18);
    background-color: rgba(255, 255, 255, 0.018);
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.12);
}

.method-step.is-active::before,
.method-step:hover::before,
.method-step:focus-within::before,
.method-step.is-active::after,
.method-step:hover::after,
.method-step:focus-within::after {
    opacity: 1;
}

.method-step.is-active::after,
.method-step:hover::after,
.method-step:focus-within::after {
    transform: scaleY(1);
}

.step-number,
.step-label {
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.step-number {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    color: var(--cyan);
    border: 1px solid rgba(20, 229, 234, 0.2);
    border-radius: 50%;
    transition:
        color 350ms ease,
        background 350ms ease,
        box-shadow 350ms ease,
        transform 450ms var(--ease-out);
}

.method-step.is-active .step-number,
.method-step:hover .step-number,
.method-step:focus-within .step-number {
    color: var(--ink);
    background: var(--cyan);
    box-shadow: 0 0 1.5rem rgba(20, 229, 234, 0.2);
    transform: rotate(-8deg);
}

.step-label {
    margin: 0 0 2.3rem;
    color: rgba(255, 255, 255, 0.4);
}

.method-step h3 {
    max-width: 15ch;
    margin: 0 0 1.2rem;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.08;
    transition:
        color 350ms ease,
        transform 450ms var(--ease-out);
}

.method-step:hover h3,
.method-step:focus-within h3 {
    color: var(--cyan-soft);
    transform: translateX(0.4rem);
}

.method-step div > p:last-child {
    max-width: 29rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.quality {
    position: relative;
    padding: clamp(7rem, 12vw, 12rem) 0 0;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 7% 20%, rgba(20, 229, 234, 0.09), transparent 24%),
        radial-gradient(circle at 85% 28%, rgba(139, 92, 255, 0.11), transparent 31%),
        linear-gradient(150deg, #f6f5f1 0%, #efefec 52%, #f8f7f3 100%);
}

.quality::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.52;
    background-image:
        linear-gradient(rgba(17, 17, 25, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 25, 0.035) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: radial-gradient(circle at 78% 35%, #000, transparent 70%);
}

.quality-atmosphere {
    position: absolute;
    top: 4%;
    right: -10rem;
    z-index: -1;
    width: 39rem;
    height: 39rem;
    border: 1px solid rgba(139, 92, 255, 0.13);
    border-radius: 50%;
    box-shadow:
        0 0 0 5rem rgba(139, 92, 255, 0.025),
        0 0 0 10rem rgba(20, 229, 234, 0.018);
}

.quality-atmosphere::before,
.quality-atmosphere::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed rgba(17, 17, 25, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.quality-atmosphere::before {
    width: 62%;
    height: 62%;
}

.quality-atmosphere::after {
    width: 31%;
    height: 31%;
}

.quality-atmosphere i {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 1rem rgba(139, 92, 255, 0.45);
}

.quality-atmosphere i:nth-child(1) { top: 13%; left: 24%; }
.quality-atmosphere i:nth-child(2) { right: 8%; bottom: 34%; background: var(--cyan); }
.quality-atmosphere i:nth-child(3) { bottom: 10%; left: 31%; }

.quality .shell {
    position: relative;
    z-index: 2;
}

.quality .section-index {
    width: fit-content;
    padding: 0.45rem 0.8rem 0.45rem 0.45rem;
    border: 1px solid rgba(17, 17, 25, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.62fr;
    align-items: end;
    gap: clamp(4rem, 11vw, 12rem);
}

.quality h2 {
    max-width: 13ch;
    margin: 4rem 0 0;
    font-size: clamp(2.8rem, 5.3vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.01;
    color: transparent;
    background: linear-gradient(110deg, #111119 0%, #242535 54%, #315d68 76%, #6944a0 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.quality-copy p {
    margin: 0 0 1.5rem;
    color: var(--dark-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.quality-copy p:last-child {
    margin-bottom: 0;
}

.quality-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(5rem, 9vw, 9rem);
    border: 1px solid var(--dark-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 2rem 7rem rgba(30, 31, 45, 0.07);
    backdrop-filter: blur(16px);
}

.quality-board article {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 24rem;
    padding: 2rem;
    border-left: 1px solid var(--dark-line);
    background: rgba(255, 255, 255, 0.28);
    transition:
        color 400ms ease,
        background 400ms ease;
}

.quality-board article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 2rem;
    left: 2rem;
    height: 1px;
    opacity: 0.5;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
    transform: scaleX(0.3);
    transition:
        opacity 400ms ease,
        transform 550ms var(--ease-out);
}

.quality-board article:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.quality-board article:first-child {
    border-left: 0;
}

.quality-board article:hover {
    color: #fff;
    background: var(--dark-text);
}

.quality-mark {
    color: rgba(17, 17, 25, 0.1);
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.8;
    transition: color 400ms ease;
}

.quality-board article:hover .quality-mark {
    color: rgba(20, 229, 234, 0.18);
}

.quality-board h3 {
    margin: 0 0 0.7rem;
    font-size: 1.1rem;
}

.quality-board p {
    margin: 0;
    color: var(--dark-muted);
    font-size: 0.84rem;
    line-height: 1.65;
    transition: color 400ms ease;
}

.quality-board article:hover p {
    color: rgba(255, 255, 255, 0.55);
}

.capability-marquee {
    width: 100vw;
    margin-top: clamp(6rem, 9vw, 9rem);
    margin-left: calc((100vw - var(--shell)) / -2);
    padding: 2.6rem 0;
    overflow: hidden;
    color: var(--paper);
    background: var(--dark-text);
}

.capability-marquee > div {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.regions {
    padding: clamp(6rem, 10vw, 10rem) 0 clamp(7rem, 12vw, 12rem);
    overflow: hidden;
}

.regions-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    min-height: 44rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(139, 92, 255, 0.21), transparent 29%),
        radial-gradient(circle at 86% 86%, rgba(20, 229, 234, 0.12), transparent 26%),
        #0b0b12;
}

.regions-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    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: 4rem 4rem;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.region-network {
    position: relative;
    align-self: center;
    width: min(36vw, 31rem);
    aspect-ratio: 1;
    margin-left: -9%;
}

.network-core,
.network-ring,
.network-node {
    position: absolute;
    border-radius: 50%;
}

.network-core {
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    width: 5rem;
    height: 5rem;
    place-items: center;
    background:
        radial-gradient(circle, #fff 0 4%, transparent 5%),
        radial-gradient(circle, rgba(20, 229, 234, 0.26), rgba(139, 92, 255, 0.1) 55%, transparent 72%);
    border: 1px solid rgba(20, 229, 234, 0.45);
    box-shadow: 0 0 3rem rgba(20, 229, 234, 0.22);
    transform: translate(-50%, -50%);
}

.network-core::after {
    content: "CWB";
    color: var(--cyan);
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
}

.network-ring {
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.11);
    transform: translate(-50%, -50%);
}

.network-ring-one {
    width: 48%;
    height: 48%;
}

.network-ring-two {
    width: 82%;
    height: 82%;
    border-style: dashed;
    animation: orbit-spin 34s linear infinite;
}

.network-node {
    z-index: 2;
    width: 0.52rem;
    height: 0.52rem;
    background: var(--cyan);
    box-shadow: 0 0 1rem rgba(20, 229, 234, 0.75);
}

.network-node::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(20, 229, 234, 0.3), transparent);
    transform-origin: left center;
}

.node-pr { top: 49%; left: 21%; }
.node-pr::before { transform: rotate(0deg); }
.node-sp { top: 26%; left: 49%; }
.node-sp::before { transform: rotate(62deg); }
.node-rj { top: 37%; right: 13%; }
.node-rj::before { transform: rotate(126deg); }
.node-sc { right: 25%; bottom: 20%; }
.node-sc::before { transform: rotate(188deg); }
.node-mt { bottom: 12%; left: 40%; }
.node-mt::before { transform: rotate(238deg); }
.node-ms { bottom: 24%; left: 15%; }
.node-ms::before { transform: rotate(294deg); }
.node-es { top: 16%; left: 24%; }
.node-es::before { transform: rotate(20deg); }
.node-mg { top: 8%; right: 24%; }
.node-mg::before { transform: rotate(98deg); }
.node-rs { right: 7%; bottom: 38%; }
.node-rs::before { transform: rotate(156deg); }

.regions-content {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem) 2rem;
}

.regions-content h2 {
    max-width: 16ch;
    margin: 3rem 0 1.5rem;
    font-size: clamp(2.4rem, 4vw, 4.7rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.regions-content > p {
    max-width: 39rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 2.6rem 0 0;
    padding: 0;
    list-style: none;
}

.region-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
}

.region-list strong {
    font-size: 0.67rem;
    font-weight: 600;
}

.region-list span {
    color: var(--cyan);
    font-family: "Space Mono", monospace;
    font-size: 0.52rem;
}

.faq {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(3rem, 10vw, 10rem);
    margin-top: clamp(7rem, 12vw, 12rem);
}

.faq-heading h2 {
    max-width: 13ch;
    margin: 2.5rem 0 0;
    font-size: clamp(2.5rem, 4.6vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

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

.faq-list details {
    border-bottom: 1px solid var(--dark-line);
}

.faq-list summary {
    display: grid;
    grid-template-columns: 1fr 2.25rem;
    align-items: center;
    gap: 1.5rem;
    min-height: 6.5rem;
    padding: 1.25rem 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 650;
    list-style: none;
}

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

.faq-list summary span {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid var(--dark-line);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 400;
    transition:
        color 300ms ease,
        background 300ms ease,
        transform 400ms var(--ease-out);
}

.faq-list details[open] summary span {
    color: var(--paper);
    background: var(--dark-text);
    transform: rotate(45deg);
}

.faq-list details > p {
    max-width: 42rem;
    margin: -0.3rem 0 2.1rem;
    padding-right: 4rem;
    color: var(--dark-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.capability-marquee span {
    padding: 0 1.65rem;
    font-size: clamp(1.4rem, 2.7vw, 2.75rem);
    font-weight: 500;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.capability-marquee i {
    width: 0.42rem;
    height: 0.42rem;
    background: var(--cyan);
    border-radius: 50%;
}

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

.contact {
    position: relative;
    min-height: 52rem;
    padding: clamp(8rem, 14vw, 14rem) 0 5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 120%, rgba(20, 229, 234, 0.08), transparent 40%),
        var(--ink);
}

.contact-lines {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    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: 6rem 6rem;
    mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.contact-aurora {
    position: absolute;
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    filter: blur(110px);
}

.contact-aurora-one {
    top: -15rem;
    left: -8rem;
    opacity: 0.16;
    background: var(--violet);
}

.contact-aurora-two {
    right: -10rem;
    bottom: -20rem;
    opacity: 0.18;
    background: var(--cyan);
}

.contact-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact h2 {
    max-width: 14ch;
    margin: 2rem auto 1.75rem;
    font-size: clamp(3.2rem, 7vw, 8rem);
    font-weight: 500;
    letter-spacing: -0.07em;
    line-height: 0.95;
}

.contact-inner > p {
    max-width: 41rem;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.button-light {
    color: var(--ink);
    background: #fff;
}

.button-light:hover {
    background: var(--cyan);
    box-shadow: 0 1rem 3rem rgba(20, 229, 234, 0.14);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition:
        color 250ms ease,
        border-color 250ms ease;
}

.contact-email:hover {
    color: #fff;
    border-color: var(--cyan);
}

.contact-foot {
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: clamp(7rem, 12vw, 11rem);
    margin-right: auto;
    margin-left: auto;
    padding: 0.85rem 1.15rem;
    color: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    font-style: normal;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.contact-foot a {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-foot a:hover {
    color: var(--cyan);
}

.contact-foot a::before {
    content: "";
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    margin-right: 1.2rem;
    vertical-align: middle;
    background: var(--cyan);
    border-radius: 50%;
}

.site-footer {
    padding: clamp(5rem, 8vw, 8rem) 0 2rem;
    color: var(--dark-text);
    overflow: hidden;
    background:
        radial-gradient(circle at 94% 12%, rgba(139, 92, 255, 0.09), transparent 24%),
        linear-gradient(145deg, #f7f6f2, #eeede9);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 0.55fr 0.86fr 1fr;
    align-items: start;
    gap: clamp(2rem, 4vw, 4.5rem);
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

.footer-brand {
    width: 12.5rem;
}

.site-footer .brand img {
    filter: none;
    opacity: 1;
}

.footer-identity > p {
    max-width: 30rem;
    margin: 1.5rem 0 0;
    color: var(--dark-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    color: rgba(17, 17, 25, 0.44);
    font-family: "Space Mono", monospace;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-status i {
    width: 0.42rem;
    height: 0.42rem;
    background: #26c96c;
    border-radius: 50%;
    box-shadow: 0 0 0.7rem rgba(38, 201, 108, 0.35);
}

.footer-label {
    margin: 0 0 1.7rem;
    color: rgba(17, 17, 25, 0.4);
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-column nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column nav {
    gap: 0.75rem;
}

.footer-column nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--dark-text);
    font-size: 0.82rem;
    font-weight: 650;
    text-decoration: none;
    transition:
        color 250ms ease,
        transform 300ms var(--ease-out);
}

.footer-column nav a span {
    color: rgba(17, 17, 25, 0.28);
    font-family: "Space Mono", monospace;
    font-size: 0.5rem;
}

.footer-column nav a:hover {
    color: #5f43a5;
    transform: translateX(0.25rem);
}

.footer-contact {
    gap: 0.7rem;
}

.footer-contact .footer-label {
    margin-bottom: 1.7rem;
}

.footer-contact a {
    color: var(--dark-text);
    font-size: 0.78rem;
    font-weight: 650;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #5f43a5;
}

.footer-contact > span {
    max-width: 13rem;
    margin-top: 0.5rem;
    color: var(--dark-muted);
    font-size: 0.72rem;
}

.footer-project {
    padding-left: clamp(1.5rem, 3vw, 3rem);
    border-left: 1px solid var(--dark-line);
}

.footer-project h2 {
    max-width: 13ch;
    margin: 0 0 2rem;
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.footer-project-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    color: var(--dark-text);
    border-top: 1px solid var(--dark-line);
    border-bottom: 1px solid var(--dark-line);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 250ms ease,
        border-color 250ms ease;
}

.footer-project-link span {
    display: grid;
    width: 1.9rem;
    height: 1.9rem;
    place-items: center;
    border: 1px solid var(--dark-line);
    border-radius: 50%;
    transition:
        color 250ms ease,
        background 250ms ease,
        transform 300ms var(--ease-out);
}

.footer-project-link:hover {
    color: #5f43a5;
    border-color: rgba(95, 67, 165, 0.35);
}

.footer-project-link:hover span {
    color: #fff;
    background: #5f43a5;
    transform: rotate(45deg);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-line);
}

.footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(17, 17, 25, 0.47);
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
}

.footer-bottom a {
    color: var(--dark-text);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #5f43a5;
}

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0 0.95rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(7, 7, 12, 0.72);
    box-shadow: 0 0.8rem 2.5rem rgba(0, 0, 0, 0.24);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(16px);
    transition:
        color 250ms ease,
        background 250ms ease,
        transform 250ms var(--ease-out);
}

.whatsapp-float:hover {
    color: var(--ink);
    background: var(--cyan);
    transform: translateY(-3px);
}

.whatsapp-float i {
    font-style: normal;
}

.whatsapp-pulse {
    position: relative;
    width: 0.48rem;
    height: 0.48rem;
    background: #3fe47a;
    border-radius: 50%;
}

.whatsapp-pulse::before {
    content: "";
    position: absolute;
    inset: -0.28rem;
    border: 1px solid rgba(63, 228, 122, 0.55);
    border-radius: 50%;
    animation: status-pulse 2.4s ease-out infinite;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(2.5rem);
    transition:
        opacity 900ms var(--ease-out),
        transform 900ms var(--ease-out);
}

.js [data-reveal][data-delay="1"] {
    transition-delay: 100ms;
}

.js [data-reveal][data-delay="2"] {
    transition-delay: 180ms;
}

.js [data-reveal][data-delay="3"] {
    transition-delay: 260ms;
}

.js [data-reveal][data-delay="4"] {
    transition-delay: 340ms;
}

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

@media (max-width: 1120px) {
    :root {
        --shell: min(100% - 2.5rem, 75rem);
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.72fr);
        gap: 1rem;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 5.8vw, 5.4rem);
    }

    .hero-visual {
        width: min(40vw, 32rem);
    }

    .hero-proof > div {
        min-width: 0;
    }

    .manifesto-grid {
        grid-template-columns: 1.2fr 0.6fr;
        gap: 4rem;
    }

    .method-layout {
        gap: 5rem;
    }
}

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

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

    .header-inner {
        display: flex;
        justify-content: space-between;
    }

    .brand {
        width: 9.25rem;
    }

    .brand-header {
        flex-basis: 9.25rem;
        width: 9.25rem;
    }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: grid;
        width: 2.8rem;
        height: 2.8rem;
        place-content: center;
        gap: 0.35rem;
        padding: 0;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
    }

    .menu-toggle span {
        display: block;
        width: 1rem;
        height: 1px;
        background: currentColor;
        transition:
            transform 300ms var(--ease-out),
            opacity 300ms ease;
    }

    .menu-toggle.is-open span:first-child {
        transform: translateY(0.2rem) rotate(45deg);
    }

    .menu-toggle.is-open span:last-child {
        transform: translateY(-0.2rem) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 90;
        display: grid;
        place-items: center;
        visibility: hidden;
        opacity: 0;
        background:
            radial-gradient(circle at 70% 25%, rgba(139, 92, 255, 0.2), transparent 34%),
            rgba(7, 7, 12, 0.97);
        transition:
            visibility 0s linear 450ms,
            opacity 450ms ease;
    }

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

    .mobile-menu nav {
        display: flex;
        width: min(80vw, 30rem);
        flex-direction: column;
    }

    .mobile-menu a {
        display: flex;
        align-items: baseline;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
        font-size: clamp(1.5rem, 6vw, 2.4rem);
        font-weight: 500;
        letter-spacing: -0.04em;
        text-decoration: none;
        transform: translateY(1rem);
        opacity: 0;
        transition:
            opacity 450ms ease,
            transform 450ms var(--ease-out);
    }

    .mobile-menu.is-open a {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu.is-open a:nth-child(2) { transition-delay: 70ms; }
    .mobile-menu.is-open a:nth-child(3) { transition-delay: 140ms; }
    .mobile-menu.is-open a:nth-child(4) { transition-delay: 210ms; }

    .mobile-menu a span {
        color: var(--cyan);
        font-family: "Space Mono", monospace;
        font-size: 0.6rem;
    }

    .hero {
        min-height: auto;
        padding-top: 8rem;
    }

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

    .hero-copy {
        text-align: center;
    }

    .hero h1,
    .hero-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        width: min(82vw, 35rem);
        margin: 2rem auto 0;
        justify-self: center;
    }

    .scroll-cue {
        display: none;
    }

    .manifesto-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .manifesto-copy {
        max-width: 36rem;
        margin-left: auto;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-heading > div:last-child {
        margin-left: 15%;
    }

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

    .service-card-featured {
        grid-column: span 2;
        grid-row: auto;
        min-height: 45rem;
    }

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

    .method-intro {
        position: static;
    }

    .method-intro h2 {
        max-width: 15ch;
    }

    .method-steps {
        width: 84%;
        margin-left: auto;
    }

    .quality-board {
        grid-template-columns: 1fr;
    }

    .quality-board article {
        grid-template-columns: 0.34fr 1fr;
        grid-template-rows: 1fr;
        align-items: end;
        min-height: 16rem;
        border-top: 1px solid var(--dark-line);
        border-left: 0;
    }

    .quality-board article:first-child {
        border-top: 0;
    }

    .regions-card {
        grid-template-columns: 0.7fr 1.3fr;
    }

    .region-network {
        width: 48vw;
        margin-left: -35%;
    }

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

    .faq-heading h2 {
        max-width: 17ch;
    }

    .footer-main {
        grid-template-columns: 1.15fr 0.85fr;
        row-gap: 4rem;
    }

    .footer-project {
        padding-left: 2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --shell: calc(100% - 2rem);
        --radius-md: 1.25rem;
    }

    .hero {
        padding: 7.5rem 0 4rem;
    }

    .hero-eyebrow {
        font-size: 0.56rem;
    }

    .hero h1 {
        max-width: 14ch;
        margin-top: 1.35rem;
        font-size: clamp(2.8rem, 13.5vw, 4.3rem);
    }

    .hero-lead {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.25rem;
    }

    .button {
        width: 100%;
        max-width: 22rem;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem 0;
        margin-top: 3.5rem;
        text-align: left;
    }

    .hero-proof > div {
        padding: 0 0 0 1rem;
    }

    .hero-proof > div:first-child {
        padding-left: 1rem;
        border-left: 1px solid var(--line);
    }

    .hero-proof > div:last-child {
        grid-column: span 2;
    }

    .hero-visual {
        width: min(100%, 31rem);
        margin-left: 0;
    }

    .float-card {
        width: 10.5rem;
        min-height: 5.75rem;
        padding: 0.8rem;
    }

    .float-card-top {
        right: 2%;
    }

    .float-card-bottom {
        left: 2%;
    }

    .code-fragment {
        display: none;
    }

    .manifesto,
    .services,
    .method,
    .quality {
        padding-top: 6rem;
    }

    .manifesto h2,
    .section-heading h2,
    .method-intro h2,
    .quality h2 {
        font-size: clamp(2.45rem, 12vw, 4rem);
    }

    .manifesto-grid {
        margin-top: 3.25rem;
    }

    .manifesto-copy {
        margin-left: 0;
    }

    .manifesto-signal {
        top: 11%;
        left: -8rem;
        opacity: 0.24;
    }

    .principles {
        grid-template-columns: 1fr;
        margin-top: 5rem;
    }

    .principles article {
        min-height: 0;
        padding: 1.7rem 0;
        border-top: 1px solid var(--dark-line);
        border-left: 0;
    }

    .principles article > span {
        margin-bottom: 1.8rem;
    }

    .section-heading > div:last-child {
        margin-left: 0;
    }

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

    .service-card,
    .service-card-featured {
        grid-column: auto;
        min-height: 30rem;
    }

    .service-card-featured {
        min-height: 39rem;
    }

    .service-visual {
        top: 15%;
        width: 86%;
        height: 40%;
    }

    .method-steps {
        width: 100%;
    }

    .method-step {
        grid-template-columns: 2.3rem 1fr;
        gap: 0.7rem;
        min-height: 0;
        margin: 0;
        padding: 3rem 0.75rem;
        opacity: 0.55;
    }

    .method-step.is-active {
        transform: translateX(0);
    }

    .quality h2 {
        margin-top: 3.25rem;
    }

    .quality-board article {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: 18rem;
    }

    .quality-mark {
        font-size: 5.5rem;
    }

    .capability-marquee {
        margin-left: -1rem;
    }

    .regions-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .regions-card::before {
        mask-image: linear-gradient(to bottom, #000, transparent 62%);
    }

    .region-network {
        width: 108vw;
        margin: -42% 0 -32% -12vw;
        opacity: 0.72;
    }

    .regions-content {
        padding: 3rem 1.25rem;
    }

    .regions-content h2 {
        margin-top: 2.5rem;
        font-size: clamp(2.35rem, 11vw, 3.6rem);
    }

    .faq-list summary {
        min-height: 5.5rem;
        font-size: 0.9rem;
    }

    .faq-list details > p {
        padding-right: 0;
    }

    .contact {
        min-height: 48rem;
        padding-top: 8rem;
    }

    .contact h2 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .contact-actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-foot {
        align-items: center;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 7rem;
        padding: 1rem 1.25rem;
        border-radius: 1.2rem;
        font-size: 0.72rem;
    }

    .contact-foot a {
        font-size: 0.82rem;
    }

    .contact-foot a::before {
        display: none;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .footer-brand {
        width: 11.5rem;
    }

    .footer-project {
        padding-top: 2.5rem;
        padding-left: 0;
        border-top: 1px solid var(--dark-line);
        border-left: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }

    .footer-bottom > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-bottom a {
        margin-top: 1rem;
    }

    .whatsapp-float {
        right: 0.85rem;
        bottom: 0.85rem;
    }

    .whatsapp-float span:nth-child(2) {
        display: none;
    }
}

@media (hover: none), (pointer: coarse) {
    .service-card {
        transform: none !important;
    }
}

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

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

    .parallax-layer,
    .parallax-scroll {
        transform: none !important;
    }

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