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

:root {
    --bg: #05050a;
    --cyan: #00d4ff;
    --acc: 0, 212, 255; /* RGB of accent — updated by JS on scroll */
    --purple: #8b5cf6;
    --green: #00ff88;
    --orange: #ff8c42;
    --red: #ff4757;
    --yellow: #ffd32a;
    --text: #e2e2f0;
    --muted: #7777aa;
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.07);
    --mono: 'JetBrains Mono', monospace;
    --sans: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ═══════════════════════════════════════
   CANVAS
═══════════════════════════════════════ */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: width .15s, height .15s, background .3s;
}

.cursor-trail {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(var(--acc), .35);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: border-color .3s;
    mix-blend-mode: screen;
}

/* ═══════════════════════════════════════
   EXPLOSION OVERLAY
═══════════════════════════════════════ */
.explosion-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 50% 85%,
    rgba(var(--acc), .55) 0%,
    rgba(var(--acc), .15) 45%,
    transparent 70%);
}

.explosion-overlay.pop {
    animation: explode-pop 1.1s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes explode-pop {
    0% {
        opacity: 0;
        transform: scale(.85);
    }
    20% {
        opacity: .9;
        transform: scale(1.05);
    }
    55% {
        opacity: .35;
        transform: scale(1.18);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/* ═══════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════ */
/* Top-right bar (mode toggle + lang switcher) */
.top-bar {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lang-btn {
    font-family: var(--mono), serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    background: none;
    border: none;
    cursor: none;
    letter-spacing: .1em;
    padding: 2px 5px;
    border-radius: 4px;
    transition: all .2s;
}

.lang-btn.active {
    color: var(--cyan);
    background: rgba(var(--acc), .1);
}

.lang-btn:hover {
    color: var(--text);
}

.lang-sep {
    width: 1px;
    height: 14px;
    background: var(--border);
}

/* ═══════════════════════════════════════
   SIDE NAV
═══════════════════════════════════════ */
.side-nav {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.nav-logo {
    font-family: var(--mono), serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    border: 1px solid rgba(var(--acc), .4);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 6px;
    box-shadow: 0 0 16px rgba(var(--acc), .18);
    transition: color .5s, border-color .5s, box-shadow .5s;
}

.nav-dots {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.nav-dot {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted);
    position: relative;
    transition: all .3s;
}

.nav-dot::after {
    content: attr(data-label);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--muted);
    font-family: var(--mono), serif;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.nav-dot:hover::after,
.nav-dot.active::after {
    opacity: 1;
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(var(--acc), .8);
    transform: scale(1.6);
    transition: all .3s, background .5s, box-shadow .5s;
}

/* ═══════════════════════════════════════
   NAV SEARCH
═══════════════════════════════════════ */
.nav-search-li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.nav-search-toggle {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: none;
    border: 1px solid rgba(var(--acc), .28);
    color: var(--muted);
    font-size: 12px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    flex-shrink: 0;
    transition: all .3s, color .5s, border-color .5s;
}

.nav-search-toggle:hover,
.nav-search-toggle.open {
    color: var(--cyan);
    border-color: rgba(var(--acc), .65);
    background: rgba(var(--acc), .08);
    box-shadow: 0 0 10px rgba(var(--acc), .15);
}

.nav-search-box {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width .3s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
    white-space: nowrap;
    pointer-events: none;
}

.nav-search-box.open {
    width: 196px;
    opacity: 1;
    pointer-events: auto;
}

.nav-search-input {
    flex: 1;
    min-width: 0;
    background: rgba(5, 5, 12, .92);
    border: 1px solid rgba(var(--acc), .25);
    border-radius: 6px;
    outline: none;
    color: var(--text);
    font-family: var(--mono), serif;
    font-size: 11px;
    padding: 5px 9px;
    transition: border-color .2s, background .5s;
}

.nav-search-input:focus {
    border-color: rgba(var(--acc), .55);
}

.nav-search-input::placeholder {
    color: var(--muted);
}

.nav-search-go {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    flex-shrink: 0;
    background: rgba(var(--acc), .1);
    border: 1px solid rgba(var(--acc), .28);
    color: var(--cyan);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .2s, color .5s;
}

.nav-search-go:hover {
    background: rgba(var(--acc), .22);
}

/* ═══════════════════════════════════════
   ORBS
═══════════════════════════════════════ */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: left 3.5s ease, top 3.5s ease,
    width 3.5s ease, height 3.5s ease,
    background 3.5s ease;
    filter: blur(72px);
    opacity: 0.55;
}

/* ═══════════════════════════════════════
   SECTIONS & CONTAINER
═══════════════════════════════════════ */
.section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ═══════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════ */
.section-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 52px;
}

.sec-num {
    font-family: var(--mono), serif;
    font-size: 13px;
    color: var(--cyan);
    opacity: .5;
    transition: color .5s;
}

.sec-title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 700;
    letter-spacing: -.02em;
}

.sec-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border), transparent);
}

/* ═══════════════════════════════════════
   GLASS CARD
═══════════════════════════════════════ */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: background .3s, border-color .3s, box-shadow .3s, transform .25s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, .065);
    border-color: rgba(var(--acc), .16);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .42), 0 0 32px rgba(var(--acc), .06);
}

/* ═══════════════════════════════════════
   FADE-IN
═══════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

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

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-section {
    padding: 0 90px 0 56px;
    gap: 400px;
    justify-content: center;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-tag {
    font-family: var(--mono), serif;
    font-size: 13px;
    color: var(--cyan);
    opacity: .7;
    margin-bottom: 18px;
    letter-spacing: .04em;
    transition: color .5s;
}

.hero-name {
    font-size: clamp(38px, 5.5vw, 74px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}

.hero-name span {
    display: block;
}

.hero-name .highlight {
    color: var(--cyan);
    text-shadow: 0 0 48px rgba(var(--acc), .4);
    transition: color .5s, text-shadow .5s;
}

/* Glitch */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    width: 100%;
}

.glitch::before {
    color: var(--purple);
    animation: glitch-a 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
    transform: translateX(-3px);
}

.glitch::after {
    color: var(--cyan);
    animation: glitch-b 4s infinite;
    clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
    transform: translateX(3px);
    transition: color .5s;
}

@keyframes glitch-a {
    0%, 87%, 100% {
        opacity: 0;
        transform: translateX(-3px);
    }
    89% {
        opacity: .7;
        transform: translateX(3px);
    }
    91% {
        opacity: 0;
    }
    93% {
        opacity: .4;
        transform: translateX(-3px);
    }
}

@keyframes glitch-b {
    0%, 85%, 100% {
        opacity: 0;
        transform: translateX(3px);
    }
    87% {
        opacity: .7;
        transform: translateX(-3px);
    }
    89% {
        opacity: 0;
    }
    91% {
        opacity: .4;
        transform: translateX(3px);
    }
}

.hero-subtitle {
    font-family: var(--mono), serif;
    font-size: clamp(14px, 1.7vw, 18px);
    color: var(--muted);
    margin-bottom: 28px;
    min-height: 26px;
}

.cursor-blink {
    color: var(--cyan);
    animation: blink 1s infinite;
    transition: color .5s;
}

@keyframes blink {
    0%, 100% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    font-family: var(--mono), serif;
}

.meta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted);
    flex-shrink: 0;
}

.meta-dot.pulse {
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 6px var(--green);
    }
    50% {
        box-shadow: 0 0 18px var(--green), 0 0 34px rgba(0, 255, 136, .28);
    }
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Gallery icon button */
.btn-gallery {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .25s;
    flex-shrink: 0;
}

.btn-gallery:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(var(--acc), .05);
    transform: translateY(-3px);
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--mono), serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    transition: all .25s;
    border: none;
    cursor: none;
    display: inline-block;
}

.btn-primary {
    background: var(--cyan);
    color: #05050a;
    box-shadow: 0 0 26px rgba(var(--acc), .26);
    transition: background .5s, box-shadow .5s, transform .25s;
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 48px rgba(var(--acc), .52);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(var(--acc), .05);
    transform: translateY(-3px);
}

/* Code block */
.hero-visual {
    flex: 1;
    max-width: 430px;
}

.code-block {
    background: rgba(0, 0, 0, .52);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 36px 90px rgba(0, 0, 0, .52), 0 0 55px rgba(var(--acc), .05);
    transition: box-shadow .5s;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .025);
    border-bottom: 1px solid var(--border);
}

.win-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.win-dot.red {
    background: var(--red);
}

.win-dot.yellow {
    background: var(--yellow);
}

.win-dot.green {
    background: var(--green);
}

.code-title {
    font-family: var(--mono), serif;
    font-size: 12px;
    color: var(--muted);
    margin-left: 8px;
}

.code-content {
    padding: 22px;
    font-family: var(--mono), serif;
    font-size: 13px;
    line-height: 1.85;
    white-space: pre;
    overflow-x: auto;
}

.c-brace {
    color: #c792ea;
}

.c-key {
    color: var(--cyan);
    transition: color .5s;
}

.c-str {
    color: var(--green);
}

.c-num {
    color: var(--orange);
}

.c-suffix {
    color: var(--muted);
    font-style: italic;
}

.c-cursor {
    color: var(--cyan);
    transition: color .5s;
}

/* Scroll hint */
.scroll-indicator {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: .38;
    animation: float-y 2.4s ease-in-out infinite;
    pointer-events: none;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--cyan));
    transition: background .5s;
}

.scroll-indicator span {
    font-family: var(--mono), serif;
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

@keyframes float-y {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(9px);
    }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-section {
    padding: 108px 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, .025), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 46px;
}

.about-card {
    padding: 30px 26px;
    text-align: center;
}

.card-icon {
    font-size: 32px;
    color: var(--cyan);
    margin-bottom: 14px;
    display: block;
    transition: color .5s;
}

.about-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 28px 18px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.stat-number {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    color: var(--cyan);
    font-family: var(--mono), serif;
    text-shadow: 0 0 28px rgba(var(--acc), .32);
    line-height: 1;
    margin-bottom: 6px;
    transition: color .5s, text-shadow .5s;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
    font-family: var(--mono), serif;
}

/* ═══════════════════════════════════════
   TIMELINE
═══════════════════════════════════════ */
.experience-section {
    padding: 108px 0;
}

.timeline {
    position: relative;
    padding-left: 34px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--cyan) 15%, var(--purple) 85%, transparent);
    transition: background 1s;
}

.timeline-item {
    position: relative;
    padding-bottom: 28px;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity .55s ease, transform .55s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.tl-dot {
    position: absolute;
    left: -38px;
    top: 24px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(var(--acc), .8);
    border: 2px solid var(--bg);
    transition: background .5s, box-shadow .5s;
}

.tl-content {
    padding: 24px 28px;
}

.tl-date {
    font-family: var(--mono), serif;
    font-size: 12px;
    color: var(--cyan);
    margin-bottom: 5px;
    letter-spacing: .06em;
    transition: color .5s;
}

.tl-role {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.tl-company {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--mono), serif;
    margin-bottom: 10px;
}

.tl-content p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 14px;
}

.tl-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.tag {
    font-family: var(--mono), serif;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(var(--acc), .07);
    color: var(--cyan);
    border: 1px solid rgba(var(--acc), .17);
    transition: all .2s, color .5s, background .5s, border-color .5s;
}

.tag:hover {
    background: rgba(var(--acc), .13);
    box-shadow: 0 0 10px rgba(var(--acc), .16);
}

/* ═══════════════════════════════════════
   SKILLS
═══════════════════════════════════════ */
.skills-section {
    padding: 108px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, .018), transparent);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.skill-cat {
    padding: 24px 26px;
}

.skill-cat-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.skill-cat-title i {
    color: var(--cyan);
    font-size: 18px;
    transition: color .5s;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.skill-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-name {
    font-family: var(--mono), serif;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 7px;
}

.skill-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.72;
    flex-shrink: 0;
}

.skill-bar {
    height: 3px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    background: linear-gradient(to right, var(--purple), var(--cyan));
    transition: width 1.3s cubic-bezier(.4, 0, .2, 1), background 1s;
    box-shadow: 0 0 8px rgba(var(--acc), .38);
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tech-tag {
    font-family: var(--mono), serif;
    font-size: 12px;
    padding: 7px 14px;
    border-radius: 8px;
    background: rgba(139, 92, 246, .07);
    color: #c4b5fd;
    border: 1px solid rgba(139, 92, 246, .17);
    cursor: default;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tech-icon {
    width: 13px;
    height: 13px;
    object-fit: contain;
    opacity: 0.65;
    flex-shrink: 0;
}

.tech-tag > i {
    font-size: 13px;
    line-height: 1;
    opacity: 0.72;
    flex-shrink: 0;
}

.tech-tag:hover {
    background: rgba(139, 92, 246, .13);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, .16);
}

/* ═══════════════════════════════════════
   PROJECTS
═══════════════════════════════════════ */
.projects-section {
    padding: 108px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.project-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--purple), var(--cyan));
    border-radius: 16px 16px 0 0;
    transition: background 1s;
}

.proj-glow {
    position: absolute;
    top: -55px;
    right: -55px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--acc), .07), transparent 70%);
    pointer-events: none;
    transition: background 1s;
}

.proj-glow.purple {
    background: radial-gradient(circle, rgba(139, 92, 246, .07), transparent 70%);
}

.proj-icon {
    font-size: 36px;
    color: var(--cyan);
    margin-bottom: 14px;
    display: block;
    transition: color .5s;
}

.project-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 16px;
}

.proj-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.proj-link {
    font-family: var(--mono), serif;
    font-size: 13px;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all .2s, color .5s;
}

.proj-link i {
    transition: transform .2s;
}

.proj-link:hover {
    text-shadow: 0 0 10px rgba(var(--acc), .8);
}

.proj-link:hover i {
    transform: translate(3px, -3px);
}

/* ═══════════════════════════════════════
   GITHUB REPOS
═══════════════════════════════════════ */
.github-section {
    margin-bottom: 56px;
}

.gh-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.gh-section-title i {
    color: var(--cyan);
    font-size: 22px;
    transition: color .5s;
}

.repo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.repo-wrapper {
    display: flex;
    flex-direction: column;
}

.repo-card {
    padding: 16px 18px;
    cursor: default;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.repo-card.hidden {
    display: none;
}

.repo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.repo-h-icon {
    font-size: 15px;
    color: var(--cyan);
    flex-shrink: 0;
    transition: color .5s;
}

.repo-name-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    flex: 1;
    transition: color .2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.repo-name-link:hover {
    color: var(--cyan);
}

.repo-vis {
    font-family: var(--mono), serif;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid;
}

.repo-vis.public {
    color: var(--green);
    border-color: rgba(0, 255, 136, .22);
}

.repo-vis.private {
    color: var(--orange);
    border-color: rgba(255, 140, 66, .22);
}

.repo-desc {
    font-size: 0.719rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2lh;
}

.repo-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-family: var(--mono), serif;
    font-size: 11px;
    color: var(--muted);
}

.repo-lang {
    display: flex;
    align-items: center;
    gap: 5px;
}

.repo-lang-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.repo-stars, .repo-forks {
    display: flex;
    align-items: center;
    gap: 4px;
}

.repo-stars i, .repo-forks i {
    font-size: 12px;
}

.repo-loading {
    grid-column: 1/-1;
    text-align: center;
    padding: 30px;
    color: var(--muted);
    font-family: var(--mono), serif;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin-icon {
    display: inline-block;
    animation: spin 1s linear infinite;
    font-size: 20px;
}

/* Orgs */
.orgs-label {
    font-family: var(--mono), serif;
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 18px 0 10px;
}

.orgs-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.org-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 8px;
    background: var(--glass);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    transition: all .2s;
    color: var(--text);
    cursor: none;
}

.org-chip img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.org-chip:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.org-role {
    font-family: var(--mono), serif;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 6px;
    letter-spacing: .04em;
    flex-shrink: 0;
}

.org-role.owner {
    background: rgba(var(--acc), .1);
    color: var(--cyan);
    border: 1px solid rgba(var(--acc), .2);
}

.org-role.member {
    background: rgba(139, 92, 246, .1);
    color: var(--purple);
    border: 1px solid rgba(139, 92, 246, .2);
}

/* More / expand button */
.btn-repos-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--mono), serif;
    font-size: 13px;
    cursor: none;
    width: 100%;
    transition: all .25s;
    letter-spacing: .04em;
}

.btn-repos-more i {
    font-size: 16px;
    color: var(--cyan);
    transition: color .5s, transform .3s;
}

.btn-repos-more:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(var(--acc), .05);
}

.btn-repos-more.expanded i.ri-arrow-down-s-line {
    transform: rotate(180deg);
}

/* ═══════════════════════════════════════
   CERTIFICATIONS
═══════════════════════════════════════ */
.cert-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cert-item {
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cert-badge {
    font-size: 18px;
    color: var(--green);
    flex-shrink: 0;
    line-height: 1;
    margin-top: 1px;
    transition: color .5s;
}

.cert-badge.in-progress {
    color: var(--orange);
}

.cert-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.cert-org {
    font-size: 11px;
    color: var(--muted);
    font-family: var(--mono), serif;
}

.cert-pdf-icon {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 15px;
    color: rgba(119, 119, 170, .35);
    align-self: center;
    transition: color .2s, transform .2s;
}

a.cert-item:hover .cert-pdf-icon {
    color: var(--cyan);
    transform: translateY(-1px);
}

a.cert-item {
    transition: background .3s, border-color .3s, box-shadow .3s, transform .25s ease;
}

a.cert-item:hover {
    background: rgba(255, 255, 255, .065);
    border-color: rgba(var(--acc), .16);
    box-shadow: 0 22px 65px rgba(0, 0, 0, .42), 0 0 32px rgba(var(--acc), .06);
}

/* ═══════════════════════════════════════
   REFERENCES CAROUSEL
═══════════════════════════════════════ */
.references-section {
    padding: 108px 0 72px;
    min-height: auto;
    align-items: flex-start;
}

.ref-carousel-wrap {
    position: relative;
    padding: 0 46px;
}

.ref-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 18px));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(5, 5, 10, .82);
    border: 1px solid rgba(var(--acc), .26);
    color: var(--cyan);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 10;
    transition: background .25s, border-color .25s, box-shadow .25s, color .5s;
}

.ref-nav-btn:hover {
    background: rgba(var(--acc), .1);
    border-color: rgba(var(--acc), .55);
    box-shadow: 0 0 18px rgba(var(--acc), .2);
}

.ref-nav-btn.swiper-button-disabled {
    opacity: .2;
    pointer-events: none;
}

.ref-prev {
    left: 0;
}

.ref-next {
    right: 0;
}

.ref-swiper {
    padding-bottom: 40px !important;
}

.ref-swiper .swiper-slide {
    height: auto;
}

.ref-swiper .swiper-wrapper {
    align-items: stretch;
}

.ref-pagination.swiper-pagination {
    bottom: 0 !important;
}

.ref-pagination .swiper-pagination-bullet {
    background: var(--muted);
    opacity: .35;
    width: 6px;
    height: 6px;
    transition: background .3s, opacity .3s, width .3s, border-radius .3s;
}

.ref-pagination .swiper-pagination-bullet-active {
    background: var(--cyan);
    opacity: 1;
    width: 20px;
    border-radius: 3px;
}

.ref-card {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    height: 100%;
    min-height: 230px;
    box-sizing: border-box;
}

.ref-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.ref-top-badges {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ref-sector {
    font-size: 10px;
    font-family: var(--mono), serif;
    color: rgba(119, 119, 170, .5);
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ref-sector i {
    font-size: 11px;
}

.ref-top-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
}

.ref-year {
    font-size: 10px;
    font-family: var(--mono), serif;
    color: rgba(119, 119, 170, .38);
    letter-spacing: .04em;
}

.ref-badge {
    font-family: var(--mono), serif;
    font-size: 0.594rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
    letter-spacing: .07em;
    text-transform: uppercase;
    border: 1px solid;
}

.ref-badge.eticaret {
    background: rgba(0, 255, 136, .08);
    color: var(--green);
    border-color: rgba(0, 255, 136, .2);
}

.ref-badge.erp {
    background: rgba(139, 92, 246, .1);
    color: var(--purple);
    border-color: rgba(139, 92, 246, .22);
}

.ref-badge.web {
    background: rgba(var(--acc), .08);
    color: var(--cyan);
    border-color: rgba(var(--acc), .2);
    transition: background .5s, color .5s, border-color .5s;
}

.ref-badge.yazilim {
    background: rgba(255, 140, 66, .08);
    color: var(--orange);
    border-color: rgba(255, 140, 66, .22);
}

.ref-badge.referans {
    background: rgba(255, 255, 255, .05);
    color: var(--muted);
    border-color: var(--border);
}

.ref-ext-link {
    color: var(--muted);
    font-size: 17px;
    flex-shrink: 0;
    line-height: 1;
    transition: color .2s, transform .2s;
}

.ref-ext-link:hover {
    color: var(--cyan);
    transform: translate(2px, -2px);
}

.ref-no-link {
    opacity: .22;
    cursor: default;
    pointer-events: none;
    font-size: 14px !important;
}

.ref-identity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ref-media {
    margin: 0;
    flex-shrink: 0;
}

.ref-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ref-initial {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 700;
    font-family: var(--mono), serif;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}

.ref-clr-green {
    background: rgba(0, 255, 136, .09);
    color: var(--green);
    border-color: rgba(0, 255, 136, .18);
}

.ref-clr-purple {
    background: rgba(139, 92, 246, .1);
    color: var(--purple);
    border-color: rgba(139, 92, 246, .2);
}

.ref-clr-cyan {
    background: rgba(var(--acc), .09);
    color: var(--cyan);
    border-color: rgba(var(--acc), .18);
    transition: background .5s, color .5s, border-color .5s;
}

.ref-clr-orange {
    background: rgba(255, 140, 66, .09);
    color: var(--orange);
    border-color: rgba(255, 140, 66, .18);
}

.ref-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(139, 92, 246, .12);
    color: var(--purple);
    border: 2px solid rgba(139, 92, 246, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: var(--mono), serif;
}

.ref-logo {
    height: 36px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    border-radius: 6px;
}

.ref-name {
    font-size: 0.844rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ref-sub {
    font-family: var(--mono), serif;
    font-size: 10.5px;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* No 3D-tilt translateY inside swiper — prevents top-clip overflow */
.ref-card.glass-card {
    transition: background .3s, border-color .3s, box-shadow .3s;
}

.ref-card.glass-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .32), 0 0 18px rgba(var(--acc), .07) !important;
    transform: none !important;
}

.ref-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
    padding: 108px 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, .025), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: start;
}

.contact-intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 26px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ci-icon {
    font-size: 20px;
    color: var(--cyan);
    flex-shrink: 0;
    transition: color .5s;
}

.ci-label {
    font-family: var(--mono), serif;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 3px;
}

.ci-value {
    font-size: 15px;
    color: var(--text);
    transition: color .2s;
}

.contact-item:hover .ci-value {
    color: var(--cyan);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    transition: all .3s;
}

.social-link:hover {
    transform: translateX(8px);
}

.soc-icon {
    font-size: 22px;
    color: var(--muted);
    flex-shrink: 0;
    transition: color .3s;
}

.social-link:hover .soc-icon {
    color: var(--cyan);
}

.soc-text {
    flex: 1;
}

.soc-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.soc-handle {
    font-family: var(--mono), serif;
    font-size: 11px;
    color: var(--muted);
}

.soc-arrow {
    font-size: 16px;
    color: var(--muted);
    opacity: 0;
    transition: all .3s;
}

.social-link:hover .soc-arrow {
    opacity: 1;
    color: var(--cyan);
    transform: translateX(3px);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 1;
    padding: 28px 56px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-downloads {
    display: flex;
    gap: 10px;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logo {
    font-family: var(--mono), serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: 0 0 18px rgba(var(--acc), .38);
    transition: color .5s, text-shadow .5s;
}

.footer-copy {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--mono), serif;
}

.footer-updated {
    font-size: 11px;
    color: rgba(119, 119, 170, .4);
    font-family: var(--mono), serif;
}

.btn-dl {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 8px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--mono), serif;
    font-size: 12px;
    cursor: none;
    transition: all .25s;
    letter-spacing: .04em;
}

.btn-dl i {
    color: var(--cyan);
    font-size: 16px;
    transition: color .5s, transform .3s;
}

.btn-dl:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(var(--acc), .06);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--acc), .12);
}

/* PDF dropdown */
.pdf-dropdown {
    position: relative;
}

.pdf-arrow {
    font-size: 14px !important;
    transition: transform .3s !important;
}

.pdf-dropdown.open .pdf-arrow {
    transform: rotate(180deg);
}

.pdf-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    min-width: 170px;
    background: rgba(8, 8, 16, .92);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 3px;
    opacity: 0;
    transform: translateY(8px) scale(.97);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    z-index: 1000;
}

.pdf-dropdown.open .pdf-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.pdf-opt {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border-radius: 7px;
    background: none;
    border: none;
    color: var(--muted);
    font-family: var(--mono), serif;
    font-size: 12px;
    cursor: none;
    letter-spacing: .04em;
    transition: all .2s;
    text-align: left;
    width: 100%;
}

.pdf-opt i {
    color: var(--cyan);
    font-size: 15px;
    transition: color .5s;
    flex-shrink: 0;
}

.pdf-opt:hover {
    background: rgba(var(--acc), .09);
    color: var(--text);
}

/* ═══════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(var(--acc), .38);
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   SECTION QUOTES
═══════════════════════════════════════ */
.section-quote {
    position: relative;
    z-index: 1;
    padding: 10px 0 18px;
}

.sq-inner {
    position: relative;
    max-width: 480px;
}

.section-quote.sq-left .sq-inner {
    margin-left: 80px;
}

.section-quote.sq-right .sq-inner {
    margin-left: auto;
    margin-right: 100px;
}

.section-quote.sq-offset .sq-inner {
    margin-left: 32%;
}

.sq-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 88px;
    line-height: 0.72;
    color: rgba(var(--acc), .08);
    display: block;
    margin-bottom: -16px;
    user-select: none;
    transition: color 1s;
}

.sq-text {
    font-size: 13.5px;
    font-style: italic;
    font-family: var(--sans), serif;
    color: rgba(119, 119, 170, .48);
    line-height: 1.8;
    border: none;
    padding: 0;
    margin: 0;
    letter-spacing: .015em;
}

@media (max-width: 1024px) {
    .section-quote.sq-left .sq-inner {
        margin-left: 40px;
    }

    .section-quote.sq-right .sq-inner {
        margin-right: 40px;
    }

    .section-quote.sq-offset .sq-inner {
        margin-left: 18%;
    }
}

@media (max-width: 640px) {
    .section-quote.sq-left .sq-inner,
    .section-quote.sq-right .sq-inner,
    .section-quote.sq-offset .sq-inner {
        margin: 0;
    }

    .sq-text {
        font-size: 13px;
    }
}

/* ═══════════════════════════════════════
   GITHUB MAIN SECTION
═══════════════════════════════════════ */
.github-main-section {
    padding: 108px 0;
}

.gh-sub {
    margin-top: 46px;
}

.gh-sub:first-child {
    margin-top: 0;
}

.gh-sub-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--mono), serif;
    font-size: 12.5px;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gh-sub-title i {
    font-size: 16px;
    color: var(--cyan);
    transition: color .5s;
}

.gh-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gh-achievement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 22px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--border);
    transition: border-color .25s, background .25s, transform .25s;
    position: relative;
}

.gh-achievement:hover {
    border-color: rgba(var(--acc), .28);
    background: rgba(var(--acc), .05);
    transform: translateY(-3px);
}

.gh-achievement img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(var(--acc), .18));
    transition: filter .5s;
}

.ach-name {
    font-family: var(--mono), serif;
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    white-space: nowrap;
}

.ach-tier {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: var(--mono), serif;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 8px;
    background: rgba(var(--acc), .12);
    color: var(--cyan);
    border: 1px solid rgba(var(--acc), .22);
    transition: background .5s, color .5s, border-color .5s;
}

/* ═══════════════════════════════════════
   CREDITS STRIP
═══════════════════════════════════════ */
.credits-strip {
    position: relative;
    z-index: 1;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    background: linear-gradient(to right, transparent, rgba(var(--acc), .015), transparent);
    transition: background 1s;
}

.credits-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.credits-label {
    font-family: var(--mono), serif;
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    white-space: nowrap;
}

.credits-label i {
    color: var(--cyan);
    font-size: 13px;
    transition: color .5s;
}

.credits-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.credit-item {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 11.5px;
    font-family: var(--mono), serif;
    color: var(--text);
    padding: 3px 6px 3px 11px;
    border-radius: 14px;
    background: var(--glass);
    border: 1px solid var(--border);
    transition: border-color .2s, background .2s;
}

.credit-item:hover {
    border-color: rgba(var(--acc), .22);
    background: rgba(var(--acc), .04);
}

.credit-name {
    font-size: 11.5px;
    font-family: var(--mono), serif;
    color: var(--text);
    white-space: nowrap;
}

.credit-name-link {
    transition: color .2s;
}

.credit-name-link:hover {
    color: var(--cyan);
}

.credit-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.credit-role {
    font-size: 10px;
    color: rgba(119, 119, 170, .5);
    white-space: nowrap;
    font-style: italic;
    line-height: 1;
}

.credit-socials {
    display: flex;
    align-items: center;
    gap: 1px;
    margin-left: 7px;
    padding-left: 7px;
    border-left: 1px solid rgba(255, 255, 255, .09);
}

.credit-soc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    font-size: 12.5px;
    color: rgba(119, 119, 170, .55);
    line-height: 1;
    transition: color .2s, background .2s;
}

.credit-soc:hover {
    color: var(--cyan);
    background: rgba(var(--acc), .09);
}

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, .88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lb-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9001;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lb-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(100vw - 160px);
}

.lb-img {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
    transition: opacity .2s;
}

.lb-img.loading {
    opacity: 0;
}

.lb-caption {
    margin-top: 14px;
    font-family: var(--mono), serif;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    max-width: 480px;
    line-height: 1.6;
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--text);
    font-size: 22px;
    z-index: 9002;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .2s;
}

.lb-close:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(5, 5, 10, .8);
    border: 1px solid rgba(var(--acc), .3);
    color: var(--cyan);
    font-size: 26px;
    z-index: 9002;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .22s, color .5s, border-color .5s;
}

.lb-nav:hover {
    background: rgba(var(--acc), .12);
    border-color: rgba(var(--acc), .6);
}

.lb-nav:disabled {
    opacity: .18;
    pointer-events: none;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

.lb-dots {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 9002;
}

.lb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: none;
    cursor: none;
    transition: background .2s, width .2s, border-radius .2s;
}

.lb-dot.active {
    background: var(--cyan);
    width: 20px;
    border-radius: 3px;
}

/* ═══════════════════════════════════════
   A11Y PANEL
═══════════════════════════════════════ */
.a11y-btn {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 16px;
    cursor: none;
    padding: 2px 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: color .2s;
    line-height: 1;
}

.a11y-btn:hover, .a11y-btn.active {
    color: var(--cyan);
}

.a11y-overlay {
    position: fixed;
    inset: 0;
    z-index: 8000;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.a11y-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.a11y-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    max-width: 90vw;
    z-index: 8001;
    background: rgba(8, 8, 18, .97);
    border-left: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px 20px 20px;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.a11y-panel.open {
    transform: translateX(0);
}

.a11y-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.a11y-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    font-family: var(--mono), serif;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .5s;
}

.a11y-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .2s;
}

.a11y-close-btn:hover {
    color: var(--text);
    border-color: var(--muted);
}

.a11y-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.a11y-section-label {
    font-family: var(--mono), serif;
    font-size: 0.594rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 11px;
}

.a11y-tts-controls {
    display: flex;
    gap: 8px;
}

.a11y-tts-btn {
    flex: 1;
    padding: 8px 6px;
    border-radius: 7px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--mono), serif;
    font-size: 11px;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    transition: all .2s;
}

.a11y-tts-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(var(--acc), .06);
}

.a11y-tts-btn.active {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(var(--acc), .1);
}

.a11y-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.a11y-step-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all .2s;
}

.a11y-step-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.a11y-step-btn:disabled {
    opacity: .28;
    pointer-events: none;
}

.a11y-step-val {
    flex: 1;
    text-align: center;
    font-family: var(--mono), serif;
    font-size: 12px;
    color: var(--text);
}

.a11y-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    cursor: none;
    font-size: 0.781rem;
    color: var(--text);
}

.a11y-toggle-row + .a11y-toggle-row {
    border-top: 1px solid rgba(255, 255, 255, .04);
}

.a11y-toggle-row > span:first-child {
    flex: 1;
}

.a11y-check {
    display: none;
}

.a11y-toggle-track {
    width: 36px;
    height: 20px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--border);
    position: relative;
    cursor: none;
    transition: background .2s, border-color .2s;
}

.a11y-check:checked + .a11y-toggle-track {
    background: rgba(var(--acc), .25);
    border-color: rgba(var(--acc), .4);
    transition: background .2s, border-color .2s;
}

.a11y-toggle-thumb {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--muted);
    top: 2px;
    left: 2px;
    transition: transform .2s, background .2s;
}

.a11y-check:checked + .a11y-toggle-track .a11y-toggle-thumb {
    transform: translateX(16px);
    background: var(--cyan);
}

.a11y-reset-btn {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    margin-top: 6px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--mono), serif;
    font-size: 12px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all .2s;
}

.a11y-reset-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

/* Reading progress bar */
.a11y-reading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--cyan);
    z-index: 9999;
    /*width: 0%;*/
    width: 0;
    transition: background .5s;
    pointer-events: none;
}

/* A11Y body classes */
.a11y-fs-1 p, .a11y-fs-1 .ref-desc, .a11y-fs-1 .contact-intro,
.a11y-fs-1 .about-card p, .a11y-fs-1 .tl-content p,
.a11y-fs-1 .project-card p {
    font-size: 0.969rem !important;
}

.a11y-fs-2 p, .a11y-fs-2 .ref-desc, .a11y-fs-2 .contact-intro,
.a11y-fs-2 .about-card p, .a11y-fs-2 .tl-content p,
.a11y-fs-2 .project-card p {
    font-size: 17px !important;
}

.a11y-fs-3 p, .a11y-fs-3 .ref-desc, .a11y-fs-3 .contact-intro,
.a11y-fs-3 .about-card p, .a11y-fs-3 .tl-content p,
.a11y-fs-3 .project-card p {
    font-size: 1.156rem !important;
}

.a11y-fs-4 p, .a11y-fs-4 .ref-desc, .a11y-fs-4 .contact-intro,
.a11y-fs-4 .about-card p, .a11y-fs-4 .tl-content p,
.a11y-fs-4 .project-card p {
    font-size: 20px !important;
}

.a11y-fs-5 p, .a11y-fs-5 .ref-desc, .a11y-fs-5 .contact-intro,
.a11y-fs-5 .about-card p, .a11y-fs-5 .tl-content p,
.a11y-fs-5 .project-card p {
    font-size: 22px !important;
}

.a11y-lh-relaxed p, .a11y-lh-relaxed .ref-desc,
.a11y-lh-relaxed .about-card p, .a11y-lh-relaxed .tl-content p,
.a11y-lh-relaxed .project-card p, .a11y-lh-relaxed .contact-intro {
    line-height: 2.0 !important;
}

.a11y-lh-loose p, .a11y-lh-loose .ref-desc,
.a11y-lh-loose .about-card p, .a11y-lh-loose .tl-content p,
.a11y-lh-loose .project-card p, .a11y-lh-loose .contact-intro {
    line-height: 2.5 !important;
}

body.a11y-hc {
    --text: #ffffff;
    --muted: #c0c0d8;
    --bg: #000000;
    --glass: rgba(255, 255, 255, .08);
    --border: rgba(255, 255, 255, .18);
}

body.a11y-hc .glass-card {
    background: rgba(255, 255, 255, .07) !important;
    border-color: rgba(255, 255, 255, .22) !important;
}

body.a11y-dyslexia,
body.a11y-dyslexia p, body.a11y-dyslexia h1, body.a11y-dyslexia h2,
body.a11y-dyslexia h3, body.a11y-dyslexia span:not(.lang-sep),
body.a11y-dyslexia div, body.a11y-dyslexia li {
    font-family: 'Lexend', sans-serif !important;
}

body.a11y-spacing p, body.a11y-spacing h1, body.a11y-spacing h2,
body.a11y-spacing h3, body.a11y-spacing .about-card p,
body.a11y-spacing .tl-content p, body.a11y-spacing .ref-desc,
body.a11y-spacing .contact-intro {
    letter-spacing: .04em !important;
    word-spacing: .12em !important;
}

/* ═══════════════════════════════════════
   MODE SWITCH (Meraklısına toggle)
═══════════════════════════════════════ */
.mode-sw-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    border-radius: 8px;
    background: var(--glass);
    border: 1px solid rgba(255, 71, 87, .28);
    color: var(--muted);
    font-family: var(--mono), serif;
    font-size: 0.719rem;
    cursor: none;
    letter-spacing: .07em;
    transition: all .25s;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    white-space: nowrap;
    user-select: none;
}

.mode-sw-btn:hover {
    border-color: rgba(255, 71, 87, .5);
    color: var(--text);
}

.mode-sw-track {
    width: 30px;
    height: 17px;
    border-radius: 9px;
    flex-shrink: 0;
    background: rgba(255, 71, 87, .18);
    border: 1px solid rgba(255, 71, 87, .35);
    position: relative;
    transition: background .25s, border-color .25s;
}

.mode-sw-thumb {
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 71, 87, .85);
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    box-shadow: 0 0 5px rgba(255, 71, 87, .4);
    transition: transform .25s, background .25s, box-shadow .25s;
}

/* ON (dev mode) */
body.mode-dev .mode-sw-btn {
    border-color: rgba(0, 255, 136, .3);
    color: var(--text);
}

body.mode-dev .mode-sw-btn:hover {
    border-color: rgba(0, 255, 136, .58);
}

body.mode-dev .mode-sw-track {
    background: rgba(0, 255, 136, .18);
    border-color: rgba(0, 255, 136, .42);
}

body.mode-dev .mode-sw-thumb {
    transform: translateY(-50%) translateX(13px);
    background: var(--green);
    box-shadow: 0 0 7px rgba(0, 255, 136, .55);
}

/* ─── IK MODU: gizlenenler ─── */
body:not(.mode-dev) #github,
body:not(.mode-dev) .nav-li-github,
body:not(.mode-dev) .section-quote {
    display: none !important;
}

body:not(.mode-dev) .proj-tags {
    display: none !important;
}

body:not(.mode-dev) .orb {
    display: none !important;
}

body:not(.mode-dev) .glitch::before,
body:not(.mode-dev) .glitch::after {
    display: none !important;
    animation: none !important;
}

/* IK modunda galeri butonu daha belirgin */
body:not(.mode-dev) .btn-gallery {
    border-color: rgba(0, 255, 136, .45) !important;
    background: rgba(0, 255, 136, .07) !important;
    color: var(--green) !important;
    width: auto !important;
    padding: 0 18px !important;
    gap: 8px !important;
    font-size: 18px !important;
    animation: ik-gallery-pulse 2.6s ease-in-out infinite;
}

body:not(.mode-dev) .btn-gallery::after {
    content: 'Fotoğraflar';
    font-family: var(--mono), serif;
    font-size: 12px;
    letter-spacing: .05em;
}

@keyframes ik-gallery-pulse {
    0%, 100% {
        box-shadow: 0 0 6px rgba(0, 255, 136, .18);
    }
    50% {
        box-shadow: 0 0 18px rgba(0, 255, 136, .38), 0 0 32px rgba(0, 255, 136, .1);
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        padding: 108px 40px 70px;
        gap: 46px;
    }

    .hero-content,
    .hero-visual {
        max-width: 100%;
    }

    .top-bar {
        right: 16px;
    }

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

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

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

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

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

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

    .side-nav {
        display: none;
    }

    /* .top-bar responsive already handled above */
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 96px 20px 56px;
    }

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

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

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

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

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .footer {
        padding: 22px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 14px;
    }

    .footer-downloads {
        width: 100%;
    }

    .footer-downloads .pdf-dropdown,
    .footer-downloads .btn-dl-trigger {
        width: 100%;
        justify-content: center;
    }

    .footer-downloads .pdf-menu {
        width: 100%;
        left: 0;
        right: 0;
    }

    .credits-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .credits-list {
        width: 100%;
        flex-direction: column;
        gap: 6px;
    }

    .credit-item {
        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
    }
}

/* ═══════════════════════════════════════
   PRINT / PDF
═══════════════════════════════════════ */
@media print {
    * {
        animation: none !important;
        transition: none !important;
        cursor: auto !important;
    }

    body {
        background: #fff !important;
        color: #111 !important;
        cursor: auto;
    }

    #bg-canvas, .cursor, .cursor-trail, .side-nav,
    .lang-switcher, .scroll-indicator, .hero-actions,
    .hero-visual, .footer-downloads, .proj-glow,
    .btn-dl, .sec-num, .sec-line, .explosion-overlay,
    .btn-repos-more, .orb, .orgs-row, .orgs-label,
    .orgs-wrap, .a11y-panel, .a11y-overlay, .a11y-reading-bar,
    .lb-overlay, .lightbox, .section-quote,
    .github-main-section, .top-bar {
        display: none !important;
    }

    .credits-strip {
        border-top: 1pt solid #ddd !important;
        padding: 8pt 0 !important;
        background: none !important;
    }

    .credits-label {
        color: #666 !important;
        font-size: 8pt !important;
    }

    .credit-item {
        background: #f2f2f2 !important;
        border-color: #ddd !important;
        color: #333 !important;
        font-size: 8pt !important;
    }

    @page {
        margin: 18mm 15mm;
        size: A4 portrait;
    }

    .section {
        min-height: auto !important;
        display: block !important;
        padding: 16pt 0 !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .hero-section {
        padding: 0 0 14pt !important;
        border-bottom: 2pt solid #222 !important;
    }

    .hero-name {
        font-size: 26pt !important;
        margin-bottom: 5pt !important;
    }

    .hero-name .highlight {
        color: #222 !important;
        text-shadow: none !important;
    }

    .glitch::before, .glitch::after {
        display: none !important;
    }

    .hero-tag {
        font-size: 10pt !important;
        color: #555 !important;
        margin-bottom: 6pt !important;
    }

    .hero-subtitle {
        font-size: 11pt !important;
        color: #444 !important;
        margin-bottom: 8pt !important;
    }

    .hero-meta .meta-item {
        color: #555 !important;
        font-size: 9pt !important;
    }

    .meta-dot {
        background: #444 !important;
        box-shadow: none !important;
    }

    .section-header {
        margin-bottom: 12pt !important;
    }

    .sec-title {
        font-size: 15pt !important;
        color: #111 !important;
        border-bottom: 1pt solid #bbb;
        padding-bottom: 5pt;
    }

    .glass-card {
        background: #f9f9f9 !important;
        border: 1pt solid #ddd !important;
        backdrop-filter: none !important;
        transform: none !important;
        box-shadow: none !important;
        border-radius: 5pt !important;
    }

    .about-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8pt !important;
        margin-bottom: 12pt !important;
    }

    .about-card {
        padding: 10pt !important;
    }

    .about-card h3 {
        font-size: 11pt !important;
    }

    .about-card p {
        font-size: 9pt !important;
        color: #555 !important;
    }

    .card-icon {
        font-size: 14pt !important;
        color: #333 !important;
    }

    .stats-row {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 7pt !important;
    }

    .stat-item {
        padding: 9pt !important;
        background: #f2f2f2 !important;
    }

    .stat-number {
        font-size: 18pt !important;
        color: #111 !important;
        text-shadow: none !important;
    }

    .stat-label {
        font-size: 8pt !important;
        color: #555 !important;
    }

    .timeline {
        padding-left: 18pt !important;
    }

    .timeline::before {
        background: #666 !important;
    }

    .tl-dot {
        background: #333 !important;
        box-shadow: none !important;
        left: -22pt !important;
    }

    .tl-content {
        padding: 9pt 12pt !important;
    }

    .tl-date {
        color: #444 !important;
        font-size: 9pt !important;
    }

    .tl-role {
        font-size: 11pt !important;
    }

    .tl-company {
        color: #666 !important;
        font-size: 9.5pt !important;
    }

    .tl-content p {
        font-size: 9pt !important;
        color: #555 !important;
        margin-bottom: 5pt !important;
    }

    .timeline-item {
        opacity: 1 !important;
        transform: none !important;
        padding-bottom: 9pt !important;
    }

    .tag {
        background: #eee !important;
        border-color: #ccc !important;
        color: #333 !important;
        font-size: 8pt !important;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 7pt !important;
        margin-bottom: 10pt !important;
    }

    .skill-cat {
        padding: 9pt 11pt !important;
    }

    .skill-cat-title {
        font-size: 11pt !important;
        color: #111 !important;
    }

    .skill-cat-title i {
        color: #333 !important;
    }

    .skill-name {
        color: #555 !important;
    }

    .skill-bar {
        background: #ddd !important;
    }

    .skill-fill {
        background: #444 !important;
        box-shadow: none !important;
    }

    .tech-cloud {
        justify-content: flex-start !important;
    }

    .tech-tag {
        background: #eee !important;
        border-color: #ddd !important;
        color: #333 !important;
        font-size: 9pt !important;
    }

    .github-section {
        display: none !important;
    }

    .references-section {
        display: none !important;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 7pt !important;
        margin-bottom: 14pt !important;
    }

    .project-card {
        padding: 11pt !important;
    }

    .proj-icon {
        font-size: 18pt !important;
        color: #333 !important;
    }

    .project-card::before {
        background: #888 !important;
    }

    .project-card h3 {
        font-size: 11pt !important;
    }

    .project-card p {
        font-size: 9pt !important;
        color: #555 !important;
    }

    .proj-link {
        color: #333 !important;
        text-decoration: underline !important;
    }

    .cert-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6pt !important;
    }

    .cert-item {
        padding: 7pt 9pt !important;
    }

    .cert-badge {
        color: #444 !important;
        font-size: 13pt !important;
    }

    .cert-name {
        font-size: 9.5pt !important;
    }

    .cert-org {
        font-size: 8pt !important;
        color: #666 !important;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 18pt !important;
    }

    .contact-intro {
        color: #555 !important;
        font-size: 10pt !important;
    }

    .contact-item {
        padding: 7pt 9pt !important;
    }

    .ci-icon {
        color: #333 !important;
        font-size: 15pt !important;
    }

    .ci-label {
        color: #888 !important;
    }

    .ci-value {
        color: #111 !important;
    }

    .social-link {
        padding: 7pt 9pt !important;
    }

    .soc-icon {
        color: #333 !important;
    }

    .soc-handle {
        color: #666 !important;
    }

    .soc-arrow {
        display: none !important;
    }

    .footer {
        border-top: 1pt solid #ddd !important;
        padding: 10pt 0 !important;
    }

    .footer-inner {
        justify-content: space-between !important;
    }

    .footer-logo {
        color: #111 !important;
        text-shadow: none !important;
        font-size: 14pt !important;
    }

    .footer-copy, .footer-updated {
        color: #555 !important;
    }

    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }

    .experience-section {
        page-break-before: always;
    }

    .projects-section {
        page-break-before: always;
    }
}
