* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "segoe UI", sans-serif;
    background: #0f172a;
    color: #dbeafe;
}

.navbar {
    height: 70px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 40px;

    background-color: #162033;

    border-bottom: 2px solid #2d4f75;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;

    color: #dbeafe;

    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}


.nav-links a {
    color: #cbd5e1;

    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #93c5fd;
}

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    align-items: center;
    gap: 48px;
    padding: 64px 8vw;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='1600' height='760' viewBox='0 0 1600 760' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='glow' x='-40%25' y='-40%25' width='180%25' height='180%25'%3E%3CfeGaussianBlur stdDeviation='3' result='blur'/%3E%3CfeMerge%3E%3CfeMergeNode in='blur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Cg fill='none' stroke='%235eead4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='.45' filter='url(%23glow)'%3E%3Cpath d='M92 508H286c48 0 48-72 96-72h130c42 0 42-58 84-58h142'/%3E%3Cpath d='M196 248h138c56 0 56 62 112 62h166c44 0 44-84 88-84h178'/%3E%3Cpath d='M816 534h116c54 0 54-68 108-68h178c48 0 48 56 96 56h190'/%3E%3Cpath d='M1046 194h132c38 0 38 44 76 44h204'/%3E%3Cpath d='M120 638h214c64 0 64-54 128-54h184'/%3E%3Cpath d='M642 124h174c46 0 46 56 92 56h122'/%3E%3C/g%3E%3Cg fill='%235eead4' opacity='.72' filter='url(%23glow)'%3E%3Ccircle cx='92' cy='508' r='4'/%3E%3Ccircle cx='286' cy='508' r='4'/%3E%3Ccircle cx='512' cy='436' r='4'/%3E%3Ccircle cx='738' cy='378' r='4'/%3E%3Ccircle cx='196' cy='248' r='4'/%3E%3Ccircle cx='612' cy='310' r='4'/%3E%3Ccircle cx='878' cy='226' r='4'/%3E%3Ccircle cx='816' cy='534' r='4'/%3E%3Ccircle cx='1218' cy='466' r='4'/%3E%3Ccircle cx='1504' cy='522' r='4'/%3E%3Ccircle cx='1046' cy='194' r='4'/%3E%3Ccircle cx='1458' cy='238' r='4'/%3E%3Ccircle cx='642' cy='124' r='4'/%3E%3Ccircle cx='1030' cy='180' r='4'/%3E%3C/g%3E%3Cg fill='%23f472b6' opacity='.42'%3E%3Ccircle cx='382' cy='436' r='3'/%3E%3Ccircle cx='700' cy='226' r='3'/%3E%3Ccircle cx='1040' cy='466' r='3'/%3E%3Ccircle cx='1254' cy='238' r='3'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.16));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(94, 234, 212, 0.1), transparent 24%),
        radial-gradient(circle at 76% 60%, rgba(244, 114, 182, 0.08), transparent 28%);
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-kicker {
    margin-bottom: 18px;
    color: #5eead4;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    color: #f8fafc;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 600px;
    margin-top: 24px;
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: #14b8a6;
    color: #042f2e;
}

.button-primary:hover {
    background: #2dd4bf;
}

.button-secondary {
    border-color: #64748b;
    background: rgba(15, 23, 42, 0.65);
}

.button-secondary:hover {
    border-color: #f472b6;
}

.hero-visual {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    aspect-ratio: 1;
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 8px;
    background: #111827;
    box-shadow: 0 28px 90px rgba(2, 6, 23, 0.45);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.28), rgba(244, 114, 182, 0.3));
    pointer-events: none;
}

.hero-visual figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    color: #f8fafc;
    font-size: clamp(1.35rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0;
}

.about-section {
    display: grid;
    grid-template-columns: 190px minmax(0, 1040px);
    align-items: start;
    gap: 42px;
    padding: 84px 8vw;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #111827;
    justify-content: center;
}

.about-content {
    max-width: 860px;
}

.section-label {
    position: sticky;
    top: 96px;
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding-left: 18px;
    border-left: 4px solid #14b8a6;
    color: #5eead4;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-content h2 {
    color: #f8fafc;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.about-content p {
    margin-top: 20px;
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.8;
}

.page-hero {
    padding: 96px 8vw 72px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #0f172a;
}

.page-hero h1 {
    color: #f8fafc;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.page-hero p:not(.hero-kicker) {
    max-width: 720px;
    margin-top: 22px;
    color: #cbd5e1;
    font-size: 1.16rem;
    line-height: 1.7;
}

.resume-hero {
    padding: 96px 8vw 78px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #0f172a;
}

.resume-hero h1 {
    color: #f8fafc;
    font-size: clamp(3.2rem, 7vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.resume-subtitle {
    max-width: 880px;
    margin-top: 20px;
    color: #5eead4;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    line-height: 1.5;
}

.resume-summary-text {
    max-width: 820px;
    margin-top: 18px;
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.75;
}

.resume-actions {
    margin-top: 30px;
}

.resume-section {
    display: grid;
    grid-template-columns: 190px minmax(0, 1040px);
    align-items: start;
    gap: 42px;
    justify-content: center;
    padding: 84px 8vw;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #111827;
}

.resume-content {
    max-width: 1040px;
}

.resume-content h2 {
    color: #f8fafc;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.experience-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.experience-item {
    display: grid;
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
    gap: 28px;
    padding: 26px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.78);
}

.experience-item h3 {
    color: #f8fafc;
    font-size: 1.25rem;
    line-height: 1.3;
}

.role-stack {
    display: grid;
    gap: 24px;
}

.role-stack section {
    padding-left: 18px;
    border-left: 3px solid rgba(20, 184, 166, 0.48);
}

.role-stack h4 {
    color: #f8fafc;
    font-size: 1.05rem;
    line-height: 1.3;
}

.role-stack ul {
    margin-top: 14px;
}

.experience-date {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 0.92rem;
    font-weight: 700;
}

.experience-item ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.experience-item li {
    position: relative;
    padding-left: 18px;
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.55;
}

.experience-item li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #14b8a6;
}

.skills-section {
    display: grid;
    grid-template-columns: 190px minmax(0, 1040px);
    align-items: start;
    gap: 42px;
    padding: 84px 8vw;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #0f172a;
    justify-content: center;
}

.skills-content {
    max-width: 1040px;
}

.skills-content h2 {
    color: #f8fafc;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.skill-card,
.project-card {
    min-height: 260px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.78);
}

.skill-card h3,
.project-card h3 {
    color: #f8fafc;
    font-size: 1.15rem;
    letter-spacing: 0;
}

.skill-card ul {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    list-style: none;
}

.skill-card li {
    position: relative;
    padding-left: 18px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.skill-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #14b8a6;
}

.projects-section {
    display: grid;
    grid-template-columns: 190px minmax(0, 1040px);
    align-items: start;
    gap: 42px;
    justify-content: center;
    padding: 84px 8vw;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #111827;
}

.contact-section {
    display: grid;
    grid-template-columns: 190px minmax(0, 1040px);
    align-items: start;
    gap: 42px;
    justify-content: center;
    padding: 84px 8vw;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #0f172a;
}

.contact-content {
    max-width: 760px;
}

.contact-content h2 {
    color: #f8fafc;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.contact-content p {
    margin-top: 20px;
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.8;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-details span {
    padding: 10px 12px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 700;
}

.projects-page-section {
    grid-template-columns: 260px minmax(0, 1040px);
}

.projects-content {
    max-width: 1040px;
}

.projects-content h2 {
    color: #f8fafc;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.project-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.projects-page-section .project-tabs {
    position: sticky;
    top: 96px;
    grid-template-columns: 1fr;
    align-self: start;
    margin-top: 0;
}

.project-tab,
.project-tab-main {
    display: grid;
    gap: 8px;
    width: 100%;
    min-height: 104px;
    padding: 20px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.78);
    color: #f8fafc;
    font-family: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.project-tab.active,
.project-tab-group.active .project-tab-main {
    border-color: rgba(94, 234, 212, 0.58);
    background: rgba(20, 184, 166, 0.1);
}

.project-tab span,
.project-tab-main span {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.project-tab small,
.project-tab-main small {
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.project-tab-group {
    display: grid;
    gap: 8px;
}

.project-tab-group:not(.active) .project-subtab {
    display: none;
}

.project-subtab {
    display: block;
    margin-left: 18px;
    padding: 12px 14px;
    border-left: 3px solid rgba(94, 234, 212, 0.48);
    border-radius: 0 8px 8px 0;
    background: rgba(15, 23, 42, 0.72);
    color: #cbd5e1;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.project-subtab.active {
    color: #5eead4;
    background: rgba(20, 184, 166, 0.08);
}

.project-subtab.disabled {
    border-left-color: rgba(148, 163, 184, 0.22);
    color: #64748b;
    cursor: default;
}

.project-card {
    min-height: 240px;
}

.project-type {
    margin-bottom: 14px;
    color: #5eead4;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-card p:not(.project-type) {
    margin-top: 14px;
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.65;
}

.project-card a {
    display: inline-flex;
    margin-top: 22px;
    color: #5eead4;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.project-card a:hover {
    color: #f472b6;
}

.project-detail {
    display: none;
    margin-top: 34px;
    padding: 32px;
    border: 1px solid rgba(94, 234, 212, 0.28);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.86);
}

.project-detail.active-detail {
    display: block;
}

.projects-page-section .project-detail {
    margin-top: 28px;
}

.project-detail-header h3 {
    color: #f8fafc;
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.project-detail-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.project-detail h4 {
    color: #f8fafc;
    font-size: 1rem;
    letter-spacing: 0;
}

.project-detail p,
.project-detail li {
    color: #cbd5e1;
    font-size: 0.98rem;
    line-height: 1.7;
}

.project-detail p {
    margin-top: 12px;
}

.project-detail ul {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    list-style: none;
}

.project-detail ol {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-left: 20px;
}

.project-detail li {
    position: relative;
    padding-left: 18px;
}

.project-detail ol li {
    padding-left: 6px;
}

.project-detail li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #14b8a6;
}

.project-detail ol li::before {
    display: none;
}

.project-wide {
    grid-column: 1 / -1;
}

.resume-summary {
    padding: 22px;
    border-left: 4px solid #14b8a6;
    background: rgba(20, 184, 166, 0.08);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-detail .tag-list li {
    padding: 8px 12px;
    border: 1px solid rgba(94, 234, 212, 0.24);
    border-radius: 8px;
    background: rgba(20, 184, 166, 0.08);
    color: #dbeafe;
    font-size: 0.88rem;
    line-height: 1.2;
}

.project-detail .tag-list li::before {
    display: none;
}

.skills-demonstrated {
    margin-top: 22px;
}

.roadmap-section {
    display: grid;
    grid-template-columns: 190px minmax(0, 1040px);
    align-items: start;
    gap: 42px;
    justify-content: center;
    padding: 84px 8vw;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: #111827;
}

.alt-section {
    background: #0f172a;
}

.roadmap-content {
    max-width: 1040px;
}

.roadmap-content h2 {
    color: #f8fafc;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: 0;
}

.section-intro {
    max-width: 860px;
    margin-top: 20px;
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.8;
}

.career-path {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.career-path span {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 18px 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.74);
    color: #f8fafc;
    font-weight: 800;
}

.career-path strong {
    font-size: 1rem;
}

.career-path small {
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.career-path .current-step {
    border-color: rgba(94, 234, 212, 0.58);
    background: rgba(20, 184, 166, 0.1);
}

.career-path .target-step {
    border-color: rgba(244, 114, 182, 0.42);
    background: rgba(244, 114, 182, 0.08);
}

.career-path span:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -13px;
    width: 2px;
    height: 13px;
    background: #14b8a6;
}

.focus-grid,
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.focus-card,
.cert-card {
    min-height: 110px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.78);
    color: #f8fafc;
    font-weight: 800;
    line-height: 1.45;
}

.cert-card h3 {
    color: #f8fafc;
    font-size: 1.15rem;
    line-height: 1.35;
}

.cert-card p:not(.project-type) {
    margin-top: 12px;
    color: #cbd5e1;
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.6;
}

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

.education-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
}

.code-sample {
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(17, 24, 39, 0.72);
}

.code-sample pre {
    max-height: 360px;
    margin-top: 18px;
    overflow: auto;
    border: 1px solid rgba(94, 234, 212, 0.18);
    border-radius: 8px;
    background: #020617;
}

.code-sample code {
    display: block;
    min-width: 720px;
    padding: 18px;
    color: #dbeafe;
    font-family: "Cascadia Code", "Consolas", monospace;
    font-size: 0.82rem;
    line-height: 1.65;
    white-space: pre;
}

.code-sample a {
    display: inline-flex;
    margin-top: 16px;
    color: #5eead4;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.code-sample a:hover {
    color: #f472b6;
}

@media (max-width: 820px) {
    .navbar {
        height: auto;
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 56px 24px;
    }

    .hero-visual {
        width: min(100%, 360px);
        justify-self: start;
        order: -1;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 64px 24px;
    }

    .skills-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 64px 24px;
    }

    .projects-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 64px 24px;
    }

    .projects-page-section {
        display: flex;
        flex-direction: column;
    }

    .projects-page-section .projects-content {
        order: 2;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 64px 24px;
    }

    .roadmap-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 64px 24px;
    }

    .resume-section {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 64px 24px;
    }

    .projects-page-section .project-tabs {
        position: static;
        order: 1;
        gap: 10px;
        margin-top: 0;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(94, 234, 212, 0.2);
    }

    .projects-page-section .project-tab-group:not(.active) .project-subtab {
        display: none;
    }

    .projects-page-section .project-subtab {
        margin-left: 0;
        border-left: 0;
        border-radius: 8px;
    }

    .projects-page-section .project-tab-group.active {
        padding-bottom: 4px;
    }

    .section-label {
        position: static;
        min-height: 42px;
        font-size: 0.95rem;
    }

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

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

    .project-tabs {
        grid-template-columns: 1fr;
    }

    .focus-grid,
    .cert-grid,
    .roadmap-skills-grid {
        grid-template-columns: 1fr;
    }

    .project-detail {
        padding: 24px;
    }

    .project-detail-body {
        grid-template-columns: 1fr;
    }

    .experience-item {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .skill-card,
    .project-card {
        min-height: auto;
    }
}

@media (min-width: 821px) and (max-width: 1180px) {
    .skills-grid,
    .roadmap-skills-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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