/* 
   Aurex Merger - THE ULTIMATE SIMPLICITY (v3 - Sophisticated Footer)
   Focus: Cleanliness, Legibility, Premium Minimalist Detail
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');

:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #888888;
    --accent: #000000;
    --border: #f2f2f2;
}

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

html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: var(--bg);
    font-family: 'Inter', sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.simple-header {
    padding: 80px 20px 40px;
    text-align: center;
    width: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.arrow-icon {
    font-size: 18px;
    color: #cccccc;
    flex-shrink: 0;
}

/* Main Content Area */
.site-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Content */
.simple-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.content-inner {
    max-width: 700px;
    width: 100%;
}

.simple-title {
    font-size: clamp(2.25rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1;
}

.simple-subtitle {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    color: var(--muted);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 300;
}

/* Button */
.simple-btn {
    display: inline-block;
    padding: 22px 55px;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.simple-btn:hover {
    background-color: #333;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer - THE SOPHISTICATED REDESIGN */
.simple-footer {
    padding: 100px 20px 60px;
    text-align: center;
    width: 100%;
    background-color: #fafafa;
}

.footer-logo-small {
    height: 30px;
    opacity: 0.4;
    margin-bottom: 30px;
    filter: grayscale(1);
}

.footer-text {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.legal-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s;
    opacity: 0.6;
}

.legal-links a:hover {
    opacity: 1;
}

/* Blanco Specific */
.hiring-banner {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eeeeee;
}

/* Mobile Optimizations */
@media (max-width: 600px) {
    .simple-header { padding: 60px 15px 30px; }
    .logo-wrap { flex-direction: column; gap: 20px; }
    .arrow-icon { transform: rotate(90deg); }
    .simple-hero { padding: 40px 20px 60px; }
    .simple-title { font-size: 2.5rem; }
    .simple-btn { width: 100%; }
    .legal-links { flex-direction: column; gap: 20px; }
    .simple-footer { padding: 80px 20px 40px; }
}
