:root {
    --kalam-clay: #C4783A;
    --kalam-clay-light: #D9956A;
    --kalam-lapis: #1B3A6B;
    --kalam-lapis-light: #2A5499;
    --kalam-obsidian: #0D0D0D;
    --kalam-sand: #F4EFE6;
    --kalam-cyan: #00C2FF;

    --surface-base: #0D0D0D;
    --surface-elevated: #131315;
    --surface-raised: #18181B;
    --surface-sunken: #09090B;
    --surface-panel: #111113;

    --border-default: #27272a;
    --border-focus: #3f3f46;
    --border-hard: #000000;

    /* Texto secundário com contraste WCAG AA (≥4.5:1) sobre --surface-base */
    --text-muted: #b0bcc8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Acessibilidade: foco visível para teclado */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--kalam-cyan);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 9999;
    padding: 0.6rem 1rem;
    background: var(--kalam-cyan);
    color: var(--surface-base);
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    border-radius: 8px;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--kalam-sand);
    outline-offset: 2px;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(1400px 700px at 50% -10%, rgba(27, 58, 107, 0.12), transparent 45%),
        radial-gradient(900px 500px at 90% 40%, rgba(0, 194, 255, 0.04), transparent 50%),
        radial-gradient(700px 400px at 10% 70%, rgba(196, 120, 58, 0.03), transparent 50%),
        var(--surface-base);
    color: #cbd5e1;
    font-family: "Rajdhani", sans-serif;
}

body {
    min-height: 100vh;
    min-height: calc(100vh - env(safe-area-inset-bottom));
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.hero {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(1200px 640px at 50% 0%, rgba(27, 58, 107, 0.42), transparent 63%),
        radial-gradient(500px 500px at 80% 65%, rgba(0, 194, 255, 0.12), transparent 70%),
        radial-gradient(400px 400px at 18% 26%, rgba(196, 120, 58, 0.09), transparent 70%),
        var(--surface-base);
}

.noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.34;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.045'/%3E%3C/svg%3E");
}

#particles {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.grid-layer {
    position: absolute;
    inset: -18% -6% auto;
    height: 86%;
    z-index: -1;
    background:
        linear-gradient(rgba(0, 194, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 52px,
        linear-gradient(90deg, rgba(0, 194, 255, 0.05) 1px, transparent 1px) 0 0 / 52px 100%;
    mask-image: radial-gradient(ellipse at 50% 36%, #000 36%, transparent 80%);
    opacity: 0.32;
    transform-origin: center top;
    transform: perspective(950px) rotateX(64deg) scale(1.2);
    animation: grid-drift 24s linear infinite;
}

.scanline {
    position: absolute;
    left: 0;
    right: 0;
    top: -20%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 194, 255, 0.55) 50%, transparent 100%);
    box-shadow: 0 0 22px rgba(0, 194, 255, 0.4);
    opacity: 0.7;
    animation: scan 6s linear infinite;
    z-index: 3;
    pointer-events: none;
}

.top-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 1rem auto 0;
    margin-top: max(1rem, env(safe-area-inset-top));
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-hard);
    border-radius: 16px;
    background: linear-gradient(to bottom, var(--surface-raised), var(--surface-elevated));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 28px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    z-index: 4;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--kalam-sand);
}

.brand__logo {
    display: block;
    height: 44px;
    width: auto;
    margin-top: 1px;
}

.nav-mini {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-family: "Space Mono", monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #64748b;
}

.nav-mini span,
.nav-mini a {
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.nav-mini span:hover,
.nav-mini a:hover {
    color: var(--kalam-cyan);
}

.init-btn {
    font-family: "Space Mono", monospace;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--surface-base);
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(to bottom, #fbfdff, #dbe8f2);
    box-shadow:
        0 8px 22px rgba(229, 238, 247, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.init-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(229, 238, 247, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 3.8rem auto 0;
    position: relative;
    z-index: 5;
    text-align: center;
    padding-bottom: 4.2rem;
}

.status-chip {
    margin: 0 auto 1.5rem;
    width: fit-content;
    border-radius: 999px;
    border: 1px solid var(--border-focus);
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.92), rgba(17, 17, 19, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 0.58rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    color: var(--kalam-cyan);
    font-weight: 700;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--kalam-cyan);
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.8);
    animation: dot-pulse 1.8s ease-in-out infinite;
}

.headline {
    max-width: 980px;
    margin: 0 auto;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.05rem, 4.35vw, 5.4rem);
    font-weight: 500;
    line-height: 0.96;
    color: #f8fafc;
    letter-spacing: -0.015em;
    text-wrap: balance;
    text-shadow: 0 3px 24px rgba(0, 194, 255, 0.13);
}

.headline span {
    color: var(--kalam-cyan);
}

.headline .char {
    display: inline-block;
    will-change: transform, opacity, filter;
}

.subtitle {
    max-width: 740px;
    margin: 1.35rem auto 0;
    font-size: clamp(1.03rem, 2vw, 1.55rem);
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.45;
}

.cta-group {
    margin-top: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.cta {
    position: relative;
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.92rem 1.45rem;
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cta.primary {
    color: var(--surface-base);
    background: linear-gradient(to bottom, var(--kalam-cyan), #0099cc);
    border-top-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 22px rgba(0, 194, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.cta.primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    transform: skewX(-22deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.cta.primary:hover::before {
    animation: shimmer-pass 1.05s ease-out;
}

.cta.primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 30px rgba(0, 194, 255, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.cta.secondary {
    color: var(--kalam-sand);
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.9), rgba(17, 17, 19, 0.9));
    border-color: var(--border-focus);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.35);
}

.cta.secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 194, 255, 0.4);
    color: #e2e8f0;
}

.signal-row {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

@media (hover: none) and (pointer: coarse) {
    a, button { -webkit-tap-highlight-color: rgba(0, 194, 255, 0.12); }
}

.signal {
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.85);
    background: rgba(17, 17, 19, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 0.46rem 0.76rem;
}

.signal strong {
    color: var(--kalam-cyan);
    font-weight: 700;
}

.orbit-wrap {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 0;
    height: 0;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50%, -51.5%);
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(0, 194, 255, 0.18);
    border-radius: 999px;
}

.orbit.one {
    width: 340px;
    height: 340px;
    top: -170px;
    left: -170px;
    animation: spin 22s linear infinite;
}

.orbit.two {
    width: 470px;
    height: 470px;
    top: -235px;
    left: -235px;
    border-color: rgba(196, 120, 58, 0.13);
    animation: spin-reverse 30s linear infinite;
}

.orb {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--kalam-cyan);
    box-shadow: 0 0 18px rgba(0, 194, 255, 0.85);
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

.orb.clay {
    background: var(--kalam-clay-light);
    box-shadow: 0 0 14px rgba(217, 149, 106, 0.7);
    width: 6px;
    height: 6px;
}

.bottom-rule {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto 1.2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-family: "Space Mono", monospace;
    font-size: 0.54rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    opacity: 0.8;
}

.bottom-rule::before,
.bottom-rule::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(63, 63, 70, 0.95));
}

.bottom-rule::after {
    background: linear-gradient(90deg, rgba(63, 63, 70, 0.95), transparent);
}

.hidden-mobile {
    display: inline;
}

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

@keyframes scan {
    from { top: -15%; opacity: 0; }
    20% { opacity: 0.72; }
    80% { opacity: 0.6; }
    to { top: 115%; opacity: 0; }
}

@keyframes grid-drift {
    from { transform: perspective(950px) rotateX(64deg) scale(1.2) translateY(0); }
    to { transform: perspective(950px) rotateX(64deg) scale(1.2) translateY(44px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes shimmer-pass {
    from { left: -120%; }
    to { left: 180%; }
}

@media (max-width: 1024px) {
    .nav-mini { display: none; }
}

@media (max-width: 768px) {
    .top-shell {
        margin-top: max(0.85rem, env(safe-area-inset-top));
        padding: 0.8rem 0.85rem;
        border-radius: 14px;
        width: min(1120px, calc(100% - 1rem));
    }
    .brand { font-size: 0.82rem; }
    .brand__logo { height: 30px; }
    .init-btn {
        padding: 0.75rem 0.9rem;
        min-height: 44px;
        font-size: 0.56rem;
        letter-spacing: 0.18em;
    }
    .hero-inner { margin-top: 2.45rem; padding-left: 0.5rem; padding-right: 0.5rem; }
    .status-chip { font-size: 0.54rem; letter-spacing: 0.18em; padding: 0.5rem 0.72rem; }
    .subtitle { font-size: 1rem; max-width: 95%; }
    .cta-group { flex-direction: column; align-items: center; }
    .cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        min-height: 48px;
        padding: 0.95rem 1.2rem;
    }
    .signal { font-size: 0.52rem; letter-spacing: 0.14em; }
    .signal-row { gap: 0.5rem; }
    .bottom-rule { font-size: 0.48rem; letter-spacing: 0.14em; padding-left: 0.5rem; padding-right: 0.5rem; }
    .hidden-mobile { display: none; }
    .nav-mobile {
        left: 0.5rem;
        right: 0.5rem;
        width: auto;
        max-height: calc(100vh - 5rem - env(safe-area-inset-top));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ─── Reduced motion: hero ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .dot,
    .scanline,
    .grid-layer,
    .orbit,
    .cta.primary::before {
        animation: none;
    }

    .scanline {
        display: none;
    }

    .grid-layer {
        opacity: 0;
    }
}

:root {
    --services-grid-line: rgba(0, 194, 255, 0.08);
    --services-copy-max: 720px;
    --services-card-radius: 22px;
    --services-panel-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.services-fixed-radial,
.services-fixed-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.services-fixed-radial {
    z-index: 0;
    opacity: 0.42;
    background:
        radial-gradient(1000px 560px at 50% 5%, rgba(27, 58, 107, 0.38), transparent 62%),
        radial-gradient(600px 400px at 85% 55%, rgba(0, 194, 255, 0.1), transparent 68%),
        radial-gradient(550px 350px at 12% 75%, rgba(196, 120, 58, 0.06), transparent 68%);
}

.services-fixed-noise {
    z-index: 0;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.045'/%3E%3C/svg%3E");
}

.services {
    position: relative;
    z-index: 1;
    padding: clamp(4.5rem, 8vw, 6.6rem) 0 clamp(5rem, 8vw, 7rem);
    isolation: isolate;
    overflow: clip;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.5) 18%, rgba(13, 13, 13, 0.92) 100%);
}

.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 194, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 52px,
        linear-gradient(90deg, rgba(0, 194, 255, 0.035) 1px, transparent 1px) 0 0 / 52px 100%;
    mask-image: radial-gradient(circle at 50% 18%, #000, transparent 88%);
    opacity: 0.34;
    pointer-events: none;
}

.services-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-aurora,
.services-grid-glow {
    position: absolute;
    pointer-events: none;
}

.services-aurora {
    border-radius: 999px;
    filter: blur(56px);
    opacity: 0.42;
}

.services-aurora--lapis {
    width: 420px;
    height: 420px;
    top: 6%;
    right: -140px;
    background: radial-gradient(circle, rgba(27, 58, 107, 0.56) 0%, rgba(27, 58, 107, 0) 72%);
}

.services-aurora--clay {
    width: 340px;
    height: 340px;
    bottom: 10%;
    left: -120px;
    background: radial-gradient(circle, rgba(196, 120, 58, 0.24) 0%, rgba(196, 120, 58, 0) 72%);
}

.services-grid-glow {
    inset: -10% 4% auto;
    height: 58%;
    background:
        linear-gradient(rgba(0, 194, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 46px,
        linear-gradient(90deg, rgba(0, 194, 255, 0.035) 1px, transparent 1px) 0 0 / 46px 100%;
    transform: perspective(1050px) rotateX(73deg) scale(1.2);
    mask-image: radial-gradient(circle at 50% 36%, #000 22%, transparent 80%);
    opacity: 0.25;
}

.services-intro {
    display: grid;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
}

.services-copy {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.services.is-visible .services-copy {
    opacity: 1;
    transform: translateY(0);
}

.services-copy {
    max-width: var(--services-copy-max);
    margin-inline: auto;
    text-align: center;
}

.services-title {
    max-width: 980px;
    margin: 0 auto;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.05rem, 4.35vw, 5.4rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.015em;
    text-wrap: balance;
    color: #f8fafc;
    text-align: center;
    text-shadow: 0 3px 24px rgba(0, 194, 255, 0.13);
}

.services-title span {
    color: var(--kalam-cyan);

}
.services-grid {
    display: grid;
    gap: 1rem;
}

.service-card--automation {
    --service-accent: var(--kalam-clay-light);
    --service-accent-strong: var(--kalam-clay);
    --service-accent-rgb: 217, 149, 106;
    --service-link: var(--kalam-clay-light);
}

.service-card--software {
    --service-accent: var(--kalam-cyan);
    --service-accent-strong: #82AAFF;
    --service-accent-rgb: 0, 194, 255;
    --service-link: var(--kalam-cyan);
}

.service-card--integrations {
    --service-accent: var(--kalam-lapis-light);
    --service-accent-strong: var(--kalam-cyan);
    --service-accent-rgb: 42, 84, 153;
    --service-link: var(--kalam-cyan);
}

.service-card {
    position: relative;
    min-width: 0;
    --rotate-x: 0deg;
    --rotate-y: 0deg;
    --lift: 0px;
    --card-entry: 28px;
    --pointer-x: 50%;
    --pointer-y: 50%;
}

.service-card.is-visible {
    --card-entry: 0px;
}

.service-card__frame {
    height: 100%;
    border-radius: var(--services-card-radius);
    border: 1px solid rgba(39, 39, 42, 0.92);
    background:
        linear-gradient(180deg, rgba(24, 24, 27, 0.96), rgba(17, 17, 19, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -34px 70px rgba(0, 0, 0, 0.45),
        var(--services-panel-shadow);
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform:
        perspective(1400px)
        rotateX(var(--rotate-x))
        rotateY(var(--rotate-y))
        translateY(calc(var(--card-entry) + var(--lift)));
    transform-style: preserve-3d;
    transition:
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.65s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

.service-card.is-visible .service-card__frame {
    opacity: 1;
}

.service-card__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(320px circle at var(--pointer-x) var(--pointer-y), rgba(var(--service-accent-rgb), 0.16), transparent 52%);
    opacity: 0.9;
    pointer-events: none;
}

.service-card__frame::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--service-accent-rgb), 0.65), transparent);
    opacity: 0.8;
    pointer-events: none;
}

.service-card:hover {
    --lift: -10px;
}

.service-card:hover .service-card__frame {
    border-color: rgba(var(--service-accent-rgb), 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -34px 70px rgba(0, 0, 0, 0.45),
        0 28px 86px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(var(--service-accent-rgb), 0.08);
}

.service-card__mockup {
    position: relative;
    min-height: 248px;
    border-bottom: 1px solid rgba(39, 39, 42, 0.92);
    background:
        linear-gradient(180deg, rgba(9, 9, 11, 0.98) 0%, rgba(13, 13, 13, 0.96) 32%, rgba(17, 17, 19, 0.92) 100%);
    overflow: hidden;
}

.service-card__mockup::before {
    content: "";
    position: absolute;
    inset: auto -15% -50% -15%;
    height: 70%;
    background: radial-gradient(circle at 50% 0%, rgba(var(--service-accent-rgb), 0.16), transparent 70%);
    pointer-events: none;
}

.service-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.88rem 1rem 0.78rem;
    border-bottom: 1px solid rgba(39, 39, 42, 0.9);
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.98), rgba(13, 13, 13, 0.96));
}

.service-chrome__module {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #e2e8f0;
    font-family: "Space Mono", monospace;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-chrome__icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(var(--service-accent-rgb), 0.14);
    color: var(--service-accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-chrome__badge {
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--service-accent-rgb), 0.24);
    background: rgba(var(--service-accent-rgb), 0.08);
    color: var(--service-accent);
    font-family: "Space Mono", monospace;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1.15rem 1rem 1.1rem;
    position: relative;
    z-index: 1;
}

.service-card__heading {
    display: grid;
    gap: 0.22rem;
}

.service-card__title {
    font-size: 1.9rem;
    line-height: 0.96;
    color: #f8fafc;
    font-weight: 600;
}

.service-card__subtag {
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.68);
}

.service-card__divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--service-accent-rgb), 0.52), rgba(var(--service-accent-rgb), 0.14), transparent);
}

.service-card__description {
    color: #a8b4c7;
    font-size: 1.02rem;
    line-height: 1.5;
    font-weight: 500;
}

.services-subtitle {
    margin: 0.9rem auto 0;
    max-width: 720px;
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.service-card__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.service-card__tags li {
    padding: 0.42rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(39, 39, 42, 0.9);
    background: rgba(9, 9, 11, 0.94);
    color: #cbd5e1;
    font-family: "Space Mono", monospace;
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-card__link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-top: auto;
    color: var(--service-link);
    text-decoration: none;
    font-family: "Space Mono", monospace;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.service-card__link span {
    position: relative;
}

.service-card__link span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.22rem;
    width: 100%;
    height: 1px;
    transform: scaleX(0.28);
    transform-origin: left;
    background: linear-gradient(90deg, rgba(var(--service-accent-rgb), 0.08), currentColor, rgba(var(--service-accent-rgb), 0.12));
    transition: transform 0.32s ease, opacity 0.32s ease;
    opacity: 0.7;
}

.service-card__link iconify-icon {
    transition: transform 0.28s ease;
}

.service-card__link:hover span::after {
    transform: scaleX(1);
    opacity: 1;
}

.service-card__link:hover iconify-icon {
    transform: translateX(4px) translateY(-1px);
}

@media (min-width: 940px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 2fr));
    }
}

@media (max-width: 939px) {
    .services-title {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 4.2rem 0 4.8rem;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .services-shell {
        width: min(1120px, calc(100% - 1rem));
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .services-intro {
        gap: 1rem;
        margin-bottom: 1.35rem;
    }

    .services-title {
        font-size: clamp(2.5rem, 10vw, 3.75rem);
    }

    .service-card__description {
        font-size: 0.98rem;
    }

    .service-card__body {
        padding: 1rem 0.9rem 0.95rem;
    }

    .service-card__title {
        font-size: clamp(1.35rem, 5.2vw, 1.75rem);
    }

    .service-card__link {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
        min-height: 48px;
        padding: 0.9rem 1.1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-copy,
    .service-card__frame {
        transition: none;
    }
}

.about {
    position: relative;
    z-index: 1;
    padding: clamp(4rem, 7vw, 5.8rem) 0 clamp(4.4rem, 7vw, 6rem);
    overflow: hidden;
    background:
        radial-gradient(720px 280px at 50% 0%, rgba(27, 58, 107, 0.12), transparent 65%),
        linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.4) 15%, rgba(13, 13, 13, 0.88) 100%);
}

.about-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

.about-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-head {
    text-align: center;
    margin-bottom: 2rem;
}

.about-kicker {
    width: fit-content;
    margin: 0 auto 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.9);
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.94), rgba(17, 17, 19, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 0.52rem 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.56rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--kalam-cyan);
}

.about-kicker__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--kalam-cyan);
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.76);
}

.about-head .about-title,
h2.about-title {
    font-family: "Rajdhani", sans-serif !important;
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 0.96;
    letter-spacing: -0.015em;
    color: #f8fafc;
    text-shadow: 0 3px 20px rgba(0, 194, 255, 0.1);
}

.about-title span {
    color: var(--kalam-cyan);
}

.about-owner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    border-radius: 22px;
    border: 1px solid rgba(39, 39, 42, 0.92);
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.97), rgba(9, 9, 11, 0.95));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 56px rgba(0, 0, 0, 0.4);
    padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.about-owner__photo-wrap {
    min-width: 0;
}

.about-owner__photo {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(39, 39, 42, 0.9);
    background: var(--surface-sunken);
    aspect-ratio: 4 / 5;
    max-height: 420px;
}

.about-owner__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.about-owner__content {
    min-width: 0;
}

.about-owner__quote {
    margin: 0 0 1.25rem;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    line-height: 1.58;
    color: #cbd5e1;
    font-style: italic;
}

.about-owner__name {
    margin: 0 0 0.3rem;
    font-size: 1.28rem;
    font-weight: 600;
    color: #f8fafc;
    letter-spacing: -0.02em;
}

.about-owner__role {
    margin: 0;
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
}

.about-stack {
    margin-top: 1.1rem;
}

.about-stack__label {
    font-family: "Space Mono", monospace;
    font-size: 0.52rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #475569;
    margin-bottom: 0.6rem;
}

.about-stack__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.about-stack__tags li {
    padding: 0.36rem 0.62rem;
    border-radius: 999px;
    border: 1px solid rgba(39, 39, 42, 0.9);
    background: rgba(9, 9, 11, 0.8);
    color: #94a3b8;
    font-family: "Space Mono", monospace;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.about-stack__tags li:hover {
    border-color: rgba(0, 194, 255, 0.3);
    color: #cbd5e1;
}

@media (min-width: 720px) {
    .about-owner {
        grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
    }
}

@media (max-width: 719px) {
    .about {
        padding: 3.6rem 0 4.2rem;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .about-shell {
        width: min(1120px, calc(100% - 1rem));
    }

    .about-owner {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .about-owner__photo-wrap {
        display: flex;
        justify-content: center;
    }

    .about-owner__photo {
        width: min(340px, 100%);
        max-height: 340px;
        aspect-ratio: 3 / 4;
        margin-inline: auto;
    }

    .about-stack__tags li {
        padding: 0.4rem 0.65rem;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }
}

.contact-cta {
    position: relative;
    z-index: 1;
    padding: clamp(3.4rem, 6vw, 5rem) 0 clamp(4rem, 6vw, 5.6rem);
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.5) 100%);
}

.methodology {
    position: relative;
    z-index: 1;
    padding: clamp(4.2rem, 7vw, 6rem) 0 clamp(4.6rem, 7vw, 6.2rem);
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.35) 100%);
}

.methodology::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(820px 360px at 50% 0%, rgba(27, 58, 107, 0.2), transparent 72%),
        radial-gradient(520px 290px at 10% 82%, rgba(0, 194, 255, 0.05), transparent 70%),
        radial-gradient(400px 240px at 88% 20%, rgba(196, 120, 58, 0.04), transparent 70%);
    pointer-events: none;
}

.methodology-shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
}

.methodology-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2.1rem;
}

.methodology-kicker {
    width: fit-content;
    margin: 0 auto 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.9);
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.94), rgba(17, 17, 19, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 0.54rem 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--kalam-cyan);
}

.methodology-kicker__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--kalam-cyan);
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.8);
}

.methodology-head .methodology-title,
h2.methodology-title {
    font-family: "Rajdhani", sans-serif !important;
    font-weight: 500;
    font-size: clamp(2.05rem, 4vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.015em;
    color: #f8fafc;
    text-shadow: 0 3px 22px rgba(0, 194, 255, 0.12);
}

.methodology-title span {
    color: var(--kalam-cyan);
}

.methodology-subtitle {
    margin: 0.9rem auto 0;
    max-width: 62ch;
    color: #94a3b8;
    font-size: clamp(0.98rem, 1.45vw, 1.18rem);
    line-height: 1.52;
}

.methodology-timeline {
    position: relative;
    display: grid;
    gap: 1.25rem;
    padding: 0.5rem 0;
}

.methodology-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0, 194, 255, 0.1), rgba(0, 194, 255, 0.45), rgba(0, 194, 255, 0.08));
}

.method-step {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 140px;
}

.method-step__node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.92);
    background: rgba(9, 9, 11, 0.95);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 4px rgba(9, 9, 11, 0.96);
    z-index: 2;
}

.method-step__node span {
    position: absolute;
    inset: 5px;
    border-radius: 999px;
    background: var(--kalam-cyan);
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.72);
}

.method-step__card {
    width: min(470px, calc(50% - 38px));
    border-radius: 16px;
    border: 1px solid rgba(39, 39, 42, 0.92);
    background: linear-gradient(180deg, rgba(17, 17, 19, 0.95), rgba(9, 9, 11, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 28px rgba(0, 0, 0, 0.28);
    padding: 0.95rem;
    position: relative;
    opacity: 0;
    transform: translateY(18px);
    animation: method-fade-in 0.7s ease forwards;
}

.method-step:nth-child(2) .method-step__card { animation-delay: 0.08s; }
.method-step:nth-child(3) .method-step__card { animation-delay: 0.16s; }
.method-step:nth-child(4) .method-step__card { animation-delay: 0.24s; }
.method-step:nth-child(5) .method-step__card { animation-delay: 0.32s; }

.method-step--left .method-step__card {
    justify-self: start;
}

.method-step--right .method-step__card {
    justify-self: end;
}

.method-step__pill {
    width: fit-content;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.9);
    background: rgba(9, 9, 11, 0.8);
    padding: 0.34rem 0.58rem;
    color: #bfdbfe;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: "Space Mono", monospace;
    font-size: 0.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.method-step__pill iconify-icon {
    color: var(--kalam-cyan);
}

.method-step__card h3 {
    margin-top: 0.68rem;
    color: #f8fafc;
    font-size: 1.46rem;
    line-height: 1;
    font-weight: 600;
}

.method-step__card p {
    margin-top: 0.45rem;
    color: #94a3b8;
    font-size: 0.96rem;
    line-height: 1.43;
}

.method-step__mock {
    margin-top: 0.78rem;
    border-radius: 11px;
    border: 1px solid rgba(39, 39, 42, 0.9);
    background: rgba(9, 9, 11, 0.9);
    padding: 0.62rem 0.68rem;
}

.method-step__mock--progress b {
    display: block;
    margin-bottom: 0.42rem;
    color: #cbd5e1;
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.method-step__progress-bar {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.8);
    overflow: hidden;
}

.method-step__progress-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--kalam-cyan), #3b82f6);
    transform-origin: left center;
    animation: method-probe-load 2.9s ease-in-out infinite;
}

.method-step__probe {
    margin-bottom: 0.42rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.method-step__probe-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.24rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.85);
    background: rgba(9, 9, 11, 0.84);
    color: #bfdbfe;
    font-family: "Space Mono", monospace;
    font-size: 0.48rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.method-step__probe-chip iconify-icon {
    color: var(--kalam-cyan);
}

.method-step__probe-grid {
    margin-top: 0.46rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
}

.method-step__probe-grid p {
    margin: 0;
    padding: 0.34rem 0.42rem;
    border-radius: 8px;
    border: 1px solid rgba(63, 63, 70, 0.82);
    background: rgba(15, 23, 42, 0.35);
    display: grid;
    gap: 0.15rem;
}

.method-step__probe-grid small,
.method-step__probe-grid strong {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
}

.method-step__probe-grid small {
    color: #94a3b8;
    font-size: 0.42rem;
    letter-spacing: 0.1em;
}

.method-step__probe-grid strong {
    color: #e2e8f0;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
}

.method-step__mock--lines {
    display: grid;
    gap: 0.5rem;
}

.method-step__tune-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}

.method-step__tune-head span,
.method-step__tune-head b {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.method-step__tune-head span {
    color: #94a3b8;
    font-size: 0.5rem;
}

.method-step__tune-head b {
    color: #e2e8f0;
    font-size: 0.58rem;
}

.method-step__tune-grid {
    display: grid;
    gap: 0.3rem;
}

.method-step__tune-grid p {
    margin: 0;
    display: grid;
    grid-template-columns: minmax(88px, 1fr) minmax(0, 1.5fr);
    align-items: center;
    gap: 0.45rem;
}

.method-step__tune-grid small {
    color: #94a3b8;
    font-family: "Space Mono", monospace;
    font-size: 0.44rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.method-step__tune-grid span {
    display: block;
    height: 6px;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.82);
    background: rgba(15, 23, 42, 0.38);
    overflow: hidden;
}

.method-step__tune-grid i {
    display: block;
    height: 100%;
    border-radius: inherit;
    transform-origin: left center;
    background: linear-gradient(90deg, #82AAFF, #00C2FF);
    animation: method-tune-breathe 3.6s ease-in-out infinite;
}

.method-step__tune-grid p:nth-child(2) i { animation-delay: 0.22s; }
.method-step__tune-grid p:nth-child(3) i { animation-delay: 0.44s; }

.method-step__tune-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.method-step__tune-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.82);
    background: rgba(9, 9, 11, 0.8);
    color: #bfdbfe;
    font-family: "Space Mono", monospace;
    font-size: 0.42rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.method-step__mock--panel {
    min-height: 54px;
    display: grid;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
}

.method-step__mock--panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 36%;
    height: 100%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, 0.16), transparent);
    animation: method-panel-scan 3.2s ease-in-out infinite;
}

.method-step__panel-head {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.method-step__panel-head span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.42);
}

.method-step__panel-head span:nth-child(1) { background: rgba(239, 68, 68, 0.82); }
.method-step__panel-head span:nth-child(2) { background: rgba(250, 204, 21, 0.82); }
.method-step__panel-head span:nth-child(3) { background: rgba(34, 197, 94, 0.82); }

.method-step__panel-body {
    display: grid;
    gap: 0.28rem;
}

.method-step__panel-code {
    position: relative;
    margin: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #cbd5e1;
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-transform: none;
    animation: method-code-type 3.2s steps(28, end) infinite;
}

.method-step__panel-code--one {
    animation-delay: 0.1s;
}

.method-step__panel-code--two {
    animation-delay: 0.45s;
}

.method-step__panel-code--three {
    animation-delay: 0.8s;
}

.method-step__panel-code--three::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 0.95em;
    margin-left: 4px;
    border-radius: 1px;
    background: #82AAFF;
    vertical-align: text-bottom;
    animation: method-code-cursor 0.9s step-end infinite;
}

.method-token--keyword {
    color: #C792EA;
}

.method-token--function {
    color: #82AAFF;
}

.method-token--variable {
    color: #FFCB6B;
}

.method-token--string {
    color: #C3E88D;
}

.method-step__mock--deploy {
    display: grid;
    gap: 0.48rem;
}

.method-step__deploy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.method-step__deploy-artifact {
    color: #e2e8f0;
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.method-step__deploy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    padding: 0.22rem 0.48rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.45);
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    font-family: "Space Mono", monospace;
    font-size: 0.46rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.method-step__deploy-badge i {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
    animation: method-deploy-pulse 1.4s ease-in-out infinite;
}

.method-step__deploy-regions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.method-step__deploy-regions span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    border: 1px solid rgba(63, 63, 70, 0.82);
    background: rgba(9, 9, 11, 0.72);
    color: #94a3b8;
    font-family: "Space Mono", monospace;
    font-size: 0.44rem;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

.method-step__deploy-regions iconify-icon {
    color: var(--kalam-cyan);
}

.method-step__deploy-log {
    display: grid;
    grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
    align-items: center;
    gap: 0.45rem;
}

.method-step__deploy-log small {
    color: #94a3b8;
    font-family: "Space Mono", monospace;
    font-size: 0.42rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.method-step__deploy-bar {
    display: block;
    height: 5px;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.82);
    background: rgba(15, 23, 42, 0.5);
    overflow: hidden;
}

.method-step__deploy-bar i {
    display: block;
    height: 100%;
    width: 72%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--kalam-cyan), #22c55e);
    transform-origin: left center;
    animation: method-deploy-propagate 2.4s ease-in-out infinite;
}

.method-step__deploy-log b {
    color: #e2e8f0;
    font-family: "Space Mono", monospace;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
}

@keyframes method-deploy-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes method-deploy-propagate {
    0%, 100% { transform: scaleX(0.5); }
    50% { transform: scaleX(1); }
}

.method-step__mock--graph {
    padding: 0.52rem 0.6rem;
    display: grid;
    gap: 0.42rem;
}

.method-step__improve-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.method-step__improve-head span,
.method-step__improve-head b {
    font-family: "Space Mono", monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.method-step__improve-head span {
    color: #94a3b8;
    font-size: 0.48rem;
}

.method-step__improve-head b {
    color: #22c55e;
    font-size: 0.54rem;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.method-step__improve-head b iconify-icon {
    color: var(--kalam-cyan);
}

.method-step__improve-chart {
    position: relative;
    overflow: hidden;
}

.method-step__improve-chart svg {
    width: 100%;
    display: block;
}

.method-step__chart-line {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: method-chart-draw 2.2s ease-out forwards;
}

.method-step__chart-area {
    opacity: 0;
    animation: method-chart-fill 2.2s ease-out 0.3s forwards;
}

.method-step__chart-dot {
    opacity: 0;
    animation: method-chart-dots 0.4s ease-out forwards;
}

.method-step__chart-dot:nth-child(3) { animation-delay: 0.1s; }
.method-step__chart-dot:nth-child(4) { animation-delay: 0.35s; }
.method-step__chart-dot:nth-child(5) { animation-delay: 0.6s; }
.method-step__chart-dot:nth-child(6) { animation-delay: 0.85s; }
.method-step__chart-dot:nth-child(7) { animation-delay: 1.1s; }

.method-step__improve-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.method-step__improve-metrics span {
    display: inline-flex;
    flex-direction: column;
    gap: 0.08rem;
    padding: 0.22rem 0.4rem;
    border-radius: 6px;
    border: 1px solid rgba(63, 63, 70, 0.82);
    background: rgba(9, 9, 11, 0.6);
}

.method-step__improve-metrics small {
    color: #94a3b8;
    font-family: "Space Mono", monospace;
    font-size: 0.38rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.method-step__improve-metrics strong {
    color: #e2e8f0;
    font-family: "Space Mono", monospace;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
}

.method-step__improve-loop {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.82);
    background: rgba(0, 194, 255, 0.06);
    color: #94a3b8;
    font-family: "Space Mono", monospace;
    font-size: 0.42rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.method-step__improve-loop iconify-icon {
    color: var(--kalam-cyan);
    animation: method-loop-spin 4s linear infinite;
}

@keyframes method-chart-draw {
    to { stroke-dashoffset: 0; }
}

@keyframes method-chart-fill {
    to { opacity: 1; }
}

@keyframes method-chart-dots {
    to { opacity: 1; }
}

@keyframes method-loop-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes method-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes method-panel-scan {
    from { left: -40%; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    to { left: 135%; opacity: 0; }
}

@keyframes method-code-type {
    0%, 12% { width: 0; opacity: 0.45; }
    30%, 62% { width: 100%; opacity: 1; }
    80%, 100% { width: 100%; opacity: 0.78; }
}

@keyframes method-code-cursor {
    0%, 45% { opacity: 1; }
    46%, 100% { opacity: 0; }
}

@keyframes method-probe-load {
    0%, 100% { transform: scaleX(0.42); }
    50% { transform: scaleX(1); }
}

@keyframes method-tune-breathe {
    0%, 100% { transform: scaleX(0.8); filter: brightness(0.95); }
    50% { transform: scaleX(1); filter: brightness(1.12); }
}

.contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(760px 320px at 20% 8%, rgba(27, 58, 107, 0.24), transparent 70%),
        radial-gradient(500px 280px at 92% 86%, rgba(0, 194, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.contact-cta__shell {
    width: min(760px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(2.2rem, 4vw, 3.4rem) clamp(2rem, 3.6vw, 2.8rem);
    border-radius: 22px;
    border: 1px solid rgba(39, 39, 42, 0.92);
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.98), rgba(9, 9, 11, 0.95));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 26px 62px rgba(0, 0, 0, 0.52);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    position: relative;
}

.contact-cta__shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(rgba(0, 194, 255, 0.03) 1px, transparent 1px) 0 0 / 100% 42px,
        linear-gradient(90deg, rgba(0, 194, 255, 0.03) 1px, transparent 1px) 0 0 / 42px 100%;
    opacity: 0.45;
    mask-image: radial-gradient(circle at 50% 50%, #000, transparent 90%);
}

.contact-cta__chip {
    width: fit-content;
    margin: 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.9);
    background: linear-gradient(to bottom, rgba(24, 24, 27, 0.94), rgba(17, 17, 19, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 0.52rem 0.86rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Space Mono", monospace;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-weight: 700;
    color: var(--kalam-cyan);
}

.contact-cta__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--kalam-cyan);
    box-shadow: 0 0 12px rgba(0, 194, 255, 0.76);
}

.contact-cta__title {
    margin-top: 1.25rem;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 0.96;
    letter-spacing: -0.015em;
    color: #f8fafc;
    text-wrap: balance;
}

.contact-cta__title span {
    color: var(--kalam-cyan);
}

.contact-cta__description {
    margin-top: 1rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    line-height: 1.55;
    color: var(--text-muted);
}

.contact-cta__actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contact-btn {
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    padding: 0.9rem 1.3rem;
    font-family: "Space Mono", monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-btn--primary {
    color: var(--surface-base);
    background: linear-gradient(to bottom, #f8fafc, #d6e5f2);
    border-top-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 24px rgba(226, 232, 240, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.contact-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 30px rgba(226, 232, 240, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-btn--whatsapp {
    color: #fff;
    background: linear-gradient(to bottom, #2dd16a, #25D366);
    border-top-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 8px 24px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-btn--whatsapp:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.contact-cta__meta {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(39, 39, 42, 0.85);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 1.5rem;
}

.contact-cta__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    color: #94a3b8;
    font-family: "Space Mono", monospace;
    font-size: 0.56rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-cta__meta iconify-icon {
    color: var(--kalam-cyan);
}


@media (max-width: 768px) {
    .methodology {
        padding: 3.8rem 0 4.4rem;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .methodology-shell {
        width: min(1120px, calc(100% - 1rem));
    }

    .methodology-head {
        margin-bottom: 1.35rem;
    }

    .methodology-kicker {
        font-size: 0.52rem;
        letter-spacing: 0.14em;
    }

    .methodology-title {
        font-size: clamp(1.9rem, 8vw, 3rem);
    }

    .methodology-title span {
        color: var(--kalam-cyan);
    }

    .methodology-subtitle {
        font-size: 0.95rem;
    }

    .methodology-timeline::before {
        left: 10px;
        transform: none;
    }

    .method-step__node {
        left: 10px;
        transform: translate(-50%, -50%);
    }

    .method-step__card {
        width: calc(100% - 30px);
        justify-self: end;
        padding: 0.82rem;
    }

    .method-step--left .method-step__card,
    .method-step--right .method-step__card {
        justify-self: end;
    }

    .method-step__panel-code {
        font-size: 0.52rem;
        letter-spacing: 0.04em;
    }

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

    .method-step__tune-grid p {
        grid-template-columns: 1fr;
        gap: 0.22rem;
    }

    .contact-cta__shell {
        width: min(760px, calc(100% - 1rem));
        border-radius: 16px;
        padding: 1.8rem 1.2rem;
    }

    .contact-cta__chip {
        font-size: 0.52rem;
        letter-spacing: 0.14em;
    }

    .contact-cta__title {
        font-size: clamp(1.85rem, 8.5vw, 3rem);
    }

    .contact-cta__description {
        font-size: 0.98rem;
    }

    .contact-btn {
        width: 100%;
        min-height: 48px;
        padding: 0.95rem 1.2rem;
        justify-content: center;
    }

    .contact-cta__meta {
        gap: 0.6rem;
    }

    .contact-cta__meta span {
        font-size: 0.5rem;
        letter-spacing: 0.12em;
    }
}

/* ─── Telefones pequenos (≤480px) ───────────────────────────────────── */
@media (max-width: 480px) {
    .top-shell { padding: 0.7rem 0.65rem; }
    .brand { font-size: 0.78rem; letter-spacing: 0.06em; }
    .init-btn { padding: 0.7rem 0.75rem; font-size: 0.52rem; }
    .hero-inner { margin-top: 2rem; padding-bottom: 3rem; }
    .headline { font-size: clamp(2.25rem, 10vw, 3.5rem); line-height: 1; }
    .subtitle { font-size: 0.95rem; }
    .cta { max-width: 100%; }
    .signal { font-size: 0.48rem; padding: 0.4rem 0.6rem; }
    .signal-row { justify-content: center; }
    .services { padding: 3.5rem 0 4rem; }
    .services-title { font-size: 2.35rem; }
    .service-card__title { font-size: 1.45rem; }
    .methodology { padding: 3rem 0 3.8rem; }
    .methodology-title { font-size: 1.6rem; }
    .methodology-subtitle { font-size: 0.9rem; }
    .method-step__card { padding: 0.75rem; }
    .about { padding: 3rem 0 3.8rem; }
    .about-owner__photo {
        width: min(280px, 100%);
        max-height: 280px;
    }
    .about-title { font-size: 1.75rem; }
    .contact-cta__title { font-size: 1.65rem; }
    .contact-cta__description { font-size: 0.92rem; }
    .site-footer { padding-left: 1rem; padding-right: 1rem; }
    .site-footer__tagline { font-size: 0.88rem; }
    .whatsapp-fab {
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(1rem, env(safe-area-inset-right));
        width: 52px;
        height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .method-step__mock--panel::after,
    .method-step__panel-code,
    .method-step__panel-code--three::after,
    .method-step__progress-bar i,
    .method-step__tune-grid i,
    .method-step__deploy-badge i,
    .method-step__deploy-bar i,
    .method-step__chart-line,
    .method-step__chart-area,
    .method-step__chart-dot,
    .method-step__improve-loop iconify-icon {
        animation: none;
    }

    .method-step__panel-code {
        width: 100%;
    }

    .method-step__deploy-bar i {
        transform: scaleX(1);
    }

    .method-step__chart-line {
        stroke-dashoffset: 0;
    }

    .method-step__chart-area,
    .method-step__chart-dot {
        opacity: 1;
    }
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 1;
    padding: clamp(2.4rem, 4vw, 3.4rem) 0 clamp(1.4rem, 2vw, 2rem);
    border-top: 1px solid rgba(39, 39, 42, 0.85);
    background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 11, 0.95) 100%);
}

.site-footer__shell {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.site-footer__top {
    display: grid;
    gap: 2rem;
    padding-bottom: clamp(1.4rem, 2.5vw, 2rem);
    border-bottom: 1px solid rgba(39, 39, 42, 0.85);
}

@media (min-width: 720px) {
    .site-footer__top {
        grid-template-columns: 1.6fr 1fr 1fr;
        align-items: start;
    }
}

.site-footer__logo {
    display: block;
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--kalam-sand);
    margin-bottom: 0.65rem;
}

.site-footer__tagline {
    font-size: 0.94rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 38ch;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-footer__nav a {
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #64748b;
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer__nav a:hover {
    color: var(--kalam-cyan);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.site-footer__whatsapp,
.site-footer__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Space Mono", monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-decoration: none;
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 63, 70, 0.85);
    background: rgba(17, 17, 19, 0.92);
    transition: border-color 0.25s ease, color 0.25s ease;
    width: fit-content;
}

.site-footer__whatsapp {
    color: #22c55e;
}

.site-footer__whatsapp:hover {
    border-color: rgba(34, 197, 94, 0.4);
}

.site-footer__linkedin {
    color: var(--kalam-cyan);
}

.site-footer__linkedin:hover {
    border-color: rgba(0, 194, 255, 0.4);
}

.site-footer__bottom {
    margin-top: clamp(1rem, 1.8vw, 1.4rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.site-footer__bottom p,
.site-footer__legal {
    font-family: "Space Mono", monospace;
    font-size: 0.54rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #475569;
}

@media (max-width: 768px) {
    .site-footer__top {
        gap: 1.4rem;
    }

    .site-footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem 1rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─── WhatsApp FAB ──────────────────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    right: max(1.5rem, env(safe-area-inset-right));
    z-index: 100;
    width: 56px;
    height: 56px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #25d366, #1aab52);
    color: #fff;
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: fab-pulse 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        0 10px 28px rgba(37, 211, 102, 0.52),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: none;
}

@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), inset 0 1px 0 rgba(255,255,255,0.25); }
    50% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.62), 0 0 0 8px rgba(37, 211, 102, 0.1), inset 0 1px 0 rgba(255,255,255,0.25); }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-fab {
        animation: none;
    }
}
