/* Reset & CSS Variables */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #030304;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.25);
    --text-primary: #ffffff;
    --text-secondary: #8a8f98;
    --accent-glow: rgba(255, 255, 255, 0.15);
    --pulse-color: #10b981;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Spotlight Cursor Follower */
#spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: opacity 0.5s ease;
    opacity: 0;
}

body:hover #spotlight {
    opacity: 1;
}

/* Main Container Layout */
.page-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 2.5rem 2rem;
}

/* Header */
.header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    cursor: default;
    user-select: none;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.pulse-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--pulse-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--pulse-color);
    animation: pulse 2s infinite ease-in-out;
}

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

/* Centered Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    max-width: 800px;
    margin: 2rem 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1.2s ease-out forwards;
}

.subtitle-wrapper {
    display: inline-block;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--text-secondary);
    text-transform: uppercase;
    background: linear-gradient(90deg, #8a8f98, #ffffff, #8a8f98);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.coming-soon-heading {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
    user-select: none;
}

.word {
    display: inline-block;
}

.word.glow-effect {
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.35);
}

.word.highlight {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.6;
    font-weight: 300;
}

/* Email Form */
.notify-form {
    margin-top: 1rem;
    width: 100%;
    max-width: 460px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.35rem 0.35rem 0.35rem 1.25rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.input-container:focus-within,
.input-container:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 40px;
    padding: 0.7rem 1.3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.notify-button:hover {
    background: #e6e6e6;
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

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

.btn-icon {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.notify-button:hover .btn-icon {
    transform: translateX(3px);
}

.form-feedback {
    min-height: 1.5rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
}

.form-feedback.success {
    color: #34d399;
}

.form-feedback.error {
    color: #f87171;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

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

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--text-primary);
}

.divider {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.6rem;
}

.copyright {
    opacity: 0.6;
    font-size: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .page-container {
        padding: 1.5rem 1.25rem;
    }
    
    .status-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.65rem;
    }

    .notify-form {
        max-width: 100%;
    }

    .input-container {
        flex-direction: column;
        border-radius: 16px;
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .notify-form input {
        width: 100%;
        text-align: center;
    }

    .notify-button {
        width: 100%;
        justify-content: center;
    }
}
