/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography - System font stack exactly like Valar */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Accent color - Pantone 1955 C */
:root {
    --accent-color: #E4002B;
}

/* Container - single column, max-width like Valar */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - minimal like Valar */
.header {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.wordmark {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Main content */
.main {
    padding: 0;
}

/* Hero section - large typography like Valar */
.hero {
    padding: 6rem 0 4rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.metrics {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 3rem;
    font-family: 'SF Mono', Monaco, 'Inconsolata', 'Roboto Mono', monospace;
}

.cta {
    margin-top: 3rem;
}

.apply-link {
    display: inline-block;
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.apply-link:hover {
    color: var(--accent-color);
    text-decoration-color: var(--accent-color);
}

/* Description section */
.description {
    padding: 6rem 0;
    max-width: 800px;
}

.description p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 2rem;
}

.description p:last-child {
    margin-bottom: 0;
}

/* Pillars section */
.pillars {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.pillar h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pillar p {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #666666;
}

/* Section separators - exactly like Valar */
.section-separator {
    padding: 4rem 0;
    font-family: 'SF Mono', Monaco, 'Inconsolata', 'Roboto Mono', monospace;
    font-size: 1rem;
    color: #cccccc;
    text-align: center;
    letter-spacing: 0.2em;
}

/* Process section */
.process {
    padding: 6rem 0;
}

.step {
    margin-bottom: 5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step:last-child {
    margin-bottom: 0;
}

.number {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    font-family: 'SF Mono', Monaco, 'Inconsolata', 'Roboto Mono', monospace;
    min-width: 3rem;
    flex-shrink: 0;
}

.separator {
    font-family: 'SF Mono', Monaco, 'Inconsolata', 'Roboto Mono', monospace;
    color: #cccccc;
    font-size: 1rem;
    letter-spacing: 0.1em;
    min-width: 8rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.step-content p {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 1rem;
    max-width: 500px;
}

.metric {
    font-size: 0.875rem;
    color: #999999;
    font-family: 'SF Mono', Monaco, 'Inconsolata', 'Roboto Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Focus areas */
.focus-areas {
    padding: 6rem 0;
}

.focus-areas h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4rem;
}

.pods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area {
    border: 1px solid #e5e5e5;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: #ffffff;
    cursor: pointer;
}

.area:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(228, 0, 43, 0.12);
}

.area-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.area h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.area:hover h3 {
    color: #000000;
}

.area p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 1.5rem;
}

.status {
    display: inline-block;
    font-size: 0.75rem;
    color: #666666;
    font-family: 'SF Mono', Monaco, 'Inconsolata', 'Roboto Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #f9f9f9;
}

.area:hover .status {
    border-color: var(--accent-color);
    background: #ffffff;
    color: var(--accent-color);
}

/* For Entrepreneurs section */
.for-entrepreneurs {
    padding: 6rem 0;
}

.for-entrepreneurs h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

.for-entrepreneurs h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.for-entrepreneurs > p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 4rem;
    max-width: 600px;
}

.benefits {
    margin-bottom: 4rem;
}

.benefit {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 2rem;
    max-width: 600px;
}

.benefit:last-child {
    margin-bottom: 0;
}

.apply-section {
    padding-top: 2rem;
}

.apply-section p {
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: 1rem;
}

/* Platform section */
.platform {
    padding: 6rem 0;
}

.platform h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 2rem;
}

.platform > p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 700px;
}

.platform-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.platform-link {
    color: #666666;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.platform-link:hover {
    color: var(--accent-color);
    text-decoration-color: var(--accent-color);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #999999;
}

/* Responsive design - mobile first like Valar */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.25rem;
    }

    .pillars {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    .separator {
        display: none;
    }

    .platform-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Focus states for accessibility */
a:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition-duration: 0.01ms !important;
    }
}