:root {
    --primary-blue: #003399;
    --secondary-blue: #0052CC;
    --accent-gold: #FFD700;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --bg-gradient-start: #001a4d;
    --bg-gradient-end: #003399;
    --success-green: #28a745;
    --error-red: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
    color: var(--text-light);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 82, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.status-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-gold), #ffed4e);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.site-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--text-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1.2s ease-out;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.coming-soon {
    margin: 2rem 0;
}

.coming-text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.signup-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1.4s ease-out;
}

.signup-section h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.signup-description {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.signup-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.15);
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--accent-gold), #ffed4e);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #5cb85c;
    border: 1px solid rgba(40, 167, 69, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
    display: block;
}

.partners {
    margin-top: 4rem;
    text-align: center;
    animation: fadeIn 1.6s ease-out;
}

.partners-label {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partners-grid.triangle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 750px;
    margin: 0 auto;
    gap: 2rem;
}

.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
    width: 100%;
}

.partner:hover {
    transform: translateY(-5px);
}

.partner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.partner-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    opacity: 0.9;
}

.partner-logo.aws {
    filter: none;
    width: 120px;
    height: 80px;
}

.partner-logo.geniusee {
    filter: none;
    width: 120px;
    height: 80px;
}

.partner-logo.portrait {
    width: 120px;
    height: 80px;
    object-fit: cover;
    filter: none;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
}

.partner span {
    font-size: 0.9rem;
    opacity: 0.8;
}

footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: fadeIn 1.8s ease-out;
}

.developer-credit {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.developer-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.developer-credit a:hover {
    opacity: 0.8;
}

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

.footer-links {
    margin-top: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.cookie-btn.accept:hover {
    background: #ffed4e;
}

.cookie-btn.reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }
    
    .site-title {
        font-size: 1.75rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-text {
        font-size: 1.25rem;
    }
    
    .signup-section {
        padding: 1.5rem 1rem;
    }
    
    .signup-section h3 {
        font-size: 1.25rem;
    }
    
    input[type=\"email\"] {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    header {
        margin-bottom: 2rem;
    }
    
    .status-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .site-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .coming-text {
        font-size: 1.5rem;
    }
    
    .signup-section {
        padding: 2rem 1.25rem;
        margin: 0 -0.5rem;
        border-radius: 15px;
    }
    
    .signup-section h3 {
        font-size: 1.5rem;
    }
    
    .signup-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    input[type="email"] {
        font-size: 16px;
        padding: 0.875rem 1rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .partners {
        margin-top: 3rem;
    }
    
    .partners-label {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .partners-grid.triangle {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 280px;
    }
    
    .partner {
        padding: 1rem;
    }
    
    .partner-logo {
        width: 96px;
        height: 64px;
    }
    
    .partner-logo.aws {
        width: 96px;
        height: 64px;
    }
    
    .partner-logo.geniusee {
        width: 96px;
        height: 64px;
    }
    
    .partner-logo.portrait {
        width: 96px;
        height: 64px;
    }
    
    footer {
        margin-top: 3rem;
        padding-top: 1.5rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.7rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .cookie-link {
        font-size: 0.85rem;
    }
}