/* ================================================================
   CoreX Technology Solutions — Design System 2026
   Premium Corporate + Legacy Tactical Interface
   ================================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
    --cx-bg: #06080c;
    --cx-bg-elevated: #0c1018;
    --cx-bg-card: #0e1219;
    --cx-bg-card-hover: #131820;
    --cx-border: rgba(255, 255, 255, 0.06);
    --cx-border-hover: rgba(255, 255, 255, 0.12);
    --cx-accent: #3b82f6;
    --cx-accent-soft: rgba(59, 130, 246, 0.15);
    --cx-accent-glow: rgba(59, 130, 246, 0.25);
    --cx-text: #f0f2f5;
    --cx-text-secondary: #94a3b8;
    --cx-text-muted: #64748b;
    --cx-font: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    --cx-font-mono: "JetBrains Mono", "Courier New", monospace;
    --cx-radius-sm: 10px;
    --cx-radius: 14px;
    --cx-radius-lg: 20px;
    --cx-max-w: 1140px;

    /* Legacy tactical tokens (back pages) */
    --red-alert: #ff0000;
    --red-dark: #450a0a;
    --orange-warning: #f59e0b;
    --orange-dark: #452a00;
    --blue-tech: #3b82f6;
    --blue-glow: rgba(59, 130, 246, 0.5);
    --zinc-border: #1f1f1f;
    --zinc-deep: #0a0a0a;
    --bg-main: #000000;
    --bg-card: #0d0d0d;
    --font-main: var(--cx-font);
    --font-mono: var(--cx-font-mono);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    background: var(--cx-bg);
    color: var(--cx-text);
    font-family: var(--cx-font);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ================================================================
   CORPORATE SITE — Header
   ================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(6, 8, 12, 0.8);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--cx-border);
}

.header-inner {
    max-width: var(--cx-max-w);
    margin: 0 auto;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 42px;
    width: auto;
}

.site-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--cx-text);
    letter-spacing: -0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    color: var(--cx-text-secondary);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--cx-text);
    background: rgba(255, 255, 255, 0.05);
}

.header-cta { flex-shrink: 0; }

/* ================================================================
   Buttons
   ================================================================ */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--cx-font);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 22px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--cx-accent);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 0 24px var(--cx-accent-glow);
}

.btn-primary:hover {
    background: #4b8ef7;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 0 40px var(--cx-accent-glow);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--cx-text-secondary);
    border: 1px solid var(--cx-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--cx-text);
    border-color: var(--cx-border-hover);
}

.btn-large {
    padding: 14px 32px;
    font-size: 14px;
    border-radius: 12px;
}

/* ================================================================
   Hero
   ================================================================ */
.hero-viewport {
    width: 100%;
    min-height: 92vh;
    position: relative;
    overflow: hidden;
    background: var(--cx-bg);
}

.earth-background {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 130%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072') no-repeat center;
    background-size: cover;
    opacity: 0.35;
    animation: hero-drift 90s ease-in-out infinite;
    z-index: 1;
}

@keyframes hero-drift {
    0%, 100% { transform: scale(1.05) translate(0, 0); }
    50% { transform: scale(1.1) translate(-1%, -1%); }
}

.hero-viewport::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 70% 50% at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        linear-gradient(to top, var(--cx-bg) 0%, rgba(6, 8, 12, 0.85) 35%, rgba(6, 8, 12, 0.5) 60%, transparent 100%);
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    max-width: var(--cx-max-w);
    margin: 0 auto;
    padding: 0 40px;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    margin-bottom: 24px;
}

.label-micro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cx-accent);
}

.label-micro::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cx-accent);
    opacity: 0.5;
}

.hero-h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0;
    max-width: 780px;
    background: linear-gradient(170deg, #ffffff 30%, var(--cx-text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--cx-text-secondary);
    max-width: 620px;
    margin-top: 24px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta-row {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.hero-microcopy {
    margin-top: 32px;
    font-size: 13px;
    color: var(--cx-text-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hero-microcopy span {
    padding: 4px 0;
}

/* ================================================================
   Credibility Strip
   ================================================================ */
.cred-strip {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--cx-border);
    background: rgba(6, 8, 12, 0.5);
    backdrop-filter: blur(12px);
}

.cred-strip-inner {
    max-width: var(--cx-max-w);
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cred-pill {
    font-size: 12px;
    font-weight: 500;
    color: var(--cx-text-secondary);
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--cx-border);
    background: rgba(255, 255, 255, 0.02);
}

/* ================================================================
   Page Layout
   ================================================================ */
.page-main {
    position: relative;
}

.page-section {
    max-width: var(--cx-max-w);
    margin: 0 auto;
    padding: 80px 40px;
}

.page-section + .page-section {
    border-top: 1px solid var(--cx-border);
}

/* Alternate subtle section backgrounds */
.page-section:nth-child(even) {
    position: relative;
}

.page-section:nth-child(even)::before {
    content: '';
    position: absolute;
    inset: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: rgba(255, 255, 255, 0.01);
    pointer-events: none;
    z-index: -1;
}

/* ================================================================
   Section Typography
   ================================================================ */
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin: 12px 0 0 0;
    max-width: 700px;
}

.section-lede {
    font-size: 16px;
    color: var(--cx-text-secondary);
    max-width: 640px;
    line-height: 1.7;
    margin-top: 16px;
}

/* ================================================================
   Cards — Visual (Vass-style: image + arrow + title + desc)
   ================================================================ */
.cx-card {
    position: relative;
    border-radius: var(--cx-radius-lg);
    background: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.cx-card:hover {
    transform: translateY(-4px);
}

.cx-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--cx-radius-lg);
    overflow: hidden;
    background: var(--cx-bg-card);
}

.cx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cx-card:hover .cx-card-img img {
    transform: scale(1.05);
}

.cx-card-img-gradient {
    width: 100%;
    height: 100%;
    border-radius: var(--cx-radius-lg);
}

.cx-card:hover .cx-card-img-gradient {
    filter: brightness(1.1);
    transition: filter 0.4s ease;
}

.cx-card-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.cx-card:hover .cx-card-arrow {
    background: rgba(255, 255, 255, 0.22);
    transform: translate(2px, -2px);
}

.cx-card-arrow svg {
    width: 14px;
    height: 14px;
}

.cx-card-body {
    padding: 18px 4px 4px;
}

.cx-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
    color: var(--cx-text);
}

.cx-card p {
    font-size: 14px;
    color: var(--cx-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Compact card variant (no image, for use-cases / differentials) */
.cx-card-compact {
    position: relative;
    padding: 28px;
    border-radius: var(--cx-radius-lg);
    background: linear-gradient(145deg, rgba(14, 18, 25, 0.95) 0%, rgba(10, 13, 20, 0.98) 100%);
    border: 1px solid var(--cx-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.cx-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    pointer-events: none;
}

.cx-card-compact:hover {
    border-color: var(--cx-border-hover);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.cx-card-compact h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--cx-text);
}

.cx-card-compact p {
    font-size: 14px;
    color: var(--cx-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Phase / numbered cards */
.cx-card-phase {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cx-card-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cx-accent) 0%, #2563eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.cx-card-phase-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: var(--cx-text);
}

.cx-card-phase-content p {
    font-size: 14.5px;
    color: var(--cx-text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Featured card (for pain/problem section) */
.cx-card-featured {
    position: relative;
    padding: 40px;
    border-radius: var(--cx-radius-lg);
    background: linear-gradient(145deg, rgba(14, 18, 25, 0.9) 0%, rgba(6, 8, 12, 1) 100%);
    border: 1px solid var(--cx-border);
    overflow: hidden;
}

.cx-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--cx-accent) 50%, transparent 100%);
    opacity: 0.6;
}

/* ================================================================
   Grids
   ================================================================ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* ================================================================
   Lists
   ================================================================ */
.cx-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    display: grid;
    gap: 12px;
}

.cx-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--cx-text-secondary);
    line-height: 1.6;
}

.cx-list li::before {
    content: '';
    flex-shrink: 0;
    margin-top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cx-accent);
    opacity: 0.6;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--cx-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--cx-text);
}

.faq-item p {
    font-size: 15px;
    color: var(--cx-text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

/* ================================================================
   Form
   ================================================================ */
.cx-form {
    max-width: 560px;
    display: grid;
    gap: 16px;
}

.cx-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cx-input {
    width: 100%;
    font-family: var(--cx-font);
    font-size: 14px;
    color: var(--cx-text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--cx-border);
    border-radius: var(--cx-radius-sm);
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cx-input::placeholder {
    color: var(--cx-text-muted);
}

.cx-input:focus {
    border-color: var(--cx-accent);
    box-shadow: 0 0 0 3px var(--cx-accent-soft);
}

textarea.cx-input {
    resize: vertical;
    min-height: 80px;
}

.cx-form-submit {
    margin-top: 8px;
}

.cx-form-note {
    font-size: 13px;
    color: var(--cx-text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

/* ================================================================
   CTA Sections
   ================================================================ */
.cx-cta-block {
    text-align: center;
    padding: 80px 40px;
    max-width: var(--cx-max-w);
    margin: 0 auto;
    position: relative;
}

.cx-cta-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--cx-accent-soft) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.4;
}

.cx-cta-block .section-title {
    max-width: 600px;
    margin: 12px auto 0;
}

.cx-cta-block .section-lede {
    max-width: 540px;
    margin: 16px auto 0;
}

/* ================================================================
   Footer
   ================================================================ */
.site-footer {
    border-top: 1px solid var(--cx-border);
    margin-top: 0;
    padding: 64px 40px 40px;
    background: rgba(6, 8, 12, 0.95);
}

.footer-inner {
    max-width: var(--cx-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 48px;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cx-text-muted);
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    color: var(--cx-text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--cx-text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.footer-links a:hover { color: var(--cx-text); }

.footer-bottom {
    max-width: var(--cx-max-w);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--cx-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--cx-text-muted);
}

.footer-bottom a {
    color: var(--cx-text-secondary);
    text-decoration: none;
}

.footer-bottom a:hover { color: var(--cx-text); }

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 960px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; gap: 16px; }
    .site-nav { display: none; }
    .header-cta { margin-left: auto; }
    .hero-overlay { padding: 0 20px; }
    .page-section { padding: 56px 20px; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .cx-form-row { grid-template-columns: 1fr; }
    .cred-strip-inner { padding: 14px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .site-footer { padding: 40px 20px 28px; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .cx-cta-block { padding: 56px 20px; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 2rem; }
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-large { text-align: center; }
}

/* ================================================================
   LEGACY — Tactical Interface (Sovereign OS back pages)
   Kept for backward compatibility with back pages
   ================================================================ */
.label-micro-legacy {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #52525b;
    margin-bottom: 12px;
    display: block;
}

.text-intel-body {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.6;
}

.card-tactic {
    background: var(--bg-card);
    border: 1px solid var(--zinc-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-tactic.alert-active {
    border-color: var(--orange-warning);
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--orange-dark) 200%);
}

.alert-pulse { animation: pulse-red 1.5s infinite; }
@keyframes pulse-red {
    0% { border-color: var(--zinc-border); }
    50% { border-color: var(--red-alert); }
    100% { border-color: var(--zinc-border); }
}

.terminal-box {
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--zinc-border);
    padding: 16px;
    border-radius: 12px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.log-line { font-size: 10px; margin-bottom: 6px; display: flex; gap: 8px; }
.log-line::before { content: ">"; color: var(--blue-tech); }
.log-line.warning::before { content: "!"; color: var(--red-alert); }
.log-line.warning { color: var(--red-alert); }

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--blue-tech);
    box-shadow: 0 0 15px var(--blue-tech);
    top: 0;
    z-index: 25;
    animation: scan-move 4s linear infinite;
    pointer-events: none;
}

@keyframes scan-move {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}

.btn-master {
    width: 160px; height: 160px; border-radius: 50%;
    border: 4px solid var(--zinc-border);
    background: radial-gradient(circle, #111 0%, #000 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.6s ease;
}
.btn-master.active { border-color: var(--blue-tech); box-shadow: 0 0 40px var(--blue-glow); }
.btn-master.warning { border-color: var(--red-alert); animation: pulse-red-border 1.5s infinite; }

@keyframes pulse-red-border {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    70% { box-shadow: 0 0 30px 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.glitch-effect { animation: glitch 1s infinite linear alternate-reverse; }
@keyframes glitch {
    0% { transform: translate(0); text-shadow: -2px 0 var(--red-alert); }
    50% { transform: translate(-1px, 1px); text-shadow: 2px 0 var(--blue-tech); }
    100% { transform: translate(1px, -1px); text-shadow: -1px 0 var(--red-alert); }
}

.scan-wrapper { position: relative; width: 220px; height: 220px; margin: 0 auto; }
.node-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 12px; }
.server-node { background: #111; border: 1px solid var(--zinc-border); border-radius: 12px; padding: 10px; text-align: center; transition: all 0.3s ease; }
.node-online { border-color: #22c55e; box-shadow: 0 0 10px rgba(34, 197, 94, 0.1); }
.node-offline { border-color: var(--red-alert); opacity: 0.6; }
.node-warning { border-color: var(--orange-warning); }
.safe-area-bottom { padding-bottom: 120px; }
.uikit-section { padding: 20px; margin-bottom: 24px; }

.map-container { height: 300px; background: radial-gradient(circle at center, #051525 0%, #000 100%); position: relative; overflow: hidden; border-radius: 24px; border: 1px solid #1a365d; }
#map { height: 350px; width: 100%; background: #000; }
.leaflet-tile-container { filter: invert(100%) hue-rotate(170deg) brightness(80%) contrast(120%); }
.leaflet-container { background: #000 !important; }
.leaflet-control-attribution { display: none !important; }
.map-amber-filter .leaflet-tile-container { filter: invert(100%) hue-rotate(20deg) brightness(90%) contrast(120%); }
.map-blue-filter .leaflet-tile-container { filter: invert(100%) hue-rotate(170deg) brightness(80%) contrast(120%); }
