/* ==========================================================================
   PREMIUM GLOSSY SYSTEMS ENGINEER THEME
   ========================================================================== */
:root {
    --bg-dark: #050505;
    --bg-panel: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(153, 255, 0, 0.15);
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --accent: #99FF00; /* Neon Lime */
    --accent-glow: rgba(153, 255, 0, 0.4);
    --line: rgba(255, 255, 255, 0.05);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-ha: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--bg-dark); }
body {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.5;
    background-color: var(--bg-dark);
    overflow-x: hidden;
    cursor: none;
}

body.loading { overflow: hidden; }
.container-fluid { width: 100%; max-width: 1400px; padding: 0 40px; margin: 0 auto; }
a, button { cursor: none; }

/* ==========================================================================
   GLASSMORPHISM BASE CLASS
   ========================================================================== */
.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-panel:hover {
    border-color: var(--glass-highlight);
    box-shadow: 0 15px 40px 0 rgba(153, 255, 0, 0.08);
}

/* ==========================================================================
   TILT EFFECT
   ========================================================================== */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* ==========================================================================
   PAGE TRANSITION
   ========================================================================== */
.page-transition { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; }
.page-transition.loaded { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   GRAIN & CURSOR & TEXT-ROLL & SHINY CTA
   ========================================================================== */
.grain {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9998; 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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cur, .cur-dot { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cur { width: 34px; height: 34px; border: 1.5px solid var(--accent); transform: translate(-50%, -50%); transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.3s; }
.cur-dot { width: 5px; height: 5px; background: var(--accent); transform: translate(-50%, -50%); }
.cur.grow { width: 64px; height: 64px; background: var(--accent-glow); border-color: transparent; mix-blend-mode: normal; }

.text-roll-hover { display: inline-flex; overflow: hidden; position: relative; text-decoration: none; color: inherit; }
.text-roll-row { display: flex; transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1); }
.text-roll-letter { display: inline-block; transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1); transition-delay: calc(var(--i) * 0.02s); }
.text-roll-clone { position: absolute; top: 100%; left: 0; }
.text-roll-hover:hover .text-roll-row { transform: translateY(-100%); }

.shiny-cta {
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase;
    font-weight: bold; background: var(--text-main); color: #000; border-radius: 50px;
    overflow: hidden; text-decoration: none; border: none; transition: transform 0.3s, box-shadow 0.3s;
}
.shiny-cta span { position: relative; z-index: 2; }
.shiny-cta::before {
    content: ''; position: absolute; top: 0; left: -150%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.9), transparent);
    transform: skewX(-20deg); transition: 0s; z-index: 1;
}
.shiny-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(153, 255, 0, 0.2); color: #000; }
.shiny-cta:hover::before { left: 200%; transition: 0.7s ease; }

/* ==========================================================================
   AUTO PRELOADER
   ========================================================================== */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--bg-dark); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.gears-wrapper { position: relative; width: 466px; height: 466px; display: flex; justify-content: center; align-items: center; }
.gear-container { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
.gear { position: absolute; width: 150px; height: 150px; opacity: 0.5; color: var(--accent); }
.big-gear { left: -20px; top: -20px; animation: spin 8s linear infinite; }
.small-gear { right: -20px; bottom: -20px; width: 100px; height: 100px; animation: spin-reverse 5s linear infinite; }
.load-line-btn { position: relative; width: 250px; height: 250px; display: flex; justify-content: center; align-items: center; flex-direction: column; }
.load-circle { position: absolute; width: 100%; height: 100%; animation: spin 20s linear infinite; color: var(--text-muted); }
.loading-text { color: var(--accent); font-family: var(--font-ha); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.2em; animation: pulse 1.5s infinite; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header { position: fixed; top: 0; left: 0; width: 100%; padding: 30px 0; z-index: 100; mix-blend-mode: difference; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.header-menu ul { list-style: none; display: flex; gap: 40px; align-items: center; }
.header-menu a { color: var(--text-main); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none; }

/* Mobile Menu Styles */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: none; z-index: 1001; }
.hamburger span { width: 30px; height: 2px; background: var(--text-main); transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--accent); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--accent); }

.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(5,5,5,0.95); backdrop-filter: blur(20px);
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.4s ease; z-index: 1000;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: 30px; text-align: center; transform: translateY(30px); transition: 0.4s ease; }
.mobile-menu.active .mobile-nav { transform: translateY(0); }
.mobile-link { font-family: var(--font-heading); font-size: 2rem; color: var(--text-main); text-decoration: none; text-transform: uppercase; letter-spacing: 2px; }
.text-accent { color: var(--accent); font-family: var(--font-serif); font-style: italic; }

@media(max-width: 768px) {
    #desktop-menu { display: none; }
    .hamburger { display: flex; }
}

/* ==========================================================================
   HERO WITH CYBER GRID
   ========================================================================== */
.main-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }

/* Cyber Grid CSS Background */
.cyber-grid-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: -1; perspective: 1000px;
}
.cyber-grid {
    position: absolute;
    width: 200%; height: 200%; left: -50%; top: -20%;
    background-image: 
        linear-gradient(rgba(153, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(153, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: rotateX(60deg) translateY(0);
    animation: gridMove 15s linear infinite;
    transform-style: preserve-3d;
}
.cyber-grid-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 70%);
}
@keyframes gridMove {
    0% { transform: rotateX(60deg) translateY(0); }
    100% { transform: rotateX(60deg) translateY(60px); }
}

.hero-content { display: flex; flex-direction: column; justify-content: center; min-height: 100vh; padding-top: 100px; padding-bottom: 60px; position: relative; z-index: 10; }
.hero-eyebrow { display: flex; align-items: center; gap: 15px; font-family: var(--font-ha); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 30px; }
.eyebrow-bar { width: 40px; height: 1px; background: var(--accent); }
.eyebrow-tag { color: var(--accent); }

.hero-title { font-family: var(--font-heading); font-size: clamp(40px, 7vw, 110px); font-weight: 700; line-height: 1.1; margin-bottom: 30px; letter-spacing: -0.02em; }
.hero-word-em { font-family: var(--font-serif); font-style: italic; position: relative; display: inline-block; color: var(--accent); }
.hero-word-underline { position: absolute; bottom: 0px; left: 0; width: 100%; height: auto; color: var(--accent); }

.hero-sub { color: var(--text-muted); font-size: clamp(16px, 1.5vw, 22px); max-width: 600px; line-height: 1.6; margin-bottom: 50px; }

.hero-actions { display: flex; align-items: center; gap: 30px; margin-bottom: 80px; }
.btn-secondary { display: flex; align-items: center; gap: 10px; color: var(--text-main); text-decoration: none; font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase; font-weight: 600; transition: color 0.3s; border: none; background: transparent; }
.btn-secondary:hover { color: var(--accent); }
.btn-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }

.hero-stats { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-top: auto; padding-top: 40px; border-top: 1px solid var(--line); }
.hero-stat { display: flex; align-items: center; gap: 15px; }
.hero-stat-num { font-family: var(--font-serif); font-size: 2rem; color: var(--accent); }
.hero-stat-label { font-family: var(--font-ha); font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; max-width: 100px; line-height: 1.2; }
.hero-stat-sep { width: 1px; height: 40px; background: var(--line); }

/* ==========================================================================
   TERMINAL (Glassmorphic)
   ========================================================================== */
.term-sec { padding: 60px 0; }
.term { max-width: 900px; margin: 0 auto; border-radius: 14px; overflow: hidden; }
.term-top { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: rgba(0,0,0,0.4); border-bottom: 1px solid var(--glass-border); }
.term-top .d { width: 12px; height: 12px; border-radius: 50%; }
.d.r { background: #ff5f56; } .d.y { background: #ffbd2e; } .d.g { background: #27c93f; }
.term-top .ttl { margin-left: 14px; font-family: var(--font-ha); font-size: 12.5px; color: var(--text-muted); }
.term-body { padding: 24px 22px; font-family: var(--font-ha); font-size: 14px; line-height: 1.9; min-height: 230px; }
.term-body .pl { color: var(--accent); text-shadow: 0 0 5px var(--accent-glow); }
.term-body .cmd { color: var(--text-main); }
.term-body .out { color: var(--text-muted); }
.cursor-blink { display: inline-block; width: 9px; height: 17px; background: var(--accent); vertical-align: -3px; animation: bk 1s steps(2) infinite; box-shadow: 0 0 8px var(--accent-glow); }
@keyframes bk { 50% { opacity: 0; } }

.term-input-line { display: flex; align-items: center; margin-top: 5px; }
.term-input-line input { background: transparent; border: none; color: var(--text-main); font-family: var(--font-ha); font-size: 14px; outline: none; flex-grow: 1; margin-left: 8px; caret-color: var(--accent); }

/* ==========================================================================
   STATS (Glassmorphic)
   ========================================================================== */
.stats-sec { padding: 60px 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { border-radius: 16px; padding: 30px 24px; text-align: center; position: relative; overflow: hidden; }
.stat::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); transform: scaleX(0); transition: 0.4s; }
.stat:hover::before { transform: scaleX(1); }
.stat .num { font-family: var(--font-serif); font-size: 46px; font-weight: 700; color: var(--accent); line-height: 1; text-shadow: 0 0 15px var(--accent-glow); }
.stat .lab { color: var(--text-muted); font-size: 13.5px; margin-top: 8px; letter-spacing: 0.3px; text-transform: uppercase; font-family: var(--font-ha); }
@media(max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.main-about { padding: 120px 0; }
.eyebrow { font-family: var(--font-ha); font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.sec-title { font-family: var(--font-serif); font-size: clamp(30px, 5vw, 52px); font-weight: 700; line-height: 1.05; margin-bottom: 60px; }
.sec-title em { font-style: italic; color: var(--text-main); position: relative; }
.sec-title em::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 10px; background: var(--accent-glow); z-index: -1; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 18px; }
.about-text b { color: var(--text-main); font-weight: 600; }
.accent-text { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }

.facts { border-radius: 16px; padding: 22px; }
.fact { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--line); }
.fact:last-child { border-bottom: none; }
.fact .k { font-family: var(--font-ha); font-size: 11.5px; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
.fact .v { font-size: 15px; font-weight: 500; }

.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.idn { border-radius: 20px; padding: 38px; position: relative; overflow: hidden; }
.idn .ic { font-family: var(--font-ha); font-size: 13px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }
.idn h3 { font-family: var(--font-serif); font-size: 30px; font-weight: 700; margin: 14px 0 12px; }
.idn p { color: var(--text-muted); font-size: 15px; }
.idn .glow { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(153, 255, 0, 0.16), transparent 70%); right: -60px; top: -60px; transition: 0.5s; pointer-events: none; }
.idn:hover .glow { transform: scale(1.4); }

@media(max-width: 880px) { .about-grid, .dual { grid-template-columns: 1fr; gap: 36px; } }

/* ==========================================================================
   SKILLS
   ========================================================================== */
.skills-sec { padding: 120px 0; position: relative; }
.skills-sec::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at right, rgba(153, 255, 0, 0.05), transparent 50%); z-index: -1; pointer-events: none; }
.lead { color: var(--text-muted); max-width: 620px; font-size: 1.1rem; margin-bottom: 50px; }

.skill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 60px; padding: 50px; border-radius: 20px; }
.skill { margin-bottom: 25px; }
.skill .row { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 12px; }
.skill .row b { font-weight: 500; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; }
.skill .row .pc { color: var(--accent); font-family: var(--font-ha); font-size: 13px; text-shadow: 0 0 5px var(--accent-glow); }
.skill .track { height: 4px; background: rgba(0,0,0,0.5); border-radius: 6px; overflow: hidden; }
.skill .fill { height: 100%; width: 0; background: var(--accent); border-radius: 6px; transition: width 1.3s cubic-bezier(.2,.8,.2,1); box-shadow: 0 0 10px var(--accent-glow); }

.chips { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 46px; }
.chip { font-family: var(--font-ha); font-size: 13px; padding: 10px 20px; border: 1px solid var(--glass-border); background: var(--bg-panel); backdrop-filter: blur(10px); border-radius: 40px; color: var(--text-muted); transition: 0.3s; }
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); box-shadow: 0 5px 15px var(--accent-glow); }
@media(max-width: 768px) { .skill-grid { grid-template-columns: 1fr; padding: 30px; } }

/* ==========================================================================
   BENTO PROJECTS (Glass Cards)
   ========================================================================== */
.wibify-cases { padding: 120px 0; position: relative; }
.cases-titles { margin-bottom: 80px; }
.cases-titles h2 { font-size: clamp(30px, 5vw, 60px); text-transform: uppercase; line-height: 1; margin-top: 10px; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}
.bento-card {
    display: flex; flex-direction: column;
    border-radius: 20px; overflow: hidden;
    cursor: pointer; text-decoration: none;
    padding: 0;
}
.bento-img-wrapper {
    width: 100%; height: 250px; overflow: hidden; position: relative;
    border-bottom: 1px solid var(--glass-border);
}
.bento-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%) contrast(1.2);
}
.bento-card:hover .bento-img-wrapper img {
    transform: scale(1.05); filter: grayscale(0%);
}
.bento-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.bento-tags { font-family: var(--font-ha); font-size: 0.8rem; color: var(--accent); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.05em; }
.bento-title { font-family: var(--font-serif); font-size: 28px; margin-bottom: 15px; font-weight: 400; }
.bento-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
@media(max-width: 768px) { .bento-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   MODAL
   ========================================================================== */
.project-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10001; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.project-modal.active { opacity: 1; visibility: visible; }
.modal-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(15px); }
.modal-inner { position: relative; width: 90%; max-width: 900px; padding: 50px; max-height: 90vh; overflow-y: auto; z-index: 1; transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 20px; }
.project-modal.active .modal-inner { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: var(--text-muted); font-size: 2.5rem; transition: color 0.3s; }
.modal-close:hover { color: var(--accent); text-shadow: 0 0 10px var(--accent-glow); }
.modal-header h2 { font-size: clamp(28px, 4vw, 48px); text-transform: uppercase; margin-bottom: 15px; }
.modal-tags { display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.modal-tags span { font-family: var(--font-ha); font-size: 0.8rem; padding: 5px 15px; background: rgba(153, 255, 0, 0.1); border: 1px solid var(--accent); color: var(--accent); border-radius: 20px; }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.modal-col h3, .modal-tech h3 { font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; color: var(--accent); margin-bottom: 15px; }
.modal-col p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }
.modal-tech { margin-bottom: 40px; }
.modal-tech .tech-grid { display: flex; gap: 15px; flex-wrap: wrap; }
.modal-tech .tech-grid span { font-family: var(--font-ha); border: 1px solid var(--glass-border); background: rgba(0,0,0,0.3); padding: 8px 18px; border-radius: 8px; font-size: 0.9rem; color: var(--text-main); }
@media (max-width: 768px) { .modal-body { grid-template-columns: 1fr; } .modal-inner { padding: 30px; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { position: relative; padding: 150px 0 50px 0; overflow: hidden; border-top: 1px solid var(--line); }
.footer-glass-bg { position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 80%; height: 300px; background: radial-gradient(ellipse, rgba(153, 255, 0, 0.08), transparent 60%); filter: blur(50px); z-index: -2; pointer-events: none; }
.footer-form h2 { font-size: clamp(40px, 6vw, 80px); text-transform: uppercase; line-height: 1; margin-bottom: -5px; }
.footer-form h3 { font-family: var(--font-serif); font-size: clamp(24px, 4vw, 48px); font-style: italic; color: var(--accent); font-weight: 400; margin-bottom: 40px; }

.contact-form { padding: 40px; border-radius: 20px; display: flex; flex-direction: column; gap: 20px; max-width: 700px; z-index: 10; position: relative; }
.form-row { display: flex; gap: 20px; }
.glass-input { background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border); padding: 16px 20px; border-radius: 12px; color: var(--text-main); font-family: var(--font-heading); font-size: 1rem; outline: none; transition: 0.3s; width: 100%; resize: vertical; }
.glass-input::placeholder { color: var(--text-muted); }
.glass-input:focus { border-color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); background: rgba(0,0,0,0.5); }
.contact-form button { align-self: flex-start; cursor: none; margin-top: 10px; }
@media(max-width: 600px) { .form-row { flex-direction: column; } .contact-form { padding: 25px; } }
.footer-bottom { margin-top: 100px; display: flex; justify-content: space-between; align-items: flex-end; }
.ha-socials-list { display: flex; flex-direction: column; gap: 15px; }
.ha-socials-list a { font-family: var(--font-ha); color: var(--text-main); text-decoration: none; font-size: 1.2rem; }
.copy { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; font-family: var(--font-ha); }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.anim-fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
