/* Modern Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #ef4444;
    /* Red */
    --accent-hover: #b91c1c;
    /* Darker Red */
    --highlight-color: #f87171;
    /* Light Red */
    --glass-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(239, 68, 68, 0.3);
    --font-main: 'Courier Prime', monospace;
    --container-width: 1200px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--accent-color);
    border-radius: 0;
    /* Square edges for terminal look */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: var(--accent-color);
    text-transform: uppercase;
    font-family: var(--font-main);
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    transform: none;
    /* No movement, purely color shift */
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.logo::after {
    content: '_';
    animation: blink 1s step-end infinite;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    color: #888;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    position: relative;
    padding: 120px 0 60px 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.hero-title {
    font-size: 6rem;
    /* Huge */
    margin-bottom: 20px;
    color: white;
    line-height: 0.9;
    letter-spacing: -3px;
    /* text-transform: uppercase; Removed to respect user casing */
}

.hero-subtitle {
    font-size: 1.5rem;
    /* Slightly larger than 1.1rem for readability as a subheadline */
    color: #888;
    margin-bottom: 40px;
    max-width: 800px;
    /* Removed border and padding for clean text look */
    text-align: left;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 60px 0 100px 0;
    border-top: 1px solid #222;
}

.section-badge {
    font-size: 2.5rem;
    /* Significantly larger */
    color: var(--accent-color);
    /* removed text-transform: uppercase to respect mixed case requests */
    letter-spacing: 1px;
    /* reduced slightly for legibility at large size */
    margin-bottom: 40px;
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

.section-badge::before {
    content: '[ ';
    color: #444;
    font-size: 2.5rem;
    vertical-align: middle;
}

.section-badge::after {
    content: ' ]';
    color: #444;
    font-size: 2.5rem;
    vertical-align: middle;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Connected list */
    max-width: 800px;
    margin: 0 auto;
    border-left: 1px solid #333;
}

.step {
    background: transparent;
    border: none;
    padding: 40px;
    /* Converted to grid for alignment */
    display: grid;
    grid-template-columns: 40px 250px 1fr;
    align-items: start;
    gap: 30px;
    transition: background 0.2s ease;
    position: relative;
    padding: 40px;
}

.step::before {
    content: '';
    position: absolute;
    left: -6px;
    /* Half of dot width + border width adjustment */
    top: 55px;
    /* Adjust based on padding */
    width: 11px;
    height: 11px;
    background: #000;
    border: 1px solid #444;
}

.step:hover::before {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.step:hover {
    background: rgba(255, 255, 255, 0.02);
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-main);
    /* min-width removed as grid handles it */
}

.step h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 400;
    line-height: 1;
}

.step p {
    color: #888;
    font-size: 1rem;
    margin-top: 5px;
    /* Visual alignment with title */
}

/* About Section */
.about-section {
    padding: 80px 0;
    border-top: 1px solid #222;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffffff;
    flex-shrink: 0;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.about-text h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.about-text p {
    color: #888;
    font-size: 1rem;
    line-height: 1.8;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    text-align: left;
    border-top: 1px solid #222;
}

.partners-section h2 {
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    gap: 20px;
    flex-wrap: wrap;
}

.partner-card {
    background: transparent;
    border: 1px dashed #333;
    padding: 20px 40px;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    font-family: var(--font-main);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: left;
    /* Align Left */
    border-top: 1px solid #222;
    margin-top: 0;
}

.contact-email {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    display: block;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
}

.contact-email:hover {
    color: var(--accent-color);
    background: rgba(239, 68, 68, 0.1);
}

footer p {
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }

    .step {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 15px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        border-left: none;
    }

    .step::before {
        display: none;
    }
}