:root {
    --bg-color: #030008;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --accent-1: #8a2be2; /* BlueViolet */
    --accent-2: #00ffff; /* Cyan */
    --accent-3: #ff00ff; /* Magenta */
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body, html {
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow: hidden; /* Prevent scrolling for the ecosystem feel */
    position: relative;
}

/* Background Canvas */
#ecosystem-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; /* Let clicks pass through if needed */
}

/* Main Content Overlay */
.content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(3, 0, 8, 0.2) 0%, rgba(3, 0, 8, 0.8) 100%);
}

.content-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Typography */
.brand-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: -1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-1) 50%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 8s ease infinite;
    text-transform: uppercase;
}

.hero-statement {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Differentiator Section */
.differentiator {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
}

.strike-through {
    color: var(--text-secondary);
    position: relative;
    display: inline-block;
    align-self: center;
    opacity: 0;
    animation: fade-in-strike 0.8s forwards;
}

.strike-through:nth-child(1) { animation-delay: 2.5s; }
.strike-through:nth-child(2) { animation-delay: 3.5s; }

.strike-through::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 0%;
    height: 2px;
    background: var(--accent-3);
    transition: width 0.5s ease-out;
}

/* The line striking through animation */
@keyframes strike-draw {
    0% { width: 0%; }
    100% { width: 110%; }
}

.strike-through.drawn::after {
    animation: strike-draw 0.5s forwards;
}

.ultimate-statement {
    margin-top: 1rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-2);
    opacity: 0;
    animation: fade-in-up 1s forwards;
    animation-delay: 5s; /* After both strikethroughs */
}

/* Action Group */
.action-group {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-self: center;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: default;
}

.coming-soon-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

/* Founder Button */
.founder-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: var(--bg-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.founder-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-2);
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 255, 0); }
}

/* Reveal Text Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-in-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fade-in-up {
    0% { opacity: 0; transform: translateY(30px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fade-in-strike {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content-container {
        gap: 2rem;
    }
    
    .coming-soon-badge {
        margin-top: 1rem;
    }
}
