* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(ellipse at center, #001122 0%, #000510 40%, #000208 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Enhanced Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
    filter: blur(1px);
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    background: radial-gradient(circle, #00bfff, transparent);
    animation-delay: 0s;
    box-shadow: 0 0 20px #00bfff;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    right: 15%;
    background: radial-gradient(circle, #00ff7f, transparent);
    animation-delay: 2s;
    box-shadow: 0 0 25px #00ff7f;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 20%;
    background: radial-gradient(circle, #8a2be2, transparent);
    animation-delay: 4s;
    box-shadow: 0 0 15px #8a2be2;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 30%;
    right: 30%;
    background: radial-gradient(circle, #1e90ff, transparent);
    animation-delay: 1s;
    box-shadow: 0 0 20px #1e90ff;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 10%;
    right: 50%;
    background: radial-gradient(circle, #00ced1, transparent);
    animation-delay: 3s;
    box-shadow: 0 0 18px #00ced1;
}

.particle:nth-child(6) {
    width: 3px;
    height: 3px;
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, #9370db, transparent);
    animation-delay: 5s;
    box-shadow: 0 0 15px #9370db;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) translateX(-15px);
        opacity: 1;
    }
    75% {
        transform: translateY(-25px) translateX(10px);
        opacity: 0.7;
    }
}

/* Main Content */
.content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    margin-bottom: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo-icon {
    position: relative;
}

.hexagon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00bfff 0%, #0080ff 50%, #0040ff 100%);
    position: relative;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(0deg);
    transition: all 0.4s ease;
    box-shadow: 
        0 0 30px rgba(0, 191, 255, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 191, 255, 0.3);
}

.hexagon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00bfff, #00ff7f, #8a2be2, #00bfff);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hexagon:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 
        0 0 50px rgba(0, 191, 255, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.hexagon span {
    color: white;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.company-name {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00bfff 0%, #00ff7f 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
    animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Hero Section with DNA Helix */
.hero-section {
    margin-bottom: 4rem;
    position: relative;
}

.dna-helix {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto 2rem;
}

.helix-strand {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #00bfff 25%,
        #00ff7f 50%,
        #8a2be2 75%,
        transparent 100%
    );
    border-radius: 2px;
    animation: dnaRotate 3s linear infinite;
}

.helix-strand:nth-child(1) {
    top: 30%;
    animation-delay: 0s;
}

.helix-strand:nth-child(2) {
    top: 70%;
    animation-delay: 1.5s;
    animation-direction: reverse;
}

@keyframes dnaRotate {
    0% { 
        transform: scaleY(1) rotateY(0deg);
        opacity: 1;
    }
    25% { 
        transform: scaleY(0.3) rotateY(90deg);
        opacity: 0.7;
    }
    50% { 
        transform: scaleY(1) rotateY(180deg);
        opacity: 1;
    }
    75% { 
        transform: scaleY(0.3) rotateY(270deg);
        opacity: 0.7;
    }
    100% { 
        transform: scaleY(1) rotateY(360deg);
        opacity: 1;
    }
}

.description {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

/* Bio Patterns */
.bio-patterns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cell-pattern {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0, 191, 255, 0.4);
    border-radius: 50%;
    position: relative;
    animation: cellPulse 2s ease-in-out infinite;
}

.cell-pattern:nth-child(2) {
    animation-delay: 0.7s;
    border-color: rgba(0, 255, 127, 0.4);
}

.cell-pattern:nth-child(3) {
    animation-delay: 1.4s;
    border-color: rgba(138, 43, 226, 0.4);
}

.cell-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, currentColor 30%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

@keyframes cellPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 currentColor;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px transparent;
    }
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 4rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #00bfff;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pulse {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #00bfff 30%, transparent 70%);
    border-radius: 50%;
    animation: biopulse 2s infinite;
    box-shadow: 0 0 20px #00bfff;
}

@keyframes biopulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.7);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 15px rgba(0, 191, 255, 0);
    }
    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(0, 191, 255, 0);
    }
}

/* Enhanced Timer */
.launch-timer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.timer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 10, 30, 0.8);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 191, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 191, 255, 0.3);
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.timer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 191, 255, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00bfff 0%, #00ff7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.5);
}

.label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    font-weight: 300;
}

/* Enhanced Notify Section */
.notify-section {
    margin-bottom: 3rem;
}

.notify-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.notify-form input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    border: 2px solid rgba(0, 191, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(0, 10, 30, 0.6);
    color: white;
    backdrop-filter: blur(10px);
    height: 50px;
    box-sizing: border-box;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.notify-form input:focus {
    border-color: #00bfff;
    box-shadow: 
        0 0 0 3px rgba(0, 191, 255, 0.2),
        0 0 20px rgba(0, 191, 255, 0.3);
    background: rgba(0, 20, 50, 0.8);
}

.notify-form button {
    padding: 0;
    background: transparent;
    color: white;
    border: 2px solid #00bfff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    width: 140px;
    height: 50px;
    font-family: 'Courier New', monospace;
}

.btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: rgba(0, 191, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 700;
}

.notify-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 191, 255, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.notify-form button:hover::before {
    left: 100%;
}

.notify-form button:hover {
    border-color: #00ff7f;
    box-shadow: 
        0 0 20px rgba(0, 191, 255, 0.6),
        inset 0 0 20px rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
}

.notify-form button:hover .btn-text {
    background: rgba(0, 255, 127, 0.15);
    color: #00ff7f;
}

.notify-form button:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    font-weight: 300;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .company-name {
        font-size: 3.5rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .particle {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }
    
    .company-name {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .description {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .notify-form input {
        width: 100%;
        text-align: center;
    }
    
    .notify-form button {
        width: 120px;
        height: 45px;
    }
    
    .btn-text {
        font-size: 0.8rem;
    }
    
    .logo {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hexagon {
        width: 70px;
        height: 70px;
    }
    
    .hexagon span {
        font-size: 24px;
    }
    
    .bio-patterns {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .cell-pattern {
        width: 50px;
        height: 50px;
    }
    
    .dna-helix {
        width: 150px;
        height: 80px;
    }
    
    .hero-section {
        margin-bottom: 3rem;
    }
    
    .logo-section {
        margin-bottom: 3rem;
    }
    
    .coming-soon {
        margin-bottom: 3rem;
    }
    
    .notify-section {
        margin-bottom: 2rem;
    }
    
    /* Hide some particles on mobile for performance */
    .particle:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .description {
        font-size: 1rem;
        letter-spacing: 1px;
        line-height: 1.4;
    }
    
    .hexagon {
        width: 60px;
        height: 60px;
    }
    
    .hexagon span {
        font-size: 20px;
    }
    
    .bio-patterns {
        gap: 0.5rem;
    }
    
    .cell-pattern {
        width: 40px;
        height: 40px;
    }
    
    .dna-helix {
        width: 120px;
        height: 60px;
    }
    
    .status-indicator {
        font-size: 1rem;
        gap: 0.4rem;
    }
    
    .pulse {
        width: 12px;
        height: 12px;
    }
    
    .notify-form input {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .notify-form button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .content {
        padding: 0.5rem;
    }
    
    .hero-section {
        margin-bottom: 2rem;
    }
    
    .logo-section {
        margin-bottom: 2rem;
    }
    
    .coming-soon {
        margin-bottom: 2rem;
    }
    
    /* Further reduce particles on small screens */
    .particle:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 320px) {
    .company-name {
        font-size: 2rem;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .hexagon {
        width: 50px;
        height: 50px;
    }
    
    .hexagon span {
        font-size: 18px;
    }
    
    .dna-helix {
        width: 100px;
        height: 50px;
    }
    
    .cell-pattern {
        width: 35px;
        height: 35px;
    }
}

/* Success state for form */
.success-message {
    background: linear-gradient(135deg, #00ff7f, #00bfff);
    color: #001122;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    animation: slideIn 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.error-message {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    animation: slideIn 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional biotech effects */
.particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 2px;
    background: inherit;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: innerGlow 4s ease-in-out infinite;
}

@keyframes innerGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(2);
    }
}
