﻿/* ============================================================
   BSP — Building Systems Profiling
   Shared design system
   ============================================================ */

/*@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {*/
    /* Neutrals — subtly cool */
    /*--ink: oklch(0.22 0.014 244);
    --ink-2: oklch(0.38 0.014 244);
    --ink-3: oklch(0.54 0.012 244);
    --bg: oklch(0.985 0.004 244);
    --bg-panel: oklch(0.965 0.006 244);
    --bg-deep: oklch(0.21 0.018 250);
    --bg-deep-2: oklch(0.26 0.02 250);
    --line: oklch(0.90 0.008 244);
    --line-2: oklch(0.83 0.01 244);
    --white: oklch(0.995 0.002 244);*/
    /* Product accents — shared chroma/lightness, varied hue */
    /*--leak: oklch(0.60 0.122 244);*/ /* water blue   */
    /*--leak-soft: oklch(0.94 0.03 244);
    --shut: oklch(0.60 0.10 178);*/ /* teal         */
    /*--shut-soft: oklch(0.94 0.028 178);
    --legio: oklch(0.64 0.12 58);*/ /* warm amber   */
    /*--legio-soft: oklch(0.95 0.03 70);*/
    /* Brand primary (BSP parent) follows leak blue, slightly deeper */
    /*--brand: oklch(0.52 0.13 248);
    --maxw: 1200px;
    --radius: 14px;
    --radius-sm: 9px;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'IBM Plex Sans', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
    --shadow-sm: 0 1px 2px oklch(0.22 0.02 244 / 0.05), 0 2px 6px oklch(0.22 0.02 244 / 0.04);
    --shadow-md: 0 4px 14px oklch(0.22 0.02 244 / 0.07), 0 12px 30px oklch(0.22 0.02 244 / 0.06);
    --shadow-lg: 0 10px 40px oklch(0.22 0.02 244 / 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 100px 0;
}

.section-tight {
    padding: 72px 0;
}*/

/* ---------- Eyebrow / mono labels ---------- */
/*.eyebrow {
    font-family: var(--font-mono);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--line-2);
    }

    .eyebrow.no-rule::before {
        display: none;
    }*/

/* ---------- Buttons ---------- */
/*.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15.5px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
    white-space: nowrap;
}

    .btn:active {
        transform: translateY(1px);
    }

.btn-primary {
    background: var(--ink);
    color: var(--white);
}

    .btn-primary:hover {
        background: oklch(0.30 0.02 248);
        box-shadow: var(--shadow-md);
    }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-2);
}

    .btn-ghost:hover {
        border-color: var(--ink);
        background: var(--white);
    }

.btn-arrow svg {
    transition: transform .2s ease;
}

.btn:hover .btn-arrow svg {
    transform: translateX(3px);
}*/

/* ---------- Top navigation ---------- */
/*.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: oklch(0.985 0.004 244 / 0.82);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--brand);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

    .brand-mark span {
        font-family: var(--font-display);
        font-weight: 700;
        color: var(--white);
        font-size: 15px;
        letter-spacing: -0.04em;
    }

.brand-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
}

    .brand-name small {
        display: block;
        font-family: var(--font-mono);
        font-weight: 400;
        font-size: 9.5px;
        letter-spacing: 0.16em;
        color: var(--ink-3);
        text-transform: uppercase;
        margin-top: 1px;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-links a.link {
        font-size: 15px;
        font-weight: 500;
        color: var(--ink-2);
        transition: color .15s ease;
        position: relative;
    }

        .nav-links a.link:hover {
            color: var(--ink);
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-login {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

    .nav-login:hover {
        color: var(--brand);
    }*/

/* ---------- Generic grid helpers ---------- */
/*.grid {
    display: grid;
    gap: 24px;
}

.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}*/

/* ---------- Cards ---------- */
/*.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}*/

/* ---------- Image placeholder ---------- */
/*.ph {
    position: relative;
    background-color: var(--bg-panel);
    background-image: repeating-linear-gradient( -45deg, transparent 0, transparent 11px, oklch(0.9 0.01 244 / 0.6) 11px, oklch(0.9 0.01 244 / 0.6) 12px );
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    overflow: hidden;
}

    .ph .ph-label {
        font-family: var(--font-mono);
        font-size: 12px;
        letter-spacing: 0.08em;
        color: var(--ink-3);
        background: var(--bg);
        border: 1px solid var(--line);
        padding: 6px 12px;
        border-radius: 999px;
        text-transform: uppercase;
    }*/

/* ---------- Footer ---------- */
/*.footer {
    background: var(--bg-deep);
    color: oklch(0.82 0.01 244);
    padding: 70px 0 38px;
}

    .footer a {
        color: oklch(0.78 0.012 244);
        transition: color .15s ease;
    }

        .footer a:hover {
            color: var(--white);
        }

    .footer h4 {
        color: var(--white);
        font-size: 13px;
        font-family: var(--font-mono);
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col li {
    font-size: 15px;
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 26px;
    border-top: 1px solid oklch(0.4 0.02 250);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: oklch(0.68 0.012 244);
    font-family: var(--font-mono);
    letter-spacing: 0.03em;
}*/

/* ---------- Reveal on scroll ---------- */
/*.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}

    .reveal.in {
        opacity: 1;
        transform: none;
    }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}*/

/* ---------- Responsive ---------- */
/*@media (max-width: 980px) {
    .cols-3, .cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .section {
        padding: 76px 0;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .wrap {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .cols-3, .cols-2, .cols-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-inner {
        padding: 0 20px;
    }
}*/
