/* --- Root Variables for Black & Gold Theme (KEEPING YOUR COLORS) --- */
:root {
    --premium-gold: #fbbf24;
    --deep-dark: #020617;
    --slate-gray: #1e293b;
    --pure-white: #ffffff;
    --dim-text: #94a3b8;
    --transition: 0.3s ease-in-out;
}

/* --- Global Mobile Safety --- */
* {
    box-sizing: border-box; /* Crucial: Prevents padding from pushing content out */
}

body, html {
    overflow-x: hidden; /* Prevents horizontal scroll */
    width: 100%;
}

.hire-page { 
    font-family: 'Inter', system-ui, sans-serif; 
    background: var(--deep-dark); 
    color: var(--pure-white);
    line-height: 1.6;
    width: 100%;
}

/* --- Hero Section --- */
.hero-executive {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #0f172a, #020617);
    border-bottom: 2px solid var(--premium-gold);
    display: flex;
    flex-direction: column; /* Ensures vertical stacking on all screens */
    align-items: center;
}

.hero-executive h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    margin: 0;
    color: var(--pure-white) !important;
    letter-spacing: -1px;
    width: 100%; /* Keeps text within the box */
}

.hero-executive .tagline {
    font-size: 1.2rem;
    color: var(--premium-gold) !important;
    font-weight: 700;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Founder & Venture Section --- */
.venture-section {
    max-width: 1100px;
    width: 95%; /* Responsive width */
    margin: 40px auto;
    padding: 30px 15px;
    background: var(--slate-gray);
    border-radius: 16px;
    border-left: 8px solid var(--premium-gold);
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    gap: 20px;
}

.venture-text { flex: 1 1 300px; width: 100%; }

.founder-label {
    display: inline-block;
    background: var(--premium-gold);
    color: #000 !important;
    padding: 6px 16px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 15px;
}

.venture-text h2 { font-size: 2rem; margin: 0 0 15px; color: var(--pure-white); }
.venture-text p { color: var(--dim-text); font-size: 1.05rem; margin-bottom: 25px; }

/* --- Buttons --- */
.btn-gold {
    background: var(--premium-gold);
    color: #000 !important;
    padding: 14px 35px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    transition: var(--transition);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.2);
}

/* --- Architecture Highlights --- */
.highlights-grid {
    max-width: 1100px;
    width: 95%;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 10px;
}

.info-box {
    background: #0f172a;
    padding: 30px;
    border: 1px solid #334155;
    border-radius: 12px;
}

.info-box .stat { font-size: 2.8rem; font-weight: 900; display: block; margin-bottom: 10px; color: var(--pure-white); }

/* --- Technology Tags --- */
.tech-stack-container {
    max-width: 100%; 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 10px;
}

.tech-tag {
    border: 1px solid var(--premium-gold);
    color: var(--premium-gold);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Footer --- */
.footer-cta {
    padding: 80px 15px;
    text-align: center;
    background: #000;
    border-top: 1px solid #1e293b;
}

.email-link {
    font-size: clamp(1rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--pure-white);
    text-decoration: none;
    border-bottom: 3px solid var(--premium-gold);
    word-break: break-all; /* Prevents long email from breaking mobile UI */
}

/* --- MOBILE SPECIFIC MEDIA QUERY --- */
@media (max-width: 768px) {
    .hero-executive {
        padding: 40px 15px;
    }

    .hero-executive h1 {
        font-size: 2.2rem; /* Adjusted for mobile view */
    }

    .hero-executive p {
        font-size: 1rem !important; /* Forces inline style fix */
    }

    .venture-section {
        border-left: none;
        border-top: 6px solid var(--premium-gold);
        text-align: center;
    }

    .btn-gold {
        width: 100%; /* Makes button easier to click on mobile */
        text-align: center;
    }
}