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

:root {
    /* Colors - High Contrast Premium Palette */
    --bg: #0b0e14;
    --sidebar: #11141d;
    --card: #161b26;
    --primary: #4f6ef7;
    --primary-glow: rgba(79, 110, 247, 0.4);
    --accent: #10b981;
    --border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Typography Scale */
    --fs-xs: 11px;
    --fs-sm: 12px;
    --fs-base: 14px;
    --fs-md: 16px;
    --fs-lg: 24px;
    --fs-xl: 32px;

    /* Font Weights */
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extra: 800;

    /* Misc */
    --accent-gradient: linear-gradient(135deg, #4f6ef7 0%, #7c4dff 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background-color: var(--bg); 
    color: var(--text-main); 
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* Typography Helpers */
.font-outfit { font-family: 'Outfit', sans-serif; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }

/* Components: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-base);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
    padding: 6px 12px;
    font-size: var(--fs-sm);
}

/* Components: Cards */
.card, .stat-card, .metric-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

.card::after, .stat-card::after, .metric-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.stat-card:hover, .metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 110, 247, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.stat-header, .metric-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: var(--fs-xs);
    text-transform: uppercase;
    font-weight: var(--fw-bold);
    letter-spacing: 1.5px;
}

.stat-value, .metric-value {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

.stat-sub, .metric-sub { 
    font-size: var(--fs-xs); 
    color: var(--text-muted); 
    margin-top: 6px; 
    font-weight: var(--fw-medium); 
}

/* Section Titles */
.section-title { 
    font-size: var(--fs-xs); 
    font-weight: var(--fw-bold); 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.category-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}
.category-card:hover {
    border-color: rgba(79, 110, 247, 0.3);
    transform: translateY(-2px);
}

.highlight-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.highlight-val {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.highlight-lbl {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Icon Utilities */
.icon-xs { width: 12px; height: 12px; }
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 16px; height: 16px; }
.icon-lg { width: 20px; height: 20px; }

/* Mini Cards */
.mini-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    transition: var(--transition);
}
.mini-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.mini-title { font-size: 10px; color: var(--text-dim); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.mini-val { font-size: 24px; font-weight: 800; font-family: 'Outfit', sans-serif; color: #fff; line-height: 1.1; }
.mini-sub { font-size: 10px; color: var(--text-muted); font-weight: 600; margin-top: 4px; }

/* Data Grid Table */
.data-grid-container {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.data-grid-header {
    background: rgba(255,255,255,0.03);
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.data-cell {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    border-right: 1px solid rgba(255,255,255,0.03);
}
.data-cell:nth-child(2n) { border-right: none; }
.data-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.data-value { font-size: 12px; font-weight: 700; color: #fff; }

.stat-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.stat-row:last-child { border-bottom: none; }
.stat-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
    padding-right: 12px;
}
.stat-value {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: #fff;
    text-align: right;
    line-height: 1.2;
}

/* Grids */
.stats-grid, .metrics-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 24px; 
    margin-bottom: 40px; 
}

/* Layouts */
.main-content { flex-grow: 1; overflow-y: auto; padding: 40px; }
.header-admin { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }

/* Sidebar */
.sidebar { 
    width: 280px; 
    background-color: var(--sidebar); 
    border-right: 1px solid var(--border); 
    display: flex; 
    flex-direction: column; 
    padding: 32px 24px; 
    flex-shrink: 0; 
}
.sidebar-header { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 48px; 
    font-weight: var(--fw-extra); 
    font-size: var(--fs-lg); 
    font-family: 'Outfit', sans-serif; 
    color: #fff; 
    letter-spacing: -0.5px;
}
.sidebar-header i { color: var(--primary); }

.nav-link { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 14px 18px; 
    border-radius: var(--radius-md); 
    color: var(--text-muted); 
    text-decoration: none; 
    font-size: var(--fs-base); 
    font-weight: var(--fw-semibold); 
    margin-bottom: 6px; 
    transition: var(--transition); 
}
.nav-link i { width: 18px; height: 18px; color: var(--text-dim); transition: var(--transition); }
.nav-link:hover { background-color: rgba(255,255,255,0.03); color: #fff; }
.nav-link:hover i { color: var(--primary); }
.nav-link.active { background: linear-gradient(90deg, var(--primary) 0%, #7c4dff 100%); color: white; box-shadow: 0 4px 12px var(--primary-glow); }
.nav-link.active i { color: white; }
.badge {
    padding: 4px 10px;
    border-radius: 99px;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
}

.badge-active { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-inactive { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

.tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
}

/* Utility Classes */
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-column { display: flex; flex-direction: column; }
.gap-xs { gap: 4px; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

.text-xs { font-size: var(--fs-xs); }
.text-sm { font-size: var(--fs-sm); }
.text-base { font-size: var(--fs-base); }
.text-lg { font-size: var(--fs-lg); }
.text-xl { font-size: var(--fs-xl); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-bold { font-weight: var(--fw-bold); }
.font-semibold { font-weight: var(--fw-semibold); }
.font-medium { font-weight: var(--fw-medium); }

.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }
.mb-xs { margin-bottom: 4px; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }

.p-md { padding: 16px; }
.p-xs { padding: 6px; }
.p-lg { padding: 24px; }
.p-xl { padding: 48px; }

.bg-glass { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); }
.border-md { border: 1px solid var(--border); border-radius: var(--radius-md); }
.spacing-1 { letter-spacing: 1px; }
.capitalize { text-transform: capitalize; }
.uppercase { text-transform: uppercase; }
.font-extra { font-weight: var(--fw-extra); }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* Layout Systems */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-8 { grid-template-columns: repeat(8, 1fr); }

@media (max-width: 1400px) { .grid-8 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1200px) { .grid-5, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .grid-8, .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* Refined Data Table */
.table-section { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.border-bottom { border-bottom: 1px solid var(--border); }
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-sm);
}
.data-table tr { border-bottom: 1px solid var(--border); }
.data-table th { padding: 16px 20px; background: rgba(255,255,255,0.02); text-align: left; color: var(--text-muted); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 1px; font-size: 10px; }
.data-table td { padding: 16px 20px; vertical-align: middle; border-right: 1px solid rgba(255,255,255,0.02); }
.data-table tr:last-child { border-bottom: none; }
.data-table td:last-child { border-right: none; }

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
    font-weight: var(--fw-medium);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    color: white;
    font-size: var(--fs-base);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
}

/* Landing Page Specifics */
.hero { padding: 100px 0; text-align: center; position: relative; }
.hero h1 { font-size: 56px; font-weight: 800; font-family: 'Outfit', sans-serif; margin-bottom: 24px; line-height: 1.1; letter-spacing: -2px; }
.hero p { font-size: 20px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }
.hero::before {
    content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(79, 110, 247, 0.1) 0%, rgba(15, 17, 23, 0) 70%);
    z-index: -1;
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; padding: 80px 0; }
.feature-card { background: var(--card); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); }
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.feature-card i { font-size: var(--fs-xl); color: var(--primary); margin-bottom: 24px; display: block; }
.feature-card h3 { margin-bottom: 12px; font-size: 20px; font-family: 'Outfit', sans-serif; font-weight: 700; }

/* Removed duplicate step styles */

/* Auth Pages Specifics */
.auth-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 20px; }
.auth-card { background-color: var(--card); padding: 48px; border-radius: var(--radius-lg); border: 1px solid var(--border); width: 100%; max-width: 440px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.auth-card h1 { margin-bottom: 8px; font-size: var(--fs-xl); color: #fff; font-family: 'Outfit', sans-serif; font-weight: var(--fw-extra); letter-spacing: -1px; }
.auth-error { background-color: rgba(239, 68, 68, 0.1); color: var(--danger); padding: 16px; border-radius: var(--radius-md); margin-bottom: 24px; font-size: var(--fs-base); text-align: left; border: 1px solid rgba(239, 68, 68, 0.2); }
.auth-success { background-color: rgba(16, 185, 129, 0.1); color: var(--success); padding: 16px; border-radius: var(--radius-md); margin-bottom: 24px; font-size: var(--fs-base); text-align: left; border: 1px solid rgba(16, 185, 129, 0.2); }
.btn-google { width: 100%; background-color: #fff; color: #1f2937; padding: 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; border: 1px solid #d1d5db; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); margin-top: 24px; text-decoration: none; gap: 10px; }
.btn-google:hover { background-color: #f3f4f6; transform: translateY(-1px); }

/* Additional Utilities */
.py-md { padding-top: 16px; padding-bottom: 16px; }
.py-lg { padding-top: 24px; padding-bottom: 24px; }
.px-md { padding-left: 16px; padding-right: 16px; }
.px-lg { padding-left: 24px; padding-right: 24px; }

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* User Profile & Detail Specifics */
.profile-hero {
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.1) 0%, rgba(124, 77, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.profile-main { display: flex; align-items: center; gap: 24px; }
.avatar-large {
    width: 80px; height: 80px;
    background: var(--accent-gradient);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 800; color: white;
    box-shadow: 0 10px 30px rgba(79, 110, 247, 0.3);
}
.user-meta h2 { font-size: var(--fs-lg); font-family: 'Outfit', sans-serif; margin-bottom: 4px; }
.user-meta p { color: var(--text-muted); font-size: var(--fs-base); }

.btn-back { display: flex; align-items: center; gap: 8px; color: var(--text-muted); text-decoration: none; font-size: var(--fs-sm); font-weight: 600; margin-bottom: 24px; transition: var(--transition); }
.btn-back:hover { color: var(--primary); transform: translateX(-4px); }

.progress-container { height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; margin: 8px 0; }
.progress-bar { height: 100%; background: var(--primary); box-shadow: 0 0 8px var(--primary-glow); }

.badge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 16px; }
.badge-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 12px; background: rgba(255,255,255,0.02); border-radius: var(--radius-md); border: 1px solid transparent; transition: var(--transition); }
.badge-item:hover { background: rgba(255,255,255,0.05); border-color: var(--border); transform: translateY(-2px); }
.badge-icon { width: 48px; height: 48px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }

.device-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,0.01); transition: var(--transition); }
.device-card:hover { border-color: var(--primary); background: rgba(255,255,255,0.03); }

.console-box { margin-top: 60px; background: #0d0f14; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.console-header { background: rgba(255,255,255,0.03); padding: 12px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.console-box pre { padding: 24px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--success); overflow-x: auto; max-height: 500px; line-height: 1.5; }

/* Admin & Modal Specifics */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); align-items: center; justify-content: center; z-index: 1000; backdrop-filter: blur(5px); }
.modal-content { background: var(--card); border: 1px solid var(--border); padding: 32px; border-radius: var(--radius-lg); width: 100%; max-width: 500px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

.page-section { display: none; }
.page-section.active { display: block; }

.log-row td { font-family: 'JetBrains Mono', monospace; font-size: 11px; padding: 6px 20px; }
.log-row:hover { background: rgba(255,255,255,0.02); }

/* Dashboard Specifics */
.mcp-banner {
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.08) 0%, rgba(124, 77, 255, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.mcp-url-box {
    background: #000;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--primary);
}
.empty-state {
    padding: 100px 40px;
    text-align: center;
    background: var(--card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}

/* Tabs & UI Utils */
.tabs { display: flex; gap: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--border); }
.tab { padding: 12px 0; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid transparent; transition: var(--transition); }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.hidden { display: none !important; }

/* Landing Page & Navigation */
.nav-landing { display: flex; justify-content: space-between; align-items: center; padding: 32px 0; }
.logo-landing { font-size: 24px; font-weight: 800; font-family: 'Outfit', sans-serif; color: white; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.logo-landing i { color: var(--primary); }
.nav-links-landing { display: flex; gap: 32px; align-items: center; }
.nav-links-landing a { text-decoration: none; color: var(--text-muted); font-weight: 600; font-size: 14px; transition: var(--transition); }
.nav-links-landing a:hover { color: white; }

.hero-landing { padding: 120px 0 80px; display: grid; grid-template-columns: 1fr; align-items: center; gap: 40px; text-align: center; }
.hero-content { display: flex; flex-direction: column; align-items: center; }
.hero-content h1 { font-size: 84px; font-weight: 800; font-family: 'Outfit', sans-serif; margin-bottom: 32px; line-height: 1; letter-spacing: -4px; }
.hero-content p { font-size: 24px; color: var(--text-muted); margin-bottom: 48px; line-height: 1.4; max-width: 700px; }
.cta-group { display: flex; gap: 16px; justify-content: center; }

.bg-glass-dark { background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 900px; margin: 0 auto; }

.hero-visual { display: none; }
.dashboard-mockup { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 40px 100px -20px rgba(0,0,0,0.8); border: 1px solid var(--border); transition: var(--transition); }
.dashboard-mockup:hover { transform: translateY(-10px) rotate(-1deg); }

.feature-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.05); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--primary); }
.security-strip { margin: 60px 0; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 40px; }
.step-card { background: var(--card); border: 1px solid var(--border); padding: 40px; border-radius: var(--radius-lg); transition: var(--transition); text-align: left; }
.step-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-num { width: 36px; height: 36px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin-bottom: 24px; }
.step-card h3 { font-family: 'Outfit', sans-serif; font-size: 20px; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 48px; font-family: 'Outfit', sans-serif; margin-bottom: 16px; letter-spacing: -1px; }
.section-header p { color: var(--text-muted); font-size: 20px; max-width: 700px; margin: 0 auto; }

.footer-landing { padding: 80px 0 40px; text-align: center; border-top: 1px solid var(--border); margin-top: 100px; color: var(--text-dim); font-size: 14px; }
