/* ============================================
   CSS VARIABLES - Edit these for quick theme changes
   ============================================ */
:root {
    /* Background Colors */
    --bg-color: #050505;
    --card-bg: #0a0a0a;

    /* Text Colors */
    --text-main: #e0e0e0;
    --text-muted: #888;

    /* Accent Colors - Change these to rebrand */
    --accent-primary: #00f3ff;
    /* Cyan - main accent */
    --accent-secondary: #ff003c;
    /* Red - secondary accent */
    --accent-tertiary: #bbf7d0;
    /* Pale Green - tertiary */

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Glass Effect */
    --glass-bg: rgba(5, 5, 5, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Animation Speed */
    --transition-speed: 0.3s;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   SCANLINE EFFECT (CRT Monitor Effect)
   Set opacity to 0 to disable
   ============================================ */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER & NAVIGATION
   Fixed header with glassmorphism effect
   ============================================ */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    height: 32px;
    width: auto;
    opacity: 0.9;
}

.logo-text {
    font-family: var(--font-mono);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.logo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    margin-left: 5px;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    position: relative;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Social Media Icons in Header */
nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    color: var(--text-muted);
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.menu-toggle {
    display: none;
}

/* ============================================
   HERO SECTION
   Full-screen landing with animated grid background
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #000 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.overline {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

h1.glitch {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 0.8rem 2rem;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-primary {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
}

.btn-secondary {
    border-color: var(--text-muted);
    color: var(--text-main);
    background: transparent;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--accent-primary);
}

/* ============================================
   GENERAL SECTIONS
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    white-space: nowrap;
}

.section-header .line {
    height: 1px;
    background: var(--glass-border);
    width: 100%;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Profile Styles */
.about-profile {
    text-align: center;
}

.profile-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.2);
    transition: filter var(--transition-speed);
}

.profile-image-container:hover .profile-image {
    filter: grayscale(0%) contrast(1);
}

.profile-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.profile-role {
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.profile-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.profile-social a {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color var(--transition-speed);
    font-family: var(--font-mono);
}

.profile-social a:hover {
    color: var(--accent-primary);
}

.lead-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 300;
    border-left: 3px solid var(--accent-primary);
    padding-left: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-speed);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    background: rgba(0, 243, 255, 0.05);
}

.stat-box:nth-child(3) {
    grid-column: span 2;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    color: #fff;
    font-family: var(--font-mono);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.newsletter-status {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    height: 1.5rem;
}

.newsletter-status.success {
    color: var(--accent-primary);
}

.newsletter-status.error {
    color: #ff3333;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-box {
        padding: 2rem;
    }
}

/* ============================================
   INVESTIGATION CARDS GRID
   ============================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #111;
    position: relative;
}

.placeholder-arms {
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 0, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 243, 255, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(45deg,
            #0a0a0a 0px,
            #0a0a0a 2px,
            #151515 2px,
            #151515 4px);
    position: relative;
    overflow: hidden;
}

.placeholder-arms::before {
    content: '⚔️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.placeholder-cables {
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 100, 255, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 243, 255, 0.2) 0%, transparent 40%),
        linear-gradient(180deg, #0a1628 0%, #050a14 100%);
    position: relative;
    overflow: hidden;
}

.placeholder-cables::before {
    content: '🌐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

.placeholder-arms::before {
    content: '⚔️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
        text-shadow: 0 0 20px var(--accent-primary);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
}

.placeholder-mining {
    background:
        radial-gradient(circle at 50% 50%, rgba(234, 179, 8, 0.15) 0%, transparent 60%),
        repeating-linear-gradient(45deg,
            #0a0a0a 0px,
            #0a0a0a 10px,
            #111 10px,
            #111 20px);
    position: relative;
    overflow: hidden;
}

.placeholder-mining::before {
    content: '⛏️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.5));
}

.card-content {
    padding: 1.5rem;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 0.2rem 0.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.read-more {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #fff;
    font-weight: 700;
}

.read-more:hover {
    color: var(--accent-primary);
    margin-left: 5px;
}

.read-more-disabled {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   INTEL GRID REVAMP
   ============================================ */
.intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.intel-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.intel-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.intel-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
}

.intel-type {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.type-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Color Coding */
.type-fraud .type-indicator {
    background-color: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.type-fraud {
    color: #f59e0b;
}

.type-geo .type-indicator {
    background-color: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.type-geo {
    color: #3b82f6;
}

.type-live .type-indicator {
    background-color: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

.type-live {
    color: #ef4444;
}

.intel-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.intel-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    line-height: 1.3;
}

.intel-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.intel-footer {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
}

.intel-stat-label {
    color: var(--text-muted);
}

.intel-stat-value {
    color: #fff;
    font-weight: 700;
}

.live-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-dot {
    width: 4px;
    height: 4px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* ============================================
   WATCH SECTION (Video Grid)
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   IMMERSIVE SHOWCASE (Full-Screen Research)
   ============================================ */
.immersive-showcase {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.showcase-panel {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.showcase-content {
    max-width: 900px;
    padding: 3rem;
    text-align: center;
    z-index: 2;
}

.showcase-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.showcase-title {
    font-size: 4rem;
    font-weight: 800;
    margin: 1rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   INTEL SECTION (Research Images)
   ============================================ */
.intel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.intel-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.intel-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.intel-image {
    height: 250px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.intel-content {
    padding: 1.5rem;
}

.intel-content h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
}

.intel-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   TOOLS SECTION
   ============================================ */
.dark-section {
    background: #080808;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tool-item {
    display: block;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all var(--transition-speed);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.tool-item:hover {
    background: rgba(0, 243, 255, 0.02);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.tool-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: transform var(--transition-speed);
}

.tool-item:hover .icon {
    transform: scale(1.1);
}

.tool-item h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.tool-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tool-status {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h5 {
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-col p,
.footer-col a {
    display: block;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.pgp-key {
    font-family: var(--font-mono);
    color: var(--accent-primary);
    font-size: 0.8rem;
    word-break: break-all;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid #111;
}

/* ============================================
   RESPONSIVE DESIGN
   Mobile and tablet breakpoints
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .social-links {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        position: relative;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        margin-bottom: 6px;
    }

    h1.glitch {
        font-size: 2.5rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    /* Immersive Showcase/* War Room Link */
    .war-room-link {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ff003c !important;
        /* Red accent */
        font-weight: 700;
        border: 1px solid rgba(255, 0, 60, 0.3);
        padding: 5px 12px;
        border-radius: 4px;
        background: rgba(255, 0, 60, 0.05);
        transition: all 0.3s ease;
    }

    .war-room-link:hover {
        background: rgba(255, 0, 60, 0.15);
        box-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
    }

    .live-dot {
        width: 8px;
        height: 8px;
        background-color: #ff003c;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-red 1.5s infinite;
    }

    @keyframes pulse-red {
        0% {
            box-shadow: 0 0 0 0 rgba(255, 0, 60, 0.7);
        }

        70% {
            box-shadow: 0 0 0 6px rgba(255, 0, 60, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 0, 60, 0);
        }
    }

    /* Mobile Menu */
    /* Immersive Showcase Mobile */
    .showcase-title {
        font-size: 2.5rem;
    }

    .showcase-description {
        font-size: 1.1rem;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* HubSpot Form Styles */
.hubspot-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    /* HubSpot forms usually look better left-aligned or centered */
}

.placeholder-form {
    border: 1px dashed var(--accent-primary);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-family: var(--font-mono);
    background: rgba(0, 0, 0, 0.3);
}

/* Override HubSpot iframe styles if needed (often requires !important due to iframe isolation, but we can try to style the container) */
/* Note: Actual HubSpot form styling often needs to be done within HubSpot or using their 'raw HTML' option. 
   For now, we ensure the container fits the theme. */
/* Lucide Icons */
.node-icon svg,
.deck-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

/* Locked Card Styles */
.locked-card {
    opacity: 0.7;
    pointer-events: none;
    border-color: rgba(255, 0, 60, 0.3);
}

.card-image-wrapper {
    position: relative;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    backdrop-filter: blur(2px);
}

.lock-overlay svg {
    width: 48px;
    height: 48px;
}