/* BiotechWorld Coming Soon Page - Dark Blue Scientific Theme */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --background: 222 47% 6%;
    --foreground: 210 40% 96%;
    --biotech-dark: 222 47% 6%;
    --biotech-navy: 210 60% 15%;
    --biotech-blue: 205 75% 45%;
    --biotech-cyan: 199 89% 48%;
    --biotech-glow: 199 100% 60%;
    --biotech-deep: 222 50% 12%;
    --border: 222 30% 18%;
    --radius: 0.75rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* DNA Particle Background */
.dna-strand {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.dna-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: hsl(var(--biotech-cyan));
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 20s infinite linear;
    box-shadow: 0 0 10px hsl(var(--biotech-cyan));
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-wrapper {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.dna-icon {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px hsl(var(--biotech-cyan) / 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.dna-helix {
    animation: dna-rotate 10s linear infinite;
    transform-origin: center;
}

@keyframes dna-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.tagline {
    font-size: 1.25rem;
    color: hsl(var(--biotech-cyan));
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Content Section */
.content-section {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: hsl(210 40% 85%);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: hsl(var(--biotech-cyan));
    filter: drop-shadow(0 0 10px hsl(var(--biotech-cyan) / 0.5));
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.feature-card p {
    font-size: 1rem;
    color: hsl(210 40% 75%);
    line-height: 1.6;
}

/* Biotech Card Style */
.biotech-card {
    background: linear-gradient(145deg, hsl(222 47% 10%) 0%, hsl(222 47% 7%) 100%);
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.biotech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsl(199 89% 48% / 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.biotech-card:hover {
    border-color: hsl(var(--biotech-cyan) / 0.5);
    box-shadow: 0 0 30px hsl(199 89% 48% / 0.2);
    transform: translateY(-4px);
}

.biotech-card:hover::before {
    opacity: 1;
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 4rem;
}

.countdown-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, hsl(var(--foreground)) 0%, hsl(var(--biotech-cyan)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-item {
    padding: 2rem 1rem;
    text-align: center;
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: hsl(var(--biotech-cyan));
    text-shadow: 0 0 20px hsl(var(--biotech-cyan) / 0.5);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: hsl(210 40% 75%);
}

/* Notification Section */
.notify-section {
    margin-bottom: 4rem;
}

.notify-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, hsl(var(--foreground)) 0%, hsl(var(--biotech-cyan)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notify-description {
    font-size: 1.125rem;
    color: hsl(210 40% 75%);
    margin-bottom: 2rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.biotech-input {
    flex: 1;
    min-width: 250px;
    background: hsl(var(--biotech-deep));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: all 0.3s;
}

.biotech-input:focus {
    outline: none;
    border-color: hsl(var(--biotech-cyan));
    box-shadow: 0 0 15px hsl(199 89% 48% / 0.2);
}

.biotech-input::placeholder {
    color: hsl(215 20% 55%);
}

.btn-hero {
    background: linear-gradient(135deg, hsl(205 75% 45%) 0%, hsl(199 89% 48%) 100%);
    color: hsl(var(--foreground));
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px hsl(199 89% 48% / 0.4);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(0 0% 100% / 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsl(199 89% 48% / 0.6);
}

.btn-hero:hover::before {
    left: 100%;
}

.form-message {
    font-size: 1rem;
    margin-top: 1rem;
    min-height: 1.5rem;
}

.form-message.success {
    color: hsl(142 76% 36%);
}

.form-message.error {
    color: hsl(0 84% 60%);
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    color: hsl(var(--biotech-cyan));
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: hsl(var(--biotech-glow));
    filter: drop-shadow(0 0 10px hsl(var(--biotech-cyan)));
    transform: translateY(-3px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.copyright {
    font-size: 0.875rem;
    color: hsl(215 20% 55%);
}

/* Utility Classes */
.gradient-text {
    background: linear-gradient(135deg, hsl(var(--foreground)) 0%, hsl(var(--biotech-cyan)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow {
    text-shadow: 0 0 20px hsl(var(--biotech-cyan) / 0.5);
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px hsl(var(--biotech-cyan)));
    }
    50% {
        opacity: 0.6;
        filter: drop-shadow(0 0 15px hsl(var(--biotech-cyan)));
    }
}

/* Fade in animations */
.fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .biotech-input {
        width: 100%;
    }

    .btn-hero {
        width: 100%;
    }

    .dna-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }
}
