/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: #FF99BE;
    color: #2a2a2a;
}

/* ===== Body ===== */
body {
    font-family: 'Times New Roman', Times, serif;
    overflow-x: hidden;
    color: #2a2a2a;
    background: #f8f4f1;
    min-height: 100vh;
    cursor: none;
}

/* ===== Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF99BE, #96CBFC, #4E8BC4);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== Background Canvas ===== */
#projCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== Grain ===== */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.04;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ===== Aurora Background ===== */
.aurora {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.orb-pink {
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(255, 100, 160, 0.18) 0%, rgba(255, 153, 190, 0.08) 40%, transparent 70%);
    top: -160px;
    right: -80px;
    filter: blur(38px);
    animation: orbDrift1 22s ease-in-out infinite alternate;
}

.orb-blue {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(60, 130, 210, 0.14) 0%, rgba(78, 139, 196, 0.06) 40%, transparent 70%);
    bottom: -220px;
    left: -120px;
    filter: blur(45px);
    animation: orbDrift2 28s ease-in-out infinite alternate;
}

.orb-sky {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(120, 190, 255, 0.12) 0%, rgba(150, 203, 252, 0.05) 45%, transparent 70%);
    top: 42%;
    left: 38%;
    filter: blur(40px);
    animation: orbDrift3 19s ease-in-out infinite alternate;
}

.orb-deep {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(255, 153, 190, 0.15) 0%, rgba(255, 100, 160, 0.05) 50%, transparent 70%);
    bottom: 8%;
    right: 3%;
    filter: blur(48px);
    animation: orbDrift1 24s ease-in-out 6s infinite alternate;
}

@keyframes orbDrift1 {
    from { margin-top: 0; margin-left: 0; }
    to   { margin-top: 60px; margin-left: 80px; }
}

@keyframes orbDrift2 {
    from { margin-top: 0; margin-left: 0; }
    to   { margin-top: -50px; margin-left: -60px; }
}

@keyframes orbDrift3 {
    from { margin-top: 0; margin-left: 0; }
    to   { margin-top: 40px; margin-left: -50px; }
}

/* ===== Custom Cursor (matches contact page) ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #FF99BE;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-dot.on-section {
    width: 20px;
    height: 20px;
    background: rgba(255, 153, 190, 0.35);
}

.cursor-cross {
    position: fixed;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    opacity: 0.4;
}

.cursor-cross::before,
.cursor-cross::after {
    content: '';
    position: absolute;
    background: #FF99BE;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.cursor-cross::before {
    width: 1.5px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.cursor-cross::after {
    width: 100%;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.cursor-cross.hover {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}

.cursor-cross.hover::before,
.cursor-cross.hover::after {
    background: #FFC2D9;
}

.cursor-cross.on-section {
    opacity: 0;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 30px;
    right: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-list li a {
    text-decoration: none;
    color: #FF99BE;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF99BE;
    transition: width 0.3s ease;
}

.nav-list li a:hover { color: #4E8BC4; }
.nav-list li a:hover::after { width: 100%; background: #4E8BC4; }

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: #FF99BE;
    z-index: 1001;
}

/* ===== Hero ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
    padding: 0 40px;
}

.hero-title {
    font-size: 80px;
    font-weight: bold;
    color: #FF99BE;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards 0.3s;
}

.typewriter-line {
    margin-top: 24px;
    font-size: 20px;
    color: rgba(255, 153, 190, 0.75);
    min-height: 32px;
    text-align: center;
    letter-spacing: 1px;
    font-style: italic;
    opacity: 0;
    animation: fadeUp 1.2s ease forwards 0.8s;
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: #FF99BE;
    animation: bounce 2s infinite;
    transition: opacity 0.3s ease;
    cursor: none;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== Horizontal Rule ===== */
.hr {
    width: 100%;
    height: 1px;
    background: rgba(42, 42, 42, 0.1);
    position: relative;
    z-index: 5;
}

/* ===== Section Layout ===== */
.proj-section {
    padding: 80px 60px;
    position: relative;
    z-index: 5;
}

.sec-meta {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sec-meta.vis {
    opacity: 1;
    transform: translateY(0);
}

.sec-num {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #FF99BE;
    margin-bottom: 16px;
}

.proj-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: #2a2a2a;
    margin-bottom: 14px;
}

.proj-section h2 .light {
    color: #FF99BE;
}

.sec-desc {
    font-size: 0.92rem;
    color: rgba(42, 42, 42, 0.6);
    line-height: 1.85;
    max-width: 420px;
}

.sec-accent {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FF99BE, #96CBFC);
    margin-top: 24px;
    border-radius: 2px;
}

/* ===== Project Browser (Section 01) ===== */
.browser {
    display: flex;
    border: 1px solid rgba(255, 153, 190, 0.25);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.browser.vis {
    opacity: 1;
    transform: translateY(0);
}

/* Tab sidebar */
.browser-tabs {
    width: 38%;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 153, 190, 0.2);
    display: flex;
    flex-direction: column;
}

.proj-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(42, 42, 42, 0.07);
    cursor: pointer;
    color: rgba(42, 42, 42, 0.45);
    text-align: left;
    width: 100%;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
}

.proj-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #FF99BE, #96CBFC);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proj-tab.active {
    background: rgba(255, 153, 190, 0.2);
    color: #2a2a2a;
}

.proj-tab.active::before { opacity: 1; }

.proj-tab:hover:not(.active) {
    background: rgba(255, 153, 190, 0.08);
    color: rgba(42, 42, 42, 0.75);
}

.tab-num {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: #FF99BE;
    opacity: 0.6;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.proj-tab.active .tab-num { opacity: 1; color: #FF99BE; }

.tab-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.tab-title {
    font-size: 0.85rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-year {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: rgba(42, 42, 42, 0.4);
    text-transform: uppercase;
}

.tab-arr {
    font-size: 0.8rem;
    color: rgba(42, 42, 42, 0.2);
    flex-shrink: 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.proj-tab.active .tab-arr,
.proj-tab:hover .tab-arr {
    color: #FF99BE;
    transform: translateX(3px);
}

/* Panel */
.browser-panel {
    flex: 1;
    min-height: 420px;
    padding: 44px 48px;
    overflow-y: auto;
}

@keyframes panelIn {
    from { opacity: 0; transform: translateX(14px); }
    to   { opacity: 1; transform: translateX(0); }
}

.panel-inner {
    animation: panelIn 0.4s ease forwards;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.panel-num {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: #FF99BE;
    text-transform: uppercase;
}

.panel-year {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: #FF99BE;
    text-transform: uppercase;
}

.panel-title {
    font-size: 1.65rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 18px;
    line-height: 1.25;
}

.panel-desc {
    font-size: 0.9rem;
    color: rgba(42, 42, 42, 0.6);
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 24px;
}

.panel-action {
    margin-top: 26px;
}

.panel-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FF99BE;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 153, 190, 0.3);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.panel-open-btn:hover {
    color: #FF6B9E;
    border-color: #FF6B9E;
    gap: 13px;
}

/* ===== Tech Tags (shared) ===== */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255, 153, 190, 0.08);
    color: #d63d73;
    border: 1px solid rgba(255, 153, 190, 0.3);
    transition: all 0.3s ease;
}

.tech-tags span:hover {
    background: linear-gradient(135deg, #FF99BE, #96CBFC);
    color: #2a2a2a;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ===== Media Toggle (shared) ===== */
.media-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid rgba(42, 42, 42, 0.15);
    color: rgba(42, 42, 42, 0.5);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.media-toggle:hover {
    background: rgba(255, 153, 190, 0.1);
    border-color: rgba(255, 153, 190, 0.35);
    color: #FF99BE;
}

.media-toggle .toggle-icon {
    display: inline-block;
    transition: transform 0.35s ease;
}

.media-toggle.open .toggle-icon {
    transform: rotate(45deg);
}

.media-reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), margin 0.4s ease;
    margin-top: 0;
}

.media-reveal.open {
    max-height: 500px;
    margin-top: 18px;
}

.media-reveal img,
.media-reveal video {
    width: 100%;
    max-width: 440px;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(255, 153, 190, 0.15);
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.badge-pink {
    background: linear-gradient(135deg, #FF99BE, #96CBFC);
    color: #2a2a2a;
}

.badge-outline {
    background: rgba(255, 153, 190, 0.08);
    color: #d63d73;
    border: 1px solid rgba(255, 153, 190, 0.35);
}

/* ===== Project Cards (Section 02) ===== */
.proj-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.proj-card {
    border: 1px solid rgba(255, 153, 190, 0.2);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
    cursor: default;
    opacity: 0;
    transform: translateY(28px);
    will-change: transform;
}

.proj-card.vis {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.proj-card:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08), 0 0 50px rgba(255, 153, 190, 0.18);
}

/* Card visual area */
.card-visual {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.weather-bg {
    background: linear-gradient(135deg, rgba(255, 100, 160, 0.2) 0%, rgba(150, 203, 252, 0.15) 100%);
}

.mudle-bg {
    background: linear-gradient(135deg, rgba(60, 130, 210, 0.2) 0%, rgba(120, 190, 255, 0.15) 100%);
}

/* Weather art — concentric pulse rings */
.weather-art {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-ring {
    position: absolute;
    border-radius: 50%;
    animation: ringPulse 3.2s ease-in-out infinite;
}

.r1 { width: 56px;  height: 56px;  border: 2px solid rgba(255, 100, 160, 0.8);    animation-delay: 0s; }
.r2 { width: 90px;  height: 90px;  border: 1.5px solid rgba(78, 139, 196, 0.55);  animation-delay: 0.55s; }
.r3 { width: 128px; height: 128px; border: 1px solid rgba(255, 153, 190, 0.3);    animation-delay: 1.1s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50%       { transform: scale(1.06); opacity: 0.35; }
}

.wa-glyph {
    font-size: 1.9rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 14px rgba(255, 100, 160, 0.5));
    animation: glyphFloat 3.5s ease-in-out infinite;
}

@keyframes glyphFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* MUDLE art — animated bars + wordmark */
.mudle-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.mudle-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 64px;
}

.mudle-bars span {
    display: block;
    width: 7px;
    background: linear-gradient(to top, #3A82D2, #78BEFF);
    border-radius: 4px;
    height: 20px;
    transition: height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 6px rgba(78, 139, 196, 0.3);
}

.mudle-wordmark {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: bold;
    letter-spacing: 0.45em;
    color: #FF99BE;
    text-shadow: 0 0 18px rgba(255, 153, 190, 0.4);
    user-select: none;
}

/* Portfolio art — mini Figma-style canvas */
.portfolio-bg {
    background: linear-gradient(135deg, rgba(255, 100, 160, 0.15) 0%, rgba(60, 130, 210, 0.18) 100%);
}

.portfolio-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa-frame {
    width: 118px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 153, 190, 0.2);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    backdrop-filter: blur(6px);
}

.pa-bar {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(90deg, #FF99BE, #78BEFF);
    opacity: 0.75;
}

.pa-row {
    display: flex;
    gap: 6px;
    align-items: stretch;
}

.pa-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pa-block {
    border-radius: 5px;
    opacity: 0.6;
}

.pb-pink { background: rgba(255, 100, 160, 0.5); }
.pb-blue { background: rgba(78, 139, 196, 0.55); }

.pb-tall {
    width: 36px;
    height: 52px;
    flex-shrink: 0;
    animation: paFloat 3.8s ease-in-out infinite;
}

.pa-col .pa-block {
    height: 20px;
}

.pb-wide {
    width: 100%;
    height: 9px;
    animation: paFloat 4.5s ease-in-out 0.6s infinite;
}

@keyframes paFloat {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50%       { opacity: 0.9; transform: translateY(-3px); }
}

.pa-cursor {
    position: absolute;
    bottom: 14px;
    right: 22px;
    font-size: 0.7rem;
    color: #FF99BE;
    filter: drop-shadow(0 0 6px rgba(255, 100, 160, 0.5));
    animation: cursorBlink 2s ease-in-out infinite;
    transform: rotate(-15deg);
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* Card content */
.card-content {
    padding: 30px 34px 36px;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 0.88rem;
    color: rgba(42, 42, 42, 0.6);
    line-height: 1.85;
    margin-bottom: 18px;
}

.card-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FF99BE;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 153, 190, 0.3);
    padding-bottom: 3px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.card-link-btn:hover {
    color: #96CBFC;
    border-color: #96CBFC;
    gap: 13px;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.card-link-btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

/* ===== Footer ===== */
.site-footer {
    text-align: center;
    padding: 40px 20px 50px;
    color: rgba(42, 42, 42, 0.7);
    font-size: 13px;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 5;
}

.footer-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(42, 42, 42, 0.2), rgba(42, 42, 42, 0.45));
    margin: 0 auto 24px;
    border-radius: 2px;
}

.footer-name {
    font-weight: bold;
    color: #2a2a2a;
}

.footer-year {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.5;
    letter-spacing: 1px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .proj-section { padding: 70px 45px; }
    .browser-panel { padding: 36px 38px; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        top: 30px;
        right: 20px;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        right: 20px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 14px;
        padding: 20px 25px;
        display: none;
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 153, 190, 0.2);
    }

    .nav-list.active {
        display: flex;
        animation: navIn 0.3s ease;
    }

    @keyframes navIn {
        from { opacity: 0; transform: translateY(-12px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .nav-list li a { font-size: 16px; }

    body { cursor: auto; }
    .cursor-dot, .cursor-cross { display: none; }
    * { cursor: auto !important; }

    .hero { padding: 0 25px; }
    .hero-counts { gap: 30px; }

    .proj-section { padding: 55px 25px; }

    /* Browser: stack vertically on mobile */
    .browser { flex-direction: column; }
    .browser-tabs { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,153,190,0.15); }
    .browser-panel { min-height: auto; padding: 28px 24px; }

    /* Cards: single column */
    .proj-cards { grid-template-columns: 1fr; gap: 18px; }

    /* Tilt disabled on touch */
    .proj-card { touch-action: pan-y; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; letter-spacing: 2px; }
    .proj-section h2 { font-size: 1.65rem; }
    .hero-counts { gap: 25px; }
    .count-num { font-size: 1.7rem; }
    .panel-title { font-size: 1.3rem; }
}
