/* Reset & Base */
:root {
    --bg-color: #050505;
    --text-main: #e0e0e0;
    --text-muted: #555;
    --accent: #fff;

    --container-width: 1000px;
    --spacing-section: 12rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    padding: 2.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-img {
    width: 120px;
    display: block;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    height: 90vh;
    /* Not full full height to show a bit of scroll hint */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left align */
    padding-top: 4rem;
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-slogan {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    /* "Whisper" tracking */
    margin-bottom: 4rem;
    font-weight: 400;
}

.btn-minimal {
    display: inline-block;
    border-bottom: 1px solid var(--text-muted);
    padding-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.btn-minimal:hover {
    color: #fff;
    border-color: #fff;
}

.clarification {
    padding-top: 0;
    /* Reducing top padding to bring it closer to hero if needed, but let's check negative space */
    padding-bottom: 8rem;
    /* Distinct from standard section spacing if needed, or keep standard */
}

.clarification-text {
    font-size: 0.9rem;
    color: #777;
    /* Slightly darker than muted for subtle effect? Or stick to muted. User said "Neutral, technical". #555 is muted. */
    max-width: 550px;
    line-height: 1.7;
    margin-top: -2rem;
    /* Visual adjustment to pull it slightly up towards hero */
}

/* Sections General */
.section {
    padding-bottom: var(--spacing-section);
}

.section-header {
    margin-bottom: 4rem;
    border-top: 1px solid #1a1a1a;
    padding-top: 1.5rem;
}

.section-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Infrastructure Grid */
.grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.minimal-item h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
}

.minimal-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Access Content */
.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.access-block h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.access-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 300px;
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid #111;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Keeps it on the right side if that's the established layout */
    text-align: right;
    gap: 0.25rem;
    /* Small gap between disclaimer and copyright */
}

.footer-logo {
    width: 80px;
    opacity: 0.5;
}

.footer-disclaimer {
    font-size: 0.75rem;
    /* Slightly larger for readability */
    color: #888;
    /* Lighter gray for better visibility against black */
    margin: 0;
    line-height: 1.5;
}

.copyright {
    font-size: 0.75rem;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {

    .grid-minimal,
    .access-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .header-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .nav {
        gap: 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Request Page Specifics */
.request-section {
    padding-top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.request-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* Resetting the default container padding if it interferes with perfect visual centering, 
       but keeping it for mobile safety */
    padding: 0 2rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Form Styling */
.access-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

input,
select,
textarea {
    background: #0a0a0a;
    border: 1px solid #222;
    color: var(--text-main);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    border-radius: 0;
    /* Sharp edges */
    outline: none;
    transition: border-color 0.3s ease;
    width: 100%;
    -webkit-appearance: none;
    /* Remove default styling */
    appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #444;
}

/* Select arrow custom styling would go here, keeping simple for now or adding a wrapper */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "↓";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    font-size: 0.8rem;
    pointer-events: none;
}

textarea {
    resize: vertical;
}

.btn-submit {
    margin-top: 1rem;
    background: transparent;
    border: 1px solid #333;
    color: var(--text-main);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    border-color: #fff;
    color: #fff;
}

/* Success Message */
.success-message {
    padding-top: 2rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.muted-only {
    color: #444;
}

/* Mobile fix for Request Page overlap */
@media (max-width: 768px) {
    .request-section {
        justify-content: flex-start;
        padding-top: 10rem;
        padding-bottom: 4rem;
    }
}