/* ══════════════════════════════════════════════════
   ELITEPRIME — COMMAND CENTER STYLES
   style.css
══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: radial-gradient(circle at center, #1a1c2c 0%, #050505 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 18px 2.5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5,5,5,0.97), transparent);
    transition: transform 0.35s ease;
}

.navbar-hidden {
    display: none !important;
}

.logo-side { display: flex; align-items: center; gap: 12px; }

.logo-img {
    height: 120px;
    width: auto;
    animation: breathe 6s infinite ease-in-out;
}

@keyframes breathe {
    0%,100% { transform: scale(1); opacity: 0.85; }
    50%     { transform: scale(1.08); opacity: 1; filter: drop-shadow(0 0 20px rgba(212,175,55,0.5)); }
}

.brand-name {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 6px;
    color: #BF9903;
}

.side-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: #d4af37;
    letter-spacing: 4px;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 5% 60px;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
}

@keyframes shine-slow { to { background-position: 200% center; } }

.rainbow-minimal {
    background: linear-gradient(to right, #d4af37, #ffffff, #00d2ff, #d4af37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-slow 6s linear infinite;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 5px;
    margin-bottom: 30px;
    display: block;
}

.main-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #fff;
}

.accent { color: #d4af37; }

.sub-headline-hook {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #ddd;
    border-top: 1px solid rgba(212,175,55,0.35);
    padding-top: 24px;
    margin-bottom: 44px;
}

.cta-wrapper { display: flex; justify-content: center; }

.cta-button {
    display: inline-block;
    padding: 18px 52px;
    background: #d4af37;
    color: #000814;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 2px;
    transition: 0.3s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212,175,55,0.5);
}

/* ══════════════════════════════════════════════════
   PILLARS SECTION
══════════════════════════════════════════════════ */
.pillars-container {
    padding: 70px 2% 130px;
    background: #050505;
    border-top: 1px solid rgba(212,175,55,0.25);
    text-align: center;
}

.section-header { margin-bottom: 55px; }

.mini-title-rainbow {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 5px;
    margin-bottom: 12px;
    background: linear-gradient(to right, #d4af37, #ffffff, #00d2ff, #d4af37);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine-slow 6s linear infinite;
    text-transform: uppercase;
    display: block;
}

.pillar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    letter-spacing: 6px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
}

.pillar-desc {
    color: #a0aa82;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-top: 10px;
}

/* ══════════════════════════════════════════════════
   HONEYCOMB HEX VARIABLES
   ──────────────────────────────────────────────────
   Flat-top hexagon:  W=210px  H=156px
   clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%)

   Horizontal overlap (point into mid-col) = -(W × 0.25) = -45px
   Vertical overlap   (stacked mid-col)    = -46px
══════════════════════════════════════════════════ */
:root {
    --hw: 210px;
    --hh: 156px;
    --overlap-h: -45px;
    --overlap-v: -25px;
}

/* ── OUTER WRAPPER ── */
.hive-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
}

/* ── LANDSCAPE ROW ── */
.hive-landscape {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* ── HORIZONTAL DIAMOND ── */
.h-diamond {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Left point hex: overlaps right → into mid-col */
.h-point-l {
    z-index: 3;
    margin-right: var(--overlap-h);
}

/* Right point hex: overlaps left → into mid-col */
.h-point-r {
    z-index: 3;
    margin-left: var(--overlap-h);
}

/* Mid column: 2 hexes stacked with vertical overlap */
.h-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.h-mid .hex-wrapper + .hex-wrapper {
    margin-top: var(--overlap-v);
}

/* Centre single hex: overlaps into both diamonds */
.h-centre {
    z-index: 5;
    margin-left:  var(--overlap-h);
    margin-right: var(--overlap-h);
}

/* ══════════════════════════════════════════════════
   HEXAGON BASE  (flat-top)
══════════════════════════════════════════════════ */
.hexagon {
    width: var(--hw);
    height: var(--hh);
    background: rgba(15,15,20,0.95);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                filter 0.45s ease;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.hex-blue {
    background: rgba(0,25,45,0.97);
    filter: drop-shadow(0 0 8px rgba(0,210,255,0.45));
}

.hex-gold {
    background: rgba(38,24,0,0.97);
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.45));
}

.hex-center {
    width: calc(var(--hw) + 22px);
    height: calc(var(--hh) + 19px);
    background: rgba(212,175,55,0.1);
    filter: drop-shadow(0 0 24px rgba(212,175,55,0.75));
    animation: center-pulse 2.5s ease-in-out infinite;
    z-index: 10;
}

@keyframes center-pulse {
    0%,100% { filter: drop-shadow(0 0 20px rgba(212,175,55,0.65)); }
    50%     { filter: drop-shadow(0 0 50px rgba(212,175,55,1)); }
}

.hexagon:hover {
    transform: scale(1.12) translateZ(0);
    z-index: 100;
    filter: drop-shadow(0 0 38px rgba(212,175,55,0.95)) !important;
    animation: none;
}

/* ── HEX CONTENT ── */
.hex-content {
    padding: 12px 10px;
    text-align: center;
    pointer-events: none;
}

.hex-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.hexagon h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.3;
}

.hex-blue h4  { color: #00d2ff; }
.hex-gold h4  { color: #d4af37; }

.gold-glow {
    color: #fff !important;
    text-shadow: 0 0 12px #d4af37, 0 0 4px #d4af37;
    font-size: 0.78rem !important;
    letter-spacing: 2px !important;
}

.hex-sub {
    font-size: 0.50rem;
    color: #bbb;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.55;
    line-height: 1.3;
    transition: opacity 0.4s;
}

.hexagon:hover .hex-sub { opacity: 1; color: #fff; }

.highlight-gold { color: #d4af37 !important; opacity: 0.9 !important; }

/* Hex wrapper */
.hex-wrapper { position: relative; display: inline-flex; }

/* ══════════════════════════════════════════════════
   HONEYCOMB RESPONSIVE LAYOUTS
══════════════════════════════════════════════════ */

/* Scale to fit safely on smaller laptops/tablets in landscape */
@media (max-width: 1200px) {
    .hive-outer { transform: scale(0.85); }
    .pillars-container { overflow: hidden; }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hive-outer { transform: scale(0.65); margin: -40px 0; }
}

/* ══════════════════════════════════════════════════
   PORTRAIT MODE — VERTICAL HONEYCOMB (Rotate Desktop Grid)
══════════════════════════════════════════════════ */
@media (max-width: 900px) and (orientation: portrait) {
    /* Keep exact desktop row shape, but aligned center */
    .hive-landscape {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .h-diamond {
        flex-direction: row !important;
        align-items: center !important;
        transform: none !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .h-mid {
        flex-direction: column !important;
        margin: 0 !important;
    }

    /* Retain original interlocking margins */
    .h-point-l { margin-right: var(--overlap-h) !important; margin-left: 0 !important; }
    .h-point-r { margin-left: var(--overlap-h) !important; margin-right: 0 !important; }
    .h-centre { margin: 0 var(--overlap-h) !important; }
    .h-mid .hex-wrapper + .hex-wrapper { margin-top: var(--overlap-v) !important; margin-left: 0 !important; }

    /* Rotate the entire outer block 90 degrees */
    .hive-outer {
        transform: scale(0.85) rotate(90deg) !important;
        transform-origin: center center;
        margin: 160px 0 !important;
    }

    /* DO NOT counter-rotate the hex wrappers! They must remain Pointy-Top on screen to interlock vertically.
       We only counter-rotate the CONTENT inside them. */
    .hex-wrapper { transform: none !important; }
    .hex-content { transform: rotate(-90deg) !important; }
    
    .pillars-container {
        padding: 50px 0;
        overflow: hidden;
    }
}

/* Harder scale for smaller mobile phones */
@media (max-width: 600px) and (orientation: portrait) {
    .hive-outer {
        transform: scale(0.60) rotate(90deg) !important;
        margin: 120px 0 !important;
    }
    .pillars-container {
        min-height: auto;
        padding-bottom: 30px;
    }
}

/* ══════════════════════════════════════════════════
   POPUP OVERLAY
══════════════════════════════════════════════════ */
#popup-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    z-index: 8000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#popup-backdrop.active { opacity: 1; }

#center-popup {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.88);
    width: 440px; max-width: 90vw;
    background: linear-gradient(145deg, #080810 0%, #100e06 100%);
    border: 1px solid rgba(212,175,55,0.6);
    border-radius: 4px;
    padding: 28px 32px 26px;
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease,
                transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 80px rgba(212,175,55,0.12), 0 0 20px rgba(0,0,0,0.8);
    text-align: left;
}

#center-popup.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

#center-popup::before,
#center-popup::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border-color: #d4af37;
    border-style: solid;
}

#center-popup::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
#center-popup::after  { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }

.popup-top-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212,175,55,0.25);
}

.popup-icon  { font-size: 2rem; line-height: 1; flex-shrink: 0; }

.popup-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #d4af37;
    line-height: 1.5;
}

.popup-body {
    font-size: 0.8rem;
    line-height: 1.9;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

@keyframes scan-line {
    0%   { top: 0%;   opacity: 0.7; }
    100% { top: 100%; opacity: 0;   }
}

.popup-scan {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0,210,255,0.5), transparent);
    animation: scan-line 1.2s ease-in forwards;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════
   CONTACT GATEWAY
══════════════════════════════════════════════════ */
.contact-gateway {
    padding: 100px 6% 100px;
    background: #050505;
    border-top: 1px solid rgba(56,189,248,0.12);
}

.gateway-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 18px auto 70px;
    line-height: 1.5;
    color: #e2e8f0;
    letter-spacing: 1px;
    max-width: 820px;
    display: block;
}

/* ── Two-column layout ── */
.contact-flex {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Left: HQ Panel ── */
.contact-hq { flex: 1; }

.hq-item {
    margin-bottom: 38px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hq-label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    color: #38bdf8;
    font-size: 0.68rem;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hq-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 2;
    color: #94a3b8;
    font-weight: 600;
}

.hq-phone {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #00d2ff;
    letter-spacing: 3px;
    text-shadow: 0 0 16px rgba(0,210,255,0.4);
    font-weight: 700;
}

.direct-lines {
    list-style: none;
    padding: 0;
    margin: 0;
}
.direct-lines li {
    font-family: 'Montserrat', sans-serif;
    color: #94a3b8;
    margin-bottom: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: baseline;
}
.direct-lines li strong {
    font-family: 'Orbitron', sans-serif;
    color: #38bdf8;
    font-size: 0.6rem;
    letter-spacing: 2px;
    white-space: nowrap;
    min-width: 110px;
}

.hq-website {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #38bdf8;
    letter-spacing: 2px;
    text-decoration: none;
    text-shadow: 0 0 12px rgba(212,175,55,0.3);
}

.hq-hours {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 2;
    color: #94a3b8;
    font-weight: 600;
}

/* ── Right: Command Form ── */
.quick-response-wrapper {
    flex: 1.2;
    background: #000;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 50px;
    position: relative;
}

/* Top-left corner accent */
.quick-response-wrapper::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 60px; height: 60px;
    border-top: 2px solid #38bdf8;
    border-left: 2px solid #38bdf8;
}

.form-header {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(56,189,248,0.12);
}

.form-header-tag {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: #38bdf8;
    margin-bottom: 8px;
}

.form-header-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: #475569;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 20px;
}

.elite-command-form input,
.elite-command-form select,
.elite-command-form textarea {
    width: 100%;
    padding: 16px 18px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 2px solid rgba(56,189,248,0.2);
    color: #e2e8f0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.elite-command-form input:focus,
.elite-command-form select:focus,
.elite-command-form textarea:focus {
    border-color: rgba(0,210,255,0.4);
    border-left-color: #38bdf8;
    box-shadow: 0 0 18px rgba(0,210,255,0.06);
}

.elite-command-form select option {
    background: #0a0a0a;
    color: #e2e8f0;
}

.elite-command-form input::placeholder,
.elite-command-form textarea::placeholder {
    color: #334155;
}

.elite-command-form textarea {
    resize: vertical;
    min-height: 110px;
}

/* Submit button */
.command-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #000814;
    border: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.35s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.command-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.command-btn:hover::before { left: 100%; }
.command-btn:hover {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56,189,248,0.3);
}

.cmd-btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}
.command-btn:hover .cmd-btn-arrow { transform: translateX(6px); }

/* ══════════════════════════════════════════════════
   DISCLAIMER SECTION
══════════════════════════════════════════════════ */
.disclaimer-section {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 60px 6%;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 4px;
    color: #38bdf8;
    border: 1px solid rgba(56,189,248,0.3);
    padding: 4px 12px;
}

.disclaimer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 4px;
    color: #334155;
    text-transform: uppercase;
}

/* Two-panel grid */
.disclaimer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Each accordion panel */
.disc-panel {
    border: 1px solid rgba(255,255,255,0.05);
    background: #050505;
}

.disc-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.25s ease;
}
.disc-toggle:hover { background: rgba(56,189,248,0.04); }

.disc-toggle-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    color: #38bdf8;
    text-align: left;
    text-transform: uppercase;
}

.disc-toggle-icon {
    font-size: 1.1rem;
    color: #38bdf8;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-family: monospace;
}

.disc-panel.open .disc-toggle-icon {
    transform: rotate(45deg);
}

/* Collapsible body */
.disc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
    padding: 0 24px;
    box-sizing: border-box;
}

.disc-panel.open .disc-body {
    padding: 24px;
    max-height: 2000px;
}

.disc-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    line-height: 1.8;
    color: #475569;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.disc-intro strong { color: #94a3b8; }

.disc-clause {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.disc-clause:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disc-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    color: rgba(56,189,248,0.4);
    letter-spacing: 1px;
    flex-shrink: 0;
    margin-top: 2px;
}

.disc-clause div strong {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.disc-clause div p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    line-height: 1.8;
    color: #334155;
    font-weight: 600;
    margin: 0;
}

/* ══════════════════════════════════════════════════
   GLOBAL FOOTER
══════════════════════════════════════════════════ */
.global-footer {
    background: #000;
    border-top: 1px solid rgba(56,189,248,0.1);
    padding-top: 70px;
}

/* Top three-column row */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    padding: 0 6% 60px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    max-width: 1400px;
    margin: 0 auto;
}

.f-logo {
    font-family: 'Syncopate', sans-serif;
    color: #d4af37;
    letter-spacing: 8px;
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.f-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 5px;
    color: #38bdf8;
    opacity: 0.7;
    margin-bottom: 8px;
}

.f-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: #64748b;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-link-label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.footer-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.footer-services span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.3s ease;
}
.footer-services span:hover { color: #38bdf8; }

.footer-contact-mini p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: #334155;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.footer-contact-mini p:hover { color: #94a3b8; }

/* Services ticker removed — services already shown in service section */

/* Bottom copyright bar */
.footer-bottom {
    padding: 24px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #64748b;
    font-weight: 800;
}

.footer-designer {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.58rem !important;
    letter-spacing: 3px !important;
    color: #38bdf8 !important;
    font-weight: 700 !important;
    opacity: 0.7;
}

.footer-website {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.62rem !important;
    color: #38bdf8 !important;
    opacity: 0.6;
    letter-spacing: 2px !important;
}

/* Ultra-thin gold line at very bottom */
.footer-gold-line {
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,0.6) 20%,
        #d4af37 50%,
        rgba(212,175,55,0.6) 80%,
        transparent
    );
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-flex      { flex-direction: column; }
    .quick-response-wrapper { width: 100%; box-sizing: border-box; }
    .disclaimer-grid   { grid-template-columns: 1fr; }
    .footer-top        { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom     { flex-direction: column; gap: 10px; text-align: center; }
    .contact-gateway   { padding: 70px 5%; }
    .gateway-title     { font-size: 1.2rem; }
}

/* ══════════════════════════════════════════════════
   ELITE DNA SECTION  — unique colour palette
   ──────────────────────────────────────────────────
   Vision   →  cyan-blue   #00d2ff
   Mission  →  violet      #a855f7
   Strengths→  emerald     #10b981
   Acronym  →  coral-pink  #f43f5e
   Highlight→  ice-white   #e0f2fe
   NO yellow / gold used below this line.
══════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.elite-dna-section {
    padding: 100px 8% 120px;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture */
.elite-dna-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,210,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,210,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── PHILOSOPHY BLOCK ── */
.philosophy-block {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 90px;
}

.phil-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    line-height: 1.3;
    margin: 30px 0 24px;
    letter-spacing: 2px;
    color: #fff;
}

.phil-content h2 .accent {
    /* Override gold — use cyan glow instead */
    color: #00d2ff !important;
    text-shadow: 0 0 20px rgba(0,210,255,0.5);
}

.phil-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: #94a3b8;
    margin-bottom: 18px;
    font-weight: 700;
}

/* Highlight quote — ice-blue instead of gold */
.highlight-text {
    color: #e0f2fe !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-left: 3px solid #00d2ff;
    padding-left: 18px;
    text-align: left;
    display: block;
    margin-top: 30px;
    line-height: 1.7;
}

/* ── VISION / MISSION GRID ── */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 90px;
}

.vm-card {
    padding: 40px 36px;
    position: relative;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;
}

/* Vision card — cyan */
.vm-card:nth-child(1) {
    border-color: rgba(0,210,255,0.25);
    box-shadow: 0 0 30px rgba(0,210,255,0.04);
}
.vm-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, #00d2ff, transparent);
}
.vm-card:nth-child(1) h3 {
    color: #00d2ff;
    text-shadow: 0 0 12px rgba(0,210,255,0.4);
}
.vm-card:nth-child(1) h4 {
    color: #7dd3fc;
}
.vm-card:nth-child(1):hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,210,255,0.12);
    border-color: rgba(0,210,255,0.5);
}

/* Mission card — violet */
.vm-card:nth-child(2) {
    border-color: rgba(168,85,247,0.25);
    box-shadow: 0 0 30px rgba(168,85,247,0.04);
}
.vm-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, #a855f7, transparent);
}
.vm-card:nth-child(2) h3 {
    color: #a855f7;
    text-shadow: 0 0 12px rgba(168,85,247,0.4);
}
.vm-card:nth-child(2) h4 {
    color: #c084fc;
}
.vm-card:nth-child(2):hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(168,85,247,0.12);
    border-color: rgba(168,85,247,0.5);
}

.vm-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.vm-card h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
}

.vm-card p {
    font-size: 0.88rem;
    line-height: 1.85;
    color: #94a3b8;
    font-weight: 700;
}

/* ── STRENGTHS CONTAINER ── */
.strengths-container {
    margin-bottom: 90px;
    text-align: center;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
    text-align: left;
}

/* Emerald accent for strengths */
.s-item {
    border-left: 2px solid #10b981;
    padding: 30px 28px;
    background: rgba(16,185,129,0.03);
    transition: background 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.s-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.s-item:hover { border-color: #34d399; background: rgba(16,185,129,0.06); }
.s-item:hover::before { opacity: 1; }

/* Number badge */
.s-item span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    display: block;
    margin-bottom: 14px;
    /* Emerald gradient number */
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.s-item h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e2e8f0;
    letter-spacing: 1px;
}

.s-item p {
    font-size: 0.84rem;
    line-height: 1.8;
    color: #64748b;
    font-weight: 700;
}

/* ── ACRONYM BLOCK ── */
.acronym-master {
    text-align: center;
}

.acronym-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
}

/* Each box — larger size */
.a-box {
    padding: 18px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    color: #94a3b8;
    font-weight: 700;
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2px;
}

.a-box:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* The coloured initial letter */
.a-box b {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
}

/* The remaining lowercase letters */
.a-rest {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.a-box:hover .a-rest { color: #e2e8f0; }

/* Cycle colours for each letter via nth-child */
.a-box:nth-child(1)  { border-color: rgba(0,210,255,0.35); }
.a-box:nth-child(1) b  { color: #00d2ff; }
.a-box:nth-child(1):hover { border-color: #00d2ff; box-shadow: 0 6px 20px rgba(0,210,255,0.2); }

.a-box:nth-child(2)  { border-color: rgba(168,85,247,0.35); }
.a-box:nth-child(2) b  { color: #a855f7; }
.a-box:nth-child(2):hover { border-color: #a855f7; box-shadow: 0 6px 20px rgba(168,85,247,0.2); }

.a-box:nth-child(3)  { border-color: rgba(16,185,129,0.35); }
.a-box:nth-child(3) b  { color: #10b981; }
.a-box:nth-child(3):hover { border-color: #10b981; box-shadow: 0 6px 20px rgba(16,185,129,0.2); }

.a-box:nth-child(4)  { border-color: rgba(244,63,94,0.35); }
.a-box:nth-child(4) b  { color: #f43f5e; }
.a-box:nth-child(4):hover { border-color: #f43f5e; box-shadow: 0 6px 20px rgba(244,63,94,0.2); }

.a-box:nth-child(5)  { border-color: rgba(251,146,60,0.35); }
.a-box:nth-child(5) b  { color: #fb923c; }
.a-box:nth-child(5):hover { border-color: #fb923c; box-shadow: 0 6px 20px rgba(251,146,60,0.2); }

.a-box:nth-child(6)  { border-color: rgba(34,211,238,0.35); }
.a-box:nth-child(6) b  { color: #22d3ee; }
.a-box:nth-child(6):hover { border-color: #22d3ee; box-shadow: 0 6px 20px rgba(34,211,238,0.2); }

.a-box:nth-child(7)  { border-color: rgba(232,121,249,0.35); }
.a-box:nth-child(7) b  { color: #e879f9; }
.a-box:nth-child(7):hover { border-color: #e879f9; box-shadow: 0 6px 20px rgba(232,121,249,0.2); }

.a-box:nth-child(8)  { border-color: rgba(52,211,153,0.35); }
.a-box:nth-child(8) b  { color: #34d399; }
.a-box:nth-child(8):hover { border-color: #34d399; box-shadow: 0 6px 20px rgba(52,211,153,0.2); }

.a-box:nth-child(9)  { border-color: rgba(99,102,241,0.35); }
.a-box:nth-child(9) b  { color: #6366f1; }
.a-box:nth-child(9):hover { border-color: #6366f1; box-shadow: 0 6px 20px rgba(99,102,241,0.2); }

.a-box:nth-child(10) { border-color: rgba(20,184,166,0.35); }
.a-box:nth-child(10) b  { color: #14b8a6; }
.a-box:nth-child(10):hover { border-color: #14b8a6; box-shadow: 0 6px 20px rgba(20,184,166,0.2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .vision-mission-grid { grid-template-columns: 1fr; }
    .strength-grid { grid-template-columns: 1fr; }
    .phil-content h2 { font-size: 1.6rem; }
    .elite-dna-section { padding: 70px 5% 90px; }
}

/* ══════════════════════════════════════════════════
   LEADERSHIP COMMAND CENTER
   ──────────────────────────────────────────────────
   Leader colour palette (no yellow/gold):
     NK SIVA       → cyan       #00d2ff
     D R PRASAD    → violet     #a855f7
     SORUBHA C R   → emerald    #10b981
     Placeholder   → coral      #f43f5e  (hidden)
══════════════════════════════════════════════════ */

.leadership-command-center {
    padding: 100px 6% 120px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

/* 2 × 2 grid — left col | right col */
.leaders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
    text-align: left;
}

/* ── PROFILE CARD ── */
.dir-profile-card {
    padding: 44px 40px;
    background: linear-gradient(145deg, #0a0a0f 0%, #060606 100%);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Corner accent marks */
.dir-profile-card::before,
.dir-profile-card::after {
    content: '';
    position: absolute;
    width: 22px; height: 22px;
    border-style: solid;
}
.dir-profile-card::before { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.dir-profile-card::after  { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

/* ── LEADER 1: NK SIVA — cyan ── */
.leader-1 { border-color: rgba(0,210,255,0.2); }
.leader-1::before, .leader-1::after { border-color: #00d2ff; }
.leader-1:hover { border-color: rgba(0,210,255,0.6); box-shadow: 0 12px 50px rgba(0,210,255,0.1); transform: translateY(-6px); }
.leader-1 .dir-name  { color: #00d2ff; text-shadow: 0 0 20px rgba(0,210,255,0.4); }
.leader-1 .dir-title { color: #7dd3fc; }
.leader-1 .dir-tagline { border-left-color: #00d2ff; }

/* ── LEADER 2: D R PRASAD — violet ── */
.leader-2 { border-color: rgba(168,85,247,0.2); }
.leader-2::before, .leader-2::after { border-color: #a855f7; }
.leader-2:hover { border-color: rgba(168,85,247,0.6); box-shadow: 0 12px 50px rgba(168,85,247,0.1); transform: translateY(-6px); }
.leader-2 .dir-name  { color: #a855f7; text-shadow: 0 0 20px rgba(168,85,247,0.4); }
.leader-2 .dir-title { color: #c084fc; }
.leader-2 .dir-tagline { border-left-color: #a855f7; }

/* ── LEADER 3: SORUBHA C R — emerald ── */
.leader-3 { border-color: rgba(16,185,129,0.2); }
.leader-3::before, .leader-3::after { border-color: #10b981; }
.leader-3:hover { border-color: rgba(16,185,129,0.6); box-shadow: 0 12px 50px rgba(16,185,129,0.1); transform: translateY(-6px); }
.leader-3 .dir-name  { color: #10b981; text-shadow: 0 0 20px rgba(16,185,129,0.4); }
.leader-3 .dir-title { color: #34d399; }
.leader-3 .dir-tagline { border-left-color: #10b981; }

/* ── LEADER 4: PLACEHOLDER — hidden until activated ── */
.leader-4 {
    display: block;
    border-color: rgba(244,63,94,0.2);
}
.leader-4::before, .leader-4::after { border-color: #f43f5e; }
.leader-4:hover { border-color: rgba(244,63,94,0.6); box-shadow: 0 12px 50px rgba(244,63,94,0.1); transform: translateY(-6px); }
.leader-4 .dir-name  { color: #f43f5e; text-shadow: 0 0 20px rgba(244,63,94,0.4); }
.leader-4 .dir-title { color: #fb7185; }
.leader-4 .dir-tagline { border-left-color: #f43f5e; }

/* ── SHARED CARD TYPOGRAPHY ── */
.dir-name {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-weight: 700;
}

.dir-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.dir-tagline {
    font-style: italic;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left-width: 3px;
    border-left-style: solid;
    line-height: 1.6;
}

.dir-bio p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.95;
    color: #94a3b8;
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 700;
}

.dir-bio strong {
    color: #e2e8f0;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    font-weight: 900;
    display: block;
    margin-bottom: 6px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .leaders-grid { grid-template-columns: 1fr; }
    .dir-name { font-size: 1.2rem; }
    .dir-profile-card { padding: 30px 24px; }
    .leadership-command-center { padding: 70px 5% 90px; }
}

/* ══════════════════════════════════════════════════
   THE ELITEPRIME STANDARD — ORBITAL SYSTEM (JS-driven)
   ──────────────────────────────────────────────────
   · Rings are STATIC dashed circles (no CSS rotation)
   · Planets are positioned by JS requestAnimationFrame
     using sin/cos — never rotated via CSS
   · Letters always face upright at every orbit position
   · Tooltips always appear horizontally above planets
   · Section compressed to fit between navbar and next
     section (matching the two red lines from sketch)
══════════════════════════════════════════════════ */

/* ── Section wrapper — compressed ── */
.orbital-standard-section {
    background: #000;
    padding: 30px 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 20px;
}

/* ── Rainbow heading — smaller ── */
.orbital-heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.orbital-label {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}

.orbital-title-rainbow {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 10px;
    text-transform: uppercase;
    background: linear-gradient(
        to right,
        #00d2ff, #a855f7, #10b981,
        #f43f5e, #fb923c, #00d2ff
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine-slow 4s linear infinite;
    filter: drop-shadow(0 0 14px rgba(0,210,255,0.3));
}

/* ── Orbital wrapper — reduced to 360×360 ── */
.orbital-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    flex-shrink: 0;
}

/* ── Core centre ── */
.orbital-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.core-sub {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.28);
    line-height: 2;
    text-transform: uppercase;
}

/* Pulsing core glow */
.orbital-core::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 70px; height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, transparent 70%);
    animation: core-breathe 3s ease-in-out infinite;
}
@keyframes core-breathe {
    0%,100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.5; }
    50%      { transform: translate(-50%,-50%) scale(1.5); opacity: 1;   }
}

/* ── Orbit rings — STATIC (no rotation animation) ── */
.orbit {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.12);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Ring sizes match JS radii: outer=165px → diameter=330px, inner=96px → diameter=192px */
.orbit-outer { width: 330px; height: 330px; }
.orbit-inner { width: 192px; height: 192px; }

/* ── Planet base ── */
/* NO rotation, NO animation — JS handles positioning via left/top */
.planet {
    position: absolute;
    width: 44px;
    height: 44px;
    /* JS sets left/top; offset by half size to centre on point */
    margin-left: -22px;
    margin-top:  -22px;
    background: #040408;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 5;
    /* transform is ONLY used for the hover scale — never for rotation */
}

.planet:hover { transform: scale(1.3); }

/* ── Tooltip — always horizontal since planet has no rotation ── */
.planet::after {
    content: attr(data-word);
    position: absolute;
    top: -34px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.96);
    color: currentColor;
    padding: 5px 12px;
    font-size: 0.68rem;
    border: 1px solid currentColor;
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, top 0.25s ease;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    font-weight: 700;
}

.planet:hover::after { opacity: 1; top: -46px; }

/* ── Planet colours (border + text) ── */
/* Outer orbit — ELITE */
.p-e1 { border-color:#00d4ff; color:#00d4ff; box-shadow:0 0 12px rgba(0,212,255,0.45);   }
.p-l  { border-color:#a855f7; color:#a855f7; box-shadow:0 0 12px rgba(168,85,247,0.45);  }
.p-i1 { border-color:#10b981; color:#10b981; box-shadow:0 0 12px rgba(16,185,129,0.45);  }
.p-t  { border-color:#f43f5e; color:#f43f5e; box-shadow:0 0 12px rgba(244,63,94,0.45);   }
.p-e2 { border-color:#fb923c; color:#fb923c; box-shadow:0 0 12px rgba(251,146,60,0.45);  }

/* Inner orbit — PRIME */
.p-p  { border-color:#22d3ee; color:#22d3ee; box-shadow:0 0 12px rgba(34,211,238,0.45);  }
.p-r  { border-color:#e879f9; color:#e879f9; box-shadow:0 0 12px rgba(232,121,249,0.45); }
.p-i2 { border-color:#34d399; color:#34d399; box-shadow:0 0 12px rgba(52,211,153,0.45);  }
.p-m  { border-color:#6366f1; color:#6366f1; box-shadow:0 0 12px rgba(99,102,241,0.45);  }
.p-e3 { border-color:#14b8a6; color:#14b8a6; box-shadow:0 0 12px rgba(20,184,166,0.45);  }

/* ── Responsive ── */
@media (max-width: 600px) {
    .orbital-wrapper { transform: scale(0.72); margin: -40px 0; }
    .orbital-title-rainbow { font-size: 1.4rem; letter-spacing: 5px; }
}

/* ══════════════════════════════════════════════════
   FORM — SUCCESS PANEL & ERROR STATES
══════════════════════════════════════════════════ */

.command-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #00d2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #00d2ff;
    margin-bottom: 28px;
    box-shadow: 0 0 30px rgba(0,210,255,0.25);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%,100% { box-shadow: 0 0 20px rgba(0,210,255,0.2); }
    50%     { box-shadow: 0 0 40px rgba(0,210,255,0.5); }
}

.success-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: #00d2ff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0,210,255,0.4);
}

.success-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 16px;
}

.success-msg strong {
    color: #d4af37;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1px;
}

.success-email {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 12px;
}

.success-email strong {
    color: #d4af37;
    display: block;
    margin-top: 6px;
}

.success-time {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 2px;
    color: #334155;
    margin-bottom: 36px;
}

.cmd-reset-btn {
    background: transparent;
    border: 1px solid rgba(56,189,248,0.3);
    color: #38bdf8;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    padding: 14px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.cmd-reset-btn:hover {
    background: rgba(56,189,248,0.08);
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56,189,248,0.15);
}

/* Error message */
.form-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #f43f5e;
    font-weight: 700;
    text-align: center;
    margin-top: 14px;
    letter-spacing: 1px;
    padding: 10px;
    border: 1px solid rgba(244,63,94,0.2);
    background: rgba(244,63,94,0.04);
}

/* ══════════════════════════════════════════════════
   FIXES — ALL 9 CORRECTIONS
══════════════════════════════════════════════════ */

/* FIX 5 — Contact heading fully centred */
.contact-heading-block {
    text-align: center;
    margin-bottom: 60px;
}
.gateway-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* FIX 2 — Email links fully visible, never obfuscated */
.email-link {
    color: #e2e8f0 !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
    -webkit-user-select: text;
    user-select: text;
}
.email-link:hover { color: #a855f7 !important; }

/* FIX 3 — Disclaimer body visible when open */
.disc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 24px;
    box-sizing: border-box;
}
.disc-panel.open .disc-body {
    padding: 24px !important;
}
.disc-clause div p {
    color: #94a3b8 !important;
    font-size: 0.78rem !important;
    line-height: 1.9 !important;
}
.disc-clause div strong {
    color: #cbd5e1 !important;
    font-size: 0.65rem !important;
    letter-spacing: 2px;
    margin-bottom: 8px !important;
}
.disc-intro {
    color: #94a3b8 !important;
    font-size: 0.78rem !important;
    line-height: 1.9 !important;
}
.disc-intro strong { color: #e2e8f0 !important; }

/* FIX 7 — Color palette: replace excessive gold/yellow
   Labels & accents → violet #a855f7 (premium command feel)
   Logo & brand only → gold #d4af37
   Headings → white
   Body text → slate #94a3b8
*/
.hq-label {
    color: #a855f7 !important;
    letter-spacing: 3px;
}
.hq-phone {
    color: #a855f7 !important;
    text-shadow: 0 0 16px rgba(168,85,247,0.35) !important;
}
.hq-website {
    color: #a855f7 !important;
    text-shadow: none !important;
}
.form-header-tag {
    color: #a855f7 !important;
    letter-spacing: 4px;
}
.direct-lines li strong {
    color: #a855f7 !important;
}
.disclaimer-badge {
    color: #a855f7 !important;
    border-color: rgba(168,85,247,0.3) !important;
}
.disclaimer-title {
    color: #64748b !important;
}
.disc-toggle-title {
    color: #a855f7 !important;
}
.disc-toggle-icon {
    color: #a855f7 !important;
}
.disc-num {
    color: rgba(168,85,247,0.4) !important;
}
.disc-toggle:hover {
    background: rgba(168,85,247,0.03) !important;
}
/* Keep gold only for footer brand */
.f-logo   { color: #d4af37 !important; }
.f-tagline{ color: #d4af37 !important; }
.footer-link-label { color: #a855f7 !important; }
.footer-gold-line {
    background: linear-gradient(
        to right,
        transparent,
        rgba(168,85,247,0.5) 20%,
        #a855f7 50%,
        rgba(168,85,247,0.5) 80%,
        transparent
    ) !important;
}
/* Submit button stays gold — it's a CTA */
.command-btn { background: linear-gradient(135deg,#d4af37,#b8960c) !important; }

/* FIX 8 — Footer bold and visible */
.global-footer {
    background: #000 !important;
}
.footer-top {
    grid-template-columns: 1fr 1fr !important;
}
.f-logo {
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    letter-spacing: 8px !important;
}
.f-tagline {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 5px !important;
    opacity: 1 !important;
}
.f-sub {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #64748b !important;
    letter-spacing: 2px !important;
}
.footer-services span {
    color: #94a3b8 !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
}
.footer-services span:hover { color: #00d2ff !important; }

/* FIX 9 — Footer bottom — All Rights Reserved + Designer credit */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding: 28px 6% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}
.footer-copy {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    color: #475569 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
}
.footer-website {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    color: #00d2ff !important;
    letter-spacing: 2px !important;
}
.footer-designer {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    color: #334155 !important;
    letter-spacing: 2px !important;
}

/* Remove ticker CSS (Fix 1) */
.footer-ticker-wrap,
.footer-ticker,
.tick-dot { display: none !important; }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM — 5 BREAKPOINTS
   ──────────────────────────────────────────────────────────────
   1440px  Large desktop
   1200px  Standard laptop
    900px  Tablet landscape / small laptop
    600px  Tablet portrait / large phone
    375px  Mobile — iPhone SE / small Android
   ══════════════════════════════════════════════════════════════

   CROSS-BROWSER FIXES applied throughout:
   · -webkit- prefixes for Safari (background-clip, backdrop-filter)
   · Firefox scrollbar hidden
   · Touch target minimum 48px for mobile usability
   · font-display handled via Google Fonts ?display=swap param
══════════════════════════════════════════════════════════════ */

/* ── Scrollbar — hide on all browsers cleanly ── */
html { scrollbar-width: thin; scrollbar-color: #d4af37 #000; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 2px; }

/* ── Safari background-clip fix (text gradient) ── */
.brand-name,
.dir-name,
.orbital-title-rainbow,
.tac-expanding,
.rainbow-minimal,
.mini-title-rainbow {
    -webkit-background-clip: text;
    background-clip: text;
}

/* ── Touch targets — all interactive elements min 48px ── */
button, a, select,
.hex-wrapper,
.disc-toggle,
.command-btn,
.cmd-reset-btn,
.map-pin {
    min-height: 44px;
}


/* ════════════════════════════════════════════════════
   BREAKPOINT 1 — 1440px  (Large desktop)
════════════════════════════════════════════════════ */
@media (max-width: 1440px) {
    .hero-content h2        { font-size: 3.6rem; }
    .pillars-container      { padding: 80px 5%; }
}


/* ════════════════════════════════════════════════════
   BREAKPOINT 2 — 1200px  (Laptop 13"–15")
════════════════════════════════════════════════════ */
@media (max-width: 1200px) {

    /* Navbar */
    .navbar { padding: 0 4%; }
    .brand-name { font-size: 1.1rem; letter-spacing: 5px; }

    /* Hero */
    .hero-content h2 { font-size: 3rem; letter-spacing: 6px; }
    .hero-sub        { font-size: 0.85rem; }

    /* Pillars */
    .pillars-container  { padding: 80px 4%; }
    .hex-grid           { gap: 20px; }

    /* DNA */
    .elite-dna-section  { padding: 80px 5% 100px; }
    .vision-mission-grid { gap: 24px; }

    /* Leadership */
    .leadership-command-center { padding: 80px 4% 100px; }
    .leaders-grid       { gap: 24px; }
    .dir-name           { font-size: 1.3rem; }

    /* Contact */
    .contact-gateway    { padding: 80px 4%; }
    .contact-flex       { gap: 50px; }
    .gateway-title      { font-size: 1.4rem; }

    /* Footer */
    .footer-top         { padding: 0 4% 50px; gap: 40px; }
    .footer-bottom      { padding: 20px 4%; }
}


/* ════════════════════════════════════════════════════
   BREAKPOINT 3 — 900px  (Tablet landscape / small laptop)
════════════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* ── Navbar ── */
    .navbar {
        padding: 0 4%;
        height: 60px;
    }
    .brand-name {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    .side-tag {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }
    .logo-img { width: 36px; height: 36px; }

    /* ── Hero ── */
    .hero-section       { padding: 120px 5% 80px; min-height: auto; }
    .hero-content h2    { font-size: 2.4rem; letter-spacing: 4px; }
    .hero-sub           { font-size: 0.8rem; letter-spacing: 2px; }
    .hero-divider       { margin: 30px auto; }
    .cta-button         { padding: 16px 40px; font-size: 0.72rem; }
    .stat-row           { gap: 30px; flex-wrap: wrap; justify-content: center; }

    /* ── Pillars hex grid ── */
    .pillars-container  { padding: 60px 4%; }
    .hex-grid           { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hex-wrapper        { width: 160px; height: 185px; }
    .hex-inner          { font-size: 0.6rem; }
    .hex-icon           { font-size: 2rem; }

    /* ── Elite DNA ── */
    .elite-dna-section      { padding: 60px 5% 80px; }
    .vision-mission-grid    { grid-template-columns: 1fr; gap: 20px; }
    .strength-grid          { grid-template-columns: 1fr 1fr; gap: 16px; }
    .phil-content h2        { font-size: 1.5rem; }
    .dna-section-title      { font-size: 1.4rem; }

    /* ── Orbital ── */
    .orbital-standard-section { padding: 20px 0; }
    .orbital-wrapper    { transform: scale(0.8); margin: -30px 0; }
    .orbital-title-rainbow  { font-size: 1.6rem; letter-spacing: 5px; }

    /* ── Leadership ── */
    .leadership-command-center { padding: 60px 4% 80px; }
    .leaders-grid       { grid-template-columns: 1fr; gap: 24px; }
    .dir-profile-card   { padding: 30px 24px; }
    .dir-name           { font-size: 1.2rem; }
    .dir-title          { font-size: 0.78rem; }
    .dir-bio p          { font-size: 0.82rem; }

    /* ── Contact ── */
    .contact-gateway    { padding: 60px 4%; }
    .gateway-title      { font-size: 1.1rem; margin-bottom: 40px; }
    .contact-flex       { flex-direction: column; gap: 40px; }
    .quick-response-wrapper { width: 100%; box-sizing: border-box; padding: 35px 28px; }
    .hq-phone           { font-size: 1rem; }

    /* ── Disclaimer ── */
    .disclaimer-section { padding: 50px 4%; }
    .disclaimer-grid    { grid-template-columns: 1fr; gap: 16px; }

    /* ── Footer ── */
    .footer-top         { grid-template-columns: 1fr; gap: 36px; padding: 0 4% 40px; }
    .footer-bottom      { flex-direction: column; gap: 10px; text-align: center; padding: 20px 4%; }
    .f-logo             { font-size: 1.1rem; }
}


/* ════════════════════════════════════════════════════
   BREAKPOINT 4 — 600px  (Tablet portrait / large phone)
════════════════════════════════════════════════════ */
@media (max-width: 600px) {

    /* ── Navbar ── */
    .navbar {
        height: auto;
        padding: 14px 0 20px;
        justify-content: center;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
        background: #050505; /* solid — stops hero text bleeding through */
        border-bottom: 1px solid rgba(212,175,55,0.15);
    }
    .logo-side {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    .brand-name {
        font-size: 1.6rem;
        letter-spacing: 8px;
        display: block;
        text-align: center;
        width: 100%;
    }
    .logo-img { width: 160px; height: 160px; }
    .side-tag { display: none; }


    /* ── Hero ── */
    .hero-section       { padding: 250px 5% 60px; }
    .hero-content h2    { font-size: 1.8rem; letter-spacing: 3px; line-height: 1.3; }
    .hero-sub           { font-size: 0.72rem; letter-spacing: 1.5px; }
    .cta-button         { width: 100%; text-align: center; padding: 18px 20px; font-size: 0.68rem; }
    .stat-row           { flex-direction: column; align-items: center; gap: 20px; }
    .stat-item          { text-align: center; }

    /* ── Pillars — switch honeycomb to vertical card list on mobile ── */
    .pillars-container  { padding: 50px 4%; overflow: hidden; }
    .pillars-title      { font-size: 1.4rem; letter-spacing: 3px; }

    /* Removed hide rules for honeycomb so it displays on mobile */

    /* ── Elite DNA ── */
    .elite-dna-section  { padding: 50px 5% 60px; }
    .strength-grid      { grid-template-columns: 1fr; }
    .vm-card            { padding: 28px 22px; }
    .phil-content h2    { font-size: 1.3rem; letter-spacing: 3px; }
    .dna-section-title  { font-size: 1.2rem; }

    /* ── Orbital ── */
    .orbital-wrapper    { transform: scale(0.68); margin: -44px 0; }
    .orbital-title-rainbow { font-size: 1.3rem; letter-spacing: 4px; }
    .orbital-label      { font-size: 0.55rem; letter-spacing: 3px; }

    /* ── Leadership ── */
    .leadership-command-center { padding: 50px 4% 60px; }
    .dir-profile-card   { padding: 26px 20px; }
    .dir-name           { font-size: 1.1rem; letter-spacing: 3px; }
    .dir-tagline        { font-size: 0.78rem; padding-left: 12px; }
    .dir-bio p          { font-size: 0.78rem; line-height: 1.75; }

    /* ── Contact ── */
    .contact-gateway    { padding: 50px 4%; }
    .gateway-title      { font-size: 1rem; letter-spacing: 1px; }
    .quick-response-wrapper { padding: 28px 20px; }
    .form-header-tag    { font-size: 0.58rem; }
    .elite-command-form input,
    .elite-command-form select,
    .elite-command-form textarea {
        padding: 14px 16px;
        font-size: 0.85rem;
        /* Larger touch targets on mobile */
        min-height: 48px;
    }
    .command-btn        { padding: 18px; font-size: 0.68rem; letter-spacing: 2px; }
    .hq-label           { font-size: 0.6rem; letter-spacing: 2px; }
    .hq-phone           { font-size: 0.95rem; letter-spacing: 2px; }
    .direct-lines li    { flex-direction: column; gap: 4px; }
    .direct-lines li strong { min-width: unset; }

    /* ── Disclaimer ── */
    .disclaimer-section { padding: 40px 4%; }
    .disc-toggle        { padding: 16px 18px; }
    .disc-toggle-title  { font-size: 0.55rem; letter-spacing: 1.5px; }
    .disc-clause        { flex-direction: column; gap: 8px; }

    /* ── Footer — single column, no overflow ── */
    .global-footer          { padding-top: 40px; overflow: hidden; }
    .footer-top             {
        display: flex !important;
        flex-direction: column !important;
        gap: 32px;
        padding: 0 5% 30px;
    }
    .footer-links           { width: 100%; overflow: hidden; }
    .footer-contact-mini    { width: 100%; }
    .footer-services        { gap: 6px 10px; }
    .footer-services span   { font-size: 0.65rem; }
    .footer-link-label      { font-size: 0.58rem; letter-spacing: 2px; }
    .f-logo                 { font-size: 1rem; letter-spacing: 4px; }
    .f-tagline              { font-size: 0.52rem; letter-spacing: 2px; }
    .f-sub                  { font-size: 0.68rem; }
    .footer-ticker-wrap     { overflow: hidden; }
    .footer-ticker          { animation-duration: 20s; }
    .footer-bottom          { padding: 18px 5%; flex-direction: column; gap: 8px; text-align: center; }
    .footer-bottom p        { font-size: 0.52rem; }
}


/* ════════════════════════════════════════════════════
   BREAKPOINT 5 — 375px  (iPhone SE / small Android)
════════════════════════════════════════════════════ */
@media (max-width: 375px) {

    /* ── Navbar ── */
    .brand-name         { font-size: 0.68rem; letter-spacing: 2px; }
    .logo-img           { width: 26px; height: 26px; }

    /* ── Hero ── */
    .hero-content h2    { font-size: 1.5rem; letter-spacing: 2px; }
    .rainbow-minimal    { font-size: 0.55rem; letter-spacing: 2px; }

    /* ── Pillars ── */
    .hex-grid           { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hex-wrapper        { width: 120px; height: 139px; }
    .hex-icon           { font-size: 1.4rem; }
    .hex-inner          { font-size: 0.48rem; }

    /* ── Orbital ── */
    .orbital-wrapper    { transform: scale(0.55); margin: -60px 0; }

    /* ── Leadership ── */
    .dir-name           { font-size: 1rem; }
    .dir-bio p          { font-size: 0.74rem; }

    /* ── Contact ── */
    .gateway-title      { font-size: 0.9rem; }
    .hq-address         { font-size: 0.82rem; }
    .hq-phone           { font-size: 0.85rem; }
    .command-btn        { font-size: 0.6rem; letter-spacing: 1.5px; }

    /* ── Footer ── */
    .f-logo             { font-size: 0.9rem; letter-spacing: 3px; }
}


/* ════════════════════════════════════════════════════
   CROSS-BROWSER COMPATIBILITY FIXES
════════════════════════════════════════════════════ */

/* Fix orbital wrapper typo — was .orbital-wrapper] (with stray ]) */
.orbital-wrapper {
    transform-origin: center center;
}

/* Safari — backdrop-filter prefix */
.navbar,
.center-popup,
.popup-backdrop {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

/* Firefox — gap fallback for older versions */
@supports not (gap: 1px) {
    .contact-flex       > * + * { margin-left: 70px; }
    .leaders-grid       > * + * { margin-top: 32px; }
    .footer-top         > * + * { margin-top: 40px; }
}

/* iOS Safari — prevent font size auto-adjustment */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* iOS Safari — smooth momentum scrolling */
body {
    -webkit-overflow-scrolling: touch;
}

/* Prevent horizontal overflow on all screens */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Fix input zoom on iOS (inputs need 16px+ font to prevent auto-zoom) */
@media (max-width: 600px) {
    .elite-command-form input,
    .elite-command-form select,
    .elite-command-form textarea {
        font-size: 16px;
    }
}

/* IE/Edge legacy — flex fallback (rare but covers corporate Windows machines) */
@supports not (display: grid) {
    .leaders-grid       { display: flex; flex-wrap: wrap; }
    .leaders-grid > *   { flex: 1 1 300px; }
    .footer-top         { display: flex; flex-wrap: wrap; }
    .footer-top > *     { flex: 1 1 200px; }
    .disclaimer-grid    { display: flex; flex-wrap: wrap; }
    .disclaimer-grid > *{ flex: 1 1 300px; }
}

/* Print styles — clean printout of contact info */
@media print {
    .navbar,
    .orbital-standard-section,
    .pillars-container,
    .popup-backdrop,
    .center-popup,
    .footer-ticker-wrap,
    .disc-toggle         { display: none !important; }
    body                 { background: #fff; color: #000; }
    .contact-gateway,
    .global-footer       { background: #fff; color: #000; border: none; }
    .hq-label,
    .f-logo              { color: #000; }
}

/* ── Navbar scroll states (controlled by JS) ── */
.navbar {
    transition: height 0.3s ease,
                background 0.3s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
}
.navbar-scrolled {
    height: 56px !important;
    background: rgba(0,0,0,0.97) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.navbar-hidden {
    transform: translateY(-100%) !important;
}

/* Remove the entire mobile vertical card list since we are keeping the hexes scaled */
.mobile-pillars {
    display: none !important;
}
/* Cleaned mobile pillars */

/* ── Logo sizing per breakpoint ── */
@media (max-width: 900px) {
    .logo-img {
        height: 80px !important;
        width: 80px !important;
    }
}
@media (max-width: 600px) {
    .logo-img {
        height: 150px !important;
        width: 150px !important;
    }
}
@media (max-width: 375px) {
    .logo-img {
        height: 120px !important;
        width: 120px !important;
    }
}
