/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1e3a8a;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(30, 58, 138, 0.2));
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
    letter-spacing: -0.02em;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 0 0;
    text-align: center;
    z-index: 2;
}

.geometric-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

/* Geometric Shapes */
.triangle {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.1;
}

.triangle-1 {
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #3b82f6;
    top: 10%;
    left: 10%;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

.triangle-2 {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid #1d4ed8;
    bottom: 20%;
    right: 15%;
    transform: rotate(-20deg);
    animation: float 8s ease-in-out infinite reverse;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: #2563eb;
    top: 30%;
    right: 5%;
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: #1e40af;
    bottom: 40%;
    left: 5%;
    animation: pulse 6s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.08; }
    50% { transform: scale(1.1); opacity: 0.12; }
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(30, 58, 138, 0.1);
}

.unified-announcement {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 0.5rem 2.5rem 3rem 2.5rem;
    margin: 2rem auto;
    box-shadow: 0 30px 60px rgba(30, 58, 138, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.unified-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #2563eb);
    border-radius: 32px 32px 0 0;
}

.startup-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    
    /* Beautiful gradient text */
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Enhanced text shadow for depth */
    filter: drop-shadow(0 2px 4px rgba(30, 58, 138, 0.2));
}

.product-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 2rem;
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 2px solid #3b82f6;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    margin-bottom: 2rem;
}

.status-text {
    font-weight: 600;
    color: #1e40af;
    font-size: 1.1rem;
}

.coming-soon h4 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon p {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    position: relative;
}

.footer-content p {
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 1rem;
}

.decorative-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }
    
    .startup-title {
        font-size: 2rem;
    }
    
    .product-name {
        font-size: 2.5rem;
    }
    
    .unified-announcement {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 24px;
    }
    
    .triangle-1 {
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 87px solid #3b82f6;
    }
    
    .triangle-2 {
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-bottom: 52px solid #1d4ed8;
    }
    
    .circle-1 {
        width: 120px;
        height: 120px;
    }
    
    .circle-2 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .startup-title {
        font-size: 1.75rem;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .unified-announcement {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
        border-radius: 20px;
    }
}
