.hero-cinematic .hero-name {
    text-shadow: 0 0 20px rgba(0, 255, 157, 0.18);
    animation: hero-glitch 6s infinite;
}

@keyframes hero-glitch {
    0%, 92%, 100% { transform: translate(0); }
    93% { transform: translate(2px, -1px); }
    94% { transform: translate(-2px, 1px); }
    95% { transform: translate(1px, 1px); }
}

.typing-caret {
    color: #00ff9d;
    animation: caret-blink 1s step-end infinite;
}

@keyframes caret-blink {
    50% { opacity: 0; }
}

.floating-stat {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 14, 18, 0.65);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(16px);
    transform: translateY(16px);
    opacity: 0;
}

.floating-stat .value {
    font-size: 1.7rem;
    font-weight: 800;
    color: #00ff9d;
    font-family: Outfit, sans-serif;
}

.floating-stat .label {
    display: block;
    color: #c4c4cc;
    font-size: 0.82rem;
    margin-top: 0.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 4px;
    height: 9px;
    border-radius: 999px;
    background: #00ff9d;
    animation: scroll-dot 1.4s infinite;
}

@keyframes scroll-dot {
    0% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(16px); opacity: 0; }
    100% { opacity: 0; }
}

.photo-shell {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 157, 0.35);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45), 0 0 35px rgba(0, 255, 157, 0.16);
}

.photo-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
}

.photo-shell img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.highlight-chip {
    color: #00ff9d;
    font-weight: 600;
}

.quote-box {
    border-left: 3px solid rgba(0, 255, 157, 0.7);
    background: rgba(0, 255, 157, 0.06);
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    color: #d4d4d8;
}

.philosophy-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 17, 22, 0.7);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 157, 0.45);
}

.philosophy-card i {
    color: #00ff9d;
    margin-bottom: 0.65rem;
}

.philosophy-card h3 {
    color: #fafafa;
    font-weight: 700;
}

.mindmap-wrap {
    position: relative;
    min-height: 620px;
    border: 1px solid rgba(0, 255, 157, 0.16);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 255, 157, 0.12), transparent 42%),
        radial-gradient(circle, rgba(0, 255, 157, 0.08) 1px, transparent 1px),
        #0b121a;
    background-size: auto, 22px 22px, auto;
    box-shadow: inset 0 0 60px rgba(0, 255, 157, 0.08), 0 20px 42px rgba(0, 0, 0, 0.38);
    overflow: hidden;
}

.mind-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 2px solid rgba(0, 255, 157, 0.9);
    background: radial-gradient(circle at 35% 30%, rgba(0, 255, 157, 0.28), rgba(5, 22, 32, 0.96));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 34px rgba(0, 255, 157, 0.55), 0 0 82px rgba(0, 255, 157, 0.3);
    z-index: 4;
    animation: orb-pulse 2.2s ease-in-out infinite;
}

.mind-center::before,
.mind-center::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.mind-center::before {
    inset: 8px;
    border: 1px solid rgba(0, 255, 157, 0.45);
}

.mind-center::after {
    inset: -14px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    animation: orb-rotate 10s linear infinite;
}

.mind-center i {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 0 0 16px rgba(0, 255, 157, 0.9);
}

@keyframes orb-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 32px rgba(0, 255, 157, 0.5), 0 0 78px rgba(0, 255, 157, 0.25);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.06);
        box-shadow: 0 0 48px rgba(0, 255, 157, 0.75), 0 0 110px rgba(0, 255, 157, 0.45);
    }
}

@keyframes orb-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes flow-line {
    from { filter: brightness(1); }
    to { filter: brightness(1.25); }
}

.mind-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.mind-svg-line {
    stroke: #00ff88;
    stroke-width: 1.5;
    stroke-opacity: 0.5;
    stroke-dasharray: 6 4;
}

.mind-svg-dot {
    fill: #00ff88;
    filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.95));
}

.mind-node {
    position: absolute;
    width: 180px;
    height: auto;
    min-height: 120px;
    perspective: 1000px;
    border-radius: 12px;
    z-index: 3;
}

.mind-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 120px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.mind-node:hover .mind-card-inner {
    transform: rotateY(180deg);
}

.mind-face {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.25);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    margin: 0;
}

.mind-front {
    background: #0f1923;
    padding: 20px;
    gap: 10px;
}

.mind-front i {
    color: #00ff9d;
    font-size: 1.15rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: rgba(0, 255, 157, 0.14);
}

.mind-front h3 {
    color: #fff;
    font-weight: 700;
    font-family: Outfit, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    margin: 0;
}

.mind-back {
    transform: rotateY(180deg);
    background: #132230;
    border-top: 3px solid rgba(0, 255, 136, 0.9);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    gap: 8px;
}

.mind-back h4 {
    color: #ffffff;
    font-family: Outfit, sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
}

.mind-back p {
    color: #b8c6d1;
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
}

.mind-node.n1 { top: 8%; left: 8%; }
.mind-node.n2 { top: 8%; right: 8%; }
.mind-node.n3 { top: 36%; right: 2%; }
.mind-node.n4 { bottom: 8%; right: 8%; }
.mind-node.n5 { bottom: 8%; left: 8%; }
.mind-node.n6 { top: 36%; left: 2%; }

.skills-group {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1rem;
    background: rgba(12, 14, 20, 0.7);
}

.skills-group h3 {
    color: #fff;
    font-family: Outfit, sans-serif;
    font-weight: 700;
    margin-bottom: 0.9rem;
    text-align: center;
}

.ring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    justify-items: stretch;
}

.skill-ring {
    width: 100%;
    min-width: 160px;
    min-height: 90px;
    border-radius: 0.85rem;
    padding: 14px 16px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.skill-ring:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 157, 0.5);
}

.skill-ring i {
    color: #00ff9d;
    font-size: 28px;
    margin-bottom: 0.45rem;
}

.skill-ring span {
    display: block;
    color: #e4e4e7;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.skill-progress {
    height: 6px;
    width: 100%;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.skill-progress-fill {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #00ff9d, #22d3ee);
    transition: width 0.9s ease;
}


.timeline-flow {
    position: relative;
    padding: 1rem 0;
}

.timeline-flow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(0, 255, 157, 0), rgba(0, 255, 157, 0.8), rgba(0, 255, 157, 0));
    animation: flow-line 2.5s linear infinite;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0.5rem 1.4rem 2rem;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }

.timeline-item .dot {
    position: absolute;
    top: 1.1rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.65);
}

.timeline-item.left .dot { right: -7px; }
.timeline-item.right .dot { left: -7px; }

.timeline-item .content {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 12, 18, 0.82);
    border-radius: 1rem;
    padding: 1rem;
}

.timeline-item .badge {
    display: inline-flex;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #00ff9d;
    margin-bottom: 0.35rem;
}

.timeline-item h3 {
    color: #fff;
    font-family: Outfit, sans-serif;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.timeline-item p { color: #c4c4cc; font-size: 0.9rem; line-height: 1.6; }
.timeline-item .year { display: inline-block; margin-top: 0.55rem; color: #fafafa; font-size: 0.78rem; }

.numbers-band {
    background: linear-gradient(180deg, rgba(5, 8, 12, 0.95), rgba(8, 11, 16, 0.95));
}

.number-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.2rem;
    background: rgba(13, 16, 23, 0.72);
}

.number-card h3 {
    color: #00ff9d;
    font-family: Outfit, sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.number-card p {
    color: #c4c4cc;
    margin-top: 0.45rem;
    font-size: 0.9rem;
}

.channel-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.1rem;
    background: rgba(11, 14, 20, 0.78);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 157, 0.38);
}

.channel-card .tag {
    display: inline-flex;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 157, 0.35);
    color: #00ff9d;
    font-size: 0.74rem;
}

.channel-card h3 {
    color: #fff;
    font-family: Outfit, sans-serif;
    font-size: 1.25rem;
    margin-top: 0.8rem;
}

.channel-card p { color: #c4c4cc; margin-top: 0.45rem; }

.channel-card .auto {
    display: inline-flex;
    margin-top: 0.75rem;
    color: #fff;
    background: rgba(0, 255, 157, 0.17);
    border: 1px solid rgba(0, 255, 157, 0.35);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.74rem;
}

.cta-spectrum {
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.8rem 1.5rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 255, 157, 0.12), rgba(0, 0, 0, 0.25)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
}

.cta-spectrum h2 {
    color: #fff;
    font-family: Outfit, sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

.cta-spectrum p {
    color: #d4d4d8;
    margin-top: 0.9rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.cta-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.05rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 157, 0.4);
    color: #fff;
    transition: all 0.25s ease;
}

.cta-actions a:hover {
    background: rgba(0, 255, 157, 0.16);
    color: #00ff9d;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.in-view { opacity: 1; transform: translateY(0); }

main > section:not(.hero-cinematic) {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.hero-cinematic {
    margin-bottom: 60px;
}

main > section.hero-cinematic + section {
    padding-top: 60px !important;
}

@media (max-width: 1024px) {
    .mindmap-wrap {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }

    .mind-center, .mind-node {
        position: static;
        transform: none !important;
    }

    .mind-center {
        width: 120px;
        height: 120px;
        margin: 0 auto 0.3rem auto;
    }

    .mind-node {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .mind-svg { display: none; }
}

@media (max-width: 768px) {
    .timeline-flow::before { left: 14px; }
    .timeline-item, .timeline-item.left, .timeline-item.right { width: 100%; left: 0; text-align: left; padding-left: 2.1rem; }
    .timeline-item .dot, .timeline-item.left .dot, .timeline-item.right .dot { left: 7px; right: auto; }
    #particles-canvas { opacity: 0.45; }
    .floating-stat { transform: none; opacity: 1; }
    .flip-card:hover .front, .flip-card:hover .back { transform: none; }
}

@media (min-width: 1280px) {
    .hero-cinematic > .max-w-7xl,
    main > section > .max-w-7xl,
    .numbers-band > .max-w-7xl,
    .cta-spectrum.max-w-7xl {
        max-width: 96rem !important;
    }

    main > section > .max-w-6xl {
        max-width: 90rem !important;
    }

    .hero-cinematic {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    main > section:not(.hero-cinematic) {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .mindmap-wrap {
        min-height: 680px;
    }

    .timeline-flow {
        max-width: 86rem;
        margin: 0 auto;
    }

    .hero-cinematic {
        min-height: 48rem !important;
        padding-top: 7rem !important;
        padding-bottom: 4rem !important;
        margin-bottom: 2.5rem;
    }

    .hero-cinematic > .max-w-7xl {
        max-width: 100rem !important;
    }

    .hero-cinematic .hero-name {
        font-size: clamp(5rem, 6vw, 7.25rem);
        max-width: 72rem;
    }

    .hero-cinematic .max-w-3xl {
        max-width: 56rem !important;
    }

    .hero-cinematic .grid.grid-cols-2.md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .floating-stat {
        min-height: 6.75rem;
        padding: 1.25rem 1.5rem;
    }

    .scroll-indicator {
        bottom: 8px;
    }
}

/* ========================================
   LIGHT MODE OVERRIDES - about.css
   ======================================== */

body.light-mode {
    background-color: #f4f6f8 !important;
    color: #1a1a2e !important;
}

/* Floating Stats */
body.light-mode .floating-stat {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 180, 100, 0.25) !important;
    color: #1a1a2e !important;
}

body.light-mode .floating-stat .label {
    color: #555 !important;
}

body.light-mode .scroll-indicator {
    border-color: rgba(15, 23, 42, 0.22) !important;
    background: rgba(255, 255, 255, 0.55) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08) !important;
}

body.light-mode .scroll-indicator span {
    background: #10b981 !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.12) !important;
}

/* Photo Shell */
body.light-mode .photo-shell {
    box-shadow: 0 20px 55px rgba(0,0,0,0.15), 0 0 35px rgba(0,180,100,0.12) !important;
}

/* Quote Box */
body.light-mode .quote-box {
    background: rgba(0, 200, 120, 0.08) !important;
    color: #333 !important;
}

body.light-mode .highlight-chip {
    color: #047857 !important;
}

/* Philosophy Cards */
body.light-mode .philosophy-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 180, 100, 0.2) !important;
}

body.light-mode .philosophy-card h3 {
    color: #1a1a2e !important;
}

/* Mindmap */
body.light-mode .mindmap-wrap {
    background: #e8f5ee, #f0f9f4 !important;
    border-color: rgba(0, 180, 100, 0.3) !important;
}

/* Mind Cards */
body.light-mode .mind-front {
    background: #ffffff !important;
}

body.light-mode .mind-front h3 {
    color: #1a1a2e !important;
}

body.light-mode .mind-back {
    background: #f0faf5 !important;
}

body.light-mode .mind-back h4 {
    color: #1a1a2e !important;
}

body.light-mode .mind-back p {
    color: #444 !important;
}

/* Skills Section */
body.light-mode .skills-group {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(0, 180, 100, 0.2) !important;
}

body.light-mode .skills-group h3 {
    color: #1a1a2e !important;
}

body.light-mode .skill-ring {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(0, 180, 100, 0.3) !important;
}

body.light-mode .skill-ring span {
    color: #1a1a2e !important;
}

body.light-mode .skill-progress {
    background: rgba(0, 0, 0, 0.1) !important;
}


/* Timeline */
body.light-mode .timeline-item .content {
    background: #ffffff !important;
    border-color: rgba(0, 180, 100, 0.2) !important;
}

body.light-mode .timeline-item h3 {
    color: #1a1a2e !important;
}

body.light-mode .timeline-item p {
    color: #555 !important;
}

body.light-mode .timeline-item .badge {
    color: #047857 !important;
    background: rgba(0, 180, 100, 0.12) !important;
    border-color: rgba(0, 180, 100, 0.18) !important;
}

body.light-mode .timeline-item .year {
    color: #333 !important;
}

/* Numbers Band */
body.light-mode .numbers-band {
    background: linear-gradient(180deg, #e8f5ee, #f0f9f4) !important;
}

body.light-mode .number-card {
    background: #ffffff !important;
    border-color: rgba(0, 180, 100, 0.2) !important;
}

body.light-mode .number-card p {
    color: #444 !important;
}

/* Channel Cards */
body.light-mode .channel-card {
    background: #ffffff !important;
    border-color: rgba(0, 180, 100, 0.2) !important;
}

body.light-mode .channel-card h3 {
    color: #1a1a2e !important;
}

body.light-mode .channel-card p {
    color: #555 !important;
}

body.light-mode .channel-card .auto {
    background: #dcfce7 !important;
    color: #166534 !important;
    border-color: #86efac !important;
}

/* CTA Section */
body.light-mode .cta-spectrum {
    background: linear-gradient(135deg, rgba(0,200,120,0.1), rgba(255,255,255,0.9)) !important;
    border-color: rgba(0, 180, 100, 0.25) !important;
}

body.light-mode .cta-spectrum h2 {
    color: #1a1a2e !important;
}

body.light-mode .cta-spectrum p {
    color: #444 !important;
}

body.light-mode .cta-actions a {
    background: #ffffff !important;
    color: #134e3b !important;
    border-color: rgba(0, 180, 100, 0.28) !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08) !important;
}

body.light-mode .cta-actions a:hover {
    background: #dcfce7 !important;
    color: #065f46 !important;
    border-color: rgba(0, 180, 100, 0.38) !important;
}

/* General text overrides */
body.light-mode .text-zinc-400,
body.light-mode .text-zinc-300,
body.light-mode .text-zinc-500 {
    color: #555 !important;
}

body.light-mode .text-white {
    color: #1a1a2e !important;
}

/* Body & Navbar Light Mode */
body.light-mode {
    background-color: #f4f6f8 !important;
    color: #1a1a2e !important;
}

body.light-mode nav {
    background: rgba(255,255,255,0.92) !important;
    border-bottom-color: rgba(0,0,0,0.08) !important;
}

body.light-mode nav a,
body.light-mode nav span,
body.light-mode nav button {
    color: #1a1a2e !important;
}

body.light-mode .theme-toggle-btn {
    background: #ffffff !important;
    color: #1a1a2e !important;
    border-color: rgba(15, 23, 42, 0.12) !important;
}

body.light-mode .theme-toggle-btn:hover {
    background: #ecfdf5 !important;
    color: #065f46 !important;
    border-color: rgba(0, 180, 100, 0.32) !important;
}

body.light-mode #about-mobile-menu {
    background: #ffffff !important;
}

body.light-mode .mindmap-wrap {
    background: #e8f5ee !important;
    border-color: rgba(0,180,100,0.3) !important;
}

body.light-mode .numbers-band {
    background: linear-gradient(180deg, #e2f0e8, #eef7f2) !important;
}

body.light-mode section {
    background-color: transparent !important;
}

/* FORCE OVERRIDE TAILWIND DARK CLASSES IN LIGHT MODE */
body.light-mode.bg-zinc-950,
body.light-mode {
    background-color: #f4f6f8 !important;
    color: #1a1a2e !important;
}

body.light-mode nav.bg-zinc-950\/70 {
    background: rgba(255,255,255,0.92) !important;
}

body.light-mode .bg-zinc-950,
body.light-mode .bg-zinc-900,
body.light-mode [class*="bg-zinc"] {
    background-color: #ffffff !important;
}

body.light-mode .text-zinc-300,
body.light-mode .text-zinc-400,
body.light-mode .text-zinc-500,
body.light-mode [class*="text-zinc"] {
    color: #444444 !important;
}

body.light-mode .text-white {
    color: #1a1a2e !important;
}

body.light-mode .border-white\/5,
body.light-mode [class*="border-white"] {
    border-color: rgba(0,0,0,0.1) !important;
}

/* Premium Light Mode Polish */
body.light-mode {
    background:
        radial-gradient(circle at 12% 10%, rgba(16, 185, 129, 0.14), transparent 18%),
        radial-gradient(circle at 85% 12%, rgba(59, 130, 246, 0.08), transparent 20%),
        linear-gradient(180deg, #f8f4ea 0%, #edf5ec 48%, #edf4f6 100%) !important;
    color: #172033 !important;
}

body.light-mode .hero-cinematic .hero-name,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3 {
    color: #182032 !important;
    text-shadow: none !important;
}

body.light-mode .hero-cinematic p,
body.light-mode p,
body.light-mode .text-zinc-300,
body.light-mode .text-zinc-400,
body.light-mode .text-zinc-500,
body.light-mode [class*="text-zinc"] {
    color: #4b5563 !important;
}

body.light-mode .floating-stat,
body.light-mode .philosophy-card,
body.light-mode .skills-group,
body.light-mode .skill-ring,
body.light-mode .timeline-item .content,
body.light-mode .number-card,
body.light-mode .channel-card {
    border-color: rgba(16, 185, 129, 0.16) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08) !important;
}

body.light-mode .floating-stat {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(16px) !important;
}

body.light-mode .philosophy-card,
body.light-mode .skills-group,
body.light-mode .skill-ring,
body.light-mode .timeline-item .content,
body.light-mode .number-card,
body.light-mode .channel-card {
    background: linear-gradient(180deg, #ffffff, #f7fbf8) !important;
}

body.light-mode .mindmap-wrap {
    background:
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.16), transparent 34%),
        linear-gradient(180deg, #eef8f1, #e6f1eb) !important;
    border-color: rgba(16, 185, 129, 0.22) !important;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.1), inset 0 0 40px rgba(16, 185, 129, 0.06) !important;
}

body.light-mode .mind-front {
    background: linear-gradient(180deg, #ffffff, #f6fbf8) !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07) !important;
}

body.light-mode .mind-back {
    background: linear-gradient(180deg, #f6fcf8, #eef8f1) !important;
}

body.light-mode .timeline-flow::before {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.75), rgba(16, 185, 129, 0)) !important;
}

body.light-mode .numbers-band {
    background: linear-gradient(180deg, rgba(229, 241, 234, 0.92), rgba(236, 246, 240, 0.96)) !important;
    border-top: 1px solid rgba(16, 185, 129, 0.08);
    border-bottom: 1px solid rgba(16, 185, 129, 0.08);
}

body.light-mode .cta-spectrum {
    background:
        radial-gradient(circle at top, rgba(16, 185, 129, 0.12), transparent 32%),
        linear-gradient(135deg, rgba(227, 245, 234, 0.96), rgba(255, 255, 255, 0.95)) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08) !important;
}

body.light-mode .cta-actions a {
    background: linear-gradient(180deg, #ffffff, #f4fbf7) !important;
}

body.light-mode .channel-card:hover,
body.light-mode .philosophy-card:hover,
body.light-mode .skill-ring:hover {
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11) !important;
}
