:root {
    --bg-primary: #0b0f19;
    /* Deep dark blue/black */
    --bg-secondary: #161b2e;
    --accent-core: #2f48e7;
    /* CoreWeave Blue */
    --accent-highlight: #5c72fa;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
    --mono-font: 'Fira Code', 'Courier New', monospace;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Layout & Typography --- */
.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 10px;
}

.header-logo {
    display: block;
    /* Centered via container now */
    height: auto;
    max-height: 55px;
    /* Reduced size to match text width */
    width: auto;
    max-width: 100%;
    opacity: 1;
}

/* Removed hover effect as it's now a main header element */

header {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.05rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.applicant-label {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--accent-highlight);
    font-weight: 500;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 20px;
}

section {
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2::before {
    content: '//';
    color: var(--accent-core);
    font-family: var(--mono-font);
}

footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Components --- */
.tag {
    background: rgba(47, 72, 231, 0.2);
    color: var(--accent-highlight);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--mono-font);
    text-transform: uppercase;
}

.btn-action {
    background: var(--accent-core);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    margin-bottom: 10px;
    text-decoration: none;
    /* Just in case used on links */
    display: inline-block;
}

.btn-action:hover {
    background: var(--accent-highlight);
    transform: translateY(-2px);
}

/* --- Social Links --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    fill: var(--accent-highlight);
    transition: all 0.2s ease;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    background: rgba(47, 72, 231, 0.1);
    /* Subtle blue tint background */
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--accent-highlight);
    transform: translateY(-2px);
}

.social-link:hover .social-icon {
    fill: white;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 40px;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    max-width: 850px;
    margin: 10px auto;
}

.trusted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.trusted-logo {
    height: 35px;
    width: auto;
    fill: var(--text-muted);
    opacity: 0.6;
    transition: all 0.3s ease;
}

img.trusted-logo {
    filter: grayscale(100%) brightness(1.5);
    /* Adjust brightness to match muted text better if needed, or just grayscale */
}

.trusted-item:hover img.trusted-logo {
    filter: none;
}

.trusted-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.trusted-item:hover .trusted-logo {
    fill: var(--text-main);
    opacity: 1;
    transform: translateY(-5px);
}

.trusted-item:hover .trusted-name {
    opacity: 0.8;
    color: var(--text-main);
    transform: translateY(0);
}