/* CSS Variables - Design Tokens */
:root {
    --neutral-0: #FFFFFF;
    --neutral-100: #E6E6E6;
    --neutral-200: #D1D1D1;
    --neutral-500: #6B6B6B;
    --neutral-800: #262626;
    --neutral-900: #161616;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    background-color: var(--neutral-900);
    color: var(--neutral-0);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 56px;
    color: var(--neutral-0);
}

h3 {
    font-family: 'Cal Sans', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 64px;
    color: var(--neutral-0);
    text-align: center;
}

p {
    font-size: 18px;
    line-height: 26px;
    color: var(--neutral-0);
}

/* Layout */
.container {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo Section */
.logo-section {
    background-color: var(--neutral-900);
    padding: 8px 72px;
    min-height: 336px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-section .container {
    display: flex;
    align-items: flex-start;
    padding: 0;
}

.logo-large {
    width: 335px;
    height: 128px;
    min-width: 335px;
    max-width: none;
    flex-shrink: 0;
}

/* SVG Protection */
.protected-svg {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Content Section */
.content-section {
    background-color: var(--neutral-900);
    padding: 8px 72px 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    overflow: hidden;
}

.content-section .container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 0;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Hero Image */
.hero-image-wrapper {
    width: 100%;
    max-width: 1040px;
    height: auto;
    aspect-ratio: 1040 / 396;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-wrapper {
    width: 100%;
    max-width: 1040px;
}

.cta {
    position: relative;
    width: 100%;
    height: 426px;
    border-radius: 32px;
    border: 1px solid var(--neutral-800);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(22, 22, 22, 0.8);
    border-radius: 32px;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 24px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 8px 32px;
    background-color: var(--neutral-0);
    border: 4px solid var(--neutral-100);
    border-radius: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: var(--neutral-900);
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    border-color: var(--neutral-0);
    color: var(--neutral-0);
}

.btn:active {
    background-color: var(--neutral-0);
    border-color: var(--neutral-900);
    color: var(--neutral-900);
}

/* Footer */
.footer {
    background-color: var(--neutral-900);
    border-top: 1px solid var(--neutral-800);
    padding: 72px 72px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.footer-container {
    max-width: 1040px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.logo-small {
    width: 125px;
    height: 48px;
}

.copyright {
    font-size: 16px;
    line-height: 24px;
    color: var(--neutral-500);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .logo-section {
        padding: 8px 48px;
        min-height: 280px;
    }

    .content-section {
        padding: 8px 48px 72px;
        gap: 48px;
    }

    .content-section .container {
        gap: 48px;
    }

    h1, h2 {
        font-size: 32px;
        line-height: 44px;
    }

    h3 {
        font-size: 36px;
        line-height: 48px;
    }

    .cta {
        height: 360px;
    }

    .cta-content {
        gap: 32px;
    }

    .footer {
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .logo-section {
        padding: 8px 24px;
        min-height: 200px;
    }

    .logo-section .container,
    .content-section .container {
        padding: 0;
    }

    .content-section {
        padding: 8px 24px 48px;
        gap: 40px;
    }

    .content-section .container {
        gap: 40px;
    }

    h1, h2 {
        font-size: 28px;
        line-height: 38px;
    }

    h3 {
        font-size: 28px;
        line-height: 38px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .text-block {
        gap: 16px;
    }

    .cta {
        height: 320px;
    }

    .cta-content {
        gap: 24px;
    }

    .btn {
        font-size: 16px;
        padding: 8px 24px;
        height: 44px;
    }

    .footer {
        padding: 40px 24px;
    }

    .footer-content {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .logo-section {
        min-height: 160px;
    }

    /* Logo reduced by 32px height (128 → 96), width scaled proportionally to maintain aspect ratio */
    .logo-large {
        width: 251px;
        height: 96px;
        min-width: 251px;
    }

    h1, h2 {
        font-size: 24px;
        line-height: 32px;
    }

    h3 {
        font-size: 24px;
        line-height: 32px;
    }

    p {
        font-size: 15px;
        line-height: 22px;
    }

    .cta {
        height: 280px;
    }

    .cta-content {
        gap: 20px;
        padding: 16px;
    }
}
