:root {
    --bg: #050608;
    --bg2: #090b10;
    --surface: #0d1117;
    --surface2: #111827;
    --border: rgba(0, 255, 170, 0.12);
    --accent: #00ffaa;
    --accent2: #7c6bff;
    --accent3: #00b4ff;
    --text: #e8eaf0;
    --muted: #6b7280;
    --mono: 'Space Mono', monospace;
    --sans: 'Syne', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    overflow-x: hidden;
    cursor: none;
}

/* Custom cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 255, 170, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
}

/* Stars background */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Scanline overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px,
            rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(5, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    border-color: var(--border);
}

.nav-logo {
    font-family: var(--mono);
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--muted);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--bg);
}

/* SECTIONS */
section {
    position: relative;
    z-index: 2;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 4rem;
    gap: 4rem;
    overflow: hidden;
}

.hero-left {
    padding-top: 5rem;
}

.hero-tag {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--accent);
}

h1.hero-name {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

h1.hero-name .line2 {
    display: block;
    background: linear-gradient(135deg, var(--accent), var(--accent3), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-role {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--muted);
    margin: 1.5rem 0 2rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.hero-role .typing {
    color: var(--accent);
}

.hero-desc {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--mono);
    font-size: 0.75rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.85rem 2rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
    background: var(--accent3);
    box-shadow: 0 0 30px rgba(0, 180, 255, 0.4);
}

.btn-secondary {
    font-family: var(--mono);
    font-size: 0.75rem;
    background: transparent;
    color: var(--text);
    padding: 0.85rem 2rem;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--accent2);
    color: var(--accent2);
}

.hero-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.hero-socials a {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.hero-socials a:hover {
    color: var(--accent);
}

.hero-socials svg {
    width: 14px;
    height: 14px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 5rem;
}

.hero-img-wrap {
    position: relative;
    width: 420px;
    height: 560px;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent), var(--accent3), var(--accent2), transparent);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    z-index: 0;
}

.hero-img-inner {
    position: absolute;
    inset: 2px;
    background: var(--bg);
    clip-path: polygon(0 0, calc(100% - 19px) 0, 100% 19px, 100% 100%, 19px 100%, 0 calc(100% - 19px));
    overflow: hidden;
    z-index: 1;
}

.hero-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(0.2) contrast(1.05);
}

/* Glitch accent lines */
.hero-img-wrap::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, var(--accent2), transparent);
    z-index: 2;
}

.hero-coord {
    position: absolute;
    bottom: -2rem;
    left: 0;
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.2em;
}

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

.stat-item {
    text-align: left;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* SECTION HEADER */
.section-tag {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.section-tag::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--accent);
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

/* ABOUT */
#about {
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-bio {
    font-size: 1.05rem;
    color: #9ca3af;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.about-bio strong {
    color: var(--text);
}

.about-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    background: rgba(0, 255, 170, 0.02);
    transition: border-color 0.3s, background 0.3s;
}

.about-item:hover {
    border-color: rgba(0, 255, 170, 0.3);
    background: rgba(0, 255, 170, 0.05);
}

.about-item-num {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    padding-top: 0.2rem;
}

.about-item-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.about-item-text p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    font-family: var(--mono);
}

/* EXPERIENCE */
#experience {
    padding: 6rem 4rem;
    border-top: 1px solid var(--border);
}

.exp-grid {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exp-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s;
}

.exp-card:hover {
    border-color: rgba(124, 107, 255, 0.4);
    background: rgba(124, 107, 255, 0.03);
}

.exp-period {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    padding-top: 0.2rem;
}

.exp-org {
    font-size: 0.7rem;
    color: var(--accent2);
    margin-top: 0.4rem;
    font-family: var(--mono);
}

.exp-role {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.exp-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    font-family: var(--mono);
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.exp-tag {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--accent2);
    border: 1px solid rgba(124, 107, 255, 0.3);
    padding: 0.2rem 0.6rem;
    letter-spacing: 0.1em;
}

/* SKILLS */
#skills {
    padding: 6rem 4rem;
    border-top: 1px solid var(--border);
}

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

.skill-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    border-color: rgba(0, 255, 170, 0.2);
    background: rgba(0, 255, 170, 0.02);
}

.skill-card-title {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

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

.skill-tag {
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.65rem;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.skill-tag:hover {
    background: rgba(0, 255, 170, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* PROJECTS */
#projects {
    padding: 6rem 4rem;
    border-top: 1px solid var(--border);
}

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

.project-card {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    padding: 1.75rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.04), rgba(0, 180, 255, 0.04));
    opacity: 0;
    transition: opacity 0.3s;
}

.project-card:hover {
    border-color: rgba(0, 255, 170, 0.3);
    transform: translateY(-4px);
}

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

.project-num {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.project-desc {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.project-tech span {
    font-family: var(--mono);
    font-size: 0.58rem;
    color: var(--accent3);
    border: 1px solid rgba(0, 180, 255, 0.25);
    padding: 0.2rem 0.55rem;
    letter-spacing: 0.08em;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.project-link:hover {
    color: var(--accent);
}

.project-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--mono);
    font-size: 0.55rem;
    padding: 0.25rem 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-sec {
    color: var(--accent);
    border: 1px solid rgba(0, 255, 170, 0.3);
    background: rgba(0, 255, 170, 0.05);
}

.badge-ml {
    color: var(--accent3);
    border: 1px solid rgba(0, 180, 255, 0.3);
    background: rgba(0, 180, 255, 0.05);
}

.badge-tool {
    color: var(--accent2);
    border: 1px solid rgba(124, 107, 255, 0.3);
    background: rgba(124, 107, 255, 0.05);
}

.project-expand-hint {
    font-family: var(--mono);
    font-size: 0.58rem;
    color: rgba(0, 255, 170, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.project-card:hover .project-expand-hint {
    color: var(--accent);
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(5, 6, 8, 0.92);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #0d1117;
    border: 1px solid rgba(0, 255, 170, 0.2);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    transform: translateY(24px);
    transition: transform 0.35s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-num {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.58rem;
    padding: 0.25rem 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.modal-desc {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.modal-desc strong {
    color: var(--text);
    font-weight: 600;
}

.modal-highlight {
    border-left: 2px solid var(--accent);
    padding: 0.75rem 1rem;
    background: rgba(0, 255, 170, 0.04);
    margin-bottom: 1.75rem;
}

.modal-highlight p {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--accent);
    line-height: 1.7;
}

.modal-section-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.75rem;
}

.modal-tech span {
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--accent3);
    border: 1px solid rgba(0, 180, 255, 0.25);
    padding: 0.25rem 0.65rem;
    letter-spacing: 0.08em;
}

.modal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-link-btn {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s;
}

.modal-link-btn.primary {
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
}

.modal-link-btn.primary:hover {
    background: var(--accent3);
}

.modal-link-btn.secondary {
    background: mediumpurple;
    color: var(--bg);
    font-weight: 700;
}

.modal-link-btn.secondary:hover {
    background: var(--accent2);
}

/* CERTIFICATIONS */
#certifications {
    padding: 6rem 4rem;
    border-top: 1px solid var(--border);
}

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

.cert-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.3s;
    position: relative;
}

.cert-card:hover {
    border-color: rgba(124, 107, 255, 0.4);
    background: rgba(124, 107, 255, 0.03);
}

.cert-issuer {
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--accent2);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.cert-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.cert-date {
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.cert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cert-skill {
    font-family: var(--mono);
    font-size: 0.58rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.2rem 0.5rem;
}

/* CONTACT */
#contact {
    padding: 8rem 4rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
}

.contact-big {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 1.5rem 0;
}

.contact-big span {
    background: linear-gradient(135deg, var(--accent), var(--accent3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-sub {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-email {
    font-family: var(--mono);
    font-size: 1rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 255, 170, 0.3);
    padding-bottom: 0.25rem;
    transition: border-color 0.3s;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.contact-email:hover {
    border-color: var(--accent);
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-social {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-social:hover {
    color: var(--accent);
}

/* FOOTER */
footer {
    padding: 2rem 4rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    position: relative;
}

footer p {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 255, 170, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(0, 255, 170, 0);
    }
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    #hero {
        grid-template-columns: 1fr;
        padding: 8rem 2rem 4rem;
        text-align: center;
    }

    .hero-right {
        display: none;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-socials {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    #about {
        grid-template-columns: 1fr;
        padding: 5rem 2rem;
        gap: 3rem;
    }

    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .certs-grid {
        grid-template-columns: 1fr;
    }

    #skills,
    #projects,
    #certifications,
    #experience,
    #contact {
        padding: 5rem 2rem;
    }

    footer {
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .exp-card {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
