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

:root {
    /* Lusion-inspired: white base + violet accents */
    --bg-primary: #ffffff;
    --bg-secondary: #faf8ff;
    --bg-surface: #f5f2ff;
    --bg-card: #ffffff;
    --accent-violet: #7c3aed;
    --accent-violet-light: #a78bfa;
    --accent-violet-soft: #c4b5fd;
    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    --text-primary: #0f0a1a;
    --text-secondary: rgba(15, 10, 26, 0.6);
    --text-muted: rgba(15, 10, 26, 0.4);
    --border: rgba(124, 58, 237, 0.12);
    --font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === GIF HIGHLIGHT === */
.gif-highlight {
    grid-column: span 2;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--accent-violet-light);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.15);
}

/* === CANVAS BG === */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === THEME TOGGLE === */
.theme-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 101;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.06);
}

.theme-toggle:hover {
    border-color: var(--accent-violet-soft);
    color: var(--accent-violet);
    transform: scale(1.05);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: opacity 0.3s, transform 0.3s;
}

.theme-toggle .sun-icon { opacity: 1; transform: rotate(0deg); }
.theme-toggle .moon-icon { opacity: 0; transform: rotate(90deg); }

/* === NAV === Lusion-style */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 28px 48px;
    background: transparent;
    border-bottom: none;
    transition: all 0.6s var(--transition);
}

.nav.scrolled {
    padding: 16px 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
}

.nav-logo .logo-text {
    display: inline-block;
    transition: transform 0.4s var(--transition);
}

.nav-logo:hover .logo-text {
    transform: translateY(-2px);
}

.nav-logo .logo-dot {
    color: var(--accent-violet);
    display: inline-block;
    transition: transform 0.4s var(--transition);
}

.nav-logo:hover .logo-dot {
    transform: scale(1.3);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-violet);
    transition: width 0.4s var(--transition), left 0.4s var(--transition);
    border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gradient);
    z-index: 101;
    transition: width 0.1s linear;
}

/* Nav Menu Button (Lusion style: 3 lines → X) */
.nav-menu-btn {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 102;
}

.nav-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.4s var(--transition);
    position: absolute;
}

.nav-menu-btn span:nth-child(1) { transform: translateY(-6px); }
.nav-menu-btn span:nth-child(2) { transform: translateY(0); width: 16px; margin-left: 6px; }
.nav-menu-btn span:nth-child(3) { transform: translateY(6px); }

.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile Menu (Lusion full-screen overlay) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 48px 48px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--transition), visibility 0.5s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1.2;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--transition), transform 0.4s var(--transition), color 0.3s;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    color: var(--accent-violet);
}

.mobile-link-number {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-right: 16px;
    vertical-align: top;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.1) 0%,
        rgba(250,248,255,0.7) 50%,
        rgba(255,255,255,0.95) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-violet);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
}

.hero-title .title-line {
    display: block;
}

.hero-title .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 24px rgba(124, 58, 237, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent-violet-soft);
    color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.04);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
}

/* === SCROLL INDICATOR === */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    z-index: 2;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* === SECTIONS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-violet);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.section-title .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === ABOUT === */
.about {
    padding: 160px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.avatar-wrap {
    position: relative;
    width: 280px;
    height: 280px;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: var(--accent-gradient);
    opacity: 0.2;
    filter: blur(24px);
    z-index: 1;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.02); }
}

.about-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-img {
    position: absolute;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--bg-primary);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

.about-img-1 {
    top: -20px;
    right: -30px;
    transform: rotate(8deg);
}

.about-img-2 {
    bottom: -10px;
    left: -20px;
    transform: rotate(-6deg);
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.about-traits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.trait {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s var(--transition);
}

.trait:hover {
    border-color: var(--accent-violet-soft);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
    transform: translateY(-2px);
}

.trait-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: block;
}

.trait h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.trait p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === LIFE SECTION === */
.life {
    padding: 160px 0;
    background: var(--bg-secondary);
}

.life-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.life-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.life-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(124, 58, 237, 0.1);
}

.life-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.life-card-wide {
    grid-column: span 2;
}

.life-card-full {
    grid-column: span 3;
}

.life-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.life-card-large img,
.life-card-large .life-images img {
    height: 100%;
}

.life-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    height: 280px;
}

.life-images img {
    border-radius: 12px;
    height: 100%;
}

.life-sports {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
}

.life-sports img {
    border-radius: 12px;
    height: 120px;
    object-fit: cover;
}

.life-info {
    padding: 24px;
}

.life-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.life-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.life-roadshow-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* === PROJECTS === */
.projects {
    padding: 160px 0;
    background: var(--bg-primary);
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-header .section-title {
    margin-bottom: 0;
}

.projects-grid {
    display: grid;
    gap: 32px;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.5s var(--transition);
    cursor: pointer;
    align-items: center;
}

.project-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.project-card:nth-child(even) > * {
    direction: ltr;
}

.project-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.08);
}

.project-card.featured {
    border-color: rgba(124, 58, 237, 0.2);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
}

.project-visual {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16/10;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.project-gallery {
    display: grid;
    gap: 8px;
}

.gallery-main {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.project-visual-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f2ff 0%, #ede9fe 100%);
    border-radius: 16px;
}

.brand-showcase {
    text-align: center;
    padding: 40px;
}

.brand-showcase h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-violet);
    margin-bottom: 8px;
}

.brand-showcase p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.brand-url {
    font-family: var(--mono);
    font-size: 0.875rem;
    color: var(--accent-violet-light);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.project-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.project-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
}

.tag-award {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(168, 85, 247, 0.12));
    color: var(--accent-violet);
}

.project-year {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.project-name {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.project-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.project-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

.project-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.highlight {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-surface);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-violet);
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.3s var(--transition);
}

.project-link .arrow {
    transition: transform 0.3s var(--transition);
}

.project-link:hover .arrow {
    transform: translateX(4px);
}

.feishu-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 8px;
}

/* === INSIGHTS === */
.insights {
    padding: 160px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.insight-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.4s var(--transition);
}

.insight-card:hover {
    border-color: var(--accent-violet-soft);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.08);
    transform: translateY(-4px);
}

.insight-icon {
    font-size: 2rem;
    line-height: 1;
}

.insight-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.insight-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

.insight-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--accent-violet);
    margin-top: auto;
}

.insight-soon .insight-source {
    color: var(--text-muted);
}

/* === CONTACT === */
.contact {
    padding: 160px 0 80px;
    background: var(--bg-primary);
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.contact-title .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-cta {
    margin-bottom: 48px;
}

.contact-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s var(--transition);
}

.contact-link:hover {
    border-color: var(--accent-violet-soft);
    color: var(--accent-violet);
    background: rgba(124, 58, 237, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}

.contact-link svg {
    flex-shrink: 0;
}

.footer {
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.footer p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-images {
        display: none;
    }

    .about-stats {
        justify-content: center;
    }

    .about-traits {
        grid-template-columns: 1fr;
    }

    .project-card,
    .project-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .project-card:nth-child(even) > * {
        direction: ltr;
    }

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

    .life-card-large,
    .life-card-wide,
    .life-card-full {
        grid-column: span 1;
    }

    .life-sports {
        grid-template-columns: repeat(2, 1fr);
    }

    .gif-highlight {
        grid-column: span 2;
        grid-row: span 1;
        height: 120px !important;
    }

    .life-roadshow-img {
        height: 200px;
    }

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

    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 16px 24px;
    }

    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .about,
    .projects,
    .life,
    .insights,
    .contact {
        padding: 100px 0;
    }

    .avatar-wrap {
        width: 200px;
        height: 200px;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .project-card {
        padding: 28px;
    }
}
