﻿@charset "UTF-8";

:root {
    --navy-950: #06101d;
    --navy-900: #091525;
    --navy-850: #0b192b;
    --navy-800: #102238;
    --ink: #112239;
    --muted: #5d6b7e;
    --line: #dfe6ed;
    --light: #f4f7f9;
    --white: #ffffff;
    --cyan: #20d7c5;
    --cyan-dark: #10b9aa;
    --blue: #3d78ff;
    --purple: #8b6cff;
    --green: #31d08b;
    --shadow: 0 22px 55px rgba(7, 23, 42, .12);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; color: var(--navy-950); background: var(--cyan); border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 82px;
    color: #dce7f3;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(6, 16, 29, .93); border-color: rgba(255, 255, 255, .08); box-shadow: 0 12px 34px rgba(0, 0, 0, .18); backdrop-filter: blur(18px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; padding: 7px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.97); box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.brand img { width: 220px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 31px; font-size: .91rem; font-weight: 560; }
.main-nav > a:not(.button) { position: relative; color: #cbd6e1; transition: color .2s ease; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; border-radius: 4px; background: var(--cyan); transition: right .25s ease; }
.main-nav > a:not(.button):hover, .main-nav > a.active { color: var(--white); }
.main-nav > a:not(.button):hover::after, .main-nav > a.active::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; border-radius: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); border-radius: 5px; transition: transform .25s ease, opacity .25s ease; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 22px; border: 1px solid transparent; border-radius: 10px; cursor: pointer; font-weight: 720; font-size: .94rem; line-height: 1; transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease; }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #031411; background: linear-gradient(135deg, #3de3d2, #18c9b8); box-shadow: 0 13px 30px rgba(32, 215, 197, .2); }
.button-primary:hover { background: linear-gradient(135deg, #5be9db, #20d7c5); box-shadow: 0 17px 34px rgba(32, 215, 197, .3); }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .04); }
.button-ghost:hover { border-color: rgba(32, 215, 197, .65); background: rgba(32, 215, 197, .08); }
.button-small { min-height: 42px; padding-inline: 17px; }
.button-link { min-height: 44px; padding-inline: 4px; color: #dbe7f3; }
.button-link:hover { color: var(--cyan); }

.section-dark { color: var(--white); background: var(--navy-950); }
.hero { position: relative; min-height: 860px; padding: 170px 0 0; overflow: hidden; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 150px; background: linear-gradient(180deg, transparent, rgba(2, 9, 17, .38)); pointer-events: none; }
.grid-pattern { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(88, 128, 160, .19) 1px, transparent 1px), linear-gradient(90deg, rgba(88, 128, 160, .19) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to bottom, black, transparent 76%); }
.hero-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(90px); opacity: .16; }
.hero-glow-one { top: -240px; left: 5%; background: var(--blue); }
.hero-glow-two { right: -180px; top: 120px; background: var(--cyan); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 74px; }
.hero-copy { padding-bottom: 32px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 21px; color: var(--cyan); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(32, 215, 197, .12), 0 0 16px rgba(32, 215, 197, .85); }
.hero h1 { max-width: 650px; margin: 0 0 25px; font-size: clamp(3rem, 5vw, 4.9rem); line-height: 1.04; letter-spacing: -.052em; font-weight: 780; }
.hero h1 span { color: transparent; background: linear-gradient(100deg, #2cdecf, #64a4ff); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 610px; margin: 0; color: #aab9c9; font-size: 1.13rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 35px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 16px 23px; margin: 34px 0 0; padding: 0; color: #8395a8; list-style: none; font-size: .78rem; }
.trust-list li { display: flex; align-items: center; gap: 6px; }
.trust-list svg { width: 15px; fill: none; stroke: var(--cyan); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual { position: relative; min-height: 520px; perspective: 1200px; }
.visual-orbit { position: absolute; left: 50%; top: 51%; border: 1px solid rgba(74, 159, 190, .19); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 620px; height: 620px; }
.orbit-two { width: 450px; height: 450px; border-style: dashed; animation: spin 48s linear infinite; }
.visual-card { border: 1px solid rgba(161, 194, 217, .17); background: linear-gradient(155deg, rgba(18, 41, 65, .94), rgba(7, 23, 39, .97)); box-shadow: 0 35px 90px rgba(0, 0, 0, .38); backdrop-filter: blur(15px); }
.visual-main { position: absolute; left: 4%; top: 44px; width: 94%; min-height: 410px; border-radius: 20px; transform: rotateY(-6deg) rotateX(2deg); overflow: hidden; }
.visual-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 50%, rgba(56, 222, 207, .04)); pointer-events: none; }
.visual-card-head { display: flex; align-items: center; gap: 13px; padding: 15px 18px; border-bottom: 1px solid rgba(255, 255, 255, .08); color: #b7c5d5; font-size: .7rem; }
.window-dots { display: flex; gap: 5px; margin-right: 4px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #66768a; }
.window-dots i:first-child { background: #e26a72; }.window-dots i:nth-child(2) { background: #dfbd5b; }.window-dots i:last-child { background: #56c88c; }
.live { display: flex; align-items: center; gap: 5px; margin-left: auto; color: #62dca2; }
.live i { width: 5px; height: 5px; border-radius: 50%; background: #62dca2; box-shadow: 0 0 9px #62dca2; }
.metric-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; padding: 25px 27px 16px; }
.metric span { display: block; color: #7f93a7; font-size: .7rem; }
.metric strong { display: block; margin: 3px 0; color: #f7fbff; font-size: 2.45rem; line-height: 1.1; }
.metric small { color: #50d998; font-size: .65rem; }
.metric-chart { display: flex; align-items: flex-end; gap: 7px; height: 76px; padding: 7px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.metric-chart i { flex: 1; height: var(--h); min-width: 8px; border-radius: 4px 4px 1px 1px; background: linear-gradient(#2ae0ce, #188e96); opacity: .78; }
.flow-list { padding: 7px 19px 18px; }
.flow-list > div { display: flex; align-items: center; gap: 11px; margin-top: 7px; padding: 10px 10px; border: 1px solid rgba(255, 255, 255, .065); border-radius: 10px; background: rgba(255, 255, 255, .025); }
.flow-icon { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 9px; }
.flow-icon svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.flow-blue { color: #71a5ff; background: rgba(61, 120, 255, .13); }.flow-green { color: #4cdf9c; background: rgba(49, 208, 139, .13); }.flow-purple { color: #a98fff; background: rgba(139, 108, 255, .13); }
.flow-list p, .floating-card p { margin: 0; }
.flow-list p { display: grid; flex: 1; }
.flow-list strong { color: #d7e3ef; font-size: .72rem; font-weight: 620; }
.flow-list small { color: #718398; font-size: .61rem; }
.flow-list b { padding: 4px 7px; color: #50d998; background: rgba(49, 208, 139, .08); border-radius: 20px; font-size: .54rem; font-weight: 650; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; padding: 12px 15px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 13px; background: rgba(10, 29, 48, .94); box-shadow: 0 18px 40px rgba(0, 0, 0, .34); backdrop-filter: blur(18px); animation: float 5s ease-in-out infinite; }
.floating-card > span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--cyan); border-radius: 9px; background: rgba(32, 215, 197, .12); font-size: .85rem; font-weight: 750; }
.floating-card svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-card p { display: grid; }
.floating-card strong { color: #e5edf5; font-size: .68rem; }
.floating-card small { color: #788a9d; font-size: .56rem; }
.floating-code { left: -8px; bottom: 21px; }
.floating-sync { right: -22px; top: 5px; animation-delay: -2.2s; }
.floating-sync > span { color: #69a1ff; background: rgba(61, 120, 255, .14); }
.tech-strip { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; margin-top: 78px; padding: 25px 0 28px; border-top: 1px solid rgba(255, 255, 255, .075); color: #75879a; font-size: .74rem; }
.tech-strip > span { color: #526579; font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.tech-strip div { display: flex; align-items: center; gap: 9px; }
.tech-strip i { width: 6px; height: 6px; border-radius: 2px; background: #375167; transform: rotate(45deg); }

.section { padding: 112px 0; }
.section-light { background: var(--light); }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 58px; }
.section-heading h2, .about-copy h2, .contact-copy h2 { margin: 0; max-width: 720px; color: var(--ink); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.13; letter-spacing: -.04em; }
.section-heading > p { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 1rem; }
.eyebrow-light { color: #0aa798; }
.section-heading-centered { display: flex; max-width: 750px; margin-inline: auto; flex-direction: column; align-items: center; gap: 0; text-align: center; }
.section-heading-centered p { margin: 18px auto 0; }

.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 19px; }
.solution-card { position: relative; min-height: 317px; padding: 34px 35px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.solution-card:hover { transform: translateY(-5px); border-color: #b9d4da; box-shadow: var(--shadow); }
.solution-card::before { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.solution-card:hover::before { transform: scaleX(1); }
.card-icon { display: grid; place-items: center; width: 49px; height: 49px; margin-bottom: 25px; color: #0eb9aa; border: 1px solid #bfebe7; border-radius: 13px; background: #eafaF8; }
.card-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 32px; right: 34px; color: #c9d1d9; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.solution-card h3 { margin: 0 0 9px; font-size: 1.31rem; letter-spacing: -.02em; }
.solution-card p { max-width: 500px; margin: 0; color: var(--muted); font-size: .9rem; }
.solution-card > a, .product-card > a { position: absolute; left: 35px; bottom: 28px; display: inline-flex; align-items: center; gap: 7px; color: #069b8e; font-size: .8rem; font-weight: 750; }
.solution-card > a span, .product-card > a span { transition: transform .2s ease; }
.solution-card > a:hover span, .product-card > a:hover span { transform: translateX(4px); }
.solutions-grid > .solution-card:last-child { grid-column: 1 / -1; min-height: 260px; }
.solution-featured { grid-row: span 2; min-height: 653px; color: var(--white); border-color: #0e2741; background: linear-gradient(150deg, #102a45, #071725); }
.solution-featured::after { content: ""; position: absolute; width: 310px; height: 310px; right: -120px; bottom: -125px; border: 1px solid rgba(43, 214, 200, .15); border-radius: 50%; box-shadow: 0 0 0 65px rgba(43, 214, 200, .025), 0 0 0 125px rgba(43, 214, 200, .025); }
.solution-featured .card-icon { color: #47e4d5; border-color: rgba(55, 224, 208, .22); background: rgba(32, 215, 197, .09); }
.solution-featured .card-number { color: #49627a; }
.solution-featured h3 { margin-top: 55px; font-size: 1.75rem; }
.solution-featured p { color: #9bafc2; font-size: .96rem; }
.solution-featured ul { display: grid; gap: 13px; margin: 32px 0 0; padding: 0; color: #c3d1df; list-style: none; font-size: .87rem; }
.solution-featured li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 10px; color: var(--cyan); border-radius: 50%; background: rgba(32, 215, 197, .09); font-size: .65rem; }
.solution-featured > a { color: var(--cyan); }

.products-section { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.product-card { position: relative; min-height: 362px; padding: 30px; color: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 15px 44px rgba(10, 26, 46, .12); transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 25px 55px rgba(10, 26, 46, .2); }
.product-card::after { content: ""; position: absolute; right: -100px; bottom: -130px; width: 300px; height: 300px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255, 255, 255, .025), 0 0 0 96px rgba(255, 255, 255, .025); }
.product-sales { background: linear-gradient(145deg, #0d5262, #092a3e 78%); }
.product-market { background: linear-gradient(145deg, #283b73, #151f47 78%); }
.product-custom { background: linear-gradient(145deg, #28445d, #112337 78%); }
.product-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.product-top > span { padding: 5px 10px; color: #a9c3d2; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: rgba(255, 255, 255, .05); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.product-symbol { display: grid; place-items: center; width: 50px; height: 50px; color: #52e1d4; border-radius: 14px; background: rgba(255, 255, 255, .09); }
.product-market .product-symbol { color: #93adff; }.product-custom .product-symbol { color: #7fd7e4; }
.product-symbol svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.product-card h3 { position: relative; z-index: 2; margin: 36px 0 11px; font-size: 1.7rem; letter-spacing: -.03em; }
.product-card p { position: relative; z-index: 2; margin: 0; color: #aebdcc; font-size: .89rem; }
.product-tags { position: absolute; z-index: 2; left: 30px; bottom: 28px; display: flex; flex-wrap: wrap; gap: 7px; }
.product-tags span { padding: 4px 9px; color: #92a9bc; border-radius: 5px; background: rgba(255, 255, 255, .07); font-size: .62rem; }
.product-card > a { z-index: 2; left: 30px; color: var(--cyan); }

.about-section { background: var(--light); }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 105px; }
.about-visual { position: relative; min-height: 500px; }
.about-shape { position: absolute; left: 8px; bottom: 3px; width: 390px; height: 390px; border-radius: 50%; background: linear-gradient(145deg, rgba(32, 215, 197, .17), rgba(61, 120, 255, .08)); }
.about-shape::before, .about-shape::after { content: ""; position: absolute; border: 1px solid rgba(24, 161, 162, .18); border-radius: 50%; }
.about-shape::before { inset: 33px; }.about-shape::after { inset: 78px; border-style: dashed; }
.about-panel { position: absolute; z-index: 2; left: 55px; top: 34px; width: calc(100% - 55px); max-width: 450px; padding: 25px; border: 1px solid #274157; border-radius: 20px; background: linear-gradient(150deg, #10263c, #071623); box-shadow: 0 32px 60px rgba(15, 40, 65, .25); transform: rotate(-2deg); }
.about-panel::before { content: ""; display: block; width: 50px; height: 8px; margin-bottom: 28px; border-radius: 8px; background: linear-gradient(90deg, #e16e76 28%, transparent 28% 36%, #ddb759 36% 64%, transparent 64% 72%, #4cce8e 72%); opacity: .8; }
.about-code { display: grid; gap: 16px; padding: 10px 5px 34px; color: #9cafc2; font: .89rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; }
.about-code i { margin-right: 22px; color: #40566b; font-style: normal; font-size: .72rem; }
.about-code .code-highlight { color: #4fe0d2; }
.about-result { display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid rgba(55, 224, 208, .13); border-radius: 12px; background: rgba(32, 215, 197, .06); }
.about-result > span { display: grid; place-items: center; width: 36px; height: 36px; color: #06241f; border-radius: 50%; background: var(--cyan); font-weight: 800; }
.about-result p { display: grid; margin: 0; }.about-result strong { color: #d7e5ef; font-size: .78rem; }.about-result small { color: #71879a; font-size: .65rem; }
.about-copy .lead { margin: 25px 0 10px; color: var(--ink); font-size: 1.06rem; font-weight: 650; }
.about-copy > p:not(.lead) { margin: 0; color: var(--muted); font-size: .93rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 28px; margin-top: 34px; }
.values-grid > div { display: flex; gap: 13px; }
.values-grid > div > span { color: #0ba899; font-size: .67rem; font-weight: 800; letter-spacing: .08em; }
.values-grid p { display: grid; margin: 0; }.values-grid strong { font-size: .88rem; }.values-grid small { color: var(--muted); font-size: .72rem; line-height: 1.55; }

.process-section { color: var(--white); background: var(--navy-900); }
.process-section .section-heading h2, .contact-copy h2 { color: var(--white); }
.process-section .section-heading > p { color: #8fa2b4; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { position: relative; min-height: 265px; padding: 31px 31px 25px; border: 1px solid rgba(255, 255, 255, .09); border-right: 0; background: rgba(255, 255, 255, .018); }
.process-list li:first-child { border-radius: 18px 0 0 18px; }.process-list li:last-child { border-right: 1px solid rgba(255, 255, 255, .09); border-radius: 0 18px 18px 0; }
.process-list li::after { content: ""; position: absolute; top: 73px; right: -13px; z-index: 3; width: 25px; height: 25px; border-top: 1px solid rgba(255, 255, 255, .12); border-right: 1px solid rgba(255, 255, 255, .12); background: var(--navy-900); transform: rotate(45deg); }
.process-list li:last-child::after { display: none; }
.process-list li > span { position: absolute; right: 22px; top: 19px; color: #41556a; font-size: .67rem; font-weight: 800; }
.process-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 28px; color: var(--cyan); border: 1px solid rgba(32, 215, 197, .17); border-radius: 13px; background: rgba(32, 215, 197, .07); }
.process-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.process-list h3 { margin: 0 0 9px; font-size: 1.05rem; }.process-list p { margin: 0; color: #8498ab; font-size: .78rem; line-height: 1.65; }

.contact-section { position: relative; color: var(--white); background: #07121f; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(80, 116, 145, .28) 1px, transparent 1px), linear-gradient(90deg, rgba(80, 116, 145, .28) 1px, transparent 1px); background-size: 58px 58px; mask-image: radial-gradient(circle at 30% 50%, black, transparent 58%); }
.contact-glow { position: absolute; left: -230px; top: 5%; width: 600px; height: 600px; border-radius: 50%; background: var(--blue); filter: blur(120px); opacity: .08; }
.contact-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
.contact-copy > p { max-width: 470px; margin: 23px 0 35px; color: #94a7b9; }
.contact-location { display: flex; align-items: center; gap: 15px; }
.contact-location > span { display: grid; place-items: center; width: 45px; height: 45px; color: var(--cyan); border-radius: 12px; background: rgba(32, 215, 197, .09); }
.contact-location svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-location p { display: grid; margin: 0; }.contact-location strong { font-size: .84rem; }.contact-location small { color: #71869b; font-size: .74rem; }
.contact-form { padding: 35px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 22px; background: rgba(14, 34, 54, .72); box-shadow: 0 30px 70px rgba(0, 0, 0, .25); backdrop-filter: blur(18px); }
.website-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label { display: block; margin-bottom: 17px; color: #bdc9d5; font-size: .72rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; color: #edf5fb; border: 1px solid #263d53; border-radius: 9px; outline: 0; background: #0b1d2e; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { height: 46px; padding: 0 13px; }.contact-form textarea { min-height: 115px; padding: 12px 13px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #54697d; }
.contact-form select { color: #899bae; }.contact-form select:valid { color: #edf5fb; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(32, 215, 197, .08); }
.contact-form .invalid { border-color: #f1767c; }
.field-error { display: none; margin-top: 4px; color: #ff9297; font-size: .64rem; font-weight: 500; }.invalid + .field-error { display: block; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 5px; }
.form-footer p { max-width: 240px; margin: 0; color: #60768a; font-size: .65rem; line-height: 1.5; }
.form-status { min-height: 0; margin-top: 0; font-size: .75rem; transition: all .2s ease; }
.form-status.visible { min-height: 38px; margin-top: 15px; padding: 9px 12px; color: #8ce7c0; border: 1px solid rgba(49, 208, 139, .18); border-radius: 8px; background: rgba(49, 208, 139, .07); }
.form-status.error { color: #ffb0b4; border-color: rgba(241, 118, 124, .22); background: rgba(241, 118, 124, .08); }
.contact-form button:disabled { cursor: wait; opacity: .72; transform: none; }

.site-footer { color: #8799aa; background: #040c16; }
.footer-top { display: grid; grid-template-columns: 1.4fr .7fr .9fr 1.15fr; gap: 50px; padding: 70px 0 56px; }
.footer-brand img { width: 220px; height: auto; padding: 8px 10px; border-radius: 12px; background: #fff; }.footer-brand p { max-width: 250px; margin: 17px 0 0; font-size: .78rem; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-nav strong, .footer-cta strong { margin-bottom: 8px; color: #dbe6ef; font-size: .78rem; }
.footer-nav a { font-size: .73rem; transition: color .2s ease; }.footer-nav a:hover { color: var(--cyan); }
.footer-cta p { margin: 0 0 15px; font-size: .73rem; }.footer-cta a { display: inline-flex; gap: 7px; color: var(--cyan); font-size: .75rem; font-weight: 750; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 72px; border-top: 1px solid rgba(255, 255, 255, .07); font-size: .68rem; }.footer-bottom p { margin: 0; }.footer-bottom a { color: #9eb0c0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.2, .75, .3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

@media (max-width: 1040px) {
    .main-nav { gap: 19px; }
    .hero { min-height: auto; padding-top: 145px; }
    .hero-grid { grid-template-columns: 1fr; gap: 45px; }
    .hero-copy { max-width: 780px; }
    .hero h1 { max-width: 760px; }
    .hero-visual { width: min(100%, 700px); margin-inline: auto; }
    .tech-strip { margin-top: 55px; }
    .about-grid { gap: 55px; }
    .about-panel { left: 10px; width: calc(100% - 10px); }
    .process-list { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .process-list li, .process-list li:first-child, .process-list li:last-child { min-height: 235px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 16px; }
    .process-list li::after { display: none; }
    .footer-top { grid-template-columns: 1.3fr .7fr .9fr; }.footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
    .site-header { height: 70px; background: rgba(6, 16, 29, .96); }
    .brand { padding: 6px 8px; }.brand img { width: 178px; }
    .menu-toggle { display: block; }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 70px 0 auto; display: grid; gap: 0; max-height: 0; padding: 0 20px; overflow: hidden; background: #071421; border-bottom: 1px solid rgba(255, 255, 255, .08); opacity: 0; transition: max-height .3s ease, opacity .2s ease, padding .3s ease; }
    .main-nav.open { max-height: 500px; padding: 14px 20px 24px; opacity: 1; }
    .main-nav > a:not(.button) { padding: 13px 5px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
    .main-nav > a::after { display: none; }
    .main-nav .button { margin-top: 13px; }
    .section { padding: 83px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 19px; margin-bottom: 42px; }
    .section-heading-centered { display: flex; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { min-height: 380px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { width: min(100%, 520px); min-height: 460px; margin-inline: auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 45px; }
    .contact-copy { max-width: 650px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }.footer-brand { grid-column: 1 / -1; }.footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .hero { padding-top: 120px; }
    .hero h1 { font-size: clamp(2.58rem, 12vw, 3.6rem); }
    .hero-copy > p { font-size: 1rem; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; }
    .hero-actions .button { width: 100%; }
    .trust-list { display: grid; gap: 10px; }
    .hero-visual { min-height: 430px; margin-top: 5px; }
    .visual-main { left: 0; width: 100%; top: 35px; transform: none; }
    .metric-row { padding-inline: 18px; }
    .floating-sync { right: -6px; top: 0; }.floating-code { left: -5px; bottom: -8px; }
    .orbit-one { width: 450px; height: 450px; }.orbit-two { width: 320px; height: 320px; }
    .tech-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 55px; }
    .tech-strip > span { grid-column: 1 / -1; }
    .solutions-grid { grid-template-columns: 1fr; }
    .solution-card { min-height: 350px; padding: 28px; }
    .solution-featured { min-height: 500px; }
    .solutions-grid > .solution-card:last-child { grid-column: auto; min-height: 350px; }
    .solution-card > a { left: 28px; }.solution-featured h3 { margin-top: 25px; }
    .section-heading h2, .about-copy h2, .contact-copy h2 { font-size: 2.25rem; }
    .about-visual { min-height: 390px; }.about-panel { top: 10px; }.about-shape { width: 300px; height: 300px; }
    .values-grid { grid-template-columns: 1fr; }
    .process-list { grid-template-columns: 1fr; }
    .process-list li { min-height: 210px; }
    .contact-form { padding: 23px 18px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer .button { width: 100%; }
    .footer-top { grid-template-columns: 1fr; gap: 35px; }.footer-brand, .footer-cta { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
}

@media (max-width: 420px) {
    .hero-visual { min-height: 390px; }
    .visual-main { min-height: 360px; }
    .visual-card-head { padding-inline: 12px; }
    .flow-list { padding-inline: 10px; }.flow-list b { display: none; }
    .metric strong { font-size: 2rem; }
    .floating-card { display: none; }
    .about-panel { left: 0; width: 100%; padding: 19px; }.about-code { font-size: .78rem; }.about-code i { margin-right: 13px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* =========================================================
   Identidade Dornelles — edição nostálgica anos 80/90
   Inspirada na linguagem gráfica das embalagens brasileiras
   de tecnologia da época, preservando a marca oficial.
   ========================================================= */
:root {
    --navy-950: #101010;
    --navy-900: #151515;
    --navy-850: #1b1b1b;
    --navy-800: #242424;
    --ink: #171717;
    --muted: #575757;
    --line: #bfc0bd;
    --light: #f1efe7;
    --white: #fffefa;
    --cyan: #0a43a8;
    --cyan-dark: #073681;
    --blue: #0a43a8;
    --purple: #d32831;
    --green: #168d55;
    --retro-red: #cf2730;
    --retro-orange: #e99524;
    --retro-yellow: #f2c22f;
    --retro-paper: #f4f1e8;
    --retro-grid: rgba(41, 48, 55, .13);
    --shadow: 9px 9px 0 rgba(15, 15, 15, .12);
    --radius: 4px;
}

body {
    color: var(--ink);
    background: var(--retro-paper);
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(var(--retro-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--retro-grid) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .4;
}

.skip-link {
    color: #fff;
    background: var(--blue);
    border-radius: 2px;
}

.site-header,
.site-header.scrolled {
    color: var(--ink);
    background: rgba(244, 241, 232, .96);
    border-bottom: 2px solid #171717;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0 60%, var(--retro-red) 60% 74%, var(--retro-orange) 74% 87%, var(--retro-yellow) 87%);
}

.brand {
    padding: 6px 8px;
    border: 1px solid #171717;
    border-radius: 2px;
    background: #fff;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .12);
}

.main-nav {
    font-weight: 700;
    letter-spacing: .015em;
}

.main-nav > a:not(.button) {
    color: #272727;
}

.main-nav > a:not(.button)::after {
    bottom: -9px;
    height: 3px;
    border-radius: 0;
    background: var(--retro-red);
}

.main-nav > a:not(.button):hover,
.main-nav > a.active {
    color: var(--blue);
}

.menu-toggle span {
    background: #171717;
    border-radius: 0;
}

.button {
    border-radius: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .035em;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .18);
}

.button:hover {
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .18);
}

.button-primary,
.button-primary:hover {
    color: #fff;
    border-color: #062c70;
    background: var(--blue);
}

.button-ghost {
    color: #fff;
    border-color: #171717;
    background: #171717;
}

.button-ghost:hover {
    color: #fff;
    border-color: var(--retro-red);
    background: var(--retro-red);
}

.button-link {
    color: #171717;
    box-shadow: none;
}

.button-link:hover {
    color: var(--blue);
    box-shadow: none;
}

.section-dark,
.hero {
    color: var(--ink);
    background: var(--retro-paper);
}

.hero {
    border-bottom: 4px solid #171717;
}

.hero::before {
    content: "";
    position: absolute;
    top: 112px;
    right: 5%;
    width: 136px;
    height: 136px;
    background:
        linear-gradient(90deg, transparent 0 25%, var(--retro-yellow) 25% 50%, transparent 50% 75%, var(--retro-orange) 75%),
        linear-gradient(transparent 0 25%, var(--retro-red) 25% 50%, transparent 50% 75%, var(--blue) 75%);
    background-size: 34px 34px;
    opacity: .78;
}

.hero::after {
    height: 14px;
    background: linear-gradient(90deg, var(--blue) 0 58%, var(--retro-red) 58% 72%, var(--retro-orange) 72% 86%, var(--retro-yellow) 86%);
}

.grid-pattern {
    opacity: .72;
    background-image:
        linear-gradient(rgba(45, 48, 51, .15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 48, 51, .15) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, black 0 78%, transparent 98%);
}

.hero-glow {
    display: none;
}

.eyebrow,
.eyebrow-light {
    color: var(--retro-red);
    font-weight: 900;
    letter-spacing: .17em;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 0;
    background: var(--blue);
    box-shadow: 5px 0 0 var(--retro-red), 10px 0 0 var(--retro-yellow);
    transform: rotate(45deg);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.045em;
}

.hero h1 {
    color: #111;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, .85);
}

.hero h1 span {
    color: var(--blue);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero-copy > p {
    color: #3f3f3f;
}

.trust-list {
    color: #4b4b4b;
    font-weight: 650;
}

.trust-list svg {
    stroke: var(--blue);
}

.visual-orbit {
    border-color: rgba(10, 67, 168, .2);
    border-radius: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.orbit-two {
    animation: none;
}

.visual-card {
    color: #fff;
    border: 3px solid #101010;
    background: #151515;
    box-shadow: 12px 12px 0 rgba(10, 67, 168, .16);
    backdrop-filter: none;
}

.visual-main {
    border-radius: 3px;
    transform: rotateY(-3deg) rotateX(1deg);
}

.visual-main::before {
    content: "";
    display: block;
    height: 9px;
    background: linear-gradient(90deg, var(--retro-red) 0 47%, #7e161d 47% 49%, var(--retro-red) 49% 74%, #b01e27 74%);
}

.visual-main::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 18px 18px;
}

.visual-card-head {
    border-color: #3d3d3d;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.window-dots i,
.window-dots i:first-child,
.window-dots i:nth-child(2),
.window-dots i:last-child {
    border-radius: 0;
}

.live,
.metric small,
.flow-list b {
    color: #f3d75b;
}

.live i {
    border-radius: 0;
    background: #f3d75b;
    box-shadow: none;
}

.metric span,
.flow-list small,
.floating-card small {
    color: #aaa;
}

.metric-chart {
    border-color: #444;
}

.metric-chart i {
    border-radius: 0;
    background: var(--blue);
    opacity: 1;
}

.flow-list > div {
    border-color: #3c3c3c;
    border-radius: 0;
    background: #1f1f1f;
}

.flow-icon,
.floating-card > span {
    border-radius: 0;
}

.flow-blue,
.flow-green,
.flow-purple {
    color: #fff;
    background: var(--blue);
}

.flow-green { background: var(--retro-red); }
.flow-purple { background: var(--retro-orange); color: #181818; }

.flow-list b {
    border-radius: 0;
    background: #313131;
}

.floating-card {
    border: 2px solid #151515;
    border-radius: 2px;
    background: var(--retro-paper);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .17);
    backdrop-filter: none;
}

.floating-card > span {
    color: #fff;
    background: var(--blue);
}

.floating-card strong {
    color: #171717;
}

.tech-strip {
    border-color: rgba(23, 23, 23, .25);
    color: #343434;
}

.tech-strip > span {
    color: var(--blue);
}

.tech-strip i {
    border-radius: 0;
    background: var(--retro-red);
}

.section-light,
.about-section {
    background-color: var(--retro-paper);
    background-image:
        linear-gradient(rgba(41, 48, 55, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 48, 55, .1) 1px, transparent 1px);
    background-size: 24px 24px;
}

.products-section {
    background: #fffefa;
}

.section-heading > p,
.about-copy > p:not(.lead),
.values-grid small {
    color: #555;
}

.solution-card {
    border: 2px solid #222;
    border-radius: 3px;
    background: #fffefa;
    box-shadow: 5px 5px 0 rgba(17, 17, 17, .09);
}

.solution-card:hover {
    border-color: var(--blue);
    box-shadow: 8px 8px 0 rgba(10, 67, 168, .16);
}

.solution-card::before {
    height: 7px;
    background: linear-gradient(90deg, var(--blue) 0 58%, var(--retro-red) 58% 74%, var(--retro-orange) 74% 88%, var(--retro-yellow) 88%);
}

.card-icon {
    color: #fff;
    border: 0;
    border-radius: 0;
    background: var(--blue);
}

.card-number {
    color: var(--retro-red);
}

.solution-card > a,
.product-card > a {
    color: var(--blue);
}

.solution-featured {
    color: #fff;
    border-color: #111;
    background-color: #151515;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 18px 18px;
}

.solution-featured::after {
    width: 170px;
    height: 170px;
    right: -35px;
    bottom: -35px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, transparent 0 25%, var(--retro-yellow) 25% 50%, transparent 50% 75%, var(--retro-orange) 75%),
        linear-gradient(transparent 0 25%, var(--retro-red) 25% 50%, transparent 50% 75%, var(--blue) 75%);
    background-size: 42px 42px;
    box-shadow: none;
    opacity: .7;
}

.solution-featured .card-icon {
    color: #fff;
    border: 0;
    background: var(--retro-red);
}

.solution-featured .card-number {
    color: var(--retro-yellow);
}

.solution-featured p,
.solution-featured ul {
    color: #d6d6d6;
}

.solution-featured li::before {
    color: #111;
    border-radius: 0;
    background: var(--retro-yellow);
}

.solution-featured > a {
    color: #fff;
    border-bottom: 2px solid var(--retro-red);
}

.product-card {
    border: 3px solid #111;
    border-radius: 3px;
    box-shadow: 7px 7px 0 rgba(17, 17, 17, .14);
}

.product-card:hover {
    box-shadow: 10px 10px 0 rgba(10, 67, 168, .18);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 18px 18px;
}

.product-card::after {
    width: 126px;
    height: 126px;
    right: -12px;
    bottom: -12px;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, transparent 0 25%, var(--retro-yellow) 25% 50%, transparent 50% 75%, var(--retro-orange) 75%),
        linear-gradient(transparent 0 25%, var(--retro-red) 25% 50%, transparent 50% 75%, var(--blue) 75%);
    background-size: 31px 31px;
    box-shadow: none;
    opacity: .45;
}

.product-sales,
.product-market,
.product-custom {
    background: #171717;
}

.product-market { background: #0b377e; }
.product-custom { background: #292929; }

.product-top > span,
.product-tags span {
    border-radius: 0;
}

.product-symbol {
    border-radius: 0;
    color: #fff;
    background: var(--retro-red);
}

.product-market .product-symbol {
    color: #111;
    background: var(--retro-yellow);
}

.product-custom .product-symbol {
    color: #fff;
    background: var(--blue);
}

.about-shape {
    border: 2px solid #181818;
    border-radius: 0;
    background:
        linear-gradient(rgba(10, 67, 168, .1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 67, 168, .1) 1px, transparent 1px),
        #f7f4ec;
    background-size: 20px 20px;
    transform: rotate(8deg);
}

.about-shape::before,
.about-shape::after {
    border-color: rgba(207, 39, 48, .4);
    border-radius: 0;
}

.about-panel {
    border: 3px solid #111;
    border-radius: 3px;
    background: #171717;
    box-shadow: 10px 10px 0 rgba(10, 67, 168, .2);
}

.about-panel::before {
    height: 10px;
    border-radius: 0;
    background: linear-gradient(90deg, var(--retro-red) 0 32%, var(--retro-yellow) 32% 64%, var(--blue) 64%);
}

.about-code .code-highlight {
    color: #f4c932;
}

.about-result {
    border-color: #555;
    border-radius: 0;
    background: #252525;
}

.about-result > span {
    color: #fff;
    border-radius: 0;
    background: var(--blue);
}

.values-grid > div > span {
    color: var(--retro-red);
}

.process-section {
    color: #fff;
    border-top: 8px solid var(--retro-red);
    background-color: #171717;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.process-list li,
.process-list li:first-child,
.process-list li:last-child {
    border-color: #555;
    border-radius: 0;
    background: rgba(255, 255, 255, .025);
}

.process-list li::after {
    background: #171717;
}

.process-list li > span {
    color: var(--retro-yellow);
}

.process-icon {
    color: #fff;
    border: 0;
    border-radius: 0;
    background: var(--blue);
}

.process-list li:nth-child(2) .process-icon { background: var(--retro-red); }
.process-list li:nth-child(3) .process-icon { color: #111; background: var(--retro-yellow); }
.process-list li:nth-child(4) .process-icon { background: var(--retro-orange); }

.process-list p,
.process-section .section-heading > p {
    color: #c0c0c0;
}

.contact-section {
    color: var(--ink);
    border-top: 4px solid #111;
    background: var(--retro-paper);
}

.contact-section::before {
    opacity: .75;
    background-image:
        linear-gradient(rgba(41, 48, 55, .13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(41, 48, 55, .13) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: none;
}

.contact-glow {
    display: none;
}

.contact-copy h2 {
    color: #171717;
}

.contact-copy > p {
    color: #4d4d4d;
}

.contact-location > span {
    color: #fff;
    border-radius: 0;
    background: var(--blue);
}

.contact-location small {
    color: #666;
}

.contact-form {
    border: 3px solid #111;
    border-radius: 3px;
    background: #fffefa;
    box-shadow: 10px 10px 0 rgba(10, 67, 168, .15);
    backdrop-filter: none;
}

.contact-form::before {
    content: "";
    display: block;
    height: 8px;
    margin: -35px -35px 28px;
    background: linear-gradient(90deg, var(--blue) 0 58%, var(--retro-red) 58% 72%, var(--retro-orange) 72% 86%, var(--retro-yellow) 86%);
}

.contact-form label {
    color: #292929;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    color: #181818;
    border: 1px solid #4a4a4a;
    border-radius: 0;
    background: #f8f6ef;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;
}

.contact-form select,
.contact-form select:valid {
    color: #252525;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 4px 4px 0 rgba(10, 67, 168, .12);
}

.form-footer p {
    color: #666;
}

.site-footer {
    color: #bdbdbd;
    border-top: 8px solid var(--blue);
    background-color: #111;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 24px 24px;
}

.footer-brand img {
    padding: 8px 10px;
    border: 2px solid #ddd;
    border-radius: 2px;
    background: #fff;
}

.footer-nav strong,
.footer-cta strong {
    color: #fff;
}

.footer-nav a:hover,
.footer-cta a {
    color: #f3c934;
}

.footer-bottom {
    border-color: #444;
}

:focus-visible {
    outline-color: var(--retro-red);
}

@media (max-width: 820px) {
    .site-header {
        background: rgba(244, 241, 232, .98);
    }

    .main-nav {
        background: #f4f1e8;
        border-color: #171717;
    }

    .main-nav > a:not(.button) {
        color: #181818;
        border-color: rgba(23, 23, 23, .14);
    }
}

@media (max-width: 640px) {
    .hero::before {
        top: 92px;
        right: -18px;
        width: 102px;
        height: 102px;
        background-size: 25px 25px;
        opacity: .5;
    }

    .contact-form::before {
        margin: -23px -18px 24px;
    }
}

/* =========================================================
   Experiência técnica e sistemas legados
   ========================================================= */
.experience-section {
    position: relative;
    color: #fff;
    border-top: 8px solid var(--blue);
    border-bottom: 8px solid var(--retro-red);
    background-color: #171717;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 24px 24px;
    overflow: hidden;
}

.experience-section::before {
    content: "DORNELLES / TECNOLOGIA APLICADA";
    position: absolute;
    top: 30px;
    right: -55px;
    padding: 7px 65px;
    color: #111;
    background: var(--retro-yellow);
    border: 2px solid #111;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .13em;
    transform: rotate(8deg);
}

.experience-section .section-heading h2 {
    color: #fff;
}

.experience-section .section-heading > p {
    color: #c3c3c3;
}

.experience-section .eyebrow {
    color: var(--retro-yellow);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.experience-card {
    position: relative;
    min-height: 390px;
    padding: 34px 34px 30px;
    color: #181818;
    border: 3px solid #0e0e0e;
    background: #fffefa;
    box-shadow: 8px 8px 0 rgba(10, 67, 168, .45);
    overflow: hidden;
}

.experience-card:nth-child(2) {
    box-shadow: 8px 8px 0 rgba(207, 39, 48, .48);
}

.experience-card:nth-child(3) {
    box-shadow: 8px 8px 0 rgba(233, 149, 36, .5);
}

.experience-card:nth-child(4) {
    box-shadow: 8px 8px 0 rgba(242, 194, 47, .52);
}

.experience-card::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 130px;
    height: 130px;
    background:
        linear-gradient(90deg, transparent 0 25%, var(--retro-yellow) 25% 50%, transparent 50% 75%, var(--retro-orange) 75%),
        linear-gradient(transparent 0 25%, var(--retro-red) 25% 50%, transparent 50% 75%, var(--blue) 75%);
    background-size: 32px 32px;
    opacity: .19;
}

.experience-index {
    position: absolute;
    top: 24px;
    right: 26px;
    color: var(--retro-red);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.experience-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    color: #fff;
    background: var(--blue);
    border: 2px solid #111;
    box-shadow: 4px 4px 0 rgba(17, 17, 17, .17);
}

.experience-card:nth-child(2) .experience-icon { background: var(--retro-red); }
.experience-card:nth-child(3) .experience-icon { color: #111; background: var(--retro-yellow); }
.experience-card:nth-child(4) .experience-icon { background: var(--retro-orange); }

.experience-icon svg {
    width: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.experience-card h3 {
    position: relative;
    z-index: 1;
    max-width: 390px;
    margin: 0 0 11px;
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.experience-card > p {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 0 22px;
    color: #555;
    font-size: .9rem;
}

.experience-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #303030;
    font-size: .81rem;
    line-height: 1.5;
}

.experience-card li::before {
    content: "";
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    margin-top: 6px;
    background: var(--blue);
    box-shadow: 4px 0 0 var(--retro-red);
}

.legacy-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    margin-top: 42px;
    padding: 27px 28px;
    color: #181818;
    border: 3px solid #111;
    background: var(--retro-paper);
    box-shadow: 9px 9px 0 rgba(242, 194, 47, .48);
}

.legacy-badge {
    padding: 11px 13px;
    color: #fff;
    background: var(--retro-red);
    border: 2px solid #111;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-align: center;
}

.legacy-banner strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.02rem;
}

.legacy-banner p {
    margin: 0;
    color: #555;
    font-size: .79rem;
}

.stack-board {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    margin-top: 25px;
    padding: 24px 27px;
    border: 2px solid #555;
    background: #222;
}

.stack-title {
    max-width: 190px;
    color: var(--retro-yellow);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1.5;
    text-transform: uppercase;
}

.stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-tags span {
    padding: 7px 10px;
    color: #ededed;
    border: 1px solid #666;
    background: #171717;
    font: 700 .67rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
}

@media (max-width: 1040px) {
    .legacy-banner {
        grid-template-columns: auto 1fr;
    }

    .legacy-banner .button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: auto;
    }

    .experience-section::before {
        display: none;
    }

    .stack-board {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stack-title {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .experience-card {
        padding: 28px 24px;
        box-shadow: 6px 6px 0 rgba(10, 67, 168, .45);
    }

    .legacy-banner {
        grid-template-columns: 1fr;
        padding: 23px 20px;
    }

    .legacy-banner .button {
        width: 100%;
    }

    .legacy-badge {
        justify-self: start;
    }

    .stack-board {
        padding: 20px;
    }
}


/* =========================================================
   Área do cliente e inteligência artificial
   ========================================================= */
.solutions-grid > .solution-card:last-child {
    grid-column: auto;
    min-height: 317px;
}

.solution-ai .card-icon {
    color: #fff;
    border-color: #111;
    background: var(--retro-red);
}

.solution-ai::after {
    content: "IA";
    position: absolute;
    right: 22px;
    bottom: 8px;
    color: rgba(10, 67, 168, .07);
    font-size: 6.5rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -.09em;
    pointer-events: none;
}

.client-support-box {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px 16px;
    max-width: 570px;
    margin-top: 30px;
    padding: 20px;
    color: #181818;
    border: 3px solid #111;
    background: var(--retro-paper);
    box-shadow: 7px 7px 0 rgba(10, 67, 168, .55);
}

.client-support-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    border: 2px solid #111;
    background: var(--blue);
}

.client-support-icon svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.client-support-box strong {
    display: block;
    margin-bottom: 3px;
    font-size: .92rem;
}

.client-support-box p {
    margin: 0;
    color: #555;
    font-size: .72rem;
    line-height: 1.5;
}

.client-support-box .button {
    grid-column: 1 / -1;
    width: 100%;
}

.button-support,
.button-support:hover {
    color: #fff;
    border-color: #111;
    background: var(--retro-red);
}

.support-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 58px;
    padding: 9px 16px 9px 11px;
    color: #fff;
    border: 2px solid #111;
    background: var(--blue);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .28);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.support-float:hover {
    color: #fff;
    background: var(--retro-red);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .28);
}

.support-float > svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-float > span {
    display: grid;
    line-height: 1.15;
}

.support-float small {
    color: #d7e4ff;
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.support-float strong {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.footer-cta .footer-support-link {
    display: inline-flex;
    margin-top: 10px;
    color: #f2c22f;
}

@media (max-width: 640px) {
    .solutions-grid > .solution-card:last-child {
        min-height: 350px;
    }

    .support-float {
        right: 12px;
        bottom: 12px;
        min-height: 52px;
        padding: 8px 12px;
    }

    .support-float small {
        display: none;
    }

    .support-float strong {
        font-size: .68rem;
    }
}
