:root {
    --bg: #0b1220;
    --panel: #111a2b;
    --panel-2: #16233a;
    --text: #e9eef8;
    --muted: #b8c2d9;
    --line: #29364d;
    --accent: #5ab0ff;
    --accent-2: #88c9ff;
    --white: #ffffff;
    --max: 1180px;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}



* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #08101d 0%, #0b1220 100%);
    color: var(--text);
    line-height: 1.6;
    padding: 15px;
    
}

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

.container {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}
.card h2{
    color: white;
}

.narrow { max-width: 820px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(8, 16, 29, 0.88);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}
.brand-mark {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, #6bb6ff, #4a8fdc);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Make the logo fill the box */
.brand-mark img {
    width: 100%;
    height: auto;
}
.brand-logo {
    height: 100px !important;   /* CHANGE THIS: 48 / 56 / 64 */
    width: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
     filter: brightness(0) invert(1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text strong {
    font-size: 1.25rem;
    color: white;
}

.brand-text span {
    font-size: 0.75rem;
    opacity: 0.7;
    color: white;
}

.brand:hover { text-decoration: none; }
.brand strong { display: block; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: .8rem; }

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--white);
    text-decoration: none;
}

.hero,
.page-hero {
    padding: 5rem 0 3rem;
}

.hero-grid,
.two-col,
.cards-2,
.cards-3,
.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid,
.two-col { grid-template-columns: 1.2fr .8fr; }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3, .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.eyebrow {
    margin: 0 0 .5rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-2);
    font-size: .8rem;
    font-weight: 700;
}

h1, h2, h3, h4 {
    line-height: 1.15;
    margin: 0 0 1rem;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.lead {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 60ch;
}

.section { padding: 2rem 0 4rem; }
.section-alt {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card {
    background: linear-gradient(180deg, rgba(17,26,43,.96), rgba(12,20,35,.96));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.emphasis-card {
    border-color: rgba(90,176,255,0.35);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-block;
    padding: .9rem 1.15rem;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn:hover { text-decoration: none; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #9fdcff);
    color: #06111f;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--line);
}

.checklist {
    padding-left: 1.1rem;
    margin: 0;
}

.checklist li { margin-bottom: .7rem; }

.tile-list {
    display: grid;
    gap: .9rem;
}

.tile {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 1rem;
}

.tile strong {
    display: block;
    margin-bottom: .35rem;
}

.tile span,
.card p,
.service-item li,
.footer-grid p { color: var(--muted); }

.service-stack {
    display: grid;
    gap: 1.2rem;
}

.site-footer {
    margin-top: 2rem;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.14);
}

.footer-bottom {
    padding-top: 1rem;
    color: var(--muted);
    font-size: .92rem;
}
.page-hero {
    padding: 72px 0 36px;
    background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: #7fb3ff;
    margin-bottom: 12px;
}

.page-hero h1 {
    margin: 0 0 16px;
    font-size: 2.5rem;
    line-height: 1.1;
    color: #ffffff;
}

.page-intro {
    max-width: 850px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

.section {
    padding: 48px 0 72px;
}

.capability-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 360px);
    gap: 28px;
    align-items: start;
}

.capability-main,
.capability-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-card,
.sidebar-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.content-card h2,
.sidebar-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.35rem;
}

.content-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.02rem;
}

.content-card p,
.sidebar-card p,
.content-card li,
.sidebar-card li {
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
}

.capability-list {
    display: grid;
    gap: 18px;
}

.capability-item {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.capability-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.clean-list {
    margin: 0;
    padding-left: 20px;
}

.clean-list li + li {
    margin-top: 10px;
}

.snapshot-card {
    position: sticky;
    top: 100px;
}

.snapshot-list {
    margin: 0;
    padding-left: 20px;
}

.snapshot-list li + li {
    margin-top: 12px;
}

.keywords {
    word-spacing: 0.08em;
}

.contact-card a {
    color: #8ec5ff;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

@media (max-width: 960px) {
    .capability-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-card {
        position: static;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}
@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .cards-2,
    .cards-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        gap: .8rem;
    }
}
