*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #06090f;
    --bg2: #0c1220;
    --bg3: #111827;
    --bg4: #1a2235;
    --text: #e2e8f4;
    --text2: #8b98b6;
    --text3: #3d4f72;
    --accent: #00c8f0;
    --accent2: #0057e0;
    --accent3: #00e87a;
    --red: #ff4466;
    --amber: #ffaa00;
    --border: rgba(0, 200, 240, 0.1);
    --border2: rgba(255, 255, 255, 0.07);
    --border3: rgba(0, 200, 240, 0.24);
    --glow: rgba(0, 200, 240, 0.07);
    --card: #0c1220;
    --mono: "IBM Plex Mono", monospace;
    --sans: "Outfit", sans-serif;
    --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Background + overlay controls */
    --page-overlay: rgba(6, 9, 15, 0.82);
    --section-overlay: rgba(6, 9, 15, 0.78);
    --section-overlay-strong: rgba(6, 9, 15, 0.88);
    --nav-bg: rgba(6, 9, 15, 0.9);
}

[data-theme="light"] {
    --bg: #f0f4fa;
    --bg2: #e4e9f5;
    --bg3: #d8dfee;
    --bg4: #ccd4e6;
    --text: #0d1422;
    --text2: #334166;
    --text3: #6b7a99;
    --border: rgba(0, 87, 224, 0.14);
    --border2: rgba(0, 20, 60, 0.09);
    --border3: rgba(0, 87, 224, 0.3);
    --glow: rgba(0, 87, 224, 0.06);
    --card: #e4e9f5;
    --accent: #0057e0;
    --accent2: #00a0cc;
    --accent3: #008844;
    --red: #cc2244;
    --amber: #cc7700;
    /* Light mode overlays */
    --page-overlay: rgba(240, 244, 250, 0.72);
    --section-overlay: rgba(240, 244, 250, 0.78);
    --section-overlay-strong: rgba(240, 244, 250, 0.88);
    --nav-bg: rgba(240, 244, 250, 0.93);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    transition: background var(--tr), color var(--tr);
    width: 100%;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background-image: linear-gradient(var(--border2) 1px, transparent 1px), linear-gradient(90deg, var(--border2) 1px, transparent 1px), url("/images/damarksolutions-fondo.jpeg");
        background-size: 56px 56px, 56px 56px, cover;
        background-position: 0 0, 0 0, center center;
        background-attachment: fixed, fixed, fixed;
        pointer-events: none;
        z-index: 0;
    }

    body::after {
        content: "";
        position: fixed;
        inset: 0;
        background: var(--page-overlay);
        pointer-events: none;
        z-index: 0;
    }

/* -- ADMIN BAR -- */
#adminBar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 44px;
    background: #1a0a2e;
    border-bottom: 2px solid #9945ff;
    padding: 0 4%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    #adminBar.show {
        display: flex;
    }

.abar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.abar-logo {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: #9945ff;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .abar-logo::before {
        content: "?";
        font-size: 14px;
    }

.abar-tabs {
    display: flex;
    gap: 4px;
}

.atab {
    background: transparent;
    border: 1px solid rgba(153, 69, 255, 0.25);
    color: rgba(255, 255, 255, 0.55);
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 10px;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s;
}

    .atab:hover,
    .atab.on {
        background: rgba(153, 69, 255, 0.18);
        border-color: #9945ff;
        color: #fff;
    }

.abar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.abar-stat {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
}

    .abar-stat span {
        color: #9945ff;
        font-weight: 700;
    }

.abtn {
    background: transparent;
    border: 1px solid rgba(153, 69, 255, 0.35);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 11px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

    .abtn:hover {
        background: rgba(153, 69, 255, 0.2);
        color: #fff;
    }

    .abtn.danger {
        border-color: rgba(255, 68, 102, 0.4);
        color: rgba(255, 68, 102, 0.8);
    }

        .abtn.danger:hover {
            background: rgba(255, 68, 102, 0.15);
            color: #ff4466;
        }

/* -- ADMIN EDITABLE STYLES -- */
/* Base editable highlight — all text elements in admin mode */
body.admin-mode h1 span,
body.admin-mode h2,
body.admin-mode h3,
body.admin-mode .hero-ey,
body.admin-mode .hero-sub,
body.admin-mode .hm-lbl,
body.admin-mode .stag,
body.admin-mode .ssub,
body.admin-mode .ind-n,
body.admin-mode .ind-d,
body.admin-mode .cap-ben,
body.admin-mode .cap-det,
body.admin-mode .dname,
body.admin-mode .ddesc,
body.admin-mode .about-role,
body.admin-mode .about-content p,
body.admin-mode .mct-t h3,
body.admin-mode .mct-t p,
body.admin-mode .cinfo h3,
body.admin-mode .cinfo p,
body.admin-mode .ctxt,
body.admin-mode .ytt,
body.admin-mode .ytm,
body.admin-mode .plat-n,
body.admin-mode .plat-s,
body.admin-mode .fnote,
body.admin-mode .fbrand,
body.admin-mode .fcopy,
body.admin-mode .editable {
    position: relative;
    outline: 1px dashed rgba(153, 69, 255, 0.22);
    outline-offset: 3px;
    cursor: pointer !important;
    transition: outline-color 0.2s, background 0.2s;
    border-radius: 3px;
}

    body.admin-mode h1 span:hover,
    body.admin-mode h2:hover,
    body.admin-mode h3:hover,
    body.admin-mode .hero-ey:hover,
    body.admin-mode .hero-sub:hover,
    body.admin-mode .hm-lbl:hover,
    body.admin-mode .stag:hover,
    body.admin-mode .ssub:hover,
    body.admin-mode .ind-n:hover,
    body.admin-mode .ind-d:hover,
    body.admin-mode .cap-ben:hover,
    body.admin-mode .cap-det:hover,
    body.admin-mode .dname:hover,
    body.admin-mode .ddesc:hover,
    body.admin-mode .about-role:hover,
    body.admin-mode .about-content p:hover,
    body.admin-mode .mct-t h3:hover,
    body.admin-mode .mct-t p:hover,
    body.admin-mode .cinfo h3:hover,
    body.admin-mode .cinfo p:hover,
    body.admin-mode .ctxt:hover,
    body.admin-mode .ytt:hover,
    body.admin-mode .ytm:hover,
    body.admin-mode .plat-n:hover,
    body.admin-mode .plat-s:hover,
    body.admin-mode .fnote:hover,
    body.admin-mode .fbrand:hover,
    body.admin-mode .fcopy:hover,
    body.admin-mode .editable:hover {
        outline-color: #9945ff;
        background: rgba(153, 69, 255, 0.05);
    }

        /* Edit badge on hover */
        body.admin-mode h2:hover::after,
        body.admin-mode h3:hover::after,
        body.admin-mode .ind-n:hover::after,
        body.admin-mode .cap-ben:hover::after,
        body.admin-mode .dname:hover::after,
        body.admin-mode .about-content p:hover::after,
        body.admin-mode .mct-t h3:hover::after,
        body.admin-mode .cinfo p:hover::after,
        body.admin-mode .ytt:hover::after,
        body.admin-mode .editable:hover::after {
            content: "?";
            position: absolute;
            top: -8px;
            right: -8px;
            width: 18px;
            height: 18px;
            background: #9945ff;
            border-radius: 50%;
            font-size: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            line-height: 18px;
            text-align: center;
            z-index: 10;
        }

.demo-toggle-wrap {
    display: none;
}

body.admin-mode .demo-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.toggle-sw {
    width: 32px;
    height: 18px;
    background: var(--border2);
    border-radius: 9px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid var(--border2);
    flex-shrink: 0;
}

    .toggle-sw.on {
        background: var(--accent3);
    }

    .toggle-sw::after {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
        transition: left 0.2s;
    }

    .toggle-sw.on::after {
        left: 16px;
    }

.toggle-lbl {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--text3);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

/* -- NAV -- */
nav {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 200;
    height: 60px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background var(--tr), top var(--tr);
}

nav {
    top: 0;
}

body.admin-mode nav {
    top: 44px;
}

[data-theme="light"] nav {
    background: var(--nav-bg);
}

.logo {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pdot 2.4s ease-in-out infinite;
}

@keyframes pdot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.logo span {
    color: var(--text2);
    font-weight: 400;
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nl {
    display: flex;
    gap: 24px;
    list-style: none;
}

    .nl a {
        color: var(--text2);
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        font-family: var(--mono);
        transition: color 0.2s;
    }

        .nl a:hover {
            color: var(--accent);
        }

.ctrls {
    display: flex;
    gap: 7px;
}

.cbtn {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text2);
    padding: 5px 11px;
    border-radius: 5px;
    font-family: var(--mono);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .cbtn:hover,
    .cbtn.on {
        border-color: var(--accent);
        color: var(--accent);
        background: var(--glow);
    }

    .cbtn.cta {
        border-color: var(--accent);
        color: var(--accent);
    }

/* -- LAYOUT -- */
section {
    position: relative;
    z-index: 1;
}

.pad {
    padding: 100px 7%;
}

.pad-sm {
    padding: 72px 7%;
}

.stag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h2 {
    font-family: var(--mono);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.018em;
    line-height: 1.15;
}

.ssub {
    color: var(--text2);
    font-size: 14px;
    margin-top: 10px;
    max-width: 520px;
    font-weight: 300;
    line-height: 1.75;
}

.sh {
    margin-bottom: 52px;
}

.bp {
    background: var(--accent);
    color: #06090f;
    border: none;
    padding: 13px 30px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

    .bp:hover {
        opacity: 0.82;
    }

.bo {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border2);
    padding: 13px 30px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

    .bo:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* -- HERO -- */
.hero {
    min-height: 100vh;
    padding: 140px 7% 80px;
    display: flex;
    align-items: center;
    transition: padding var(--tr);
}

body.admin-mode .hero {
    padding-top: 184px;
}

.hero-inner {
    max-width: 860px;
}

.hero-ey {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .hero-ey::after {
        content: "";
        width: 56px;
        height: 1px;
        background: var(--border3);
    }

h1 {
    font-family: var(--mono);
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -0.028em;
    margin-bottom: 28px;
}

    h1 .acc {
        color: var(--accent);
    }

    h1 .dim {
        color: var(--text2);
        font-size: 0.66em;
        display: block;
        margin-top: 10px;
        letter-spacing: -0.01em;
        font-weight: 400;
    }

.hero-sub {
    font-size: 17px;
    color: var(--text2);
    max-width: 600px;
    line-height: 1.82;
    margin-bottom: 44px;
    font-weight: 300;
}

    .hero-sub strong {
        color: var(--text);
        font-weight: 500;
    }

.hero-acts {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-metrics {
    display: flex;
    gap: 0;
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden;
    background: var(--border2);
}

.hm {
    flex: 1;
    background: var(--bg2);
    padding: 18px 20px;
    transition: background 0.2s;
    border-right: 1px solid var(--border2);
}

    .hm:last-child {
        border-right: none;
    }

    .hm:hover {
        background: var(--bg3);
    }

.hm-val {
    font-family: var(--mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.hm-lbl {
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 0.07em;
    font-family: var(--mono);
    margin-top: 2px;
    display: block;
    text-transform: uppercase;
}

/* -- INDUSTRIES -- */
.industries {
    background: var(--bg2);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
}

.ind-card {
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 10px;
    padding: 22px 18px;
    transition: all 0.22s;
}

    .ind-card:hover {
        border-color: var(--border3);
        background: var(--bg4);
    }

.ind-ic {
    font-size: 24px;
    display: block;
    margin-bottom: 12px;
}

.ind-n {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.ind-d {
    font-size: 12px;
    color: var(--text2);
    line-height: 1.6;
    font-weight: 300;
}

/* -- CAPABILITIES -- */
.caps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 15px;
}

/* -- PLC GATEWAY PRODUCT -- */
.gateway-section {
    position: relative;
}

.gateway-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 28px;
    align-items: stretch;
}

.gateway-copy {
    min-width: 0;
}

.gateway-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.gateway-panel,
.gateway-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    box-shadow: var(--shadow-soft);
}

.gateway-panel {
    border-radius: var(--radius, 14px);
    padding: 18px;
    overflow: hidden;
}

.gateway-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text3);
    border-bottom: 1px solid var(--border2);
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.gateway-panel-top strong {
    color: var(--accent3);
    letter-spacing: 0;
}

.gateway-flow {
    display: grid;
    gap: 10px;
}

.gateway-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border2);
    border-radius: 10px;
    background: rgba(255,255,255,0.025);
}

.gateway-step span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    background: var(--glow);
    border: 1px solid var(--border3);
}

.gateway-step strong {
    display: block;
    color: var(--text);
    font-size: 13px;
    margin-bottom: 3px;
}

.gateway-step small {
    color: var(--text3);
    font-size: 11px;
    line-height: 1.45;
}

.gateway-json {
    margin: 14px 0 0;
    padding: 14px;
    overflow: auto;
    border-radius: 10px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    color: var(--accent3);
    background: rgba(0,0,0,0.28);
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.65;
}

.gateway-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 18px;
}

.gateway-card {
    border-radius: 12px;
    padding: 18px;
}

.gateway-card span {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--accent);
    margin-bottom: 10px;
}

.gateway-card strong {
    display: block;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 8px;
}

.gateway-card p {
    color: var(--text2);
    font-size: 13px;
    line-height: 1.65;
    margin: 0;
}

.gateway-how-section {
    position: relative;
}

.gateway-how-flow {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.gateway-how-step {
    position: relative;
    padding: 16px;
    min-height: 210px;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.gateway-how-step span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 8px;
    background: var(--glow);
    border: 1px solid var(--border3);
    color: var(--accent);
    font-family: var(--mono);
    font-size: 11px;
}

.gateway-how-step strong {
    display: block;
    color: var(--text);
    font-size: 13px;
    margin-bottom: 9px;
}

.gateway-how-step p {
    margin: 0;
    color: var(--text2);
    font-size: 12px;
    line-height: 1.6;
}

.gateway-how-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(52, 211, 153, 0.24);
    background: rgba(52, 211, 153, 0.055);
}

.gateway-how-cta strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    margin-bottom: 5px;
}

.gateway-how-cta p {
    margin: 0;
    color: var(--text2);
    font-size: 13px;
    line-height: 1.55;
}

.cap-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 11px;
    padding: 26px 22px;
    transition: all 0.22s;
}

    .cap-card:hover {
        border-color: var(--border3);
        background: var(--bg3);
    }

.cap-ben {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.35;
}

.cap-det {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 14px;
}

.cap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.ctag {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--text3);
    border: 1px solid var(--border2);
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.cap-card:hover .ctag {
    color: var(--accent);
    border-color: var(--border);
}

/* -- DEMOS -- */
.demos-section {
    background: var(--bg3);
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}

.dcard {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s;
}

    .dcard.hidden-demo {
        opacity: 0.4;
        filter: grayscale(0.6);
    }

    .dcard:not(.hidden-demo):hover {
        border-color: var(--border3);
        transform: translateY(-3px);
    }

.dscreen {
    height: 170px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-lbl {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent);
    background: var(--glow);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ds-st {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.06em;
}

.sdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: bl 2s infinite;
}

@keyframes bl {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.sdot.g {
    background: #00e87a;
}

.ds-st.g {
    color: #00e87a;
}

.sdot.a {
    background: #ffaa00;
    animation: none;
}

.ds-st.a {
    color: #ffaa00;
}

.sdot.x {
    background: var(--text3);
    animation: none;
}

.ds-st.x {
    color: var(--text3);
}

.dbody {
    padding: 18px 20px;
}

.dname {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.ddesc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 12px;
}

.dprotos {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.ptag {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--text3);
    border: 1px solid var(--border2);
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.dcard:hover .ptag {
    color: var(--accent);
    border-color: var(--border);
}

.request-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border3);
    color: var(--accent);
    padding: 9px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

    .request-btn:hover {
        background: var(--glow);
        border-color: var(--accent);
    }

@keyframes ba {
    0%, 100% {
        width: var(--w);
    }

    50% {
        width: calc(var(--w) - 9%);
    }
}

/* -- MID CTA -- */
.midcta {
    background: var(--bg2);
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    padding: 60px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.mct-t h3 {
    font-family: var(--mono);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 7px;
}

.mct-t p {
    font-size: 14px;
    color: var(--text2);
    font-weight: 300;
}

/* -- ABOUT -- */
.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-avatar {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1;
    border-radius: 12px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.av-init {
    font-family: var(--mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
}

.av-ring {
    position: absolute;
    inset: 14px;
    border: 1px solid var(--border3);
    border-radius: 8px;
}

.about-content h3 {
    font-family: var(--mono);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-role {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 14px;
    color: var(--text2);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 14px;
}

.askills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.ask {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text2);
    border: 1px solid var(--border2);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

    .ask:hover {
        color: var(--accent);
        border-color: var(--border3);
    }

/* -- YOUTUBE -- */
.yt-section {
    background: var(--bg3);
}

.yt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 13px;
    margin-bottom: 28px;
}

.ytcard {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: all 0.22s;
}

    .ytcard:hover {
        border-color: #e03333;
        transform: translateY(-2px);
    }

.ytthumb {
    height: 112px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ytplay {
    width: 38px;
    height: 38px;
    background: rgba(220, 48, 48, 0.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ytplay svg {
        width: 13px;
        height: 13px;
        fill: white;
        margin-left: 2px;
    }

.ytdur {
    position: absolute;
    bottom: 7px;
    right: 8px;
    font-family: var(--mono);
    font-size: 9px;
    color: #fff;
    background: rgba(0, 0, 0, 0.72);
    padding: 2px 6px;
    border-radius: 3px;
}

.ytinfo {
    padding: 11px 13px;
}

.ytt {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 4px;
}

.ytm {
    font-size: 10px;
    color: var(--text3);
    font-family: var(--mono);
}

/* -- PLATFORMS -- */
.plat-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.plat {
    flex: 1;
    min-width: 110px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 9px;
    padding: 16px 12px;
    text-align: center;
    transition: all 0.2s;
}

    .plat:hover {
        border-color: var(--border3);
    }

.plat-ic {
    font-size: 22px;
    display: block;
    margin-bottom: 9px;
}

.plat-n {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 2px;
}

.plat-s {
    font-size: 11px;
    color: var(--text3);
    font-weight: 300;
}

/* -- CONTACT -- */
.contact-section {
    background: var(--bg2);
}

.cwrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 52px;
    align-items: start;
}

.cinfo h3 {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 11px;
    color: var(--text);
}

.cinfo p {
    font-size: 14px;
    color: var(--text2);
    font-weight: 300;
    line-height: 1.78;
    margin-bottom: 24px;
}

.cdet {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 11px;
}

.cicon {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .cicon svg {
        width: 13px;
        height: 13px;
        stroke: var(--accent);
        fill: none;
        stroke-width: 1.5;
    }

.ctxt {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text2);
}

.fbox {
    background: var(--bg);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 28px;
}

.frow {
    margin-bottom: 15px;
}

.flbl {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.fi,
.fta,
.fsel {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

    .fi:focus,
    .fta:focus,
    .fsel:focus {
        border-color: var(--accent);
    }

    .fi::placeholder,
    .fta::placeholder {
        color: var(--text3);
    }

[data-theme="light"] .fi,
[data-theme="light"] .fta,
[data-theme="light"] .fsel {
    background: var(--bg3);
}

.fta {
    resize: vertical;
    min-height: 88px;
    line-height: 1.5;
}

.gateway-fields {
    display: none;
    margin: 0 0 16px;
    padding: 16px;
    border: 1px solid rgba(52, 211, 153, 0.24);
    border-radius: 10px;
    background: rgba(52, 211, 153, 0.055);
}

.gateway-fields.show {
    display: block;
}

.gateway-fields-title {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent3);
    margin-bottom: 13px;
    text-transform: uppercase;
}

.gateway-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gateway-field-grid .frow {
    margin-bottom: 0;
}

.fgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fsub {
    width: 100%;
    background: var(--accent);
    color: #06090f;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 5px;
}

    .fsub:hover {
        opacity: 0.82;
    }

.fnote {
    font-size: 10px;
    color: var(--text3);
    text-align: center;
    margin-top: 9px;
    font-family: var(--mono);
}

.fok {
    display: none;
    text-align: center;
    padding: 22px;
}

    .fok h4 {
        font-family: var(--mono);
        color: var(--accent3);
        font-size: 13px;
        margin-bottom: 7px;
    }

    .fok p {
        font-size: 12px;
        color: var(--text2);
    }

/* -- FOOTER -- */
footer {
    position: relative;
    z-index: 1;
    background: var(--bg);
    border-top: 1px solid var(--border2);
    padding: 26px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.fbrand {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text2);
}

    .fbrand strong {
        color: var(--accent);
    }

.fnav {
    display: flex;
    gap: 18px;
    list-style: none;
}

    .fnav a {
        font-family: var(--mono);
        font-size: 10px;
        color: var(--text3);
        text-decoration: none;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: color 0.2s;
    }

        .fnav a:hover {
            color: var(--accent);
        }

.fcopy {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text3);
}

/* -- MODAL / OVERLAY -- */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 800;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .overlay.show {
        display: flex;
    }

.modal {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 14px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
}

.modal-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-title {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text3);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s;
    line-height: 1;
}

    .modal-close:hover {
        color: var(--text);
    }

.modal-step {
    display: none;
}

    .modal-step.active {
        display: block;
    }

.step-indicator {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
}

.step-dot {
    flex: 1;
    height: 3px;
    background: var(--border2);
    border-radius: 2px;
    transition: background 0.3s;
}

    .step-dot.done {
        background: var(--accent);
    }

.q-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.q-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.q-opts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.q-opt {
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 8px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    color: var(--text2);
    text-align: left;
    font-family: var(--sans);
}

    .q-opt:hover,
    .q-opt.sel {
        background: var(--glow);
        border-color: var(--border3);
        color: var(--text);
    }

    .q-opt.sel {
        border-color: var(--accent);
        color: var(--accent);
    }

.modal-nav {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 6px;
}

.mnext {
    background: var(--accent);
    color: #06090f;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .mnext:hover {
        opacity: 0.82;
    }

.mback {
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border2);
    padding: 10px 18px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

    .mback:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

.req-success {
    text-align: center;
    padding: 20px 0;
}

    .req-success .big-check {
        font-size: 40px;
        margin-bottom: 16px;
        display: block;
    }

    .req-success h3 {
        font-family: var(--mono);
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--accent3);
    }

    .req-success p {
        font-size: 13px;
        color: var(--text2);
        line-height: 1.7;
    }

.fi-modal {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 10px;
}

    .fi-modal:focus {
        border-color: var(--accent);
    }

    .fi-modal::placeholder {
        color: var(--text3);
    }

/* -- ADMIN PANEL -- */
.admin-panel {
    display: none;
    position: fixed;
    top: 44px;
    right: 0;
    bottom: 0;
    width: 420px;
    background: var(--bg);
    border-left: 1px solid rgba(153, 69, 255, 0.25);
    z-index: 500;
    overflow-y: auto;
    transition: transform 0.3s;
}

    .admin-panel.show {
        display: block;
    }

.ap-hdr {
    background: #12082a;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(153, 69, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.ap-title {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    color: #9945ff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ap-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.ap-met {
    background: rgba(153, 69, 255, 0.08);
    border: 1px solid rgba(153, 69, 255, 0.15);
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.ap-met-val {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
    color: #9945ff;
    display: block;
}

.ap-met-lbl {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-top: 2px;
    display: block;
}

.ap-section {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ap-section-title {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.req-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 13px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

    .req-card:hover {
        border-color: rgba(153, 69, 255, 0.3);
    }

.req-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.req-name {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.req-badge {
    font-family: var(--mono);
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

    .req-badge.pending {
        background: rgba(255, 170, 0, 0.15);
        color: #ffaa00;
        border: 1px solid rgba(255, 170, 0, 0.25);
    }

    .req-badge.approved {
        background: rgba(0, 232, 122, 0.12);
        color: #00e87a;
        border: 1px solid rgba(0, 232, 122, 0.2);
    }

    .req-badge.rejected {
        background: rgba(255, 68, 102, 0.12);
        color: #ff4466;
        border: 1px solid rgba(255, 68, 102, 0.2);
    }

.req-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    font-family: var(--mono);
}

.req-detail {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 10px;
}

.req-actions {
    display: flex;
    gap: 7px;
}

.lead-gateway-summary {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    border-radius: 8px;
    background: rgba(52, 211, 153, 0.055);
}

.lead-gateway-summary span {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text2);
}

.lead-gateway-summary strong {
    color: var(--accent3);
    font-weight: 600;
}

.lead-gateway-card {
    margin-bottom: 14px;
    border-color: rgba(52, 211, 153, 0.24);
}

.lead-gateway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ra {
    font-family: var(--mono);
    font-size: 9px;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s;
}

    .ra.approve {
        background: rgba(0, 232, 122, 0.1);
        border: 1px solid rgba(0, 232, 122, 0.25);
        color: #00e87a;
    }

        .ra.approve:hover {
            background: rgba(0, 232, 122, 0.2);
        }

    .ra.reject {
        background: rgba(255, 68, 102, 0.1);
        border: 1px solid rgba(255, 68, 102, 0.25);
        color: #ff4466;
    }

        .ra.reject:hover {
            background: rgba(255, 68, 102, 0.2);
        }

    .ra.view {
        background: rgba(153, 69, 255, 0.1);
        border: 1px solid rgba(153, 69, 255, 0.25);
        color: #9945ff;
    }

        .ra.view:hover {
            background: rgba(153, 69, 255, 0.2);
        }

.login-modal {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 14px;
    width: 100%;
    max-width: 360px;
    padding: 36px;
}

    .login-modal h3 {
        font-family: var(--mono);
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 4px;
        color: var(--text);
    }

.login-sub {
    font-size: 12px;
    color: var(--text3);
    text-align: center;
    font-family: var(--mono);
    margin-bottom: 24px;
}

.login-err {
    font-size: 11px;
    color: var(--red);
    text-align: center;
    font-family: var(--mono);
    margin-bottom: 12px;
    display: none;
}

.edit-modal {
    background: var(--bg2);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 14px;
    width: 100%;
    max-width: 520px;
    padding: 28px;
}

    .edit-modal h3 {
        font-family: var(--mono);
        font-size: 13px;
        font-weight: 700;
        color: #9945ff;
        margin-bottom: 6px;
        letter-spacing: 0.06em;
    }

.edit-hint {
    font-family: var(--mono);
    font-size: 9px;
    color: rgba(153, 69, 255, 0.5);
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.edit-ta {
    width: 100%;
    background: var(--bg3);
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--text);
    font-family: var(--sans);
    font-size: 13px;
    outline: none;
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
    margin-bottom: 12px;
}

    .edit-ta:focus {
        border-color: #9945ff;
    }

.edit-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.edit-save {
    background: #9945ff;
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

    .edit-save:hover {
        opacity: 0.85;
    }

.edit-cancel {
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border2);
    padding: 9px 16px;
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

    .edit-cancel:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

.ap-chart {
    background: rgba(153, 69, 255, 0.05);
    border: 1px solid rgba(153, 69, 255, 0.12);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
}

.chart-lbl {
    font-family: var(--mono);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
}

.cbar {
    flex: 1;
    background: rgba(153, 69, 255, 0.4);
    border-radius: 2px 2px 0 0;
    transition: background 0.2s;
    position: relative;
}

    .cbar:hover {
        background: #9945ff;
    }

.cbar-lbl {
    font-family: var(--mono);
    font-size: 8px;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    margin-top: 4px;
}

.demo-mgmt-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dmi-name {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 720px) {
    .nl {
        display: none;
    }

    .about-wrap,
    .cwrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .admin-panel {
        width: 100%;
    }

    .midcta {
        flex-direction: column;
    }
}

/* -----------------------------------------------------------
             BACKGROUND IMAGES — Damark Solutions
             Reemplaza cada URL con la ruta de tu imagen.
             Ejemplos:
               url('/images/hero-bg.jpg')       ? imagen local en wwwroot/images/
               url('https://...')               ? imagen remota
               none                             ? sin imagen (usa el color de fondo)
             ----------------------------------------------------------- */
/* Global background image and grid are handled by the main body::before rule above. */
/* -- 2. HERO -------------------------------------------------
             La sección principal con el tagline grande ---------------- */
.hero {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* efecto parallax — quita esta línea si no lo quieres */
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay);
        z-index: 0;
        pointer-events: none;
    }

.hero-inner {
    position: relative;
    z-index: 1;
}

/* -- 3. INDUSTRIES ("Who We Work With") ---------------------
             Sección con los 5 cards de industria --------------------- */
.industries {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    position: relative;
}

    .industries::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay-strong);
        z-index: 0;
        pointer-events: none;
    }

    .industries .sh,
    .industries .ind-grid {
        position: relative;
        z-index: 1;
    }

/* -- 4. CAPABILITIES ("What we deliver") --------------------
             Sección con los 4 cards de capacidades + plataformas ----- */
#capabilities {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    position: relative;
}

    #capabilities::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay);
        z-index: 0;
        pointer-events: none;
    }

    #capabilities .sh,
    #capabilities .caps-grid,
    #capabilities .plat-row {
        position: relative;
        z-index: 1;
    }

/* -- 5. DEMOS ("See it working") -----------------------------
             Sección con los 3 cards de demo -------------------------- */
.demos-section {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    position: relative;
}

    .demos-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay-strong);
        z-index: 0;
        pointer-events: none;
    }

    .demos-section .sh,
    .demos-section .demo-grid {
        position: relative;
        z-index: 1;
    }

/* -- 6. MID CTA ("Have a system that needs...") -------------
             La franja CTA entre demos y about ------------------------ */
.midcta {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    position: relative;
}

    .midcta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay);
        z-index: 0;
        pointer-events: none;
    }

    .midcta .mct-t,
    .midcta > a {
        position: relative;
        z-index: 1;
    }

/* -- 7. ABOUT ("The engineer behind the work") ---------------
             Sección con avatar y texto biográfico -------------------- */
#about {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    position: relative;
}

    #about::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay);
        z-index: 0;
        pointer-events: none;
    }

    #about .sh,
    #about .about-wrap {
        position: relative;
        z-index: 1;
    }

/* -- 8. YOUTUBE ("Watch the builds") -------------------------
             Sección con los 4 cards de video ------------------------- */
.yt-section {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    position: relative;
}

    .yt-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay-strong);
        z-index: 0;
        pointer-events: none;
    }

    .yt-section .sh,
    .yt-section .yt-grid,
    .yt-section > div,
    .yt-section > a {
        position: relative;
        z-index: 1;
    }

/* -- 9. CONTACT ("Let's talk about your project") ------------
             Sección con formulario de contacto ----------------------- */
.contact-section {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center center;
    position: relative;
}

    .contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay-strong);
        z-index: 0;
        pointer-events: none;
    }

    .contact-section .sh,
    .contact-section .cwrap {
        position: relative;
        z-index: 1;
    }

/* -- 10. FOOTER ----------------------------------------------
             La barra inferior con links y copyright ------------------- */
footer {
    background-image: none; /* ? PON TU IMAGEN AQUÍ */
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

    footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay-strong);
        z-index: 0;
        pointer-events: none;
    }

    footer .fbrand,
    footer .fnav,
    footer .fcopy {
        position: relative;
        z-index: 1;
    }

/* -- FINAL BACKGROUND + LIGHT MODE FIXES ---------------------
                     Keeps one global background image visible and makes overlays
                     adapt correctly in dark/light mode.
                  ---------------------------------------------------------------- */
.industries,
.demos-section,
.yt-section,
.contact-section,
.midcta,
footer {
    background-color: transparent;
}

[data-theme="light"] .bp {
    color: #ffffff;
}

[data-theme="light"] .abtn,
[data-theme="light"] .atab,
[data-theme="light"] .abar-stat,
[data-theme="light"] .req-name,
[data-theme="light"] .req-meta,
[data-theme="light"] .req-detail,
[data-theme="light"] .ap-section-title,
[data-theme="light"] .ap-met-lbl {
    color: rgba(255, 255, 255, 0.75);
}

/* -- FINAL GLOBAL BACKGROUND OVERRIDES ----------------------
                     This keeps the page-wide image visible behind all sections.
                     Image path expected: wwwroot/images/damarksolutions-fondo.jpeg
                  ---------------------------------------------------------------- */
.hero,
.industries,
#capabilities,
.demos-section,
.website-projects-section,
.midcta,
#about,
.yt-section,
.contact-section,
footer {
    background-color: transparent !important;
    background-image: none !important;
}

#about {
    background: transparent !important;
}

[data-theme="light"] body::after {
    background: var(--page-overlay);
}

[data-theme="light"] .hero::before,
[data-theme="light"] .industries::before,
[data-theme="light"] #capabilities::before,
[data-theme="light"] .demos-section::before,
[data-theme="light"] .midcta::before,
[data-theme="light"] #about::before,
[data-theme="light"] .yt-section::before,
[data-theme="light"] .contact-section::before,
[data-theme="light"] footer::before {
    background: var(--section-overlay);
}

/* =========================================================
        DamArk Solutions — PRO V2 SKIN (CSS overrides only)
        Paste block inserted automatically at end of <style>.
        No JS / IDs / functionality changes.
        ========================================================= */

:root {
    /* Typography */
    --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --display: "Space Grotesk", var(--sans);
    /* Premium dark palette */
    --bg: #070a12;
    --bg2: #0b1220;
    --bg3: #0f172a;
    --bg4: #111c33;
    --text: #e6edf7;
    --text2: #a6b3cf;
    --text3: #6b7a99;
    --accent: #22d3ee; /* cyan */
    --accent2: #60a5fa; /* blue */
    --accent3: #34d399; /* green */
    --red: #fb7185;
    --amber: #fbbf24;
    --border: rgba(34, 211, 238, 0.16);
    --border2: rgba(148, 163, 184, 0.14);
    --border3: rgba(34, 211, 238, 0.3);
    --glow: rgba(34, 211, 238, 0.08);
    --nav-bg: rgba(7, 10, 18, 0.72);
    /* overlays */
    --page-overlay: rgba(7, 10, 18, 0.86);
    --section-overlay: rgba(7, 10, 18, 0.78);
    --section-overlay-strong: rgba(7, 10, 18, 0.86);
    /* new helpers */
    --radius: 14px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
    --grid: rgba(148, 163, 184, 0.06);
}

[data-theme="light"] {
    /* Clean light palette */
    --bg: #f8fafc;
    --bg2: #ffffff;
    --bg3: #f1f5f9;
    --bg4: #e2e8f0;
    --text: #0b1220;
    --text2: #334155;
    --text3: #64748b;
    --accent: #0ea5e9;
    --accent2: #2563eb;
    --accent3: #16a34a;
    --red: #e11d48;
    --amber: #b45309;
    --border: rgba(14, 165, 233, 0.14);
    --border2: rgba(2, 6, 23, 0.1);
    --border3: rgba(37, 99, 235, 0.26);
    --glow: rgba(14, 165, 233, 0.08);
    --nav-bg: rgba(248, 250, 252, 0.76);
    --page-overlay: rgba(248, 250, 252, 0.7);
    --section-overlay: rgba(248, 250, 252, 0.78);
    --section-overlay-strong: rgba(248, 250, 252, 0.86);
    --grid: rgba(2, 6, 23, 0.06);
}

/* Global typography tuning */
body {
    font-family: var(--sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    /* Background: same concept, less busy */
    body::before {
        background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px), url("/images/damarksolutions-fondo.jpeg");
        background-size: 84px 84px, 84px 84px, cover;
        background-position: 0 0, 0 0, center center;
        filter: saturate(0.92) contrast(1.03) brightness(0.92);
    }

[data-theme="light"] body::before {
    filter: saturate(0.9) contrast(1.03) brightness(1.08);
}

/* Headings: more “brand/enterprise” */
h1,
h2,
.mct-t h3,
.about-content h3 {
    font-family: var(--display) !important;
    letter-spacing: -0.035em !important;
}

h1 {
    line-height: 1.03 !important;
}

h2 {
    line-height: 1.12 !important;
}

/* Nav polish */
nav {
    border-bottom: 1px solid var(--border2) !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

.nl a {
    color: var(--text2);
}

    .nl a:hover {
        color: var(--text);
    }

/* Cards: consistent radii + subtle depth */
.ind-card,
.cap-card,
.dcard,
.ytcard,
.fbox,
.modal,
.login-modal,
.edit-modal {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-soft);
}

.ind-card,
.cap-card,
.dcard,
.ytcard {
    border-color: var(--border2) !important;
}

    .ind-card:hover,
    .cap-card:hover,
    .dcard:not(.hidden-demo):hover,
    .ytcard:hover {
        border-color: var(--border3) !important;
    }

/* Buttons: premium interaction (same classes/behavior) */
.bp,
.fsub,
.mnext {
    border-radius: 12px !important;
    box-shadow: 0 14px 34px rgba(34, 211, 238, 0.12);
    transform: translateY(0);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

    .bp:hover,
    .fsub:hover,
    .mnext:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 42px rgba(34, 211, 238, 0.16);
    }

.bo,
.mback,
.cbtn {
    border-radius: 12px !important;
}

/* Inputs: cleaner focus ring */
.fi,
.fta,
.fsel,
.fi-modal {
    border-radius: 12px !important;
    border-color: var(--border2) !important;
}

    .fi:focus,
    .fta:focus,
    .fsel:focus,
    .fi-modal:focus {
        border-color: var(--accent) !important;
        box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
    }

/* Accessibility: consistent focus-visible */
:focus-visible {
    outline: 2px solid rgba(34, 211, 238, 0.75);
    outline-offset: 2px;
}

/* Overlay feels less harsh */
.overlay {
    backdrop-filter: blur(10px);
}

/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
        PRO V2 NAV RESPONSIVE FIXES (no functionality changes)
        - Prevents DAMARK / SOLUTIONS word wrap in the logo
        - Keeps nav items from wrapping; improves behavior on mid widths
        ========================================================= */
.logo {
    white-space: nowrap;
    flex-shrink: 0;
}

    .logo span {
        white-space: nowrap;
    }

.nav-r {
    min-width: 0;
}

.nl {
    white-space: nowrap;
}

.ctrls {
    white-space: nowrap;
    flex-wrap: nowrap;
}

@media (max-width: 1100px) {
    nav {
        padding: 0 4.5%;
    }

    .nl {
        gap: 18px;
    }

    .nav-r {
        gap: 12px;
    }

    .nl a {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .cbtn {
        padding: 5px 9px;
    }
}

@media (max-width: 920px) {
    /* Keep everything on one line by compacting the logo slightly */
    .logo {
        font-size: 13px;
        letter-spacing: 0.05em;
    }

    .logo-dot {
        width: 6px;
        height: 6px;
    }
}

/* =========================================================
   FINAL CLEAN RESPONSIVE + DEMO OVERRIDES
   This block keeps the current behavior and makes the layout
   safer for desktop, tablet, and mobile screens.
========================================================= */

:root {
    --nav-logo-height: 56px;
    --nav-mobile-logo-height: 42px;
}

/* Navbar logo */
nav {
    min-height: 72px;
    height: auto;
    overflow: visible;
}

.logo-with-image {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.nav-logo-img {
    height: var(--nav-logo-height);
    width: auto;
    max-width: min(240px, 42vw);
    display: block;
    object-fit: contain;
    position: relative;
    top: 0;
}

/* Admin Cards manager helpers */
.admin-card-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 12px;
}

    .admin-card-tabs .ra {
        padding: 8px;
    }

.admin-card-help {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.6;
    margin-bottom: 12px;
}

.admin-add-card-btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 14px;
    font-size: 10px;
}

.admin-empty-text {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 20px 0;
}

.admin-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.empty-section-card {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.02em;
}

/* Demo public card actions */
.demo-action-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

.open-demo-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0, 232, 122, 0.35);
    background: rgba(0, 232, 122, 0.08);
    color: var(--accent3);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

    .open-demo-btn:hover {
        border-color: rgba(0, 232, 122, 0.7);
        background: rgba(0, 232, 122, 0.14);
        transform: translateY(-1px);
    }

.demo-soon-btn {
    border-color: rgba(255, 255, 255, 0.16) !important;
    color: rgba(255, 255, 255, 0.55) !important;
    background: rgba(255, 255, 255, 0.025) !important;
}

    .demo-soon-btn:hover {
        border-color: rgba(0, 200, 240, 0.28) !important;
        color: var(--accent) !important;
    }

.demo-preview-screen {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

    .demo-preview-screen.has-thumbnail::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 20% 10%, rgba(0, 200, 240, 0.16), transparent 34% ), radial-gradient(circle at 85% 85%, rgba(0, 232, 122, 0.12), transparent 34%);
        pointer-events: none;
    }

    .demo-preview-screen.has-thumbnail > * {
        position: relative;
        z-index: 1;
    }

.demo-generated-graphic {
    width: 86%;
}

.demo-generated-box {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 14px;
}

.demo-generated-label {
    font-family: var(--mono);
    font-size: 8px;
    color: rgba(255, 255, 255, 0.22);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.demo-generated-grid {
    display: flex;
    gap: 6px;
}

    .demo-generated-grid span {
        flex: 1;
        border-radius: 4px;
        padding: 8px 7px;
        font-family: var(--mono);
        font-size: 8px;
        color: var(--accent);
        background: rgba(0, 200, 240, 0.06);
        border: 1px solid rgba(0, 200, 240, 0.12);
        text-align: center;
    }

        .demo-generated-grid span:last-child {
            color: var(--accent3);
            background: rgba(0, 232, 122, 0.06);
            border-color: rgba(0, 232, 122, 0.12);
        }

/* Demo visual styles controlled by WebsiteCard.VisualStyle */
.dcard.demo-style-blue {
    border-color: rgba(0, 200, 240, 0.28);
    box-shadow: 0 0 0 1px rgba(0, 200, 240, 0.06), 0 18px 55px rgba(0, 200, 240, 0.08);
}

    .dcard.demo-style-blue .dscreen {
        background-color: #06111f !important;
    }

.dcard.demo-style-green {
    border-color: rgba(0, 232, 122, 0.28);
    box-shadow: 0 0 0 1px rgba(0, 232, 122, 0.06), 0 18px 55px rgba(0, 232, 122, 0.08);
}

    .dcard.demo-style-green .dscreen {
        background-color: #06180f !important;
    }

.dcard.demo-style-purple {
    border-color: rgba(153, 69, 255, 0.34);
    box-shadow: 0 0 0 1px rgba(153, 69, 255, 0.08), 0 18px 55px rgba(153, 69, 255, 0.1);
}

    .dcard.demo-style-purple .dscreen {
        background-color: #12091f !important;
    }

.dcard.demo-style-industrial {
    border-color: rgba(255, 170, 0, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 170, 0, 0.06), 0 18px 55px rgba(255, 170, 0, 0.08);
}

    .dcard.demo-style-industrial .dscreen {
        background-color: #171109 !important;
    }

.dcard.demo-style-dark {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 55px rgba(0, 0, 0, 0.3);
}

    .dcard.demo-style-dark .dscreen {
        background-color: #07080d !important;
    }

/* Responsive behavior */
@media (max-width: 1200px) {
    nav {
        padding-inline: 4%;
    }

    .nl {
        gap: 16px;
    }
}

@media (max-width: 980px) {
    .nl {
        display: none;
    }

    .hero-metrics {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hm {
        border-right: none;
        border-bottom: 1px solid var(--border2);
    }

    .about-wrap,
    .cwrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .admin-panel {
        width: min(100vw, 460px);
    }
}

@media (max-width: 720px) {
    body::before,
    .hero {
        background-attachment: scroll !important;
    }

    nav {
        min-height: 68px;
        padding: 8px 4%;
    }

    .nav-logo-img {
        height: var(--nav-mobile-logo-height);
        max-width: 42vw;
    }

    .nav-r {
        gap: 8px;
    }

    .ctrls {
        gap: 5px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .cbtn {
        padding: 5px 8px;
        font-size: 10px;
    }

    .hero {
        min-height: auto;
        padding: 130px 6% 64px;
    }

    h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-acts,
    .midcta {
        align-items: stretch;
    }

    .bp,
    .bo {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .pad,
    .pad-sm {
        padding-inline: 6%;
    }

    .demo-grid,
    .caps-grid,
    .ind-grid,
    .yt-grid,
    .gateway-field-grid,
    .lead-gateway-grid {
        grid-template-columns: 1fr;
    }

    .lead-gateway-summary span {
        display: grid;
    }

    .plat-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .fgrid {
        grid-template-columns: 1fr;
    }

    .modal,
    .login-modal,
    .edit-modal {
        padding: 22px;
    }

    .modal-nav,
    .edit-actions,
    .req-actions {
        flex-wrap: wrap;
    }

        .modal-nav > *,
        .edit-actions > *,
        .req-actions > * {
            flex: 1 1 auto;
        }

    #adminBar {
        overflow-x: auto;
        padding-inline: 10px;
    }

    .abar-left,
    .abar-right {
        flex-shrink: 0;
    }

    .admin-panel {
        left: 0;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .nav-logo-img {
        height: 36px;
        max-width: 34vw;
    }

    .cbtn.cta {
        display: none;
    }

    .hero {
        padding-top: 116px;
    }

    .dscreen,
    .ytthumb {
        height: 150px;
    }

    .plat-row,
    .ap-metrics,
    .admin-card-tabs {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .fnav {
        flex-wrap: wrap;
        gap: 12px;
    }
}


/* =========================================================
   FINAL MOBILE NAV + ADMIN MENU FIX
   This block intentionally overrides previous nav/mobile rules.
========================================================= */

:root {
    --damark-nav-height: 60px;
    --damark-admin-height: 44px;
    --damark-logo-base-height: 180px;
    --damark-logo-scale: 1;
    --damark-logo-mobile-base-height: 38px;
    --damark-logo-mobile-scale: 1;
}

nav {
    height: var(--damark-nav-height) !important;
    min-height: var(--damark-nav-height) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
}

.logo-with-image {
    height: var(--damark-nav-height) !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
    flex-shrink: 0 !important;
}

.nav-logo-img {
    height: var(--damark-logo-base-height) !important;
    width: auto !important;
    max-width: min(220px, 34vw) !important;
    object-fit: contain !important;
    display: block !important;
    transform: scale(var(--damark-logo-scale)) !important;
    transform-origin: left center !important;
    position: relative !important;
    z-index: 10 !important;
}

.mobile-menu-toggle,
.admin-menu-toggle {
    display: none !important;
}

.mobile-menu-toggle {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text);
    border-radius: 10px;
    padding: 7px 11px;
    font-family: var(--mono);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 260;
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: var(--damark-nav-height);
    left: 0;
    right: 0;
    z-index: 250;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border2);
    padding: 14px 6%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

    .mobile-nav-menu.show {
        display: grid !important;
        gap: 8px;
    }

    .mobile-nav-menu a,
    .mobile-nav-menu button {
        width: 100%;
        text-align: left;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.035);
        border: 1px solid var(--border2);
        color: var(--text);
        border-radius: 10px;
        padding: 12px 14px;
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        cursor: pointer;
    }

        .mobile-nav-menu a:hover,
        .mobile-nav-menu button:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--glow);
        }

body.admin-mode .mobile-nav-menu {
    top: calc(var(--damark-admin-height) + var(--damark-nav-height));
}

@media (min-width: 981px) {
    .mobile-menu-toggle,
    .admin-menu-toggle,
    .mobile-nav-menu {
        display: none !important;
    }

    #adminBar .abar-tabs {
        display: flex !important;
        position: static !important;
    }
}

@media (max-width: 980px) {
    .nl {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .nav-r {
        margin-left: 0 !important;
    }

    .ctrls {
        display: flex !important;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

        .ctrls .cbtn.cta {
            display: none !important;
        }

    #adminBar {
        height: var(--damark-admin-height) !important;
        min-height: var(--damark-admin-height) !important;
        overflow: visible !important;
        padding-inline: 10px !important;
    }

        #adminBar .abar-left,
        #adminBar .abar-right {
            min-width: 0;
            flex-shrink: 1;
        }

        #adminBar .abar-logo {
            white-space: nowrap;
            font-size: 10px;
        }

        #adminBar .abar-stat {
            display: none !important;
        }

    .admin-menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    #adminBar .abar-tabs {
        display: none !important;
        position: fixed !important;
        top: var(--damark-admin-height) !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 998 !important;
        background: #12082a !important;
        border-bottom: 1px solid rgba(153, 69, 255, 0.35) !important;
        padding: 10px !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35) !important;
    }

        #adminBar .abar-tabs.show {
            display: grid !important;
        }

    #adminBar .atab {
        width: 100%;
        text-align: left;
        padding: 10px 12px;
        font-size: 10px;
    }
}

@media (max-width: 520px) {
    .nav-logo-img {
        height: var(--damark-logo-mobile-base-height) !important;
        transform: scale(var(--damark-logo-mobile-scale)) !important;
        max-width: min(170px, 38vw) !important;
    }

    .mobile-menu-toggle {
        padding: 6px 9px;
        font-size: 17px;
    }

    #adminBar .abtn {
        padding: 5px 8px;
        font-size: 9px;
    }
}

/* =========================================================
   WEBSITE PROJECTS SECTION
========================================================= */

.website-projects-section {
    background: transparent;
    position: relative;
}

    .website-projects-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay);
        z-index: 0;
        pointer-events: none;
    }

    .website-projects-section .sh,
    .website-projects-section .web-project-grid {
        position: relative;
        z-index: 1;
    }

.web-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.web-project-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--radius, 14px);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.22s ease;
}

    .web-project-card:hover {
        border-color: var(--border3);
        transform: translateY(-3px);
    }

.web-project-preview {
    height: 170px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 34%), radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.14), transparent 38%), linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(7, 10, 18, 0.95));
}

    .web-project-preview::after {
        content: "";
        position: absolute;
        inset: 24px;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        background: linear-gradient(rgba(255,255,255,0.08), rgba(255,255,255,0.08)) 20px 24px / 42% 8px no-repeat, linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)) 20px 44px / 70% 6px no-repeat, linear-gradient(rgba(255,255,255,0.05), rgba(255,255,255,0.05)) 20px 60px / 55% 6px no-repeat, linear-gradient(rgba(34,211,238,0.20), rgba(34,211,238,0.20)) 20px 92px / 90px 26px no-repeat, rgba(255,255,255,0.025);
    }

.web-preview-auto {
    background: radial-gradient(circle at 15% 15%, rgba(251, 191, 36, 0.18), transparent 34%), radial-gradient(circle at 85% 75%, rgba(34, 211, 238, 0.18), transparent 38%), linear-gradient(135deg, #111827, #070a12);
}

.web-preview-contractor {
    background: radial-gradient(circle at 15% 15%, rgba(96, 165, 250, 0.20), transparent 34%), radial-gradient(circle at 85% 75%, rgba(52, 211, 153, 0.14), transparent 38%), linear-gradient(135deg, #0f172a, #070a12);
}

.web-preview-industrial {
    background: radial-gradient(circle at 15% 15%, rgba(34, 211, 238, 0.20), transparent 34%), radial-gradient(circle at 85% 75%, rgba(153, 69, 255, 0.14), transparent 38%), linear-gradient(135deg, #111827, #070a12);
}

.web-project-type {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent);
    background: var(--glow);
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: 5px;
    letter-spacing: 0.1em;
}

.web-project-status {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent3);
    letter-spacing: 0.06em;
}

.web-project-body {
    padding: 18px 20px 20px;
}

.web-project-title {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.web-project-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 14px;
}

.web-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

    .web-project-tags span {
        font-family: var(--mono);
        font-size: 9px;
        color: var(--text3);
        border: 1px solid var(--border2);
        padding: 3px 8px;
        border-radius: 3px;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

.web-project-actions {
    display: flex;
    gap: 8px;
}

.web-project-btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 10px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

    .web-project-btn.primary {
        color: var(--accent);
        border: 1px solid var(--border3);
        background: var(--glow);
    }

        .web-project-btn.primary:hover {
            border-color: var(--accent);
            transform: translateY(-1px);
        }

/* Responsive */
@media (max-width: 980px) {
    .gateway-wrap,
    .gateway-grid {
        grid-template-columns: 1fr;
    }

    .gateway-how-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gateway-how-cta {
        grid-template-columns: 1fr;
    }

    .web-project-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .gateway-actions .bp,
    .gateway-actions .bo,
    .gateway-how-cta .bp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .gateway-panel,
    .gateway-card {
        border-radius: 10px;
    }

    .gateway-how-flow {
        grid-template-columns: 1fr;
    }

    .gateway-how-step {
        min-height: auto;
    }

    .web-project-grid {
        grid-template-columns: 1fr;
    }

    .web-project-preview {
        height: 150px;
    }
}

/* =========================================================
   WEBSITE PROJECT IMAGE + ACTION BUTTON SUPPORT
========================================================= */

.web-project-preview.has-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

    .web-project-preview.has-image::after {
        background: linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.10)) 20px 24px / 42% 8px no-repeat, linear-gradient(rgba(255,255,255,0.06), rgba(255,255,255,0.06)) 20px 44px / 70% 6px no-repeat, linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)) 20px 60px / 55% 6px no-repeat, rgba(0,0,0,0.10);
    }

.web-project-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.web-project-btn.open {
    color: var(--accent3);
    border: 1px solid rgba(52, 211, 153, 0.35);
    background: rgba(52, 211, 153, 0.08);
}

    .web-project-btn.open:hover {
        border-color: var(--accent3);
        transform: translateY(-1px);
    }

@media (min-width: 720px) {
    .web-project-actions.has-two-buttons,
    .web-project-actions:has(.web-project-btn.open) {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   ADMIN PANEL LIGHT MODE FIX
   Makes admin panel/cards readable when the website is in light mode.
========================================================= */

[data-theme="light"] .admin-panel {
    background: #f8fafc !important;
    border-left: 1px solid rgba(15, 23, 42, 0.16) !important;
    color: #0f172a !important;
}

[data-theme="light"] .ap-hdr {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12) !important;
}

[data-theme="light"] .ap-title {
    color: #6d28d9 !important;
}

[data-theme="light"] .ap-section {
    border-bottom: 1px solid rgba(15, 23, 42, 0.10) !important;
}

[data-theme="light"] .ap-section-title,
[data-theme="light"] .admin-card-help,
[data-theme="light"] .admin-empty-text {
    color: #475569 !important;
}

[data-theme="light"] .req-card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08) !important;
}

    [data-theme="light"] .req-card:hover {
        border-color: rgba(109, 40, 217, 0.35) !important;
    }

[data-theme="light"] .req-name,
[data-theme="light"] .dmi-name {
    color: #0f172a !important;
}

[data-theme="light"] .req-meta,
[data-theme="light"] .req-detail,
[data-theme="light"] .toggle-lbl,
[data-theme="light"] .chart-lbl,
[data-theme="light"] .cbar-lbl {
    color: #475569 !important;
}

    [data-theme="light"] .req-detail strong,
    [data-theme="light"] .req-detail em {
        color: #334155 !important;
    }

[data-theme="light"] .ap-met {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
}

[data-theme="light"] .ap-met-val {
    color: #6d28d9 !important;
}

[data-theme="light"] .ap-met-lbl {
    color: #64748b !important;
}

[data-theme="light"] .ap-chart {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
}

/* Admin action buttons in light mode */
[data-theme="light"] .ra.view {
    background: rgba(109, 40, 217, 0.08) !important;
    border-color: rgba(109, 40, 217, 0.25) !important;
    color: #6d28d9 !important;
}

[data-theme="light"] .ra.approve {
    background: rgba(22, 163, 74, 0.08) !important;
    border-color: rgba(22, 163, 74, 0.25) !important;
    color: #15803d !important;
}

[data-theme="light"] .ra.reject {
    background: rgba(225, 29, 72, 0.08) !important;
    border-color: rgba(225, 29, 72, 0.25) !important;
    color: #be123c !important;
}

/* Admin card manager tabs */
[data-theme="light"] .admin-card-tabs .ra {
    color: #334155 !important;
}

[data-theme="light"] .admin-add-card-btn {
    color: #15803d !important;
}

/* Admin card tags inside panel */
[data-theme="light"] .admin-card-tags .ctag,
[data-theme="light"] .req-card .ctag {
    color: #475569 !important;
    border-color: rgba(15, 23, 42, 0.14) !important;
    background: rgba(15, 23, 42, 0.03) !important;
}

/* Empty state cards */
[data-theme="light"] .empty-section-card {
    background: #ffffff !important;
    color: #475569 !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
}

/* Admin security form fields */
[data-theme="light"] .admin-panel .fi-modal,
[data-theme="light"] .admin-panel input,
[data-theme="light"] .admin-panel textarea {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.16) !important;
    color: #0f172a !important;
}

    [data-theme="light"] .admin-panel .fi-modal::placeholder,
    [data-theme="light"] .admin-panel input::placeholder,
    [data-theme="light"] .admin-panel textarea::placeholder {
        color: #94a3b8 !important;
    }

/* =========================================================
   TECHNOLOGY LOGO CAROUSEL
========================================================= */

.tech-carousel-section {
    position: relative;
    overflow: hidden;
}

    .tech-carousel-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: var(--section-overlay);
        z-index: 0;
        pointer-events: none;
    }

    .tech-carousel-section .sh,
    .tech-carousel-wrap {
        position: relative;
        z-index: 1;
    }

.tech-carousel-wrap {
    display: grid;
    gap: 22px;
    margin-top: 22px;
}

.tech-row-block {
    display: grid;
    gap: 10px;
}

.tech-row-title {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.9;
}

.tech-marquee {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border2);
    border-radius: 18px;
    background: radial-gradient(circle at 10% 50%, rgba(34, 211, 238, 0.08), transparent 28%), rgba(255, 255, 255, 0.025);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 14px;
    animation: techScroll 36s linear infinite;
}

.tech-marquee.reverse .tech-track {
    animation-name: techScrollReverse;
    animation-duration: 40s;
}

.tech-marquee:hover .tech-track {
    animation-play-state: paused;
}

.tech-logo-card {
    flex: 0 0 auto;
    width: 170px;
    height: 82px;
    display: grid;
    place-items: center;
    gap: 7px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--border2);
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: 0.22s ease;
}

    .tech-logo-card:hover {
        transform: translateY(-2px);
        border-color: var(--border3);
        background: linear-gradient(180deg, rgba(34, 211, 238, 0.09), rgba(255,255,255,0.025));
    }

    .tech-logo-card img {
        max-width: 116px;
        max-height: 34px;
        object-fit: contain;
        filter: grayscale(1) brightness(1.25);
        opacity: 0.82;
        transition: 0.22s ease;
    }

    .tech-logo-card:hover img {
        filter: grayscale(0) brightness(1);
        opacity: 1;
    }

    .tech-logo-card span {
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--text3);
        text-align: center;
    }

    .tech-logo-card.text-only {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .tech-logo-card.text-only span {
            font-size: 12px;
            color: var(--text);
        }

@keyframes techScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes techScrollReverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Light mode support */
[data-theme="light"] .tech-marquee {
    background: radial-gradient(circle at 10% 50%, rgba(6, 182, 212, 0.10), transparent 28%), rgba(15, 23, 42, 0.025);
    border-color: rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .tech-logo-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

    [data-theme="light"] .tech-logo-card span {
        color: #475569;
    }

/* Responsive */
@media (max-width: 760px) {
    .tech-logo-card {
        width: 140px;
        height: 74px;
        padding: 10px;
    }

        .tech-logo-card img {
            max-width: 94px;
            max-height: 30px;
        }

    .tech-track {
        animation-duration: 30s;
    }

    .tech-marquee.reverse .tech-track {
        animation-duration: 34s;
    }
}

@media (max-width: 480px) {
    .tech-logo-card {
        width: 126px;
        height: 70px;
    }

        .tech-logo-card span {
            font-size: 8px;
        }
}
/* Dedicated admin workspace */
body.admin-page {
    min-height: 100vh;
    padding-top: 44px;
}

.admin-shell {
    min-height: calc(100vh - 44px);
    padding: 56px 6% 120px;
    background: radial-gradient(circle at top left, rgba(153, 69, 255, 0.16), transparent 34%), var(--bg);
}

.admin-shell-inner {
    max-width: 760px;
}

.admin-back-link,
.admin-shell-kicker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-back-link {
    color: var(--accent2);
    text-decoration: none;
}

.admin-shell-kicker {
    margin-top: 42px;
    color: var(--accent);
}

.admin-shell h1 {
    margin: 12px 0;
    font-family: var(--display);
    font-size: 42px;
    line-height: 1.05;
}

.admin-shell p {
    max-width: 620px;
    color: var(--text2);
    line-height: 1.7;
}

body.admin-page .admin-panel {
    position: static;
    width: 100%;
    max-width: 1180px;
    margin-top: 16px;
    border: 1px solid rgba(153, 69, 255, 0.2);
    border-radius: 8px;
}

body.admin-page .admin-panel.show {
    display: block;
}

body.admin-page .admin-panel .ap-hdr {
    border-radius: 8px 8px 0 0;
}
.admin-console-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
}

.admin-console-head h1 {
    margin: 12px 0;
    font-family: var(--display);
    font-size: 42px;
    line-height: 1.05;
}

.admin-console-head p {
    max-width: 720px;
    color: var(--text2);
    line-height: 1.7;
}

.admin-console-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 1180px;
    margin-top: 28px;
}

.admin-console-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 14px;
    max-width: 1180px;
    margin-top: 14px;
}

.admin-console-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(153, 69, 255, 0.18);
    border-radius: 8px;
    padding: 16px;
}

.admin-console-card.metric span,
.admin-console-card.metric small,
.admin-console-row span,
.admin-console-row small,
.admin-console-card.muted,
.admin-console-list.muted,
.muted {
    color: var(--text3);
}

.admin-console-card.metric span,
.admin-console-card.metric small,
.admin-console-row span,
.admin-console-row small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.04em;
}

.admin-console-card.metric strong {
    display: block;
    margin: 8px 0 4px;
    color: var(--text);
    font-family: var(--display);
    font-size: 28px;
    line-height: 1;
}

.admin-console-title {
    margin-bottom: 12px;
    color: var(--accent);
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-console-list {
    display: grid;
    gap: 8px;
}

.admin-console-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.admin-console-row strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 13px;
}

.admin-console-row > div:last-child {
    text-align: right;
    flex: 0 0 auto;
}

.admin-console-status {
    display: inline-block;
    margin-bottom: 5px;
    padding: 3px 7px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-console-status.active {
    color: #00e87a;
    background: rgba(0, 232, 122, 0.08);
    border: 1px solid rgba(0, 232, 122, 0.24);
}

.admin-console-status.offline {
    color: #ff4466;
    background: rgba(255, 68, 102, 0.08);
    border: 1px solid rgba(255, 68, 102, 0.24);
}

.admin-console-status.draft {
    color: var(--accent2);
    background: rgba(153, 69, 255, 0.08);
    border: 1px solid rgba(153, 69, 255, 0.24);
}

@media (max-width: 900px) {
    .admin-console-head,
    .admin-console-layout {
        grid-template-columns: 1fr;
    }

    .admin-console-head {
        display: grid;
    }

    .admin-console-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .admin-console-grid {
        grid-template-columns: 1fr;
    }

    .admin-console-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-console-row > div:last-child {
        text-align: left;
    }
}
.admin-console-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1180px;
    margin-bottom: 36px;
}

.admin-console-brand {
    color: var(--accent);
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.admin-console-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 700px) {
    .admin-console-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-console-actions {
        justify-content: flex-start;
    }
}
body.admin-page::before,
body.admin-page::after {
    display: none;
}

body.admin-page {
    background: #050914;
}

body.admin-page .admin-shell {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 18, 35, 0.98), rgba(5, 9, 20, 1));
}
