/* =========================
   BASE
========================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    padding: 0;

    background: #000;

    color: white;

    font-family: Arial, sans-serif;

    overflow-x: hidden;

}



.bg-layer {

    position: fixed;

    inset: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    z-index: -3;

    opacity: 0;

    transform: scale(1.05);

    transition:
        opacity 1.5s ease-in-out;

}



.bg-layer::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, .45);

}




.overlay {

    min-height: 100vh;

    background:
        rgba(0, 0, 0, .72);

    position: relative;

    z-index: 1;

}



/* =========================
   HERO
========================= */


.hero {

    text-align: center;

    padding:
        70px 20px 30px;

}



.main-title {

    position: relative;

    font-family: monospace;

    font-size:
        clamp(38px, 6vw, 72px);

    letter-spacing: 8px;

    color: #00ffff;

    text-transform: uppercase;

    text-shadow:
        0 0 10px #00ffff,
        0 0 25px rgba(0, 255, 255, .6);

}



.main-title::before,
.main-title::after {


    content: attr(data-text);

    position: absolute;

    inset: 0;

    opacity: .7;

}



.main-title::before {

    color: #ff004c;

    animation:
        glitchRed 2s infinite;

}



.main-title::after {

    color: #00ffff;

    animation:
        glitchBlue 1.5s infinite;

}



.hero-subtitle {

    font-family: monospace;

    letter-spacing: 5px;

    color:
        rgba(255, 255, 255, .65);

}



.terminal {

    color: #00ff99;

    font-family: monospace;

}



.cursor {

    animation:
        blink 1s infinite;

}





/* =========================
   NAV
========================= */


nav {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    padding: 15px;

}



nav a {

    color: white;

    text-decoration: none;

    font-family: monospace;

    padding:
        8px 12px;

    border-radius: 8px;

    transition: .3s;

}



nav a:hover {

    color: #00ffff;

    background:
        rgba(0, 255, 255, .1);

    box-shadow:
        0 0 15px rgba(0, 255, 255, .25);

}





/* =========================
   CARDS
========================= */


.card {


    max-width: 900px;

    margin:
        50px auto;

    padding: 25px;

    position: relative;

    overflow: visible;

    border-radius: 12px;


    background:
        linear-gradient(135deg,
            rgba(0, 255, 255, .06),
            rgba(0, 0, 0, .75));


    border:
        1px solid rgba(0, 255, 255, .18);


    backdrop-filter: none;


    box-shadow:

        inset 0 0 25px rgba(0, 255, 255, .05),
        0 0 25px rgba(0, 255, 255, .08);


}



.card h2,
.card h3 {


    position: relative;

    z-index: 2;

    font-family: monospace;

    color: #00ffff;

    letter-spacing: 2px;

}



.card p {

    position: relative;

    z-index: 2;

    line-height: 1.7;

}





/* =========================
   GLITCH TITLES
========================= */


.glitch-title {

    position: relative;

    font-family: monospace;

    color: #00ffff;

    letter-spacing: 5px;

    text-transform: uppercase;

    font-size: 42px;

}



.glitch-title::before,
.glitch-title::after {

    content: attr(data-text);

    position: absolute;

    inset: 0;

}



.glitch-title::before {

    color: #ff004c;

    animation:
        glitchRed 1.5s infinite;

}



.glitch-title::after {

    color: #00ffff;

    animation:
        glitchBlue 1s infinite;

}




/* =========================
   PROJECTS
========================= */


.grid {


    display: grid;

    grid-template-columns:
        repeat(auto-fit,
            minmax(220px, 1fr));


    gap: 15px;


}



.project {


    padding: 20px;

    cursor: pointer;

    border-radius: 10px;


    background:
        rgba(0, 0, 0, .65);


    border:
        1px solid rgba(0, 255, 255, .2);


    transition: .3s;


}



.project:hover {


    transform:
        translateY(-5px);


    border-color: #00ffff;


    box-shadow:
        0 0 25px rgba(0, 255, 255, .3);


}





/* =========================
   PROJECT VIEWER
========================= */


#viewer-content img {


    width: 100%;

    border-radius: 8px;

    margin-bottom: 15px;


}



#viewer-content iframe {


    width: 100%;

    height: 500px;

    border: 0;

    border-radius: 8px;

    background: white;


}





.project-link {


    display: inline-block;

    margin-top: 15px;

    padding:
        12px 20px;


    color: #00ffff;

    font-family: monospace;

    text-decoration: none;


    border:
        1px solid rgba(0, 255, 255, .25);


    border-radius: 8px;


}



.project-link:hover {


    background:
        rgba(0, 255, 255, .1);


}


/* =========================
   INTELLIGENCE
========================= */


.intel-subtitle {

    font-family: monospace;

    color:
        rgba(255, 255, 255, .55);

    letter-spacing: 2px;

}



.intel-panel {

    margin-bottom: 30px;

    padding: 25px;

    border-radius: 12px;


    background:
        rgba(0, 0, 0, .65);


    border:
        1px solid rgba(0, 255, 255, .25);


    position: relative;

}



.intel-feed {

    position: relative;

}



.intel-item {


    background:
        rgba(0, 0, 0, .65);


    border-left:
        3px solid #00ffff;


    padding: 15px;

    margin-bottom: 15px;

    border-radius: 8px;


    line-height: 1.8;


}



.intel-status {


    color: #00ff99;

    font-family: monospace;

    margin-bottom: 15px;


}



.status-alert {


    color: #ff004c;

    font-family: monospace;


}




/* =========================
   SKILLS
========================= */


.skills-grid {


    display: grid;

    grid-template-columns:
        repeat(auto-fit,
            minmax(240px, 1fr));


    gap: 15px;


}



.skill-group {


    padding: 18px;


    background:
        rgba(0, 0, 0, .55);


    border-left:
        3px solid #00ffff;


    border-radius: 8px;


}




/* =========================
   ANIMATIONS
========================= */


@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }

}



@keyframes glitchRed {


    0%,
    90%,
    100% {

        clip-path:
            inset(0 0 100% 0);

    }


    92% {

        clip-path:
            inset(20% 0 40% 0);

        transform:
            translateX(-4px);

    }

}



@keyframes glitchBlue {


    0%,
    85%,
    100% {

        clip-path:
            inset(100% 0 0 0);

    }


    88% {

        clip-path:
            inset(40% 0 20% 0);

        transform:
            translateX(4px);

    }

}





/* =========================
   MOBILE
========================= */


@media(max-width:768px) {


    .card {

        margin:
            25px 10px;

        padding: 18px;

    }


    .glitch-title {

        font-size: 30px;

    }


}



@media(max-width:480px) {


    .main-title {

        letter-spacing: 4px;

    }


    .hero-subtitle {

        font-size: 12px;

    }


    .intel-item {

        font-size: 14px;

    }


}

/* =========================
   UFO BACK TO TOP BUTTON
========================= */


#ufo-top {

    position: fixed;

    right: 30px;

    bottom: 30px;


    width: 65px;

    height: 65px;


    border-radius: 50%;


    border: 1px solid rgba(0, 255, 255, .5);


    background:
        radial-gradient(circle,
            rgba(0, 255, 255, .25),
            rgba(0, 0, 0, .85));


    color: #00ffff;


    font-size: 32px;


    cursor: pointer;


    z-index: 9999;


    box-shadow:

        0 0 15px #00ffff,
        0 0 35px rgba(0, 255, 255, .5);


    transition: .4s;


    animation: ufoHover 3s infinite ease-in-out;


}



#ufo-top:hover {


    transform:
        scale(1.2) rotate(-10deg);


    box-shadow:

        0 0 25px #00ffff,
        0 0 60px rgba(0, 255, 255, .8);


}



#ufo-top.launch {


    animation:

        ufoLaunch 1s forwards;


}



@keyframes ufoHover {


    0%,
    100% {

        transform:
            translateY(0);

    }


    50% {

        transform:
            translateY(-10px);

    }

}



@keyframes ufoLaunch {


    0% {

        transform:
            translateY(0) scale(1);

        opacity: 1;

    }


    100% {

        transform:
            translateY(-900px) scale(.2);

        opacity: 0;

    }

}

/* =========================
   MOBILE SAFARI TOUCH FIX
========================= */


html,
body {

    touch-action: manipulation;

}



.bg-layer {

    pointer-events: none;

}



#ufo-top,
nav a,
.project {

    pointer-events: auto;

}

/* =====================================================
   SENTINEL GRID DASHBOARD
===================================================== */


#sentinel-dashboard {


    max-width: 1200px;

    margin: 70px auto;

    padding: 25px;


}




.sentinel-title {


    text-align: center;

    font-family: monospace;

    letter-spacing: 6px;

    color: #ff004c;

    font-size: 40px;

    text-shadow:

        0 0 15px rgba(255, 0, 76, .7);


}





.sentinel-grid {


    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));


    gap: 20px;

    margin-top: 40px;


}




.sentinel-card {


    background:

        rgba(0, 0, 0, .85);


    border:

        1px solid rgba(255, 0, 76, .4);


    border-radius: 12px;


    padding: 25px;


    text-align: center;


    box-shadow:

        0 0 25px rgba(255, 0, 76, .15);


}





.sentinel-card h3 {


    font-family: monospace;

    color: #ff6688;

    letter-spacing: 2px;


}




.sentinel-card div {


    margin-top: 15px;

    font-size: 42px;

    font-family: monospace;

    color: #ffcc00;


}






.sentinel-panel {


    margin-top: 40px;


    padding: 25px;


    background:

        rgba(0, 0, 0, .8);


    border:

        1px solid rgba(255, 0, 76, .3);


    border-radius: 12px;


}



.sentinel-panel h2 {


    font-family: monospace;

    color: #ff004c;

    letter-spacing: 3px;


}





@media(max-width:768px) {
    .sentinel-title {

        font-size: 26px;

    }


}



/* =========================
   TITLE
========================= */


.sentinel-title {

    font-family: monospace;

    color: #ff004c;

    text-align: center;

    letter-spacing: 6px;

    font-size: 38px;

    text-transform: uppercase;

    text-shadow:

        0 0 10px rgba(255, 0, 76, .7),

        0 0 25px rgba(255, 0, 76, .35);

}





/* =========================
   STATUS CARDS
========================= */


.sentinel-grid {


    display: grid;


    grid-template-columns:

        repeat(auto-fit, minmax(220px, 1fr));


    gap: 20px;


    margin-top: 35px;


}




.sentinel-card {


    background:

        linear-gradient(135deg,

            rgba(255, 0, 76, .08),

            rgba(0, 0, 0, .85));


    border:

        1px solid rgba(255, 0, 76, .35);


    border-radius: 12px;


    padding: 25px;


    text-align: center;


    box-shadow:


        inset 0 0 20px rgba(255, 0, 76, .05),

        0 0 25px rgba(255, 0, 76, .15);


}





.sentinel-card h3 {


    font-family: monospace;


    color: #ff6688;


    letter-spacing: 2px;


    font-size: 14px;


}





.sentinel-card div {


    font-family: monospace;


    font-size: 42px;


    color: #ffcc00;


    margin-top: 15px;


    text-shadow:


        0 0 15px rgba(255, 204, 0, .5);


}





/* =========================
   INTELLIGENCE PANELS
========================= */


.sentinel-panels {


    display: grid;


    grid-template-columns:

        repeat(auto-fit, minmax(350px, 1fr));


    gap: 20px;


    margin-top: 35px;


}





.sentinel-panel {


    background:

        rgba(0, 0, 0, .75);


    border:

        1px solid rgba(255, 0, 76, .25);


    border-radius: 12px;


    padding: 25px;


    box-shadow:


        inset 0 0 25px rgba(255, 0, 76, .05);


}





.sentinel-panel h2 {


    font-family: monospace;


    color: #ff004c;


    letter-spacing: 3px;


}




/* =========================
   MOBILE
========================= */


@media(max-width:768px) {


    #sentinel-dashboard {

        padding: 15px;

    }



    .sentinel-title {

        font-size: 26px;

        letter-spacing: 3px;

    }



}

/* =====================================================
   FOSSIL OPERATIONS THEME
===================================================== */

:root {
    --site-bg: #090a0a;
    --site-panel: rgba(23, 24, 23, .94);
    --site-panel-alt: rgba(35, 36, 34, .9);
    --site-steel: #777a77;
    --site-line: rgba(205, 207, 198, .2);
    --site-text: #e4e4dc;
    --site-muted: #a5a69f;
    --site-accent: #a72c2c;
    --site-warm: #c8b98f;
    --content-width: 1120px;
}

body {
    background: var(--site-bg);
    color: var(--site-text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16.5px;
}

.overlay {
    background:
        linear-gradient(rgba(8, 9, 9, .82), rgba(8, 9, 9, .96)),
        repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,.018) 120px);
}

.bg-layer { opacity: 0 !important; }

.hero { padding: 84px 20px 44px; }

.main-title,
.glitch-title {
    color: var(--site-text);
    text-shadow: none;
    background: linear-gradient(100deg, #777a77 10%, #efefe7 42%, #9d9f9b 66%, #d8d3c5 90%);
    background-size: 250% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: mineralWave 12s ease-in-out infinite alternate;
}

.main-title::before,
.main-title::after,
.glitch-title::before,
.glitch-title::after { display: none; }

@keyframes mineralWave {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
}

.hero-subtitle,
.intel-subtitle {
    color: var(--site-muted);
    letter-spacing: .18em;
}

.terminal { color: var(--site-warm); }

nav {
    position: sticky;
    z-index: 100;
    top: 0;
    width: min(var(--content-width), calc(100% - 28px));
    margin: auto;
    gap: 5px;
    padding: 9px 9px 24px;
    border: 1px solid rgba(112, 134, 166, .28);
    background: rgba(5, 7, 12, .94);
    backdrop-filter: blur(12px);
}

nav::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: auto 0 0;
    height: 19px;
    pointer-events: none;
    background:
        linear-gradient(rgba(230, 54, 166, .46) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 54, 166, .38) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(144, 23, 99, .22), rgba(7, 4, 10, .18));
    background-size: 100% 6px, 34px 100%, 100% 100%;
    box-shadow: inset 0 1px rgba(255, 115, 211, .22);
    transform-origin: bottom;
    transform: perspective(90px) rotateX(9deg);
}

nav a {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-width: 104px;
    padding: 10px 13px;
    border: 1px solid #1b2845;
    border-radius: 1px;
    color: #d9e6ff;
    background:
        linear-gradient(135deg, rgba(95, 137, 201, .28), transparent 45%),
        #132344;
    box-shadow: inset 0 0 0 1px rgba(119, 161, 225, .1), 0 3px 0 #080d19;
    font-size: 11px;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

nav a::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -38px;
    left: 50%;
    width: 115%;
    height: 76px;
    opacity: 0;
    transform: translateX(-50%) scale(.72);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(210, 237, 255, .56), rgba(108, 169, 220, .2) 36%, transparent 72%);
    filter: blur(5px);
    transition: opacity .28s ease, transform .35s ease;
}

nav a:hover,
nav a:focus-visible,
nav a.is-current {
    color: #f5fbff;
    border-color: rgba(210, 237, 255, .88);
    background: linear-gradient(to bottom, #315f91, #18365f);
    box-shadow:
        inset 0 0 0 1px rgba(238, 249, 255, .38),
        inset 0 7px 13px rgba(188, 226, 255, .14),
        0 0 12px rgba(129, 190, 231, .28),
        0 3px 0 #080d19;
    text-shadow: 0 0 7px rgba(218, 242, 255, .72);
    transform: translateY(-2px);
}

nav a:hover::before,
nav a:focus-visible::before,
nav a.is-current::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.card,
#sentinel-dashboard {
    width: min(var(--content-width), calc(100% - 28px));
    max-width: none;
    margin: 42px auto;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--site-line);
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.035), transparent 42%),
        var(--site-panel);
    box-shadow: 0 20px 65px rgba(0,0,0,.3);
}

.card::before,
#sentinel-dashboard::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 3px;
    margin: -43px 0 0 -42px;
    background: var(--site-accent);
}

.card h2,
.card h3 { color: var(--site-text); }

.intel-panel,
.intel-item,
.skill-group {
    border-color: var(--site-line);
    border-radius: 2px;
    background: rgba(0,0,0,.25);
}

.intel-item { border-left-color: var(--site-steel); }
.intel-status { color: var(--site-warm); }

.grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

.project {
    display: flex;
    min-width: 0;
    min-height: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    border: 1px solid var(--site-line);
    border-radius: 2px;
    background: var(--site-panel-alt);
    color: var(--site-text);
    font: inherit;
    text-align: left;
}

.project:hover,
.project:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(200,185,143,.55);
    box-shadow: 0 16px 36px rgba(0,0,0,.35);
    outline: none;
}

.project-index {
    color: var(--site-warm);
    font: 700 11px monospace;
    letter-spacing: .16em;
}

.project h3 { margin-top: 30px; }
.project p { color: var(--site-muted); }
.project-action {
    margin-top: auto;
    padding-top: 25px;
    color: var(--site-text);
    font: 700 12px monospace;
}

.legacy-skills { display: none; }
.capabilities-heading { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; margin-bottom: 42px; }
.capabilities-heading h2 { max-width: 680px; margin: 8px 0 0; }
.capabilities-heading p { margin: 0; color: var(--site-muted); line-height: 1.7; }
.section-kicker, .section-label, .unit-code { color: var(--site-warm); font: 700 11px monospace; letter-spacing: .18em; text-transform: uppercase; }
.section-label { display: block; margin-bottom: 14px; }
.expertise-block { margin-bottom: 46px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.expertise-card { min-height: 136px; padding: 18px; border: 1px solid var(--site-line); background: rgba(0,0,0,.25); }
.expertise-card > span { color: var(--site-muted); font: 700 10px monospace; }
.expertise-card h3 { min-height: 42px; margin: 18px 0 14px; font-size: 15px; }
.expertise-card.expertise-primary { border-color: rgba(200,185,143,.48); background: linear-gradient(135deg, rgba(200,185,143,.08), rgba(0,0,0,.2)); }
.expertise-meter { height: 2px; overflow: hidden; background: rgba(255,255,255,.09); }
.expertise-meter i { display: block; width: var(--level); height: 100%; background: var(--site-warm); }
.capability-units { display: grid; grid-template-columns: 1fr; }
.capability-unit { display: grid; grid-template-columns: minmax(210px,.8fr) 2fr; gap: 28px; padding: 20px 4px; border-bottom: 1px solid var(--site-line); }
.capability-unit:first-child { border-top: 1px solid var(--site-line); }
.capability-unit h3 { margin: 7px 0 0; }
.capability-unit ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.capability-unit li { padding: 7px 10px; border: 1px solid var(--site-line); color: var(--site-muted); font: 12px monospace; }
.capability-unit.unit-primary { border-left: 2px solid var(--site-warm); padding-left: 16px; }
.toolset-block { margin-top: 46px; }
.tool-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.tool-tile { display: flex; align-items: center; gap: 12px; min-height: 68px; padding: 12px; border: 1px solid var(--site-line); background: rgba(0,0,0,.25); }
.tool-tile b { display: grid; place-items: center; flex: 0 0 36px; height: 36px; border: 1px solid rgba(200,185,143,.45); color: var(--site-warm); font: 700 10px monospace; }
.tool-tile span { color: var(--site-text); font: 700 12px monospace; }
.skills-grid { display: grid; grid-template-columns: 1fr; gap: 0; }

.skill-group {
    display: grid;
    grid-template-columns: minmax(210px, .8fr) 2fr;
    gap: 28px;
    padding: 20px 4px;
    border: 0;
    border-bottom: 1px solid var(--site-line);
}

.skill-group:first-child { border-top: 1px solid var(--site-line); }
.skill-group h3,
.skill-group p { margin: 0; }
.skill-group p { color: var(--site-muted); }

.sentinel-title,
.sentinel-panel h2 {
    color: var(--site-text);
    text-shadow: none;
}

.sentinel-card,
.sentinel-panel {
    border-color: rgba(167,44,44,.38);
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(167,44,44,.045), rgba(0,0,0,.45));
    box-shadow: inset 0 0 28px rgba(0,0,0,.28);
}

.sentinel-card h3 { color: var(--site-muted); }
.sentinel-card div { color: var(--site-warm); text-shadow: none; }
.sentinel-map-launch { border-color: var(--site-steel); color: var(--site-text); }

#ufo-top {
    width: 128px;
    height: 72px;
    right: 24px;
    bottom: 22px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    box-shadow: none;
    animation: none;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 760px) {
    .capabilities-heading { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
    .expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .capability-unit { grid-template-columns: 1fr; gap: 16px; }
    .tool-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 440px) {
    .expertise-grid, .tool-grid { grid-template-columns: 1fr; }
}

#ufo-top:hover,
#ufo-top:focus-visible,
#ufo-top:focus,
#ufo-top:active {
    transform: translateY(-3px);
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
}
#ufo-top.launch { animation: rexReturn .65s ease; }
.rex-skull {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: filter .25s ease, transform .25s ease;
}

#ufo-top:hover .rex-skull,
#ufo-top:focus-visible .rex-skull {
    filter: drop-shadow(0 0 5px rgba(224, 204, 148, .5));
    transform: scale(1.04);
}

@keyframes rexReturn { 50% { transform: translateY(-9px) scale(.96); } }

@media (max-width: 760px) {
    .grid { grid-template-columns: 1fr; }
    .project { min-height: 215px; }
    .skill-group { grid-template-columns: 1fr; gap: 8px; }
    .card::before,
    #sentinel-dashboard::before { display: none; }

    #ufo-top,
    #ufo-top:hover,
    #ufo-top:focus,
    #ufo-top:focus-visible,
    #ufo-top:active {
        border: 0 !important;
        border-radius: 0 !important;
        outline: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        -webkit-appearance: none !important;
        appearance: none !important;
        -webkit-tap-highlight-color: transparent;
    }
}

@media (prefers-reduced-motion: reduce) {
    .main-title,
    .glitch-title { animation: none; }
}


.map-instructions {

    color: rgba(255, 255, 255, .65);

    font-family: monospace;

}


.sentinel-status {

    margin-top: 16px;
    padding: 11px 14px;
    border: 1px solid rgba(0, 255, 255, .35);
    border-radius: 8px;
    background: rgba(0, 0, 0, .55);
    color: #eafcff;
    font-family: monospace;
    line-height: 1.45;

}


.sentinel-status::before {

    content: "●";
    margin-right: 8px;

}


.sentinel-status-loading::before {

    color: #ffcc00;

}


.sentinel-status-fresh::before {

    color: #00ff99;

}


.sentinel-status-degraded::before {

    color: #ffcc00;

}


.sentinel-status-error::before {

    color: #ff6688;

}


.sentinel-launch-panel {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 20px;
    padding: 28px;
    border: 1px solid rgba(0, 255, 255, .28);
    border-left: 3px solid #00ffff;
    border-radius: 10px;
    background:
        linear-gradient(110deg, rgba(0, 255, 255, .08), rgba(0, 0, 0, .72) 55%),
        repeating-linear-gradient(0deg, transparent 0 5px, rgba(0, 255, 255, .018) 6px);
    box-shadow: inset 0 0 35px rgba(0, 255, 255, .035);

}


.sentinel-launch-kicker {

    display: block;
    margin-bottom: 10px;
    color: #00ffff;
    font-family: monospace;
    font-size: 11px;
    letter-spacing: .16em;

}


.sentinel-launch-panel strong {

    display: block;
    color: #ffcc00;
    font-family: monospace;
    font-size: clamp(18px, 2.3vw, 27px);

}


.sentinel-launch-panel p {

    max-width: 650px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.55;

}


.sentinel-map-launch {

    flex: 0 0 auto;
    padding: 14px 18px;
    border: 1px solid #00ffff;
    border-radius: 7px;
    background: rgba(0, 255, 255, .07);
    color: #00ffff;
    font-family: monospace;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;

}


.sentinel-map-launch:hover,
.sentinel-map-launch:focus-visible {

    background: rgba(0, 255, 255, .14);
    box-shadow: 0 0 22px rgba(0, 255, 255, .16);
    transform: translateY(-2px);

}


@media(max-width:768px) {
    .sentinel-launch-panel {
        align-items: stretch;
        flex-direction: column;
        padding: 21px;
    }

    .sentinel-map-launch {
        text-align: center;
    }

}
