@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Noto+Sans+KR:wght@300;400;700;900&display=swap');

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

:root {
    --bg: #0a0a0f;
    --bg2: #111118;
    --accent: #ff3c00;
    --accent2: #00e5ff;
    --accent3: #b8ff00;
    --text: #f0ede8;
    --muted: #666;
    --border: #222;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .15s, height .15s, background .15s;
    mix-blend-mode: difference;
}

#cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--accent2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all .08s linear;
    opacity: .6;
}

::-webkit-scrollbar {
    width: 4px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--accent);
}

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

/* ══ BOOT SCREEN ══ */
#boot {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 8000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem clamp(1.5rem, 8vw, 5rem);
    transition: opacity .6s ease;
}

#boot.fade-out {
    opacity: 0;
    pointer-events: none;
}

.boot-header {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: clamp(10px, 2vw, 13px);
    color: var(--accent);
    letter-spacing: .2em;
    margin-bottom: 2.5rem;
}

.boot-header span {
    color: var(--muted);
}

.boot-lines {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: clamp(11px, 2vw, 14px);
    line-height: 2;
    min-height: 280px;
}

.boot-line {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s ease, transform .25s ease;
}

.boot-line.show {
    opacity: 1;
    transform: translateX(0);
}

.boot-line .ok {
    color: var(--accent3);
    font-size: .85em;
}

.boot-line .fail {
    color: var(--accent);
    font-size: .85em;
}

.boot-line .wait {
    color: var(--muted);
    font-size: .85em;
    animation: blink 1s step-end infinite;
}

.boot-line .txt {
    color: #bbb;
}

.boot-line .txt em {
    color: var(--text);
    font-style: normal;
}

.boot-progress-wrap {
    margin-top: 2.5rem;
    width: min(400px, 80vw);
}

.boot-progress-label {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .15em;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.boot-progress-bar {
    height: 2px;
    background: var(--border);
    width: 100%;
}

.boot-progress-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width .3s ease;
}

.boot-skip {
    margin-top: 2rem;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .15em;
    cursor: pointer;
    transition: color .2s;
}

.boot-skip:hover {
    color: var(--accent);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ══ CMD OVERLAY ══ */
#cmd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 7000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

#cmd-overlay.open {
    display: flex;
}

#cmd-box {
    width: min(660px, 92vw);
    background: var(--bg2);
    border: 1px solid var(--accent);
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    overflow: hidden;
}

.cmd-titlebar {
    background: var(--accent);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cmd-titlebar span {
    font-size: 11px;
    color: var(--bg);
    letter-spacing: .15em;
    font-weight: 700;
}

.cmd-close {
    background: none;
    border: none;
    color: var(--bg);
    font-size: 16px;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    line-height: 1;
}

.cmd-body {
    padding: 1.2rem;
    min-height: 300px;
    max-height: 60vh;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.9;
}

.cmd-output {
    color: #aaa;
    margin-bottom: 2px;
}

.cmd-output .prompt {
    color: var(--accent2);
}

.cmd-output .res {
    color: var(--accent3);
}

.cmd-output .err {
    color: var(--accent);
}

.cmd-output .hi {
    color: var(--text);
}

.cmd-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: .8rem 1.2rem;
    border-top: 1px solid var(--border);
}

.cmd-prompt-sym {
    color: var(--accent2);
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 13px;
    flex-shrink: 0;
}

#cmd-input {
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 13px;
    flex: 1;
    caret-color: var(--accent);
}

.cmd-hint {
    padding: .5rem 1.2rem .8rem;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: .1em;
    border-top: 1px solid var(--border);
}

/* ══ HERO ══ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* padding: 6rem 2rem 4rem; */
    padding: 4rem 2rem;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .4;
    z-index: 0;
}

.glare {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.glare-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 60, 0, .12) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: pulse1 6s ease-in-out infinite;
}

.glare-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, .1) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation: pulse2 8s ease-in-out infinite;
}

.glare-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 255, 0, .08) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation: pulse3 10s ease-in-out infinite;
}

@keyframes pulse1 {

    0%,
    100% {
        transform: scale(1) translate(0, 0)
    }

    50% {
        transform: scale(1.2) translate(30px, 20px)
    }
}

@keyframes pulse2 {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.3) translate(-20px, -30px)
    }
}

@keyframes pulse3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 14px;
    margin-bottom: 2rem;
    animation: fadeDown .8s ease both;
    animation-delay: .2s;
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 60, 0, .2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to {
        left: 200%;
    }
}

.hero-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(5rem, 14vw, 11rem);
    line-height: .88;
    letter-spacing: -.03em;
    color: var(--text);
    animation: fadeDown .8s ease both;
    animation-delay: .4s;
    position: relative;
}

.hero-title span.red {
    color: var(--accent);
}

.hero-title span.cyan {
    color: var(--accent2);
    font-style: italic;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: .6em;
    display: block;
    letter-spacing: .05em;
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.glitch::before {
    color: var(--accent);
    animation: glitch1 4s infinite;
    clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
}

.glitch::after {
    color: var(--accent2);
    animation: glitch2 4s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%);
}

@keyframes glitch1 {

    0%,
    90%,
    100% {
        transform: translate(0)
    }

    92% {
        transform: translate(-4px, 1px)
    }

    94% {
        transform: translate(3px, -1px)
    }

    96% {
        transform: translate(0)
    }
}

@keyframes glitch2 {

    0%,
    88%,
    100% {
        transform: translate(0)
    }

    90% {
        transform: translate(4px, -2px)
    }

    93% {
        transform: translate(-3px, 1px)
    }

    95% {
        transform: translate(0)
    }
}

.hero-sub {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    margin-top: 2rem;
    animation: fadeDown .8s ease both;
    animation-delay: .7s;
    letter-spacing: .05em;
}

.hero-sub strong {
    color: var(--accent3);
    font-weight: 400;
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeDown 1s ease both;
    animation-delay: 1.2s;
}

.scroll-hint span {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: .2em;
    color: var(--muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        transform: scaleY(1);
        transform-origin: top
    }

    50% {
        transform: scaleY(.4)
    }
}

.floaty-tags {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.tag {
    position: absolute;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    opacity: .4;
    white-space: nowrap;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    from {
        transform: translateY(100vh) rotate(-5deg);
        opacity: 0
    }

    10% {
        opacity: .4
    }

    90% {
        opacity: .2
    }

    to {
        transform: translateY(-10vh) rotate(5deg);
        opacity: 0
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

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

/* ══ MARQUEE ══ */
.marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--accent);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    align-items: end;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
}

.marquee-track span {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace, 'Black Han Sans', sans-serif;
    font-size: 14px;
    letter-spacing: .1em;
    color: var(--bg);
    flex-shrink: 0;
}

.marquee-track span.dot {
    color: rgba(0, 0, 0, .3);
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ══ ABOUT ══ */
#about {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.section-label {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .3em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
    max-width: 100px;
}

.big-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 2rem;
}

.big-text em {
    font-style: normal;
    color: var(--accent2);
    position: relative;
}

.big-text em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent2);
    opacity: .4;
}

.big-text .strike {
    text-decoration: line-through;
    color: var(--muted);
    font-size: .8em;
}

.body-text {
    font-size: 15px;
    line-height: 1.85;
    color: #999;
    max-width: 560px;
}

.body-text strong {
    color: var(--text);
    font-weight: 700;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 5rem;
    border: 1px solid var(--border);
    background: var(--border);
    overflow: hidden;
}

.stat-box {
    background: var(--bg2);
    padding: 2rem 1.5rem;
    transition: background .2s;
    cursor: default;
}

.stat-box:hover {
    background: #1a1a22;
}

.stat-num {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--text);
}

.stat-num span {
    color: var(--accent);
    font-size: .6em;
}

.stat-label {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .15em;
    color: var(--muted);
    margin-top: .5rem;
}

/* ══ PROJECTS ══ */
#projects {
    padding: 4rem 2rem 8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.projects-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1;
    color: var(--text);
}

.projects-count {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .2em;
    padding-bottom: 8px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    overflow: hidden;
}

.project-card {
    background: var(--bg2);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: background .2s;
    cursor: pointer;
}

.project-card:hover {
    background: #161620;
}

.project-card:hover .card-arrow {
    transform: translate(4px, -4px);
}

.project-card:hover .card-accent-line {
    width: 100%;
}

.card-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width .3s ease;
}

.project-card:nth-child(5n+2) .card-accent-line { background: var(--accent2); }
.project-card:nth-child(5n+3) .card-accent-line { background: var(--accent3); }
.project-card:nth-child(5n+4) .card-accent-line { background: #ff00aa; }
.project-card:nth-child(5n+5) .card-accent-line { background: #aa00ff; }

.card-tag {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: .2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.project-card:nth-child(5n+2) .card-tag { color: var(--accent2); }
.project-card:nth-child(5n+3) .card-tag { color: var(--accent3); }
.project-card:nth-child(5n+4) .card-tag { color: #ff00aa; }
.project-card:nth-child(5n+5) .card-tag { color: #aa00ff; }

.card-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: .75rem;
    line-height: 1.2;
}

.card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #777;
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.chip {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 9px;
    padding: 3px 8px;
    border: 1px solid var(--border);
    color: var(--muted);
    letter-spacing: .05em;
}

.card-arrow {
    font-size: 16px;
    color: var(--muted);
    transition: transform .2s;
    flex-shrink: 0;
}

.project-card.featured {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-visual {
    height: 180px;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-visual-inner {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    color: var(--accent3);
    letter-spacing: .1em;
    text-align: center;
    line-height: 1.8;
    z-index: 2;
    position: relative;
}

.featured-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(184, 255, 0, .02) 2px, rgba(184, 255, 0, .02) 4px);
}

/* ══ RANDOMIZER ══ */
#randomizer {
    border-top: 1px solid var(--border);
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

#randomizer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255, 255, 255, .01) 20px, rgba(255, 255, 255, .01) 21px);
}

.rand-title {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--text);
    margin-bottom: .5rem;
    position: relative;
    z-index: 2;
}

.rand-sub {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: .15em;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

#mood-output {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--accent);
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: color .1s;
    position: relative;
    z-index: 2;
    letter-spacing: -.02em;
}

.rand-btn {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: .2em;
    padding: 14px 36px;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all .15s;
    overflow: hidden;
}

.rand-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateX(-100%);
    transition: transform .15s ease;
    z-index: -1;
}

.rand-btn:hover::before {
    transform: translateX(0);
}

.rand-btn:hover {
    color: var(--bg);
}

.rand-btn:active {
    transform: scale(.97);
}

/* ══ FOOTER ══ */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--text);
}

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

.footer-copy {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .1em;
}

.footer-mode {
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 10px;
    color: var(--accent3);
    letter-spacing: .15em;
    animation: blink 3s step-end infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

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

#egg-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    transition: all .2s;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    border-radius: 0;
}

#egg-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    transform: rotate(180deg);
}

.particle {
    position: fixed;
    pointer-events: none;
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 12px;
    z-index: 9000;
    animation: particleFly .8s ease-out forwards;
}

@keyframes particleFly {
    from {
        opacity: 1;
        transform: translate(0, 0) scale(1)
    }

    to {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(.5)
    }
}

/* cmd 단축키 토스트 */
#cmd-toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg2);
    border: 1px solid var(--accent2);
    font-family: 'Noto Sans KR', sans-serif, 'Space Mono', monospace;
    font-size: 11px;
    color: var(--accent2);
    padding: 8px 20px;
    letter-spacing: .15em;
    opacity: 0;
    transition: all .4s ease;
    z-index: 600;
    pointer-events: none;
}

#cmd-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media(max-width:640px) {
    .project-card.featured {
        grid-template-columns: 1fr
    }

    .featured-visual {
        display: none
    }

    .stats-row {
        grid-template-columns: 1fr
    }
}