:root {
    --bg-900: #0f1217;
    --bg-850: #131821;
    --bg-800: #191f2e;
    --surface-700: #1f2937;
    --surface-650: #262f3f;
    --border-500: #303a4a;
    --text-100: #f5f7fa;
    --text-300: #c5cad3;
    --text-500: #8b929d;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-300: #93c5fd;
    --accent-400: #3b82f6;
    --accent-gradient: linear-gradient(135deg, var(--accent), var(--accent-light));
    --accent-soft: rgba(59, 130, 246, 0.12);
    --accent-soft-light: rgba(96, 165, 250, 0.08);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --content-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text-100);
    font-size: 17px;
    background: linear-gradient(180deg, var(--bg-850) 0%, var(--bg-900) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

main {
    padding-top: 88px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, rgba(15, 18, 23, 0.95), rgba(15, 18, 23, 0.85));
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.nav-container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-500);
    background: rgba(232, 238, 246, 0.06);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand-text {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-300);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-100);
    background: rgba(59, 130, 246, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-500);
    border-radius: 10px;
    background: transparent;
    padding: 9px 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-100);
    margin: 4px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    min-height: calc(100vh - 88px);
    display: grid;
    place-items: center;
    padding: 72px 20px 56px;
}

.hero-inner {
    max-width: 760px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--text-300);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero h1 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: 0.01em;
    font-weight: 600;
    line-height: 1.1;
}

.hero-subtitle {
    margin: 22px auto 34px;
    max-width: 650px;
    color: var(--text-300);
    font-size: clamp(1rem, 2.1vw, 1.15rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: var(--accent);
    border-color: transparent;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-ghost {
    color: var(--text-100);
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.25);
}

.btn-ghost:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.5);
}

.section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 72px 20px;
}

.section-heading {
    max-width: 720px;
    position: relative;
}

.section-heading h2 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.section-heading p {
    margin: 14px 0 0;
    color: var(--text-300);
    max-width: 640px;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    margin-top: 16px;
    border-radius: 999px;
    background: var(--accent);
}

.about-layout {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(280px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.about-visual,
.about-copy {
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(31, 41, 55, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-visual {
    padding: 16px;
}

.about-visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 8px);
    filter: grayscale(25%);
}

.about-copy {
    padding: 26px;
}

.about-copy p {
    margin: 0;
    color: var(--text-300);
}

.about-copy p + p {
    margin-top: 16px;
}

.projects-shell {
    margin-top: 34px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.05);
    color: var(--text-100);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.slider-btn:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.5);
}

.projects-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 38vw);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    touch-action: pan-x;
    cursor: grab;
}

.projects-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.projects-track::-webkit-scrollbar {
    height: 8px;
}

.projects-track::-webkit-scrollbar-track {
    background: rgba(232, 238, 246, 0.05);
    border-radius: 999px;
}

.projects-track::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 999px;
    transition: background 0.2s ease;
}

.projects-track::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

.project-card {
    scroll-snap-align: start;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    background: rgba(31, 41, 55, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: rgba(31, 41, 55, 0.6);
}

.project-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(191, 208, 229, 0.13);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: transform 0.2s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.01);
}

.project-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.project-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
}

.project-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.05);
}

.project-head-text h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.project-head-text p {
    margin: 6px 0 0;
    color: var(--text-300);
    font-size: 0.92rem;
}

.project-content h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.project-content p {
    margin: 0;
    color: var(--text-300);
    font-size: 0.95rem;
}

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

.project-tech span {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-100);
    font-size: 0.74rem;
    letter-spacing: 0.03em;
    background: rgba(59, 130, 246, 0.05);
}

.project-content .btn {
    margin-top: auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.project-card .btn-ghost {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.25);
    transition: all 0.2s ease;
    position: relative;
}

.project-card .btn-ghost:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

.project-card:hover .btn-ghost {
    border-color: rgba(124, 58, 237, 0.6);
}

/* Project detail pages */
.project-page {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 120px 20px 72px;
}

.project-back {
    margin-bottom: 18px;
    display: inline-flex;
}

.project-hero {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(31, 41, 55, 0.4);
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.project-hero__media {
    border-radius: calc(var(--radius-lg) - 8px);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.15);
    background: rgba(15, 23, 33, 0.6);
    aspect-ratio: 4 / 3;
}

.project-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero__eyebrow {
    margin: 0 0 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 700;
}

.project-hero__title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
}

.project-hero__subtitle {
    margin: 10px 0 0;
    color: var(--text-300);
}

.project-meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-100);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    background: rgba(59, 130, 246, 0.05);
}

.project-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-sections {
    margin-top: 32px;
    display: grid;
    gap: 28px;
}

.project-section {
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    background: rgba(31, 41, 55, 0.4);
    padding: 24px;
}

.project-section h2 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

@media (max-width: 900px) {
    .project-hero {
        grid-template-columns: 1fr;
    }
}

.projects-hint {
    margin: 14px 0 0;
    color: var(--text-500);
    font-size: 0.88rem;
}

.project-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.project-modal.active {
    display: flex;
}

.project-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 11, 20, 0.75);
    backdrop-filter: blur(6px);
}

.project-modal__card {
    position: relative;
    z-index: 1;
    width: min(960px, 92vw);
    background: rgba(24, 28, 40, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.project-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
    color: var(--text-100);
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.project-modal__close:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.project-modal__content {
    display: grid;
    gap: 18px;
}

.project-modal__media {
    border-radius: calc(var(--radius-lg) - 6px);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.15);
    background: rgba(15, 23, 33, 0.6);
    aspect-ratio: 16 / 9;
    min-height: 220px;
}

.project-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.project-modal:hover .project-modal__media img {
    transform: scale(1.01);
}

.project-modal__eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
}

.project-description {
    padding: 24px 20px 12px;
    display: grid;
    gap: 12px;
    background: transparent;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.project-description h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-100);
}

.project-description p {
    margin: 0;
    color: var(--text-300);
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-modal__label {
    margin-top: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-500);
    font-weight: 600;
}

.project-modal__tech {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-modal__tech span {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--text-300);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    background: rgba(59, 130, 246, 0.05);
}

.project-modal__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 900px) {
    .project-modal__close {
        position: static;
        margin-left: auto;
        margin-bottom: 12px;
    }
}

.is-hidden {
    display: none;
}

body.modal-open {
    overflow: hidden;
}

.skills-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 20px;
}

.skill-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(59, 130, 246, 0.12);
    background: rgba(31, 41, 55, 0.4);
    padding: 20px;
    min-height: 160px;
    display: grid;
    gap: 14px;
    grid-template-rows: auto 1fr auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.skill-card::after {
    content: attr(data-type);
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    border: 1px solid rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.skill-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.skill-card:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
    background: rgba(31, 41, 55, 0.6);
}

.skill-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.skill-card > * {
    position: relative;
    z-index: 1;
}

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

.skill-logo {
    width: 54px;
    height: 54px;
    padding: 8px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.12);
    color: var(--accent);
    filter: grayscale(0%);
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.skill-card:hover .skill-logo {
    filter: brightness(1.1);
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.12);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.15);
}

.skill-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-100);
    transition: all 0.2s ease;
}}

.skill-card:hover .skill-title {
    color: #ff0055;
}

.skill-type {
    margin: 0;
    color: var(--text-500);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
    align-self: flex-end;
}

.skill-card:hover .skill-type {
    color: var(--primary-color);
}

.contact-layout {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

.contact-list,
.contact-form {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 0, 85, 0.2);
    background: linear-gradient(180deg, rgba(34, 52, 74, 0.6), rgba(18, 28, 44, 0.8));
    box-shadow: 0 20px 36px rgba(7, 10, 18, 0.45);
}

.contact-list {
    display: grid;
    padding: 14px;
    gap: 10px;
}

.contact-item {
    text-decoration: none;
    border: 1px solid rgba(255, 0, 85, 0.18);
    border-radius: 12px;
    padding: 14px;
    transition: background-color 0.2s ease;
}

.contact-item:hover {
    background: rgba(255, 0, 85, 0.12);
}

.contact-label {
    display: block;
    color: var(--text-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    display: block;
    margin-top: 5px;
    font-size: 0.95rem;
    color: var(--text-100);
}

.contact-form {
    padding: 20px;
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.form-row label {
    font-size: 0.8rem;
    color: var(--text-300);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 85, 0.25);
    background: rgba(15, 23, 33, 0.55);
    color: var(--text-100);
    font: inherit;
    padding: 11px 12px;
    outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: rgba(124, 58, 237, 0.7);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.submit-btn {
    width: 100%;
}

.form-message {
    min-height: 1.2rem;
    margin: 10px 0 0;
    font-size: 0.9rem;
    color: var(--text-300);
}

.form-message.success {
    color: #c9efd8;
}

.form-message.error {
    color: #f7c8c8;
}

.site-footer {
    border-top: 1px solid rgba(255, 0, 85, 0.25);
    background: linear-gradient(180deg, rgba(21, 33, 49, 0.8), rgba(15, 23, 33, 0.95));
    margin-top: 20px;
}

.site-footer p {
    margin: 0;
    padding: 22px 20px 28px;
    text-align: center;
    color: var(--text-300);
    font-size: 0.86rem;
}

@media (max-width: 980px) {
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .projects-track {
        grid-auto-columns: minmax(290px, 75vw);
    }
}

@media (max-width: 780px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 12px;
        right: 12px;
        background: rgba(15, 23, 36, 0.95);
        border: 1px solid rgba(255, 0, 85, 0.3);
        border-radius: 14px;
        padding: 12px;
        display: grid;
        gap: 6px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

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

    .slider-btn {
        display: none;
    }

    .hero {
        padding-top: 40px;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 56px 16px;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .projects-track {
        grid-auto-columns: 86vw;
    }

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