@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #060814;
    --bg-card: rgba(13, 18, 36, 0.7);
    --bg-card-hover: rgba(20, 27, 54, 0.85);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-color-glow: rgba(248, 152, 41, 0.25);
    
    --color-primary: #F89829; /* Tech Orange */
    --color-primary-glow: rgba(248, 152, 41, 0.4);
    --color-secondary: #f43f5e; /* Cyber Crimson */
    --color-secondary-glow: rgba(244, 63, 94, 0.4);
    
    --color-danger: #f43f5e;
    --color-success: #10b981;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --font-sans: 'Outfit', sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    --shadow-glow-primary: 0 0 20px var(--color-primary-glow);
    --shadow-glow-secondary: 0 0 20px var(--color-secondary-glow);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Cyber Grid & Radial Glows */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(248, 152, 41, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.glow-backdrop-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
    box-shadow: var(--shadow-glow-primary);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-primary) 70%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mono {
    font-family: var(--font-mono);
}

/* App Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 8, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo svg, .logo img {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
    transition: var(--transition-smooth);
}

.logo:hover img, .logo:hover svg {
    transform: rotate(5deg) scale(1.05);
}

.logo span {
    letter-spacing: -0.03em;
}

.logo span span {
    color: var(--color-primary);
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.logo-subtext {
    font-size: 0.58rem;
    color: var(--text-muted);
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: -0.1rem;
    padding-left: 0.1rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

nav a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px var(--color-primary-glow);
}

.btn-header {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-header:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
}

/* Hero Section */
.hero {
    padding: 7rem 0 5rem 0;
    text-align: center;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--border-color-glow);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05);
}

.badge .dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--color-primary); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero p.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem auto;
}

/* Waitlist Form Styling */
.waitlist-form-container {
    max-width: 550px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 10;
}

.waitlist-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(13, 18, 36, 0.6);
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.waitlist-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.waitlist-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #040810;
    border: none;
    outline: none;
    padding: 0.8rem 1.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
}

.waitlist-form-container .form-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.waitlist-form-container .form-footer span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.waitlist-form-container .form-footer svg {
    color: var(--color-primary);
}

/* Features Grid Section */
.features {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

/* Cyber tech brackets matching the logo's corner shield markers */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    border-top-left-radius: 2px;
    opacity: 0.25;
    transition: var(--transition-smooth);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    border-bottom-right-radius: 2px;
    opacity: 0.25;
    transition: var(--transition-smooth);
}

.feature-card:hover::before {
    opacity: 1;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 4px var(--color-primary-glow));
}

.feature-card:hover::after {
    opacity: 1;
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 4px var(--color-secondary-glow));
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(16, 185, 129, 0.03);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--border-color-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: #040810;
    box-shadow: var(--shadow-glow-primary);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Terminal Security Dashboard Preview */
.dashboard-preview {
    padding: 5rem 0;
}

.dashboard-wrapper {
    background: #080b18;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
}

/* Top-left tech bracket */
.dashboard-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 24px;
    height: 24px;
    border-top: 2px solid var(--color-primary);
    border-left: 2px solid var(--color-primary);
    border-top-left-radius: 8px;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(0 0 4px var(--color-primary-glow));
}

/* Bottom-right tech bracket */
.dashboard-wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    border-bottom-right-radius: 8px;
    pointer-events: none;
    z-index: 5;
    filter: drop-shadow(0 0 4px var(--color-secondary-glow));
}

.dashboard-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.window-dots {
    display: flex;
    gap: 0.45rem;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

.dashboard-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dashboard-body {
    display: grid;
    grid-template-columns: 4fr 3.5fr 3fr;
    height: 420px;
}

@media (max-width: 1024px) {
    .dashboard-body {
        grid-template-columns: 1fr;
        height: auto;
    }
    .terminal-console {
        border-bottom-left-radius: 0;
        height: 300px;
    }
}

.terminal-console {
    background: #04060e;
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #cbd5e1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom-left-radius: 7px;
}

.terminal-line {
    display: flex;
    gap: 0.5rem;
}

.terminal-prompt {
    color: var(--color-primary);
    user-select: none;
}

.terminal-output {
    color: var(--text-secondary);
}

.terminal-output.success {
    color: var(--color-primary);
}

.terminal-output.warning {
    color: #eab308;
}

.metrics-panel {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.005);
    border-bottom-right-radius: 7px;
}

@media (max-width: 1024px) {
    .metrics-panel {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
    }
}

/* Traffic Monitor Column styling */
.traffic-monitor {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.002);
}

@media (max-width: 1024px) {
    .traffic-monitor {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        height: 320px;
    }
}

.traffic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.5rem;
}

.pulse-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
}

.pulse-indicator.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.pulse-indicator.red {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
    animation: flash-red 1s infinite alternate;
}

@keyframes flash-red {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.traffic-map {
    position: relative;
    height: 220px;
    margin: 0.5rem 0;
}

/* Tenant Nodes */
.tenant-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 18, 36, 0.8);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    z-index: 10;
    transition: var(--transition-smooth);
}

.tenant-node .node-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--color-primary-glow);
}

.tenant-node.breach {
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.15);
}

.tenant-node.breach .node-dot {
    background: var(--color-secondary);
    box-shadow: 0 0 6px var(--color-secondary-glow);
    animation: blink-node-red 0.5s infinite;
}

@keyframes blink-node-red {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.tenant-node .node-id {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.tenant-node .node-type {
    font-size: 0.6rem;
    color: var(--text-muted);
}

#node-t1 { top: 10%; left: 5%; }
#node-t2 { top: 10%; right: 5%; }
#node-t3 { bottom: 8%; left: 50%; transform: translateX(-50%); }

/* Hypervisor Center Node */
.central-shield {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(248, 152, 41, 0.05);
    border: 1px dashed var(--color-primary);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    z-index: 9;
    width: 65px;
    height: 65px;
    box-shadow: 0 0 15px rgba(248, 152, 41, 0.08);
}

.central-shield svg {
    margin-bottom: 2px;
}

.shield-label {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    text-align: center;
}

/* Connection Lines */
.connection-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.connection-line.l1-to-shield {
    top: 25%;
    left: 20%;
    width: 32%;
    height: 1px;
    background: linear-gradient(90deg, rgba(248, 152, 41, 0.2), rgba(255, 255, 255, 0.03));
    transform: rotate(26deg);
    transform-origin: top left;
}

.connection-line.l2-to-shield {
    top: 25%;
    right: 20%;
    width: 32%;
    height: 1px;
    background: linear-gradient(270deg, rgba(248, 152, 41, 0.2), rgba(255, 255, 255, 0.03));
    transform: rotate(-26deg);
    transform-origin: top right;
}

.connection-line.l3-to-shield {
    top: 45%;
    left: 50%;
    width: 1px;
    height: 25%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(248, 152, 41, 0.2));
    transform: translateX(-50%);
}

/* Direct Lateral Traffic Connection */
.connection-line.lateral-leak {
    top: 20%;
    left: 25%;
    right: 25%;
    height: 2px;
    background: rgba(244, 63, 94, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.3);
}

.connection-line.lateral-leak.active {
    opacity: 1;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary), var(--color-secondary));
    background-size: 200% 100%;
    animation: flow-beam 1.5s linear infinite;
}

@keyframes flow-beam {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Alert Box */
.traffic-alert {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    text-align: center;
    transition: var(--transition-smooth);
}

.traffic-alert.breach {
    background: rgba(244, 63, 94, 0.06);
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.05);
}

.alert-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.traffic-alert.breach .alert-title {
    color: var(--color-secondary);
}

.alert-desc {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.metric-item {
    margin-bottom: 1.5rem;
}

.metric-item:last-child {
    margin-bottom: 0;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.metric-val {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-val span {
    color: var(--color-primary);
}

.progress-bar-bg {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-bar-fill {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    height: 100%;
    border-radius: 9999px;
    width: 82%;
    box-shadow: 0 0 10px var(--color-primary-glow);
}

/* FAQ Accordion Section */
.faq {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active {
    border-color: var(--border-color-glow);
    background: rgba(13, 18, 36, 0.85);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.faq-question svg {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background: #03050c;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-links h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Access Key Button (Admin Modal Entry) */
.admin-trigger {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--text-muted);
    opacity: 0.4;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.admin-trigger:hover {
    color: var(--color-primary);
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--color-primary-glow));
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.toast {
    background: rgba(13, 18, 36, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    transform: translateY(100px);
    opacity: 0;
    animation: toast-fade-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.success {
    border-left: 3px solid var(--color-success);
}

.toast.danger {
    border-left: 3px solid var(--color-danger);
}

.toast.success svg { color: var(--color-success); }
.toast.danger svg { color: var(--color-danger); }

@keyframes toast-fade-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast.fade-out {
    animation: toast-fade-out 0.3s forwards;
}

@keyframes toast-fade-out {
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

/* Admin Dashboard Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    background: #0a0e1c;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    max-width: 680px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(248, 152, 41, 0.05);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h3 svg {
    color: var(--color-primary);
}

.btn-close {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.admin-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.search-wrapper {
    flex: 1;
    position: relative;
}

.search-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.6rem 1rem 0.6rem 2.25rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.search-wrapper input:focus {
    border-color: var(--color-primary);
}

.search-wrapper svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.btn-export {
    background: rgba(248, 152, 41, 0.08);
    border: 1px solid var(--border-color-glow);
    color: var(--color-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-export:hover:not(:disabled) {
    background: var(--color-primary);
    color: #040810;
    box-shadow: var(--shadow-glow-primary);
}

.btn-export:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.waitlist-table-wrapper {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.waitlist-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}

.waitlist-table th {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.waitlist-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.waitlist-table tr:last-child td {
    border-bottom: none;
}

.waitlist-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.no-data {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.no-data svg {
    margin-bottom: 1rem;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.25rem;
    }
    
    header {
        padding: 1rem 0;
    }
    
    nav {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.85rem;
    }
    
    .btn-header {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 5rem 0 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p.subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .waitlist-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.75rem;
    }
    
    .waitlist-form input[type="email"] {
        background: rgba(13, 18, 36, 0.6);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        width: 100%;
    }
    
    .waitlist-form input[type="email"]:focus {
        border-color: var(--color-primary);
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.9rem;
        border-radius: 10px;
    }
    
    .admin-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-export {
        justify-content: center;
    }
}

/* Dashboard Action Buttons */
.metrics-panel button.btn-primary,
.metrics-panel button.btn-header {
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
    height: 34px;
    border-radius: 4px !important;
    font-family: var(--font-mono);
}

.metrics-panel button.btn-header:hover {
    background: rgba(248, 152, 41, 0.08);
    border-color: var(--color-primary);
}
