/* Coming Soon Page Styles */
:root {
    --primary-color: #6366f1;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --border-color: #e2e8f0;
}

[data-theme=dark] {
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-light: #64748b;
    --bg-primary: #0f172a;
    --border-color: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #ffeaea 0%, #f0fdf4 50%, #f3f4f6 100%);
    min-height: 100vh;
    transition: all 0.3s ease;
}

[data-theme=dark] body {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.coming-soon-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.coming-soon-controls {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.lang-form {
    display: inline;
}

.lang-button {
    background: rgba(30, 41, 59, 0.1);
    border: 1px solid rgba(30, 41, 59, 0.2);
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(30, 41, 59, 0.8);
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.lang-button:hover {
    border-color: rgba(30, 41, 59, 0.4);
    background: rgba(30, 41, 59, 0.15);
    color: #1e293b;
}

[data-theme=dark] .lang-button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

[data-theme=dark] .lang-button:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.lang-current {
    color: #6366f1;
    font-weight: 600;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    margin: 0 0.1rem;
}

.lang-next {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.lang-button:hover .lang-next {
    opacity: 0.8;
    color: white;
}

.theme-toggle {
    background: rgba(30, 41, 59, 0.1);
    border: 1px solid rgba(30, 41, 59, 0.2);
    border-radius: 20px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    border-color: rgba(30, 41, 59, 0.4);
    background: rgba(30, 41, 59, 0.15);
}

[data-theme=dark] .theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme=dark] .theme-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.theme-icon {
    font-size: 18px;
    transition: all 0.3s ease;
    position: absolute;
    color: #1e293b;
}

[data-theme=dark] .theme-icon {
    color: white;
}

.theme-icon--light {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-icon--dark {
    opacity: 0;
    transform: rotate(180deg) scale(0.5);
}

[data-theme=dark] .theme-icon--light {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
}

[data-theme=dark] .theme-icon--dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Origami Background Animation */
.origami-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.origami-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    top: 20%;
    right: 15%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.shape-4 {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #a8caba, #5d4e75);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    top: 60%;
    right: 25%;
    animation-delay: -15s;
    animation-duration: 28s;
}

.shape-5 {
    width: 110px;
    height: 110px;
    background: linear-gradient(45deg, #ff8a80, #ff80ab);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
    top: 40%;
    left: 5%;
    animation-delay: -20s;
    animation-duration: 32s;
}

.shape-6 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #84fab0, #8fd3f4);
    clip-path: polygon(50% 0%, 100% 25%, 82% 100%, 18% 100%, 0% 25%);
    bottom: 10%;
    right: 10%;
    animation-delay: -8s;
    animation-duration: 26s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-60px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.05);
    }
}

/* Content Styles */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #1e293b;
    width: calc(100% - 160px);
    margin: 0 80px;
    padding: 2rem 0;
}

[data-theme=dark] .content {
    color: white;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.coming-soon-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(30, 41, 59, 0.7);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

[data-theme=dark] .coming-soon-text {
    color: rgba(255, 255, 255, 0.8);
}

.logo-text {
    color: #1e293b;
}

[data-theme=dark] .logo-text {
    color: white;
}

.logo-accent {
    color: #6366f1;
    text-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.main-content .tagline {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ff9a9e, #a8edea, #ffecd2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.content-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.intro-card .card-icon {
    animation: sparkle 2s ease-in-out infinite;
}

.description-card .card-icon {
    animation: bounce 3s ease-in-out infinite;
}

.process-card .card-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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

.content-card p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.cta-section {
    background: linear-gradient(135deg, rgba(255, 154, 158, 0.2), rgba(168, 237, 234, 0.2));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
    animation: rocket 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    50% { transform: translateY(-5px) rotate(-2deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

.cta-section .cta {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 1;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.simple-content {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.simple-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .main-content .tagline {
        font-size: 2rem;
    }
    
    .content-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .content-card p {
        font-size: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-icon {
        font-size: 2.5rem;
    }
    
    .cta-section .cta {
        font-size: 1.1rem;
    }
    
    .content {
        padding: 1rem;
    }
    
    /* Adjust origami shapes for mobile */
    .origami-shape {
        opacity: 0.05;
    }
    
    .shape-1, .shape-3, .shape-5 {
        width: 80px;
        height: 80px;
    }
    
    .shape-2, .shape-4, .shape-6 {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .main-content .tagline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .content-cards {
        gap: 0.75rem;
    }
    
    .content-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .content-card p {
        font-size: 0.95rem;
    }
    
    .card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-section {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .cta-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-section .cta {
        font-size: 1rem;
    }
    
    .coming-soon-controls {
        top: 1rem;
        right: 1rem;
        gap: 0.25rem;
    }
    
    .lang-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .theme-toggle {
        width: 36px;
        height: 36px;
        padding: 0.4rem;
    }
    
    .theme-icon {
        font-size: 16px;
    }
}

/* Footer */
.coming-soon-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(30, 41, 59, 0.1);
    z-index: 5;
}

[data-theme=dark] .coming-soon-footer {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
    padding: 1rem;
}

.footer-link {
    background: none;
    border: none;
    color: rgba(30, 41, 59, 0.7);
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: inherit;
    text-decoration: underline;
}

.footer-link:hover {
    color: #1e293b;
}

[data-theme=dark] .footer-link {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme=dark] .footer-link:hover {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme=dark] .modal-content {
    background: #1e293b;
    color: #f1f5f9;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1e293b;
}

[data-theme=dark] .modal-close:hover {
    color: #f1f5f9;
}

.modal-body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

[data-theme=dark] .modal-body h3 {
    color: #f1f5f9;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #64748b;
}

[data-theme=dark] .modal-body p {
    color: #94a3b8;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
}