/* Freeshot Website – Shared Styles */

:root {
    --ink-900: #0b1222;
    --ink-700: #1c2a44;
    --brand-1: #2563eb;
    --brand-2: #0ea5e9;
    --surface-soft: #f7f9fc;
    --surface-card: #ffffff;
    --line-soft: #e6ebf3;
}

.gradient-hero {
    background:
        radial-gradient(55rem 55rem at 10% -15%, rgba(14, 165, 233, 0.28), transparent 70%),
        radial-gradient(45rem 45rem at 95% 10%, rgba(37, 99, 235, 0.35), transparent 70%),
        linear-gradient(125deg, #0b1222 0%, #12203a 42%, #1a3a78 100%);
}

.hero-grid {
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 85%);
}

.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-glass {
    background: rgba(6, 12, 24, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(3, 8, 20, 0.35);
}

.mobile-nav-link {
    display: block;
    font-size: 1.125rem;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.15rem 0;
    transition: color 180ms ease;
}

.mobile-nav-link:hover {
    color: #ffffff;
}

.mobile-menu-divider {
    height: 1px;
    margin: 0.15rem 0 0.35rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
}

.surface-card {
    background: var(--surface-card);
    border: 1px solid var(--line-soft);
    border-radius: 1rem;
    box-shadow: 0 6px 26px rgba(10, 24, 56, 0.05);
}

.feature-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #cfd9ea;
    box-shadow: 0 18px 40px rgba(10, 24, 56, 0.09);
}

.screenshot-shadow {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.screenshot-frame {
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 8, 23, 0.96));
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(2, 8, 23, 0.32);
}

.screenshot-media {
    display: block;
    width: 100%;
    height: auto;
}

.screenshot-caption {
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0.65rem 0.85rem 0.8rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.58);
}

.soft-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-gradient {
    background: linear-gradient(120deg, var(--brand-1), var(--brand-2));
    color: #fff;
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.35);
}

.btn-gradient:hover {
    filter: brightness(1.04);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.float-animation {
    animation: float 6s ease-in-out infinite;
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}
.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }
.delay-400 { animation-delay: 0.4s; opacity: 0; }

.swiss-flag-icon {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
    position: relative;
    top: 3px;
    margin-left: 10px;
}
