:root {
    --bg-1: #0a192f;
    --bg-2: #041628;
    --accent-1: #64ffda;
    --accent-2: #00b4d8;
    --deep: #ccd6f6;
    --muted: #8892b0;
    --glass: rgba(10, 25, 47, 0.7);
    --card-bg: rgba(17, 34, 64, 0.8);
    --radius: 12px;
    --max-width: 1000px;
    --counter-size: 120px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
    background: linear-gradient(180deg, var(--bg-1), var(--bg-2) 60%);
    color: var(--deep);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

.site-header {
    padding: 18px 20px
}

.brand {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px
}

.logo {
    width: 64px;
    height: 64px
}

.brand-text h1 {
    margin: 0;
    font-size: 1.125rem;
    letter-spacing: 0.6px
}

.brand-text .sub {
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    position: relative;
    overflow: hidden
}

.hero-inner {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.9), rgba(4, 22, 40, 0.8));
    backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(100, 255, 218, 0.1)
}

.headline {
    margin: 0 0 10px 0;
    font-size: 2rem;
    color: var(--deep)
}

.lead {
    margin: 0 0 18px 0;
    color: var(--muted);
    line-height: 1.4
}

.visitor-counter {
    display: flex;
    justify-content: center;
    margin: 24px 0
}

.counter-box {
    width: var(--counter-size);
    height: var(--counter-size);
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    overflow: hidden;
}

.counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.counter-box span {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-1);
    line-height: 1;
}

.counter-box p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--deep);
    opacity: 0.8;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 22px
}

.card {
    background: var(--card-bg);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(100, 255, 218, 0.3);
}

.card h3 {
    margin: 0 0 6px 0;
    color: var(--accent-1)
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem
}

.decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1
}

.manta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
    width: 140%;
    height: 140%;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.1));
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.waves {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 120%;
    height: 160px;
    opacity: 0.9;
    z-index: 1;
}

.site-footer {
    padding: 18px 20px;
    background: transparent;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem
}

.site-footer .small {
    margin: 6px 0 0 0;
    font-size: 0.8rem
}

.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap
}

/* Bubbles animation (decorative) */
.hero:before,
.hero:after {
    content: "";
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none
}

.hero:before {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, rgba(0, 180, 216, 0.55), transparent 40%);
    left: -60px;
    top: -40px;
    animation: float 8s ease-in-out infinite
}

.hero:after {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 70% 70%, rgba(0, 119, 182, 0.5), transparent 40%);
    right: -40px;
    bottom: 20px;
    animation: float 10s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }

    100% {
        transform: translateY(0)
    }
}

/* Responsive tweaks */
@media (min-width:720px) {
    .headline {
        font-size: 2.6rem
    }

    .hero-inner {
        padding: 48px
    }

    .subscribe {
        flex-direction: row;
        align-items: center
    }

    .subscribe input[type="email"] {
        flex: 1;
        margin-right: 8px
    }
}

@media (max-width:420px) {
    .logo {
        width: 48px;
        height: 48px
    }

    .headline {
        font-size: 1.6rem
    }
}

/* Small visual polish for keyboard users */
input:focus,
button:focus {
    outline: 3px solid rgba(0, 180, 216, 0.18);
    outline-offset: 3px
}





.header-container {

    height: 800px;
    position: relative;
    overflow: hidden;

}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;

}

video {

    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: center bottom;

}

@media only screen and (max-width: 480px) {

    .header-container {
        height: 200px;
    }

}