@import url("https://fonts.googleapis.com/css2?family=Martian+Mono:wght@200;300;400;500&display=swap");

:root {
    /* Paleta solicitada */
    --peach: #feb195;
    --coral: #f67280;
    --mauve: #c06c84;
    --plum: #6c5b7b;

    --paper: #fff8f4;
    --ink: #3f3349;
    --line: rgba(63, 51, 73, 0.42);
    --line-soft: rgba(63, 51, 73, 0.18);
    --vx: 70%;
    --vy: 36.7%;
    --mouse-x: 0px;
    --mouse-y: 0px;
    --mouse-x-inverse: 0px;
    --mouse-y-inverse: 0px;
    --hold: 0;
    --split: 54%;
}

* {
    box-sizing: border-box;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--peach);
    transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    display: grid;
    justify-items: center;
    gap: 22px;
    width: min(320px, 72vw);
}

.preloader__logo {
    width: clamp(120px, 18vw, 190px);
    height: auto;
    animation: preloader-pulse 1.5s ease-in-out infinite;
}

@keyframes preloader-pulse {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.08); opacity: 1; }
}

.preloader__mark {
    font-family: "Martian Mono", monospace;
    font-size: clamp(15px, 1.4vw, 22px);
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--paper);
}

.preloader__bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 248, 244, 0.28);
    overflow: hidden;
}

.preloader__fill {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--paper);
    transition: width 240ms ease;
}

.preloader__pct {
    font-family: "Martian Mono", monospace;
    font-size: clamp(8px, 0.6vw, 11px);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--paper);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    background: var(--peach);
}

body {
    overflow-x: hidden;
    color: var(--ink);
    font-family: "Martian Mono", monospace;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

button,
a {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

.experience {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    isolation: isolate;
    cursor: none;
    background: var(--peach);
    user-select: none;
}

.space,
.plane,
.geometry,
.mockup-grid,
.mockup-frame,
.grain,
.vignette {
    position: absolute;
    inset: 0;
}

.space {
    overflow: hidden;
    background:
            radial-gradient(circle at var(--vx) var(--vy), rgba(255, 248, 244, 0.36), transparent 24%),
            linear-gradient(112deg, var(--peach) 0%, var(--coral) 58%, var(--mauve) 100%);
}

.plane {
    will-change: clip-path, filter, background-position;
    transition: background 700ms ease, filter 700ms ease;
    backface-visibility: hidden;
}

.plane--left {
    clip-path: polygon(0 0, var(--vx) var(--vy), 0 91%);
    background:
            linear-gradient(118deg, rgba(255, 248, 244, 0.24), transparent 62%),
            linear-gradient(90deg, #ffc2aa, var(--peach) 72%);
    background-position: calc(50% + var(--mouse-x-inverse)) calc(50% + var(--mouse-y-inverse));
}

.plane--top {
    clip-path: polygon(0 0, 86.5% 0, var(--vx) var(--vy));
    background:
            radial-gradient(circle at 45% 0%, rgba(255,255,255,0.24), transparent 47%),
            linear-gradient(165deg, #ffd1bd 0%, var(--peach) 54%, var(--coral) 100%);
    background-position: calc(50% + var(--mouse-x)) calc(50% + var(--mouse-y-inverse));
}

.plane--bottom {
    clip-path: polygon(0 91%, var(--vx) var(--vy), 71% 100%, 0 100%);
    background:
            linear-gradient(15deg, rgba(255,255,255,0.18), transparent 62%),
            linear-gradient(90deg, var(--coral), var(--mauve) 80%);
    background-position: calc(50% + var(--mouse-x-inverse)) calc(50% + var(--mouse-y));
}

.plane--right {
    clip-path: polygon(var(--vx) var(--vy), 86.5% 0, 100% 0, 100% 100%, 71% 100%);
    background:
            linear-gradient(105deg, rgba(255,255,255,0.08), transparent 32%),
            linear-gradient(90deg, var(--mauve) 0%, var(--plum) 100%);
    background-position: calc(50% + var(--mouse-x)) calc(50% + var(--mouse-y));
}

.plane--center {
    clip-path: polygon(var(--vx) var(--vy), 71% 100%, 100% 100%, 100% 36%);
    opacity: 0.22;
    background: linear-gradient(100deg, transparent, rgba(63, 51, 73, 0.56));
}

.mockup-grid {
    z-index: 2;
    opacity: 0.2;
    pointer-events: none;
    background-image:
            linear-gradient(var(--line-soft) 1px, transparent 1px),
            linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at var(--vx) var(--vy), black 0, transparent 67%);
}

.mockup-frame {
    z-index: 3;
    inset: clamp(14px, 2vw, 34px);
    border: 1px dashed rgba(63, 51, 73, 0.3);
    pointer-events: none;
}

.mockup-frame__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(63, 51, 73, 0.62);
}

.mockup-frame__corner--tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.mockup-frame__corner--tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.mockup-frame__corner--bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.mockup-frame__corner--br {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid;
    border-bottom: 2px solid;
}

.geometry {
    z-index: 4;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
    filter: drop-shadow(0 0 1px rgba(63, 51, 73, 0.18));
}

.geometry__line {
    stroke: var(--line);
    stroke-width: 1;
    stroke-dasharray: 11 10;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    animation: dashFlow 14s linear infinite;
}

.geometry__line--soft {
    opacity: 0.54;
    stroke-dasharray: 4 12;
}

.geometry__crosshair {
    stroke: rgba(63, 51, 73, 0.72);
    stroke-width: 1;
    stroke-dasharray: 3 3;
    vector-effect: non-scaling-stroke;
}

.mockup-label {
    position: absolute;
    z-index: 5;
    color: rgba(63, 51, 73, 0.66);
    font-size: clamp(7px, 0.48vw, 10px);
    font-weight: 400;
    letter-spacing: 0.18em;
    pointer-events: none;
}

.mockup-label--viewport {
    top: clamp(50px, 7.2vh, 82px);
    right: clamp(26px, 3.4vw, 70px);
}

.mockup-label--axis {
    left: clamp(26px, 3.4vw, 70px);
    bottom: clamp(72px, 9vh, 104px);
}

.mockup-label--node {
    left: calc(var(--vx) + 16px);
    top: calc(var(--vy) + 12px);
    transform: translateY(-50%);
}

.matrix {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    opacity: 0.34;
}

.grain {
    z-index: 6;
    pointer-events: none;
    opacity: 0.1;
    mix-blend-mode: multiply;
    background-image:
            repeating-radial-gradient(circle at 15% 25%, rgba(63,51,73,0.12) 0 0.6px, transparent 0.8px 3px),
            repeating-radial-gradient(circle at 80% 70%, rgba(108,91,123,0.1) 0 0.5px, transparent 0.7px 4px);
    background-size: 7px 7px, 9px 9px;
    animation: grainShift 500ms steps(2, end) infinite;
}

.vignette {
    z-index: 7;
    pointer-events: none;
    background:
            radial-gradient(ellipse at center, transparent 42%, rgba(63,51,73,0.04) 74%, rgba(63,51,73,0.18) 100%),
            linear-gradient(90deg, rgba(63,51,73,0.05), transparent 18%, transparent 82%, rgba(63,51,73,0.12));
}

.topbar,
.footer,
.hero,
.cursor {
    position: absolute;
    z-index: 10;
}

.topbar {
    top: clamp(24px, 4.1vh, 48px);
    left: clamp(24px, 2.4vw, 52px);
    right: clamp(24px, 2.4vw, 52px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3.4vw, 68px);
    color: var(--ink);
    text-decoration: none;
}

.brand__mark {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 1.9vw, 42px);
    line-height: 1;
    letter-spacing: -0.07em;
}

.brand__label,
.status,
.footer,
.hold {
    font-size: clamp(8px, 0.55vw, 11px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.brand__label {
    opacity: 0.72;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.76;
}

.status__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(246, 114, 128, 0.16);
}

.hero {
    left: 50%;
    top: 51.5%;
    width: min(1240px, 88vw);
    transform: translate(-50%, -50%);
    text-align: center;
}

.hero__brand {
    display: none;
}

.experience[data-title-size="brand"] .hero__brand {
    display: grid;
    justify-items: center;
    gap: clamp(18px, 2.2vw, 34px);
}

.experience[data-title-size="brand"] .hero__link {
    display: none;
}

.hero__logo {
    display: block;
    width: clamp(159px, 24.6vw, 405px);
    aspect-ratio: 2205 / 886;
    background-color: #3f3449;
    -webkit-mask: url("./img/logo.png") center / contain no-repeat;
    mask: url("./img/logo.png") center / contain no-repeat;
    transition: background-color 120ms linear, opacity 620ms ease;
}

.hero__logo-stack {
    position: relative;
    display: inline-block;
    width: clamp(159px, 24.6vw, 405px);
}

.hero__logo-alt {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    filter: brightness(0) invert(1);
    transition: opacity 620ms ease, transform 620ms ease;
    will-change: opacity, transform;
}

.hero__slogan {
    margin: 0;
    font-family: "Martian Mono", monospace;
    font-size: clamp(7px, 0.68vw, 10px);
    font-weight: 400;
    letter-spacing: 0.16em;
    color: var(--paper);
    text-align: center;
    text-wrap: balance;
}

.hero__lang {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--paper);
    font-family: "Martian Mono", monospace;
    font-size: clamp(8px, 0.7vw, 11px);
    font-weight: 500;
    letter-spacing: 0.24em;
}

.hero__lang-btn {
    padding: 3px 6px;
    background: transparent;
    color: inherit;
    border: 0;
    letter-spacing: inherit;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 160ms ease;
}

.hero__lang-btn:hover {
    opacity: 0.85;
}

.hero__lang-btn.is-active {
    opacity: 1;
    box-shadow: 0 1.5px 0 currentColor;
}

.hero__lang-sep {
    opacity: 0.5;
}
text-decoration: none;
cursor: none;
outline: none;
}

.hero__link.is-disabled {
    pointer-events: none;
}

.hero__title {
    position: relative;
    width: 100%;
    min-height: clamp(108px, 13vw, 242px);
    margin: 0;
}

.hero__word {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.07em;
    white-space: pre-line;
    text-wrap: balance;
    transition: opacity 350ms ease, transform 600ms cubic-bezier(.2,.7,.2,1), filter 220ms ease;
}

.experience[data-title-size="brand"] .hero__word {
    font-size: clamp(82px, 9.5vw, 172px);
}

.experience[data-title-size="short"] .hero__word {
    font-size: clamp(60px, 7.8vw, 140px);
}

.experience[data-title-size="medium"] .hero__word {
    font-size: clamp(48px, 6.2vw, 108px);
}

.experience[data-title-size="long"] .hero__word {
    font-size: clamp(38px, 4.9vw, 86px);
}

.experience[data-title-size="xlong"] .hero__word {
    font-size: clamp(30px, 3.9vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.hero__word--outline {
    color: transparent;
    -webkit-text-stroke: clamp(1px, 0.09vw, 1.7px) rgba(63, 51, 73, 0.98);
    text-stroke: clamp(1px, 0.09vw, 1.7px) rgba(63, 51, 73, 0.98);
}

.hero__word--fill {
    color: var(--paper);
    clip-path: polygon(0 0, var(--split) 0, calc(var(--split) - 17%) 100%, 0 100%);
    filter: drop-shadow(0 0 0 rgba(63,51,73,0));
}

.hero__action {
    display: inline-flex;
    margin-top: clamp(16px, 2.6vh, 28px);
    padding: 8px 12px;
    border: 1px dashed rgba(63, 51, 73, 0.52);
    color: rgba(63, 51, 73, 0.74);
    font-size: clamp(7px, 0.5vw, 10px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero__link:not(.is-disabled):hover .hero__action,
.hero__link:not(.is-disabled):focus-visible .hero__action {
    color: var(--paper);
    background: var(--plum);
    transform: translateY(-2px);
}

.hero__link:not(.is-disabled):hover .hero__word,
.hero__link:not(.is-disabled):focus-visible .hero__word {
    filter: drop-shadow(5px 5px 0 rgba(63, 51, 73, 0.12));
}

.footer {
    left: clamp(28px, 2.4vw, 52px);
    right: clamp(28px, 2.4vw, 52px);
    bottom: clamp(26px, 3.7vh, 44px);
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.footer__counter {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    opacity: 0.85;
}

.scene-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: none;
    opacity: 0.7;
    transition: opacity 160ms ease, transform 160ms ease;
}

.scene-nav:hover {
    opacity: 1;
    transform: scale(1.25);
}

.hold {
    position: relative;
    min-width: 230px;
    padding: 0 18px 2px;
    display: grid;
    gap: 4px;
    place-items: center;
    color: var(--paper);
    text-shadow: 0 1px 10px rgba(63, 51, 73, 0.45);
    background: transparent;
    cursor: none;
}

.hold__label,
.hold__sub {
    position: relative;
    z-index: 2;
    display: inline-block;
    transform-origin: center;
    animation: holdZoom 2.6s ease-in-out infinite;
}

.hold__sub {
    font-size: 0.82em;
    opacity: 0.82;
}

.hold__progress {
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: calc(100% * var(--hold));
    max-width: 220px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--paper);
    opacity: calc(0.42 + var(--hold) * 0.58);
}

.cursor {
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 1px dashed rgba(63, 51, 73, 0.86);
    transform: translate(-50%, -50%) rotate(45deg);
    pointer-events: none;
    transition: width 180ms ease, height 180ms ease, border-color 180ms ease;
    will-change: left, top;
}

.cursor span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--plum);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.experience.is-title-hovered .cursor,
.experience.is-holding .cursor {
    width: 36px;
    height: 36px;
    border-color: var(--paper);
}

.experience.is-holding .hero__word--fill {
    filter: drop-shadow(0 0 18px rgba(63, 51, 73, 0.22));
}

.experience.is-switching .hero__word,
.experience.is-switching .hero__action {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
}

.experience[data-scene="1"] {
    --split: 61%;
}

.experience[data-scene="2"] {
    --split: 46%;
}

.experience[data-scene="3"] {
    --split: 66%;
}

.experience[data-scene="4"] {
    --split: 51%;
}

.experience[data-scene="5"] {
    --split: 57%;
}

.experience[data-scene="1"] .plane--left {
    filter: saturate(1.05) brightness(1.02);
}

.experience[data-scene="2"] .plane--top {
    filter: saturate(1.14) brightness(1.02);
}

.experience[data-scene="3"] .plane--bottom {
    filter: saturate(1.14) brightness(0.96);
}

.experience[data-scene="4"] .plane--right {
    filter: saturate(1.1) brightness(1.02);
}

.experience[data-scene="5"] .plane--center {
    opacity: 0.42;
}

.service-section,
.process {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(74px, 8vw, 150px) clamp(28px, 6vw, 130px);
    overflow: hidden;
    color: var(--ink);
    background: var(--peach);
    border-top: 1px dashed rgba(63, 51, 73, 0.3);
}

.service-section::before,
.service-section::after,
.process::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.service-section::before,
.process::before {
    inset: 26px;
    border: 1px dashed rgba(63, 51, 73, 0.22);
}

.service-section::after {
    width: 46vw;
    height: 46vw;
    right: -16vw;
    top: -20vw;
    border: 1px dashed rgba(63, 51, 73, 0.2);
    transform: rotate(34deg);
}

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

.service-section--mauve {
    color: var(--paper);
    background: var(--mauve);
}

.service-section--mauve::before,
.service-section--mauve::after,
.service-section--plum::before,
.service-section--plum::after {
    border-color: rgba(255, 248, 244, 0.28);
}

.service-section--plum {
    color: var(--paper);
    background: var(--plum);
}

.service-section--contact {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 0;
    background: linear-gradient(120deg, var(--peach), var(--coral) 48%, var(--mauve));
}

.service-section--contact::before,
.service-section--contact::after {
    display: none;
}

.service-section--contact .service-section__inner {
    flex: 1 0 auto;
    width: 100%;
    margin: 0 auto;
    padding: clamp(74px, 8vw, 150px) clamp(28px, 6vw, 130px) clamp(56px, 7vw, 100px);
}

.service-section__inner,
.process__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1360px;
}

.service-section__head {
    display: flex;
    align-items: baseline;
    gap: clamp(18px, 2vw, 34px);
    padding-bottom: clamp(22px, 3vh, 40px);
    margin-bottom: clamp(30px, 4vh, 56px);
    border-bottom: 1px dashed currentColor;
}

.service-section__number {
    font-size: clamp(30px, 3.4vw, 58px);
    font-weight: 200;
    letter-spacing: -0.07em;
    opacity: 0.62;
}

.service-section__eyebrow {
    margin: 0;
    font-size: clamp(9px, 0.75vw, 13px);
    font-weight: 500;
    letter-spacing: 0.24em;
}

.service-section__body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(36px, 5vw, 96px);
}

.service-section--reverse .service-section__body {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.service-section--reverse .service-media {
    order: -1;
}

.service-section--reverse .service-section__text {
    text-align: right;
}

.service-section--reverse .service-section__text > p {
    margin-left: auto;
}

.service-section--reverse .service-cta {
    margin-left: auto;
}

.service-section h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 92px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.07em;
    text-wrap: balance;
}

.service-section__text > p {
    max-width: 640px;
    margin: clamp(22px, 3vh, 34px) 0 0;
    font-size: clamp(14px, 1.05vw, 19px);
    font-weight: 300;
    line-height: 1.75;
    opacity: 0.92;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: clamp(26px, 3.4vh, 40px) 0 0;
    padding: 0;
    list-style: none;
}

.tech-list li {
    padding: 7px 11px;
    border: 1px dashed currentColor;
    font-size: clamp(8px, 0.62vw, 11px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.82;
    transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.tech-list li:hover {
    opacity: 1;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: clamp(30px, 4vh, 46px);
    padding: 14px 20px;
    border: 1px solid currentColor;
    color: inherit;
    font-size: clamp(9px, 0.7vw, 12px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-cta__arrow {
    transition: transform 220ms ease;
}

.service-cta:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-2px);
}

.service-section--mauve .service-cta:hover,
.service-section--plum .service-cta:hover {
    background: var(--paper);
    color: var(--ink);
}

.service-cta:hover .service-cta__arrow {
    transform: translateX(5px);
}

.service-media {
    position: relative;
}

.edge-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.edge-lines line {
    stroke: #ffffff;
    stroke-width: 1;
    stroke-dasharray: 11 10;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    opacity: 0.28;
}

.service-shot {
    display: block;
    width: 100%;
    height: auto;
    max-height: 74vh;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(63, 51, 73, 0.12));
}

.service-shot--sm {
    width: 80%;
    max-height: 59vh;
    margin-inline: auto;
}

.service-shot--md {
    width: 90%;
    max-height: 66vh;
    margin-inline: auto;
}

.mock-shot {
    position: relative;
    aspect-ratio: 4 / 3;
    border: 1px dashed currentColor;
    background: rgba(255, 248, 244, 0.06);
    overflow: hidden;
}

.mock-shot__stripes {
    position: absolute;
    inset: 14px;
    opacity: 0.5;
    background-image: repeating-linear-gradient(
            -45deg,
            currentColor 0 1px,
            transparent 1px 12px
    );
}

.mock-shot__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: clamp(7px, 0.5vw, 10px);
    font-weight: 500;
    letter-spacing: 0.18em;
    opacity: 0.72;
}

.mock-shot__hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    font-size: clamp(7px, 0.5vw, 10px);
    font-weight: 500;
    letter-spacing: 0.18em;
    opacity: 0.7;
}

.mock-shot__img {
    position: absolute;
    inset: clamp(14px, 2vw, 30px);
    width: calc(100% - clamp(28px, 4vw, 60px));
    height: calc(100% - clamp(28px, 4vw, 60px));
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(63, 51, 73, 0.18));
}

/* Procesos */
.process {
    background: var(--paper);
    color: var(--ink);
    position: relative;
    overflow: hidden;
}

.process__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    place-items: start end;
    pointer-events: none;
}

.process__bg img {
    width: min(880px, 66%);
    height: auto;
    margin: clamp(-20px, -1vw, 0px) clamp(-30px, -2vw, 0px) 0 0;
    filter: invert(1);
    opacity: 0.16;
}

.process__inner {
    position: relative;
    z-index: 1;
}

.process__head {
    max-width: 720px;
    margin-bottom: clamp(40px, 6vh, 80px);
}

.process__head h2 {
    margin: 18px 0 0;
    font-size: clamp(34px, 4.4vw, 78px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.process__lead {
    margin: clamp(20px, 3vh, 30px) 0 0;
    font-size: clamp(14px, 1.05vw, 19px);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.86;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px dashed rgba(63, 51, 73, 0.3);
}

.stat {
    position: relative;
    display: grid;
    gap: clamp(12px, 1.4vh, 20px);
    padding: clamp(34px, 3.4vw, 60px) clamp(20px, 1.8vw, 34px);
    border-left: 1px dashed rgba(63, 51, 73, 0.3);
}

.stat:first-child {
    border-left: 0;
}

.stat__num {
    font-size: clamp(52px, 6.4vw, 116px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
    color: var(--paper);
    -webkit-text-stroke: clamp(1.4px, 0.15vw, 2.4px) var(--ink);
    text-stroke: clamp(1.4px, 0.15vw, 2.4px) var(--ink);
}

.stat__label {
    position: relative;
    z-index: 2;
    font-size: clamp(9px, 0.7vw, 12px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.68;
}

/* Contacto */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
    gap: clamp(40px, 5vw, 96px);
}

.contact-intro {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-intro h2 {
    margin: 0;
    font-size: clamp(38px, 4.4vw, 74px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.07em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.contact-intro > p {
    max-width: 460px;
    margin: clamp(22px, 3vh, 32px) 0 0;
    font-size: clamp(14px, 1.05vw, 19px);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.92;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: clamp(30px, 4vh, 44px) 0 0;
}

.contact-map {
    position: relative;
    margin: clamp(30px, 4vh, 44px) 0 0;
    flex: 1 1 auto;
    min-height: clamp(240px, 34vh, 360px);
    border: 1px dashed rgba(63, 51, 73, 0.4);
    overflow: hidden;
}

.contact-map__frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.25) sepia(0.55) hue-rotate(302deg) saturate(1.55) contrast(0.96) brightness(1.02);
}

.contact-map__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            linear-gradient(135deg, rgba(240, 138, 130, 0.28), rgba(93, 71, 96, 0.32));
    mix-blend-mode: multiply;
}

.contact-map__pin {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: grid;
    gap: 3px;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(63, 51, 73, 0.32);
}

.contact-map__label {
    font-size: clamp(9px, 0.62vw, 12px);
    font-weight: 500;
    letter-spacing: 0.18em;
}

.contact-map__place {
    font-size: clamp(8px, 0.55vw, 10px);
    letter-spacing: 0.12em;
    opacity: 0.72;
}

.contact-back {
    display: flex;
    justify-content: center;
    margin-top: clamp(40px, 5vh, 68px);
}

.contact-back .service-cta {
    margin-top: 0;
}

.channel {
    display: grid;
    gap: 5px;
    padding: 14px 18px;
    border: 1px dashed currentColor;
    color: inherit;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.channel__label {
    font-size: clamp(7px, 0.5vw, 10px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
}

.channel__value {
    font-size: clamp(13px, 1vw, 17px);
    font-weight: 400;
}

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

.channel--wa:hover {
    background: var(--paper);
    color: var(--ink);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: clamp(28px, 3.6vh, 40px) 0 0;
    padding: 0;
    list-style: none;
}

.socials a {
    color: inherit;
    font-size: clamp(8px, 0.58vw, 11px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px dashed currentColor;
    opacity: 0.82;
    transition: opacity 160ms ease;
}

.socials a:hover {
    opacity: 1;
}

.contact-form {
    display: grid;
    gap: clamp(16px, 2vh, 22px);
    padding: clamp(26px, 2.6vw, 44px);
    border: 1px dashed currentColor;
    background: rgba(255, 248, 244, 0.14);
    backdrop-filter: blur(2px);
}

.field {
    display: grid;
    gap: 8px;
    position: relative;
}

.field label {
    font-size: clamp(8px, 0.55vw, 11px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.82;
}

.field__opt {
    opacity: 0.6;
}

.field__counter {
    justify-self: end;
    font-size: clamp(8px, 0.55vw, 11px);
    font-weight: 500;
    letter-spacing: 0.12em;
    opacity: 0.6;
}

.field-error {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 9px;
    max-width: 100%;
    padding: 9px 13px;
    background: var(--ink);
    color: var(--paper);
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
    box-shadow: 0 10px 26px rgba(63, 51, 73, 0.3);
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 170ms ease, transform 170ms ease;
}

.field-error::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    background: var(--coral);
    color: var(--paper);
    font-weight: 600;
    font-size: 11px;
}

.field-error::after {
    content: "";
    position: absolute;
    left: 18px;
    top: -5px;
    width: 10px;
    height: 10px;
    background: var(--ink);
    transform: rotate(45deg);
}

.field.has-error .field-error {
    opacity: 1;
    transform: translateY(0);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--coral);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(63, 51, 73, 0.34);
    background: rgba(255, 248, 244, 0.55);
    color: var(--ink);
    font-family: inherit;
    font-size: clamp(13px, 0.95vw, 16px);
    font-weight: 300;
    border-radius: 0;
    transition: border-color 160ms ease, background 160ms ease;
}

.field textarea {
    resize: vertical;
    min-height: 84px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(63, 51, 73, 0.5);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--ink);
    background: var(--paper);
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    padding: 16px 20px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    font-size: clamp(9px, 0.7vw, 12px);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-submit:hover {
    background: transparent;
    color: var(--ink);
    transform: translateY(-2px);
}

.contact-submit:hover .service-cta__arrow {
    transform: translateX(5px);
}

.contact-form__note {
    margin: 0;
    font-size: clamp(9px, 0.62vw, 11px);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.5;
    opacity: 0.7;
}

.service-section__back {
    position: absolute;
    right: clamp(30px, 4vw, 74px);
    bottom: clamp(30px, 4vw, 60px);
    z-index: 3;
    padding-bottom: 5px;
    border-bottom: 1px dashed currentColor;
    font-size: clamp(8px, 0.6vw, 11px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-decoration: none;
}

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

/* Footer del sitio */
.site-footer {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    color: var(--paper);
    background: var(--ink);
    padding: clamp(32px, 4vw, 56px) clamp(28px, 6vw, 130px) clamp(20px, 2vw, 30px);
    border-top: 1px dashed rgba(255, 248, 244, 0.3);
}

.footer-socials {
    display: grid;
    gap: 12px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--paper);
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 300;
    text-decoration: none;
    opacity: 0.82;
    transition: opacity 160ms ease;
}

.footer-social:hover {
    opacity: 1;
}

.footer-social img {
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 4px;
    background: var(--paper);
    padding: 2px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 72px);
    max-width: 1360px;
    margin: 0 auto;
    padding-bottom: clamp(20px, 2.4vw, 34px);
}

.site-footer__logo {
    display: block;
    width: clamp(72px, 8vw, 120px);
    height: auto;
    margin-bottom: clamp(12px, 1.2vw, 18px);
}

.site-footer__mark {
    font-size: clamp(15px, 1.3vw, 22px);
    font-weight: 500;
    letter-spacing: 0.14em;
}

.site-footer__brand p {
    max-width: 340px;
    margin: 18px 0 0;
    font-size: clamp(12px, 0.9vw, 15px);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.72;
}

.site-footer__col {
    display: grid;
    align-content: start;
    gap: 12px;
    padding-top: clamp(43px, 4.6vw, 69px);
}

.site-footer__col-title {
    margin-bottom: 4px;
    font-size: clamp(8px, 0.55vw, 11px);
    font-weight: 500;
    letter-spacing: 0.2em;
    opacity: 0.6;
}

.site-footer__col a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--paper);
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 300;
    text-decoration: none;
    opacity: 0.82;
    transition: opacity 160ms ease;
}

.foot-ico {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
}

.site-footer__col a:hover {
    opacity: 1;
}

.site-footer__bottom {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    max-width: 1360px;
    margin: clamp(24px, 3vh, 34px) auto 0;
    padding-top: clamp(24px, 3vh, 34px);
    font-size: clamp(8px, 0.58vw, 11px);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
}

.site-footer__bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-top: 1px dashed rgba(255, 248, 244, 0.24);
}

.site-footer__bottom a {
    color: var(--paper);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 160ms ease;
}

.site-footer__bottom a:hover {
    opacity: 1;
}

@keyframes dashFlow {
    to { stroke-dashoffset: -84; }
}

@keyframes holdZoom {
    0%, 62%, 100% { transform: scale(1); }
    80% { transform: scale(1.22); }
}

.tw-caret::after {
    content: "▍";
    margin-left: 0.02em;
    font-weight: 300;
    opacity: 0.85;
    animation: twBlink 0.7s steps(1, end) infinite;
}

@keyframes twBlink {
    0%, 50% { opacity: 0.85; }
    50.01%, 100% { opacity: 0; }
}

[data-typewriter] {
    min-height: 1em;
}

@keyframes grainShift {
    0% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(-1%, 1%, 0); }
    50% { transform: translate3d(1%, -1%, 0); }
    75% { transform: translate3d(1%, 1%, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@media (max-width: 760px) {
    .experience {
        min-height: 520px;
    }

    .brand {
        gap: 22px;
    }

    .brand__label,
    .mockup-label--axis,
    .mockup-label--node {
        display: none;
    }

    .hero {
        width: 92vw;
        top: 49%;
    }

    .hero__title {
        min-height: clamp(160px, 44vw, 260px);
    }

    .experience[data-title-size="brand"] .hero__word {
        font-size: clamp(64px, 19vw, 108px);
    }

    .experience[data-title-size="short"] .hero__word {
        font-size: clamp(48px, 14vw, 82px);
    }

    .experience[data-title-size="medium"] .hero__word {
        font-size: clamp(38px, 11vw, 64px);
    }

    .experience[data-title-size="long"] .hero__word {
        font-size: clamp(29px, 8.4vw, 49px);
    }

    .experience[data-title-size="xlong"] .hero__word {
        font-size: clamp(22px, 6.5vw, 38px);
        line-height: 1.08;
    }

    .status {
        font-size: 7px;
        letter-spacing: 0.1em;
    }

    .hold__label,
    .hold__sub {
        display: none;
    }

    .plane--left {
        clip-path: polygon(0 0, var(--vx) var(--vy), 0 86%);
    }

    .plane--bottom {
        clip-path: polygon(0 86%, var(--vx) var(--vy), 76% 100%, 0 100%);
    }

    .service-section,
    .process {
        align-content: center;
        padding: 84px 26px 120px;
    }

    .service-section::before,
    .process::before {
        inset: 14px;
    }

    .service-section__body,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .service-section h2 {
        font-size: clamp(34px, 11vw, 58px);
        line-height: 1.02;
    }

    .service-media {
        order: -1;
        max-width: 420px;
    }

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

    .stat {
        border-left: 1px dashed rgba(63, 51, 73, 0.3);
        border-top: 1px dashed rgba(63, 51, 73, 0.3);
    }

    .stat:first-child,
    .stat:nth-child(2) {
        border-top: 0;
    }

    .stat:nth-child(odd) {
        border-left: 0;
    }

    .contact-intro h2 {
        font-size: clamp(38px, 12vw, 60px);
    }

    .service-section__back {
        right: 24px;
        bottom: 30px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }

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

    .service-section h2 {
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    #inteligencia-artificial h2 {
        font-size: clamp(28px, 8.4vw, 46px);
    }

    .service-section--contact {
        padding: 0;
    }

    .site-footer {
        width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-left: 0;
        border-top: 1px dashed rgba(63, 51, 73, 0.3);
    }

    .stat:first-child {
        border-top: 0;
    }
}

@media (hover: none), (pointer: coarse) {
    .experience,
    .hold,
    .hero__link {
        cursor: default;
    }

    .cursor {
        display: none;
    }

    .hold {
        min-width: 190px;
        padding-block: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Ajustes de color / botones ───────────────────────────── */

/* Texto blanco (desktop) en estas secciones */
#desarrollo-software,
#inteligencia-artificial,
#saas {
    color: var(--paper);
}

/* Móvil: todos los textos de sección en blanco excepto ALLKU EN NÚMEROS */
@media (max-width: 760px) {
    .service-section {
        color: var(--paper);
    }

    .process {
        color: var(--ink);
    }
}
