html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(0, 174, 240, 0.10), transparent 32%),
        radial-gradient(circle at 85% 10%, rgba(26, 35, 126, 0.12), transparent 28%),
        linear-gradient(180deg, #f6fbff 0%, #ffffff 38%, #f8fafc 100%);
    color: #102033;
    -webkit-font-smoothing: antialiased;
}

a {
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

::selection {
    background: rgba(0, 174, 240, 0.18);
    color: #08111f;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #edf4fb;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00aef0, #1a237e);
    border-radius: 999px;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 90%);
    opacity: 0.45;
}

.nav-scrolled {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(16, 32, 51, 0.08);
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo-image {
    height: 3.25rem;
    width: auto;
    max-width: 14rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(26, 35, 126, 0.16));
}

.brand-mark-badge {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #00aef0 0%, #1a237e 100%);
    color: white;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(26, 35, 126, 0.22);
}

.brand-mark-text {
    line-height: 1;
}

.brand-mark-title {
    font-size: 0.96rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
}

.brand-mark-subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(16, 32, 51, 0.55);
    margin-top: 0.25rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(16, 32, 51, 0.08);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.85;
    pointer-events: none;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(16, 32, 51, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 32, 51, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
}

.gradient-text {
    background: linear-gradient(135deg, #1a237e 0%, #00aef0 45%, #17c6a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1a237e 0%, #00aef0 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(26, 35, 126, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(26, 35, 126, 0.26);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 51, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #102033;
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 174, 240, 0.4);
    box-shadow: 0 16px 30px rgba(16, 32, 51, 0.08);
}

.stat-card,
.info-card,
.career-card,
.legal-card,
.story-card {
    border-radius: 1.8rem;
    border: 1px solid rgba(16, 32, 51, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(16, 32, 51, 0.06);
}

.story-card:hover,
.info-card:hover,
.career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 64px rgba(16, 32, 51, 0.1);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 800;
    color: #1a237e;
}

.section-eyebrow::before {
    content: "";
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, #00aef0, rgba(0, 174, 240, 0));
}

.metric-value {
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 800;
    color: #102033;
}

.metric-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(16, 32, 51, 0.52);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -28% auto;
    width: 36rem;
    height: 36rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(0, 174, 240, 0.14), transparent 68%);
    pointer-events: none;
}

.feature-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 174, 240, 0.12), rgba(26, 35, 126, 0.12));
    color: #1a237e;
}

.timeline-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #00aef0, #1a237e);
    box-shadow: 0 0 0 8px rgba(0, 174, 240, 0.08);
}

.footer-title {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: rgba(16, 32, 51, 0.08);
}

.faq-item.active .faq-content {
    max-height: 18rem;
}

.faq-icon {
    transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.field-input {
    width: 100%;
    border-radius: 1.15rem;
    border: 1px solid rgba(16, 32, 51, 0.12);
    background: rgba(255, 255, 255, 0.84);
    padding: 1rem 1.1rem;
    color: #102033;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field-input:focus {
    border-color: rgba(0, 174, 240, 0.7);
    box-shadow: 0 0 0 4px rgba(0, 174, 240, 0.12);
}

.job-chip {
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: rgba(16, 32, 51, 0.06);
    color: rgba(16, 32, 51, 0.76);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-menu-open {
    overflow: hidden;
}

.chat-launcher {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 130;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #18c964 0%, #0bbf8a 100%);
    color: white;
    padding: 0.95rem 1.15rem;
    box-shadow: 0 20px 40px rgba(11, 191, 138, 0.26);
}

.chat-panel {
    position: fixed;
    right: 1.25rem;
    bottom: 6.25rem;
    z-index: 130;
    width: min(24rem, calc(100vw - 2rem));
    border-radius: 1.6rem;
    overflow: hidden;
    border: 1px solid rgba(16, 32, 51, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(16, 32, 51, 0.16);
    transform: translateY(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.chat-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.chat-bubble-user,
.chat-bubble-bot {
    max-width: 88%;
    border-radius: 1.1rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.chat-bubble-user {
    margin-left: auto;
    background: linear-gradient(135deg, #1a237e 0%, #00aef0 100%);
    color: white;
}

.chat-bubble-bot {
    background: #eef6ff;
    color: #102033;
}

.chat-suggestion {
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 51, 0.1);
    background: white;
    padding: 0.6rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #102033;
}

.chat-suggestion:hover {
    border-color: rgba(0, 174, 240, 0.5);
    color: #00aef0;
}

@media (max-width: 1023px) {
    .site-shell::before {
        background-size: 48px 48px;
    }
}

.map-embed {
    width: 100%;
    min-height: 25rem;
    border: 0;
    border-radius: 1.75rem;
}

.satellite-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    min-height: 25rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(17, 197, 154, 0.22), transparent 18%),
        radial-gradient(circle at 50% 50%, rgba(0, 174, 240, 0.18), transparent 28%),
        linear-gradient(135deg, #0b1727 0%, #12233f 48%, #0f5b63 100%);
}

.satellite-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.satellite-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.4;
}

.satellite-ring,
.satellite-ring::before,
.satellite-ring::after {
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    content: "";
}

.satellite-ring {
    width: 6rem;
    height: 6rem;
    animation: satellitePulse 4s ease-out infinite;
}

.satellite-ring::before {
    width: 11rem;
    height: 11rem;
    animation: satellitePulse 4s ease-out 0.6s infinite;
}

.satellite-ring::after {
    width: 16rem;
    height: 16rem;
    animation: satellitePulse 4s ease-out 1.2s infinite;
}

.satellite-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.12);
    transform: translate(-50%, -50%);
}

@keyframes satellitePulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.7);
    }
    25% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

@media (max-width: 767px) {
    .brand-logo-image {
        height: 2.7rem;
        max-width: 10rem;
    }

    .chat-launcher {
        right: 0.85rem;
        bottom: 0.85rem;
        padding: 0.85rem 1rem;
    }

    .chat-panel {
        right: 0.85rem;
        bottom: 5.7rem;
        width: calc(100vw - 1.7rem);
    }

    .map-embed,
    .satellite-card {
        min-height: 19rem;
    }
}
