/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --bg:          #080808;
    --bg-2:        #0d0d0d;
    --bg-3:        #111111;
    --border:      rgba(255, 255, 255, 0.06);
    --border-hover:rgba(255, 255, 255, 0.18);
    --text-primary:#f2f2f2;
    --text-secondary:#888;
    --text-muted:  #555;
    --accent:      #fff;
    --section-pad: 120px 7%;
    --max-w:       1200px;
    --radius:      16px;
    --radius-sm:   8px;
    --transition:  0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.section-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.15;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--text-primary);
    color: #000;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-hover);
}

/* ============================================================
   HEADER — hidden by default, appears after scrolling past hero
   ============================================================ */
.top-sticky-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 7%;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.35s ease, padding 0.35s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
}

.top-sticky-header.scrolled {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 7%;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-logo {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.desktop-nav a {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    transition: color 0.25s;
}

.desktop-nav a:hover { color: var(--text-primary); }

.nav-cta {
    padding: 9px 22px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    color: var(--text-primary) !important;
    font-size: 0.82rem;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--text-primary) !important;
    color: #000 !important;
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

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

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 90px 40px 60px;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-menu.active { right: 0; }

.nav-menu a {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.nav-menu a:hover { color: var(--text-primary); }

.menu-signature {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 140px;
    opacity: 0;
    transition: opacity 0.6s ease 0.3s;
}

    .menu-signature { left: 70px; transform: none; }

.menu-signature img {
    width: 100%;
    filter: invert(1) opacity(0.25);
}

.nav-menu.active .menu-signature img {
    opacity: 1;
}

body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 98;
}

/* ============================================================
   HERO — full-viewport, image shown in full on desktop
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: absolute;
    inset: 0;
}

/* Desktop: show full image (object-fit: contain) */
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

/* Mobile: cover to fill viewport */
@media (max-width: 768px) {
    .profile-img {
        object-fit: cover;
        object-position: center top;
    }
}

.bottom-shadow {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.8) 20%, transparent 100%);
    pointer-events: none;
}

.signature-container {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    z-index: 10;
    transition: opacity 0.4s ease;
    clip-path: inset(0 100% 0 0);
    animation: signReveal 2.2s cubic-bezier(0.77, 0, 0.175, 1) 0.8s forwards;
}

.signature-container.hidden { opacity: 0; pointer-events: none; }

.signature-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.18));
}

@keyframes signReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}

.scroll-down {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.6);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, color 0.25s;
}

.scroll-down:hover { color: #fff; }

.chevron-down {
    width: 28px;
    height: 28px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ============================================================
   ABOUT / VISION
   ============================================================ */
.vision {
    padding: var(--section-pad);
    background: var(--bg);
    display: flex;
    justify-content: center;
}

.vision-inner {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---- Left ---- */
.vision-left .vision-label {
    display: block;
    margin-bottom: 20px;
}

.vision-left h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.vision-left h2 em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
}

.vision-left > p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
}

.vision-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vision-tags span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 7px 16px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.vision-tags span:hover {
    border-color: var(--border-hover);
    color: var(--text-secondary);
}

/* ---- Right ---- */
.vision-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vision-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.12) 100%);
    border-radius: 100px;
}

/* Availability badge */
.vision-availability {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 22px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.82rem;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}

.avail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@media (max-width: 900px) {
    .vision-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .vision-left > p { max-width: 100%; }
}

@media (max-width: 480px) {
    .vision-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { padding: 20px 16px; }
    .stat-number { font-size: 2rem; }
}

/* ============================================================
   VENTURE
   ============================================================ */
.ventures {
    padding: var(--section-pad);
    background: var(--bg-2);
}

.venture-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 56px;
    background: var(--bg-3);
    transition: border-color var(--transition);
}

.venture-card:hover { border-color: var(--border-hover); }

.venture-logo img {
    width: 100%;
    border-radius: var(--radius-sm);
}

.venture-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.venture-info h3 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.15;
}

.venture-info p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 28px;
}

.venture-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.venture-highlights span {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 14px;
}

/* ============================================================
   TECH STACK (BENTO)
   ============================================================ */
.stack {
    padding: var(--section-pad);
    background: var(--bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento-item {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: border-color var(--transition);
}

.bento-item:hover { border-color: var(--border-hover); }

.bento-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.bento-item .subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}

.github-card  { grid-column: span 5; }
.cert-card    { grid-column: span 4; }
.skills-card  { grid-column: span 7; }
.location-card{ grid-column: span 5; }

.github-stats-container { display: flex; flex-direction: column; gap: 0; }

.github-fallback {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition);
}

.github-fallback:hover { border-color: var(--border-hover); }

.gh-text h4 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 4px; }
.gh-text p  { font-size: 0.8rem; color: var(--text-muted); }

.cert-list { display: flex; flex-direction: column; gap: 20px; }

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cert-icon {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
}

.cert-info h4 {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cert-info span {
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-pill {
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: border-color var(--transition), color var(--transition);
}

.skill-pill:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.location-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.loc-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.loc-time {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.loc-tz {
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: var(--section-pad);
    background: var(--bg-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card {
    padding: 48px;
    background: var(--bg-3);
    transition: background var(--transition);
}

.service-card:hover { background: var(--bg-2); }

.service-num {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
    padding: var(--section-pad);
    background: var(--bg);
}

.projects-list {
    border-top: 1px solid var(--border);
}

.project-row {
    display: grid;
    grid-template-columns: 160px 1fr 60px;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.project-row:hover { border-bottom-color: var(--border-hover); }

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-year {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.project-type {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.project-info h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.project-info p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 480px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
}

.project-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}

.project-link a:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    transform: rotate(45deg);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
    padding: var(--section-pad);
    background: var(--bg-2);
}

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

.blog-card {
    padding: 36px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover { border-color: var(--border-hover); }

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.blog-date {
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.blog-category {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 10px;
}

.blog-card h3 {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 12px;
    flex: 1;
}

.blog-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.blog-read {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    transition: color 0.25s;
    margin-top: auto;
}

.blog-read:hover { color: var(--text-primary); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: var(--section-pad);
    background: var(--bg);
    display: flex;
    justify-content: center;
}

.contact-inner {
    max-width: 700px;
    text-align: center;
}

.contact-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.contact-inner h2 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.contact-inner h2 em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--text-secondary);
}

.contact-inner p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--text-primary);
    color: #000;
    border-color: var(--text-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 40px 7%;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-logo {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.footer-links a {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    transition: color 0.25s;
}

.footer-links a:hover { color: var(--text-primary); }

/* ============================================================
   CASE STUDY — project hero, details, contact variant
   ============================================================ */
.project-hero {
    padding: 140px 7% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
}

.massive-text {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.massive-text em {
    font-style: italic;
    color: var(--text-secondary);
}

.project-hero-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 480px;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.project-details {
    padding: var(--section-pad);
    background: var(--bg);
}

.project-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 80px;
    align-items: start;
}

.project-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.project-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-list li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.project-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
}

.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-card h4 {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.sidebar-card p {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tech span {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
}

.contact-top {
    text-align: center;
    margin-bottom: 60px;
}

.contact-top p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contact-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
}

.social-icon-link:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .github-card  { grid-column: span 1; }
    .cert-card    { grid-column: span 1; }
    .skills-card  { grid-column: span 1; }
    .location-card{ grid-column: span 1; }
}

@media (max-width: 900px) {
    :root { --section-pad: 80px 6%; }

    .desktop-nav { display: none; }
    .hamburger   { display: flex; }

    .venture-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 36px;
    }

    .venture-logo img { max-width: 160px; }

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

    .project-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .project-link { display: none; }

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

    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }

    .project-hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 120px;
    }

    .project-hero-desc { max-width: 100%; }

    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .project-sidebar { position: static; }
}

@media (max-width: 600px) {
    :root { --section-pad: 60px 5%; }

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

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

    .contact-links { flex-direction: column; align-items: center; }
}
