:root {
    --bg-primary: #050510;
    --bg-secondary: #08081a;
    --bg-card: #0d0d22;
    --bg-card-hover: #111130;
    --neon-cyan: #00fff5;
    --neon-magenta: #ff00aa;
    --neon-green: #00ff41;
    --neon-yellow: #ffd700;
    --text-primary: #e2e8f0;
    --text-secondary: #8892a4;
    --border: rgba(0, 255, 245, 0.12);
    --border-bright: rgba(0, 255, 245, 0.4);
    --shadow-cyan: 0 0 25px rgba(0, 255, 245, 0.15);
    --shadow-magenta: 0 0 25px rgba(255, 0, 170, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    color: var(--text-primary);
    line-height: 1.2;
}

p { color: var(--text-secondary); }
a { text-decoration: none; color: var(--neon-cyan); transition: all 0.3s; }
a:hover { color: var(--neon-magenta); }
ul { list-style: none; }

.highlight { color: var(--neon-cyan); font-weight: 600; }

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

#navbar.scrolled {
    padding: 0.7rem 0;
    border-bottom-color: var(--border-bright);
    box-shadow: 0 4px 30px rgba(0, 255, 245, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.logo-bracket { color: var(--neon-cyan); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.88rem;
    color: var(--text-secondary);
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s;
    box-shadow: 0 0 6px var(--neon-cyan);
}

.nav-links a:hover,
.nav-links a.active { color: var(--neon-cyan); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.82rem;
    padding: 0.48rem 1.1rem;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 3px;
    white-space: nowrap;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-cta:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(0, 255, 245, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 245, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 245, 0.025) 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.hero-bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(0, 255, 245, 0.04) 0%, transparent 70%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-tag {
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-green);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-name {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

/* ===== GLITCH ===== */
.glitch { position: relative; }

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glitch::before {
    color: var(--neon-cyan);
    animation: glitch-before 4s infinite linear;
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%);
    opacity: 0;
}

.glitch::after {
    color: var(--neon-magenta);
    animation: glitch-after 4s infinite linear;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    opacity: 0;
}

@keyframes glitch-before {
    0%, 80%   { transform: translateX(0);   opacity: 0; }
    82%        { transform: translateX(-4px); opacity: 0.85; }
    84%        { transform: translateX(4px);  opacity: 0.85; }
    86%, 100% { transform: translateX(0);   opacity: 0; }
}

@keyframes glitch-after {
    0%, 84%   { transform: translateX(0);  opacity: 0; }
    86%        { transform: translateX(4px); opacity: 0.85; }
    88%        { transform: translateX(-4px); opacity: 0.85; }
    90%, 100% { transform: translateX(0);  opacity: 0; }
}

.hero-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.title-accent { color: var(--neon-magenta); }

.cursor {
    color: var(--neon-cyan);
    animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-summary {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.7rem;
    background: var(--neon-cyan);
    color: var(--bg-primary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--neon-magenta);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 170, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.7rem;
    background: transparent;
    color: var(--neon-cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.88rem;
    border: 1px solid var(--neon-cyan);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(0, 255, 245, 0.08);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
    color: var(--neon-cyan);
}

.hero-social {
    display: flex;
    gap: 1.4rem;
}

.hero-social a {
    color: var(--text-secondary);
    font-size: 1.35rem;
    transition: all 0.3s;
}

.hero-social a:hover {
    color: var(--neon-cyan);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px var(--neon-cyan));
}

/* Hero Image */
.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* ===== PHOTO ===== */
.image-frame {
    position: relative;
    width: 270px;
    height: 270px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    filter: grayscale(15%) contrast(1.05);
    transition: filter 0.4s;
}

.image-frame:hover img { filter: grayscale(0%) contrast(1.1); }

.image-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-cyan));
    border-radius: 6px;
    z-index: 0;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.35; }
    50%       { opacity: 0.7; }
}

.image-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 2;
}

.image-corner.tl { top: -5px; left: -5px; border-top: 2px solid var(--neon-cyan); border-left: 2px solid var(--neon-cyan); }
.image-corner.tr { top: -5px; right: -5px; border-top: 2px solid var(--neon-cyan); border-right: 2px solid var(--neon-cyan); }
.image-corner.bl { bottom: -5px; left: -5px; border-bottom: 2px solid var(--neon-cyan); border-left: 2px solid var(--neon-cyan); }
.image-corner.br { bottom: -5px; right: -5px; border-bottom: 2px solid var(--neon-cyan); border-right: 2px solid var(--neon-cyan); }

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 12px rgba(0, 255, 245, 0.5);
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 0.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.scroll-indicator span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    animation: scroll-anim 1.6s ease-in-out infinite;
}

@keyframes scroll-anim {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== SECTIONS ===== */
section { padding: 6rem 0; }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.section-tag {
    font-family: 'Share Tech Mono', monospace;
    color: var(--neon-cyan);
    font-size: 1rem;
    white-space: nowrap;
}

.section-header h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--text-primary);
    white-space: nowrap;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border-bright), transparent);
    min-width: 40px;
}

/* ===== ABOUT ===== */
#about { background-color: var(--bg-secondary); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.cert-list {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.cert-item {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.83rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cert-item i { color: var(--neon-yellow); }

/* Terminal */
.about-terminal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-cyan);
}

.terminal-header {
    background: #111128;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red    { background: #fc6058; }
.terminal-dot.yellow { background: #fec02f; }
.terminal-dot.green  { background: #2aca3e; }

.terminal-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.83rem;
    line-height: 1.9;
}

.t-prompt  { color: var(--neon-green); margin-right: 0.5rem; }
.t-output  { color: var(--text-secondary); padding-left: 1rem; }
.t-green   { color: var(--neon-green); }

.cursor-blink {
    color: var(--neon-cyan);
    animation: blink 1s step-end infinite;
}

/* ===== SKILLS ===== */
#skills { background-color: var(--bg-primary); }

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.4rem;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.skill-category:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-3px);
}

.skill-cat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.skill-cat-header i   { color: var(--neon-cyan); font-size: 1.05rem; }
.skill-cat-header h4  {
    font-family: 'Orbitron', monospace;
    font-size: 0.78rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.skill-tags span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.73rem;
    padding: 0.28rem 0.65rem;
    background: rgba(0, 255, 245, 0.05);
    border: 1px solid rgba(0, 255, 245, 0.18);
    border-radius: 3px;
    color: var(--neon-cyan);
    transition: all 0.2s;
    cursor: default;
}

.skill-tags span:hover {
    background: rgba(0, 255, 245, 0.12);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 255, 245, 0.2);
}

/* ===== EXPERIENCE ===== */
#experience { background-color: var(--bg-secondary); }

.timeline {
    position: relative;
    padding-left: 2.2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--neon-cyan) 0%, rgba(0, 255, 245, 0.1) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2.6rem;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-cyan);
    border: 2px solid var(--bg-secondary);
    box-shadow: 0 0 12px var(--neon-cyan);
    z-index: 1;
}

.timeline-item.volunteer .timeline-dot {
    background: var(--neon-magenta);
    box-shadow: 0 0 12px var(--neon-magenta);
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-cyan);
}

.timeline-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-size: 1rem;
    color: var(--text-primary);
    flex: 1 1 100%;
}

.timeline-company {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.82rem;
    color: var(--neon-cyan);
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.remote-tag {
    font-size: 0.68rem;
    padding: 0.1rem 0.45rem;
    background: rgba(0, 255, 65, 0.08);
    border: 1px solid rgba(0, 255, 65, 0.25);
    color: var(--neon-green);
    border-radius: 3px;
}

.timeline-date {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.timeline-content ul {
    padding-left: 1.1rem;
    margin-bottom: 1.1rem;
}

.timeline-content li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    line-height: 1.65;
    position: relative;
}

.timeline-content li::before {
    content: '▸';
    color: var(--neon-cyan);
    position: absolute;
    left: -1.1rem;
    font-size: 0.68rem;
    top: 0.25rem;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.exp-tags span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    padding: 0.2rem 0.55rem;
    background: rgba(255, 0, 170, 0.07);
    border: 1px solid rgba(255, 0, 170, 0.22);
    color: var(--neon-magenta);
    border-radius: 3px;
}

/* ===== AI & AUTOMATION ===== */
#ai-automation { background-color: var(--bg-primary); }

.ai-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 780px;
    margin-bottom: 3rem;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.ai-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.ai-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-magenta));
    opacity: 0;
    transition: opacity 0.3s;
}

.ai-card:hover {
    border-color: rgba(0, 255, 245, 0.3);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-4px);
}

.ai-card:hover::after { opacity: 1; }

.ai-card-icon {
    font-size: 1.6rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.ai-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.78rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.ai-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.ai-card-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.ai-card-projects span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    padding: 0.2rem 0.55rem;
    background: rgba(255, 0, 170, 0.07);
    border: 1px solid rgba(255, 0, 170, 0.22);
    color: var(--neon-magenta);
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .ai-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .ai-grid { grid-template-columns: 1fr; }
}

/* ===== PROJECTS ===== */
#projects { background-color: var(--bg-primary); }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.8rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--neon-cyan), var(--neon-magenta));
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover {
    border-color: rgba(0, 255, 245, 0.3);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-4px);
}

.project-card:hover::before { opacity: 1; }

.project-card.featured { border-color: rgba(0, 255, 245, 0.18); }

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-icon {
    font-size: 1.6rem;
    color: var(--neon-cyan);
}

.project-gh-link {
    color: var(--text-secondary);
    font-size: 1.15rem;
    transition: color 0.3s;
}

.project-gh-link:hover { color: var(--neon-cyan); }

.app-store-badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    padding: 0.28rem 0.65rem;
    background: rgba(0, 255, 65, 0.07);
    border: 1px solid rgba(0, 255, 65, 0.28);
    color: var(--neon-green);
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.status-badge.ongoing {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    padding: 0.28rem 0.65rem;
    background: rgba(255, 215, 0, 0.07);
    border: 1px solid rgba(255, 215, 0, 0.28);
    color: var(--neon-yellow);
    border-radius: 3px;
}

.status-badge.cmu {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    padding: 0.28rem 0.65rem;
    background: rgba(196, 18, 48, 0.08);
    border: 1px solid rgba(196, 18, 48, 0.35);
    color: #e84060;
    border-radius: 3px;
}

.project-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.project-meta {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.73rem;
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 0.9rem;
}

.project-card p {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.project-highlights {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-highlights span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.73rem;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.project-tags span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.68rem;
    padding: 0.2rem 0.55rem;
    background: rgba(0, 255, 245, 0.04);
    border: 1px solid rgba(0, 255, 245, 0.14);
    border-radius: 3px;
    color: var(--text-secondary);
}

/* ===== CONTACT ===== */
#contact { background-color: var(--bg-secondary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info > p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.contact-item i { color: var(--neon-cyan); width: 18px; text-align: center; }

.contact-item a,
.contact-item span {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-item a:hover { color: var(--neon-cyan); }

.contact-social {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-social a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.contact-social a:hover { color: var(--neon-cyan); }

/* Form */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.88rem;
    transition: all 0.3s;
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136, 146, 164, 0.5); }

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 2px rgba(0, 255, 245, 0.1);
    background: rgba(13, 13, 34, 0.9);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem;
}

#form-status {
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.83rem;
    min-height: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
}

.footer-container p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.83rem;
    color: var(--text-secondary);
}

.footer-container .highlight { color: var(--neon-cyan); }
.footer-sub { font-size: 0.72rem; margin-top: 0.4rem; opacity: 0.55; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { gap: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(8, 8, 26, 0.97);
        border-top: 1px solid var(--border);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        backdrop-filter: blur(14px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 1rem;
    }

    .hero-summary { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-social  { justify-content: center; }
    .hero-image   { order: -1; }

    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .skills-grid   { grid-template-columns: 1fr; }

    section { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .image-frame { width: 210px; height: 210px; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 1.1rem; }
    .nav-cta { display: none; }
    .projects-grid { grid-template-columns: 1fr; }
}
