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

:root {
    --primary: #1976D2;
    --primary-dark: #0D47A1;
    --primary-light: #42A5F5;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --glass-bg: rgba(0, 0, 0, 0.5);
    --glass-border: rgba(28,118,210, 0.8);
}

body {
    font-family: 'Sora', sans-serif;
    background: linear-gradient(281deg, var(--bg-dark) 0%, var(--primary) 50%, var(--bg-darker) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    box-sizing: border-box;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 40px; */
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.content-wrapper {
    /* max-width: calc(100% - 100px); */
    width: 100%;
    /* min-width: 460px; */
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding: 60px 55px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 5px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(25, 118, 210, 0.1);
    border: 1px solid var(--glass-border);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Coming Soon Banner
   =================================== */
.coming-soon-banner {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(25, 118, 210, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(25, 118, 210, 0.6);
    }
}

.banner-text {
    font-size: 0.7rem;
    font-weight: 200;
    /* text-transform: uppercase; */
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* ===================================
   Company Name/Logo
   =================================== */
.company-name {
    font-family: 'Nothing You Could Do', cursive;
    font-size: 75px;
    font-weight: 400;
    margin-bottom: 12px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out 0.3s both;
    padding-left: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   Tagline
   =================================== */
.tagline {
    font-size: 15px;
    font-weight: 100;
    color: var(--text-primary);
    animation: fadeIn 1s ease-out 0.5s both;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    margin-bottom: 60px;
    margin-top: 60px;
    animation: fadeIn 1s ease-out 0.7s both;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 30px;
    height: 55px;
    background: var(--glass-bg);
    border: 1px solid transparent;
    border-radius: 4px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
    border-color: var(--primary);
}

.email-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

/* ===================================
   Footer
   =================================== */
.footer {
    font-size: 14px;
    line-height: 23px;
    color: var(--text-primary);
    animation: fadeIn 1s ease-out 0.9s both;
    margin-bottom: 20px;
}

.footer a {
    color: white!important;
    cursor: pointer;
}

.footer a:hover {
    color: white!important;
    text-decoration: underline;
}

/* ===================================
   Background Decoration - Water Effect
   =================================== */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-decoration::before,
.bg-decoration::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
}

.bg-decoration::before {
    background: 
        radial-gradient(circle at 30% 40%, rgba(25, 118, 210, 0.5) 0%, rgba(25, 118, 210, 0.2) 25%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 20%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(66, 165, 245, 0.4) 0%, rgba(13, 71, 161, 0.2) 30%, transparent 48%),
        radial-gradient(circle at 85% 20%, rgba(0, 0, 0, 0.5) 0%, transparent 35%);
    animation: waterFlow1 12s ease-in-out infinite;
}

.bg-decoration::after {
    background: 
        radial-gradient(circle at 60% 30%, rgba(66, 165, 245, 0.45) 0%, rgba(66, 165, 245, 0.15) 28%, transparent 48%),
        radial-gradient(circle at 20% 70%, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 22%, transparent 42%),
        radial-gradient(circle at 80% 50%, rgba(13, 71, 161, 0.35) 0%, transparent 46%),
        radial-gradient(circle at 15% 15%, rgba(0, 0, 0, 0.55) 0%, transparent 38%);
    animation: waterFlow2 15s ease-in-out infinite;
}

@keyframes waterFlow1 {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(8%, -5%) rotate(3deg) scale(1.08);
    }
    50% {
        transform: translate(-6%, 7%) rotate(-4deg) scale(0.94);
    }
    75% {
        transform: translate(5%, 4%) rotate(2deg) scale(1.05);
    }
}

@keyframes waterFlow2 {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    30% {
        transform: translate(-7%, 6%) rotate(-3deg) scale(1.06);
    }
    60% {
        transform: translate(6%, -8%) rotate(4deg) scale(0.92);
    }
    80% {
        transform: translate(-4%, -3%) rotate(-2deg) scale(1.04);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    html {
        overflow: none;
    }
    
    .content-wrapper {
    height: calc(100dvh - 100px);
    max-width: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }
    
    .company-name {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px;
    }
    
    .content-wrapper {
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .coming-soon-banner {
        padding: 0.625rem 1.5rem;
    }
    
    .banner-text {
        font-size: 0.75rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .contact-section {
        /* margin-bottom: 60px; */
    }
    
    .contact-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        gap: 0.5rem;
    }
    
    .email-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .bg-decoration {
        display: none;
    }
    
    .content-wrapper {
        background: white;
        color: black;
        box-shadow: none;
    }
}



html {
    background-color: black;
    overflow: hidden;
    overflow-y: auto;
}