:root {
    --bg-color: #000000;
    --bg-surface: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --text-dark: #3f3f46;
    
    --accent-cyan: #00f3ff;
    --accent-magenta: #ff00ea;
    --accent-lime: #a2ff00;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* 1. NAVIGATION */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.logo {
    display: flex; align-items: center; gap: 0.75rem;
    font-weight: 700; font-size: 1.25rem; letter-spacing: -0.5px;
}
.logo img { width: 32px; height: 32px; border-radius: 8px; }

.nav-links {
    display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
    color: var(--text-muted); font-size: 0.95rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: white; }

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

.btn {
    background: white; color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s;
    display: inline-flex; align-items: center; justify-content: center;
}
.btn:hover { transform: scale(1.05); background: #f4f4f5; }
.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--border-color);
}
.btn-outline:hover { background: rgba(255,255,255,0.05); color: white; }

/* 2. MAIN HERO */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(0,243,255,0.15) 0%, rgba(255,0,234,0.05) 50%, rgba(0,0,0,0) 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulseGlow 8s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease-out forwards;
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    animation: fadeUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex; gap: 1rem;
    animation: fadeUp 1s ease-out 0.4s forwards;
    opacity: 0;
}

/* 3. STATEMENT SECTION */
.statement {
    padding: 10rem 5%;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.statement h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--text-muted);
}
.statement h2 span { color: white; }

/* 4. ABSTRACT BENTO GRID */
.bento-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 400px;
}

.bento-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 2.5rem;
    display: flex; flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.bento-content { position: relative; z-index: 10; flex-shrink: 0; max-width: 100%; }
.bento-content h3 { font-size: 1.8rem; margin-bottom: 0.5rem; font-weight: 700; letter-spacing: -0.5px; }
.bento-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.4; }

/* Visual placements - Responsively Filling Empty Space */
.bento-visual {
    position: relative;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto;
    padding-bottom: 2rem;
    min-height: 150px;
    z-index: 1;
}

.bento-visual svg {
    width: 100%;
    height: auto;
    max-width: 140px;
    object-fit: contain;
}

.bento-img-asset {
    max-width: 140px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    mix-blend-mode: screen;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.orange-rotation {
    transform: translateY(25px) rotate(10deg);
}

.shape-shift {
    transform: translateY(15px);
}

.flower-rotation {
    transform: rotate(-5deg);
}

.spin-slow {
    transform-origin: center;
    animation: spin 20s linear infinite;
}

.spin-fast {
    transform-origin: center;
    animation: spin 8s linear infinite reverse;
}

.float-animation {
    animation: abstractFloat 6s ease-in-out infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes abstractFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}


/* 6. FAQ ACCORDION */
.faq {
    padding: 8rem 5%;
    max-width: 800px;
    margin: 0 auto;
}
.faq h2 { text-align: center; font-size: 3rem; margin-bottom: 4rem; font-weight: 900; letter-spacing: -1px; }
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}
.faq-item h4 { font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; color: white; }
.faq-item p { color: var(--text-muted); font-size: 1.1rem; }

/* 7. CTA SECTION */
.cta-section {
    padding: 10rem 5%;
    text-align: center;
    background: linear-gradient(0deg, #111 0%, transparent 100%);
}
.cta-section h2 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 2rem; }

/* FOOTER */
footer {
    padding: 4rem 5%;
    display: flex; flex-direction: column; align-items: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}
.footer-logo { margin-bottom: 2rem; opacity: 0.5; }
.footer-links { display: flex; gap: 2rem; margin-top: 1.5rem; }
.footer-links a:hover { color: white; }

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