/* ═══════════════════════════════════════════
   MODERN PORTFOLIO - MONOCHROME + ELECTRIC GREEN
   DevOps & Software Engineer Theme
═══════════════════════════════════════════ */

:root {
    --bg:        #0a0a0a;
    --bg-card:   #111111;
    --bg-hover:  #161616;
    --border:    #222222;
    --border-lit:#333333;
    --green:     #00ff88;
    --green-dim: rgba(0,255,136,0.08);
    --green-mid: rgba(0,255,136,0.18);
    --blue:      #4d9fff;
    --blue-dim:  rgba(77,159,255,0.08);
    --orange:    #ff6b35;
    --purple:    #a855f7;
    --text:      #f0f0f0;
    --text-mid:  #888888;
    --text-dim:  #444444;
    --mono: 'Fira Code', monospace;
    --sans: 'Space Grotesk', sans-serif;
    --display: 'Space Grotesk', sans-serif;
    --radius: 6px;
}

*, *::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;
}

/* Scanline overlay */
body::before {
    content:'';
    position:fixed;
    inset:0;
    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:9998;
}

/* ── SCROLLBAR ─────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ── SELECTION ─────────────────────── */
::selection { background: var(--green); color: #000; }

/* ── CURSOR DOT ────────────────────── */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 4rem;
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--green);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-bracket { color: var(--text-dim); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-links a {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-badge {
    font-family: var(--mono);
    font-size: 0.68rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid var(--green);
    color: var(--green);
    border-radius: 2px;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.8); }
}

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* Radial glow */
#hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Dot grid */
#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--green);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeSlide 0.7s ease both;
}

.hero-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--green);
}

.hero-name {
    font-family: var(--display);
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    animation: fadeSlide 0.7s 0.1s ease both;
}

.hero-name .line2 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(240,240,240,0.35);
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0;
    animation: fadeSlide 0.7s 0.2s ease both;
}

.role-chip {
    font-family: var(--mono);
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.06em;
}

.chip-green {
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(0,255,136,0.25);
}

.chip-blue {
    background: var(--blue-dim);
    color: var(--blue);
    border: 1px solid rgba(77,159,255,0.25);
}

.chip-gray {
    background: rgba(255,255,255,0.04);
    color: var(--text-mid);
    border: 1px solid var(--border);
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeSlide 0.7s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlide 0.7s 0.4s ease both;
}

.btn-main {
    padding: 0.85rem 2rem;
    background: var(--green);
    color: #000;
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-main:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0,255,136,0.3);
}

.btn-ghost {
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--text-mid);
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border-lit);
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

/* Hero stats card */
.hero-stats-card {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    min-width: 220px;
    animation: fadeSlide 0.7s 0.5s ease both;
    display: none;
}

@media (min-width: 1100px) {
    .hero-stats-card { display: block; }
}

.stat-row {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-row:first-child { padding-top: 0; }

.stat-val {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.stat-key {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.3rem;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────
   SECTION WRAPPERS
───────────────────────────────────── */
.section-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0;
}

.sec-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.sec-num {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--green);
    opacity: 0.5;
}

.sec-title {
    font-family: var(--display);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.sec-title span { color: var(--green); }

.sec-rule {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ─────────────────────────────────────
   SKILLS
───────────────────────────────────── */
#skills { background: var(--bg); }

.skills-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .skills-layout { grid-template-columns: 1fr; }
}

.skill-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: border-color 0.2s;
}

.skill-block:hover { border-color: var(--border-lit); }

.skill-block-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
}

.skill-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.icon-green  { background: var(--green-dim); }
.icon-blue   { background: var(--blue-dim); }
.icon-orange { background: rgba(255,107,53,0.1); }
.icon-purple { background: rgba(168,85,247,0.1); }

.skill-block-title {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.skill-block-sub {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    margin-top: 0.1rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    font-family: var(--mono);
    font-size: 0.73rem;
    padding: 0.32rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-mid);
    transition: all 0.15s;
    cursor: default;
}

.pill:hover {
    background: var(--green-dim);
    border-color: rgba(0,255,136,0.2);
    color: var(--green);
}

/* Proficiency bars */
.prof-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.prof-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.prof-label {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-mid);
}

.prof-pct {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--green);
}

.prof-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.prof-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), #00ffbb);
    border-radius: 2px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

/* ─────────────────────────────────────
   PROJECTS
───────────────────────────────────── */
#projects { background: rgba(255,255,255,0.01); }

.project-filters {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--mono);
    font-size: 0.72rem;
    padding: 0.35rem 1rem;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.06em;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-dim);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.2rem;
}

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

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.7rem;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: default;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    border-radius: var(--radius) var(--radius) 0 0;
    transition: background 0.3s;
}

.project-card:hover {
    border-color: var(--border-lit);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.project-card:hover::before { background: var(--green); }

.p-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
}

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

.p-tag {
    font-family: var(--mono);
    font-size: 0.62rem;
    padding: 0.18rem 0.55rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tag-devops {
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(0,255,136,0.2);
}

.tag-fullstack {
    background: var(--blue-dim);
    color: var(--blue);
    border: 1px solid rgba(77,159,255,0.2);
}

.tag-iac {
    background: rgba(255,107,53,0.08);
    color: var(--orange);
    border: 1px solid rgba(255,107,53,0.2);
}

.tag-backend {
    background: rgba(168,85,247,0.08);
    color: var(--purple);
    border: 1px solid rgba(168,85,247,0.2);
}

.p-links {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.p-icon-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.p-icon-link:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-dim);
}

.p-title {
    font-family: var(--display);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.p-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
}

.p-stack {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.stack-item {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    transition: color 0.2s;
}

.stack-item::after {
    content: ' ·';
    margin-right: 0.2rem;
}

.stack-item:last-child::after { content: ''; }

.project-card:hover .stack-item { color: var(--text-mid); }

/* Featured card */
.project-card.featured {
    grid-column: span 2;
    flex-direction: row;
    gap: 2rem;
}

@media (max-width: 900px) {
    .project-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }
}

.featured-visual {
    width: 220px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green-dim), var(--blue-dim));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

@media (max-width: 900px) {
    .featured-visual {
        width: 100%;
        height: 100px;
    }
}

.featured-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ─────────────────────────────────────
   CERTIFICATIONS
───────────────────────────────────── */
#certifications { background: var(--bg); }

.certs-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.cert-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.cert-card:hover {
    border-color: var(--border-lit);
    transform: translateY(-3px);
}

.cert-card:hover::after { transform: scaleX(1); }

.cert-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--green-dim);
}

.cert-name {
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

.cert-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cert-issuer {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cert-year {
    font-family: var(--mono);
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--text-dim);
}

.cert-status {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cert-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

/* Learning badge */
.cert-card.learning .cert-badge { background: rgba(255,107,53,0.1); }
.cert-card.learning .cert-status { color: var(--orange); }
.cert-card.learning .cert-status::before { background: var(--orange); }
.cert-card.learning::after { background: var(--orange); }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
#contact { background: rgba(255,255,255,0.01); }

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

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-heading {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-heading span { color: var(--green); }

.contact-para {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.chan {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
    color: inherit;
}

.chan:hover {
    border-color: var(--green);
    background: var(--green-dim);
}

.chan:hover .chan-val { color: var(--green); }

.chan-icon {
    width: 38px;
    height: 38px;
    background: var(--bg-hover);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.chan-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.chan-label {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.chan-val {
    font-size: 0.85rem;
    color: var(--text-mid);
    transition: color 0.2s;
}

/* Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--mono);
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0,255,136,0.07);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 520px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-note {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text-dim);
}

.btn-send {
    padding: 0.8rem 2rem;
    background: var(--green);
    color: #000;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-send:hover {
    background: #fff;
    box-shadow: 0 0 24px rgba(0,255,136,0.25);
    transform: translateY(-1px);
}

.btn-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.success-msg {
    display: none;
    font-family: var(--mono);
    font-size: 0.82rem;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    text-align: center;
}

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

.footer-left {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
}

.footer-left span { color: var(--green); }

.footer-right {
    display: flex;
    gap: 1.5rem;
}

.footer-right a {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-right a:hover { color: var(--green); }

/* ─────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 768px) {
    #hero {
        padding: 6rem 2rem 3rem;
    }

    .hero-name {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-stats-card {
        position: static;
        transform: none;
        margin-top: 3rem;
        width: 100%;
    }

    .section-wrap {
        padding: 4rem 1.5rem;
    }

    .sec-header {
        flex-wrap: wrap;
    }

    .sec-title {
        font-size: 2rem;
    }

    nav {
        padding: 1rem 1.5rem;
    }

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

    .footer-right {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-roles {
        flex-direction: column;
    }

    .role-chip {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-main,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}
