@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

/* ============================================================
   Reset & Custom Properties
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg:           #080810;
    --surface:      #0f0f1a;
    --card:         #13131f;
    --card-hover:   #1a1a2a;
    --border:       rgba(255,255,255,0.07);
    --border-hover: rgba(234,179,8,0.35);

    --accent:       #eab308;
    --accent-dark:  #ca8a04;
    --accent-light: #facc15;
    --cyan:         #fbbf24;
    --green:        #22c55e;
    --emerald:      #10b981;

    --text:         #f1f5f9;
    --text-muted:   #94a3b8;
    --text-faint:   #475569;

    --radius-sm:    8px;
    --radius:       16px;
    --radius-lg:    24px;
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================================
   Utilities
   ============================================================ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.inline-link {
    display: inline-block;
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: color 0.2s var(--ease);
}

.inline-link:hover { color: var(--cyan); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(234,179,8,0.35), 0 0 0 1px rgba(234,179,8,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(234,179,8,0.5), 0 0 0 1px rgba(234,179,8,0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(234,179,8,0.4);
    color: var(--accent-light);
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-icon { font-style: normal; }

/* ============================================================
   Navigation
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    transition: all 0.3s var(--ease);
}

#navbar.scrolled {
    background: rgba(8,8,16,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2.5rem;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Syne', system-ui, sans-serif;
    color: var(--text);
    letter-spacing: 0.01em;
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Syne', system-ui, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s var(--ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Nav socials */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.nav-social-link:hover {
    background: rgba(234,179,8,0.12);
    border-color: rgba(234,179,8,0.4);
    color: var(--accent-light);
}

.discord-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--accent);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: all 0.2s var(--ease);
}

.discord-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hero socials */
.hero-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.hero-social:hover {
    background: rgba(234,179,8,0.1);
    border-color: rgba(234,179,8,0.4);
    color: var(--accent-light);
}

/* Footer socials */
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-faint);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s var(--ease);
    background: none;
    border: none;
    cursor: default;
    font-family: inherit;
}

a.footer-social:hover { color: var(--accent-light); cursor: pointer; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.hero-glow-1 {
    width: 600px;
    height: 400px;
    background: rgba(234,179,8,0.12);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: glow-pulse 6s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 300px;
    background: rgba(234,179,8,0.07);
    bottom: 15%;
    right: 10%;
    animation: glow-pulse 8s ease-in-out 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.1); }
}

.hero-glow-2 { transform: none; }
@keyframes glow-pulse-2 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    background: rgba(234,179,8,0.1);
    border: 1px solid rgba(234,179,8,0.2);
    border-radius: 50px;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.1s both;
}

.hero-name {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.3s both;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.5s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.7s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 0.9s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: fadeUp 0.7s var(--ease) 1.4s both;
}

.scroll-indicator span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
}

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

@keyframes scroll-line {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 0.4; }
}

/* ============================================================
   About
   ============================================================ */
#about {
    padding: 7rem 0;
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.skills-col { padding-top: 0.25rem; }

.skills-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 1rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-chip {
    padding: 0.45rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s var(--ease);
    cursor: default;
}

.skill-chip:hover {
    border-color: rgba(234,179,8,0.4);
    color: var(--accent-light);
    background: rgba(234,179,8,0.06);
}

/* ============================================================
   Work / Projects
   ============================================================ */
#work {
    padding: 7rem 0;
    background: var(--bg);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.project-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.project-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(234,179,8,0.1);
    transform: translateY(-6px);
}

/* Project Previews */
.project-preview {
    display: block;
    height: 220px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.preview-chrome {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.preview-chrome span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.preview-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
    transition: transform 0.3s var(--ease);
}

.project-card:hover .preview-logo {
    transform: translate(-50%, -50%) translateY(-14px);
}

.logo-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.logo-text {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.85);
}

.preview-ui-lines {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.preview-ui-lines span {
    height: 5px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: block;
}

.preview-hover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    z-index: 3;
}

.project-card:hover .preview-hover-overlay {
    opacity: 1;
}

.preview-hover-overlay span {
    background: #fff;
    color: var(--bg);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
}

.preview-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s var(--ease);
}

.project-card:hover .preview-img {
    transform: scale(1.04);
}

/* Project card body */
.project-body {
    padding: 1.6rem;
}

.project-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-faint);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.project-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    letter-spacing: -0.01em;
}

.project-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.project-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-light);
    background: rgba(234,179,8,0.1);
    border: 1px solid rgba(234,179,8,0.18);
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
}

.project-url {
    display: inline-block;
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s var(--ease);
}

.project-url:hover { color: #fff; }

.exturno-preview {
    background: radial-gradient(ellipse at center, #0d1f1a 0%, #080f0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.exturno-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 0px rgba(74, 222, 128, 0.4);
    transition: box-shadow 0.35s ease;
}

.exturno-preview:hover::after {
    box-shadow: inset 0 0 0 2px rgba(74, 222, 128, 0.5);
}

.exturno-img {
    width: 55%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(74, 222, 128, 0.25));
    transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.exturno-preview:hover .exturno-img {
    transform: scale(1.06);
    filter: drop-shadow(0 0 40px rgba(74, 222, 128, 0.55));
}

.exturno-hover-overlay {
    background: linear-gradient(to top, rgba(5, 20, 15, 0.92) 0%, transparent 100%);
}

/* ── Launch Overlay ── */
.launch-overlay {
    position: fixed;
    inset: 0;
    background: #050f0c;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.launch-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.launch-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.35s ease 0.15s, transform 0.45s cubic-bezier(0.34,1.56,0.64,1) 0.15s;
}

.launch-overlay.active .launch-overlay-inner {
    opacity: 1;
    transform: scale(1);
}

.launch-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    animation: none;
}

.launch-overlay.active .launch-logo {
    animation: launchPulse 0.8s ease 0.2s infinite alternate;
}

@keyframes launchPulse {
    from { filter: drop-shadow(0 0 16px rgba(74, 222, 128, 0.4)); }
    to   { filter: drop-shadow(0 0 40px rgba(74, 222, 128, 0.85)); }
}

.launch-label {
    font-size: 0.85rem;
    color: rgba(74, 222, 128, 0.7);
    letter-spacing: 0.08em;
    font-weight: 500;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.4);
    color: var(--accent-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

.coming-soon-label {
    color: var(--text-faint);
    font-size: 0.85rem;
    cursor: default;
}

/* ============================================================
   Contact
   ============================================================ */
#contact {
    padding: 7rem 0;
    background: var(--surface);
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    width: 500px;
    height: 300px;
    background: rgba(234,179,8,0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    pointer-events: none;
}

.contact-card .section-label,
.contact-card .section-title {
    position: relative;
    z-index: 1;
}

.contact-card .section-label {
    display: flex;
    justify-content: center;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.contact-card .btn {
    position: relative;
    z-index: 1;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 2rem 2.5rem;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-copy {
    color: var(--text-faint);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-faint);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s var(--ease);
}

.footer-links a:hover { color: var(--text-muted); }

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 1rem 1.5rem;
    }

    #navbar.scrolled {
        padding: 0.875rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(8,8,16,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s var(--ease);
        z-index: 999;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    #hero {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-stats {
        gap: 1.25rem;
    }

    .stat-num { font-size: 1.3rem; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    #about, #work, #contact { padding: 5rem 0; }

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

    .contact-card {
        padding: 2.5rem 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .section-title { margin-bottom: 2rem; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; max-width: 280px; }
    .hero-stats { flex-wrap: wrap; gap: 1rem; }
    .stat-divider { display: none; }
}
