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

/* Base */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #000;
    color: #e8e8e8;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

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

/* Container */
.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #efefef;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.65);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: #efefef;
    line-height: 1.2;
    letter-spacing: -1.1px;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.65);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #efefef;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.hero-cta:hover {
    border-color: #fff;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: rgba(232, 232, 232, 0.65);
    margin-bottom: 48px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #efefef;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.65);
    margin-bottom: 64px;
}

/* Resources */
.resources {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.resource-card {
    display: block;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity 0.3s ease;
}

a.resource-card:hover {
    opacity: 0.8;
}

.resource-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #efefef;
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.65);
    max-width: 600px;
    line-height: 1.6;
}

.resource-card .arrow {
    display: inline-block;
    margin-top: 16px;
    font-size: 20px;
    color: rgba(232, 232, 232, 0.4);
    transition: transform 0.3s ease, color 0.3s ease;
}

a.resource-card:hover .arrow {
    transform: translateX(6px);
    color: #efefef;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 71px 20px;
}

.blog-card {
    display: block;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity 0.3s ease;
}

.blog-card:hover {
    opacity: 0.8;
}

.blog-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #efefef;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card .blog-excerpt {
    font-size: 15px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.5);
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 24px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.35);
}

/* About */
.about-photo {
    margin-bottom: 40px;
}

.about-photo img {
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.about-photo img:hover {
    filter: grayscale(0%);
}

.about-content {
    max-width: 680px;
}

.about-content p {
    font-size: 18px;
    font-weight: 300;
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.read-more-link {
    display: inline-block;
    margin-top: 32px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(232, 232, 232, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.read-more-link:hover {
    color: #fff;
    border-color: #fff;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.65);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 13px;
    font-weight: 300;
    color: rgba(232, 232, 232, 0.25);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }

    .section {
        padding: 80px 0;
    }

    .section-label {
        font-size: 14px;
        letter-spacing: 8px;
        margin-bottom: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-logo {
        font-size: 12px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .resource-card h3 {
        font-size: 20px;
    }
}
