/* ═══════════════════════════════════════════════
   style.css — JARVIS HUD Edition
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

/* ── HUD PALETTE ── */
:root {
    --hud-bg:           #020810;
    --hud-surface:      #05101a;
    --hud-surface2:     #071520;
    --hud-cyan:         #00d4ff;
    --hud-cyan-dim:     rgba(0, 212, 255, 0.07);
    --hud-cyan-border:  rgba(0, 212, 255, 0.18);
    --hud-orange:       #ff7700;
    --hud-green:        #00ff88;
    --hud-red:          #ff2244;
    --hud-yellow:       #ffcc00;
    --hud-text:         rgba(200, 230, 255, 0.75);
    --hud-text-dim:     rgba(0, 212, 255, 0.35);
    --hud-border:       rgba(0, 212, 255, 0.13);

    /* Legacy aliases kept so inline styles still work */
    --bg:        var(--hud-bg);
    --surface:   var(--hud-surface);
    --surface2:  var(--hud-surface2);
    --border:    var(--hud-border);
    --accent:    var(--hud-cyan);
    --accent2:   var(--hud-orange);
    --green:     var(--hud-green);
    --yellow:    var(--hud-yellow);
    --text:      var(--hud-text);
    --muted:     var(--hud-text-dim);
    --purple:    #a371f7;
    --mono:      'Share Tech Mono', monospace;
    --display:   'Orbitron', sans-serif;
    --body:      'Share Tech Mono', monospace;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ── BODY + SCANLINES ── */
body {
    font-family: 'Share Tech Mono', monospace;
    background: var(--hud-bg);
    color: var(--hud-cyan);
    line-height: 1.65;
    overflow-x: hidden;
}

/* Scanlines overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 998;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.10) 2px,
        rgba(0, 0, 0, 0.10) 4px
    );
}

/* ── HUD GRID BACKGROUND ── */
.hud-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 44px 44px;
}

/* ── PAGE CORNER BRACKETS ── */
.corner {
    position: fixed;
    width: 60px;
    height: 60px;
    z-index: 10;
    pointer-events: none;
}
.corner-tl { top: 12px; left: 12px; border-top: 1px solid var(--hud-cyan); border-left: 1px solid var(--hud-cyan); }
.corner-tr { top: 12px; right: 12px; border-top: 1px solid var(--hud-cyan); border-right: 1px solid var(--hud-cyan); }
.corner-bl { bottom: 12px; left: 12px; border-bottom: 1px solid var(--hud-cyan); border-left: 1px solid var(--hud-cyan); }
.corner-br { bottom: 12px; right: 12px; border-bottom: 1px solid var(--hud-cyan); border-right: 1px solid var(--hud-cyan); }
.corner::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--hud-cyan);
    box-shadow: 0 0 6px var(--hud-cyan);
}
.corner-tl::before { top: -1px; left: -1px; }
.corner-tr::before { top: -1px; right: -1px; }
.corner-bl::before { bottom: -1px; left: -1px; }
.corner-br::before { bottom: -1px; right: -1px; }

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 60px);
    height: 52px;
    background: rgba(2, 8, 16, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hud-cyan-border);
}
.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--hud-cyan);
    letter-spacing: .15em;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}
.nav-logo span { color: var(--hud-text-dim); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: .6rem;
    color: var(--hud-text-dim);
    text-decoration: none;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: color .2s, text-shadow .2s;
}
.nav-links a:hover {
    color: var(--hud-cyan);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}
.nav-links .active { color: var(--hud-cyan); }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: grid; place-items: center;
    padding: 100px clamp(20px, 8vw, 120px) 60px;
    position: relative; overflow: hidden;
}
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
    position: absolute; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,212,255,.06) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none;
    animation: hud-pulse 4s ease-in-out infinite;
}
.hero-inner { position: relative; max-width: 860px; }

.hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Orbitron', sans-serif; font-size: .65rem;
    color: var(--hud-cyan); letter-spacing: .2em; text-transform: uppercase;
    border: 1px solid var(--hud-cyan-border);
    padding: 6px 16px; margin-bottom: 28px;
    animation: fadeUp .6s ease both;
    position: relative;
}
.hero-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--hud-cyan);
    box-shadow: 0 0 8px var(--hud-cyan);
    animation: hud-blink 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.6rem, 7vw, 5.5rem);
    font-weight: 900; line-height: 1; letter-spacing: .04em;
    text-transform: uppercase;
    animation: fadeUp .6s .1s ease both;
}
.hero-title .accent {
    color: var(--hud-cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6), 0 0 60px rgba(0, 212, 255, 0.2);
}
.hero-title .dim { color: var(--hud-text-dim); }

.hero-sub {
    margin-top: 24px;
    font-family: 'Share Tech Mono', monospace;
    font-size: .85rem; color: var(--hud-text); font-weight: 400;
    max-width: 520px; line-height: 1.8; letter-spacing: .05em;
    animation: fadeUp .6s .2s ease both;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; animation: fadeUp .6s .3s ease both; }

/* HUD Primary Button */
.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--hud-cyan-dim);
    border: 1px solid var(--hud-cyan);
    color: var(--hud-cyan);
    font-family: 'Orbitron', sans-serif; font-size: .65rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 12px 24px;
    text-decoration: none;
    position: relative;
    transition: all .25s;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.1);
}
.btn-primary::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 10px; height: 10px;
    border-top: 2px solid var(--hud-orange);
    border-left: 2px solid var(--hud-orange);
}
.btn-primary::after {
    content: '';
    position: absolute; bottom: -1px; right: -1px;
    width: 10px; height: 10px;
    border-bottom: 2px solid var(--hud-orange);
    border-right: 2px solid var(--hud-orange);
}
.btn-primary:hover {
    background: rgba(0, 212, 255, 0.14);
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.2);
    color: #fff;
}

/* HUD Outline Button */
.btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--hud-cyan-border);
    background: transparent;
    color: var(--hud-text);
    font-family: 'Orbitron', sans-serif; font-size: .65rem;
    letter-spacing: .14em; text-transform: uppercase;
    padding: 12px 24px;
    text-decoration: none;
    position: relative;
    transition: all .25s;
}
.btn-outline::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 8px; height: 8px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
}
.btn-outline::after {
    content: '';
    position: absolute; bottom: -1px; right: -1px;
    width: 8px; height: 8px;
    border-bottom: 1px solid var(--hud-orange);
    border-right: 1px solid var(--hud-orange);
}
.btn-outline:hover {
    border-color: var(--hud-cyan);
    color: var(--hud-cyan);
    background: var(--hud-cyan-dim);
}

.hero-stats {
    display: flex; gap: 40px; margin-top: 52px;
    padding-top: 36px; border-top: 1px solid var(--hud-cyan-border);
    animation: fadeUp .6s .4s ease both;
}
.stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem; font-weight: 900; color: var(--hud-cyan);
    line-height: 1;
    text-shadow: 0 0 16px rgba(0, 212, 255, 0.5);
}
.stat-num .unit { font-size: 1rem; color: var(--hud-orange); }
.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: .6rem; color: var(--hud-text-dim);
    letter-spacing: .12em; text-transform: uppercase; margin-top: 6px;
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes hud-pulse {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
}
@keyframes hud-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.1; }
}
@keyframes hud-spin {
    to { transform: rotate(360deg); }
}

/* ── SECTIONS ── */
.section { padding: clamp(60px,10vw,120px) clamp(20px,8vw,120px); max-width: 1100px; margin: 0 auto; }

.section-label {
    font-family: 'Orbitron', sans-serif; font-size: .55rem; color: var(--hud-text-dim);
    letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px;
    display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: '//'; color: rgba(0, 212, 255, 0.2); font-family: 'Share Tech Mono', monospace; }
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 900; line-height: 1.1; margin-bottom: 14px;
    text-transform: uppercase; letter-spacing: .06em;
    color: var(--hud-cyan);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.section-desc {
    font-family: 'Share Tech Mono', monospace;
    color: var(--hud-text); font-size: .82rem; max-width: 540px;
    letter-spacing: .04em; line-height: 1.8;
}

/* ── ABOUT ── */
#about { background: var(--hud-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }

.about-card {
    background: var(--hud-cyan-dim);
    border: 1px solid var(--hud-cyan-border);
    padding: 28px;
    position: relative;
    transition: border-color .3s, box-shadow .3s;
}
.about-card::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 10px; height: 10px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
}
.about-card::after {
    content: '';
    position: absolute; bottom: -1px; right: -1px;
    width: 10px; height: 10px;
    border-bottom: 1px solid var(--hud-orange);
    border-right: 1px solid var(--hud-orange);
}
.about-card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.07);
}
.about-card-icon {
    width: 36px; height: 36px;
    background: rgba(0, 212, 255, 0.08); border: 1px solid var(--hud-cyan-border);
    display: grid; place-items: center; color: var(--hud-cyan); font-size: .9rem; margin-bottom: 16px;
}
.about-card h3 {
    font-family: 'Orbitron', sans-serif; font-size: .85rem; font-weight: 700;
    margin-bottom: 10px; text-transform: uppercase; letter-spacing: .1em;
    color: var(--hud-cyan);
}
.about-card p { color: var(--hud-text); font-size: .78rem; line-height: 1.75; letter-spacing: .03em; }

/* ── SKILL TAGS ── */
.skill-section { margin-top: 48px; display: flex; flex-direction: column; gap: 22px; }
.skill-group { }
.skill-cat-label {
    font-family: 'Orbitron', sans-serif; font-size: .5rem; color: var(--hud-text-dim);
    letter-spacing: .2em; text-transform: uppercase;
    margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.skill-cat-label::before { content: '//'; color: rgba(0, 212, 255, 0.18); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
    font-family: 'Orbitron', sans-serif; font-size: .55rem; font-weight: 700;
    padding: 5px 14px;
    border: 1px solid var(--hud-cyan-border);
    background: var(--hud-cyan-dim);
    color: var(--hud-text);
    letter-spacing: .1em; text-transform: uppercase;
    transition: border-color .2s, color .2s, box-shadow .2s;
    cursor: default;
}
.skill-tag:hover { border-color: var(--hud-cyan); color: var(--hud-cyan); box-shadow: 0 0 10px rgba(0,212,255,.1); }
.skill-tag.c-accent { border-color: rgba(0,212,255,.25); color: var(--hud-cyan); background: rgba(0,212,255,.06); }
.skill-tag.c-green  { border-color: rgba(0,255,136,.25); color: var(--hud-green); background: rgba(0,255,136,.05); }
.skill-tag.c-orange { border-color: rgba(255,119,0,.25); color: var(--hud-orange); background: rgba(255,119,0,.06); }

/* ── PORTFOLIO ── */
#portfolio { background: var(--hud-surface); border-top: 1px solid var(--hud-cyan-border); border-bottom: 1px solid var(--hud-cyan-border); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 48px; }

.portfolio-card {
    background: var(--hud-cyan-dim);
    border: 1px solid var(--hud-cyan-border);
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    text-decoration: none; color: inherit; display: block;
    position: relative;
}
.portfolio-card::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 10px; height: 10px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
    z-index: 2;
}
.portfolio-card::after {
    content: '';
    position: absolute; bottom: -1px; right: -1px;
    width: 10px; height: 10px;
    border-bottom: 1px solid var(--hud-orange);
    border-right: 1px solid var(--hud-orange);
    z-index: 2;
}
.portfolio-card:hover {
    border-color: rgba(0,212,255,.4);
    box-shadow: 0 0 24px rgba(0,212,255,.1);
    transform: translateY(-3px);
}
.portfolio-img { width: 100%; height: 180px; object-fit: cover; display: block; filter: grayscale(60%) brightness(.6) hue-rotate(160deg); transition: filter .3s; }
.portfolio-card:hover .portfolio-img { filter: grayscale(20%) brightness(.8); }
.portfolio-img-placeholder {
    width: 100%; height: 180px;
    background: linear-gradient(135deg, rgba(0,212,255,.04) 0%, rgba(0,0,0,.2) 100%);
    display: grid; place-items: center;
    font-family: 'Orbitron', sans-serif; font-size: .6rem; color: var(--hud-text-dim);
    letter-spacing: .15em; text-transform: uppercase;
    border-bottom: 1px solid var(--hud-cyan-border);
}
.portfolio-body { padding: 20px; }
.portfolio-tag {
    font-family: 'Orbitron', sans-serif; font-size: .5rem; color: var(--hud-text-dim);
    letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; display: block;
}
.portfolio-card h3 {
    font-family: 'Orbitron', sans-serif; font-size: .82rem; font-weight: 700;
    margin-bottom: 8px; color: var(--hud-cyan); letter-spacing: .04em;
    text-transform: uppercase; line-height: 1.3;
}
.portfolio-card p { color: var(--hud-text); font-size: .75rem; line-height: 1.7; letter-spacing: .03em; }
.portfolio-arrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Orbitron', sans-serif; font-size: .55rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--hud-cyan); margin-top: 14px;
}
.portfolio-tech { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0; }
.portfolio-tech span {
    font-family: 'Share Tech Mono', monospace; font-size: .6rem;
    background: rgba(0,212,255,.05); border: 1px solid rgba(0,212,255,.12);
    color: var(--hud-text-dim); padding: 2px 7px; letter-spacing: .05em;
}
.portfolio-status {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'Orbitron', sans-serif; font-size: .48rem; letter-spacing: .12em;
    padding: 3px 10px; margin-bottom: 8px; text-transform: uppercase;
}
.status-done { background: rgba(0,255,136,.07); color: var(--hud-green); border: 1px solid rgba(0,255,136,.2); }
.status-wip  { background: rgba(255,204,0,.07); color: var(--hud-yellow); border: 1px solid rgba(255,204,0,.2); }
.status-dot  { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: hud-blink 1.6s infinite; }

/* WIP locked card */
.portfolio-card.wip-locked {
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(40%);
}
.portfolio-card.wip-locked:hover { transform: none; box-shadow: none; }

/* WIP overlay */
.wip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 16, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 3;
    pointer-events: none;
}
.wip-overlay-label {
    font-family: 'Orbitron', sans-serif;
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--hud-orange);
    text-shadow: 0 0 12px rgba(255, 119, 0, 0.6);
    border: 1px solid rgba(255, 119, 0, 0.4);
    padding: 6px 16px;
}
.wip-overlay-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: .58rem;
    letter-spacing: .14em;
    color: var(--hud-text-dim);
}

/* ── TECH STACK ── */
#stack { background: var(--hud-bg); border-top: 1px solid var(--hud-cyan-border); }

.stack-chip {
    display: inline-flex; flex-direction: column; gap: 3px;
    background: var(--hud-cyan-dim); border: 1px solid var(--hud-cyan-border);
    padding: 10px 14px; min-width: 110px;
    transition: border-color .2s, box-shadow .2s;
    cursor: default;
    position: relative;
}
.stack-chip::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 6px; height: 6px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
}
.stack-chip:hover { border-color: var(--cc, var(--hud-cyan)); box-shadow: 0 0 14px rgba(0,212,255,.08); }
.stack-chip i { color: var(--cc, var(--hud-cyan)); font-size: .9rem; margin-bottom: 4px; }
.stack-chip span { font-family: 'Orbitron', sans-serif; font-size: .62rem; font-weight: 700; color: var(--hud-text); letter-spacing: .06em; text-transform: uppercase; }
.stack-chip small { font-family: 'Share Tech Mono', monospace; font-size: .6rem; color: var(--hud-text-dim); }

/* ── GITHUB SECTION ── */
#github { background: var(--hud-bg); border-top: 1px solid var(--hud-cyan-border); }
.gh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.gh-card {
    background: var(--hud-cyan-dim); border: 1px solid var(--hud-cyan-border);
    padding: 20px 22px; position: relative;
}
.gh-card::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 8px; height: 8px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
}
.gh-card-title {
    font-family: 'Orbitron', sans-serif; font-size: .5rem; color: var(--hud-cyan);
    letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hud-green); box-shadow: 0 0 6px var(--hud-green); animation: hud-blink 1.6s ease-in-out infinite; }
.gh-event { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(0,212,255,.06); align-items: flex-start; }
.gh-event:last-child { border-bottom: none; }
.gh-event-icon { color: var(--hud-cyan); font-size: .8rem; margin-top: 1px; flex-shrink: 0; width: 14px; }
.gh-event-body { flex: 1; min-width: 0; }
.gh-event-repo { font-family: 'Share Tech Mono', monospace; font-size: .7rem; color: var(--hud-text); font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gh-event-msg  { font-family: 'Share Tech Mono', monospace; font-size: .62rem; color: var(--hud-text-dim); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gh-event-time { font-family: 'Share Tech Mono', monospace; font-size: .58rem; color: var(--hud-text-dim); flex-shrink: 0; }
.gh-repo-list { display: flex; flex-direction: column; gap: 8px; }
.gh-repo {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 10px 12px; background: rgba(0,212,255,.04);
    border: 1px solid rgba(0,212,255,.1); text-decoration: none;
    transition: border-color .2s;
}
.gh-repo:hover { border-color: rgba(0,212,255,.3); }
.gh-repo-name { font-family: 'Share Tech Mono', monospace; font-size: .74rem; font-weight: 400; color: var(--hud-cyan); }
.gh-repo-desc { font-family: 'Share Tech Mono', monospace; font-size: .62rem; color: var(--hud-text-dim); margin-top: 3px; }
.gh-repo-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: 10px; }
.gh-lang { font-family: 'Share Tech Mono', monospace; font-size: .58rem; color: var(--hud-text-dim); display: flex; align-items: center; gap: 4px; }
.lang-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.gh-msg { font-family: 'Share Tech Mono', monospace; font-size: .7rem; color: var(--hud-text-dim); padding: 20px 0; text-align: center; }

/* ── NOW ── */
#now { background: var(--hud-surface); border-top: 1px solid var(--hud-cyan-border); border-bottom: 1px solid var(--hud-cyan-border); }
.now-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.now-card {
    background: var(--hud-cyan-dim); border: 1px solid var(--hud-cyan-border);
    padding: 22px; position: relative;
    transition: border-color .3s, box-shadow .3s;
}
.now-card::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 8px; height: 8px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
}
.now-card::after {
    content: '';
    position: absolute; bottom: -1px; right: -1px;
    width: 8px; height: 8px;
    border-bottom: 1px solid var(--hud-orange);
    border-right: 1px solid var(--hud-orange);
}
.now-card:hover { border-color: rgba(0,212,255,.28); box-shadow: 0 0 18px rgba(0,212,255,.06); }
.now-card-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.now-icon {
    width: 34px; height: 34px;
    display: grid; place-items: center; font-size: .85rem; flex-shrink: 0;
    background: rgba(0,212,255,.08); border: 1px solid var(--hud-cyan-border);
    color: var(--hud-cyan);
}
.now-card h4 {
    font-family: 'Orbitron', sans-serif; font-size: .75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; color: var(--hud-cyan);
}
.now-card p { color: var(--hud-text); font-size: .76rem; line-height: 1.7; letter-spacing: .03em; }
.now-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'Orbitron', sans-serif; font-size: .48rem; letter-spacing: .14em; text-transform: uppercase;
    background: rgba(0,212,255,.06); color: var(--hud-cyan);
    border: 1px solid rgba(0,212,255,.18); padding: 3px 10px; margin-top: 12px;
}

/* ── CONTACT ── */
#contact { background: var(--hud-bg); }
.contact-inner {
    max-width: 640px; margin: 48px auto 0;
    background: var(--hud-cyan-dim); border: 1px solid var(--hud-cyan-border);
    padding: 44px; text-align: center;
    position: relative;
}
.contact-inner::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 14px; height: 14px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
}
.contact-inner::after {
    content: '';
    position: absolute; bottom: -1px; right: -1px;
    width: 14px; height: 14px;
    border-bottom: 1px solid var(--hud-orange);
    border-right: 1px solid var(--hud-orange);
}
.contact-inner p {
    font-family: 'Share Tech Mono', monospace;
    color: var(--hud-text); font-size: .8rem; margin-bottom: 32px;
    line-height: 1.8; letter-spacing: .04em;
}
.contact-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.contact-btn {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid var(--hud-cyan-border); color: var(--hud-text-dim);
    font-family: 'Orbitron', sans-serif; font-size: .55rem; letter-spacing: .14em;
    text-transform: uppercase; padding: 10px 20px; text-decoration: none;
    position: relative;
    transition: border-color .2s, color .2s, background .2s;
}
.contact-btn::before {
    content: '';
    position: absolute; top: -1px; left: -1px;
    width: 6px; height: 6px;
    border-top: 1px solid var(--hud-orange);
    border-left: 1px solid var(--hud-orange);
}
.contact-btn:hover { border-color: var(--hud-cyan); color: var(--hud-cyan); background: var(--hud-cyan-dim); }

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--hud-cyan-border);
    padding: 22px clamp(20px, 8vw, 120px);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
    background: rgba(2, 8, 16, 0.9);
}
footer p {
    font-family: 'Share Tech Mono', monospace;
    font-size: .6rem; color: var(--hud-text-dim); letter-spacing: .08em;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--hud-bg); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,.2); }
::-webkit-scrollbar-thumb:hover { background: rgba(0,212,255,.4); }

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .nav-links { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .now-grid { grid-template-columns: 1fr; }
    .gh-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .contact-inner { padding: 28px 20px; }
    footer { flex-direction: column; gap: 8px; text-align: center; }
    .skill-name { width: 100px; }
}
