/* ═══════════════════════════════════════════════
   Isaiah Awotide — Portfolio
   Premium Theme · Glassmorphism · Micro-animations
   ═══════════════════════════════════════════════ */

:root {
    /* Dark Theme Default */
    --bg: #050810;
    --bg-surface: #0c1220;
    --bg-card: #111a2e;
    --bg-card-hover: #15213a;
    --border: #1a2744;
    --border-hover: #2a3d66;
    --text: #e4e8f0;
    --text-muted: #7a8ba8;
    --text-dim: #4a5d7a;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-text: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.15);
    --accent-glow-strong: rgba(99, 102, 241, 0.35);
    --green: #10b981;
    --cyan: #06b6d4;
    --purple: #a855f7;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --radius: 16px;
    --radius-sm: 8px;
    --nav-bg: rgba(5, 8, 16, 0.85);
    }
    
    [data-theme="light"] {
        --bg: #f8fafc;
        --bg-surface: #eff1f5;
        --bg-card: #ffffff;
        --bg-card-hover: #f1f5f9;
        --border: #e2e8f0;
        --border-hover: #cbd5e1;
        --text: #1e293b;
        --text-muted: #64748b;
        --text-dim: #94a3b8;
        --accent: #4f46e5;
        --accent-light: #6366f1;
        --accent-text: #4338ca;
        --accent-glow: rgba(79, 70, 229, 0.1);
        --accent-glow-strong: rgba(79, 70, 229, 0.25);
        --nav-bg: rgba(248, 250, 252, 0.85);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
    }
    
    /* Accessibility Focus */
    :focus-visible {
        outline: 2px solid var(--accent);
        outline-offset: 4px;
        border-radius: 4px;
    }
    
    .skip-link {
        position: absolute;
        top: -40px;
        left: 0;
        background: var(--accent);
        color: white;
        padding: 8px;
        z-index: 1000;
        transition: top 0.3s;
        font-size: 14px;
        text-decoration: none;
    }
    
    .skip-link:focus {
        top: 0;
}

.accent {
    color: var(--accent-text);
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Noise texture ── */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ═══ Navigation ═══ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: grid;
        grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 16px 32px;
    transition: all 0.3s;
}

.nav--scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 32px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    justify-self: start;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-self: center;
}

/* Nav Controls */
.nav__controls {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-self: end;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: space-between;
    }

    .nav__links {
        display: none;
    }

    .nav__controls {
        gap: 12px;
    }

    .nav__menu {
        display: block;
    }

    .btn--nav {
        display: none;
    }
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.2s;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.theme-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: rotate(15deg);
}

.theme-icon {
    display: none;
}

[data-theme="dark"] .theme-icon.moon {
    display: block;
}

[data-theme="light"] .theme-icon.sun {
    display: block;
}

/* Lang Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    transition: color 0.2s;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

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

.lang-divider {
    color: var(--border);
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
}

.nav__logo-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--text);
}

.nav__menu {
    display: none;
    background: var(--bg-card);
        border: 1px solid var(--border);
    cursor: pointer;
    padding: 8px;
        border-radius: 8px;
        transition: all 0.2s;
    }
    
    .nav__menu:hover {
        border-color: var(--accent);
}

.nav__menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 4px 0;
    transition: all 0.3s;
}

.nav__menu[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav__menu[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav__menu[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

/* ═══ Buttons ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow-strong);
}

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

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
}

.btn--nav {
    padding: 8px 20px;
    font-size: 13px;
}

.btn--small {
    padding: 8px 18px;
    font-size: 12px;
    background: white;
    color: var(--bg);
    border-radius: 6px;
}

.btn--small:hover {
    transform: scale(1.05);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
}

/* ═══ Hero ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero__gradient {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    animation: pulse-slow 8s ease-in-out infinite;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.hero__orb--1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: -5%;
    background: rgba(99, 102, 241, 0.08);
}

.hero__orb--2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: -5%;
    background: rgba(168, 85, 247, 0.08);
    animation-delay: -10s;
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {

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

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

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--green);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.hero__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero__title {
    background: linear-gradient(135deg, var(--text) 30%, var(--accent));
    -webkit-background-clip: text;
}
.hero__rotate {
    display: inline;
}

.hero__word {
    background: linear-gradient(135deg, var(--accent-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.4s;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
}

.stat__suffix {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-light);
}

.stat__label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Terminal */
.hero__terminal {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    margin: 48px auto 0;
}

.terminal {
    background: rgba(12, 18, 32, 0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--accent-glow);
}

.terminal__header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.terminal__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal__dot--red {
    background: #ff5f57;
}

.terminal__dot--yellow {
    background: #febc2e;
}

.terminal__dot--green {
    background: #28c840;
}

.terminal__title {
    margin-left: 8px;
    font-size: 12px;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
}

.terminal__body {
    padding: 16px 20px;
    min-height: 120px;
}

.terminal__line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

.terminal__prompt {
    color: var(--green);
    font-weight: 600;
}

.terminal__cmd {
    color: var(--text);
}

.terminal__cursor {
    color: var(--accent-light);
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.terminal__output {
    margin-top: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-muted);
}

.terminal__output .key {
    color: var(--cyan);
}

.terminal__output .val {
    color: var(--amber);
}

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

.terminal__output .brace {
    color: var(--text-dim);
}

/* ═══ Sections ═══ */
.section {
    padding: 100px 0;
}

.section--dark {
    background: var(--bg-surface);
}

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

.section__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
}

/* ═══ About ═══ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.about__text p {
    margin-bottom: 16px;
}

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

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

.highlight-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.highlight-card__icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.highlight-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.highlight-card__date {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══ Projects ═══ */
.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s;
}

.project-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.project-card__preview {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card__preview--findash {
    background: linear-gradient(135deg, #0a1628, #1a1040);
    background-image:
        repeating-linear-gradient(0deg, rgba(99, 102, 241, 0.03) 0px, transparent 1px, transparent 30px),
        repeating-linear-gradient(90deg, rgba(99, 102, 241, 0.03) 0px, transparent 1px, transparent 30px);
}

.project-card__preview--findash::before {
    content: '📊';
    font-size: 48px;
}

.project-card__preview--tradeapi {
    background: linear-gradient(135deg, #081420, #0a2010);
    background-image:
        repeating-linear-gradient(0deg, rgba(16, 185, 129, 0.03) 0px, transparent 1px, transparent 30px),
        repeating-linear-gradient(90deg, rgba(16, 185, 129, 0.03) 0px, transparent 1px, transparent 30px);
}

.project-card__preview--tradeapi::before {
    content: '🔌';
    font-size: 48px;
}

.project-card__preview--collabboard {
    background: linear-gradient(135deg, #120828, #1a0838);
    background-image:
        repeating-linear-gradient(0deg, rgba(168, 85, 247, 0.03) 0px, transparent 1px, transparent 30px),
        repeating-linear-gradient(90deg, rgba(168, 85, 247, 0.03) 0px, transparent 1px, transparent 30px);
}

.project-card__preview--collabboard::before {
    content: '📋';
    font-size: 48px;
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 16, 0.7);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.project-card__body {
    padding: 24px;
}

.project-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    background: var(--accent-glow);
    color: var(--accent-light);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.tag--sm {
    font-size: 10px;
    padding: 2px 8px;
}

.project-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-card__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-dim);
}

/* ═══ Skills ═══ */
.skills__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.skill-group {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.skill-group__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-icon {
    color: var(--accent-light);
    font-size: 12px;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-bar__name {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

.skill-bar__track {
    height: 6px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar__fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--purple));
    width: 0;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══ Timeline ═══ */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline__line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--purple), transparent);
}

.timeline__item {
    position: relative;
    padding-left: 64px;
    margin-bottom: 40px;
}

.timeline__dot {
    position: absolute;
    left: 17px;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow-strong);
    border: 3px solid var(--bg);
}

.timeline__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}

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

.timeline__date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent-light);
    font-weight: 600;
}

.timeline__card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0 4px;
}

.timeline__company {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.timeline__card p:last-of-type {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

/* ═══ Contact ═══ */
.contact__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin: 16px 0 20px;
}

.contact__desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contact__social {
    display: flex;
    gap: 16px;
}

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

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-3px);
}

/* ═══ Footer ═══ */
.footer {
    text-align: center;
    padding: 32px;
    font-size: 13px;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
}

/* ═══ Scroll Animations ═══ */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
    .nav__links {
        display: none;
    }

    .nav__menu {
        display: block;
    }

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

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

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

    .hero__stats {
        gap: 24px;
    }

    .hero__terminal {
        max-width: 100%;
    }
}