/* ── PAGE-SPECIFIC: index.html ── */

/* ── GRID CANVAS ── */
#gridCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* ── RAIN CANVAS ── */
#rainCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

/* ── SCANLINE OVERLAY ── */
.scanlines {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* ── NEON GLOW BLOOM ── */
.neon-bloom {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.neon-bloom-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    animation: orbFloat 20s ease-in-out infinite alternate;
}
.neon-bloom-orb:nth-child(1) {
    width: 600px; height: 600px;
    background: var(--neon-pink);
    top: -10%; left: -10%;
    animation-duration: 18s;
}
.neon-bloom-orb:nth-child(2) {
    width: 500px; height: 500px;
    background: var(--neon-cyan);
    top: 20%; right: -15%;
    animation-duration: 22s;
    animation-delay: -5s;
}
.neon-bloom-orb:nth-child(3) {
    width: 400px; height: 400px;
    background: var(--neon-magenta);
    bottom: -10%; left: 30%;
    animation-duration: 25s;
    animation-delay: -10s;
}
@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
    100% { transform: translate(10px, -10px) scale(1.05); }
}

/* ── PARTICLE CANVAS ── */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    pointer-events: none;
}

.glass-glow:hover {
    border-color: rgba(255, 45, 149, 0.25);
    box-shadow: 0 0 40px rgba(255, 45, 149, 0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.glass-glow-cyan:hover {
    border-color: rgba(0, 255, 245, 0.25);
    box-shadow: 0 0 40px rgba(0, 255, 245, 0.08);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}
.hero-content { z-index: 3; max-width: 700px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--neon-cyan);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 245, 0.2);
    background: rgba(0, 255, 245, 0.03);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 6px rgba(0, 255, 245, 0.3);
}
.hero-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--neon-cyan); } 50% { opacity: 0.3; box-shadow: 0 0 2px var(--neon-cyan); } }
#typed-text {
    color: var(--neon-pink);
    font-family: var(--font-mono);
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 45, 149, 0.4);
}
.typing-cursor {
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    animation: blink 0.7s infinite;
    text-shadow: 0 0 6px var(--neon-cyan);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.hero h1 .gradient {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(255, 45, 149, 0.4));
}
.hero h1 .outline {
    -webkit-text-stroke: 1.5px rgba(224, 230, 255, 0.5);
    color: transparent;
}
.hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    text-decoration: none;
    background: var(--neon-pink);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.4), inset 0 0 15px rgba(255, 45, 149, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.6), 0 0 60px rgba(255, 45, 149, 0.2);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid rgba(0, 255, 245, 0.3);
    color: var(--neon-cyan);
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.btn-secondary:hover {
    background: rgba(0, 255, 245, 0.06);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 245, 0.2);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 45, 149, 0.1);
}
.hero-stat .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 245, 0.5);
}
.hero-stat .num .suffix { font-size: 1.2rem; }
.hero-stat .lbl {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

.hero-image {
    position: absolute;
    right: 5%; bottom: 4%;
    width: 36.1%; max-width: 475px;
    height: 80.75%;
    z-index: 2;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    opacity: 0.8;
    border: 1px solid rgba(255, 45, 149, 0.15);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.1);
}
.hero-image .glass-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 40%, var(--bg-deep) 100%);
    pointer-events: none;
}

/* ── ABOUT ── */
.about { padding: 8rem 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.about-video-wrap { position: relative; display: flex; justify-content: center; }
.about-video-wrap video {
    width: 90%; max-width: 380px; border-radius: 8px; object-fit: contain;
    border: 1px solid rgba(0, 255, 245, 0.15);
}
.about-glass-card {
    position: absolute;
    bottom: -20px; left: -20px;
    padding: 1.5rem 2rem;
    background: rgba(5, 5, 15, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 255, 245, 0.2);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 255, 245, 0.06), 0 0 60px rgba(0, 255, 245, 0.02);
}
.about-glass-card .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 12px rgba(0, 255, 245, 0.5);
}
.about-glass-card .lbl {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ── EXPERIENCE TIMELINE ── */
.experience { padding: 8rem 0; }
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--neon-pink-dim), transparent, var(--neon-cyan-dim));
    transform: translateX(-50%);
    box-shadow: 0 0 6px rgba(255, 45, 149, 0.2);
}
.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item.left { flex-direction: row; }
.timeline-item.right { flex-direction: row-reverse; }
.timeline-item .node {
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 45, 149, 0.5), 0 0 30px rgba(255, 45, 149, 0.2);
    z-index: 2;
}
.timeline-item .card {
    width: calc(50% - 30px);
    padding: 1.75rem 2rem;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    transition: all 0.4s ease;
}
.timeline-item .card:hover {
    border-color: rgba(255, 45, 149, 0.2);
    box-shadow: 0 0 40px rgba(255, 45, 149, 0.06);
    transform: translateY(-4px);
}
.timeline-item.left .card { margin-right: auto; }
.timeline-item.right .card { margin-left: auto; }
.timeline-item .date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-cyan);
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 4px rgba(0, 255, 245, 0.3);
}
.timeline-item .role {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.timeline-item .company {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-pink);
    margin-bottom: 0.75rem;
}
.timeline-item .desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── BENTO SKILLS GRID ── */
.skills { padding: 8rem 0; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.bento-item {
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.015);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.bento-item::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 45, 149, 0.04), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.bento-item:hover::before { opacity: 1; }
.bento-item:hover {
    border-color: rgba(255, 45, 149, 0.2);
    box-shadow: 0 0 30px rgba(255, 45, 149, 0.05);
    transform: translateY(-3px);
}
.bento-item .icon-wrap {
    width: 42px; height: 42px;
    border-radius: 8px;
    background: rgba(255, 45, 149, 0.06);
    border: 1px solid rgba(255, 45, 149, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.bento-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.bento-item p {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.bento-item .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.8rem;
}
.bento-item .tag {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    padding: 0.18rem 0.55rem;
    border-radius: 3px;
    background: rgba(255, 45, 149, 0.04);
    border: 1px solid rgba(255, 45, 149, 0.1);
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.bento-wide { grid-column: span 2; }

/* ── CREDENTIALS ── */
.credentials { padding: 8rem 0; }
.creds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.creds-col-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-magenta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 6px rgba(255, 0, 255, 0.3);
}
.creds-list { display: flex; flex-direction: column; gap: 1rem; }
.creds-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.015);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s ease;
}
.creds-item:hover {
    border-color: rgba(0, 255, 245, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 245, 0.05);
    transform: translateY(-3px);
}
.creds-item .icon {
    width: 42px; height: 42px; min-width: 42px;
    border-radius: 8px;
    background: rgba(0, 255, 245, 0.06);
    border: 1px solid rgba(0, 255, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.creds-item .info h5 { font-size: 0.9rem; font-weight: 700; }
.creds-item .info p {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ── GROWTH ── */
.growth { padding: 3.5rem 0 8rem 0; }
.growth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.growth-image img {
    width: 100%; max-width: 450px;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    opacity: 0.8;
    border: 1px solid rgba(255, 45, 149, 0.1);
}
.growth-list { display: flex; flex-direction: column; gap: 0.8rem; }
.growth-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.015);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.growth-item:hover {
    border-color: rgba(255, 45, 149, 0.2);
    transform: translateX(6px);
    box-shadow: 0 0 20px rgba(255, 45, 149, 0.04);
}
.growth-item-thumb {
    width: 60px; height: 45px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
}
.growth-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.growth-item-info h5 { font-size: 0.82rem; font-weight: 600; }
.growth-item-info p {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-muted);
}

/* ── CONTACT ── */
.contact { padding: 8rem 0; text-align: center; }
.contact-glass-box {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 45, 149, 0.1);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 45, 149, 0.03);
}
.contact p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 3rem;
}
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 2rem auto 0;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.33% - 0.7rem);
    max-width: 260px;
}
.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 245, 0.05);
}
.contact-method .icon {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-method .icon img { width: 28px; height: 28px; }
.contact-method .info { text-align: left; }
.contact-method .label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}
.contact-method .value { font-weight: 600; font-size: 0.78rem; }

/* ── RGB CHROMATIC ABERRATION GLITCH ── */
.name-glitch-container {
    position: relative;
    display: inline-block;
}
.name-glitch-container h1 {
    margin-bottom: 1.5rem;
}
.glitch-channel {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    will-change: transform, opacity;
    z-index: 2;
}
.glitch-channel.active { opacity: 1; }
.glitch-channel .outline,
.glitch-channel .gradient {
    -webkit-text-stroke: 0 !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    filter: none !important;
    text-shadow: none !important;
    color: inherit;
}
.glitch-r { color: #ff0040; }
.glitch-g { color: #00ff88; }
.glitch-b { color: #0040ff; }

/* ── NEON SVG BORDER TRACE ── */
.bento-svg-border {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
}
.bento-svg-border svg {
    width: 100%; height: 100%;
    display: block;
}
.bento-item.traced {
    box-shadow: 0 0 8px #FF006E, 0 0 20px rgba(255,0,110,0.3) !important;
}
.bento-item.traced:hover {
    box-shadow: 0 0 16px #FF006E, 0 0 35px rgba(255,0,110,0.5) !important;
}

.title-svg-underline {
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 0.5rem;
    pointer-events: none;
    position: relative;
}
.title-svg-underline svg {
    width: 100%; height: 100%;
    display: block;
}
.title-wrapper {
    position: relative;
    display: inline-block;
}

/* ── IMAGE GLITCH KEYFRAMES ── */
@keyframes imgGlitch1 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
    25% { clip-path: inset(8% 0 86% 0); transform: translateX(15px); }
    50% { clip-path: inset(30% 0 60% 0); transform: translateX(-12px); }
    75% { clip-path: inset(62% 0 28% 0); transform: translateX(18px); }
}
@keyframes imgGlitch2 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
    25% { clip-path: inset(14% 0 78% 0); transform: translateX(-18px); }
    50% { clip-path: inset(40% 0 50% 0); transform: translateX(10px); }
    75% { clip-path: inset(70% 0 20% 0); transform: translateX(-14px); }
}
@keyframes imgGlitch3 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
    25% { clip-path: inset(5% 0 90% 0); transform: translateX(-20px); }
    50% { clip-path: inset(22% 0 70% 0); transform: translateX(16px); }
    75% { clip-path: inset(50% 0 40% 0); transform: translateX(-8px); }
}
@keyframes imgGlitch4 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
    25% { clip-path: inset(18% 0 74% 0); transform: translateX(12px); }
    50% { clip-path: inset(35% 0 55% 0); transform: translateX(-16px); }
    75% { clip-path: inset(55% 0 32% 0); transform: translateX(20px); }
}
@keyframes imgGlitch5 {
    0%, 100% { clip-path: inset(0 0 0 0); transform: translateX(0); }
    25% { clip-path: inset(10% 0 82% 0); transform: translateX(-10px); }
    50% { clip-path: inset(45% 0 45% 0); transform: translateX(14px); }
    75% { clip-path: inset(75% 0 15% 0); transform: translateX(-20px); }
}

/* ── UTILITY CLASSES ── */
.hero-badge-top { margin-top: 4rem; }
.hero-typed-line { font-size: 0.9rem; color: var(--neon-pink); font-weight: 500; letter-spacing: 0.5px; margin-bottom: 1rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 100%; }
.btn-group { margin-bottom: 0; }
.hero-stats-compact { margin-top: 1.5rem; padding-top: 1rem; }
.about-reveal { margin-right: 16rem; }
.about-desc-text { margin-right: -10%; }
.section-head { text-align: center; margin-bottom: 3rem; }
.icon-sm { width: 28px; height: 28px; }

/* ── HERO CLIENTS ── */
.hero-clients { margin-top: 1.5rem; }
.hero-clients-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 0 0 0.25rem; color: var(--text-primary); word-wrap: break-word; overflow-wrap: break-word; hyphens: auto; }
/* ── LOGO WALL ── */
.logo-wall { overflow: hidden; width: 100%; mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
.logo-track { display: flex; gap: 2rem; width: max-content; animation: logoScroll 30s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-track img { height: 36px; width: auto; object-fit: contain; flex-shrink: 0; background: rgba(5,5,15,0.9); border: 1px solid rgba(255,255,255,0.1); padding: 3px; border-radius: 6px; backdrop-filter: blur(6px); }
@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .growth-grid { grid-template-columns: 1fr; gap: 2rem; }
    .creds-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-image { width: 32%; height: 70%; }
    .about-reveal { margin-right: 0; }
    .about-desc-text { margin-right: 0; }
}
@media (max-width: 768px) {
    .hero { flex-direction: column; padding-top: 100px; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { position: relative; right: auto; top: auto; transform: none; width: 70%; max-width: 350px; height: 400px; margin-top: 2rem; }
    .hero-stats { justify-content: center; }
    .timeline::before { left: 20px; }
    .timeline-item { flex-direction: column !important; padding-left: 50px; }
    .timeline-item .node { left: 20px; }
    .timeline-item .card { width: 100%; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .about-video-wrap video { max-width: 100%; }
    .about-glass-card { left: 10px; bottom: -15px; padding: 1rem 1.25rem; }
    .about-text.about-desc-text { margin-right: 0 !important; }
    .contact-method { flex: 0 0 100%; max-width: 100%; }
    .contact-methods { flex-wrap: wrap; }
    .about, .experience, .skills, .credentials, .growth, .contact { padding: 5rem 0; }
    .about-reveal { margin-right: 0 !important; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: clamp(1.6rem, 9vw, 2.2rem); }
    .glitch-channel { font-size: clamp(1.6rem, 9vw, 2.2rem); }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { padding: 0.7rem 1.2rem; font-size: 0.75rem; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .hero-stat .num { font-size: 1.5rem; }
    .hero-image { width: 85%; height: 300px; }
    .hero-badge { font-size: 0.5rem; padding: 0.3rem 0.65rem; }
    .hero-badge-top { margin-top: 2rem; }
    .name-glitch-container { max-width: 100%; }
    .hero-content { max-width: 100%; }
    .hero-clients-title { font-size: 0.75rem; }
    .hero-typed-line { font-size: 0.75rem; }
    .logo-track { gap: 1.5rem; }
    .logo-track img { height: 28px; }
}

@media (max-width: 360px) {
    .hero h1 { font-size: clamp(1.6rem, 10vw, 2rem); }
    .glitch-channel { font-size: clamp(1.6rem, 10vw, 2rem); }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { padding: 0.55rem 0.9rem; font-size: 0.65rem; }
    .hero-stats { gap: 0.75rem; }
    .hero-stat .num { font-size: 1.2rem; }
    .hero-image { width: 90%; height: 250px; }
    .logo-track { gap: 1rem; }
    .logo-track img { height: 24px; }
}
