:root {
    --bg-dark: #0c0c14;
    --bg-surface: #12121c;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --primary: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #38BDF8;
    --accent: #F472B6;
    --green: #34D399;
    --amber: #FBBF24;
    --text-main: #EEEEF2;
    --text-dim: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.35);
    --border: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(255, 255, 255, 0.18);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
}

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

html {
    scroll-behavior: initial;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

html::-webkit-scrollbar {
    width: 6px;
}

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

html::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-inter);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(124, 58, 237, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.08), transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(244, 114, 182, 0.05), transparent 25%);
    background-size: 200% 200%;
    animation: liquidBackground 60s ease-in-out infinite alternate;
}

@keyframes liquidBackground {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 100%;
    }
}

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

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

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

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-outfit);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NAV - FLOATING GLASS PILL */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    transition: all .4s var(--ease);
}

.navbar.scrolled {
    top: 1rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(12, 12, 20, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 1rem 2.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--ease);
}

.navbar.scrolled .nav-container {
    background: rgba(12, 12, 20, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

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

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

.nav-links a {
    color: var(--text-dim);
    font-size: .95rem;
    font-weight: 500;
    transition: all .3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--primary) !important;
    color: #fff !important;
    padding: .65rem 1.6rem !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all .3s ease !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, .4);
    background: var(--primary-light) !important;
}

.nav-btn-outline {
    background: transparent !important;
    color: var(--text-main) !important;
    border: 1px solid var(--border) !important;
    padding: .65rem 1.6rem !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all .3s ease !important;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--border-hover) !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: .3s;
    border-radius: 2px;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* BUTTONS */
.btn {
    padding: .95rem 2.2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .92rem;
    transition: all .35s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, .4);
}

.btn-secondary {
    border: 1px solid var(--border-hover);
    background: transparent;
    color: #fff;
}

.btn-secondary:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

/* SECTIONS & GRID SYSTEM */
section {
    padding: 4.5rem 0;
    /* Reduced from 7rem to tighten vertical rhythm */
    position: relative;
}

.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-6 {
    grid-column: span 6;
}

.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 80%, transparent);
    margin: 0;
    border: none;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.centered {
    text-align: center;
}

.section-header.between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-subtitle {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .3em;
    color: var(--primary-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: .8rem;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
}

.section-desc {
    color: var(--text-dim);
    max-width: 550px;
    margin: .8rem auto 0;
    font-size: 1rem;
}

.section-desc-left {
    color: var(--text-dim);
    max-width: 550px;
    margin-top: .6rem;
    font-size: .95rem;
}

/* HERO */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 0 120px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem 1.1rem;
    background: rgba(124, 58, 237, .1);
    border: 1px solid rgba(124, 58, 237, .25);
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 1.3rem;
}

.badge i {
    font-size: .5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.hero-title {
    font-size: clamp(3rem, 6.5vw, 4.8rem);
    line-height: .98;
    font-weight: 900;
    margin-bottom: 1.3rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 540px;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

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

.hero-socials a {
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 600;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: .4rem;
}

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

.hero-visual {
    position: relative;
}

.image-reveal-container {
    position: relative;
    z-index: 2;
}

.image-inner {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: border-color .5s;
}

.image-inner:hover {
    border-color: var(--border-hover);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: contrast(1.05);
    transition: transform .6s var(--ease);
}

.image-inner:hover .profile-img {
    transform: scale(1);
}

.floating-stat {
    position: absolute;
    background: rgba(12, 12, 20, .8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-hover);
    padding: .7rem 1.2rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: .7rem;
    z-index: 3;
    font-size: .82rem;
    font-weight: 600;
}

.floating-stat i {
    color: var(--primary-light);
}

.stat-1 {
    top: 12%;
    left: -12%;
    animation: float 6s ease-in-out infinite;
}

.stat-2 {
    bottom: 12%;
    right: -12%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--border-hover);
    border-radius: 12px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: var(--primary-light);
    border-radius: 3px;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-down span {
    font-size: .6rem;
    letter-spacing: .2em;
    color: var(--text-muted);
    font-weight: 600;
}

/* ABOUT */
.about-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: var(--text-main);
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 1rem;
    font-size: .98rem;
}

.about-quote {
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
    font-style: italic;
    font-size: 1.15rem;
    margin-top: 1.5rem;
    color: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.impact-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    text-align: center;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.impact-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

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

.impact-number {
    font-family: var(--font-outfit);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-label {
    font-size: .82rem;
    color: var(--text-dim);
    margin-top: .3rem;
    font-weight: 600;
}

/* SKILLS */
.skills-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.skill-category {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.skill-category:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.skill-category:hover::before {
    opacity: 1;
}

.skill-cat-header {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
}

.skill-cat-header i {
    font-size: 1.1rem;
}

.skill-cat-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.cat-frontend .skill-cat-header i {
    color: var(--secondary);
}

.cat-backend .skill-cat-header i {
    color: var(--green);
}

.cat-tools .skill-cat-header i {
    color: var(--amber);
}

.cat-learning .skill-cat-header i {
    color: var(--accent);
}

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

.skill-tag {
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: 100px;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.skill-tag img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.cat-frontend .skill-tag,
.cat-backend .skill-tag,
.cat-tools .skill-tag,
.cat-learning .skill-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.cat-frontend .skill-tag:hover,
.cat-backend .skill-tag:hover,
.cat-tools .skill-tag:hover,
.cat-learning .skill-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

.non-tech-section {
    margin-top: 1rem;
}

.non-tech-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
}

.non-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.non-tech-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.non-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.non-tech-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.non-tech-card:hover::before {
    opacity: 1;
}

.non-tech-card i {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.non-tech-card:nth-child(1) i {
    color: var(--secondary);
}

.non-tech-card:nth-child(2) i {
    color: var(--amber);
}

.non-tech-card:nth-child(3) i {
    color: var(--accent);
}

.non-tech-card:nth-child(4) i {
    color: var(--green);
}

.non-tech-card h4 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

.non-tech-card p {
    font-size: .85rem;
    color: var(--text-dim);
}

/* DIFFERENT */
.different-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.diff-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-lg);
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.diff-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

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

.diff-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
}

.diff-card:nth-child(1) .diff-icon {
    background: rgba(56, 189, 248, .1);
    color: var(--secondary);
}

.diff-card:nth-child(2) .diff-icon {
    background: rgba(251, 191, 36, .1);
    color: var(--amber);
}

.diff-card:nth-child(3) .diff-icon {
    background: rgba(52, 211, 153, .1);
    color: var(--green);
}

.diff-card:nth-child(4) .diff-icon {
    background: rgba(244, 114, 182, .1);
    color: var(--accent);
}

.diff-card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.diff-card p {
    color: var(--text-dim);
    font-size: .88rem;
}

/* ==================== PROFESSIONAL EXPERIENCE (GRID FLOW) ==================== */
.exp-section-new {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    background: radial-gradient(circle at right center, rgba(124, 58, 237, 0.05), transparent 50%);
}

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

.exp-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    padding: 2.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.exp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.exp-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exp-item:hover::before {
    opacity: 1;
}

.exp-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 2rem;
}

.exp-period {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.exp-company-name {
    font-size: 1.6rem;
    font-family: var(--font-outfit);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.exp-role-badge {
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-primary {
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
}

.badge-secondary {
    background: rgba(56, 189, 248, 0.15);
    color: var(--secondary);
}

.badge-accent {
    background: rgba(244, 114, 182, 0.15);
    color: var(--accent);
}

.badge-amber {
    background: rgba(251, 191, 36, 0.15);
    color: var(--amber);
}

.exp-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-role-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.exp-text {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.8;
    max-width: 650px;
}

.exp-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric .val {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-outfit);
    color: #fff;
}

.metric .lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 0.2rem;
}

.exp-link-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-top: 1.5rem;
    transition: color 0.3s var(--ease);
}

.exp-link-new:hover {
    color: #fff;
}

/* STATS */
.stats-section {
    border-top: 1px solid var(--border);
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.stats-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 170px);
    gap: 1.2rem;
}

.bento-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    display: flex;
    align-items: center;
    transition: all .35s var(--ease);
    overflow: hidden;
}

.bento-item:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, .05);
}

.main-stat {
    grid-column: span 2;
    grid-row: span 2;
}

.main-stat .stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-family: var(--font-outfit);
}

.bento-content p {
    color: var(--text-dim);
    font-size: .85rem;
    margin-top: .2rem;
}

.bento-content span {
    color: var(--text-muted);
    font-size: .75rem;
}

.bento-tag {
    display: inline-block;
    padding: .3rem .8rem;
    background: var(--primary);
    border-radius: 100px;
    font-size: .62rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #fff;
}

.events {
    background: rgba(251, 191, 36, .08);
}

.events i {
    font-size: 1.8rem;
    color: var(--amber);
    margin-bottom: .6rem;
}

.instagram {
    background: rgba(168, 85, 247, .04);
}

.instagram i {
    font-size: 1.8rem;
    color: #a855f7;
    margin-bottom: .6rem;
}

.watch i,
.reach i {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: .6rem;
}

.sub-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
}

/* PROJECTS */
.projects-section {
    border-top: 1px solid var(--border);
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

.project-category-label {
    font-family: var(--font-outfit);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.project-category-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(167, 139, 250, 0.3) 0%, transparent 100%);
}

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

.project-item {
    cursor: pointer;
}

.project-card {
    height: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
}

.project-overlay {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(12, 12, 20, .95), rgba(12, 12, 20, .3));
}

.proj-badge {
    background: rgba(124, 58, 237, .15);
    color: var(--primary-light);
    padding: .25rem .8rem;
    border-radius: 100px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .05em;
    width: fit-content;
    margin-bottom: .6rem;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: .4rem;
}

.project-card p {
    font-size: .82rem;
    color: var(--text-dim);
    margin-bottom: .8rem;
    line-height: 1.5;
}

.proj-tech {
    font-size: .72rem;
    color: var(--secondary);
    font-weight: 600;
}

.proj-cta {
    font-size: .75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: .5rem;
    transition: color .3s;
}

.project-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.project-card:hover .proj-cta {
    color: var(--primary-light);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(124, 58, 237, .15), rgba(12, 12, 20, .95));
}

/* MODALS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity .3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 700px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color .3s;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--primary-light);
    background: rgba(124, 58, 237, .1);
    padding: .3rem .8rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.modal-content>p {
    font-size: .95rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-content h4 {
    font-size: 1rem;
    margin-bottom: .8rem;
    color: var(--secondary);
}

.modal-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.modal-content ul li {
    font-size: .9rem;
    color: var(--text-dim);
    padding: .4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.modal-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

.modal-tech {
    font-size: .8rem;
    font-weight: 700;
    color: var(--secondary);
    padding: .8rem 1.2rem;
    background: rgba(56, 189, 248, .06);
    border: 1px solid rgba(56, 189, 248, .12);
    border-radius: var(--radius-sm);
}

.modal-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: var(--primary-light);
    font-weight: 700;
    font-size: .9rem;
    margin-top: 1rem;
    transition: color .3s;
}

.modal-link:hover {
    color: #fff;
}

/* BOOKS */
.books-section {
    border-top: 1px solid var(--border);
}

.books-showcase {
    /* Removed custom grid; managed by .grid-12 utility in HTML */
    margin-bottom: 2rem;
}

.book-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .4s var(--ease);
}

.book-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.book-cover {
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.book-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
    /* So the text overlay stays legible */
    transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
}

.book-item:hover .book-cover-img {
    opacity: 0.8;
    transform: scale(1.05);
}

.book-number,
.book-title,
.book-cover small {
    position: relative;
    z-index: 10;
}

.book-cover-1 {
    background: linear-gradient(135deg, #1e293b, #334155);
}

.book-cover-2 {
    background: linear-gradient(135deg, #1a2e1a, #2d4a2d);
}

.book-cover-3 {
    background: linear-gradient(135deg, #2d1a2e, #4a2d4a);
}

.book-cover-4 {
    background: linear-gradient(135deg, #2e1a2d, #3d2040);
}

.book-cover-5 {
    background: linear-gradient(135deg, #2a1515, #4a2020);
}

.book-number {
    font-family: var(--font-outfit);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, .07);
    position: absolute;
    top: .8rem;
    right: 1rem;
}

.book-title {
    font-family: var(--font-outfit);
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
}

.book-cover small {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: .65rem;
    margin-top: .6rem;
    letter-spacing: .1em;
}

.book-info {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.book-info h4 {
    font-size: 1.25rem;
    margin-bottom: .8rem;
    font-weight: 700;
}

.book-info p {
    font-size: .88rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: .8rem;
}

.book-themes {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.book-themes span {
    font-size: .65rem;
    font-weight: 700;
    padding: .25rem .7rem;
    background: rgba(167, 139, 250, .1);
    color: var(--primary-light);
    border-radius: 100px;
}

.book-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--amber);
    font-weight: 700;
    font-size: .85rem;
    transition: color .3s;
}

.book-link:hover {
    color: #fff;
}

.book-link i {
    font-size: .65rem;
}

/* ONLINE PRESENCE */
.presence-section {
    border-top: 1px solid var(--border);
}

.presence-grid {
    /* Superceded by HTML .grid-12 classes */
    margin-bottom: 3rem;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .35s var(--ease);
}

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

.video-embed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
}

.yt-thumb-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.yt-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ff0000;
    opacity: 0.8;
    transition: all 0.3s var(--ease);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6));
    z-index: 5;
}

.yt-thumb-link:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: background 0.5s var(--ease);
}

.yt-thumb-link:hover:before {
    background: transparent;
}

.yt-thumb-link:hover img {
    transform: scale(1.05);
}

.yt-thumb-link:hover .yt-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.presence-info {
    padding: 1.2rem 1.5rem;
}

.presence-info h4 {
    font-size: .95rem;
    margin-bottom: .3rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.presence-info h4 i {
    color: #ff4444;
}

.presence-info p {
    font-size: .82rem;
    color: var(--text-dim);
}

.presence-links {
    margin-top: 2rem;
}

.presence-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .6rem;
    transition: all .35s var(--ease);
}

.presence-link-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.presence-link-card i {
    font-size: 1.8rem;
}

.presence-link-card:nth-child(1) i {
    color: #E1306C;
}

.presence-link-card:nth-child(2) i {
    color: #fff;
}

.presence-link-card:nth-child(3) i {
    color: #0A66C2;
}

.presence-link-card:nth-child(4) i {
    color: #ff4444;
}

.presence-link-card span {
    font-size: .85rem;
    font-weight: 700;
}

.presence-link-card small {
    font-size: .72rem;
    color: var(--text-muted);
}

/* CERTS */
.certifications-section {
    border-top: 1px solid var(--border);
}

.cert-grid {
    /* Maintained by .grid-12 utility in HTML */
    margin-bottom: 2rem;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all .35s var(--ease);
}

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

.cert-image {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    background: var(--bg-surface);
}

.cert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.cert-card:hover .cert-image img {
    transform: scale(1.03);
}

.cert-card h4 {
    padding: 1rem 1.2rem;
    font-size: .88rem;
    font-weight: 600;
}

/* TIMELINE */
.journey-section {
    border-top: 1px solid var(--border);
}

.timeline-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.timeline-event {
    width: 50%;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-event:nth-child(even) {
    margin-left: auto;
    text-align: left;
}

.timeline-event:nth-child(odd) {
    text-align: right;
}

.time-marker {
    font-family: var(--font-outfit);
    font-weight: 900;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, .12);
    margin-bottom: .6rem;
    transition: color .3s;
}

.timeline-event:hover .time-marker {
    color: var(--primary);
}

.time-content {
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all .35s var(--ease);
}

.time-content:hover {
    border-color: var(--border-hover);
}

.time-content h3 {
    font-size: 1.05rem;
    margin-bottom: .4rem;
}

.time-content p {
    font-size: .88rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* CONTACT SECTION */
.contact-section {
    border-top: 1px solid var(--border);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, .15), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center;
}

.contact-desc {
    color: var(--text-dim);
    margin: 1.5rem 0 2rem;
    max-width: 500px;
}

.contact-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    transition: all .35s var(--ease);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(124, 58, 237, .2);
}

.contact-card i {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.contact-card h4 {
    margin-bottom: .6rem;
    font-size: 1rem;
}

.contact-card a {
    font-size: .85rem;
    color: var(--text-dim);
    transition: color .3s;
}

.contact-card a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:1200px) {

    .container,
    .nav-container {
        padding: 0 2rem;
    }

    .hero-wrapper {
        gap: 3rem;
    }

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

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

    .stats-bento {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        grid-template-rows: auto;
    }

    .main-stat {
        grid-column: span 2;
        grid-row: span 1;
    }

    .main-stat .stat-number {
        font-size: 3.2rem;
    }
}

@media(max-width:992px) {

    /* NAV - FLOATING GLASS PILL - MOBILE */
    .navbar {
        width: 95%;
        top: 1rem;
    }

    .nav-container {
        padding: 0.8rem 1.2rem 0.8rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(12, 12, 20, .97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        transition: right .4s var(--ease);
    }

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

    .nav-links a {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-wrapper,
    .about-flex,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 0;
        max-width: 350px;
        margin: 0 auto;
    }

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

    .hero-description {
        margin: 0 auto 2rem;
    }

    .section-header.between {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

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

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

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

    .col-span-4,
    .col-span-6 {
        grid-column: span 1;
    }

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

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

    .timeline-container::before {
        left: 25px;
    }

    .timeline-event {
        width: 100%;
        padding-left: 4rem;
        text-align: left !important;
    }

    .about-quote {
        text-align: left;
    }

    .impact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    /* Exp Sticky Responsive */
    .exp-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .exp-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-right: 0;
        padding-bottom: 2rem;
    }
}

@media(max-width:768px) {
    section {
        padding: 4.5rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .books-showcase {
        grid-template-columns: 1fr;
    }

    .book-cover {
        min-height: 160px;
    }

    .book-info {
        padding: 0 1.5rem 1.5rem;
    }

    .floating-stat,
    .scroll-down {
        display: none;
    }

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

    .non-tech-grid,
    .different-grid {
        grid-template-columns: 1fr;
    }

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

@media(max-width:600px) {

    .container,
    .nav-container {
        padding: 0 1.2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .col-span-3,
    .col-span-4,
    .col-span-6 {
        grid-column: span 1;
    }

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

    .exp-card-premium {
        padding: 1.8rem;
    }

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

    .main-stat {
        grid-column: span 1;
    }

    .main-stat .stat-number {
        font-size: 2.8rem;
    }

    .presence-links {
        grid-template-columns: 1fr;
    }

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

    /* Exp Sticky Responsive */
    .exp-item {
        padding: 2rem 1.5rem;
    }

    .exp-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-mail {
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-grid {
        gap: 2.5rem;
    }

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

    .modal-content {
        padding: 2rem 1.5rem;
        overflow: auto;
    }
}

.modal-link:hover {
    color: var(--primary-light);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-btn-github {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-btn-github:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.modal-btn-live {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary-light);
}

.modal-btn-live:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

/* ==================== UPGRADE STYLES ==================== */
.clean-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.clean-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.clean-list li i {
    color: var(--primary-light);
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.styled-diff {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 2.5rem;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all .4s var(--ease);
}

.styled-diff:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.styled-diff .diff-number {
    font-family: var(--font-outfit);
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -0.5rem;
    right: 0.5rem;
    line-height: 1;
    transition: color 0.4s;
    user-select: none;
}

.styled-diff:hover .diff-number {
    color: rgba(124, 58, 237, 0.08);
}

.styled-diff .diff-content {
    position: relative;
    z-index: 1;
}

.styled-diff h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 700;
}

.styled-diff p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.9rem;
}