/* ===========================================================
   PIS — DESIGN SYSTEM v3 (Glassmorphism + Gradient Washes)
   Shared by all pages. Single source of truth.
   =========================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(232,101,26,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(232,101,26,0.7); }

/* ===== TOKENS — LIGHT (default) ===== */
:root {
    --bg: #FAFBFC;
    --bg-alt: #F4F6F8;
    --surface: #FFFFFF;
    --surface-glass: rgba(255,255,255,0.65);
    --surface-glass-strong: rgba(255,255,255,0.85);

    --orange: #E8651A;
    --orange-soft: #FF8A4D;
    --orange-deep: #B84A0E;
    --cyan: #0891B2;
    --cyan-soft: #22D3EE;
    --violet: #7C3AED;
    --violet-soft: #A78BFA;
    --green: #16A34A;
    --green-soft: #4ADE80;
    --red: #DC2626;
    --amber: #F59E0B;

    --text: #0F172A;
    --text-2: #475569;
    --text-3: #94A3B8;
    --text-inv: #FFFFFF;

    --border: rgba(15,23,42,0.08);
    --border-2: rgba(15,23,42,0.14);
    --border-glass: rgba(255,255,255,0.6);

    --wash-1: radial-gradient(ellipse at 80% -20%, rgba(232,101,26,0.18) 0%, transparent 55%);
    --wash-2: radial-gradient(ellipse at 10% 110%, rgba(8,145,178,0.18) 0%, transparent 55%);
    /* --wash-3 (violet) removed — off-brand */
    --wash-bg: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);

    --shadow-sm: 0 1px 2px rgba(15,23,42,0.04), 0 4px 12px rgba(15,23,42,0.04);
    --shadow: 0 4px 16px rgba(15,23,42,0.06), 0 12px 32px rgba(15,23,42,0.06);
    --shadow-lg: 0 8px 24px rgba(15,23,42,0.08), 0 24px 56px rgba(15,23,42,0.10);
    --shadow-glow-orange: 0 8px 32px rgba(232,101,26,0.28);
    --shadow-glow-cyan: 0 8px 32px rgba(8,145,178,0.24);

    --mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --blur: 18px;
    --blur-strong: 28px;
}

/* ===== TOKENS — DARK ===== */
[data-theme="dark"] {
    --bg: #06080F;
    --bg-alt: #0B101C;
    --surface: #111827;
    --surface-glass: rgba(17,24,39,0.55);
    --surface-glass-strong: rgba(17,24,39,0.80);

    --text: #F1F5F9;
    --text-2: #94A3B8;
    --text-3: #64748B;

    --border: rgba(255,255,255,0.08);
    --border-2: rgba(255,255,255,0.14);
    --border-glass: rgba(255,255,255,0.10);

    --wash-1: radial-gradient(ellipse at 80% -20%, rgba(232,101,26,0.22) 0%, transparent 55%);
    --wash-2: radial-gradient(ellipse at 10% 110%, rgba(8,145,178,0.22) 0%, transparent 55%);
    /* --wash-3 (violet) removed */
    --wash-bg: linear-gradient(180deg, #06080F 0%, #0B101C 100%);

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.4);
    --shadow: 0 4px 16px rgba(0,0,0,0.4), 0 12px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5), 0 24px 56px rgba(0,0,0,0.5);
}

/* ===== BASE ===== */
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

body::before {
    content: '';
    position: fixed; inset: 0;
    background: var(--wash-bg);
    z-index: -2;
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed; inset: 0;
    background: var(--wash-1), var(--wash-2);
    z-index: -1;
    pointer-events: none;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 28px; position: relative; }

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-soft);
    box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
h1 { font-size: clamp(40px, 5vw, 64px); }
h2 { font-size: clamp(30px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }
.lede { font-size: 18px; color: var(--text-2); line-height: 1.65; }
p { color: var(--text-2); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: var(--r-sm);
    font-weight: 600; font-size: 14.5px;
    letter-spacing: -0.01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-glow-orange); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(232,101,26,0.4); }
.btn-glass {
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
    border: 1px solid var(--border-glass);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.btn-glass:hover { background: var(--surface-glass-strong); transform: translateY(-1px); }
.btn-ghost { color: var(--text); border: 1.5px solid var(--border-2); background: transparent; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}
.glass-strong {
    background: var(--surface-glass-strong);
    backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    font-family: var(--mono);
    font-size: 11.5px;
    position: relative; z-index: 200;
}
[data-theme="dark"] .topbar { background: #000; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
/* topbar-left ::before removed */
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,0.65); transition: color .2s; }
.topbar-right a:hover { color: var(--orange-soft); }
.status-pill { display: inline-flex; align-items: center; gap: 6px; }
.status-pill .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green-soft); animation: pulse 2s infinite;
}

/* ===== NAV ===== */
.nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
    width: 42px; height: 42px;
    background: var(--orange);
    border-radius: 10px;
    display: grid; place-items: center;
    color: #fff;
    box-shadow: var(--shadow-glow-orange);
    flex-shrink: 0;
    font-family: var(--sans);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.06em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-size: 18px; font-weight: 800;
    letter-spacing: -0.03em; line-height: 1;
    color: var(--text); text-transform: uppercase;
}
.logo-sub {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-2); margin-top: 2px;
}
.logo-tag {
    font-size: 7.5px; letter-spacing: 0.04em;
    text-transform: uppercase; color: var(--text-3);
    margin-top: 3px; line-height: 1.3;
}
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-mobile-only { display: none; }
.nav-links > li > a {
    font-size: 14px; font-weight: 500; color: var(--text-2);
    transition: color .2s;
    display: inline-flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--orange); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.theme-toggle {
    width: 38px; height: 38px; border-radius: 10px;
    border: 1px solid var(--border-2);
    background: var(--surface-glass);
    color: var(--text-2);
    display: grid; place-items: center;
    transition: all .2s;
}
.theme-toggle:hover { color: var(--orange); border-color: var(--orange); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }
.nav-toggle {
    display: none;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-2);
    border-radius: 10px;
    color: var(--text-2);
    background: var(--surface-glass);
    transition: color .2s, border-color .2s, background .2s;
}
.nav-toggle:hover, .nav-toggle[aria-expanded="true"] {
    color: var(--orange);
    border-color: var(--orange);
    background: var(--surface-glass-strong);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ===== HOMEPAGE HERO ===== */
.hero { padding: 80px 0 96px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero h1 { margin: 18px 0 22px; }
.hero h1 .accent {
    background: linear-gradient(120deg, var(--orange) 0%, var(--orange-soft) 50%, var(--cyan) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block;
}
.hero .lede { margin-bottom: 32px; max-width: 580px; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-proof {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    padding: 20px 0 0; border-top: 1px solid var(--border);
}
.hero-proof .item { padding-right: 16px; }
.hero-proof .num { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.hero-proof .lab { font-size: 11.5px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.hero-stage { position: relative; min-height: 540px; }
.hero-stage::before {
    content: ''; position: absolute;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(232,101,26,0.25) 0%, transparent 65%);
    top: -40px; right: -80px; filter: blur(60px); z-index: 0;
}
.hero-stage::after {
    content: ''; position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(8,145,178,0.20) 0%, transparent 65%);
    bottom: -40px; left: -40px; filter: blur(60px); z-index: 0;
}
.fcard {
    position: absolute;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 18px 20px; z-index: 2;
    /* float animation removed — static cards feel calmer */
}
.fcard .ftop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.fcard .ftop .lbl { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); font-weight: 600; }
.fcard .ftop .pill { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px; }
.pill-green { background: rgba(22,163,74,0.12); color: var(--green); }
.pill-orange { background: rgba(232,101,26,0.12); color: var(--orange); }
.pill-cyan { background: rgba(8,145,178,0.12); color: var(--cyan); }
.pill-red { background: rgba(220,38,38,0.12); color: var(--red); }
.pill-violet { background: rgba(124,58,237,0.12); color: var(--violet); }
.fcard .fval { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.fcard .fval .gd { width: 10px; height: 10px; border-radius: 50%; background: var(--green-soft); animation: pulse 2s infinite; }
.fcard .fsub { font-size: 12px; color: var(--text-2); margin-top: 4px; }
.fcard-1 { top: 20px; left: 0; width: 260px; }
.fcard-2 { top: 180px; right: 0; width: 280px; }
.fcard-3 { bottom: 40px; left: 60px; width: 290px; }

/* ===== PAGE HERO ART COLUMN (about.html) ===== */
.page-hero-art {
    position: relative; aspect-ratio: 4/5;
    border-radius: var(--r-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.page-hero-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.page-hero-art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(232,101,26,0.12) 0%, transparent 45%, rgba(8,145,178,0.10) 100%); pointer-events: none; }
.floating-stat {
    padding: 12px 16px;
    background: rgba(10, 14, 26, 0.55);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(232, 101, 26, 0.35);
    border-radius: var(--r);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(232,101,26,0.15);
}
.floating-stat .lbl { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange-soft); font-weight: 700; margin-bottom: 4px; }
.floating-stat .val { font-size: 15px; font-weight: 700; color: #ffffff; }
.floating-stat .sub { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.floating-stat-stack {
    position: absolute; left: 16px; right: 16px; bottom: 20px; z-index: 2;
    display: flex; flex-direction: column; gap: 8px;
}

/* ===== SIM NOTE — hero card disclaimer ===== */
.sim-note {
    position: absolute; bottom: 0; left: 0; right: 0;
    text-align: center; z-index: 3;
    font-size: 9.5px; color: var(--text-3);
    letter-spacing: 0.06em; padding: 6px 0;
}

/* ===== INNER PAGE HERO — unified with homepage .hero treatment ===== */
.page-hero { padding: 80px 0 96px; position: relative; overflow: hidden; }
.page-hero .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.page-hero h1 { margin: 16px 0 22px; }
.page-hero h1 .accent {
    background: linear-gradient(120deg, var(--orange) 0%, var(--orange-soft) 50%, var(--cyan) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block;
}
.page-hero .lede { margin-bottom: 32px; max-width: 600px; }
.page-hero-ctas { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }

/* Breadcrumbs */
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11.5px;
    color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.breadcrumb a { color: var(--text-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: var(--orange); }

/* ===== SECTIONS ===== */
section { position: relative; padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--text-2); }
.section-head-left { text-align: left; margin-left: 0; }

/* ===== TRUST RIBBON ===== */
.ribbon {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
}
.ribbon .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 36px 56px; }
.ribbon .label { font-family: var(--mono); font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }
.ribbon .stack { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; justify-content: center; }
.ribbon .stack span { font-weight: 600; font-size: 14.5px; color: var(--text-2); display: inline-flex; align-items: center; gap: 8px; }
.ribbon .stack span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); opacity: 0.6; }

/* ===== AI BATTLEFIELD SECTION (homepage) ===== */
.battlefield .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.battlefield .copy h2 { margin: 16px 0 20px; }
.battlefield .copy .lede { margin-bottom: 28px; }
.threat-list { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
.threat-list li {
    display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--r);
    transition: transform .2s ease, box-shadow .2s ease;
}
.threat-list li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.threat-list .icn { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, rgba(220,38,38,0.12), rgba(232,101,26,0.12)); color: var(--red); display: grid; place-items: center; flex-shrink: 0; }
.threat-list .icn svg { width: 20px; height: 20px; }
.threat-list .ttl { font-weight: 700; font-size: 14.5px; color: var(--text); }
.threat-list .desc { font-size: 13px; color: var(--text-2); margin-top: 2px; line-height: 1.5; }

.battlefield .viz {
    position: relative; aspect-ratio: 1/1;
    border-radius: var(--r-xl); overflow: hidden;
    background: linear-gradient(135deg, rgba(232,101,26,0.18), rgba(8,145,178,0.18));
    border: 1px solid var(--border-glass); box-shadow: var(--shadow-lg);
    display: grid; place-items: center; padding: 32px;
}
.battlefield .viz::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
}
.shield-glass {
    position: relative; z-index: 2;
    width: 100%; max-width: 360px; aspect-ratio: 1/1.1;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--border-glass);
    border-radius: 50% 50% 12% 12% / 60% 60% 20% 20%;
    display: grid; place-items: center;
    box-shadow: var(--shadow-lg);
}
.shield-glass svg { width: 88px; height: 88px; color: var(--orange); }
.shield-pulse { position: absolute; inset: -20px; border-radius: 50% 50% 14% 14% / 60% 60% 20% 20%; border: 2px solid rgba(232,101,26,0.4); animation: ringPulse 3s ease-out infinite; }
.shield-pulse.p2 { animation-delay: 1.5s; }
@keyframes ringPulse { 0% { transform: scale(0.95); opacity: 0.8; } 100% { transform: scale(1.15); opacity: 0; } }

/* ===== SERVICES GRID (homepage + services hub) ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.svc-card {
    position: relative; padding: 28px 24px;
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--cyan)); opacity: 0; transition: opacity .25s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(232,101,26,0.3); }
.svc-card:hover::before { opacity: 1; }
.svc-card.featured::before { opacity: 1; }
.svc-card.featured { background: linear-gradient(180deg, rgba(232,101,26,0.06), var(--surface-glass)); border-color: rgba(232,101,26,0.25); }
.svc-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(232,101,26,0.12), rgba(8,145,178,0.12));
    display: grid; place-items: center; color: var(--orange); margin-bottom: 18px;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card.featured .svc-icon { background: linear-gradient(135deg, var(--orange), var(--orange-soft)); color: #fff; }
.svc-card h3 { font-size: 18px; margin-bottom: 8px; }
.svc-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.svc-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; }
.svc-card .more svg { width: 14px; height: 14px; transition: transform .2s; }
.svc-card:hover .more svg { transform: translateX(3px); }
.svc-card .new-pill { position: absolute; top: 18px; right: 18px; font-family: var(--mono); font-size: 9.5px; font-weight: 700; background: var(--orange); color: #fff; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.08em; }

/* ===== AI PILLARS ===== */
.pillars { background: var(--bg-alt); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pillar { padding: 28px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); position: relative; overflow: hidden; }
.pillar::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(232,101,26,0.1) 0%, transparent 70%); border-radius: 50%; }
.pillar .pnum { font-family: var(--mono); font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing: 0.12em; margin-bottom: 12px; }
.pillar h3 { font-size: 17px; margin-bottom: 8px; position: relative; z-index: 1; }
.pillar p { font-size: 13.5px; color: var(--text-2); position: relative; z-index: 1; }

/* ===== INDUSTRIES STRIP ===== */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.ind-card { position: relative; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ind-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ind-card:hover img { transform: scale(1.05); }
.ind-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(15,23,42,0.85) 100%); }
.ind-card .meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 2; color: #fff; }
.ind-card .ind-eyebrow { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--orange-soft); font-weight: 600; margin-bottom: 6px; }
.ind-card h3 { font-size: 20px; margin-bottom: 4px; }
.ind-card p { font-size: 12.5px; opacity: 0.85; color: rgba(255,255,255,0.85); }

/* ===== WHY PIS / SPLIT SECTION ===== */
.why .container, .split-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why .copy h2, .split-section .copy h2 { margin: 14px 0 20px; }
.why .lede, .split-section .copy .lede { margin-bottom: 28px; }
.why-points { list-style: none; display: grid; gap: 16px; }
.why-points li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; }
.why-points .chk { width: 26px; height: 26px; border-radius: 8px; background: rgba(22,163,74,0.12); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.why-points .chk svg { width: 16px; height: 16px; }
.why-points .ttl { font-weight: 700; font-size: 15.5px; margin-bottom: 2px; color: var(--text); }
.why-points .desc { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.why .visual, .split-section .visual { position: relative; aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.why .visual img, .split-section .visual img { width: 100%; height: 100%; object-fit: cover; }
.why .visual::after { content: none; }
/* about.html uses .split-section .visual — no photo overlay needed on the dark dashboard */
.split-section .visual::after { content: none; }
.why-card-overlay {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    padding: 18px 20px;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--border-glass);
    border-radius: var(--r);
    box-shadow: var(--shadow);
}
.why-card-overlay .quote { font-size: 14px; font-style: italic; color: var(--text); line-height: 1.55; margin-bottom: 10px; }
.why-card-overlay .who { font-size: 12px; color: var(--text-2); font-weight: 600; }
.why-card-overlay .who small { color: var(--text-3); font-weight: 400; }

/* ===== FEATURE GRID (used on service / industry pages) ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature {
    padding: 26px 24px;
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature .ficon {
    width: 44px; height: 44px; border-radius: 11px;
    background: linear-gradient(135deg, rgba(232,101,26,0.12), rgba(8,145,178,0.12));
    color: var(--orange);
    display: grid; place-items: center; margin-bottom: 16px;
}
.feature .ficon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 17px; margin-bottom: 6px; }
.feature p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }

/* ===== TIMELINE / PROCESS ===== */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; position: relative; }
.process-step { position: relative; padding: 24px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.process-step .pnum { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; margin-bottom: 10px; }
.process-step h3 { font-size: 16px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ===== STAT TILES ===== */
.stat-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat-tile {
    padding: 24px 20px;
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
}
.stat-tile .v { font-family: var(--mono); font-size: 28px; font-weight: 700; color: var(--orange); letter-spacing: -0.02em; line-height: 1; }
.stat-tile .l { font-size: 12.5px; color: var(--text-2); margin-top: 8px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-item {
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(232,101,26,0.3); }
.faq-item summary {
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 15.5px;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--mono); font-size: 22px; color: var(--orange); transition: transform .2s; font-weight: 400; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 22px; font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ===== BLOG TEASER ===== */
.blog-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card[aria-label="Coming soon"] { cursor: default; }
.blog-card .thumb { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.blog-card .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232,101,26,0.12), rgba(8,145,178,0.10)); }
.blog-card .body { padding: 22px 22px 24px; }
.blog-card .cat { font-family: var(--mono); font-size: 10.5px; font-weight: 600; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.25; }
.blog-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; }
.blog-card .meta { font-size: 12px; color: var(--text-3); margin-top: 14px; font-family: var(--mono); }

/* ===== CTA BAND ===== */
.cta-band { padding: 56px 0; }
.cta-card {
    position: relative; padding: 56px;
    border-radius: var(--r-xl); overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
    box-shadow: var(--shadow-lg);
}
.cta-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(232,101,26,0.45) 0%, transparent 65%); filter: blur(40px); }
.cta-card::after { content: ''; position: absolute; bottom: -120px; left: -80px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(8,145,178,0.40) 0%, transparent 65%); filter: blur(40px); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; color: #fff; }
.cta-card p { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.6; margin-bottom: 28px; }
.cta-card .cta-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-card .btn-glass { color: #fff; background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
.cta-card .right-stats { display: grid; gap: 20px; }
.cta-card .stat { padding: 18px 20px; background: rgba(255,255,255,0.08); backdrop-filter: blur(var(--blur)); -webkit-backdrop-filter: blur(var(--blur)); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--r); }
.cta-card .stat .v { font-family: var(--mono); font-size: 24px; font-weight: 700; margin-bottom: 4px; color: var(--orange-soft); }
.cta-card .stat .l { font-size: 12.5px; color: rgba(255,255,255,0.7); }

/* ===== FOOTER ===== */
.footer { background: #0B101C; color: rgba(255,255,255,0.6); padding: 72px 0 32px; }
[data-theme="dark"] .footer { background: #03050A; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo-text small { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; max-width: 320px; color: rgba(255,255,255,0.6); }
.footer-brand .badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-brand .badge { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 5px 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 5px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col h4 { font-size: 11px; font-family: var(--mono); font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col a:hover { color: var(--orange-soft); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-family: var(--mono); font-size: 11.5px; color: rgba(255,255,255,0.4); }
.footer-bottom .status { display: inline-flex; align-items: center; gap: 6px; color: var(--green-soft); }
.footer-bottom .status::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green-soft); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.contact-form {
    padding: 32px;
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur-strong));
    -webkit-backdrop-filter: blur(var(--blur-strong));
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; font-family: var(--mono); }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--r-sm);
    font-family: inherit; font-size: 14px;
    color: var(--text);
    transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,26,0.12); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note {
    font-size: 12px;
    color: var(--text-3);
    margin-top: 14px;
    font-family: var(--mono);
    text-align: center;
}
.contact-info { display: grid; gap: 16px; }
.contact-info .info-card {
    padding: 22px 24px;
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--border-glass);
    border-radius: var(--r);
}
.contact-info .info-card h3 { font-size: 13px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 8px; font-weight: 700; }
.contact-info .info-card .v { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.contact-info .info-card .v a { color: var(--orange); }
.contact-info .info-card p { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ===== BLOG PAGE ===== */
.blog-hero { padding: 64px 0 32px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 0 28px; font-size: 17px; line-height: 1.75; color: var(--text); }
.article-body h2 { margin: 40px 0 16px; font-size: 28px; }
.article-body h3 { margin: 28px 0 12px; font-size: 21px; }
.article-body p { margin-bottom: 16px; color: var(--text); }
.article-body ul, .article-body ol { margin: 0 0 16px 22px; }
.article-body li { margin-bottom: 8px; color: var(--text); }
.article-body code { font-family: var(--mono); background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.article-body blockquote { border-left: 3px solid var(--orange); padding: 8px 0 8px 20px; margin: 24px 0; color: var(--text-2); font-style: italic; }
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 18px 0 28px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.article-author {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 48px 0;
    padding: 24px;
    background: var(--surface-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}
.article-author img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.article-author h3 { margin: 0 0 8px; font-size: 18px; }
.article-author p { margin: 0 0 10px; font-size: 14px; color: var(--text-2); line-height: 1.6; }
.article-author a { color: var(--orange); font-weight: 700; font-size: 14px; }
.article-cta {
    margin: 56px auto;
    padding: 40px;
    max-width: 880px;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.article-cta h2 { color: #fff; margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,0.76); max-width: 640px; margin: 0 auto 24px; }
.article-nav {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 24px 28px 0;
    border-top: 1px solid var(--border);
}
.article-nav a {
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
}

/* ===== ABOUT PAGE — HERO VIZ SVG ===== */
.about-hero-viz { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* ===== ABOUT PAGE — SECURITY DASHBOARD MOCKUP ===== */
.sec-dashboard {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #060D1A 0%, #0A1628 55%, #060E1F 100%);
    padding: 22px 20px;
    display: flex; flex-direction: column; gap: 12px;
    font-family: var(--sans); overflow: hidden;
}
.sec-dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2px; }
.sec-dash-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(148,163,184,0.6); }
.sec-dash-live { display: flex; align-items: center; gap: 5px; font-size: 10px; color: #4ADE80; font-weight: 600; }
.sec-dash-live .dot { background: #16A34A; width: 7px; height: 7px; border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.sec-metric-block { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 13px 15px; }
.sec-metric-label { font-size: 9.5px; color: rgba(148,163,184,0.5); letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 6px; }
.sec-metric-row { display: flex; align-items: baseline; justify-content: space-between; }
.sec-metric-val { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.sec-metric-change { font-size: 11px; font-weight: 600; color: #4ADE80; }
.sec-metric-change.warn { color: #F59E0B; }
.sec-bar-track { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.sec-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #E8651A, #FF8A4D); }
.sec-bar-fill.c { background: linear-gradient(90deg, #0891B2, #22D3EE); }
.sec-bar-fill.g { background: linear-gradient(90deg, #16A34A, #4ADE80); }
.sec-metrics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sec-mini-metric { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 12px 13px; }
.sec-mini-label { font-size: 9px; color: rgba(148,163,184,0.45); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 5px; }
.sec-mini-val { font-size: 22px; font-weight: 800; letter-spacing: -0.04em; color: #fff; line-height: 1; }
.sec-mini-sub { font-size: 9px; color: rgba(148,163,184,0.4); margin-top: 3px; }
.sec-activity { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 13px 15px; flex: 1; min-height: 0; }
.sec-act-title { font-size: 9.5px; color: rgba(148,163,184,0.5); letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 9px; }
.sec-act-item { display: flex; align-items: flex-start; gap: 9px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sec-act-item:last-child { border-bottom: none; padding-bottom: 0; }
.sec-act-icon { width: 7px; height: 7px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.sec-act-icon.ok { background: #16A34A; }
.sec-act-icon.warn { background: #F59E0B; }
.sec-act-icon.block { background: #E8651A; }
.sec-act-text { font-size: 11px; color: rgba(255,255,255,0.72); line-height: 1.4; }
.sec-act-time { font-size: 9px; color: rgba(148,163,184,0.38); margin-top: 1px; font-family: var(--mono); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
    .hero-grid, .battlefield .container, .why .container, .split-section .container, .page-hero .container, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-stage { min-height: 480px; }
    .cta-card { grid-template-columns: 1fr; padding: 40px 32px; }
    .nav-links { display: none; }
    .nav-toggle { display: grid; }
    .nav-links.is-open {
        position: absolute;
        z-index: 150;
        top: 72px;
        left: 28px;
        right: 28px;
        display: grid;
        gap: 8px;
        padding: 14px;
        background: var(--surface);
        backdrop-filter: blur(var(--blur-strong)) saturate(180%);
        -webkit-backdrop-filter: blur(var(--blur-strong)) saturate(180%);
        border: 1px solid var(--border-glass);
        border-radius: var(--r);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.is-open .nav-mobile-only { display: block; }
    .nav-links.is-open > li > a {
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--r-sm);
        color: var(--text);
        background: transparent;
    }
    .nav-links.is-open > li > a:hover,
    .nav-links.is-open > li > a.active {
        background: rgba(232,101,26,0.10);
        color: var(--orange);
    }
    .topbar-right span:nth-child(1) { display: none; }
    .blog-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
    section { padding: 64px 0; }
    .hero, .page-hero { padding: 56px 0 64px; }
    .container, .container-narrow, .article-body { padding-left: 22px; padding-right: 22px; }
    .topbar { display: none; }
    .nav .container { height: 68px; }
    .nav-links.is-open { top: 68px; left: 22px; right: 22px; }
    .hero-proof { grid-template-columns: 1fr 1fr; gap: 14px; }
    .blog-row, .industries-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .fcard-1 { width: 220px; }
    .fcard-2, .fcard-3 { width: 240px; }
    .contact-form .row { grid-template-columns: 1fr; }
    .article-author { flex-direction: column; }
    .article-cta { padding: 32px 24px; }
    .logo-tag { display: none; }
}
@media (max-width: 480px) {
    .logo { gap: 10px; }
    .logo-mark { width: 36px; height: 36px; border-radius: 9px; font-size: 20px; }
    .logo-name { font-size: 15px; }
    .logo-sub { font-size: 9px; }
    .nav-actions { gap: 8px; }
    .nav-actions > .btn { display: none; }
    .industries-grid, .blog-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

a:focus-visible, button:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } .reveal { opacity: 1; transform: none; } }
