/* Beyond Sight Group - Coming Soon Styles
   Adapted from Nimbus dashboard design system */

:root {
    --bg: #0b0f17;
    --panel: #111826;
    --panel-2: #0d1420;
    --text: #e6edf3;
    --muted: #9fb0c0;
    --accent: #59c2ff;
    --accent-2: #6ee7b7;
    --warn: #f59e0b;
    --danger: #ef4444;
    --border: #1f2a3a;
    --chip: #192335;
}

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

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: radial-gradient(1200px 800px at 70% 10%, #0f1626 0%, var(--bg) 60%), var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, "Segoe UI Variable", "SF Pro", Arial, sans-serif;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
}


.main-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.company-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
}

.company-name::before {
    content: "Beyond Sight Group";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: textShimmer 4s ease-in-out infinite;
}

.group-text {
    font-weight: 300;
    font-size: 0.8em;
}

@keyframes textShimmer {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.description {
    font-size: 1.125rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-section {
    margin-bottom: 3rem;
}

/* Iframe container styling */
.cta-section iframe {
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.cta-section iframe:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-info {
    color: var(--muted);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Background decoration */
.bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(89, 194, 255, 0.1), transparent);
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
}

.bg-decoration::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(110, 231, 183, 0.08), transparent);
    border-radius: 50%;
    animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-40px, -20px) rotate(180deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .cta-section iframe {
        width: 100%;
        height: 280px;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .description {
        font-size: 1rem;
    }
    
    .cta-section iframe {
        width: 100%;
        height: 250px;
    }
}
