:root {
    --bg: #020204;
    --bg-soft: #080810;
    --panel: rgba(12, 13, 24, 0.82);
    --panel-strong: rgba(18, 18, 32, 0.94);
    --line: rgba(255, 255, 255, 0.12);
    --line-bright: rgba(73, 161, 255, 0.42);
    --text: #f6f7ff;
    --muted: #b8bed4;
    --dim: #7c829b;
    --blue: #1bb4ff;
    --violet: #7445ff;
    --purple: #9b35ff;
    --success: #67e8c9;
    --shadow: 0 24px 80px rgba(26, 91, 255, 0.24);
    --max: 1280px;
    --parallax-bg-y: 0px;
    --parallax-bg-soft-y: 0px;
    --parallax-bg-x: 0px;
    --parallax-grid-y: 0px;
    --parallax-hero-image-y: 0px;
    --parallax-ring-y: 0px;
    --parallax-ring-x: 0px;
    --parallax-orbit-y: 0px;
    --parallax-orbit-x: 0px;
    --parallax-desktop-y: 0px;
    --parallax-desktop-x: 0px;
    --parallax-phone-y: 0px;
    --parallax-phone-x: 0px;
    --parallax-showcase-x: 0px;
    --parallax-showcase-y: 0px;
    --parallax-included-y: 0px;
    --parallax-cta-y: 0px;
    --backdrop-x: 0px;
    --backdrop-y: 0px;
    --purple-field-x: 0px;
    --purple-field-y: 0px;
    --blue-field-x: 0px;
    --blue-field-y: 0px;
    --gradient-rotate: 0deg;
    --page-purple-rgb: 103, 40, 255;
    --page-blue-rgb: 28, 160, 255;
    --page-purple-opacity: 0.28;
    --page-blue-opacity: 0.13;
    --showcase-blue-rgb: 28, 180, 255;
    --showcase-purple-rgb: 145, 49, 255;
    --showcase-blue-opacity: 0.1;
    --showcase-purple-opacity: 0.17;
    --included-glow-rgb: 90, 27, 212;
    --cta-glow-rgb: 46, 121, 255;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
    color: var(--text);
    background: var(--bg);
    font-family: "Sora", Arial, sans-serif;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.034) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    transform: translate3d(0, var(--parallax-grid-y), 0);
    z-index: 0;
}

.scroll-backdrop {
    position: fixed;
    inset: -22vh -16vw;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(
            calc(128deg + var(--gradient-rotate)),
            rgba(var(--page-blue-rgb), 0.035),
            transparent 36%,
            rgba(var(--page-purple-rgb), 0.07) 72%,
            transparent
        );
    transform: translate3d(var(--backdrop-x), var(--backdrop-y), 0) scale(1.08);
    transform-origin: center;
    will-change: transform;
}

.scroll-backdrop::before,
.scroll-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    will-change: transform, background;
}

.scroll-backdrop::before {
    background: radial-gradient(
        ellipse 48% 42% at 74% 24%,
        rgba(var(--page-purple-rgb), var(--page-purple-opacity)) 0%,
        rgba(var(--page-purple-rgb), 0.12) 40%,
        transparent 72%
    );
    transform: translate3d(var(--purple-field-x), var(--purple-field-y), 0);
}

.scroll-backdrop::after {
    background: radial-gradient(
        ellipse 44% 40% at 22% 62%,
        rgba(var(--page-blue-rgb), var(--page-blue-opacity)) 0%,
        rgba(var(--page-blue-rgb), 0.075) 42%,
        transparent 74%
    );
    transform: translate3d(var(--blue-field-x), var(--blue-field-y), 0);
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.top-scroll-blur {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 45;
    height: 170px;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(180deg, rgba(2, 2, 7, 0.82) 0%, rgba(2, 2, 7, 0.46) 48%, transparent 100%),
        radial-gradient(ellipse 54% 78% at 58% 0%, rgba(83, 95, 255, 0.12), transparent 70%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.92) 36%, rgba(0, 0, 0, 0.42) 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.92) 36%, rgba(0, 0, 0, 0.42) 72%, transparent 100%);
    transform: translateY(-22px);
    transition: opacity 220ms ease, transform 220ms ease;
}

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

main > section {
    position: relative;
}

main > section:not(.hero)::after {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    z-index: 0;
    width: 100vw;
    height: 200px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(var(--page-blue-rgb), 0.018) 34%,
        rgba(var(--page-purple-rgb), 0.04) 52%,
        transparent 100%
    );
    transform: translateX(-50%);
    filter: blur(10px);
}

main > section:not(.hero) > * {
    position: relative;
    z-index: 1;
}

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

img,
svg {
    display: block;
}

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

.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;
}

.section-shell {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(var(--max), calc(100% - 40px));
    margin: 18px auto 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(2, 2, 7, 0.58);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(2, 2, 7, 0.9);
    border-color: rgba(60, 152, 255, 0.24);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-orbit {
    position: relative;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(83, 130, 255, 0.72);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 50, 255, 0.26), rgba(0, 0, 0, 0.2) 62%);
    box-shadow:
        0 0 16px rgba(73, 136, 255, 0.54),
        inset 0 0 16px rgba(139, 58, 255, 0.26);
}

.brand-symbol {
    width: 34px;
    height: 26px;
    transform: translate(-1px, -3px);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.brand-name {
    color: #fff;
    font-size: 1.13rem;
    font-weight: 800;
    letter-spacing: 0.32em;
}

.brand-line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 130px 0 66px;
    background:
        radial-gradient(ellipse 56% 46% at 73% 37%, rgba(107, 55, 255, 0.22), transparent 66%),
        radial-gradient(ellipse 42% 34% at 78% 48%, rgba(28, 180, 255, 0.12), transparent 68%),
        linear-gradient(115deg, #020204 0%, #03050b 44%, #050417 74%, #020204 100%);
}

.hero-media,
.hero-overlay,
.hero-devices {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    opacity: 0.055;
    filter: saturate(0.72) contrast(1.02);
    transform: translate3d(0, var(--parallax-hero-image-y), 0) scale(1.05);
    transform-origin: center;
}

.hero-overlay {
    z-index: 1;
    background:
        radial-gradient(ellipse 46% 42% at 76% 41%, rgba(127, 59, 255, 0.2), transparent 68%),
        radial-gradient(ellipse 34% 32% at 71% 36%, rgba(28, 180, 255, 0.11), transparent 72%),
        linear-gradient(90deg, rgba(2, 2, 4, 0.99) 0%, rgba(2, 2, 4, 0.96) 40%, rgba(2, 2, 8, 0.7) 72%, rgba(2, 2, 7, 0.86) 100%),
        linear-gradient(0deg, rgba(2, 2, 4, 0.98) 0%, transparent 28%, transparent 70%, rgba(2, 2, 4, 0.86) 100%);
}

.hero-devices {
    z-index: 1;
    pointer-events: none;
}

.hero-devices::before,
.hero-devices::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-devices::before {
    right: max(4vw, calc((100vw - var(--max)) / 2 - 26px));
    top: 10vh;
    width: min(760px, 54vw);
    aspect-ratio: 1;
    border: 1px solid rgba(127, 59, 255, 0.18);
    opacity: 0.56;
    box-shadow:
        0 0 70px rgba(122, 67, 255, 0.16),
        inset 0 0 82px rgba(28, 180, 255, 0.045);
    transform: translate3d(var(--parallax-ring-x), var(--parallax-ring-y), 0);
}

.hero-devices::after {
    right: max(2vw, calc((100vw - var(--max)) / 2 - 80px));
    top: clamp(112px, 19vh, 210px);
    width: min(640px, 46vw);
    aspect-ratio: 1.02;
    background: radial-gradient(circle, rgba(127, 59, 255, 0.24), rgba(28, 180, 255, 0.1) 32%, transparent 70%);
    filter: blur(34px);
    opacity: 0.72;
    transform: translate3d(calc(var(--parallax-desktop-x) * 0.5), calc(var(--parallax-desktop-y) * 0.55), 0);
}

.hero-transition {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -180px;
    z-index: 2;
    height: clamp(340px, 46vh, 520px);
    pointer-events: none;
    background:
        radial-gradient(ellipse 46% 34% at 72% 46%, rgba(107, 55, 255, 0.11), transparent 72%),
        radial-gradient(ellipse 34% 28% at 68% 48%, rgba(28, 180, 255, 0.055), transparent 74%),
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(180deg, transparent 0%, rgba(2, 3, 8, 0.28) 20%, #020204 56%, rgba(3, 5, 12, 0.96) 100%);
    background-size: 100% 100%, 100% 100%, 72px 72px, 72px 72px, 100% 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.76) 20%, black 48%, rgba(0, 0, 0, 0.84) 82%, transparent 100%);
}

.desktop-device {
    position: absolute;
    right: max(20px, calc((100vw - var(--max)) / 2 - 70px));
    top: clamp(120px, 16vh, 180px);
    width: min(660px, 42vw);
    transform: translate3d(var(--parallax-desktop-x), var(--parallax-desktop-y), 0) perspective(1100px) rotateY(-9deg) rotateZ(-3deg);
    filter: drop-shadow(0 36px 70px rgba(20, 30, 90, 0.48));
}

.device-glass {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
        #080812;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 70px rgba(116, 55, 255, 0.12);
}

.desktop-screen {
    aspect-ratio: 16 / 9.6;
    border-radius: 20px;
    padding: 20px;
}

.desktop-stand {
    display: block;
    width: 28%;
    height: 78px;
    margin: -1px auto 0;
    background: linear-gradient(90deg, rgba(33, 34, 54, 0.1), rgba(119, 80, 255, 0.36), rgba(33, 34, 54, 0.1));
    clip-path: polygon(34% 0, 66% 0, 82% 100%, 18% 100%);
}

.phone-device {
    position: absolute;
    right: max(-10px, calc((100vw - var(--max)) / 2 - 112px));
    top: clamp(300px, 44vh, 430px);
    width: min(180px, 11.5vw);
    min-width: 132px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 34%),
        #050508;
    transform: translate3d(var(--parallax-phone-x), var(--parallax-phone-y), 0);
    box-shadow:
        0 28px 58px rgba(0, 0, 0, 0.54),
        0 0 56px rgba(105, 57, 255, 0.26);
}

.phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 42%;
    height: 14px;
    border-radius: 0 0 14px 14px;
    transform: translateX(-50%);
    background: #040406;
    z-index: 2;
}

.phone-screen {
    aspect-ratio: 9 / 18.6;
    border-radius: 24px;
}

.screen-track {
    --scroll-end: -36%;
    display: grid;
    gap: 14px;
    min-height: 166%;
    padding: 16px;
    transform: translate3d(0, 0, 0);
    animation: landingScroll 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    backface-visibility: hidden;
    will-change: transform;
}

.phone-track {
    --scroll-end: -48%;
    gap: 10px;
    min-height: 198%;
    padding: 18px 10px 10px;
    animation-duration: 14.25s;
    animation-delay: -2.7s;
}

.page-nav,
.mock-hero,
.mock-row,
.mock-proof,
.mock-form {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.page-nav {
    width: 100%;
    height: 16px;
    border-color: transparent;
    background:
        linear-gradient(90deg, rgba(167, 99, 255, 0.95) 0 12%, rgba(255, 255, 255, 0.14) 12% 30%, transparent 30% 62%, rgba(255, 255, 255, 0.14) 62% 72%, rgba(255, 255, 255, 0.14) 76% 86%, rgba(167, 99, 255, 0.9) 90% 100%);
}

.mock-hero {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 18px;
    min-height: 150px;
    padding: 20px;
    background:
        radial-gradient(circle at 80% 30%, rgba(153, 64, 255, 0.4), transparent 8rem),
        linear-gradient(135deg, rgba(128, 66, 255, 0.18), rgba(28, 180, 255, 0.055));
}

.mock-hero span,
.mock-hero strong,
.mock-hero em,
.mock-hero b,
.mock-row i,
.mock-proof span,
.mock-form span {
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.mock-hero span {
    grid-column: 1;
    width: 72%;
    height: 12px;
    background: rgba(186, 132, 255, 0.82);
}

.mock-hero strong {
    grid-column: 1;
    width: 94%;
    height: 52px;
    border-radius: 8px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.82) 0 10px, transparent 10px 17px),
        linear-gradient(rgba(255, 255, 255, 0.66) 0 10px, transparent 10px 17px),
        linear-gradient(rgba(255, 255, 255, 0.48) 0 10px, transparent 10px);
    background-size: 100% 17px, 76% 17px, 58% 17px;
    background-position: 0 0, 0 17px, 0 34px;
    background-repeat: no-repeat;
}

.mock-hero em {
    grid-column: 1;
    width: 35%;
    height: 22px;
    background: linear-gradient(90deg, #8f4dff, #c047ff);
}

.mock-hero b {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background:
        linear-gradient(140deg, rgba(167, 72, 255, 0.74), rgba(45, 109, 255, 0.34)),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.22) 49% 51%, transparent 52%);
}

.mock-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px;
}

.mock-row i {
    height: 76px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 18px 20px, rgba(174, 102, 255, 0.95) 0 11px, transparent 12px),
        linear-gradient(rgba(255, 255, 255, 0.24) 0 8px, transparent 8px 16px),
        linear-gradient(rgba(255, 255, 255, 0.14) 0 8px, transparent 8px);
    background-size: auto, 72% 16px, 52% 16px;
    background-position: 14px 8px, 44px 22px, 44px 42px;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.05);
}

.mock-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px;
}

.mock-proof span {
    height: 70px;
    border-radius: 8px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.22) 0 8px, transparent 8px 17px),
        linear-gradient(rgba(255, 255, 255, 0.14) 0 8px, transparent 8px);
    background-size: 76% 17px, 50% 17px;
    background-position: 16px 18px, 16px 38px;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.04);
}

.mock-form {
    display: grid;
    gap: 10px;
    padding: 16px;
    align-content: start;
}

.mock-form span {
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
}

.mock-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    min-width: 168px;
    height: 38px;
    margin-top: 4px;
    padding: 0 16px;
    border-radius: 999px;
    color: #04130a;
    background: linear-gradient(135deg, #42f48f, #24d366 58%, #17ad52);
    box-shadow:
        0 0 28px rgba(36, 211, 102, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mock-whatsapp::before {
    content: "";
    width: 17px;
    height: 17px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: inset -4px -4px 0 -3px currentColor;
}

.mock-whatsapp::after {
    content: "WhatsApp";
    color: #04130a;
    font-size: 0.76rem;
    font-weight: 900;
}

.mock-form .mock-whatsapp span {
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: rgba(4, 19, 10, 0.38);
}

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

.mock-hero.compact {
    min-height: 178px;
    padding: 14px;
}

.mock-hero.compact b {
    grid-column: 1;
    grid-row: auto;
    min-height: 72px;
}

.mock-row.compact {
    grid-template-columns: 1fr;
}

.mock-form.compact .mock-whatsapp {
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 34px;
    padding: 0 10px;
}

.mock-form.compact .mock-whatsapp::after {
    font-size: 0.62rem;
}

.mock-form.compact .mock-whatsapp span {
    display: none;
}

@keyframes landingScroll {
    0%,
    12% {
        transform: translate3d(0, 0, 0);
    }

    45%,
    57% {
        transform: translate3d(0, var(--scroll-end), 0);
    }

    90%,
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes phoneFloat {
    0%,
    100% {
        transform: rotateY(-24deg) rotateZ(3deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotateY(-19deg) rotateZ(2deg) translate3d(-8px, -12px, 0);
    }
}

@keyframes messageOneFlow {
    0%,
    58%,
    100% {
        opacity: 0;
        transform: translate3d(46px, 16px, 0) scale(0.94);
    }

    8%,
    50% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes messageTwoFlow {
    0%,
    13%,
    58%,
    100% {
        opacity: 0;
        transform: translate3d(46px, 16px, 0) scale(0.94);
    }

    22%,
    50% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes messageThreeFlow {
    0%,
    26%,
    58%,
    100% {
        opacity: 0;
        transform: translate3d(46px, 16px, 0) scale(0.94);
    }

    35%,
    50% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes successReveal {
    0%,
    55%,
    100% {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.92);
    }

    66%,
    88% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes checkDraw {
    0%,
    58% {
        stroke-dashoffset: 60;
    }

    68%,
    100% {
        stroke-dashoffset: 0;
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(720px, 0.95fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(28px, 4vw, 70px);
}

.hero-copy {
    max-width: 780px;
}

.hero .section-shell {
    width: min(1500px, calc(100% - 40px));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #dfe8ff;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--violet));
}

.hero h1,
.section-heading h2,
.showcase h2,
.cta-copy h2 {
    margin: 0;
    max-width: 900px;
    color: #fff;
    font-family: "Space Grotesk", "Sora", Arial, sans-serif;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(2.75rem, 3.55vw, 4rem);
    line-height: 1.04;
}

.hero-title-mark {
    padding-bottom: 0.04em;
    background-image: linear-gradient(90deg, #8c48ff 0%, #c445ff 48%, #ff5ecf 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.065em;
    background-position: 0 93%;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.title-accent {
    color: transparent;
    background: linear-gradient(90deg, #8c48ff 0%, #c445ff 48%, #ff5ecf 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.whatsapp-word {
    color: #25d366;
}

.text-gradient {
    color: transparent;
    background: linear-gradient(120deg, #35108f 0%, #5a1bd4 34%, #8c48ff 66%, #7ed8ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.cta-copy p {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.78;
}

.hero-text {
    max-width: 650px;
    margin: 26px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #8b63ff, #a742ff 52%, #d13fff);
    box-shadow: 0 16px 48px rgba(142, 63, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 22px 62px rgba(156, 69, 255, 0.52);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-self: end;
    padding: 12px;
    border: 1px solid rgba(116, 123, 255, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(11, 11, 22, 0.9), rgba(5, 6, 12, 0.76));
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.metric-card,
.conversion-card {
    min-height: 128px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.metric-value {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
}

.metric-label {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.mini-browser {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    min-height: 64px;
    padding: 17px;
    border: 1px solid rgba(28, 180, 255, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(28, 180, 255, 0.18), transparent),
        rgba(255, 255, 255, 0.045);
}

.mini-browser span {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.mini-browser span:nth-child(1) {
    width: 20%;
    background: linear-gradient(90deg, var(--blue), var(--violet));
}

.mini-browser span:nth-child(2) {
    width: 36%;
}

.mini-browser span:nth-child(3) {
    width: 18%;
}

.conversion-card {
    grid-column: 1 / -1;
}

.conversion-card strong {
    display: block;
    font-size: 1.08rem;
}

.conversion-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.section {
    padding: 112px 0;
}

#servicos {
    margin-top: -230px;
    padding-top: 178px;
    overflow: hidden;
    background: linear-gradient(180deg, #020204 0%, #02040a 48%, #03040f 100%);
}

#servicos::before {
    content: "";
    position: absolute;
    inset: -220px 0 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 48% 42% at 80% 66%, rgba(105, 51, 255, 0.14), transparent 72%),
        radial-gradient(ellipse 52% 22% at 62% 44%, rgba(107, 55, 255, 0.05), transparent 78%),
        radial-gradient(ellipse 38% 30% at 10% 84%, rgba(28, 180, 255, 0.07), transparent 72%),
        linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(2, 2, 4, 0) 0%, #020204 34%, #02040a 54%, #03050b 74%, #040316 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 72px 72px, 72px 72px, 100% 100%;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.78) 18%, black 44%, rgba(0, 0, 0, 0.72) 70%, transparent 100%);
}

#servicos > .section-shell {
    position: relative;
    z-index: 3;
}

.section-heading {
    max-width: 800px;
    margin-bottom: 42px;
}

.section-heading h2,
.showcase h2,
.cta-copy h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.7rem);
}

.section-heading p {
    max-width: 680px;
    margin: 20px 0 0;
}

.services-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.52fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: center;
    margin-bottom: 44px;
}

.services-intro .section-heading {
    margin-bottom: 0;
}

.service-phone-scene {
    display: flex;
    justify-content: flex-end;
    perspective: 1200px;
    padding-top: 86px;
}

.service-phone {
    position: relative;
    width: min(274px, 22vw);
    min-width: 214px;
    aspect-ratio: 0.48;
    transform: rotateY(-24deg) rotateZ(3deg);
    transform-style: preserve-3d;
    animation: phoneFloat 7.5s ease-in-out infinite;
    animation-play-state: paused;
}

.service-phone-scene.is-visible .service-phone {
    animation-play-state: running;
}

.service-phone::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 52px;
    background: linear-gradient(135deg, rgba(28, 180, 255, 0.2), rgba(145, 49, 255, 0.28));
    filter: blur(24px);
    opacity: 0.58;
    transform: translateZ(-26px);
}

.service-phone-edge {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 48px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05) 18%, transparent 42%, rgba(255, 255, 255, 0.16) 100%),
        linear-gradient(145deg, #323745, #08090d 46%, #1d2230);
    box-shadow:
        24px 26px 50px rgba(0, 0, 0, 0.42),
        inset 4px 0 8px rgba(255, 255, 255, 0.18),
        inset -7px 0 14px rgba(0, 0, 0, 0.52),
        inset 0 0 0 5px rgba(255, 255, 255, 0.045);
}

.service-phone-edge::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(10, 18, 30, 0.82);
    border-radius: 42px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 28px rgba(0, 0, 0, 0.45);
}

.service-phone-edge::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 5px;
    width: 3px;
    height: 78%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 28%, rgba(126, 216, 255, 0.1));
    opacity: 0.62;
}

.iphone-button {
    position: absolute;
    z-index: -1;
    width: 5px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(16, 18, 26, 0.96));
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.button-action {
    left: -3px;
    top: 96px;
    height: 34px;
}

.button-volume {
    left: -3px;
    top: 148px;
    height: 76px;
}

.button-power {
    right: -3px;
    top: 150px;
    height: 88px;
}

.service-phone-screen {
    position: absolute;
    inset: 10px;
    overflow: hidden;
    border: 1px solid rgba(126, 216, 255, 0.18);
    border-radius: 38px;
    background:
        radial-gradient(circle at 50% 0%, rgba(55, 94, 144, 0.34), transparent 28%),
        linear-gradient(180deg, rgba(20, 34, 58, 0.96), rgba(7, 9, 18, 0.99)),
        linear-gradient(135deg, rgba(28, 180, 255, 0.18), transparent 42%, rgba(145, 49, 255, 0.22));
    box-shadow:
        inset 0 0 34px rgba(126, 216, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.dynamic-island {
    position: absolute;
    top: 11px;
    left: 50%;
    z-index: 3;
    width: 82px;
    height: 25px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 72% 48%, rgba(36, 45, 56, 0.9) 0 3px, transparent 4px),
        #030305;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.045),
        0 1px 12px rgba(0, 0, 0, 0.42);
    transform: translateX(-50%);
}

.phone-status {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 28px 19px 0;
}

.phone-status span {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
}

.phone-status span:first-child {
    width: 38px;
}

.phone-status span:last-child {
    width: 30px;
}

.message-stack {
    display: grid;
    gap: 13px;
    padding: 34px 16px 0;
}

.client-message {
    min-height: 82px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
        rgba(11, 12, 24, 0.84);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    opacity: 0;
    transform: translate3d(46px, 16px, 0) scale(0.94);
    animation: messageOneFlow 12.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    animation-play-state: paused;
}

.phone-success {
    position: absolute;
    inset: 88px 22px auto;
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 24px 14px;
    border: 1px solid rgba(103, 232, 201, 0.22);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0%, rgba(103, 232, 201, 0.18), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(7, 12, 20, 0.88);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.92);
    animation: successReveal 12.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    animation-play-state: paused;
}

.service-phone-scene.is-visible .client-message,
.service-phone-scene.is-visible .phone-success,
.service-phone-scene.is-visible .success-check path {
    animation-play-state: running;
}

.client-message span {
    display: block;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
}

.client-message strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.25;
}

.message-two {
    animation-name: messageTwoFlow;
}

.message-three {
    animation-name: messageThreeFlow;
}

.success-check {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(103, 232, 201, 0.95), rgba(28, 180, 255, 0.9));
    box-shadow:
        0 0 34px rgba(103, 232, 201, 0.34),
        0 0 60px rgba(28, 180, 255, 0.16);
}

.success-check svg {
    width: 40px;
    height: 40px;
    fill: none;
}

.success-check path {
    stroke: #061116;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkDraw 12.6s ease-in-out infinite;
    animation-play-state: paused;
}

.phone-success strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.15;
    text-align: center;
}

.phone-action-line {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    opacity: 0.72;
}

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

.section-actions {
    display: flex;
    margin-top: 34px;
}

.service-card,
.process-step,
.proof-item,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028));
}

.service-card {
    min-height: 304px;
    padding: 30px;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-bright);
    background: linear-gradient(180deg, rgba(28, 180, 255, 0.12), rgba(125, 56, 255, 0.05));
}

.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(28, 180, 255, 0.28);
    border-radius: 8px;
    color: #fff;
    background: rgba(28, 180, 255, 0.08);
    box-shadow: inset 0 0 24px rgba(112, 67, 255, 0.18);
}

.service-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3,
.process-step h3 {
    margin: 24px 0 12px;
    font-family: "Space Grotesk", "Sora", Arial, sans-serif;
    font-size: 1.34rem;
    font-weight: 700;
}

.service-card p,
.process-step p,
.proof-item p {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

.showcase {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        linear-gradient(180deg, transparent, rgba(5, 5, 10, 0.78) 18%, rgba(5, 5, 10, 0.78) 82%, transparent),
        linear-gradient(135deg, rgba(var(--showcase-blue-rgb), var(--showcase-blue-opacity)), transparent 32%),
        linear-gradient(315deg, rgba(var(--showcase-purple-rgb), var(--showcase-purple-opacity)), transparent 38%);
    background-position:
        center,
        calc(50% - var(--parallax-showcase-x)) calc(50% + var(--parallax-showcase-y)),
        calc(50% + var(--parallax-showcase-x)) calc(50% - var(--parallax-showcase-y));
    background-size: 100% 100%, 145% 145%, 135% 135%;
}

.showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    gap: clamp(30px, 5vw, 84px);
    align-items: center;
}

.showcase-copy p {
    margin: 24px 0 0;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: #e5e9ff;
    line-height: 1.55;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.36em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, var(--success), var(--blue));
    box-shadow: 0 0 24px rgba(103, 232, 201, 0.3);
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 0.72em;
    width: 6px;
    height: 3px;
    border-left: 2px solid #001212;
    border-bottom: 2px solid #001212;
    transform: rotate(-45deg);
}

.proof-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.proof-item {
    min-height: 176px;
    padding: 22px;
}

.proof-item.large {
    grid-column: 1 / -1;
    min-height: 240px;
    background:
        radial-gradient(circle at top right, rgba(28, 180, 255, 0.22), transparent 18rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.stats-board {
    align-content: start;
}

.stat-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(28, 180, 255, 0.095), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026));
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: auto 18px 18px auto;
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--violet));
    opacity: 0.72;
    box-shadow: 0 0 18px rgba(126, 216, 255, 0.24);
}

.stat-card.large {
    background:
        radial-gradient(circle at top right, rgba(28, 180, 255, 0.24), transparent 18rem),
        radial-gradient(circle at 18% 24%, rgba(145, 49, 255, 0.16), transparent 15rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.032));
}

.proof-item span,
.process-step span {
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 900;
}

.proof-item strong {
    display: block;
    margin-top: 18px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.stat-card strong {
    margin-top: 16px;
}

.stat-card .stat-number {
    display: block;
    color: #fff;
    font-size: clamp(3.3rem, 7vw, 6.2rem);
    font-weight: 950;
    line-height: 0.95;
    text-shadow:
        0 0 22px rgba(28, 180, 255, 0.24),
        0 0 42px rgba(145, 49, 255, 0.18);
}

.proof-item:not(.large) .stat-number {
    font-size: clamp(2.65rem, 4vw, 3.7rem);
}

.proof-item p {
    margin-top: 12px;
}

.stats-source {
    grid-column: 1 / -1;
    margin: 2px 0 0;
    color: rgba(214, 218, 235, 0.68);
    font-size: 0.82rem;
    line-height: 1.55;
}

.included-section {
    position: relative;
}

.included-section::before {
    content: "";
    position: absolute;
    inset: 60px auto auto 50%;
    width: min(620px, 78vw);
    aspect-ratio: 1;
    transform: translate3d(-50%, var(--parallax-included-y), 0);
    border: 1px solid rgba(126, 216, 255, 0.22);
    border-radius: 50%;
    box-shadow:
        0 0 70px rgba(var(--included-glow-rgb), 0.2),
        inset 0 0 50px rgba(126, 216, 255, 0.08);
    pointer-events: none;
    z-index: 0;
}

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

.included-item {
    min-height: 214px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.024)),
        rgba(8, 8, 18, 0.78);
}

.included-item span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(126, 216, 255, 0.28);
    border-radius: 50%;
    color: #d9c9ff;
    background: rgba(90, 27, 212, 0.22);
    font-size: 0.76rem;
    font-weight: 900;
}

.included-item strong {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-family: "Space Grotesk", "Sora", Arial, sans-serif;
    font-size: 1.04rem;
    line-height: 1.3;
}

.included-item p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 1.01rem;
    line-height: 1.66;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: process;
}

.process-step {
    min-height: 278px;
    padding: 26px;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 10% auto auto 50%;
    width: min(560px, 80vw);
    aspect-ratio: 1;
    transform: translate3d(-50%, var(--parallax-cta-y), 0);2
    border-radius: 50%;
    box-shadow:
        0 0 70px rgba(var(--cta-glow-rgb), 0.24),
        inset 0 0 60px rgba(141, 54, 255, 0.16);
    opacity: 0.42;
}

.cta-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
}

.cta-copy p {
    max-width: 620px;
    margin: 24px 0 0;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 22px;
    background: rgba(8, 8, 18, 0.86);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #e5e9ff;
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input,
.contact-form select {
    height: 48px;
    padding: 0 14px;
}

.phone-fields {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
}

.phone-fields .country-code-input {
    text-align: center;
    padding: 0 10px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 118px;
    padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(28, 180, 255, 0.72);
    background: rgba(255, 255, 255, 0.085);
    box-shadow: 0 0 0 4px rgba(28, 180, 255, 0.12);
}

.contact-form option {
    color: #05050a;
}

.contact-form .btn {
    width: 100%;
    margin-top: 4px;
}

.form-note {
    margin: 0;
    color: var(--dim);
    font-size: 0.88rem;
    line-height: 1.5;
}

.form-note.is-success {
    color: var(--success);
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.4);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
}

.footer-cta {
    color: #fff;
    font-weight: 800;
}

.reveal {
    --reveal-x: -76px;
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translate3d(var(--reveal-x), 0, 0);
    transition:
        opacity 1180ms ease var(--reveal-delay),
        transform 1180ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
    will-change: opacity, transform;
}

.reveal[data-reveal-direction="right"] {
    --reveal-x: 76px;
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
    .site-header {
        width: calc(100% - 28px);
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .site-nav {
        position: fixed;
        top: 84px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 8px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(3, 3, 9, 0.96);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 14px 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .hero-grid,
    .services-intro,
    .showcase-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-devices {
        opacity: 0.46;
    }

    .desktop-device {
        right: -120px;
        top: 150px;
        width: min(610px, 60vw);
    }

    .phone-device {
        right: -4px;
        top: 390px;
        width: min(155px, 17vw);
        min-width: 130px;
    }

    .hero-panel {
        max-width: 620px;
    }

    .service-phone-scene {
        justify-content: center;
        margin-top: -6px;
        padding-top: 0;
        transform: none;
    }

    .service-phone {
        width: min(230px, 42vw);
        min-width: 190px;
    }

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

}

@media (max-width: 680px) {
    .section-shell {
        width: min(100% - 48px, var(--max));
    }

    .hero .section-shell {
        width: min(100% - 48px, var(--max));
    }

    .site-header {
        margin-top: 12px;
        padding: 10px;
        border-radius: 14px;
    }

    .brand-orbit {
        width: 46px;
        height: 46px;
    }

    .brand-symbol {
        width: 30px;
        height: 24px;
    }

    .brand-name {
        font-size: 1rem;
        letter-spacing: 0.24em;
    }

    .brand-line {
        font-size: 0.5rem;
        letter-spacing: 0.24em;
    }

    .eyebrow {
        gap: 9px;
        margin-bottom: 12px;
    }

    .eyebrow::before,
    .eyebrow::after {
        flex: 0 0 24px;
        width: 24px;
    }

    .hero {
        padding: 112px 0 26px;
    }

    #servicos {
        margin-top: -164px;
        padding-top: 122px;
    }

    .hero-media img {
        object-position: 72% center;
        opacity: 0.035;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(2, 2, 4, 0.99), rgba(2, 2, 4, 0.92)),
            linear-gradient(0deg, var(--bg) 0%, transparent 34%, rgba(2, 2, 4, 0.72) 100%);
    }

    .hero-devices {
        position: relative;
        inset: auto;
        z-index: 2;
        height: 270px;
        margin: 0 0 24px;
        opacity: 0.78;
        overflow: hidden;
    }

    .hero-devices::before {
        right: -18vw;
        top: -46px;
        width: 116vw;
        opacity: 0.32;
    }

    .hero-devices::after {
        right: -24vw;
        top: -28px;
        width: 108vw;
        opacity: 0.46;
        filter: blur(28px);
    }

    .desktop-device {
        right: -76px;
        top: 18px;
        width: 104vw;
        max-width: 500px;
        transform: translate3d(var(--parallax-desktop-x), var(--parallax-desktop-y), 0) perspective(900px) rotateY(-10deg) rotateZ(-3deg);
    }

    .phone-device {
        display: block;
        right: 24px;
        top: 92px;
        width: 96px;
        min-width: 0;
        padding: 7px;
        border-radius: 22px;
    }

    .phone-screen {
        border-radius: 17px;
    }

    .phone-device .screen-track {
        min-height: 100%;
        gap: 6px;
        padding: 12px 7px 7px;
        animation: none;
        transform: none;
    }

    .phone-device .mock-hero.compact {
        min-height: 106px;
        padding: 12px 10px;
        gap: 7px;
    }

    .phone-device .mock-hero.compact span {
        width: 44%;
        height: 7px;
    }

    .phone-device .mock-hero.compact strong {
        width: 72%;
        height: 7px;
    }

    .phone-device .mock-hero.compact em {
        width: 62%;
        height: 6px;
    }

    .phone-device .mock-hero.compact b {
        width: 34%;
        min-height: 36px;
        height: 36px;
        border-radius: 7px;
    }

    .phone-device .mock-row.compact {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .phone-device .mock-row.compact i {
        height: 26px;
        min-height: 26px;
        background-position: 8px 7px, 25px 9px, 25px 20px;
        background-size: auto, 62% 10px, 42% 10px;
    }

    .phone-device .mock-form.compact {
        display: none;
        min-height: 94px;
        gap: 7px;
        padding: 11px 9px;
    }

    .phone-device .mock-form.compact span {
        height: 9px;
    }

    .phone-speaker {
        top: 6px;
        height: 10px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.25rem, 11.2vw, 3.4rem);
        line-height: 1.05;
    }

    .hero-title-mark {
        display: inline;
    }

    .services-intro {
        gap: 22px;
        margin-bottom: 28px;
    }

    #servicos .eyebrow {
        margin-left: 0;
    }

    .service-phone {
        width: min(214px, 64vw);
        min-width: 176px;
    }

    .service-phone::before {
        opacity: 0.38;
    }

    .client-message {
        min-height: 76px;
        padding: 12px;
    }

    .client-message strong {
        font-size: 0.84rem;
    }

    .hero-text,
    .section-heading p,
    .showcase-copy p,
    .cta-copy p {
        font-size: 1.06rem;
        line-height: 1.7;
    }

    .hero-actions,
    .section-actions,
    .btn {
        width: 100%;
    }

    .section-actions .btn {
        gap: 8px;
        min-height: 48px;
        padding: 0 14px;
        white-space: nowrap;
        font-size: clamp(0.78rem, 3.35vw, 0.9rem);
    }

    .section-actions .btn span {
        min-width: 0;
    }

    .section-actions .btn svg {
        flex: 0 0 17px;
        width: 17px;
        height: 17px;
    }

    .hero-panel,
    .proof-board {
        grid-template-columns: 1fr;
    }

    .metric-card,
    .conversion-card {
        min-height: auto;
    }

    .section,
    .showcase,
    .cta-section {
        padding: 54px 0;
    }

    .included-section,
    #processo {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .included-grid,
    .process-list {
        gap: 12px;
    }

    .services-grid,
    .included-grid,
    .process-list {
        grid-template-columns: 1fr;
    }

    .service-card,
    .included-item,
    .process-step {
        min-height: auto;
        padding: 24px;
    }

    .proof-item.large {
        min-height: auto;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .client-message {
        opacity: 0;
    }

    .phone-success {
        opacity: 1;
        transform: none;
    }

    .success-check path {
        stroke-dashoffset: 0;
    }

    .scroll-backdrop,
    .scroll-backdrop::before,
    .scroll-backdrop::after {
        transform: none;
    }
}
