@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Space+Mono:wght@400;700&display=swap');

/* ==============================
   CSS VARIABLES
============================== */
:root {
    --bg: #070B14;
    --bg2: #0D1220;
    --surface: #111827;
    --surface2: #1a2234;
    --accent: #E8FF57;
    --accent2: #57FFCC;
    --text: #F0F4FF;
    --text-muted: #8B96B0;
    --border: rgba(255,255,255,0.07);
    --font-display: 'Bebas Neue', cursive;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==============================
   NOISE OVERLAY
============================== */
.noise {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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;
}

/* ==============================
   CURSOR
============================== */
.cursor-dot, .cursor-ring {
    position: fixed; pointer-events: none;
    border-radius: 50%; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent); top: 0; left: 0; }
.cursor-ring { width: 30px; height: 30px; border: 1.5px solid rgba(232,255,87,0.4); top: 0; left: 0; transition: top 0.1s, left 0.1s, width 0.3s, height 0.3s; }
body:has(a:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--accent); }

/* ==============================
   HEADER
============================== */
header {
    position: fixed; top: 0; width: 100%; z-index: 900;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}
header.scrolled { background: rgba(7, 11, 20, 0.97); }

.nav {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-agency {
    font-family: var(--font-display);
    font-size: 1.6rem; letter-spacing: 2px;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(232,255,87,0.4);
}
.logo-divider { color: var(--border); font-size: 1.2rem; }
.logo-name { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0.5px; }

.nav-links { display: flex; list-style: none; gap: 0.3rem; }
.nav-links a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.9rem; font-weight: 500;
    padding: 0.5rem 1rem; border-radius: 6px;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.nav-cta {
    background: var(--accent); color: #000;
    font-weight: 600; letter-spacing: 0.5px;
}
.nav-links a.nav-cta:hover { background: #d4eb3a; transform: translateY(-2px); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 0.5rem;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s;
}

/* ==============================
   MOBILE MENU
============================== */
.mobile-menu {
    display: none; position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--bg2); z-index: 899;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a {
    display: block; padding: 1rem 0;
    color: var(--text); text-decoration: none;
    font-size: 1.1rem; font-weight: 500;
    transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--accent); }

/* ==============================
   HERO
============================== */
.hero {
    min-height: 100vh;
    background: var(--bg);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, rgba(232,255,87,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(87,255,204,0.04) 0%, transparent 65%);
    pointer-events: none;
}

.hero-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(120px, 20vw, 280px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 8px;
    user-select: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(232,255,87,0.08);
    border: 1px solid rgba(232,255,87,0.2);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.78rem; letter-spacing: 0.8px;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 10vw, 130px);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.hero-title .title-line { display: block; color: var(--text); }
.hero-title .accent { color: var(--accent); }

.hero-sub {
    font-size: 1.1rem; color: var(--text-muted);
    margin-bottom: 2.5rem; font-weight: 300;
    font-family: var(--font-mono); letter-spacing: 0.3px;
}
.hero-sub strong { color: var(--accent2); font-weight: 600; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
    display: flex; align-items: center; gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-display);
    font-size: 2rem; color: var(--accent); letter-spacing: 1px;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-mono); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.scroll-indicator {
    position: absolute; bottom: 2rem; left: 24px;
    display: flex; align-items: center; gap: 1rem;
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--text-muted); letter-spacing: 2px;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } }

/* ==============================
   BUTTONS
============================== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.95rem; padding: 0.85rem 2rem;
    border-radius: 8px; text-decoration: none;
    transition: all 0.25s; letter-spacing: 0.3px;
    cursor: pointer; border: none;
}
.btn-primary {
    background: var(--accent); color: #000;
}
.btn-primary:hover { background: #d4eb3a; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(232,255,87,0.25); }
.btn-ghost {
    background: transparent; color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: var(--surface); }
.btn-white {
    background: white; color: #000; font-weight: 700;
}
.btn-white:hover { background: var(--accent); transform: translateY(-3px); }
.mt-btn { margin-top: 2rem; }

/* ==============================
   SECTIONS
============================== */
.section { padding: 100px 0; }
.section-label {
    font-family: var(--font-mono); font-size: 0.78rem;
    color: var(--accent2); letter-spacing: 1px;
    margin-bottom: 1.2rem; text-transform: uppercase;
}
.section-label.light { color: rgba(232,255,87,0.7); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1; letter-spacing: 0.5px;
    margin-bottom: 3rem; color: var(--text);
}
.section-title em { color: var(--accent); font-style: normal; }

/* ==============================
   ABOUT
============================== */
.about-section { background: var(--bg); }

.about-grid {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 5rem; align-items: center;
}

.about-img-wrap {
    position: relative; width: 100%; max-width: 360px;
    margin: 0 auto;
}
.about-img-wrap img, .img-placeholder {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.img-placeholder {
    background: var(--surface2);
    display: none;
    align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 4rem; color: var(--accent);
    border-radius: 16px;
}

.img-frame {
    position: absolute; inset: -8px;
    border: 1px solid rgba(232,255,87,0.2);
    border-radius: 20px; pointer-events: none;
}
.img-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--accent); color: #000;
    padding: 0.8rem 1.2rem; border-radius: 10px;
    font-weight: 700; font-size: 0.9rem;
    display: flex; flex-direction: column;
    line-height: 1.3;
}
.badge-sub { font-size: 0.72rem; font-weight: 500; opacity: 0.7; }

.about-desc {
    font-size: 1.05rem; color: var(--text-muted);
    margin-bottom: 1.2rem; line-height: 1.75;
}
.about-desc strong { color: var(--accent); font-weight: 600; }

.contact-chips { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.chip {
    display: inline-flex; align-items: center; gap: 0.7rem;
    padding: 0.65rem 1rem; border-radius: 8px;
    background: var(--surface); border: 1px solid var(--border);
    font-size: 0.88rem; color: var(--text-muted);
    text-decoration: none; transition: all 0.25s;
    max-width: fit-content;
}
.chip:hover { border-color: rgba(232,255,87,0.3); color: var(--text); }
.chip-icon { font-size: 1rem; }

/* ==============================
   SKILLS
============================== */
.skills-section { background: var(--bg2); }

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.skill-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.skill-item::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s;
}
.skill-item:hover::before { transform: scaleX(1); }
.skill-item:hover { transform: translateY(-6px); border-color: rgba(232,255,87,0.2); }

.skill-icon { color: var(--accent); margin-bottom: 1.2rem; }
.skill-icon svg { width: 40px; height: 40px; }
.skill-item h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; letter-spacing: 0.5px;
    color: var(--text); margin-bottom: 0.5rem;
}
.skill-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }

.skill-bar {
    height: 3px; background: var(--surface2);
    border-radius: 3px; overflow: hidden;
}
.skill-fill {
    height: 100%; width: var(--w, 50%);
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 3px;
    animation: fillBar 1.5s ease forwards;
    transform-origin: left;
}
@keyframes fillBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ==============================
   SKILL CATEGORIES
============================== */
.skill-category { margin-bottom: 3rem; }
.skill-category:last-child { margin-bottom: 0; }

.skill-category-header {
    display: flex; align-items: center; gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.skill-cat-line { flex: 1; height: 1px; background: var(--border); }

.skill-cat-tag {
    font-family: var(--font-mono); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; white-space: nowrap;
    padding: 0.35rem 1rem; border-radius: 100px;
}
.skill-cat-tag.frontend {
    background: rgba(232,255,87,0.1); color: var(--accent);
    border: 1px solid rgba(232,255,87,0.25);
}
.skill-cat-tag.backend {
    background: rgba(87,255,204,0.1); color: var(--accent2);
    border: 1px solid rgba(87,255,204,0.25);
}
.skill-cat-tag.database {
    background: rgba(147,112,255,0.1); color: #b79fff;
    border: 1px solid rgba(147,112,255,0.25);
}

/* ==============================
   PROJECTS
============================== */
.projects-section { background: var(--bg); }

.projects-category-label { margin-bottom: 1.5rem; }
.cat-tag {
    font-family: var(--font-mono); font-size: 0.8rem;
    padding: 0.4rem 0.9rem; border-radius: 100px;
    letter-spacing: 0.5px;
}
.cat-tag.live { background: rgba(87,255,204,0.1); color: var(--accent2); border: 1px solid rgba(87,255,204,0.2); }
.cat-tag.personal { background: rgba(232,255,87,0.1); color: var(--accent); border: 1px solid rgba(232,255,87,0.2); }

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

.project-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2rem;
    transition: all 0.3s; display: flex;
    flex-direction: column; gap: 0.8rem;
    position: relative; overflow: hidden;
}
.project-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(232,255,87,0.03), transparent);
    opacity: 0; transition: opacity 0.3s;
    pointer-events: none;
}
.project-card:hover::after { opacity: 1; }
.project-card:hover { transform: translateY(-8px); border-color: rgba(232,255,87,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.client-card { border-color: rgba(87,255,204,0.1); }
.client-card:hover { border-color: rgba(87,255,204,0.3); }

.project-num {
    font-family: var(--font-display);
    font-size: 3.5rem; color: rgba(255,255,255,0.04);
    line-height: 1; margin-bottom: -0.5rem;
    position: absolute; top: 1.2rem; right: 1.5rem;
}

.project-meta { display: flex; align-items: center; gap: 0.8rem; }
.project-type { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.5px; }
.project-status {
    font-family: var(--font-mono); font-size: 0.7rem;
    padding: 0.2rem 0.7rem; border-radius: 100px;
    font-weight: 700; letter-spacing: 0.5px;
}
.project-status.live { background: rgba(87,255,204,0.1); color: var(--accent2); border: 1px solid rgba(87,255,204,0.3); }
.project-status.demo { background: rgba(232,255,87,0.1); color: var(--accent); border: 1px solid rgba(232,255,87,0.2); }

.project-title {
    font-family: var(--font-display);
    font-size: 1.6rem; letter-spacing: 0.5px;
    color: var(--text); line-height: 1.1;
}

.project-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; }

.tech-used { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tech-tag {
    font-family: var(--font-mono); font-size: 0.72rem;
    padding: 0.25rem 0.7rem; border-radius: 100px;
    background: var(--surface2); color: var(--text-muted);
    border: 1px solid var(--border);
}

.project-links { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: auto; padding-top: 0.5rem; position: relative; z-index: 2; }
.project-link-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; font-weight: 600; font-family: var(--font-body);
    padding: 0.5rem 1rem; border-radius: 6px;
    text-decoration: none; transition: all 0.25s;
    letter-spacing: 0.2px;
}
.project-link-btn.primary { background: var(--accent); color: #000; }
.project-link-btn.primary:hover { background: #d4eb3a; transform: translateY(-2px); }
.project-link-btn.ghost {
    background: transparent; color: var(--text-muted);
    border: 1px solid var(--border);
}
.project-link-btn.ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ==============================
   AGENCY BANNER
============================== */
.agency-banner {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
    position: relative; overflow: hidden;
}
.agency-banner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.agency-inner {
    display: grid; grid-template-columns: 1.5fr 1fr;
    gap: 4rem; align-items: center;
}

.agency-text h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1; margin-bottom: 1.5rem;
    color: var(--text);
}

.agency-text p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; }
.agency-text strong { color: var(--accent); }

.agency-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.agency-features li { display: flex; align-items: center; gap: 0.8rem; color: var(--text-muted); font-size: 0.92rem; }
.agency-features li span { color: var(--accent); font-weight: 700; }

.agency-logo-big {
    font-family: var(--font-display);
    font-size: clamp(60px, 9vw, 130px);
    color: transparent;
    -webkit-text-stroke: 2px rgba(232,255,87,0.2);
    text-align: center;
    letter-spacing: 8px;
    text-shadow: 0 0 80px rgba(232,255,87,0.05);
    user-select: none;
}

/* ==============================
   CONTACT
============================== */
.contact-section { background: var(--bg); }

.contact-intro {
    font-size: 1.05rem; color: var(--text-muted);
    margin-top: -1.5rem; margin-bottom: 3rem;
    max-width: 500px;
}

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

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 2.5rem 2rem;
    text-decoration: none; color: var(--text);
    transition: all 0.3s; display: flex;
    flex-direction: column; gap: 0.5rem;
}
.contact-card:hover { transform: translateY(-8px); border-color: rgba(232,255,87,0.3); background: var(--surface2); }
.contact-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-card-label { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent2); letter-spacing: 1px; text-transform: uppercase; }
.contact-card-value { font-size: 0.88rem; color: var(--text-muted); word-break: break-all; }
.contact-card-action { font-size: 0.85rem; color: var(--accent); font-weight: 600; margin-top: auto; padding-top: 1rem; }

/* ==============================
   EDUCATION
============================== */
.education-section { background: var(--bg2); }

.edu-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    background: var(--surface);
    border: 1px solid rgba(87,255,204,0.15);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.edu-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
}
.edu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(87,255,204,0.35);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.edu-left {
    display: flex;
    align-items: flex-start;
    padding-top: 0.3rem;
}
.edu-logo {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem; color: #000;
    font-weight: 900; letter-spacing: 1px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(87,255,204,0.25);
}

.edu-meta {
    display: flex; align-items: center;
    gap: 1rem; margin-bottom: 0.9rem;
    flex-wrap: wrap;
}
.edu-status {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(87,255,204,0.1);
    border: 1px solid rgba(87,255,204,0.25);
    color: var(--accent2);
    font-family: var(--font-mono); font-size: 0.74rem;
    padding: 0.3rem 0.85rem; border-radius: 100px;
    letter-spacing: 0.5px;
}
.edu-semester {
    font-family: var(--font-mono); font-size: 0.74rem;
    color: var(--accent); letter-spacing: 0.5px;
    background: rgba(232,255,87,0.08);
    border: 1px solid rgba(232,255,87,0.2);
    padding: 0.3rem 0.85rem; border-radius: 100px;
}

.edu-title {
    font-family: var(--font-display);
    font-size: 1.8rem; color: var(--text);
    letter-spacing: 0.5px; line-height: 1.1;
    margin-bottom: 0.35rem;
}
.edu-school {
    font-family: var(--font-mono);
    font-size: 0.82rem; color: var(--accent2);
    margin-bottom: 1rem; letter-spacing: 0.3px;
}
.edu-desc {
    font-size: 0.92rem; color: var(--text-muted);
    line-height: 1.7; margin-bottom: 1.2rem;
    max-width: 680px;
}
.edu-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.edu-tag {
    font-family: var(--font-mono); font-size: 0.74rem;
    padding: 0.28rem 0.8rem; border-radius: 100px;
    background: var(--surface2); color: var(--text-muted);
    border: 1px solid var(--border);
}

@media (max-width: 640px) {
    .edu-card { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ==============================
   FOOTER
============================== */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}
.footer-inner {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-mono); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ==============================
   ANIMATIONS
============================== */
.reveal-up {
    opacity: 0; transform: translateY(30px);
    animation: revealUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .skills-grid,
    .projects-grid,
    .projects-grid.featured { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap { max-width: 280px; }
    .agency-inner { grid-template-columns: 1fr; }
    .agency-logo-big { display: none; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
    .skills-grid,
    .projects-grid,
    .projects-grid.featured { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .stat-divider { width: 40px; height: 1px; }
    .hero-title { font-size: clamp(52px, 14vw, 80px); }
    .section-title { font-size: clamp(36px, 10vw, 52px); }
    .footer-inner { flex-direction: column; text-align: center; }
    .scroll-indicator { display: none; }
    .cursor-dot, .cursor-ring { display: none; }
}
