:root {
    /* Executive Palette: Titanium & Midnight */
    --bg-void: #0B0C10;
    /* Almost Black */
    --bg-slate: #1F2833;
    /* Deep Slate Blue */

    --text-primary: #FFFFFFFF;
    /* Pure White */
    --text-muted: #C5C6C7;
    /* Light Platinum */

    --accent-gold: #D4AF37;
    /* Metallic Gold (Subtle) */
    --accent-teal: #45A29E;
    /* Muted Cyan (Tech accent) */
    --accent-platinum: #E2E8F0;

    --glass-surface: rgba(31, 40, 51, 0.4);
    /* Dark glass */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --easing: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-void);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Architecture: Spotlight & Mesh */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.75" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.07"/%3E%3C/svg%3E');
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    /* Texture on top of gradients */
}

/* The "Executive Aura" - A deep, rotating gradient mesh */
.blob-cont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(31, 40, 51, 0.8) 0%, transparent 60%),
        radial-gradient(circle at 85% 30%, rgba(69, 162, 158, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, #0B0C10 0%, #171A21 100%);
}

/* Typography & Layout */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    /* Slightly smaller to fit one line */
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    background: linear-gradient(to bottom right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    /* Force single line if wide enough, otherwise clamp handles it */
}

/* Logo Design - Monolith Style */
.brand-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    /* Cleaner, wider */
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.brand-logo:hover {
    border-color: var(--accent-teal);
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2.5rem 0;
    background: transparent;
    display: none;
    /* Hide header completely */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    /* Logo stays left/top usually for corporate */
}

/* Main Content */
main {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 900px;
    animation: fadeUp 1.5s var(--easing) forwards;
}

.eyebrow {
    display: block;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tagline {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
}

.tagline strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Premium Pills - "Metallic/Glass" */
.expertise-pills {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-pill {
    display: flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.4s var(--easing);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 9999px;
    /* Fully rounded */
}

.social-pill:hover {
    background: rgba(69, 162, 158, 0.1);
    border-color: var(--accent-teal);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Footer */
.glass-footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: auto;
    position: relative;
    z-index: 10;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.copyright {
    margin-top: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    opacity: 0.5;
}

/* Bio Section */
.bio-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--bg-void), var(--bg-slate));
    position: relative;
    z-index: 10;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: left;
    /* Editorial feel */
}

.bio-content p {
    margin-bottom: 2rem;
}

.bio-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Bio Button Highlight */
.bio-trigger {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-platinum);
    color: var(--text-primary);
    font-weight: 700;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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