
/* Top Navigation Bar Layout */
.navbar {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo span {
    color: var(--primary-gold);
}

/* Landing Page Hero Viewport Wrapper */
.hero-wrapper {
    min-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

/* Moving Radar Viewport Box Container */
.radar-viewport {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-container {
    position: relative;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at center, #0e171b 0%, #06090b 100%);
    border: 1px solid rgba(242, 169, 59, 0.2);
    border-radius: 50%;
    box-shadow: 
        0 0 40px rgba(26, 58, 58, 0.15),
        inset 0 0 30px rgba(26, 58, 58, 0.3);
    overflow: hidden;
}

/* Concentric Coordinate Rings */
.radar-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: 
        radial-gradient(circle, transparent 19%, rgba(30, 38, 47, 0.25) 20%, transparent 21%, 
                        transparent 39%, rgba(30, 38, 47, 0.25) 40%, transparent 41%,
                        transparent 59%, rgba(30, 38, 47, 0.25) 60%, transparent 61%,
                        transparent 79%, rgba(30, 38, 47, 0.25) 80%, transparent 81%,
                        transparent 99%, rgba(30, 38, 47, 0.3) 100%);
    pointer-events: none;
}

/* Crosshairs */
.radar-axis-h, .radar-axis-v {
    position: absolute;
    background-color: rgba(242, 169, 59, 0.08);
}
.radar-axis-h { top: 50%; left: 0; width: 100%; height: 1px; }
.radar-axis-v { left: 50%; top: 0; width: 1px; height: 100%; }

/* Outward Radiating Pulse Waves */
.radar-pulse-wave {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    border: 1px solid rgba(26, 188, 156, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: radar-pulse 6s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
.pulse-2 { animation-delay: 2s; }
.pulse-3 { animation-delay: 4s; }

/* Sweep Arm with Trail Fade */
.radar-sweep {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: conic-gradient(from 0deg, rgba(26, 188, 156, 0.2) 0%, rgba(26, 188, 156, 0.03) 15%, transparent 45%);
    border-radius: 50%;
    mask: radial-gradient(circle, transparent 0%, black 100%);
    animation: radar-spin 4s linear infinite;
}

.radar-sweep::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 1px; height: 50%;
    background: linear-gradient(to top, var(--primary-gold), rgba(242, 169, 59, 0.2));
    box-shadow: 0 0 8px var(--primary-gold);
}

/* Targets */
.radar-target {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-gold), 0 0 2px var(--text-white);
    animation: radar-target-glow 3s ease-in-out infinite alternate;
}
.target-1 { top: 28%; left: 42%; animation-delay: 0.2s; }
.target-2 { top: 62%; left: 22%; animation-delay: 1.1s; }
.target-3 { top: 41%; left: 74%; animation-delay: 2.3s; }

/* Subtitle Tagline */
.radar-tagline {
    color: #1abc9c;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 16px;
}

/* Big Typography Headings matching screenshot formatting */
.hero-headline {
    font-size: 3.2rem;
    font-weight: 800;
    max-width: 800px;
    line-height: 1.15;
    color: var(--text-white);
}

.hero-headline span {
    color: var(--primary-gold);
}

/* Animations Keyframes */
@keyframes radar-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes radar-pulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}
@keyframes radar-target-glow {
    0%, 100% { opacity: 0.1; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}