/* ==== Design Tokens ==== */
:root{
    --bg: #0b1020;
    --surface: #0f172a;
    --elev: #111827;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --brand-1: #c8a24c; /* logo gold */
    --brand-2: #1a237e; /* logo indigo */
    --accent: #34d399;
    --danger: #ef4444;
    --ring: color-mix(in oklab, var(--brand-2), white 15%);
    --card: color-mix(in oklab, var(--surface), white 2%);
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    /* Logo brand colors */
    --logo-1: #c8a24c; /* gold */
    --logo-2: #1a237e; /* deep indigo */
}

:root.light{
    --bg: #f7f8fb;
    --surface: #ffffff;
    --elev: #f3f4f6;
    --text: #0b1020;
    --muted: #475569;
    --card: #ffffff;
    --shadow: 0 10px 25px rgba(2,6,23,.08);
}

*{ box-sizing: border-box }
html,body{ height:100%; overflow-x:hidden }
html{ scroll-behavior:smooth }
body{
    margin:0;
    font-family:var(--font);
    color:var(--text);
    background: radial-gradient(1200px 800px at 10% -10%, #1b2550, transparent 60%),
    radial-gradient(900px 600px at 110% 10%, #3b185f, transparent 60%),
    var(--bg);
    line-height:1.6;
}

/* Mobile menu backdrop (fades in when nav is open) */
body::before{
    content:""; position:fixed; inset: var(--header-h, 64px) 0 0 0;
    background: rgba(2,6,23,.55);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity:0; pointer-events:none; transition: opacity .25s ease; z-index:40;
}
body.nav-open::before{ opacity:1; pointer-events:auto }

/* Media defaults */
img, video{ max-width:100%; height:auto; display:block }
svg{ max-width:100%; height:auto }

/* Improve tap targets on mobile */
@media (max-width: 900px){
    a, button{ min-height:44px }
}

/* Background glow */
.bg-glow{
    position:fixed; inset:-20vmax;
    background:
    radial-gradient(40vmax 40vmax at 20% 10%, color-mix(in oklab, var(--brand-1), transparent 70%), transparent 70%),
    radial-gradient(50vmax 40vmax at 80% -10%, color-mix(in oklab, var(--brand-2), transparent 70%), transparent 70%);
    filter: blur(60px) saturate(120%);
    opacity:.45;
    pointer-events:none;
    z-index:-1;
}
.light .bg-glow{ opacity:.25 }

/* Layout utilities */
.container{ width:min(1100px, 92%); margin-inline:auto }
.section{ padding: clamp(60px, 8vw, 120px) 0; scroll-margin-top: calc(var(--header-h, 64px) + 12px) }
.light .section{ scroll-margin-top: calc(var(--header-h, 64px) + 12px) }

/* Ensure home anchor also respects header offset */
#home{ scroll-margin-top: calc(var(--header-h, 64px) + 12px) }
.section.alt{ background: var(--elev); position: relative; }
.section.alt::before{
    content:""; position:absolute; top:-40px; left:0; right:0; height:40px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--elev) 50.5%);
    pointer-events: none;
}
.section.alt::after{
    content:""; position:absolute; bottom:-40px; left:0; right:0; height:40px;
    background: linear-gradient(to top left, transparent 49.5%, var(--elev) 50.5%);
    pointer-events: none; z-index: 1;
}
.section-head{ text-align:center; margin-bottom: 2rem }
.grid{ display:grid; gap:clamp(18px, 2.2vw, 28px) }
.grid.two{ grid-template-columns: repeat(2, minmax(0,1fr)) }
.grid.three{ grid-template-columns: repeat(3, minmax(0,1fr)) }
.grid.four{ grid-template-columns: repeat(4, minmax(0,1fr)) }
@media (max-width: 980px){
    .grid.two, .grid.three{ grid-template-columns: 1fr }
    .grid.four{ grid-template-columns: repeat(2, minmax(0,1fr)) }
}
@media (max-width: 600px){
    .grid.four{ grid-template-columns: 1fr }
}
.stack{ display:flex; flex-direction:column }
.stack.gap{ gap:14px } .stack.gap-lg{ gap:22px }
.row{ display:flex; gap:12px; align-items:center }
.row.between{ justify-content:space-between }
.badge{ font-size:1.4rem }

/* Vision & Mission */
.vision-mission {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.vision-card, .mission-card {
    flex: 1;
    padding: 30px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid color-mix(in oklab, var(--surface), white 10%);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
}

.vision-card {
    border-top: 4px solid var(--brand-1);
}

.mission-card {
    border-top: 4px solid var(--brand-2);
}

.vision-card h3, .mission-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vision-card h3::before, .mission-card h3::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.vision-card h3::before {
    background: var(--brand-1);
}

.mission-card h3::before {
    background: var(--brand-2);
}

/* Header */
.site-header{
    position: fixed; top:0; z-index:50; width: 100%;
    background: color-mix(in oklab, var(--surface), transparent 35%);
    backdrop-filter: blur(12px);
    border-bottom:1px solid color-mix(in oklab, var(--surface), white 8%);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: color-mix(in oklab, var(--surface), transparent 15%);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; padding:12px 0 }
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; color:var(--text); text-decoration:none; letter-spacing:.2px }
.brand .accent{ background: linear-gradient(90deg, var(--logo-1), var(--logo-2)); -webkit-background-clip:text; background-clip:text; color:transparent }
.logo{ width:32px; height:32px; flex:0 0 auto }

.nav ul{ display:flex; gap:8px; align-items:center; list-style:none; margin:0; padding:0; flex-wrap:nowrap }
.nav a{ color:var(--text); text-decoration:none; padding:8px 8px; border-radius:10px; white-space:nowrap; font-size:0.9rem }
.nav a:hover{ background: color-mix(in oklab, var(--surface), white 7%) }

.nav-toggle{ display:none; width:42px; height:42px; border:1px solid color-mix(in oklab, var(--surface), white 12%); background:transparent; border-radius:12px; cursor:pointer }
.nav-toggle .bar{ display:block; width:22px; height:2px; background:var(--text); margin:4px auto; border-radius:2px }

.theme-toggle{ display:grid; place-items:center; width:42px; height:42px; border-radius:12px; border:1px solid color-mix(in oklab, var(--surface), white 12%); background:transparent; cursor:pointer }
.theme-toggle svg{ width:18px; height:18px }
.theme-toggle .moon{ display:none }
.light .theme-toggle .sun{ display:none }
.light .theme-toggle .moon{ display:block }

/* Mobile nav */
@media (max-width: 900px){
    .nav-toggle{ display:inline-block }
    .nav ul{
        display:none;
        position:fixed; inset:auto 0 0 0; top: var(--header-h, 64px);
        background:var(--surface);
        border-top:1px solid color-mix(in oklab, var(--surface), white 10%);
        padding:18px 5vw calc(18px + env(safe-area-inset-bottom));
        gap:10px; flex-direction:column; z-index:60;
    }
    .nav ul.open{ display:flex }
    .nav li{ width:100% }
    .nav a{ display:block; width:100%; font-size:1.05rem; padding:12px 14px; border-radius:12px }
    .nav li + li{ border-top:1px solid color-mix(in oklab, var(--surface), white 8%) }
    .theme-wrap{ align-self:flex-end }
}

/* Lock background scroll when mobile menu open */
body.nav-open{ overflow:hidden; touch-action:none }

/* Hero */
.eyebrow{ color:var(--accent); text-transform:uppercase; letter-spacing:.18em; font-weight:700; font-size:.86rem }
h1{ font-size: clamp(2.2rem, 3.8vw, 4rem); line-height:1.1; margin:0 }
h2{ font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height:1.2; margin:0 0 8px }
h3{ margin:0 0 6px }
.lede{ font-size: clamp(1.05rem, 1.4vw, 1.2rem); color:var(--muted); max-width:55ch }
.grad{ background: linear-gradient(90deg, var(--brand-1), var(--brand-2)); -webkit-background-clip:text; background-clip:text; color:transparent }
.hero .hero-stats{ display:flex; gap:26px; padding:0; margin:10px 0 0; list-style:none; color:var(--muted) }
.hero .hero-stats strong{ color:var(--text); font-size:1.2rem }
.hero-media{
    min-height: 340px; border-radius: var(--radius);
    background:
    radial-gradient(120px 80px at 80% 20%, color-mix(in oklab, var(--brand-1), transparent 35%), transparent 60%),
    radial-gradient(220px 120px at 20% 80%, color-mix(in oklab, var(--brand-2), transparent 35%), transparent 60%),
    linear-gradient(180deg, color-mix(in oklab, var(--surface), white 4%), color-mix(in oklab, var(--surface), black 6%));
    display:grid; place-items:center; padding:28px; box-shadow: var(--shadow); border:1px solid color-mix(in oklab, var(--surface), white 6%);
    position: relative; overflow: hidden;
}
.hero-media::before{
    content:""; position:absolute; inset:-50%; width:200%; height:200%;
    background: conic-gradient(from 0deg at 50% 50%, color-mix(in oklab, var(--brand-1), transparent 70%), color-mix(in oklab, var(--brand-2), transparent 70%), color-mix(in oklab, var(--brand-1), transparent 70%));
    animation: heroSpin 12s linear infinite;
    opacity: .4;
}
@keyframes heroSpin{ to{ transform: rotate(360deg) } }
.glass-card{
    width:min(580px, 100%); border-radius:18px; padding:18px;
    background: color-mix(in oklab, var(--surface), transparent 25%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border:1px solid color-mix(in oklab, var(--surface), white 16%);
    position: relative; z-index: 1;
}
.glass-card h3{ margin:0 0 12px; font-weight:700; letter-spacing:.01em; font-size: clamp(1rem, 2.6vw, 1.15rem) }
.glass-card .metrics{ display:grid; grid-template-columns: repeat(4,1fr); gap:10px; margin-bottom:12px }
.glass-card .metrics div{ background:var(--card); border:1px solid color-mix(in oklab, var(--surface), white 10%); border-radius:12px; padding:12px; text-align:center; display:flex; flex-direction:column; justify-content:center; min-height:68px }
.glass-card .metrics div span{ display:block; color:var(--muted); font-size: clamp(.8rem, 2.4vw, .9rem) }
.glass-card .metrics div strong{ display:block; font-size: clamp(1.05rem, 3.6vw, 1.2rem); line-height:1.2 }
.sparkline{ height:70px; border-radius:10px; background:
    linear-gradient(180deg, color-mix(in oklab, var(--brand-1), transparent 70%), transparent),
    repeating-linear-gradient(90deg, color-mix(in oklab, var(--surface), white 8%), color-mix(in oklab, var(--surface), white 8%) 1px, transparent 1px, transparent 28px);
}

/* Hero stagger animation */
@keyframes fadeUp{
    from{ opacity:0; transform:translateY(20px) }
    to{ opacity:1; transform:translateY(0) }
}
.hero .eyebrow, .hero h1, .hero .lede, .hero .row.gap, .hero .hero-stats, .hero .hero-media{
    opacity: 0; animation: fadeUp .7s ease forwards;
}
.hero .eyebrow{ animation-delay: .1s }
.hero h1{ animation-delay: .25s }
.hero .lede{ animation-delay: .4s }
.hero .row.gap{ animation-delay: .55s }
.hero .hero-stats{ animation-delay: .7s }
.hero .hero-media{ animation-delay: .5s }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
    *{ scroll-behavior: auto !important }
    .revealed, [data-reveal] .card, [data-reveal] .feature, [data-reveal] .post{ transition: none !important }
    .hero .eyebrow, .hero h1, .hero .lede, .hero .row.gap, .hero .hero-stats, .hero .hero-media{ animation: none !important; opacity:1 !important }
}

/* Cards & Features */
.cards .card, .post.card{
    background: var(--card); border:1px solid color-mix(in oklab, var(--surface), white 10%);
    border-radius: 16px; overflow: clip; box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.cards .card:hover, .post.card:hover{ transform: translateY(-3px) }
.card img{ display:block; width:100%; height:190px; object-fit:cover }
.card-body{ padding:16px }
.tags{ display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:10px 0 0; list-style:none }
.tags li{ font-size:.8rem; padding:6px 10px; border-radius:999px; background: color-mix(in oklab, var(--surface), white 8%); color:var(--muted) }
.card-cta{ display:inline-block; margin-top:12px; text-decoration:none; color:var(--accent); font-weight:600 }
.features .feature{
    background:var(--card); border:1px solid color-mix(in oklab, var(--surface), white 10%); border-radius:16px; padding:18px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.features .feature:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 40px color-mix(in oklab, var(--brand-1), transparent 75%), 0 0 0 1px color-mix(in oklab, var(--brand-1), transparent 60%);
    border-color: color-mix(in oklab, var(--brand-1), transparent 50%);
}
.features .icon{
    width:48px; height:48px; display:grid; place-items:center;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color:#0b1020; border-radius:12px; font-weight:800;
}
.features .icon svg{ width:24px; height:24px; stroke:#0b1020; flex-shrink:0 }

/* Products */
.product-logo {
    display: block;
    max-width: 180px;
    height: auto;
    margin-bottom: 12px;
    margin-inline: auto;
}
.product-card {
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}
.product-card .icon.badge {
    margin-inline: auto;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.product-card h3 {
    font-size: 1.25rem;
}
.product-subtitle {
    color: var(--brand-1);
    font-weight: 600;
    font-size: .9rem;
    margin: -2px 0 8px;
    letter-spacing: .02em;
}

/* About */
.checklist{ list-style:none; padding:0; margin:0; display:grid; gap:10px }
.checklist li::before{ content:"✔️ "; margin-right:6px }
.quote{ background: var(--card); border:1px solid color-mix(in oklab, var(--surface), white 10%); border-radius:16px; padding:22px; box-shadow: var(--shadow) }
.quote blockquote{ margin:0 0 12px; font-size:1.1rem; font-weight:600 }
.quote-meta{ display:flex; gap:10px; align-items:center }
.quote-meta img{ width:48px; height:48px; object-fit:cover; border-radius:50%; border:1px solid color-mix(in oklab, var(--surface), white 12%) }
.avatar-initials{
    width:48px; height:48px; border-radius:50%; display:grid; place-items:center;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color:#0b1020; font-weight:800; font-size:1rem; letter-spacing:.02em; flex-shrink:0;
}

/* Blog */
.post.card{ padding:16px }
.pill{ display:inline-block; font-size:.75rem; padding:4px 10px; border-radius:999px;
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2)); color:#06101a; font-weight:700; letter-spacing:.02em; margin-bottom:10px }
    .post h3{ margin:0 0 8px }
    .post h3 a{ color:var(--text); text-decoration:none }
    .post h3 a:hover{ text-decoration:underline }
    .post-meta{ color:var(--muted); font-size:.9rem }

    /* Buttons & Links */
    .btn{
        --bg: linear-gradient(90deg, var(--brand-1), var(--brand-2));
        display:inline-block; padding:12px 16px; border-radius:12px; color:#06101a; font-weight:800; text-decoration:none; letter-spacing:.01em;
        border:0; cursor:pointer; box-shadow: 0 8px 18px color-mix(in oklab, var(--brand-2), transparent 70%);
    }
    .btn--primary{ background: var(--bg) }
    .btn--ghost{ background: transparent; color: var(--text); border:1px solid color-mix(in oklab, var(--surface), white 14%) }
    .btn--sm{ padding:8px 12px; font-weight:700 }
    @media (max-width: 900px){ .btn{ min-height:44px } }

    /* Form */
    .form{ background: var(--card); border:1px solid color-mix(in oklab, var(--surface), white 10%); border-radius:16px; padding:20px; box-shadow: var(--shadow) }
    .field{ display:grid; gap:8px }
    .field span{ font-weight:600 }
    input, select, textarea{
        width:100%; padding:12px 12px; border-radius:12px; border:1px solid color-mix(in oklab, var(--surface), white 14%);
        background: var(--surface); color:var(--text); outline: none;
    }
    input:focus, select:focus, textarea:focus{
        border-color: var(--ring); box-shadow: 0 0 0 4px color-mix(in oklab, var(--ring), transparent 75%);
    }
    .error{ color: var(--danger); min-height: 18px }
    .form-note{ margin-top:10px; color:var(--muted) }
    .switch{ display:flex; align-items:center; gap:10px; cursor:pointer; user-select:none }
    .switch input{ position:absolute; opacity:0 }
    .switch span{ width:44px; height:26px; background: color-mix(in oklab, var(--surface), white 10%); border-radius:999px; position:relative; transition:.2s }
    .switch span::after{ content:""; width:20px; height:20px; background:#fff; border-radius:50%; position:absolute; top:3px; left:3px; transition:.2s }
    .switch input:checked + span{ background: linear-gradient(90deg, var(--brand-1), var(--brand-2)) }
    .switch input:checked + span::after{ transform: translateX(18px) }

    /* Footer */
    .site-footer{ border-top:1px solid color-mix(in oklab, var(--surface), white 10%); background: var(--surface); padding:36px 0 }
    .links{ list-style:none; padding:0; margin:0; display:grid; gap:8px }
    .links a{ color:var(--muted); text-decoration:none }
    .links a:hover{ color:var(--text) }
    .social{ display:flex; gap:10px; align-items:center; justify-content:flex-end }
    .social-btn{
        display:grid; place-items:center; width:44px; height:44px; border-radius:10px; border:1px solid color-mix(in oklab, var(--surface), white 12%);
        color:var(--text); text-decoration:none; background: color-mix(in oklab, var(--surface), white 6%);
    }

    /* Animations / Reveal */
    [data-reveal] .card, [data-reveal] .feature, [data-reveal] .post{
        opacity:0; transform: translateY(12px) scale(.98);
    }
    .revealed{ opacity:1 !important; transform: none !important; transition: opacity .6s ease, transform .6s ease }

    /* Value Cards */
.values-grid{ grid-template-columns: repeat(2, 1fr) !important; gap: clamp(18px, 2.5vw, 24px); }
.value-card{
    padding: 24px !important; border-left: 4px solid var(--brand-1);
    display: flex; flex-direction: column; gap: 10px;
    min-height: 200px;
}
.value-card:nth-child(2){ border-left-color: var(--brand-2); }
.value-card:nth-child(3){ border-left-color: var(--accent); }
.value-card:nth-child(4){ border-left-color: color-mix(in oklab, var(--brand-1), var(--brand-2) 50%); }
.value-card h3{ font-size: 1.15rem; }
.value-card p{ color: var(--muted); font-size: .92rem; line-height: 1.7; flex: 1; }
.icon-lg{
    width: 56px !important; height: 56px !important; border-radius: 14px !important;
    box-shadow: 0 4px 16px color-mix(in oklab, var(--brand-1), transparent 75%);
}
.icon-lg svg{ width: 28px; height: 28px; }
.value-stat{
    margin-top: auto; padding-top: 12px; border-top: 1px solid color-mix(in oklab, var(--surface), white 8%);
    font-size: .85rem; color: var(--muted);
}
.value-stat strong{
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-size: 1.1rem;
}
@media (max-width: 600px){
    .values-grid{ grid-template-columns: 1fr !important; }
}

/* Founder */
.founder-card{
    display: grid; grid-template-columns: 280px 1fr; gap: clamp(24px, 4vw, 48px);
    background: var(--card); border: 1px solid color-mix(in oklab, var(--surface), white 10%);
    border-radius: 20px; padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow);
    align-items: start;
}
.founder-photo{
    position: relative; border-radius: 16px; overflow: hidden;
    border: 3px solid color-mix(in oklab, var(--brand-1), transparent 50%);
    box-shadow: 0 8px 30px color-mix(in oklab, var(--brand-1), transparent 80%);
}
.founder-photo img{ width: 100%; height: auto; display: block; }
.founder-info h3{ font-size: 1.5rem; margin: 0 0 4px; }
.founder-title{
    color: var(--brand-1); font-weight: 600; font-size: .95rem;
    letter-spacing: .02em; margin: 0 0 16px;
}
.founder-info p{ color: var(--muted); margin: 0 0 12px; line-height: 1.7; }
.founder-highlights{
    display: flex; gap: 24px; margin: 20px 0;
    padding: 16px 0; border-top: 1px solid color-mix(in oklab, var(--surface), white 8%);
    border-bottom: 1px solid color-mix(in oklab, var(--surface), white 8%);
}
.highlight-item{ text-align: center; flex: 1; }
.highlight-item strong{
    display: block; font-size: 1.3rem;
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.highlight-item span{ display: block; font-size: .8rem; color: var(--muted); margin-top: 2px; }
.founder-credentials{
    list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 6px;
}
.founder-credentials li{ color: var(--muted); font-size: .9rem; }
.founder-credentials li::before{ content: "\\2022 "; color: var(--brand-1); font-weight: 700; margin-right: 6px; }
.founder-social{ display: flex; gap: 10px; margin-top: 16px; }

@media (max-width: 700px){
    .founder-card{ grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .founder-photo{ max-width: 220px; }
    .founder-highlights{ flex-direction: column; gap: 14px; }
    .founder-social{ justify-content: center; }
}

/* CTA Banner */
.cta-banner{
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, color-mix(in oklab, var(--brand-2), var(--bg) 60%), color-mix(in oklab, var(--brand-1), var(--bg) 70%));
    border-top: 1px solid color-mix(in oklab, var(--brand-1), transparent 70%);
    border-bottom: 1px solid color-mix(in oklab, var(--brand-2), transparent 70%);
}
.cta-banner h2{ margin-bottom:12px }

/* Trusted Strip */
.trusted-strip{ padding: 32px 0; border-top: 1px solid color-mix(in oklab, var(--surface), white 6%); border-bottom: 1px solid color-mix(in oklab, var(--surface), white 6%); }
.trusted-label{ text-align:center; text-transform:uppercase; letter-spacing:.15em; font-size:.78rem; color:var(--muted); margin:0 0 20px; font-weight:600 }
.trusted-logos{ display:flex; justify-content:center; align-items:center; gap: clamp(28px, 5vw, 60px); flex-wrap:wrap }
.trusted-logo-item{ display:flex; align-items:center; gap:8px; color:var(--muted); font-size:.88rem; font-weight:500; opacity:.7; transition: opacity .3s ease }
.trusted-logo-item:hover{ opacity:1 }
.trusted-logo-item svg{ width:22px; height:22px; flex-shrink:0 }

/* Utility */
.muted{ color:var(--muted) }

/* Honeypot field (visually hidden) */
.hp{ position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }

    /* Elevate header on scroll */
    [data-elevate].scrolled{ box-shadow: 0 12px 30px rgba(0,0,0,.25) }


    @media (max-width: 900px) {
        /* Mobile Nav */
        .nav-toggle {
            display: inline-block;
        }
        .nav ul {
            display: none;
            position: fixed;
            inset: auto 0 0 0;
            top: var(--header-h, 64px);
            background: var(--surface);
            border-top: 1px solid color-mix(in oklab, var(--surface), white 10%);
            padding: 18px 5vw calc(18px + env(safe-area-inset-bottom));
            gap: 10px;
            flex-direction: column;
            z-index: 60;
        }
        .nav ul.open {
            display: flex;
        }
        .nav a {
            display: block;
            width: 100%;
        }
        .theme-wrap {
            align-self: flex-end;
        }

        /* Hero Section */
        .hero .stack {
            text-align: center;
            align-items: center;
        }
        h1 {
            font-size: 2rem;
        }
        .lede {
            font-size: 1rem;
        }
        .hero-media {
            min-height: 280px;
        }
        .glass-card .metrics {
            grid-template-columns: repeat(2, 1fr);
        }
        .glass-card{ padding:20px; background: color-mix(in oklab, var(--surface), transparent 10%) }
        .glass-card .metrics{ gap:12px }
        .glass-card .metrics div{ padding:14px; min-height:74px }
        .glass-card .metrics div strong{ font-size:1.15rem }
        .sparkline{ height:56px }
        .hero .hero-stats {
            flex-wrap: wrap;
            justify-content: center;
        }
        .row.gap {
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Vision & Mission */
        .vision-mission {
            flex-direction: column;
        }
    }


    @media (max-width: 600px) {
        .vision-mission {
            flex-direction: column;
        }
    }

    @media (max-width: 380px){
        .glass-card .metrics{ grid-template-columns: 1fr }
    }

    /* === Mobile enhancements === */

    /* 1. Footer alignment when stacked */
    @media (max-width: 980px) {
        .site-footer .grid.three { text-align: center; }
        .social { justify-content: center; }
        .links { justify-items: center; }
        .site-footer .brand { justify-content: center; }
    }

    /* 2. Brand text overflow on narrow screens */
    @media (max-width: 400px) {
        .brand { font-size: 0.85rem; }
        .logo { width: 28px; height: 28px; }
    }

    /* 3. Hero buttons stack vertically on small phones */
    @media (max-width: 480px) {
        .hero .row.gap {
            flex-direction: column;
            width: 100%;
        }
        .hero .row.gap .btn {
            width: 100%;
            text-align: center;
        }
    }

    /* 4. Touch feedback for mobile */
    @media (hover: none) {
        .btn:active { opacity: 0.85; transform: scale(0.97); }
        .feature:active { transform: scale(0.98); }
    }

    /* 5. Product logos on mobile */
    @media (max-width: 980px) {
        .product-logo { max-width: 140px; }
    }

    /* 6. Form send row stacks on small screens */
    @media (max-width: 480px) {
        .form .row.between {
            flex-direction: column;
            gap: 16px;
            align-items: stretch;
        }
        .form .row.between .btn { text-align: center; }
    }

    /* 7. Larger nav links on mobile for easier tapping */
    @media (max-width: 900px) {
        .nav a { padding: 14px 16px; font-size: 1.1rem; }
    }
