/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: white;
    overflow-x: hidden;
}

/* Container */
.container {
    min-height: 100vh;
    background: black;
    position: relative;
    overflow: hidden;
}

/* Background Styles */
.background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.background-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f0f23 0%, #000000 50%, #1a1a2e 100%);
}

.flowing-lines {
    position: absolute;
    inset: 0;
}

.flowing-line {
    position: absolute;
    height: 1px;
    width: 200%;
    left: -50%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0.2;
    animation: flowingLine 8s linear infinite;
}

@keyframes flowingLine {
    0% {
        transform: translateX(-100px) rotate(0deg);
    }
    100% {
        transform: translateX(100px) rotate(15deg);
    }
}

/* Content Layout */
.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.header {
    width: 100%;
    padding: 1.5rem 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-section:hover {
    transform: translateY(-2px);
}

.logo-container {
    position: relative;
}

.logo {
    height: 2rem;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-section:hover .logo {
    opacity: 0.8;
}

.logo-glow {
    position: absolute;
    inset: -8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-section:hover .logo-glow {
    opacity: 0.2;
}

.brand-title {
    font-size: 1.875rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ffffff 0%, #9ca3af 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo-section:hover .brand-title {
    background: linear-gradient(90deg, #e5e7eb 0%, #6b7280 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
}

.social-link:hover {
    color: #d1d5db;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
}

.hero-section {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-word {
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #e5e7eb 50%, #9ca3af 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #9ca3af;
}

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

.footer-text {
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .header {
        padding: 2rem;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .footer {
        padding: 2rem;
    }
    
    .logo {
        height: 2.5rem;
    }
    
    .brand-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 8rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Background Animation Variants */
.geometric-background {
    position: absolute;
    inset: 0;
}

.geometric-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.morphing-blobs {
    position: absolute;
    inset: 0;
}

.blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(60px);
    border-radius: 50%;
    animation: morphBlob 10s ease-in-out infinite;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 50% 40% 60% 30%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60% 50% 40% 70%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 40% 60% 50% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 60% 50%;
        transform: rotate(270deg) scale(1.05);
    }
}