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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-header.visible {
    transform: translateY(0);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-rune-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.nav-rune-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 1px solid rgba(139, 69, 19, 0.4);
    border-radius: 50%;
    animation: orbitRotate 12s linear infinite;
}

.nav-rune-orbit::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

.nav-rune-orbit::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, #deb887, #cd853f);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(222, 184, 135, 0.5);
    animation: dotPulse 2s ease-in-out infinite 1s;
}

.nav-rune {
    position: relative;
    z-index: 2;
    font-size: 16px;
    background: linear-gradient(45deg, #ff6b35, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.nav-cta {
    background: linear-gradient(45deg, #8b4513, #d4af37);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

.section-title.letter-animate {
    overflow: hidden;
}

.section-title.letter-animate .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
    animation: letterDrop 0.6s ease forwards;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.15s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
/* Continue for each letter */

@keyframes letterDrop {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }

}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    min-height: 100vh;
    padding: 80px 5% 80px 10%;
    position: relative;
    gap: 50px;
}

.hero-content {
    justify-self: start;
    margin-left: 50px;
    max-width: 900px;  /* Changed from 750px to 900px */
    text-align: left;
    z-index: 2;
    margin: 0;
    padding: 0;
}

.hero-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 36px;
    background: linear-gradient(45deg, #ff6b35, #d4af37);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite, fadeInUp 1s ease-out 0.5s forwards;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    text-rendering: optimizeLegibility;
    text-align: center;
    max-width: 900px;
    white-space: nowrap;
    margin-left: 100px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 0 20px rgba(160, 144, 75, 0.25);
    margin-top: 40px; /* Add this to move it down */
    margin-bottom: 36px; /* Keep existing bottom margin */
    
    /* Add frame */
    padding: 24px 40px;
    background-color: rgba(15, 20, 25, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 144, 75, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-intro {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 20px 0 32px 100px;
    max-width: 900px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1s forwards;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.hero-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #a0904b, transparent);
    box-shadow: 0 0 8px rgba(160, 144, 75, 0.4);
}


.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 900px;
    margin-left: 100px;  /* ADD THIS LINE - moves bullets right */
}

.hero-bullets li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 22px;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-bullets li:nth-child(1) { animation-delay: 1.5s; }
.hero-bullets li:nth-child(2) { animation-delay: 2.0s; }
.hero-bullets li:nth-child(3) { animation-delay: 2.5s; }
.hero-bullets li:nth-child(4) { animation-delay: 3.0s; }


.hero-bullets li::before {
    content: "✓";
    color: #8e7f42;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
    top: 2px;
}

.hero-chart-container {
    justify-self: end;
    width: 400px;
    z-index: 1;
    animation: fadeInUp 1s ease-out 3.5s both;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.explore-arrow {
    margin: 60px 0 0 380px;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3.5s forwards;
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px !important; /* Bigger padding (was 8px 18px) */
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: auto;
    min-width: 90px;
    max-width: 130px; /* Increased max-width to accommodate bigger padding */
}

.explore-arrow:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    color: #f4d76b;
    background: rgba(15, 20, 25, 0.95);
}

.arrow-text {
    font-size: 16px; /* Increased from 14px */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    font-style: normal;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.arrow-icon {
    font-size: 20px; /* Increased from 18px */
    transition: all 0.3s ease;
    animation: none;
    text-shadow: none;
    display: inline;
}

.explore-arrow:hover .arrow-icon {
    transform: translateY(3px); /* Subtle downward movement on hover */
    color: inherit; /* Use the same color as parent */
    text-shadow: none;
    animation: none;
}

.explore-arrow:hover .arrow-text {
    color: inherit; /* Use the same color as parent */
}
/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 80px 20px;
}

#about + .section {
    padding-bottom: 60px !important; /* Reduce from default */
    min-height: auto !important; /* Don't force full viewport height */
}

.section-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.content-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #f4d76b, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #ff6b35, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 15px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}

.highlight-feature {
    color: #d4af37;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(45deg, #ff6b35, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Vision Section */
.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-align: center;
}

.vision-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    text-align: left;
}

.vision-bullets li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 32px;
    position: relative;
    text-align: justify; 
    text-justify: inter-word; /* Improves spacing between words */
}

.vision-bullets li::before {
    content: "✓";
    color: #ff8c42;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 22px;
    top: 4px;
}

.vision-bullets li strong {
    color: #d49237;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-frame {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    color: #f4d76b;
    font-weight: 600;
}

.simple-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #d4af37);
    margin: 30px auto;
    border-radius: 1px;
}

.about-secondary {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
}


/* Simple hover effect */
.about-frame:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Simple hover effect */
.about-frame:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Science Dropdown */
.science-dropdown-container {
    max-width: 800px;
    margin: 40px auto 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.science-dropdown-container:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.science-dropdown-header {
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 107, 53, 0.1));
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4af37;
    text-align: center;
}

.science-dropdown-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.science-preview {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.architecture-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #8b4513, #d4af37);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.architecture-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
    background: linear-gradient(45deg, #a0522d, #f4d76b);
}

/* CTA Button */
.cta-section {
    animation: ctaEntrance 3s ease-out 1s both;
    padding-bottom: 60px !important
}

.cta-section,
.section:last-child {
    padding-top: 40px !important;
    margin-top: -40px; /* Pull it up closer to About */
    min-height: auto !important; /* Don't force full viewport height */
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #8b4513, #d4af37, #ff6b35);
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    animation: buttonGlow 4s ease-in-out infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.5);
    background-position: 100% 0;
}

.cta-button:hover::before {
    left: 100%;
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 40px;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
}

.scroll-arrow {
    display: inline-block;
    font-size: 24px;
    color: rgba(212, 175, 55, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.scroll-arrow:hover {
    color: #d4af37;
    transform: translateY(5px);
}

.scroll-text {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 8%;
        text-align: center;
    }
    
    .hero-content {
        justify-self: center;
        max-width: 800px;
    }
    
    .hero-chart-container {
        justify-self: center;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-title {
        text-align: center;
        max-width: none;
    }
    
    .hero-bullets {
        text-align: left;
        margin: 30px auto;
    }
}

@media (max-width: 768px) {
    /* Hide the chart container on mobile */
    .hero-chart-container {
        display: none !important;
    }
    
    /* Fix hero section layout for mobile */
    .hero-section {
        display: block; /* Change from grid to block */
        padding: 100px 20px 60px 20px; /* Top padding for nav, equal left/right */
        min-height: 100vh;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin: 0 auto 30px auto; /* Center and reset margins */
        text-align: center;
        white-space: normal; /* Allow text wrapping */
        line-height: 1.3;
        max-width: 90%; /* Prevent edge touching */
    }

    .hero-intro {
        margin: 20px auto 32px auto; /* Changed from margin-left: 100px to auto centering */
        max-width: 90%; /* Match the title width */
        text-align: center;
        font-size: 18px; /* Slightly smaller for mobile */
        padding: 0 10px; /* Add some padding */
    }
    
    .hero-bullets {
        text-align: left;
        margin: 30px auto;
        max-width: 90%; /* Match title width */
        padding: 0 10px; /* Small side padding */
    }
    
    .hero-bullets li {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .explore-arrow {
        margin: 40px auto 0 auto;
        width: 120px;
    }
    
    /* Keep your other existing mobile styles */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .section {
        padding: 60px 20px;
    }

    .vision-content {
        padding: 0 15px;
    }
    
    .vision-bullets {
        margin: 20px auto;
        max-width: 95%;
        padding: 0 10px;
    }
    
    .vision-bullets li {
        font-size: 1.1rem; /* Smaller than desktop */
        line-height: 1.6;
        margin-bottom: 25px;
        padding-left: 25px;
        text-align: center;
        text-justify: inter-word;
    }
    
    .vision-bullets li::before {
        font-size: 18px;
        top: 1px;
    }
    
    /* About Section Mobile */
     .section#about {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 15px;
    }

    .about-frame {
        margin: 0 auto !important; /* Force center alignment */
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: calc(100% - 30px); /* Ensure it doesn't touch edges */
        width: auto;
        left: 0; /* Reset any left positioning */
        right: 0; /* Reset any right positioning */
        transform: none; /* Remove any transforms that might offset it */
    }
    
    /* Alternative approach - container level fix */
    .about-intro {
        margin: 0 auto !important;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Center the text content */
    .section-subtitle,
    .about-secondary {
        text-align: center; /* Override justify alignment for mobile */
        max-width: 100%;
    }

    #about.section {
        padding-bottom: 40px !important;
    }
    
    .cta-section,
    .section:last-child {
        padding-top: 30px !important;
        margin-top: -30px;
    }

}

@media (max-width: 768px) {
    .section-content .hero-chart-container,
    .hero-section .hero-chart-container,
    #hero .hero-chart-container {
        display: none !important;
    }
}

/* Additional mobile breakpoints to be sure */
@media (max-width: 896px) and (max-height: 414px) {
    /* iPhone landscape modes */
    .hero-chart-container {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-chart-container {
        display: none !important;
    }
}



@media (max-width: 480px) {
    .hero-section {
        padding: 90px 15px 50px 15px;
    }

    .hero-intro {
        font-size: 16px;
        margin: 15px auto 25px auto;
        max-width: 95%;
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 24px;
        max-width: 95%;
    }
    
    .hero-bullets {
        max-width: 95%;
        padding: 0 5px;
    }
    
    .hero-bullets li {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }

    .vision-bullets li {
        font-size: 1rem;
        margin-bottom: 20px;
        padding-left: 22px;
    }
    
    .about-frame {
        margin: 0 10px !important; /* Small equal margins on both sides */
        max-width: calc(100% - 20px);
    }
    
    .about-intro {
        padding: 0 10px;
    }
    
    .about-frame .section-subtitle {
        font-size: 1rem;
    }
    
    .about-secondary {
        font-size: 0.95rem;
    }
    
    .simple-divider {
        width: 50px;
        margin: 20px auto;
    }
    
    .section#about {
        padding: 50px 10px;
    }
}

/* Animations */
@keyframes orbitRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scale(1.5);
    }
}

@keyframes ctaEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes buttonGlow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(139, 69, 19, 0.5);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 107, 53, 0.1));
    border: 2px solid #d4af37;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulseGlow 2s ease-in-out infinite;
}

.coming-soon-icon {
    font-size: 1.8rem;
}

.coming-soon-subtitle {
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
        transform: scale(1.02);
    }
}

.nav-cta-disabled {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 107, 53, 0.3));
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.nav-cta-disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.about-contact a {
    transition: all 0.3s ease;
}

.about-contact a:hover {
    color: #f4d76b;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}