:root {
    --primary-glow: #00f6ff;
    --secondary-glow: #ff00c8;
    --background-dark: #0f0518;
    --panel-background: rgba(25, 12, 41, 0.4);
    --text-primary: #f0e8ff;
    --text-secondary: #c0b8d8;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.background-animation {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 30%), 
                radial-gradient(circle, var(--secondary-glow) 0%, transparent 30%);
    background-size: 40% 40%, 30% 30%;
    background-position: 0% 0%, 100% 100%;
    background-repeat: no-repeat;
    animation: moveGlow 25s linear infinite;
    opacity: 0.15;
    filter: blur(100px);
}

@keyframes moveGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10%, 20%) rotate(90deg); }
    50% { transform: translate(20%, -10%) rotate(180deg); }
    75% { transform: translate(-10%, -20%) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 90%;
    max-width: 1100px;
    padding: 2rem;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

.content-panel, .bento-item {
    background: var(--panel-background);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.content-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 8px var(--primary-glow), 0 0 16px var(--primary-glow);
    margin: 0;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.launch-info h2 {
    font-size: 1.5rem;
    color: var(--primary-glow);
}

.countdown {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.countdown div { text-align: center; }
.countdown span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--secondary-glow);
    display: block;
}
.countdown small {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.cta-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
}

.signup-form {
    display: flex;
    margin-top: 1rem;
}

.signup-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
    background: rgba(0,0,0,0.2);
    color: var(--text-primary);
    font-size: 1rem;
}

.signup-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0 8px 8px 0;
    background: var(--secondary-glow);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.signup-form button:hover {
    background: var(--primary-glow);
    color: var(--background-dark);
}

/* --- Corrected Bento Grid Layout --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.item-content {
    text-align: center;
    transition: transform 0.3s ease;
}

.bento-item:hover .item-content {
    transform: scale(1.05);
}

.item-content .icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.item-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.item-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.item-2 { /* Product Spotlight */
    min-height: 400px; /* Ensure it takes up full height */
}

.product-spotlight h3 {
    color: var(--primary-glow);
}

.product-image-placeholder {
    width: 70%;
    aspect-ratio: 1 / 1;
    margin: 1rem auto;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
    opacity: 0.3;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 246, 255, 0.4); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(0, 246, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 246, 255, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .main-container, .bento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .main-container { padding: 1rem; }
    .content-panel, .bento-item { padding: 1.5rem; }
    .countdown { gap: 0.8rem; }
    .countdown span { font-size: 2rem; }
    .signup-form { flex-direction: column; gap: 0.5rem; }
    .signup-form input, .signup-form button { border-radius: 8px; }
}
