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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    background: #ffd700;
    color: #0a0a0a;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1002;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2332 50%, #0f1419 100%);
    z-index: -2;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-20vh) translateX(30px); opacity: 0; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    z-index: 1001;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 5px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.mobile-menu-btn:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.mobile-menu-btn.active {
    color: #ffd700;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-menu-content {
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav a:hover::before {
    left: 100%;
}

.mobile-nav a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #a8a8a8;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'EB Garamond', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-quote {
    font-family: 'EB Garamond', serif;
    font-size: 1.8rem;
    color: #87ceeb;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #ffd700;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
}

.btn-link::after {
    content: '→';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-link:hover,
.btn-link:focus {
    color: #ffea7f;
    transform: translateY(-2px);
}

.btn-link:hover::after,
.btn-link:focus::after {
    transform: translateX(4px);
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-family: 'EB Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
}

.section-content {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 4rem 2rem;
}

.manifesto {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    color: #d4a574;
    font-style: italic;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto p {
    margin-bottom: 1.5rem;
}

.manifesto .highlight {
    color: #ff6b6b;
    font-weight: 600;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
}

.feature-description {
    color: #c0c0c0;
    line-height: 1.6;
}

.feature-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
}

/* Blog Styles */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: #c0c0c0;
    font-size: 1.1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #a8a8a8;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-post-date {
    color: #87ceeb;
}

.blog-post-title {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-content {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content h2,
.blog-post-content h3 {
    font-family: 'EB Garamond', serif;
    color: #ffd700;
    margin: 2rem 0 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content blockquote {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    color: #87ceeb;
    border-left: 3px solid #ffd700;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-size: 1.2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #ffed4e;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a8a8a8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-quote {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .manifesto {
        font-size: 1.2rem;
        padding: 0;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-posts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-quote {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .blog-post-card {
        padding: 1.5rem;
    }

    .mobile-nav a {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }

    .mobile-menu-close {
        font-size: 1.8rem;
        top: -2.5rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0.8rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        padding: 1.5rem 0.8rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-nav a {
        font-size: 1.2rem;
        padding: 0.7rem 1rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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