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

:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFC107;
    --dark-yellow: #FFA000;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --light-gray: #1a1a1a;
    --white: #ffffff;
    --text-gray: #999999;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Subtle animated background gradient - centered on logo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 15%, rgba(255, 215, 0, 0.05) 0%, transparent 35%),
                radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 70% 40%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    z-index: 0;
    animation: subtle-shift 20s ease-in-out infinite;
}

@keyframes subtle-shift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Network background */
.network-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 20s infinite;
    box-shadow: 0 0 8px rgba(255, 215, 0, 1);
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1);
    }
}

/* Main hero section */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-wrapper {
    max-width: 600px;
    text-align: center;
    animation: fadeInUp 1.5s ease-out;
}

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

/* Main logo on homepage */
.main-logo {
    width: clamp(200px, 50vw, 400px);
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.2s forwards;
}

/* Brand name - subtle but distinct */
.brand-name {
    font-family: 'Orbitron', monospace, sans-serif !important;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
    margin-top: -2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.2s forwards;
    white-space: nowrap;
    text-shadow: 0 2px 30px rgba(255, 255, 255, 0.15);
}

.letter {
    display: inline-block;
    animation: letter-float 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.letter:nth-child(1) { --i: 0; }
.letter:nth-child(2) { --i: 1; }
.letter:nth-child(3) { --i: 2; }
.letter:nth-child(4) { --i: 3; }
.letter:nth-child(5) { --i: 4; }
.letter:nth-child(6) { --i: 5; }
.letter:nth-child(7) { --i: 6; }
.letter:nth-child(8) { --i: 7; }
.letter:nth-child(9) { --i: 8; }
.letter:nth-child(10) { --i: 9; }

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

/* Tagline */
.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.5s forwards;
    letter-spacing: 0.02em;
}

/* Subtitle */
.subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.6s forwards;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-yellow);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.8s forwards;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Email capture form */
.email-capture {
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.9s forwards;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--text-gray);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 180px;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.button-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(3px);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-yellow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-message.show {
    opacity: 1;
}

/* Floating elements for subtle background movement */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.float-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-yellow);
    top: -300px;
    left: -300px;
    animation: float-1 40s ease-in-out infinite;
}

.float-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-yellow);
    bottom: -200px;
    right: -200px;
    animation: float-2 35s ease-in-out infinite;
}

.float-3 {
    width: 300px;
    height: 300px;
    background: var(--dark-yellow);
    top: 50%;
    left: 50%;
    animation: float-3 45s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.05);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

/* Navigation styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link.active {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.mobile-link {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--primary-yellow);
}

/* Page content styles */
.page-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 120px 2rem 4rem;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.page-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    margin: 0 0.1em;
}

.title-word.highlight {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Journey page styles */
.story-section {
    margin-top: 2rem;
}

.story-block {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.2s;
}

.story-block:nth-child(2) { animation-delay: 0.4s; }
.story-block:nth-child(3) { animation-delay: 0.6s; }
.story-block:nth-child(4) { animation-delay: 0.8s; }
.story-block:nth-child(5) { animation-delay: 1s; }

.story-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.story-text.emphasis {
    color: var(--primary-yellow);
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

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

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Mission page styles */
.mission-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-statement {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    display: block;
    font-weight: 600;
    color: var(--primary-yellow);
    margin-top: 0.5rem;
}

.mission-sections {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-block {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.mission-block:nth-child(1) { animation-delay: 0.2s; }
.mission-block:nth-child(2) { animation-delay: 0.4s; }
.mission-block:nth-child(3) { animation-delay: 0.6s; }

.mission-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.mission-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.philosophy-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.philosophy-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-yellow);
}

.philosophy-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.vision-block {
    margin-top: 2rem;
    text-align: center;
}

.vision-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.vision-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 1rem;
}

.vision-emphasis {
    color: var(--primary-yellow) !important;
    font-weight: 500;
    font-size: 1.2rem !important;
    margin-top: 1.5rem !important;
}

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

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.mission-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary-yellow);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mission-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.mission-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* Adjust hero section for navigation */
.hero {
    padding-top: 100px;
}

/* Responsive design */
@media (max-width: 768px) {
    /* Navigation responsive */
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero responsive */
    .hero {
        padding: 1rem;
        padding-top: 100px;
    }
    
    .brand-name {
        font-size: 2.5rem;
        white-space: normal;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .email-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .email-input {
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    /* Page content responsive */
    .page-content {
        padding: 100px 1rem 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .story-heading {
        font-size: 1.5rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-section {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-statement {
        font-size: 1.5rem;
    }
    
    .mission-block h3 {
        font-size: 1.5rem;
    }
    
    .mission-block p {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page transitions */
.page-transition {
    animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
