:root {
    --bg: #0a0d10;
    --bg-panel: #12161b;
    --bg-panel-2: #161b21;
    --border: #232a32;
    --border-soft: #1a2027;
    --text: #e7edf2;
    --text-muted: #8b98a5;
    --text-dim: #5a6672;
    --green: #36D7E4;
    --green-dim: rgba(54, 215, 228, .16);
    --amber: #ffb454;
    --blue: #5ec8f2;
    --disp: 'Space Grotesk', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--green);
    color: #06110a;
}

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

/* background grid */

.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--border-soft) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 85%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 85%);
    opacity: .5;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* NAV */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 13, 16, .72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-soft);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-family: var(--mono);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
}

.logo .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: blink 2.4s infinite;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .3px;
    transition: color .2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.status-pill {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--green);
    border: 1px solid rgba(54, 215, 228, .35);
    background: var(--green-dim);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: .5px;
}

.status-pill .ping {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 1.6s infinite;
}

.menu-toggle {
    display: none;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .25;
    }
}

/* HERO */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 32px 80px;
    overflow: hidden;
}

.circuit-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.glow-spot {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 20%), rgba(54, 215, 228, .10), transparent 70%);
    transition: background .1s ease-out;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green);
}

h1.headline {
    font-family: var(--disp);
    font-weight: 600;
    font-size: clamp(38px, 6.4vw, 84px);
    line-height: 1.02;
    letter-spacing: -.02em;
    max-width: 920px;
    color: var(--text);
}

h1.headline .accent {
    color: var(--green);
}

.cursor {
    display: inline-block;
    width: .5ch;
    background: var(--green);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

.hero-sub {
    font-family: var(--body);
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 26px 0 40px;
    line-height: 1.65;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    font-family: var(--mono);
    font-size: 13.5px;
    letter-spacing: .4px;
    color: #06110a;
    background: var(--green);
    padding: 14px 26px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 0 0 rgba(54, 215, 228, 0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(54, 215, 228, .25);
}

.btn-ghost {
    font-family: var(--mono);
    font-size: 13.5px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 14px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--text-dim);
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 32px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--text-dim), transparent);
    animation: scrollpulse 2s infinite;
}

@keyframes scrollpulse {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* METRICS STRIP */

.metrics {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, .012);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1180px;
    margin: 0 auto;
}

.metric {
    padding: 34px 28px;
    border-right: 1px solid var(--border-soft);
}

.metric:last-child {
    border-right: none;
}

.metric .num {
    font-family: var(--disp);
    font-size: 38px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.metric .num span.plus {
    color: var(--green);
    font-size: 22px;
}

.metric .label {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-dim);
    margin-top: 6px;
    letter-spacing: .6px;
    text-transform: uppercase;
}

/* SECTION HEADER */

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-head {
    max-width: 640px;
    margin-bottom: 50px;
}

.section-head .eyebrow {
    margin-bottom: 16px;
}

.section-head h2 {
    font-family: var(--disp);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.15;
}

.section-head p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 520px;
}

/* SERVICES - control panel cards */

.panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
}

.panel {
    background: var(--bg-panel);
    padding: 36px 30px 30px;
    position: relative;
    transition: background .25s;
}

.panel:hover {
    background: var(--bg-panel-2);
}

.panel-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 26px;
}

.panel-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: .25s;
}

.panel.on .panel-icon {
    border-color: rgba(54, 215, 228, .4);
    color: var(--green);
    box-shadow: 0 0 18px rgba(54, 215, 228, .15) inset;
}

/* toggle switch */

.toggle {
    width: 42px;
    height: 22px;
    border-radius: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .25s, border-color .25s;
}

.toggle .knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--text-dim);
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), background .25s;
}

.panel.on .toggle {
    background: var(--green-dim);
    border-color: rgba(54, 215, 228, .5);
}

.panel.on .toggle .knob {
    transform: translateX(20px);
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.toggle:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.panel h3 {
    font-family: var(--disp);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -.01em;
}

.panel .status-text {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-dim);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    transition: color .25s;
}

.panel.on .status-text {
    color: var(--green);
}

.panel p.desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease, margin-top .3s ease;
}

.panel.on p.desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 2px;
}

.panel .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.panel .tag {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-dim);
    border: 1px solid var(--border-soft);
    padding: 3px 8px;
    border-radius: 5px;
}

/* ABOUT / FAQ terminal accordion */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.terminal {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-panel);
    overflow: hidden;
}

.terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg-panel-2);
}

.terminal-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
}

.terminal-bar .path {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    margin-left: 8px;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--mono);
    font-size: 14px;
}

.faq-q .qmark {
    color: var(--green);
}

.faq-q .chev {
    color: var(--text-dim);
    transition: transform .25s;
    flex-shrink: 0;
    font-size: 12px;
}

.faq-item.open .chev {
    transform: rotate(90deg);
    color: var(--green);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-a p {
    padding: 0 22px 22px 22px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.side-copy h6 {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.side-copy h2 {
    font-family: var(--disp);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -.01em;
    margin-bottom: 18px;
}

.side-copy p {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* CONTACT */

.section2 {
    background: var(--bg-panel);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-dim);
    margin-bottom: 8px;
    letter-spacing: .5px;
}

.field label::before {
    content: '> ';
    color: var(--green);
}

.field input,
.field textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--text);
    font-family: var(--body);
    font-size: 14.5px;
    transition: border-color .2s, box-shadow .2s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(54, 215, 228, .12);
}

.field textarea {
    min-height: 110px;
    resize: vertical;
}

.submit-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.contact-note {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-dim);
}

footer {
    padding: 36px 0;
    text-align: center;
}

footer p {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-dim);
}

footer a{
    color:#36D7E4;
    text-decoration:none;
}

footer a:hover{
    text-decoration:underline;
}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(54, 215, 228, .3);
    transition: transform .2s;
}

.wa-float:hover {
    transform: scale(1.08);
}

@media (max-width:900px) {
    .panels {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric:nth-child(2) {
        border-right: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* LOCATION */

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.addr-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-panel);
    padding: 26px 26px 24px;
    margin-bottom: 20px;
}

.addr-card .addr-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.addr-card .addr-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1px solid rgba(54, 215, 228, .4);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(54, 215, 228, .12) inset;
}

.addr-card .addr-text .label {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-dim);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.addr-card .addr-text p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.55;
}

.addr-card .addr-text p .cep {
    font-family: var(--mono);
    color: var(--text-muted);
    font-size: 13.5px;
}

.coverage-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin: 26px 0 14px;
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.coverage-list .tag {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 7px 12px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color .2s, color .2s;
}

.coverage-list .tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.coverage-list .tag:hover {
    border-color: rgba(54, 215, 228, .4);
    color: var(--text);
}

.map-frame {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-panel);
}

.map-frame .terminal-bar .path {
    margin-left: 0;
}

.map-frame iframe {
    width: 100%;
    height: 200px;
    border: 0;
    display: block;
    filter: invert(90%) hue-rotate(180deg) contrast(90%) saturate(120%);
}

@media (max-width:900px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* pdf */

.pdf-cta {
    margin-top: 48px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: var(--bg-panel);
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.pdf-cta-text h3 {
    font-family: var(--disp);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}

.pdf-cta-text p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 420px;
}

.pdf-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width:900px) {
    .pdf-cta {
        padding: 30px 26px;
    }
}

/* Cookie Banner */

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    background: #12161b;
    border: 1px solid #232a32;
    border-radius: 14px;
    padding: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .45);

    display: none;
    animation: cookieUp .35s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-content h4 {
    margin-bottom: 8px;
    color: #36D7E4;
    font-family: 'Space Grotesk', sans-serif;
}

.cookie-content p {
    color: #b8c1ca;
    font-size: 14px;
    line-height: 1.6;
    max-width: 650px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 12px 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    transition: .2s;
}

.btn-cookie-primary {
    background: #36D7E4;
    color: #06110a;
}

.btn-cookie-primary:hover {
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background: transparent;
    color: #e7edf2;
    border: 1px solid #3a4653;
}

.btn-cookie-secondary:hover {
    background: #1b2026;
}

@keyframes cookieUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media(max-width:700px) {

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}

.cookie-content a {
    color: #36D7E4;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.g-recaptcha{
    margin-top:8px;
    margin-bottom:8px;
}