/* ═══════════════════════════════════════════════════
   MYCO BENEDICT — PORTFOLIO CSS
   Aesthetic: Tactical HUD · Military-Tech · Precision
   ═══════════════════════════════════════════════════ */

:root {
    --bg:          #060a10;
    --bg-card:     #0c1320;
    --bg-card2:    #0f1928;
    --green:       #1fd65f;
    --green-dim:   #0f7a33;
    --green-glow:  rgba(31,214,95,0.18);
    --green-ghost: rgba(31,214,95,0.07);
    --cyan:        #38bdf8;
    --text:        #e8f0fe;
    --text-muted:  #6b7fa3;
    --border:      rgba(255,255,255,0.06);
    --border-lit:  rgba(31,214,95,0.25);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    cursor: none;
}

/* ── Background Canvas ── */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
}

/* ── Custom Cursor ── */
#cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: background 0.2s;
}
#cursor-ring {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(31,214,95,0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}
body:not(:hover) #cursor-dot,
body:not(:hover) #cursor-ring { opacity: 0; }

/* ── Scroll Progress ── */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--cyan));
    width: 0%;
    z-index: 3000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px var(--green);
}

/* ── Header / Nav ── */
header {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(6,10,16,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 1.1rem 2rem;
}

.logo {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 2px;
    user-select: none;
}
.bracket { color: var(--green); }

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}
nav a em {
    font-style: normal;
    color: var(--green);
    margin-right: 0.3rem;
}
nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    height: 1px;
    width: 0;
    background: var(--green);
    transition: width 0.3s ease;
}
nav a:hover { color: var(--text); }
nav a:hover::after { width: 100%; }

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-muted);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Main Layout ── */
main {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ── Section Base ── */
section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
                transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
section.visible { opacity: 1; transform: translateY(0); }

/* ── Section Label ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.s-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: var(--green);
    letter-spacing: 2px;
    border: 1px solid var(--green-dim);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}
h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 1rem;
}
h2::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--green-dim), transparent);
}

.desc-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 780px;
    margin-bottom: 1.4rem;
    font-weight: 400;
}

/* ════════════════════════
   HERO
   ════════════════════════ */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    border-bottom: none;
    gap: 3rem;
    opacity: 1 !important;
    transform: none !important;
}

.hero-body { flex: 1; }

.hero-meta-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    flex-shrink: 0;
    animation: pulse-anim 2s ease-in-out infinite;
}
@keyframes pulse-anim {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green); }
    50%       { opacity: 0.6; box-shadow: 0 0 16px var(--green); }
}

.typewriter-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.88rem;
    color: var(--green);
    letter-spacing: 2px;
}
.typewriter-text::after {
    content: '|';
    animation: blink 0.7s step-end infinite;
}
.typewriter-text.done::after { display: none; }
@keyframes blink { 50% { opacity: 0; } }

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 1.2rem;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
    color: var(--green);
}
.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    color: var(--green);
}
.glitch::before {
    animation: glitch1 4s infinite;
    clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
    transform: translate(-2px, 0);
    opacity: 0.7;
    color: var(--cyan);
}
.glitch::after {
    animation: glitch2 4s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    transform: translate(2px, 0);
    opacity: 0.7;
    color: #f472b6;
}
@keyframes glitch1 {
    0%,90%,100% { transform: translate(0,0); opacity:0; }
    92%          { transform: translate(-3px,1px); opacity:0.8; }
    94%          { transform: translate(2px,-1px); opacity:0.5; }
    96%          { transform: translate(-1px,2px); opacity:0.8; }
}
@keyframes glitch2 {
    0%,90%,100% { transform: translate(0,0); opacity:0; }
    92%          { transform: translate(3px,-1px); opacity:0.8; }
    94%          { transform: translate(-2px,1px); opacity:0.5; }
    96%          { transform: translate(1px,-2px); opacity:0.8; }
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 580px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green);
    color: var(--bg);
    padding: 0.75rem 1.8rem;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 0 20px rgba(31,214,95,0.3);
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(31,214,95,0.5);
}

.cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-lit);
    color: var(--green);
    padding: 0.75rem 1.8rem;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.cta-ghost:hover {
    background: var(--green-ghost);
    border-color: var(--green);
}

.hero-coords {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}
.hero-coords .sep { color: var(--green-dim); }

/* ── HUD Graphic ── */
.hud-wrap {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
}
.hud-ring.r1 {
    width: 300px; height: 300px;
    border-color: rgba(31,214,95,0.12);
    animation: spin-cw 30s linear infinite;
}
.hud-ring.r2 {
    width: 220px; height: 220px;
    border-color: rgba(31,214,95,0.22);
    border-style: dashed;
    animation: spin-ccw 20s linear infinite;
}
.hud-ring.r3 {
    width: 140px; height: 140px;
    border-color: rgba(31,214,95,0.35);
    animation: spin-cw 12s linear infinite;
}

@keyframes spin-cw  { to { transform: rotate(360deg); } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }

.hud-cross {
    position: absolute;
    background: rgba(31,214,95,0.15);
}
.hc-h { width: 300px; height: 1px; }
.hc-v { width: 1px; height: 300px; }

.hud-center-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    z-index: 2;
}
.hud-main {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--green);
    text-shadow: 0 0 20px rgba(31,214,95,0.6);
    line-height: 1;
}
.hud-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.hud-tick {
    position: absolute;
    width: 10px; height: 2px;
    background: var(--green);
}
.ht-n { top: 0; left: 50%; transform: translateX(-50%); }
.ht-s { bottom: 0; left: 50%; transform: translateX(-50%); }
.ht-e { right: 0; top: 50%; transform: translateY(-50%); }
.ht-w { left: 0; top: 50%; transform: translateY(-50%); }

/* ════════════════════════
   ABOUT
   ════════════════════════ */
.about-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.img-frame {
    position: relative;
    display: inline-block;
    width: 100%;
}

.profile-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    filter: grayscale(20%) contrast(1.05);
}

/* Tactical corner brackets */
.corner {
    position: absolute;
    width: 20px; height: 20px;
    border-color: var(--green);
    border-style: solid;
}
.corner.tl { top: -4px; left: -4px; border-width: 2px 0 0 2px; }
.corner.tr { top: -4px; right: -4px; border-width: 2px 2px 0 0; }
.corner.bl { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; }
.corner.br { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; }

.img-caption {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--green);
    background: rgba(6,10,16,0.85);
    padding: 0.3rem 0.6rem;
    position: absolute;
    bottom: 10px;
    left: 0; right: 0;
    text-align: center;
}

.about-stats {
    display: flex;
    gap: 0;
    margin-top: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 0.5rem;
    border-right: 1px solid var(--border);
    background: var(--bg-card);
}
.stat:last-child { border-right: none; }
.stat-v {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}
.stat-l {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

.about-text-col { display: flex; flex-direction: column; gap: 0; }
.about-text-col .desc-text { margin-bottom: 1.2rem; }

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid var(--border-lit);
    border-radius: 3px;
    color: var(--green);
    background: var(--green-ghost);
    letter-spacing: 0.5px;
}

/* ════════════════════════
   CARDS
   ════════════════════════ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
    border-color: var(--border-lit);
    transform: translateY(-4px);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(600px at var(--mx,50%) var(--my,50%), rgba(31,214,95,0.06), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.card:hover .card-glow { opacity: 1; }

.card-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--green-dim);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}
.badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(31,214,95,0.2);
    border-radius: 3px;
    color: var(--green);
    background: rgba(31,214,95,0.05);
    letter-spacing: 0.5px;
}

/* ── Skill Bars ── */
.skill-bars-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 0.5rem;
}
.sb-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.skill-bars { display: flex; flex-direction: column; gap: 1.2rem; }

.sb-item {}
.sb-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
}
.sb-pct {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: var(--green);
}

.sb-track {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}
.sb-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green-dim), var(--green));
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 0 8px rgba(31,214,95,0.4);
}

/* ════════════════════════
   GOALS / TIMELINE
   ════════════════════════ */
.timeline { margin-top: 2.5rem; }

.tl-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tl-marker { display: flex; flex-direction: column; align-items: center; padding-top: 0.4rem; }

.tl-dot {
    width: 14px; height: 14px;
    border: 2px solid var(--green-dim);
    border-radius: 50%;
    background: var(--bg);
    flex-shrink: 0;
    transition: all 0.3s;
}
.tl-dot.active {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.tl-line {
    flex: 1;
    width: 1px;
    background: var(--border);
    margin: 6px 0;
    min-height: 40px;
}

.tl-card {
    margin-bottom: 0;
}

.tl-phase {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    color: var(--green);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.6rem;
}

.tl-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.7rem;
}

/* ════════════════════════
   CONTACT
   ════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 1rem;
}

.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    text-decoration: none;
    transition: all 0.25s ease;
    color: var(--text);
}
.contact-link:hover {
    border-color: var(--border-lit);
    background: var(--green-ghost);
    transform: translateX(4px);
}
.cl-icon { font-size: 1.4rem; }
.cl-text { display: flex; flex-direction: column; flex: 1; }
.cl-label { font-size: 0.75rem; color: var(--text-muted); font-family: 'Share Tech Mono', monospace; letter-spacing: 1px; }
.cl-val { font-size: 0.95rem; color: var(--green); font-weight: 500; }
.cl-arrow { color: var(--text-muted); margin-left: auto; transition: transform 0.25s; }
.contact-link:hover .cl-arrow { transform: translateX(3px); color: var(--green); }

.availability {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Form */
form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

input, textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    width: 100%;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
}
input:focus, textarea:focus {
    border-color: var(--green-dim);
    box-shadow: 0 0 0 3px rgba(31,214,95,0.08);
}
input::placeholder, textarea::placeholder { color: rgba(107,127,163,0.5); }

form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background: linear-gradient(135deg, var(--green), #16a34a);
    color: var(--bg);
    border: none;
    border-radius: 4px;
    padding: 0.9rem 1.5rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 20px rgba(31,214,95,0.2);
}
form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(31,214,95,0.35);
}
form button:active { transform: translateY(0); }
form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ════════════════════════
   FOOTER
   ════════════════════════ */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    z-index: 1;
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
}
.footer-year {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ════════════════════════
   HERO SCAN LOG
   ════════════════════════ */
.hero-scanlog {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1.2rem;
    letter-spacing: 1px;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    gap: 0;
}
.sl-prefix { color: var(--green); }
#scan-text {
    transition: opacity 0.2s;
}

/* ════════════════════════
   HUD UPGRADES
   ════════════════════════ */
.hud-wrap {
    cursor: crosshair;
    transition: transform 0.1s ease-out;
}

/* Radar canvas sits inside the HUD, same size */
#radar-canvas {
    position: absolute;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Corner brackets around the HUD square */
.hud-corner {
    position: absolute;
    width: 16px; height: 16px;
    border-color: rgba(31,214,95,0.5);
    border-style: solid;
    z-index: 3;
}
.hc-tl { top: 0;   left: 0;   border-width: 2px 0 0 2px; }
.hc-tr { top: 0;   right: 0;  border-width: 2px 2px 0 0; }
.hc-bl { bottom: 0;left: 0;   border-width: 0 0 2px 2px; }
.hc-br { bottom: 0;right: 0;  border-width: 0 2px 2px 0; }

/* HUD center clickable */
#hud-center {
    cursor: pointer;
    z-index: 4;
    transition: transform 0.2s;
}
#hud-center:hover .hud-main {
    text-shadow: 0 0 30px var(--green), 0 0 60px var(--green);
}
#hud-center:active { transform: scale(0.95); }

/* HUD scanning status */
.hud-status {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--green-dim);
    white-space: nowrap;
    z-index: 4;
}

/* Radar blip dots */
.blip {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green), 0 0 16px rgba(31,214,95,0.4);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: blip-fade 2.5s ease-out forwards;
    z-index: 3;
}
@keyframes blip-fade {
    0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
    60%  { opacity: 0.8; }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(0.3); }
}

/* HUD scan mode (clicked) */
.hud-wrap.scan-mode .hud-ring.r1 { animation-duration: 3s !important; border-color: rgba(31,214,95,0.4) !important; }
.hud-wrap.scan-mode .hud-ring.r2 { animation-duration: 2s !important; border-color: rgba(31,214,95,0.5) !important; }
.hud-wrap.scan-mode .hud-ring.r3 { animation-duration: 1s !important; border-color: rgba(31,214,95,0.7) !important; }
.hud-wrap.scan-mode #hud-status { color: var(--green); }

/* ════════════════════════
   CLICK RIPPLE
   ════════════════════════ */
.click-ripple {
    position: fixed;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(31,214,95,0.7);
    pointer-events: none;
    z-index: 9990;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-expand 0.7s ease-out forwards;
}
@keyframes ripple-expand {
    0%   { width: 0px;   height: 0px;   opacity: 0.8; }
    100% { width: 120px; height: 120px; opacity: 0; }
}

/* ════════════════════════
   HERO PARALLAX LAYERS
   ════════════════════════ */
.hero-body  { will-change: transform; }
.hud-wrap   { will-change: transform; }

/* ════════════════════════
   MOBILE
   ════════════════════════ */
@media (max-width: 900px) {
    .hero { flex-direction: column; min-height: auto; padding-top: 7rem; text-align: left; }
    .hud-wrap { display: none; }
    .about-layout { grid-template-columns: 1fr; gap: 2rem; }
    .img-frame { max-width: 260px; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px; left: 0; right: 0;
        background: rgba(6,10,16,0.97);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        z-index: 999;
    }
    nav ul.open { display: flex; }
    .hamburger { display: flex; }
    body { cursor: auto; }
    #cursor-dot, #cursor-ring { display: none; }
    h2 { font-size: 1.9rem; }
    .hero h1 { font-size: 2.8rem; }
    main { padding: 0 1.2rem; }
    .tl-item { grid-template-columns: 28px 1fr; gap: 1rem; }
}