/* ============================================
   CODELANE - Premium Engineering Landing Page
   A stealth-mode application security startup
   ============================================ */

/* CSS Variables - Design System (Light Theme) */
:root {
    /* Primary Colors - Clean Engineering Light Palette */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;

    /* Accent Colors - Retained Electric Cyber Tones for Branding */
    --color-accent-cyan: #0ea5e9;
    /* Slightly darker for better contrast on white */
    --color-accent-blue: #2563eb;
    --color-accent-purple: #7c3aed;
    --color-accent-green: #059669;
    /* Darker emerald */
    --color-accent-magenta: #db2777;

    /* Text Colors - High Contrast Slate */
    --color-text-primary: #0f172a;
    /* Slate 900 */
    --color-text-secondary: #475569;
    /* Slate 600 */
    --color-text-muted: #94a3b8;
    /* Slate 400 */

    /* Glass Effect - Frosted Light */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(14, 165, 233, 0.2);
    --glass-shadow: 0 8px 32px rgba(148, 163, 184, 0.2);

    /* Gradients */
    --gradient-cyber: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #00f2fe 100%);
    --gradient-remedy: linear-gradient(135deg, #10b981 0%, #0ea5e9 100%);
    --gradient-light: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    /* Maintain var name for compatibility but mapped to light */
}

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

/* Selection styling */
::selection {
    background: var(--color-accent-cyan);
    color: white;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-light);
    color: var(--color-text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 2rem;
    /* Add padding to prevent cut-off on mobile/small screens */
}

/* Animated Engineering Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

/* Floating Orbs Effect - Adjusted for Light Mode */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes orbFloat {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }

    33% {
        background-position: 30% 70%, 70% 30%, 60% 40%;
    }

    66% {
        background-position: 70% 30%, 30% 70%, 40% 60%;
    }
}

/* Main Container */
.container {
    text-align: center;
    max-width: 900px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 10;
}

/* Container glow effect */
.container::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center,
            rgba(14, 165, 233, 0.08) 0%,
            rgba(37, 99, 235, 0.04) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Logo Styling */
.logo {
    max-width: 100%;
    height: auto;
    max-height: 140px;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* Adding a slight darkness filter for potential white logo visibility on light bg */
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.3));
    position: relative;
}

.logo:hover {
    transform: translateY(-6px) scale(1.05);
    filter: drop-shadow(0 0 40px rgba(14, 165, 233, 0.4));
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    padding: 0.75rem 2rem;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Main Catchphrase */
.catchphrase {
    font-family: 'Space Grotesk', sans-serif;
    /* Responsive font: scales from 1.35rem to 2.6rem based on viewport */
    font-size: clamp(1.35rem, 5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,
            #0f172a 0%,
            #2563eb 50%,
            #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    /* Soft shadow for depth, not glow */
    text-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
}

/* Subtitle */
.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    letter-spacing: 0.01em;
}

.subtitle strong {
    color: var(--color-accent-blue);
    font-weight: 600;
    position: relative;
}

.subtitle strong::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--gradient-cyber);
    opacity: 0.6;
}

/* ============================================
   Investigation Terminal - Keeps Dark Theme for Contrast
   ============================================ */
.investigation-terminal {
    background: linear-gradient(180deg,
            rgba(15, 23, 42, 0.98) 0%,
            /* Dark Slate 900 */
            rgba(2, 6, 23, 0.99) 100%);
    /* Slate 950 */
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px rgba(14, 165, 233, 0.05),
        0 25px 50px rgba(148, 163, 184, 0.3),
        /* Softer colored shadow */
        0 0 60px rgba(14, 165, 233, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin: 0 auto 4rem;
    max-width: 700px;
    overflow: hidden;
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
    animation: terminalEntrance 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    color: #f8fafc;
    /* Keep terminal text light */
}

/* Terminal Internal Variables Override */
.investigation-terminal {
    --color-text-primary: #f8fafc;
    /* Force light text inside terminal */
}

/* Terminal glow effect */
.investigation-terminal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center,
            rgba(14, 165, 233, 0.05) 0%,
            transparent 50%);
    pointer-events: none;
    animation: terminalGlow 4s ease-in-out infinite;
}

@keyframes terminalGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes terminalEntrance {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.terminal-header {
    background: linear-gradient(180deg,
            rgba(30, 41, 59, 0.8) 0%,
            rgba(15, 23, 42, 0.9) 100%);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    position: relative;
    z-index: 5;
}

.terminal-controls {
    display: flex;
    gap: 10px;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.control.close {
    background: #ff5f56;
    box-shadow: 0 0 8px rgba(255, 95, 86, 0.4);
}

.control.minimize {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.3);
}

.control.maximize {
    background: #27c93f;
    box-shadow: 0 0 10px rgba(39, 201, 63, 0.3);
}

.terminal-title {
    color: #94a3b8;
    font-size: 12px;
    margin-left: 20px;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.terminal-body {
    padding: 24px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(14, 165, 233, 0.02) 100%);
}

.terminal-line {
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
    /* Light text for terminal lines */
    opacity: 0.9;
}

.terminal-line.typing {
    border-right: 2px solid var(--color-accent-cyan);
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 1.5s steps(30, end) forwards, blink 0.8s step-end infinite;
    color: var(--color-accent-cyan);
}

.terminal-line.hidden {
    opacity: 0;
    transform: translateX(-10px);
}

.terminal-line.reveal {
    animation: lineReveal 0.5s ease-out forwards;
}

.terminal-line.progress-bar.fade-out {
    opacity: 0 !important;
    transform: translateY(-5px);
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    line-height: 0;
    transition: opacity 0.3s ease-out, max-height 0.3s ease-out 0.1s, margin 0.2s ease-out 0.2s;
}

.terminal-line.progress-bar.gone {
    display: none;
}

.terminal-line.highlight {
    color: var(--color-accent-green);
    font-weight: 600;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.progress-fill {
    color: var(--color-accent-cyan);
}

.progress-percent {
    color: #94a3b8;
    margin-left: 0.5rem;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--color-accent-cyan);
    }
}

@keyframes lineReveal {
    to {
        opacity: 0.9;
        transform: translateX(0);
    }
}

/* ============================================
   Email Form - Glassmorphism Light Style
   ============================================ */
.notification-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.email-input {
    flex: 1;
    min-width: 300px;
    padding: 1.25rem 1.75rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    color: var(--color-text-primary);
    box-shadow:
        0 4px 24px rgba(148, 163, 184, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.email-input::placeholder {
    color: var(--color-text-muted);
    font-weight: 400;
}

.email-input:hover {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow:
        0 8px 32px rgba(148, 163, 184, 0.15),
        0 0 20px rgba(14, 165, 233, 0.1);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow:
        0 0 0 4px rgba(14, 165, 233, 0.1),
        0 8px 32px rgba(148, 163, 184, 0.2),
        0 0 40px rgba(14, 165, 233, 0.1);
}

/* Notify Button - Premium Gradient */
.notify-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(14, 165, 233, 0.25),
        0 0 15px rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.notify-btn .btn-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.notify-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.notify-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%);
    box-shadow:
        0 15px 40px rgba(14, 165, 233, 0.35),
        0 0 30px rgba(14, 165, 233, 0.2);
}

.notify-btn:hover::before {
    left: 100%;
}

.notify-btn:hover .btn-icon {
    transform: scale(1.15) rotate(10deg);
}

.notify-btn:active {
    transform: translateY(-1px) scale(1.01);
}

.notify-btn:focus {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(14, 165, 233, 0.25),
        0 10px 40px rgba(14, 165, 233, 0.3);
}

/* ============================================
   Social Links - Sleek Light Design
   ============================================ */
.social-links {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.1);
}

.social-link::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: var(--gradient-cyber);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow:
        0 10px 30px rgba(14, 165, 233, 0.25),
        0 0 20px rgba(14, 165, 233, 0.15);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:active {
    transform: translateY(-2px) scale(1.05);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-info {
    margin-top: 2.5rem;
    text-align: center;
}

.contact-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-btn .btn-icon {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.contact-btn:hover {
    color: var(--color-accent-cyan);
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(148, 163, 184, 0.15);
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover .btn-icon {
    transform: scale(1.1);
    opacity: 1;
}

/* ============================================
   Modal Styles - Premium Glass Light
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    /* Semi-transparent dark overlay for contrast */
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8fafc 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 520px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow:
        0 0 0 1px rgba(14, 165, 233, 0.05),
        0 30px 90px rgba(148, 163, 184, 0.4),
        0 0 80px rgba(14, 165, 233, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header .title-icon {
    width: 26px;
    height: 26px;
    color: var(--color-accent-cyan);
    transition: all 0.3s ease;
}

.modal .close {
    color: var(--color-text-muted);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.modal .close:hover {
    color: var(--color-accent-cyan);
    background: rgba(14, 165, 233, 0.1);
}

.modal-header h2:hover .title-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
}

/* Contact Form */
.contact-form {
    padding: 2rem;
}

/* Ensure inner form elements use light theme variables */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.input-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon .icon {
    position: absolute;
    left: 1rem;
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: color 0.3s ease;
}

.contact-form input,
.contact-form textarea {
    padding-left: 3rem;
    /* Space for the icon */
}

.contact-form input:focus+.icon,
.contact-form input:focus~.icon,
.input-icon:focus-within .icon {
    color: var(--color-accent-cyan);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.submit-btn .btn-icon {
    width: 18px;
    height: 18px;
}

/* ============================================
   Responsive Design - Mobile Refinements
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-bottom: 1rem;
    }

    /* Container Adjustments */
    .container {
        padding: 2rem 1.25rem;
        width: 100%;
    }

    /* Typography Scaling */
    .catchphrase {
        margin-bottom: 1.25rem;
        line-height: 1.2;
        /* Font size handled by clamp() in base style */
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    /* Badge Alignment */
    .coming-soon {
        padding: 0.5rem 1.5rem;
        font-size: 0.7rem;
        margin-bottom: 1rem;
    }

    /* Logo Sizing */
    .logo {
        max-height: 90px;
        margin-bottom: 1.5rem;
    }

    /* Terminal Mobile Layout */
    .investigation-terminal {
        margin: 0 0 3rem;
        width: 100%;
        border-radius: 12px;
        font-size: 13px;
    }

    .terminal-body {
        padding: 18px 16px;
        min-height: 200px;
        /* Taller on mobile for better scrolling if needed */
        overflow-x: auto;
        gap: 12px;
    }

    .terminal-line {
        font-size: 13px;
        line-height: 1.7;
        white-space: normal;
        /* Normal wrapping on mobile for clean text flow */
        word-break: break-word;
    }

    .terminal-header {
        padding: 12px 16px;
    }

    .terminal-title {
        font-size: 11px;
        margin-left: 12px;
    }

    /* Form Stacking */
    .notification-form {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .email-input {
        min-width: 100%;
        width: 100%;
        padding: 1rem;
    }

    .notify-btn {
        width: auto;
        min-width: 220px;
        align-self: center;
        justify-content: center;
        padding: 1rem 2rem;
    }

    /* Social Links Sizing */
    .social-links {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    /* Modal Mobile Adjustments */
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: none;
    }

    .modal-header {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}