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

:root {
    /* Colors - Deep Premium Palette */
    --bg-dark: #05070a;
    --bg-card: rgba(13, 17, 23, 0.7);
    --border-dim: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(20, 184, 166, 0.3);

    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --primary: #14b8a6;
    /* TrustPlane Seafoam */
    --primary-glow: rgba(20, 184, 166, 0.4);
    --primary-dim: rgba(20, 184, 166, 0.1);

    --accent: #0ea5e9;
    /* Light blue accent */
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;

    /* Layout */
    --nav-height: 72px;
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;

    /* Effects */
    --glass: blur(16px) saturate(180%);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.premium-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* --- Components --- */

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    border-color: var(--border-hover);
}

.btn-premium {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dim);
    color: var(--text-primary);
    backdrop-filter: var(--glass);
}

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

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Helpers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Navbar specific */
nav {
    height: var(--nav-height);
    border-bottom: 1px solid var(--border-dim);
    background: rgba(5, 7, 10, 0.95);
    /* Solid-ish background for performance */
    backdrop-filter: none;
    /* Removed for scroll performance */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

main {
    transform: translateZ(0);
    /* Force GPU acceleration */
    will-change: transform;
}