:root {
    /* Colors - Deep Dark Theme */
    --bg-base: #020617;
    --bg-surface: #0f172a;
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Vibrant Aurora Accents */
    --accent-blue: #38bdf8;
    --accent-indigo: #818cf8;
    --accent-purple: #c084fc;
    --accent-gold: #fbbf24;
    --accent-cyan: #22d3ee;
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --gradient-aurora: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan), var(--accent-purple));
    
    /* Glass Effect */
    --glass-bg: rgba(17, 24, 39, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    
    /* Layout */
    --container-max: 1280px;
    --nav-height: 80px;
}


@media (max-width: 768px) {
    .focus-grid { grid-template-columns: 1fr; }
    .floating-tech, .maxi-text, .cursor-flashlight { display: none; }
    .hero-content { flex-direction: column; text-align: center; }
}

/* Gitty Up Badge Styles */
.achievement-badge.gitty-up {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.gitty-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    animation: bounce-small 2s infinite ease-in-out;
}

.gitty-icon-wrapper i {
    color: #000;
}

.badge-sparkle {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse-sparkle 2s infinite;
}

@keyframes bounce-small {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse-sparkle {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.5); }
}

/* Animations Reveal Init */
.reveal-init {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-init.active {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Immersive Essentials */
.cursor-flashlight {
    position: fixed;
    top: 0; left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: soft-light;
}

.maxi-text {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    z-index: -2;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -2vw;
}

.chasing-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-cyan));
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: flow-border 4s linear infinite;
    opacity: 0.8;
}

@keyframes flow-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* Typography Overrides */
h1, h2, h3, h4, .logo {
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-text {
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3), 0 0 40px rgba(168, 85, 247, 0.2);
    animation: text-pulse 4s infinite alternate;
}

@keyframes text-pulse {
    from { text-shadow: 0 0 20px rgba(56, 189, 248, 0.3); }
    to { text-shadow: 0 0 40px rgba(168, 85, 247, 0.5), 0 0 60px rgba(168, 85, 247, 0.3); }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 10;
}

.dark-alt {
    background-color: rgba(17, 24, 39, 0.5);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-filters {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

.project-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.project-item.show {
    display: flex;
    animation: fadeInScale 0.5s forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Base Glass Element */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* Background Mesh & Aurora Blobs */
.bg-mesh {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(192, 132, 252, 0.1) 0%, transparent 50%);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-aurora);
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.3;
    animation: aurora-float 25s infinite alternate ease-in-out;
}

.blob-1 { top: -10%; left: -10%; }
.blob-2 { bottom: -10%; right: -10%; animation-delay: -5s; }
.blob-3 { top: 40%; left: 50%; width: 400px; height: 400px; animation-delay: -12s; }

@keyframes aurora-float {
    0% { transform: translate(-10%, -10%) rotate(0deg) scale(1); }
    100% { transform: translate(10%, 10%) rotate(180deg) scale(1.2); }
}

/* Nav */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.logo .dot {
    color: var(--accent-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.resume-nav-link {
    color: #fff;
    padding: 0.4rem 1.25rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a.resume-nav-link:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.nav-links a.resume-nav-link::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    background-size: 200% auto;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: #fff;
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.btn-icon:hover {
    background: var(--gradient-brand);
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    z-index: 10;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.floating-tech {
    position: relative;
    width: 40%;
    height: 400px;
}

.tech-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-blue);
    box-shadow: var(--glass-shadow);
    animation: float-icon 6s infinite ease-in-out;
}

.tech-icon i { filter: drop-shadow(0 0 8px currentColor); }

.t1 { top: 10%; left: 20%; animation-delay: 0s; color: var(--accent-blue); }
.t2 { top: 40%; left: 60%; animation-delay: -1s; color: var(--accent-purple); font-size: 2.5rem; }
.t3 { top: 70%; left: 30%; animation-delay: -2s; color: var(--accent-gold); }
.t4 { top: 20%; left: 70%; animation-delay: -3.5s; color: #FF9900; }
.t5 { top: 60%; left: 10%; animation-delay: -5s; color: var(--accent-cyan); }

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px rgba(168, 85, 247, 0.1); }
    50% { box-shadow: 0 0 25px rgba(168, 85, 247, 0.3); }
    100% { box-shadow: 0 0 10px rgba(168, 85, 247, 0.1); }
}

.hero .name {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero .title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-links-hero {
    display: flex;
    gap: 1.5rem;
}

.social-links-hero a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links-hero a:hover {
    color: var(--accent-purple);
    transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text {
    padding: 3rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-text strong {
    color: #fff;
}

.achievement-badge {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.achievement-badge i {
    font-size: 2.5rem;
}

.achievement-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.achievement-badge span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Timeline */
.experience-timeline {
    position: relative;
    padding-left: 2rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2rem; top: 2.5rem;
    width: 16px; height: 16px;
    background: var(--bg-base);
    border: 3px solid var(--accent-purple);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.timeline-content .company {
    color: var(--accent-blue);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content .company a {
    color: inherit;
}

.timeline-content .company a:hover {
    text-decoration: underline;
}

.timeline-content .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
}

.skill-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tags span {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.skill-card:hover .tags span {
    border-color: rgba(99, 102, 241, 0.2);
    color: #fff;
}

/* Bento Grid System */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(350px, auto);
    gap: 1.5rem;
}

.project-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid var(--glass-border);
}

.project-item:hover::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    z-index: -1;
    animation: rotate-border 3s linear infinite;
    border-radius: inherit;
}

@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Bento Spans */
.bento-large {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .bento-large {
        grid-column: span 1;
    }
}

.project-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--card-glow, var(--accent-blue));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--card-glow, rgba(59, 130, 246, 0.2));
}

.project-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at top right, var(--card-glow, rgba(168, 85, 247, 0.15)), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.project-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.project-category i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.project-item:hover .project-category i {
    transform: rotate(15deg) scale(1.2);
}

.project-item:hover::after {
    opacity: 1;
}

.project-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(3, 7, 18, 0.9));
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.project-item:hover .project-image::after {
    left: 150%;
}

.project-item:hover .img-overlay {
    opacity: 1;
}

.view-btn {
    padding: 0.6rem 1.2rem;
    background: #fff;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.view-btn:hover {
    transform: scale(1.05);
}

.project-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.project-item:hover .project-info h3 {
    color: var(--card-glow, var(--accent-blue));
    text-shadow: 0 0 10px var(--card-glow, rgba(59, 130, 246, 0.3));
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    font-size: 0.8rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-item:hover .project-tags span {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-wrapper {
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-wrapper p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.method-icon {
    width: 50px; height: 50px;
    background: var(--gradient-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.method h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.method a {
    color: #fff;
    font-weight: 600;
}

.contact-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    background: #030712;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%; bottom: 0;
        width: 80%;
        max-width: 400px;
        background: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .hero .name {
        font-size: 3rem;
    }
    
    .hero .title {
        font-size: 1.5rem;
    }
}

/* Note: Custom Cursor removed per user request */
