* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar - Webkit (Chrome, Safari, Edge, Brave) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
    border-left: 1px solid var(--border);
}

::-webkit-scrollbar-thumb {
    background: rgba(26, 26, 26, 0.25);
    border-radius: 100px;
    border: 2px solid var(--cream);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(26, 26, 26, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: var(--accent);
}

::-webkit-scrollbar-corner {
    background: var(--cream);
}

/* Custom Scrollbar - Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 26, 26, 0.25) var(--cream);
}

/* Selection Color */
::selection {
    background: var(--accent);
    color: var(--cream);
}

::-moz-selection {
    background: var(--accent);
    color: var(--cream);
}

:root {
    --cream: #fff6e0;
    --cream-dark: #f5ebd0;
    --cream-darker: #e8ddc0;
    --dark: #1a1a1a;
    --dark-soft: #2a2a2a;
    --gray: #6b6b6b;
    --gray-light: #999;
    --accent: #ff5c39;
    --accent-soft: #ffe4dc;
    --border: rgba(26, 26, 26, 0.1);
    --border-strong: rgba(26, 26, 26, 0.2);
}

/* Custom Cursor */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    will-change: transform;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: difference;
    transition: opacity 0.3s ease;
}

.cursor-ring.hover {
    width: 70px;
    height: 70px;
    border-color: rgba(255, 92, 57, 0.8);
    background: rgba(255, 92, 57, 0.05);
    mix-blend-mode: normal;
}

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-ring,
    .cursor-dot {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Noise Texture */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
    padding: 30px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(255, 246, 224, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-strong);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    pointer-events: auto;
}

.nav-mark {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--dark);
    text-decoration: none;
    text-transform: lowercase;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.navbar.scrolled .nav-mark {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-menu {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    align-items: center;
    margin-left: auto;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    padding: 4px 0;
    position: relative;
    transition: opacity 0.2s ease;
    opacity: 0.65;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-menu a.active {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    pointer-events: auto;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 30px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -180px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-center {
    text-align: center;
    z-index: 3;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(70px, 11vw, 180px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.85;
    color: var(--dark);
    margin: 0;
    will-change: filter, opacity, transform;
    transition: filter 0.1s linear, opacity 0.1s linear;
}

.hero-tagline {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    font-weight: 400;
}

.hero-scroll {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gray), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--dark);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(400%); }
}

.hero-footer {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hf-left, .hf-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hf-right {
    text-align: right;
}

.hf-label {
    color: var(--gray);
}

.hf-value {
    color: var(--dark);
    font-weight: 500;
}

/* Marquee */
.marquee {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 55px 0;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(48px, 7vw, 100px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--dark);
    line-height: 1;
    will-change: transform;
}

.marquee-track .sep {
    color: var(--gray);
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.6;
    flex-shrink: 0;
    transition: transform 0.6s ease;
}

.marquee:hover .marquee-track .sep {
    transform: rotate(180deg);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Experience Timeline */
.experience {
    padding: 130px 0 100px;
    position: relative;
    z-index: 2;
}

.exp-header {
    margin-bottom: 50px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.exp-num {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.exp-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(20px, 3.4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--dark);
    display: flex;
    flex-wrap: wrap;
    gap: 0.28em;
    white-space: nowrap;
}

.exp-title .word {
    display: inline-flex;
}

.exp-title .char {
    display: inline-block;
    opacity: 0;
    filter: blur(14px);
    transform: translateY(0.6em);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, filter, transform;
}

.exp-title.revealed .char {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.timeline {
    position: relative;
    padding-left: 12px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 4px;
    width: 1px;
    background: var(--border-strong);
}

.timeline-item {
    display: grid;
    grid-template-columns: 20px 120px 1fr;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
}

.tl-marker {
    width: 9px;
    height: 9px;
    background: var(--dark);
    border-radius: 50%;
    margin-top: 8px;
    margin-left: -8px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.tl-marker.hollow {
    background: var(--cream);
    border: 2px solid var(--dark);
}

.timeline-item:hover .tl-marker {
    transform: scale(1.3);
}

.tl-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
    line-height: 1.5;
    padding-top: 4px;
}

.tl-content h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 10px;
}

.tl-role {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
}

.tl-content p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--dark-soft);
    max-width: 480px;
}

/* Repositories */
.repositories {
    padding: 30px 0 100px;
    position: relative;
    z-index: 2;
}

.repositories .exp-header {
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.repo-list {
    display: flex;
    flex-direction: column;
}

.repo-item {
    display: grid;
    grid-template-columns: 100px 1fr 30px;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.repo-item:first-child {
    border-top: 1px solid var(--border);
}

.repo-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--dark);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.repo-item:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.repo-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
    padding-top: 6px;
}

.repo-content h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--dark);
    margin-bottom: 8px;
    display: inline-block;
    position: relative;
}

.repo-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.repo-item:hover .repo-content h3::after {
    transform: scaleX(1);
}

.repo-content p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--dark-soft);
    max-width: 640px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.repo-emoji {
    flex-shrink: 0;
    font-size: 14px;
}

.repo-arrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    color: var(--gray);
    padding-top: 2px;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1),
                color 0.4s ease;
    text-align: right;
}

.repo-item:hover .repo-arrow {
    color: var(--dark);
    transform: translateX(8px);
}

/* Stack */
.stack {
    padding: 30px 0 100px;
    position: relative;
    z-index: 2;
}

.stack .exp-header {
    margin-bottom: 40px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 12px;
}

.stack-item {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
    aspect-ratio: 1;
}

.stack-item:hover {
    border-color: var(--dark);
    transform: translateY(-4px);
}

.stack-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-icon .icon-default {
    opacity: 0.75;
}

.stack-icon .icon-hover {
    opacity: 0;
}

.stack-item:hover .stack-icon .icon-default {
    opacity: 0;
}

.stack-item:hover .stack-icon .icon-hover {
    opacity: 1;
}

.stack-item:hover .stack-icon {
    transform: scale(1.15);
}

.stack-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--gray);
    text-transform: uppercase;
    line-height: 1.3;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stack-item:hover .stack-label {
    color: var(--dark);
}

/* Elsewhere / Social Links */
.elsewhere {
    padding: 30px 0 100px;
    position: relative;
    z-index: 2;
}

.elsewhere .exp-header {
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.social-list {
    display: flex;
    flex-direction: column;
}

.social-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.social-item:first-child {
    border-top: 1px solid var(--border);
}

.social-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--dark);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.social-item:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.social-name {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--dark);
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left center;
    display: inline-block;
}

.social-item:hover .social-name {
    color: var(--accent);
    transform: translateX(6px);
}

.social-handle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--gray);
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-item:hover .social-handle {
    color: var(--dark);
}

.social-arrow {
    font-size: 14px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-item:hover .social-arrow {
    transform: translate(6px, -6px);
}

/* Contact Minimal */
.contact-minimal {
    padding: 30px 0 100px;
    position: relative;
    z-index: 2;
}

.contact-minimal .exp-header {
    margin-bottom: 50px;
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.minimal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.minimal-field label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
}

.minimal-field input,
.minimal-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-strong);
    padding: 8px 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.4s ease;
    resize: none;
    width: 100%;
}

.minimal-field textarea {
    min-height: 80px;
    padding-top: 12px;
}

.minimal-field input:focus,
.minimal-field textarea:focus {
    border-bottom-color: var(--dark);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-top: 24px;
    flex-wrap: wrap;
}

.form-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    max-width: 480px;
}

.form-note a {
    color: var(--dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease;
}

.form-note a:hover {
    color: var(--accent);
}

.minimal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark);
    color: var(--cream);
    border: none;
    padding: 18px 32px;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.15em;
    font-weight: 500;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-transform: uppercase;
    flex-shrink: 0;
}

.minimal-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 14px;
}

.minimal-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.minimal-btn.sent {
    background: #22c55e;
}

/* Footer */
.footer {
    background: var(--cream-dark);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--gray);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 968px) {
    .navbar {
        padding: 20px;
    }

    .navbar.scrolled {
        padding: 15px 20px;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.7rem;
    }

    .hero-status {
        transform: translate(-50%, -140px);
        font-size: 10px;
    }

    .hero-footer {
        font-size: 10px;
    }

    .timeline-item {
        grid-template-columns: 20px 1fr;
        gap: 20px;
    }

    .tl-date {
        grid-column: 2;
        margin-bottom: -6px;
    }

    .tl-content {
        grid-column: 2;
    }

    .exp-title {
        font-size: clamp(20px, 6vw, 36px);
    }

    .tl-content h3 {
        font-size: clamp(20px, 5vw, 28px);
    }

    .repo-item {
        grid-template-columns: 60px 1fr 24px;
        gap: 20px;
        padding: 20px 0;
    }

    .repo-content h3 {
        font-size: clamp(16px, 4.5vw, 20px);
    }

    .repo-content p {
        font-size: 13px;
    }

    .stack-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .stack-icon {
        width: 30px;
        height: 30px;
    }

    .stack-label {
        font-size: 8px;
    }

    .social-name {
        font-size: clamp(20px, 5vw, 28px);
    }

    .social-handle {
        font-size: 11px;
    }

    .social-item {
        padding: 24px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .minimal-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        font-size: 10px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 120px 20px 40px;
    }

    .hero-status {
        transform: translate(-50%, -110px);
    }

    .nav-menu {
        display: none;
    }

    .nav-mark {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .stack-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 9px;
    }
}