/* ==================== GLOBAL COLOR SYSTEM ==================== */
:root {
    --primary-blue: #8cbec3;
    --primary-blue-hover: #b0d4d8;
    --accent-red: #ff6b6b;
    --accent-cyan: #4ecdc4;
    --text-primary: #e0e0e0;
    --text-secondary: #c0c0c0;
    --text-muted: #b0b0b0;
    --bg-primary: #0a0a0a;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #111111;
    --border-primary: #333333;
    --border-secondary: #2a2a2a;
    --hover-overlay: rgba(140, 190, 195, 0.1);
    --focus-glow: rgba(140, 190, 195, 0.3);
}

/* ==================== GLOBAL RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jetbrains Mono', 'Courier Prime', monospace;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
}

/* ==================== HEADER ==================== */
.header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-blue-hover);
    text-shadow: 0 0 10px var(--primary-blue);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: block;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-blue);
    border-color: var(--border-primary);
    background: var(--hover-overlay);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ==================== DROPDOWN ==================== */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    min-width: 280px;
    border: 1px solid var(--border-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    padding: 1rem 0;
}

.dropdown-item {
    padding: 1rem 1.5rem;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: var(--hover-overlay);
}

.dropdown-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.dropdown-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    opacity: 0.7;
    line-height: 1.3;
}

.dropdown-item:hover .dropdown-link {
    color: var(--primary-blue);
}

.dropdown-item:hover .dropdown-description {
    opacity: 0.9;
}

/* ==================== MAIN CONTENT ==================== */
.main-content {
    margin-top: 80px;
    padding: 2rem 0;
}

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

/* ==================== HERO SECTION ==================== */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-primary);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--hover-overlay), transparent);
    animation: scan 3s infinite;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-shadow: 0 0 20px var(--focus-glow);
    font-family: 'Courier Prime', monospace;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ==================== SECTIONS ==================== */
.section {
    background: var(--bg-tertiary);
    margin-bottom: 2rem;
    padding: 3rem;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
    position: relative;
    scroll-margin-top: 100px;
}

.section:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px var(--hover-overlay);
}

.section h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section h2::before {
    content: '> ';
    color: var(--accent-red);
}

.section p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ==================== TERMINAL & CODE BLOCKS ==================== */
.terminal-text {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    border-left: 0;
    border-right: 0;
    padding: 1rem;
    margin: 1rem 0;
    color: var(--primary-blue);
    overflow-x: auto;
    position: relative;
}

.terminal-text::before {
    content: '$ ';
    color: var(--accent-red);
}

.code-block {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    color: var(--primary-blue);
    overflow-x: auto;
    position: relative;
}

.code-block::before {
    content: '~/capelabs$';
    display: block;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

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

.feature-card, .feature-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.feature-card::before, .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before, .feature-item:hover::before {
    transform: scaleX(1);
}

.feature-card:hover, .feature-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.feature-card-content {
    flex-grow: 1;
}

.feature-card h3, .feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-family: 'Courier Prime', monospace;
    letter-spacing: 1px;
}

.feature-card p, .feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.feature-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    background: transparent;
    color: var(--primary-blue);
    text-decoration: none;
    border: none;
    font-family: 'Courier Prime', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid transparent;
    align-self: flex-end;
    flex-shrink: 0;
}

.feature-btn:hover {
    color: var(--primary-blue-hover);
    text-shadow: 0 0 8px var(--focus-glow);
    border-bottom-color: var(--primary-blue);
    transform: translateY(-1px);
}

.feature-btn:active {
    transform: translateY(0);
}

.feature-card:not(:has(.feature-btn)) {
    min-height: auto;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: 'Courier Prime', monospace;
}

/* ==================== BREVITY PAGE ==================== */
.brevity-page {
    overflow-x: hidden;
}

.brevity-page .matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.05;
}

.brevity-page .main-content .container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    max-width: none;
    margin-top: 0;
}

.brevity-page .subscription-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    padding: 4rem 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brevity-page .subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--hover-overlay), transparent);
    animation: brevity-scan 3s infinite;
}

.brevity-page .subscription-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px var(--hover-overlay);
}

.brevity-page .logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    gap: 1.5rem;
}

.brevity-page .logo-image, .logo-image {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brevity-page .logo-image:hover, .logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--focus-glow));
}

.brevity-page .logo-divider, .logo-divider {
    width: 1px;
    height: 40px;
    background: var(--border-primary);
}

.brevity-page .logo-text, .logo-text {
    font-family: 'Courier Prime', monospace;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--focus-glow);
}

.brevity-page .hero-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.brevity-page .hero-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 1px;
}

.brevity-page .hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.brevity-page .subscription-form {
    position: relative;
    z-index: 1;
}

.brevity-page .form-group {
    margin-bottom: 1rem;
}

.brevity-page .checkbox-group {
    margin-bottom: 2rem;
    padding: 0.5rem 0;
}

.brevity-page .checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

.brevity-page .checkbox-item:last-child {
    margin-bottom: 0;
}

.brevity-page .custom-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-primary);
    background: var(--bg-primary);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.brevity-page .custom-checkbox:hover {
    border-color: var(--primary-blue);
}

.brevity-page .custom-checkbox:checked {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.brevity-page .custom-checkbox:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: bold;
    font-family: 'Courier Prime', monospace;
}

.brevity-page .checkbox-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
    font-family: 'Courier Prime', monospace;
    user-select: none;
}

.brevity-page .terms-link {
    color: var(--primary-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.brevity-page .terms-link:hover {
    border-bottom-color: var(--primary-blue);
    text-shadow: 0 0 5px var(--focus-glow);
}

.brevity-page .email-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-family: 'Courier Prime', monospace;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.brevity-page .email-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.brevity-page .email-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px var(--focus-glow);
    background: var(--bg-secondary);
}

.brevity-page .subscribe-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 1px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.brevity-page .subscribe-btn:disabled {
    color: var(--text-muted);
    border-color: var(--border-primary);
    cursor: not-allowed;
    background: var(--bg-secondary);
    opacity: 0.6;
}

.brevity-page .subscribe-btn:not(:disabled):hover {
    color: var(--bg-primary);
    background: var(--primary-blue);
    box-shadow: 0 0 20px var(--focus-glow);
    transform: translateY(-2px);
}

.brevity-page .subscribe-btn:not(:disabled):active {
    transform: translateY(0);
}

.brevity-page .footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==================== MODALS ==================== */
.brevity-page .confirmation-overlay,
.brevity-page .alert-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1005;
    justify-content: center;
    align-items: center;
}

.brevity-page .confirmation-modal,
.brevity-page .alert-modal {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.brevity-page .confirmation-overlay.show,
.brevity-page .alert-overlay.show {
    display: flex;
}

.brevity-page .confirmation-overlay.show .confirmation-modal,
.brevity-page .alert-overlay.show .alert-modal {
    transform: scale(1);
}

.brevity-page .confirmation-modal::before,
.brevity-page .alert-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-cyan));
}

.brevity-page .confirmation-title,
.brevity-page .alert-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: 'Courier Prime', monospace;
    letter-spacing: 1px;
}

.brevity-page .confirmation-message,
.brevity-page .alert-message {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brevity-page .confirmation-email {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-blue);
    font-family: 'Courier Prime', monospace;
    background: var(--bg-primary);
    border: 1px solid var(--border-primary);
    padding: 1rem;
    margin: 1.5rem 0;
    word-break: break-all;
}

.brevity-page .confirmation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.brevity-page .confirm-btn,
.brevity-page .cancel-btn,
.brevity-page .alert-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid;
    min-width: 120px;
}

.brevity-page .confirm-btn,
.brevity-page .alert-btn {
    background: var(--primary-blue);
    color: var(--bg-primary);
    border-color: var(--primary-blue);
}

.brevity-page .confirm-btn:hover,
.brevity-page .alert-btn:hover {
    background: var(--primary-blue-hover);
    box-shadow: 0 0 15px var(--focus-glow);
    transform: translateY(-1px);
}

.brevity-page .cancel-btn {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border-primary);
}

.brevity-page .cancel-btn:hover {
    background: var(--hover-overlay);
    color: var(--text-primary);
    border-color: var(--text-muted);
}

/* ==================== TERMS PAGE ==================== */
.terms-page {
    padding: 2rem;
    max-width: 800px;
    margin: 100px auto 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
}

.terms-page h1 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.terms-page h2 {
    color: var(--primary-blue);
    margin: 2rem 0 1rem;
    font-family: 'Courier New', monospace;
}

.terms-page p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.terms-page ul {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 0;
    list-style-position: inside;
}

.terms-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.back-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    display: inline-block;
    margin-top: 2rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.back-link:hover {
    border-bottom-color: var(--primary-blue);
}

/* ==================== THREATMESH PAGE ==================== */
.threatmesh-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-primary);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.threatmesh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--hover-overlay), transparent);
    animation: scan 3s infinite;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    gap: 1.5rem;
}

.threatmesh-hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

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

.hero-stat .number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-blue);
    font-family: 'Courier Prime', monospace;
    display: block;
}

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

.feature-section {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    padding: 3rem 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.feature-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 1px;
}

.feature-section h2::before {
    content: '> ';
    color: var(--accent-red);
}

.cta-section {
    background: var(--bg-primary);
    border: 2px solid var(--primary-blue);
    padding: 3rem 2.5rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-cyan));
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-family: 'Courier Prime', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--bg-primary);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    box-shadow: 0 0 20px var(--focus-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.btn-secondary.disabled {
    background: var(--bg-secondary);
    color: var(--text-muted);
    border-color: var(--border-secondary);
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    padding: 2rem;
    text-align: center;
}

.info-card .icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Courier Prime', monospace;
}

.disclaimer {
    background: var(--bg-tertiary);
    border-left: 4px solid var(--accent-red);
    padding: 2rem;
    margin: 3rem 0;
}

.disclaimer h3 {
    color: var(--accent-red);
    margin-bottom: 1rem;
    font-family: 'Courier Prime', monospace;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-primary);
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px var(--focus-glow);
}

.footer p {
    font-size: 0.9rem;
    font-family: 'Courier Prime', monospace;
    letter-spacing: 1px;
}

/* ==================== UTILITIES ==================== */
.headless-page .main-content {
    margin-top: 0;
}

.glitch {
    animation: glitch 2s infinite;
}

.blink {
    animation: blink 1.5s infinite;
}

/* ==================== ANIMATIONS ==================== */
@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes brevity-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        border-top: 1px solid var(--border-primary);
        padding: 2rem 0;
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1002;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-menu:not(.active) {
        pointer-events: none;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--hover-overlay);
        border: none;
        box-shadow: none;
        margin-top: 0.5rem;
        min-width: auto;
    }

    .dropdown-section {
        padding: 0.5rem 0;
    }

    .dropdown-item {
        padding: 0.75rem 2rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 2rem;
    }

    .features-grid, .feature-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1.3rem;
    }

    .header {
        z-index: 1003;
    }

    .feature-card, .feature-item {
        min-height: auto;
    }
    
    .feature-btn {
        align-self: flex-end;
        margin-top: 1rem;
    }

    /* Brevity mobile */
    .brevity-page .main-content .container {
        padding: 1rem;
    }
    
    .brevity-page .subscription-card {
        padding: 3rem 2rem;
    }
    
    .brevity-page .logo-text, .logo-text {
        font-size: 1.5rem;
    }
    
    .brevity-page .logo-image, .logo-image {
        width: 36px;
        height: 36px;
    }
    
    .brevity-page .hero-title {
        font-size: 1.3rem;
    }
    
    .brevity-page .alert-modal,
    .brevity-page .confirmation-modal {
        padding: 2rem 1.5rem;
    }

    .brevity-page .confirmation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .brevity-page .confirm-btn, 
    .brevity-page .cancel-btn {
        width: 100%;
        max-width: 200px;
    }

    /* ThreatMesh mobile */
    .logo-section {
        gap: 0.75rem;
    }

    .logo-divider {
        height: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature-section {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        margin: 1.5rem 0;
        padding: 2.5rem 2rem;
    }

    /* Terms mobile */
    .terms-page {
        margin: 20px auto 0;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 1.5rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .brevity-page .logo-section {
        gap: 0.75rem;
    }
    
    .brevity-page .logo-divider, .logo-divider {
        height: 30px;
    }
    
    .brevity-page .hero-title {
        font-size: 1.1rem;
    }
    
    .brevity-page .hero-subtitle {
        font-size: 0.9rem;
    }
}