/* ============================================================
   Swardnet — Global Microsoft Security & Network Intelligence
   Enterprise landing page. No inline styles (strict CSP-friendly).
   Cinematic dark theme · violet/cyan · glassmorphism.
   ============================================================ */

:root {
    --primary: #8B5CF6;
    --primary-2: #A78BFA;
    --primary-glow: #22D3EE;
    --accent: #FF3B6B;
    --bg-dark: #0A0E1F;
    --bg-deep: #02040A;
    --bg-surface: rgba(15, 23, 42, 0.6);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-strong: rgba(255, 255, 255, 0.16);
    --text-main: #F8FAFC;
    --text-dim: #94A3B8;
    --text-faint: #64748B;
    --success: #34D399;
    --max-width: 1280px;
    --section-pad: 7rem;
    --radius-lg: 28px;
    --radius-xl: 34px;
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.35);
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, 'SF Mono', 'Cascadia Mono', 'Roboto Mono', Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 6rem; font-size: 100%; }

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    font-size: 0.95rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Ambient aurora wash behind everything (below the globe) ------ */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: -3; pointer-events: none;
    background:
        radial-gradient(60% 50% at 18% 8%, rgba(139, 92, 246, 0.18), transparent 60%),
        radial-gradient(50% 45% at 85% 12%, rgba(34, 211, 238, 0.14), transparent 60%),
        radial-gradient(70% 60% at 50% 100%, rgba(139, 92, 246, 0.10), transparent 65%);
    animation: aurora-drift 24s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
    100% { transform: translate3d(0, -3%, 0) scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, body::before { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* Accessibility ------------------------------------------------ */
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 2000;
    background: var(--primary); color: #fff; padding: 0.75rem 1.25rem;
    border-radius: 0 0 8px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, .btn:focus-visible {
    outline: 2px solid var(--primary-glow); outline-offset: 3px; border-radius: 4px;
}

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Background canvas + cursor glow ------------------------------ */
#globe-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; opacity: 1;
}
.hud-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
    background:
        radial-gradient(circle at 50% 42%, transparent 0%, rgba(2, 4, 10, 0.90) 78%),
        linear-gradient(180deg, rgba(2, 4, 10, 0.35) 0%, transparent 22%);
}
/* faint scanline texture for the "live system" feel */
.hud-overlay::after {
    content: ''; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 3px);
    opacity: 0.6;
}
.cursor-glow {
    position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%;
    pointer-events: none; z-index: 0; opacity: 0; transform: translate3d(-50%, -50%, 0);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.16), rgba(34, 211, 238, 0.06) 40%, transparent 62%);
    transition: opacity 0.4s ease; mix-blend-mode: screen;
}

/* Layout ------------------------------------------------------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2.5rem; position: relative; }
.grid { display: grid; gap: 1.75rem; }
.section-header { text-align: center; margin-bottom: 3.75rem; max-width: 700px; margin-inline: auto; }
.section-header p { color: var(--text-dim); font-size: 1.02rem; margin-top: 0.9rem; }

.tag {
    font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 3px;
    color: var(--primary-glow); text-transform: uppercase; margin-bottom: 1rem;
    display: inline-flex; align-items: center; gap: 0.55rem;
}
.tag::before {
    content: ''; width: 22px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow));
}
.section-header .tag { justify-content: center; }
.section-header .tag::after {
    content: ''; width: 22px; height: 1px;
    background: linear-gradient(90deg, var(--primary-glow), transparent);
}
.tag--violet { color: var(--primary-2); }
.tag--violet::before, .tag--violet::after { background: linear-gradient(90deg, transparent, var(--primary-2)); }

h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
.text-gradient {
    background: linear-gradient(120deg, #FFFFFF 30%, #C4B5FD 55%, var(--primary-glow) 90%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    background-size: 200% auto; animation: sheen 8s ease-in-out infinite;
}
@keyframes sheen { 0%, 100% { background-position: 0% center; } 50% { background-position: 100% center; } }

/* Buttons ------------------------------------------------------ */
.btn {
    padding: 0.9rem 2rem; border-radius: 10px; font-weight: 700; font-size: 0.78rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.55rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 1.3px;
    font-family: inherit; position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(120deg, var(--primary), #6D28D9);
    color: #fff; box-shadow: 0 10px 30px rgba(139, 92, 246, 0.38);
}
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg); transition: left 0.6s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(139, 92, 246, 0.55); }
.btn-primary:hover::after { left: 130%; }
.btn-outline { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-glass-strong); color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.06); border-color: var(--primary-glow); color: var(--primary-glow); transform: translateY(-2px); }

/* Header ------------------------------------------------------- */
header {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    background: rgba(10, 14, 31, 0.55); backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent; padding: 1.05rem 0;
    transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}
header.scrolled {
    background: rgba(8, 11, 24, 0.9); border-bottom-color: var(--border-glass);
    padding: 0.8rem 0; box-shadow: 0 10px 40px rgba(2, 4, 10, 0.5);
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo {
    display: flex; align-items: center; gap: 0.68rem; text-decoration: none;
    color: #fff; line-height: 1;
}
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; filter: drop-shadow(0 0 10px rgba(76, 125, 240, 0.45)); }
.logo-text { display: flex; align-items: center; }
.logo-word { font-weight: 800; font-size: 1.3rem; letter-spacing: 1.5px; line-height: 1; }
.logo-word .lw-1 { color: #fff; }
.logo-word .lw-2 { color: var(--primary-2); }
.nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-dim); text-decoration: none; font-size: 0.76rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.4px; transition: color 0.3s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow)); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: #fff; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
    display: none; background: transparent; border: 1px solid var(--border-glass-strong);
    border-radius: 8px; width: 42px; height: 42px; cursor: pointer;
    align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
    content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero --------------------------------------------------------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 7rem; padding-bottom: 4rem; }
.hero-content { max-width: 900px; }
.status-pill {
    display: inline-flex; align-items: center; gap: 0.65rem;
    font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase;
    color: #bfe9f5; background: rgba(8, 11, 30, 0.55);
    border: 1px solid rgba(34, 211, 238, 0.30); border-radius: 100px;
    padding: 0.5rem 1.15rem; margin-bottom: 2.1rem;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.status-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--success);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: ping 2s ease-out infinite;
}
@keyframes ping {
    0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.hero h1 { margin-bottom: 0.4rem; }
.hero p { font-size: 1.14rem; color: var(--text-dim); margin: 1.5rem 0 2.5rem; max-width: 660px; }
.hero p strong { color: var(--text-main); font-weight: 700; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta { margin-top: 3.25rem; display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; position: relative; padding-left: 1.1rem; }
.hero-meta div::before {
    content: ''; position: absolute; left: 0; top: 0.15rem; bottom: 0.15rem; width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--primary-glow)); border-radius: 2px;
}
.hero-meta strong { font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: 0.4rem; }
.hero-meta span { font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.4px; }
.scroll-cue {
    position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--text-faint); font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
}
.scroll-cue span {
    width: 22px; height: 34px; border: 1px solid var(--border-glass-strong); border-radius: 12px; position: relative;
}
.scroll-cue span::after {
    content: ''; position: absolute; left: 50%; top: 6px; width: 3px; height: 6px; border-radius: 3px;
    background: var(--primary-glow); transform: translateX(-50%); animation: scroll-bob 1.8s ease-in-out infinite;
}
@keyframes scroll-bob { 0%, 100% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 10px); } }

/* Compliance ribbon ------------------------------------------- */
.compliance-ribbon { padding: 2.25rem 0; border-block: 1px solid var(--border-glass); background: rgba(0, 0, 0, 0.28); }
.ribbon-note { text-align: center; font-size: 0.66rem; letter-spacing: 2px; color: var(--text-faint); text-transform: uppercase; margin-bottom: 1.4rem; font-family: var(--font-mono); }
.ribbon-flex { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1.25rem 2.75rem; }
.ribbon-item {
    font-weight: 800; font-size: 0.9rem; letter-spacing: 2px; font-family: var(--font-mono);
    color: var(--text-dim); transition: color 0.3s, transform 0.3s; cursor: default;
}
.ribbon-item:hover { color: var(--primary-glow); transform: translateY(-2px); }

/* Assessment --------------------------------------------------- */
.assessment-promo { padding: var(--section-pad) 0; }
.assessment-card {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.09), rgba(139, 92, 246, 0.10));
    border: 1px solid var(--border-glass); border-radius: var(--radius-xl); padding: 4rem;
    display: flex; align-items: center; gap: 4rem; backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
}
.assessment-card::before {
    content: ''; position: absolute; width: 360px; height: 360px; right: -80px; top: -120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 65%); pointer-events: none;
}
.score-visual { position: relative; min-width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.score-circle { width: 100%; height: 100%; border: 8px solid rgba(255, 255, 255, 0.05); border-radius: 50%; position: absolute; }
.score-progress {
    width: 100%; height: 100%; border: 8px solid var(--primary-glow); border-radius: 50%;
    position: absolute; border-top-color: transparent; border-right-color: transparent;
    transform: rotate(45deg); box-shadow: 0 0 34px var(--primary-glow);
    animation: score-spin 12s linear infinite;
}
@keyframes score-spin { to { transform: rotate(405deg); } }
.score-text { text-align: center; z-index: 1; }
.score-text strong { display: block; font-size: 3rem; line-height: 1; margin-bottom: 0.4rem; }
.score-text span { font-size: 0.72rem; color: var(--primary-glow); text-transform: uppercase; font-weight: 800; letter-spacing: 1px; }
.assessment-info h2 { margin-bottom: 1.25rem; }
.assessment-info p { color: var(--text-dim); margin-bottom: 2rem; font-size: 1.02rem; max-width: 560px; }
.assessment-info p strong { color: var(--text-main); }

/* Global operations ------------------------------------------- */
.global-ops { padding: var(--section-pad) 0; border-top: 1px solid var(--border-glass); }
.ops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ops-content h2 { margin-bottom: 1.5rem; }
.ops-lead { color: var(--text-dim); margin-bottom: 2.5rem; font-size: 1.02rem; }
.ops-list { list-style: none; }
.ops-list li { margin-bottom: 1.75rem; display: flex; gap: 1.25rem; text-align: left; }
.ops-icon {
    min-width: 42px; height: 42px; background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--primary-glow); color: var(--primary-glow);
    border-radius: 11px; display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-family: var(--font-mono); font-size: 0.85rem; flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ops-list li:hover .ops-icon { transform: translateY(-3px); box-shadow: 0 0 22px rgba(34, 211, 238, 0.35); }
.ops-text h3 { margin-bottom: 0.4rem; }
.ops-text p { color: var(--text-dim); font-size: 0.92rem; }

.ops-visual {
    background: linear-gradient(160deg, rgba(139, 92, 246, 0.08), rgba(2, 4, 10, 0.3));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg); padding: 3.5rem; text-align: center; position: relative; overflow: hidden;
}
.ops-visual::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(70% 60% at 50% 0%, rgba(34, 211, 238, 0.12), transparent 60%); pointer-events: none;
}
.ops-visual h3 { margin-bottom: 1.5rem; color: var(--primary-glow); text-transform: uppercase; letter-spacing: 2px; font-size: 0.82rem; }
.ops-metric { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 800; color: #fff; margin-bottom: 0.75rem; line-height: 1.08; letter-spacing: -0.015em; }
.ops-metric-label { color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-size: 0.74rem; }
.ops-nodes { margin-top: 2.5rem; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.25rem; position: relative; }
.ops-nodes div { min-width: 66px; font-size: 0.85rem; }
.ops-nodes strong { display: block; }
.ops-node-status { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.62rem; color: var(--success); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.35rem; }
.ops-node-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px var(--success); animation: ping 2s ease-out infinite; }

/* Services (3D tilt cards) ------------------------------------- */
.service-category { padding: var(--section-pad) 0; }
.service-category--tinted { background: rgba(255, 255, 255, 0.02); }
.services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.services-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-inline: auto; }
.service-card {
    background: var(--bg-surface); border: 1px solid var(--border-glass);
    padding: 2.5rem; border-radius: 20px; backdrop-filter: blur(16px);
    position: relative; overflow: hidden;
    transform-style: preserve-3d; will-change: transform;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.service-card.tilt { transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease; }
.service-card:hover {
    border-color: var(--primary-glow); background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 24px 50px rgba(2, 4, 10, 0.55), 0 0 0 1px rgba(34, 211, 238, 0.15);
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow)); opacity: 0; transition: opacity 0.35s;
}
.service-card:hover::after { opacity: 1; }
.service-card::before {
    content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s;
    background: radial-gradient(320px circle at var(--px, 50%) var(--py, 0%), rgba(34, 211, 238, 0.12), transparent 45%);
    pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card > * { transform: translateZ(0.01px); }

.service-icon {
    width: 52px; height: 52px; background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.14));
    border: 1px solid var(--border-glass); border-radius: 13px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--primary-glow);
    transition: transform 0.35s ease;
}
.service-card:hover .service-icon { transform: translateZ(30px) scale(1.06); }
.service-card h3 { margin-bottom: 1rem; }
.service-card > p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 1.5rem; }
.service-list { list-style: none; }
.service-list li { font-size: 0.86rem; color: var(--text-main); margin-bottom: 0.7rem; display: flex; align-items: start; gap: 0.7rem; font-weight: 500; }
.service-list li::before { content: '\2192'; color: var(--primary-glow); font-weight: 900; }

.service-outcome {
    max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
    color: var(--primary-glow); font-size: 0.84rem; font-weight: 600; line-height: 1.5;
    border-top: 1px solid transparent;
    transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.4s ease, padding-top 0.4s ease, border-color 0.4s ease;
}
.service-outcome span { display: block; }
.service-outcome::before {
    content: 'Outcome'; display: block; font-family: var(--font-mono); font-size: 0.6rem;
    letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.35rem;
}
.service-card:hover .service-outcome, .service-card:focus-within .service-outcome {
    max-height: 7rem; opacity: 1; margin-top: 1.5rem; padding-top: 1.25rem; border-top-color: var(--border-glass);
}

/* Special solution -------------------------------------------- */
.special-solution {
    padding: 4rem; background: linear-gradient(135deg, rgba(139, 92, 246, 0.16), rgba(10, 14, 31, 0.5));
    border: 1px solid var(--border-glass); border-radius: var(--radius-lg); margin: 4.5rem 0 0;
    display: flex; justify-content: space-between; align-items: center; gap: 3rem; backdrop-filter: blur(24px);
    position: relative; overflow: hidden;
}
.special-solution::before {
    content: ''; position: absolute; width: 420px; height: 420px; left: -120px; bottom: -180px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 65%); pointer-events: none;
}
.special-text h2 { color: var(--primary-glow); margin-bottom: 0.85rem; }
.special-text p { color: var(--text-dim); font-size: 1.02rem; max-width: 640px; }
.special-text p strong { color: var(--text-main); }
.special-solution .btn { flex-shrink: 0; }

/* Contact ------------------------------------------------------ */
.contact-section { padding: var(--section-pad) 0; border-top: 1px solid var(--border-glass); }
.contact-card {
    text-align: center; max-width: 680px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.07), rgba(139, 92, 246, 0.09));
    border: 1px solid var(--border-glass); border-radius: var(--radius-xl); padding: 4.5rem 2.5rem; backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
}
.contact-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 50% 0%, rgba(139, 92, 246, 0.18), transparent 60%); pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card h2 { margin-bottom: 1rem; }
.contact-card p { color: var(--text-dim); font-size: 1.02rem; margin-bottom: 2rem; max-width: 520px; margin-inline: auto; }
.contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Footer ------------------------------------------------------- */
footer { padding: 5.5rem 0 2.5rem; border-top: 1px solid var(--border-glass); background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-col h3 { color: #fff; margin-bottom: 1.25rem; letter-spacing: 2px; font-size: 1.05rem; }
.footer-col h4 { margin-bottom: 1.5rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: #fff; }
.footer-about { color: var(--text-dim); max-width: 300px; line-height: 1.75; font-size: 0.9rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.85rem; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.3s, padding-left 0.3s; font-weight: 500; }
.footer-links a:hover, .footer-links a:focus-visible { color: #fff; padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid var(--border-glass); padding-top: 2rem;
    font-size: 0.8rem; color: var(--text-faint);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary-glow); }
.footer-bottom .footer-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* Scroll reveal ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.visible { opacity: 1; transform: none; }
.services-grid .service-card { transition-delay: calc(var(--i, 0) * 90ms); }

/* Responsive --------------------------------------------------- */
@media (max-width: 960px) {
    :root { --section-pad: 5rem; }
    .ops-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .assessment-card { flex-direction: column; text-align: center; gap: 2.5rem; padding: 3rem 2rem; }
    .assessment-info p { margin-inline: auto; }
    .special-solution { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
    .nav-links {
        position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
        flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 1.75rem; padding: 2rem 2.25rem; background: rgba(6, 9, 20, 0.97);
        backdrop-filter: blur(24px); border-left: 1px solid var(--border-glass);
        transform: translateX(100%); transition: transform 0.35s ease; z-index: 1100;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 0.9rem; }
    .header-cta .btn-outline { display: none; }
    .nav-toggle { display: inline-flex; }
    .services-grid, .services-grid--two { grid-template-columns: 1fr; }
    .hero-meta { gap: 1.75rem 2.25rem; }
    .container { padding: 0 1.5rem; }
    .assessment-card, .contact-card { padding: 2.5rem 1.5rem; }
    .special-solution { padding: 2.5rem 1.75rem; }
    .ops-visual { padding: 2.25rem 1.5rem; }
    .ops-nodes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; justify-items: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Hero — refined centered (v5). Enterprise-grade centered
   column, vertically balanced over the globe. Keeps the cyan
   headline glow + typewriter reveal (main.js).
   ============================================================ */
.hero {
    min-height: 100vh;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 5rem;
}
.hero .container { width: 100%; }
.hero-content {
    position: relative;
    max-width: 860px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* soft legibility wash centered behind the text */
.hero-content::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 130%; height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(2, 4, 10, 0.74) 0%, rgba(2, 4, 10, 0.34) 46%, transparent 72%);
    z-index: -1; pointer-events: none;
}
.status-pill { margin-bottom: 1.9rem; }
.hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.9rem);
    line-height: 1.06;
    max-width: 18ch;
    margin-inline: auto;
    text-wrap: balance;
    min-height: 1.12em;                 /* reserve space so typing doesn't shift layout */
    animation: sheen 8s ease-in-out infinite, cyanPulse 5s ease-in-out infinite;
}
@keyframes cyanPulse {
    0%, 100% { filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.34)) drop-shadow(0 10px 38px rgba(34, 211, 238, 0.14)); }
    50%      { filter: drop-shadow(0 0 32px rgba(34, 211, 238, 0.58)) drop-shadow(0 12px 46px rgba(34, 211, 238, 0.26)); }
}
.type-caret {
    display: inline-block; width: 3px; height: 0.9em; margin-left: 8px;
    background: var(--primary-glow); vertical-align: -0.06em; border-radius: 2px;
    box-shadow: 0 0 14px var(--primary-glow), 0 0 4px var(--primary-glow);
    animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

.hero p {
    margin: 1.6rem auto 2.6rem;
    max-width: 600px;
    font-size: clamp(1rem, 1.1vw, 1.13rem);
}
.hero-actions { justify-content: center; }

/* centered stat card with dividers */
.hero-meta {
    width: fit-content;
    max-width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 3.25rem;
    margin-inline: auto;
    padding: 1.35rem 0.5rem;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg, 16px);
    background: rgba(8, 11, 30, 0.42);
    backdrop-filter: blur(8px);
}
.hero-meta div {
    flex: 0 0 auto;
    text-align: center;
    align-items: center;
    padding: 0 2rem;
    border-left: 1px solid var(--border-glass);
}
.hero-meta div:first-child { border-left: 0; }
.hero-meta div::before { display: none; }   /* drop the left accent bar; using dividers instead */
.hero-meta strong {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.2;
    white-space: nowrap;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}
.hero-meta span { font-size: 0.62rem; letter-spacing: 1.6px; }

@media (max-width: 720px) {
    .hero { padding-top: 7rem; }
    .hero h1 { font-size: clamp(1.9rem, 8vw, 2.7rem); max-width: 100%; }
    .hero-meta { flex-direction: column; gap: 0; padding: 0.5rem 1.5rem; }
    .hero-meta div { border-left: 0; border-top: 1px solid var(--border-glass); padding: 1.1rem 0; width: 100%; }
    .hero-meta div:first-child { border-top: 0; }
}

/* ============================================================
   v6 — clean & professional pass. The globe is featured in the
   hero; sections below sit on calm, full-bleed solid backgrounds
   for enterprise readability. Content is contained (1280px) while
   backgrounds run edge-to-edge, so there are no empty side gutters.
   ============================================================ */
.compliance-ribbon {
    background: linear-gradient(180deg, rgba(10, 14, 31, 0) 0%, var(--bg-dark) 62%);
    border-top: 0;
    border-bottom: 1px solid var(--border-glass);
}
.assessment-promo,
.global-ops,
.contact-section,
.service-category { background: var(--bg-dark); position: relative; }
.service-category--tinted { background: #0B0F22; }

/* slightly calmer, more even section rhythm on large screens */
@media (min-width: 1400px) {
    :root { --section-pad: 8rem; }
}

/* ============================================================
   Contact form (v7) — professional two-column layout with a
   CSP-safe mailto compose (enhanced in main.js).
   ============================================================ */
.contact-card {
    max-width: 1040px;
    text-align: left;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.25rem;
    align-items: start;
}
.contact-card p { margin-inline: 0; max-width: none; }
.contact-intro h2 { margin-bottom: 1rem; }
.contact-points { list-style: none; margin: 1.5rem 0 1.75rem; display: grid; gap: 0.75rem; }
.contact-points li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 0.92rem; color: var(--text-main);
}
.contact-points li::before {
    content: '\2713'; color: var(--primary-glow); font-weight: 900;
    flex-shrink: 0; line-height: 1.5;
}
.contact-direct {
    font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.5px;
    color: var(--primary-glow); text-decoration: none; font-weight: 600;
    border-bottom: 1px solid transparent; transition: border-color 0.25s;
}
.contact-direct:hover { border-bottom-color: var(--primary-glow); }

.contact-form { display: flex; flex-direction: column; gap: 1.05rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
    font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1.3px;
    color: var(--text-dim); font-weight: 700;
}
.field label .optional { color: var(--text-faint); font-weight: 500; letter-spacing: 0.5px; text-transform: none; }
.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass-strong);
    border-radius: 10px; padding: 0.8rem 1rem;
    color: var(--text-main); font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-faint); }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none; border-color: var(--primary-glow);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 112px; }
.contact-form [aria-invalid="true"] { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 59, 107, 0.15); }
.contact-form .btn { align-self: flex-start; margin-top: 0.35rem; }
.form-note { font-size: 0.72rem; color: var(--text-faint); margin: 0; }
.form-note.is-error { color: var(--accent); }

@media (max-width: 820px) {
    .contact-card { grid-template-columns: 1fr; gap: 2.25rem; }
    .contact-form .btn { align-self: stretch; justify-content: center; }
}

/* ============================================================
   Matrix hero (v8) — 3D per-character decode reveal on the H1
   + a faint, screen-blended code-rain confined to the hero.
   All CSP-safe (animation logic in main.js).
   ============================================================ */
.hero { position: relative; overflow: hidden; }

/* code-rain canvas, injected by main.js as the hero's first child */
.mx-rain {
    position: absolute; inset: 0; z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.5;
    -webkit-mask-image: linear-gradient(180deg, #000 48%, transparent 92%);
    mask-image: linear-gradient(180deg, #000 48%, transparent 92%);
}

/* headline decode — chars are split into spans at runtime */
.mx-h1 { perspective: 720px; cursor: default; }
.mx-word { display: inline-block; white-space: nowrap; transform-style: preserve-3d; }
.mx-char {
    display: inline-block;
    background: linear-gradient(120deg, #FFFFFF 20%, #C4B5FD 52%, #22D3EE 88%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    opacity: 0;
    transform: translateY(-0.8em) rotateX(-95deg);
    transform-origin: 50% 100%;
    transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
    will-change: transform, opacity;
}
.mx-char.drop { opacity: 1; transform: none; }
.mx-char.sc {
    -webkit-text-fill-color: #7DE9FB; color: #7DE9FB;
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.65);
}
.mx-char.lock { animation: mxflash 0.24s ease; }
@keyframes mxflash {
    0%   { text-shadow: 0 0 22px rgba(34, 211, 238, 0.95), 0 0 8px rgba(139, 92, 246, 0.8); }
    100% { text-shadow: 0 0 0 rgba(34, 211, 238, 0); }
}

/* ============================================================
   v9 — spacing & typography polish for a consistent, premium
   rhythm across the whole page.
   ============================================================ */
/* smoother, more even paragraph wrapping everywhere */
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

/* consistent section-header rhythm + comfortable measure */
.section-header { margin-bottom: 4rem; }
.section-header p { max-width: 58ch; margin-inline: auto; }

/* even breathing room in the two feature layouts */
.ops-grid { gap: 4.5rem; }
.assessment-card { gap: 3.5rem; }

/* cards: even internal spacing + tighter, more legible headings */
.service-card { padding: 2.25rem 2.25rem 2.5rem; }
.service-card h3 { letter-spacing: -0.01em; margin-bottom: 0.9rem; }
.service-card > p { max-width: 42ch; }

/* body copy measure for readability in prose blocks */
.ops-lead, .assessment-info p, .special-text p, .contact-intro p { max-width: 54ch; }

/* a touch more air between the hero stat ribbon items on wide screens */
@media (min-width: 1100px) { .hero-meta { gap: 1rem; } }

/* ============================================================
   Trust & Access panel (v10)
   ============================================================ */
.trust-section { padding: var(--section-pad) 0; background: var(--bg-dark); position: relative; border-top: 1px solid var(--border-glass); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trust-item {
    background: var(--bg-surface); border: 1px solid var(--border-glass);
    border-radius: 18px; padding: 2rem; backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-item:hover {
    border-color: var(--primary-glow); transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(2, 4, 10, 0.5), 0 0 0 1px rgba(34, 211, 238, 0.14);
}
.trust-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-glow); margin-bottom: 1.2rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.14));
    border: 1px solid var(--border-glass);
}
.trust-item h3 { font-size: 1.02rem; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.trust-item p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.6; max-width: 40ch; }

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

/* ============================================================
   Header / nav refinement (v11) — floating glass pill nav,
   premium gradient CTA, animated gradient hairline. Cleaner
   spacing, next-level polish.
   ============================================================ */
.nav-wrapper { gap: 1.75rem; }
.logo-word { font-size: 1.2rem; letter-spacing: 1.4px; }

/* floating glass pill that groups the links */
.nav-links {
    gap: 0.2rem;
    padding: 0.38rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nav-links a {
    padding: 0.55rem 1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 1.3px;
    transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a::after { display: none; }        /* pill hover replaces the underline */
.nav-links a:hover, .nav-links a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}
/* current page indicator in the nav pill */
.nav-links a[aria-current="page"] {
    color: #fff;
    background: linear-gradient(120deg, rgba(139, 92, 246, 0.22), rgba(34, 211, 238, 0.16));
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.28);
}

/* premium CTA */
.header-cta { gap: 0.9rem; }
.header-cta .btn-outline {
    border-radius: 100px;
    background: linear-gradient(120deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.12));
    border: 1px solid rgba(34, 211, 238, 0.35);
    color: #fff;
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
}
.header-cta .btn-outline:hover {
    border-color: var(--primary-glow);
    color: #fff;
    box-shadow: 0 10px 28px rgba(34, 211, 238, 0.22);
}

/* animated gradient hairline once scrolled */
header.scrolled { border-bottom-color: transparent; }
header.scrolled::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.55), rgba(34, 211, 238, 0.55), transparent);
    background-size: 200% 100%;
    animation: navline 6s linear infinite;
}
@keyframes navline { 0% { background-position: 0% 0; } 100% { background-position: 200% 0; } }

/* logo mark subtle ring on hover */
.logo:hover .logo-mark { filter: drop-shadow(0 0 13px rgba(34, 211, 238, 0.6)); transition: filter 0.3s ease; }

/* keep the mobile slide-in menu looking right (not a tiny pill) */
@media (max-width: 720px) {
    .nav-links {
        border-radius: 0; border: 0; border-left: 1px solid var(--border-glass);
        background: rgba(6, 9, 20, 0.97); padding: 2rem 2.25rem; gap: 1.5rem;
        backdrop-filter: blur(24px); box-shadow: none;
    }
    .nav-links a { background: none; padding: 0; font-size: 0.95rem; }
    .nav-links a:hover, .nav-links a:focus-visible { background: none; color: var(--primary-glow); }
}

/* --- Logo: keep lockup tidy on very small screens --- */
@media (max-width: 400px) {
    .logo-mark { width: 36px; height: 36px; }
    .logo-word { font-size: 1.1rem; letter-spacing: 1.2px; }
}

/* --- Footer wordmark two-tone --- */
.footer-brand .lw-1 { color: #fff; }
.footer-brand .lw-2 { color: var(--primary-2); }

/* ============================================================
   v12 — Enterprise credibility, Industries, Data residency,
   Trust Center. Consistent with the existing glass/violet-cyan
   system. All CSP-safe (no inline styles).
   ============================================================ */

/* --- Credibility ("Why Swardnet") --- */
.credibility { padding: var(--section-pad) 0; background: var(--bg-dark); border-top: 1px solid var(--border-glass); position: relative; }
.cred-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem; align-items: stretch; }
.cred-partner {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.09), rgba(139, 92, 246, 0.12));
    border: 1px solid var(--border-glass); border-radius: var(--radius-lg);
    padding: 2.75rem; backdrop-filter: blur(18px); position: relative; overflow: hidden;
}
.cred-partner::before {
    content: ''; position: absolute; width: 300px; height: 300px; right: -90px; top: -110px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.30), transparent 65%); pointer-events: none;
}
.cred-badge {
    width: 58px; height: 58px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
    color: var(--primary-glow); margin-bottom: 1.4rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(139, 92, 246, 0.16));
    border: 1px solid var(--border-glass-strong);
}
.cred-eyebrow { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-glow); display: block; margin-bottom: 0.6rem; }
.cred-partner h3 { font-size: 1.3rem; margin-bottom: 0.85rem; }
.cred-partner > p { color: var(--text-dim); font-size: 0.96rem; max-width: 46ch; margin-bottom: 1.6rem; }
.cred-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cred-chips li {
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.8px; color: var(--text-main);
    background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-glass-strong);
    border-radius: 100px; padding: 0.4rem 0.85rem;
}
.cred-cert-line {
    display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap;
    color: var(--text-main); font-size: 0.9rem; line-height: 1.5;
    max-width: 46ch; margin-bottom: 1.4rem;
}
.cred-cert {
    font-family: var(--font-mono); font-weight: 700; font-size: 0.72rem; letter-spacing: 1px;
    color: #041016; background: linear-gradient(135deg, var(--primary-glow), var(--primary-2));
    border-radius: 7px; padding: 0.3rem 0.6rem; flex-shrink: 0;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}
.cred-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.cred-pillar {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--bg-surface); border: 1px solid var(--border-glass);
    border-radius: 16px; padding: 1.6rem; backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.cred-pillar:hover { border-color: var(--primary-glow); transform: translateY(-3px); }
.cred-ico {
    min-width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
    color: var(--primary-glow); flex-shrink: 0;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.14));
    border: 1px solid var(--border-glass);
}
.cred-pillar h4 { font-size: 0.98rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 0.35rem; }
.cred-pillar p { color: var(--text-dim); font-size: 0.86rem; line-height: 1.55; }

/* --- Industries --- */
.industries { padding: var(--section-pad) 0; background: #0B0F22; border-top: 1px solid var(--border-glass); }
.industries-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.industry-card {
    background: var(--bg-surface); border: 1px solid var(--border-glass);
    border-radius: 18px; padding: 2rem; backdrop-filter: blur(14px);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-card:hover {
    border-color: var(--primary-glow); transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(2, 4, 10, 0.5), 0 0 0 1px rgba(34, 211, 238, 0.14);
}
.industry-ico {
    width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
    color: var(--primary-glow); margin-bottom: 1.35rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.14));
    border: 1px solid var(--border-glass);
}
.industry-card h3 { font-size: 1.08rem; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.industry-card > p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1.25rem; }
.industry-list { list-style: none; }
.industry-list li { font-size: 0.83rem; color: var(--text-main); margin-bottom: 0.6rem; display: flex; align-items: flex-start; gap: 0.6rem; font-weight: 500; }
.industry-list li::before { content: '\2192'; color: var(--primary-glow); font-weight: 900; }

/* --- Data residency strip --- */
.residency {
    margin-top: 3.25rem; display: flex; justify-content: space-between; align-items: center; gap: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(10, 14, 31, 0.5));
    border: 1px solid var(--border-glass); border-radius: var(--radius-lg);
    padding: 2.5rem 3rem; backdrop-filter: blur(20px); position: relative; overflow: hidden;
}
.residency::before {
    content: ''; position: absolute; width: 360px; height: 360px; left: -120px; bottom: -160px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 65%); pointer-events: none;
}
.residency-head { max-width: 60ch; position: relative; }
.residency-head h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.residency-head p { color: var(--text-dim); font-size: 0.94rem; }
.residency-regions { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; align-content: center; max-width: 320px; position: relative; }
.residency-regions li {
    font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 1px; text-transform: uppercase; color: var(--primary-glow);
    background: rgba(34, 211, 238, 0.08); border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 100px; padding: 0.4rem 0.8rem;
}

/* --- Trust section CTA on home --- */
.trust-cta {
    margin-top: 3.25rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
.trust-cta p { color: var(--text-dim); font-size: 0.98rem; max-width: 52ch; }

/* --- Trust Center page --- */
.page-hero { padding: 11rem 0 3.5rem; text-align: center; position: relative; }
.page-hero .tag { justify-content: center; }
.page-hero .tag::after { content: ''; width: 22px; height: 1px; background: linear-gradient(90deg, var(--primary-glow), transparent); }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.35rem); max-width: 22ch; margin: 0 auto 1.1rem; }
.page-hero p { color: var(--text-dim); font-size: 1.06rem; max-width: 62ch; margin: 0 auto; }
.page-hero-updated { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-faint); margin-top: 1.5rem; }

.tc-section { padding: var(--section-pad) 0; background: var(--bg-dark); border-top: 1px solid var(--border-glass); }
.tc-section--tinted { background: #0B0F22; }
.tc-panels, .tc-disclosure { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.tc-panel {
    background: var(--bg-surface); border: 1px solid var(--border-glass);
    border-radius: 18px; padding: 2.25rem; backdrop-filter: blur(14px);
}
.tc-panel h3 { font-size: 1.1rem; margin-bottom: 1.1rem; letter-spacing: -0.01em; }
.tc-list { list-style: none; }
.tc-list li { font-size: 0.9rem; color: var(--text-main); margin-bottom: 0.65rem; display: flex; align-items: flex-start; gap: 0.65rem; font-weight: 500; }
.tc-list li::before { content: '\2713'; color: var(--primary-glow); font-weight: 900; flex-shrink: 0; }
.tc-body { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 1rem; }
.tc-note { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 1px; color: var(--text-faint); margin-top: 1.25rem; }
.tc-inline-link { color: var(--primary-glow); text-decoration: none; font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.25s; }
.tc-inline-link:hover { border-bottom-color: var(--primary-glow); }
.tc-testing {
    margin-top: 1.75rem; background: var(--bg-surface); border: 1px solid var(--border-glass);
    border-radius: 18px; padding: 2rem 2.25rem; backdrop-filter: blur(14px);
}
.tc-testing h3 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.contact-card--center { grid-template-columns: 1fr; text-align: center; max-width: 680px; }
.contact-card--center .contact-intro h2 { margin-inline: auto; }
.contact-card--center .contact-direct { display: inline-block; margin-top: 0.5rem; }
.contact-card--center .contact-points { max-width: 23rem; margin-inline: auto; text-align: left; }
.contact-email-btn { margin-top: 0.5rem; max-width: 100%; }
.tc-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.75rem; }

/* --- Responsive for v12 --- */
@media (max-width: 1024px) {
    .cred-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
    .tc-panels, .tc-disclosure { grid-template-columns: 1fr; }
    .residency { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 2.25rem; }
    .residency-regions { max-width: none; }
}
@media (max-width: 620px) {
    .cred-pillars { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Stat strip (used standalone, e.g. Trust Center commitments)
   ============================================================ */
.client-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 2.4rem 2rem;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.06), rgba(10, 14, 31, 0.2));
}
.client-stat { text-align: center; position: relative; padding: 0 1rem; }
.client-stat + .client-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 12%;
    height: 76%;
    width: 1px;
    background: var(--border-glass);
}
.client-stat strong {
    display: block;
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(120deg, var(--text-main), var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.6rem;
}
.client-stat span {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--text-dim);
}

@media (max-width: 900px) {
    .client-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .client-stat:nth-child(3), .client-stat:nth-child(4) { padding-top: 1.6rem; border-top: 1px solid var(--border-glass); }
}
@media (max-width: 520px) {
    .client-stats { grid-template-columns: 1fr; }
    .client-stat + .client-stat::before { display: none; }
    .client-stat:nth-child(n+2) { padding-top: 1.6rem; border-top: 1px solid var(--border-glass); }
}

/* ============================================================
   Home landing highlights — clickable service cards
   ============================================================ */
.service-card--link { display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer; }
.service-card--link h3 { color: var(--text-main); }
.service-card-cta {
    margin-top: auto;
    padding-top: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-glow);
    transition: transform 0.25s ease;
}
.service-card--link:hover .service-card-cta,
.service-card--link:focus-visible .service-card-cta { transform: translateX(4px); }
.home-highlights { padding-top: 5rem; }

/* ============================================================
   Hero command-center FX — HUD frame, telemetry, ops ticker,
   and the defense overlay canvas (attacks render above vignette)
   ============================================================ */
#fx-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.hero-hud { position: absolute; inset: 6.5rem 3.5rem 3.5rem; z-index: 1; pointer-events: none; }
.hud-bracket { position: absolute; width: 38px; height: 38px; border: 2px solid rgba(34, 211, 238, 0.5); }
.hud-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud-telemetry { display: inline-flex; align-items: center; gap: 0.6rem; margin: 1.6rem auto 0;
    font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase;
    color: #9fe6ff; border: 1px solid rgba(34, 211, 238, 0.3); border-radius: 100px;
    padding: 0.42rem 1.05rem; background: rgba(8, 11, 30, 0.5); backdrop-filter: blur(6px); }
.hud-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success);
    box-shadow: 0 0 10px var(--success); animation: hud-blink 1.6s ease-in-out infinite; }
@keyframes hud-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-ticker { display: flex; align-items: center; gap: 0.5rem; justify-content: center; margin-top: 1rem;
    font-family: var(--font-mono); font-size: 0.78rem; color: #8fd6e6; letter-spacing: 0.3px; min-height: 1.3em; }
.tick-caret { color: var(--primary-glow); }
.tick-cursor { color: var(--primary-glow); animation: tick-blink 1s step-end infinite; }
@keyframes tick-blink { 50% { opacity: 0; } }
@media (max-width: 720px) {
    .hero-hud { inset: 5rem 1.1rem 1.75rem; }
    .hud-bracket { width: 24px; height: 24px; }
    .hero-ticker { font-size: 0.7rem; }
}
