@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400&family=Playfair+Display:ital@1&family=Inter:wght@300;400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
}

/* Fixed Navigation Buttons */
.fixed-pitch {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fixed-pitch:hover,
.fixed-pitch:focus {
    background: white;
    color: #000;
    transform: translateY(-2px);
    outline: none;
}

.fixed-articles {
    position: fixed;
    top: 70px;
    left: -10px;
    z-index: 1000;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: rotate(-90deg);
    transform-origin: center;
}

.fixed-articles:hover,
.fixed-articles:focus {
    background: white;
    color: #000;
    transform: rotate(-90deg) translateX(-2px);
    outline: none;
}

/* Section 1: Title Screen */
.section1 {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #000;
    background-image: url('0_0.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section1::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.section1 > * {
    position: relative;
    z-index: 2;
}

.title-container {
    text-align: center;
    animation: fadeInDown 1.5s ease-out;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(60px, 14vw, 180px);
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 60px;
}

.descend {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: opacity 0.3s;
    background: transparent;
    border: none;
    color: inherit;
}

.descend:hover {
    opacity: 1;
}

.descend:focus {
    outline: 2px solid white;
    outline-offset: 4px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section 2: Who We Are */
.section2 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    position: relative;
    background-color: #000;
    background-image: url('0_0.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.section2 > * {
    position: relative;
    z-index: 2;
}

.mission-text {
    max-width: 800px;
    text-align: center;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Section 3: Pitch Ideas */
.section3 {
    min-height: 100vh;
    padding: 80px 20px;
    position: relative;
    background-color: #000;
    background-image: url('0_0.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.section3 > * {
    position: relative;
    z-index: 2;
}

.pitch-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    line-height: 1.6;
}

.boxes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #fff;
}

.box ul {
    list-style: none;
    padding: 0;
}

.box li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    font-style: italic;
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.5;
}

/* Section 4: Final Call */
.section4 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background: #000;
    text-align: center;
}

.final-text {
    max-width: 800px;
    margin-bottom: 40px;
}

.final-text p {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.pitch-button {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    background: transparent;
    border: 3px solid white;
    padding: 20px 60px;
    margin: 40px 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
}

.pitch-button:hover,
.pitch-button:focus {
    background: white;
    color: #000;
    transform: translateY(-2px);
    outline: none;
}

.closing {
    margin-top: 60px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.signature {
    margin-top: 30px;
    font-style: italic;
    opacity: 0.7;
}

.email {
    margin-top: 20px;
    font-style: italic;
    opacity: 0.7;
}

.email a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email a:hover,
.email a:focus {
    opacity: 1;
    outline: none;
}

.substack-link {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.7;
    font-size: 16px;
}

.substack-link a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.substack-link a:hover,
.substack-link a:focus {
    opacity: 1;
    outline: none;
}

/* Screen reader only content */
.sr-only {
    font-size: 0;
    position: absolute;
    left: -9999px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .fixed-pitch {
        top: 15px;
        right: 15px;
        font-size: 14px;
        padding: 10px 20px;
    }

    .fixed-articles {
        top: 55px;
        left: -15px;
        font-size: 14px;
        padding: 10px 20px;
        transform: rotate(-90deg);
    }

    .boxes-container {
        grid-template-columns: 1fr;
    }
}