/* ====================
   DESIGN TOKENS — HIGH-FIDELITY CLAYMORPHISM
==================== */
:root {
    --canvas:       #F4F1FA;
    --card-bg:      rgba(255,255,255,0.72);
    --card-solid:   #ffffff;
    --surface:      #EFEBF5;
    --fg:           #332F3A;
    --muted:        #635F69;
    --accent:       #7C3AED;
    --accent-light: #A78BFA;
    --accent-alt:   #DB2777;
    --sky:          #0EA5E9;
    --emerald:      #10B981;
    --amber:        #F59E0B;
    --accent-glow:  rgba(124,58,237,0.18);
    --accent-dim:   rgba(124,58,237,0.08);
    --ease:         cubic-bezier(0.23, 1, 0.32, 1);
    --spring-ease:  cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --reveal-time:  0.8s;

    /* SHADOW SYSTEM */
    --shadow-deep:
        30px 30px 60px #cdc6d9,
        -30px -30px 60px #ffffff,
        inset 10px 10px 20px rgba(139,92,246,0.05),
        inset -10px -10px 20px rgba(255,255,255,0.8);

    --shadow-card:
        16px 16px 32px rgba(160,150,180,0.2),
        -10px -10px 24px rgba(255,255,255,0.9),
        inset 6px 6px 12px rgba(139,92,246,0.03),
        inset -6px -6px 12px rgba(255,255,255,1);

    --shadow-card-hover:
        24px 24px 48px rgba(160,150,180,0.3),
        -14px -14px 32px rgba(255,255,255,1),
        inset 6px 6px 12px rgba(139,92,246,0.05),
        inset -6px -6px 12px rgba(255,255,255,1);

    --shadow-btn:
        12px 12px 24px rgba(139,92,246,0.3),
        -8px -8px 16px rgba(255,255,255,0.4),
        inset 4px 4px 8px rgba(255,255,255,0.4),
        inset -4px -4px 8px rgba(0,0,0,0.1);

    --shadow-btn-hover:
        16px 16px 32px rgba(139,92,246,0.4),
        -10px -10px 20px rgba(255,255,255,0.5),
        inset 4px 4px 8px rgba(255,255,255,0.5),
        inset -4px -4px 8px rgba(0,0,0,0.12);

    --shadow-pressed:
        inset 10px 10px 20px #d9d4e3,
        inset -10px -10px 20px #ffffff;

    --shadow-nav:
        8px 8px 20px rgba(160,150,180,0.18),
        -6px -6px 14px rgba(255,255,255,0.9),
        inset 2px 2px 6px rgba(139,92,246,0.04),
        inset -2px -2px 6px rgba(255,255,255,0.9);
}

/* ====================
   RESET & BASE
==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@media (pointer: fine) { * { cursor: none; } }
html { scroll-behavior: smooth; }
body {
    background: var(--canvas);
    color: var(--fg);
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ====================
   BACKGROUND: ANIMATED BLOBS + GRAIN
==================== */
.blob-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.blob-1 { width: 55vw; height: 55vw; background: rgba(124,58,237,0.08); top: -15%; left: -15%; animation: bfloat 10s ease-in-out infinite; }
.blob-2 { width: 45vw; height: 45vw; background: rgba(219,39,119,0.07); top: 10%; right: -15%; animation: bfloat 13s ease-in-out infinite reverse; }
.blob-3 { width: 40vw; height: 40vw; background: rgba(14,165,233,0.07); bottom: -10%; left: 30%; animation: bfloat 8s ease-in-out infinite; animation-delay: -4s; }
.blob-4 { width: 30vw; height: 30vw; background: rgba(16,185,129,0.06); bottom: 20%; right: 5%; animation: bfloat 12s ease-in-out infinite; animation-delay: -6s; }

@keyframes bfloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

.grain-overlay {
    position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ====================
   CUSTOM CURSOR
==================== */
#clay-cursor {
    position: fixed; width: 10px; height: 10px; margin: -5px 0 0 -5px;
    background: var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transition: width .2s var(--ease), height .2s var(--ease), margin .2s var(--ease), background .2s;
    opacity: 0;
}
#clay-cursor-ring {
    position: fixed; width: 36px; height: 36px; margin: -18px 0 0 -18px;
    border: 2px solid rgba(124,58,237,0.35); border-radius: 50%;
    pointer-events: none; z-index: 99998;
    opacity: 0;
    transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), opacity .3s, border-color .3s;
}

/* ====================
   SCROLL REVEAL UTILS
==================== */
/* Reactive Reveal: Alternating Sides & Scale */
.reveal-hidden {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
    transition: 
        opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, opacity;
}

.reveal-left { transform: translateX(-40px) translateY(20px) rotate(-2deg) scale(0.92); opacity: 0; }
.reveal-right { transform: translateX(40px) translateY(20px) rotate(2deg) scale(0.92); opacity: 0; }
.reveal-zoom { transform: scale(0.8); opacity: 0; }

.reveal-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) rotate(0);
}

/* Staggered entries */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Text Stagger Effect (No Blur) */
.stagger-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes fadeUpReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ====================
   INTERACTIVE SHINE EFFECT
==================== */
.shine-parent { position: relative; overflow: hidden; }
.shine-parent::after {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(-45deg) translateY(-100%);
    transition: transform 0.6s var(--ease);
    pointer-events: none;
    z-index: 10;
}
.shine-parent:hover::after { transform: rotate(-45deg) translateY(100%); }

/* ====================
   NAVIGATION
==================== */
/* ====================
   PREMIUM LIQUID NAVBAR
 ==================== */
.navbar {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    z-index: 1000; width: auto;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; padding: 8px 12px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(32px) saturate(1.8);
    border-radius: 100px;
    box-shadow: 
        0 12px 32px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.8);
    border: 0.5px solid rgba(124,58,237,0.1);
    transition: all 0.4s var(--ease);
}
.nav-logo {
    font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 20px;
    color: var(--accent); text-decoration: none; 
    padding: 8px 16px; border-radius: 100px;
    cursor: pointer; letter-spacing: -0.04em;
    transition: transform 0.3s;
}
.nav-logo:hover { transform: scale(1.05); background: rgba(124,58,237,0.05); }

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

.nav-item {
    font-family: 'DM Mono', monospace; font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--muted); background: none; border: none;
    padding: 10px 18px; border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); cursor: pointer;
}
.nav-item:hover { color: var(--fg); background: rgba(124,58,237,0.07); transform: translateY(-2px); }
.nav-item.active {
    color: white;
    background: var(--accent);
    box-shadow: 0 8px 16px var(--accent-glow);
}

/* MOBILE TOGGLE OVERHAUL */
.mobile-toggle {
    display: none; width: 44px; height: 44px;
    background: rgba(124,58,237,0.05); border: none;
    color: var(--accent); border-radius: 50%;
    cursor: pointer; position: relative;
    transition: all 0.3s var(--ease);
}
.mobile-toggle span {
    position: absolute; width: 20px; height: 1.5px;
    background: currentColor; left: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mobile-toggle span:nth-child(1) { top: 16px; }
.mobile-toggle span:nth-child(2) { top: 22px; width: 14px; }
.mobile-toggle span:nth-child(3) { top: 28px; }

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 22px; }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 22px; }

/* REFINED MOBILE OVERLAY */
.mobile-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(100px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-links {
    display: flex; flex-direction: column; gap: 32px; text-align: center;
}
.m-nav-item {
    font-family: 'Nunito', sans-serif; font-size: 36px; font-weight: 900;
    color: var(--fg); background: none; border: none;
    cursor: pointer; opacity: 0; transform: translateY(20px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-overlay.active .m-nav-item { opacity: 1; transform: translateY(0) scale(1); }
.m-nav-item:hover { color: var(--accent); letter-spacing: 0.1em; }

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; align-items: center; justify-content: center; }
    .navbar { width: 92%; }
    .nav-inner { padding: 4px 6px; }
}

/* ====================
   SECTIONS
==================== */
.section { position: relative; z-index: 1; min-height: 100vh; }
.section:not(#section-home) { padding-top: 120px; }

/* ====================
   HOME SECTION
==================== */
#section-home { overflow: hidden; height: 100vh; }

.kinetic-wrap {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    z-index: 0; overflow: hidden; user-select: none; pointer-events: none;
}
.kinetic-text {
    font-family: 'Nunito', sans-serif; font-weight: 900;
    font-size: clamp(60px, 13vw, 280px);
    line-height: 0.9; white-space: nowrap; text-transform: uppercase;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(124,58,237,0.06);
}

#section-home main {
    position: relative; height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 8%; z-index: 1;
}
.hero-top {
    font-family: 'DM Mono', monospace; font-size: 11px;
    color: var(--accent); letter-spacing: 0.45em; text-transform: uppercase;
    margin-bottom: 20px; display: block;
}
.hero-container {
    display: flex; align-items: center;
    gap: clamp(40px, 8vw, 120px);
}
.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(54px, 13vw, 172px);
    font-weight: 900; line-height: 0.85; letter-spacing: -0.05em;
    color: var(--fg);
}
.hero-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    font-style: italic;
}

.data-wing {
    display: none; flex-direction: column; gap: 32px;
    padding-left: 50px;
    border-left: 2px solid rgba(124,58,237,0.12);
    margin-top: 30px;
    animation: fadeInRight 1.2s var(--ease) forwards;
}
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@media (min-width: 1024px) { .data-wing { display: flex; } }

.wing-icons { display: flex; gap: 24px; }
.wing-icons i {
    font-size: 36px; color: var(--muted);
    transition: all 0.4s var(--ease);
    padding: 14px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}
.wing-icons i:hover {
    color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.wing-visual {
    width: 340px; height: 150px; position: relative;
    background: var(--card-bg);
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
}
.scanner {
    position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 16px rgba(124,58,237,0.5);
    animation: scan 5s infinite ease-in-out; z-index: 5;
}
@keyframes scan { 0%{top:0%;opacity:0} 10%{opacity:1} 90%{opacity:1} 100%{top:100%;opacity:0} }
.illustration-svg { position: absolute; inset: 0; padding: 20px; opacity: 0.5; }
.hex-data {
    font-family: 'DM Mono', monospace; font-size: 11px;
    color: var(--muted); letter-spacing: 0.15em; line-height: 2.2;
    padding: 16px 20px;
}

.hero-footer {
    position: absolute; bottom: 60px; left: 8%; right: 8%;
    display: flex; justify-content: space-between; align-items: flex-end;
}
.desc-box {
    max-width: 400px; font-size: 15px; font-weight: 400;
    color: var(--muted); line-height: 1.8;
    background: var(--card-bg); backdrop-filter: blur(12px);
    padding: 24px 28px; border-radius: 24px;
    box-shadow: var(--shadow-card);
}
.coordinates {
    font-family: 'DM Mono', monospace; font-size: 10px;
    color: rgba(124,58,237,0.3); writing-mode: vertical-rl; letter-spacing: 0.3em;
}

.scroll-trigger {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    pointer-events: none;
}
.scroll-line {
    width: 2px; height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: pulseHeight 2s infinite var(--ease);
    border-radius: 2px;
}
@keyframes pulseHeight { 0%{height:0;transform:translateY(0)} 50%{height:36px} 100%{height:0;transform:translateY(36px)} }

/* ====================
   SHARED SECTION LAYOUT
==================== */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 48px; }
.section-header { margin-bottom: 64px; }
.eyebrow {
    font-family: 'DM Mono', monospace; font-size: 11px;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--accent); display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 20px;
}
.eyebrow::before {
    content: ''; width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px; display: inline-block;
}
.display-lg {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(40px, 6vw, 72px); font-weight: 900;
    line-height: 1.05; color: var(--fg); margin-bottom: 28px;
    letter-spacing: -0.03em;
}
.display-lg .clay-stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
}
.display-md {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(32px, 5vw, 60px); font-weight: 900;
    line-height: 1.1; color: var(--fg); margin-bottom: 60px;
    letter-spacing: -0.03em;
}
.body-text { font-size: 17px; line-height: 1.85; color: var(--muted); max-width: 640px; text-align: justify; }

.section-divider {
    height: 0; position: relative; z-index: 1;
    margin: 0 48px;
}
.section-divider::after {
    content: ''; display: block; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.15), transparent);
}

/* ====================
   ABOUT
==================== */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 80vh; gap: 0; }
.content-chamber {
    padding: 60px 10% 60px 0;
    display: flex; flex-direction: column; justify-content: center;
}
.visual-chamber {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 60px;
}

.pill-anchor {
    position: relative; width: 300px; height: 450px;
    border-radius: 150px; z-index: 5;
    transition: transform 0.8s var(--ease);
}
.pill-shroud {
    position: absolute; inset: -16px;
    border: 2px solid rgba(124,58,237,0.12);
    border-radius: 170px; z-index: -1;
    background: linear-gradient(135deg, rgba(124,58,237,0.06), transparent);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-card);
}
.pill-frame {
    width: 100%; height: 100%; border-radius: 150px;
    overflow: hidden;
    box-shadow:
        20px 30px 60px rgba(124,58,237,0.2),
        -12px -12px 30px rgba(255,255,255,0.9),
        inset 4px 4px 10px rgba(124,58,237,0.06),
        inset -4px -4px 10px rgba(255,255,255,0.8);
}
.pill-frame img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
    transition: all 1.2s var(--ease);
}
.pill-anchor:hover .pill-frame img { transform: scale(1.06); filter: saturate(1.1) contrast(1.08); }

/* ABOUT GALLERY BUTTON */
.about-gallery-btn {
    position: absolute;
    bottom: 40px;
    right: -60px;
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    padding: 22px 18px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    text-decoration: none;
    z-index: 20;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    width: 120px;
    border: 1px solid rgba(255,255,255,0.8);
}
.about-gallery-btn .agb-inner {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    text-align: center;
}
.about-gallery-btn i { 
    font-size: 20px; color: white; 
    width: 44px; height: 44px; background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; box-shadow: var(--shadow-btn);
}
.about-gallery-btn span {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: var(--muted); font-weight: 600; line-height: 1.3;
    letter-spacing: 0.12em; text-transform: uppercase;
}
.about-gallery-btn:hover {
    transform: scale(1.15) translateX(12px) rotate(3deg);
    box-shadow: var(--shadow-card-hover);
}
.about-gallery-btn:active { transform: scale(0.95); }

.hud-element {
    position: absolute; font-family: 'DM Mono', monospace; font-size: 9px;
    color: rgba(124,58,237,0.25); display: flex; align-items: center;
    gap: 8px; white-space: nowrap;
}
.hud-1 { top: 12%; left: -10px; transform: rotate(-90deg); }
.hud-2 { bottom: 12%; right: -10px; transform: rotate(90deg); }

.badge-line {
    display: flex; align-items: center; gap: 16px; margin-bottom: 32px;
}
.badge-line span {
    font-family: 'DM Mono', monospace; font-size: 11px;
    color: var(--accent); letter-spacing: 0.3em; text-transform: uppercase;
}
.badge-line .line { width: 40px; height: 1.5px; background: rgba(124,58,237,0.2); border-radius: 2px; }

.headline {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(44px, 7vw, 100px); font-weight: 900;
    line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 48px;
    color: var(--fg);
}
.headline em {
    display: block; color: transparent;
    -webkit-text-stroke: 1.5px var(--muted);
    font-style: italic;
}

.narrative-text { max-width: 480px; color: var(--muted); font-size: 16px; font-weight: 400; line-height: 1.85; }

.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.bio-card {
    padding: 22px; border-radius: 20px;
    background: var(--card-bg); backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
}
.bio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.bio-card h4 {
    font-family: 'DM Mono', monospace; font-size: 10px;
    color: var(--accent); margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 0.1em;
}
.bio-card p { font-size: 13px; line-height: 1.7; color: var(--muted); }

.bg-typography {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: 'Nunito', sans-serif; font-size: 10vw; font-weight: 900;
    line-height: 1; z-index: 0; color: transparent;
    -webkit-text-stroke: 1px rgba(124,58,237,0.05);
    white-space: nowrap; pointer-events: none;
    text-transform: uppercase;
}
.side-marker {
    position: absolute; right: 24px; top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'DM Mono', monospace; font-size: 9px;
    letter-spacing: 0.5em; color: rgba(124,58,237,0.2);
    text-transform: uppercase; z-index: 10;
}

/* ====================
   PASSION
==================== */
.passions-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.passion-panel {
    background: var(--card-bg); backdrop-filter: blur(16px);
    padding: 48px 32px; border-radius: 32px;
    position: relative; min-height: 380px; overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--ease);
}
.passion-panel:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.passion-ghost-text {
    position: absolute; bottom: -20px; left: -10px;
    font-family: 'Nunito', sans-serif; font-size: 96px; font-weight: 900;
    color: rgba(124,58,237,0.04); text-transform: uppercase;
    pointer-events: none; user-select: none;
}
.passion-icon {
    font-size: 28px; margin-bottom: 24px;
    width: 62px; height: 62px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-btn);
}
.passion-panel:nth-child(1) .passion-icon { background: linear-gradient(135deg, #FBD38D, #F6AD55); color: white; }
.passion-panel:nth-child(2) .passion-icon { background: linear-gradient(135deg, #76E4F7, #0EA5E9); color: white; }
.passion-panel:nth-child(3) .passion-icon { background: linear-gradient(135deg, #F687B3, #DB2777); color: white; }
.passion-title {
    font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 800;
    color: var(--fg); margin-bottom: 14px; letter-spacing: -0.02em;
}
.passion-desc { font-size: 14px; line-height: 1.85; color: var(--muted); }

/* ====================
   SKILLS
==================== */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 64px 0; }
.skill-card {
    background: var(--card-bg); backdrop-filter: blur(16px);
    padding: 44px 32px; border-radius: 32px;
    position: relative; overflow: hidden; min-height: 440px;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--ease);
}
.skill-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.card-bg-name {
    position: absolute; bottom: -8px; left: -8px;
    font-family: 'Nunito', sans-serif; font-size: 72px; font-weight: 900;
    color: rgba(124,58,237,0.04); user-select: none; pointer-events: none;
}
.card-icon {
    font-size: 26px; margin-bottom: 22px;
    width: 60px; height: 60px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-btn);
}
.skill-card:nth-child(1) .card-icon { background: linear-gradient(135deg, #A78BFA, #7C3AED); color: white; }
.skill-card:nth-child(2) .card-icon { background: linear-gradient(135deg, #6EE7B7, #10B981); color: white; }
.skill-card:nth-child(3) .card-icon { background: linear-gradient(135deg, #FCA5A5, #EF4444); color: white; }
.card-name {
    font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 800;
    color: var(--fg); margin-bottom: 14px; letter-spacing: -0.02em;
}
.card-desc { font-size: 14px; line-height: 1.75; color: var(--muted); margin-bottom: 36px; }
.focus-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.focus-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; font-family: 'DM Mono', monospace;
    color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em;
}
.focus-item i {
    width: 6px; height: 6px; background: var(--accent);
    border-radius: 50%; flex-shrink: 0;
    box-shadow: 0 0 6px rgba(124,58,237,0.4);
}

.management-card {
    background: var(--card-bg); backdrop-filter: blur(16px);
    border-radius: 32px; padding: 56px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
    margin-bottom: 80px; box-shadow: var(--shadow-card);
}
.tag-cloud { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tag {
    padding: 9px 18px;
    background: rgba(124,58,237,0.07);
    border: none; color: var(--accent);
    font-family: 'DM Mono', monospace; font-size: 10px;
    border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em;
    box-shadow: inset 3px 3px 6px rgba(124,58,237,0.08), inset -3px -3px 6px rgba(255,255,255,0.7);
}

/* ====================
   EFFORTS — PROJECTS
==================== */
.efforts-wrap { max-width: 1200px; margin: 0 auto; padding: 60px 48px; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 100px; }
.project-card {
    background: var(--card-bg); backdrop-filter: blur(16px);
    padding: 36px 32px; border-radius: 28px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.p-tag {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
    padding: 5px 12px; border-radius: 100px;
    background: rgba(124,58,237,0.08);
    box-shadow: inset 2px 2px 4px rgba(124,58,237,0.06), inset -2px -2px 4px rgba(255,255,255,0.7);
}
.p-title {
    font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 800;
    color: var(--fg); margin-bottom: 14px; letter-spacing: -0.02em;
}
.p-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.link-indicator {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
    margin-top: auto; display: flex; align-items: center; gap: 8px;
}

/* WRITINGS */
.writings-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 100px; }
.writing-item {
    display: grid; grid-template-columns: 1fr auto auto;
    align-items: center; gap: 24px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(124,58,237,0.08);
    text-decoration: none; color: inherit;
    transition: all 0.4s var(--ease);
}
.writing-item:hover { padding-left: 18px; }
.w-subtitle {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: var(--accent); text-transform: uppercase;
    margin-bottom: 8px; display: block; letter-spacing: 0.1em;
}
.w-title {
    font-family: 'Nunito', sans-serif; font-size: 28px;
    font-weight: 800; color: var(--fg); letter-spacing: -0.02em;
}
.writing-item:hover .w-title { color: var(--accent); }
.w-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-top: 12px; max-width: 680px; }
.w-icon { font-size: 24px; color: rgba(124,58,237,0.2); }

/* CREATIVE GRID */
.creative-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.creative-card {
    background: var(--card-bg); backdrop-filter: blur(16px);
    padding: 48px 36px; display: flex; flex-direction: column;
    text-decoration: none; color: inherit; border-radius: 28px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
}
.creative-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hover); }
.c-icon-box {
    width: 80px; height: 80px;
    border-radius: 24px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 40px;
    font-size: 28px; color: white;
    box-shadow: var(--shadow-btn);
}
.creative-card:nth-child(1) .c-icon-box { background: linear-gradient(135deg, #60A5FA, #2563EB); }
.creative-card:nth-child(2) .c-icon-box { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.creative-card:nth-child(3) .c-icon-box { background: linear-gradient(135deg, #F9A8D4, #DB2777); }
.c-title {
    font-family: 'Nunito', sans-serif; font-size: 22px; font-weight: 800;
    color: var(--fg); margin-bottom: 14px; letter-spacing: -0.02em;
}
.c-desc { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.c-btn {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
    margin-top: auto; display: flex; align-items: center; gap: 8px;
}

/* ====================
   ATTAINMENTS
==================== */
.attainment-list { display: flex; flex-direction: column; gap: 0; }
.attainment-row {
    display: grid; grid-template-columns: 160px 1fr auto;
    align-items: center; padding: 40px 24px;
    border-bottom: 1px solid rgba(124,58,237,0.08);
    border-radius: 0; transition: all 0.4s var(--ease);
}
.attainment-row:hover {
    padding-left: 40px;
    background: rgba(124,58,237,0.04);
    border-radius: 20px;
}
.a-year {
    font-family: 'DM Mono', monospace; font-size: 15px;
    color: rgba(124,58,237,0.35); font-weight: 500;
}
.attainment-row:hover .a-year { color: var(--accent); }
.a-info { display: flex; flex-direction: column; gap: 6px; }
.a-category {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: var(--accent); text-transform: uppercase; letter-spacing: 1px;
}
.a-title {
    font-family: 'Nunito', sans-serif; font-size: 26px;
    font-weight: 800; color: var(--fg); letter-spacing: -0.02em;
}
.attainment-row:hover .a-title { color: var(--accent); }
.a-icon { font-size: 28px; color: rgba(124,58,237,0.15); }

/* ====================
   EXPLORE
==================== */
.explore-app {
    display: grid; grid-template-columns: 320px 1fr;
    min-height: 100vh;
}
.explore-sidebar {
    padding: 80px 48px;
    display: flex; flex-direction: column; justify-content: space-between;
    background: rgba(255,255,255,0.5); backdrop-filter: blur(20px);
    border-right: 1px solid rgba(124,58,237,0.08);
}
.brand-diamond {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex; align-items: center; justify-content: center;
    transform: rotate(45deg); margin-bottom: 48px; border-radius: 14px;
    box-shadow: var(--shadow-btn);
}
.brand-diamond span {
    transform: rotate(-45deg); font-weight: 900;
    color: white; font-family: 'Nunito', sans-serif; font-size: 22px;
}
.sidebar-title {
    font-family: 'Nunito', sans-serif; font-size: 38px; font-weight: 900;
    line-height: 1.05; margin-bottom: 24px; color: var(--fg);
    letter-spacing: -0.03em;
}
.sidebar-desc { font-size: 15px; color: var(--muted); line-height: 1.8; }
.scroll-indicator { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.thin-line { width: 36px; height: 1.5px; background: rgba(124,58,237,0.2); border-radius: 2px; }
.scroll-indicator span {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: rgba(124,58,237,0.35); text-transform: uppercase; letter-spacing: 2px;
}

.explore-content {
    padding: 80px; display: grid;
    grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.explore-card {
    position: relative;
    background: var(--card-bg); backdrop-filter: blur(16px);
    padding: 52px 40px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    border-radius: 28px;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--ease); overflow: hidden;
}
.explore-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-card-hover); }
.ecard-1 { grid-column: span 7; grid-row: span 3; }
.ecard-2 { grid-column: span 5; grid-row: span 4; }
.ecard-3 { grid-column: span 5; grid-row: span 3; margin-top: -60px; }
.ecard-4 { grid-column: span 7; grid-row: span 2; }
.card-eyebrow {
    font-family: 'DM Mono', monospace; font-size: 9px;
    color: var(--accent); text-transform: uppercase;
    margin-bottom: 18px; display: block; letter-spacing: 1px;
}
.card-title {
    font-family: 'Nunito', sans-serif; font-size: 28px; font-weight: 800;
    color: var(--fg); margin-bottom: 20px; letter-spacing: -0.02em;
}
.card-desc-e { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
.card-footer-e { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.card-num-e {
    font-family: 'DM Mono', monospace; font-size: 10px;
    color: rgba(124,58,237,0.3); letter-spacing: 1px;
}
.card-link {
    font-size: 22px; color: var(--accent);
    transition: transform 0.3s var(--ease);
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(124,58,237,0.08);
    box-shadow: inset 3px 3px 6px rgba(124,58,237,0.08), inset -3px -3px 6px rgba(255,255,255,0.7);
}
.explore-card:hover .card-link { transform: translate(4px,-4px); }

/* Explore card accent stripe */
.ecard-1::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--accent), var(--accent-alt)); border-radius: 28px 28px 0 0; }
.ecard-2::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--sky), var(--emerald)); border-radius: 28px 28px 0 0; }
.ecard-3::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--amber), #F97316); border-radius: 28px 28px 0 0; }
.ecard-4::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--accent-alt), #9333EA); border-radius: 28px 28px 0 0; }

/* ====================
   CONNECT
==================== */
#section-connect main {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; padding: 0 48px;
}
.desktop-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 80px; max-width: 1300px; width: 100%;
}
.contact-header { max-width: 480px; }
.status-dot {
    display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
    font-family: 'DM Mono', monospace; font-size: 10px;
    color: var(--emerald); text-transform: uppercase; letter-spacing: 1px;
}
.dot-pulse {
    width: 10px; height: 10px; background: var(--emerald);
    border-radius: 50%; box-shadow: 0 0 10px var(--emerald);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%{transform:scale(1);opacity:1} 50%{transform:scale(2.5);opacity:0} 100%{transform:scale(1);opacity:0} }
.contact-header h1 {
    font-family: 'Nunito', sans-serif; font-size: clamp(60px, 8vw, 100px);
    font-weight: 900; line-height: 0.88; margin-bottom: 20px;
    letter-spacing: -0.04em; color: var(--fg);
}
.contact-header .outline {
    color: transparent; -webkit-text-stroke: 2px var(--accent);
}
.contact-header p { font-size: 16px; color: var(--muted); line-height: 1.8; }

.rs-contact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; flex: 1; min-width: 460px;
}
.contact-card {
    background: var(--card-bg); backdrop-filter: blur(12px);
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--muted); text-decoration: none;
    border-radius: 24px; box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
}
.contact-card:hover {
    color: var(--accent); transform: translateY(-8px) scale(1.04);
    box-shadow: var(--shadow-card-hover);
}

.rs-mail-card {
    grid-column: span 4;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: white; border: none; padding: 44px;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; border-radius: 28px;
    box-shadow: var(--shadow-btn);
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.rs-mail-card::before {
    content: '';
    position: absolute; inset: 0; border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}
.rs-mail-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-btn-hover); }
.rs-mc-tag {
    font-family: 'DM Mono', monospace; font-size: 10px;
    margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700; opacity: 0.85;
}
.rs-mc-pulse {
    width: 8px; height: 8px; background: white; border-radius: 50%; opacity: 0.6;
    animation: rs-pulse 2s infinite;
}
@keyframes rs-pulse { 0%{transform:scale(1);opacity:0.6} 50%{transform:scale(1.6);opacity:0} 100%{transform:scale(1);opacity:0.6} }
.rs-mc-title {
    font-family: 'Nunito', sans-serif; font-size: 42px;
    font-weight: 900; line-height: 0.95; letter-spacing: -0.03em;
}
.rs-mc-title em { font-style: italic; opacity: 0.65; }
.rs-mc-icon { font-size: 44px; }
.rs-mc-arrow { font-size: 22px; opacity: 0.55; margin-top: 8px; }

.system-footer {
    padding: 48px 8%; border-top: 1px solid rgba(124,58,237,0.08);
    display: flex; justify-content: space-between;
    font-family: 'DM Mono', monospace; font-size: 10px;
    color: rgba(124,58,237,0.3); text-transform: uppercase; letter-spacing: 2px;
}

/* ====================
   CONTACT MODAL
==================== */
#contact-modal {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(100,80,140,0.25); backdrop-filter: blur(18px);
    align-items: center; justify-content: center; padding: 24px;
    animation: modalIn .4s var(--ease);
}
@keyframes modalIn { from{opacity:0;transform:scale(0.96)} to{opacity:1;transform:scale(1)} }
.cm-box {
    background: rgba(255,255,255,0.88); backdrop-filter: blur(24px);
    padding: 64px; max-width: 640px; width: 100%;
    border-radius: 40px; position: relative;
    box-shadow: var(--shadow-deep);
}
.cm-close {
    position: absolute; top: 24px; right: 24px;
    background: var(--surface); border: none;
    color: var(--muted); font-size: 24px; cursor: pointer;
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s var(--ease);
}
.cm-close:hover { color: var(--accent); transform: scale(1.1); }
.cm-title {
    font-family: 'Nunito', sans-serif; font-size: 40px;
    font-weight: 900; margin-bottom: 18px; color: var(--fg);
    letter-spacing: -0.03em;
}
.cm-title em { color: var(--accent); font-style: italic; }
.cm-desc { color: var(--muted); line-height: 1.8; margin-bottom: 40px; font-size: 15px; }
.cm-input {
    background: var(--surface); border: none;
    padding: 18px 22px; color: var(--fg);
    font-family: 'DM Sans', sans-serif; font-size: 15px;
    border-radius: 18px; width: 100%;
    box-shadow: var(--shadow-pressed);
    outline: none; transition: all 0.3s var(--ease);
}
.cm-input:focus { background: white; box-shadow: var(--shadow-card); }
.cm-input::placeholder { color: var(--muted); }
.cm-submit {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: white; border: none; padding: 22px 36px;
    font-weight: 700; cursor: pointer;
    text-transform: uppercase; letter-spacing: 2px;
    font-family: 'DM Mono', monospace; font-size: 11px;
    border-radius: 18px; width: 100%;
    box-shadow: var(--shadow-btn);
    transition: all 0.3s var(--ease);
}
.cm-submit:hover { transform: translateY(-3px); box-shadow: var(--shadow-btn-hover); }
.cm-submit:active { transform: scale(0.96); box-shadow: var(--shadow-pressed); }

/* ====================
   RESPONSIVE
==================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .visual-chamber { padding: 60px; border-left: none; border-top: 1px solid rgba(124,58,237,0.08); }
    .passions-container { grid-template-columns: 1fr; }
    .creative-grid { grid-template-columns: 1fr; }
    .explore-app { grid-template-columns: 1fr; }
    .desktop-row { flex-direction: column; align-items: flex-start; gap: 40px; }
    .rs-contact-grid { width: 100%; grid-template-columns: repeat(2, 1fr); min-width: 0; }
    .rs-mail-card { grid-column: span 2; }
    .explore-sidebar { height: auto; border-right: none; border-bottom: 1px solid rgba(124,58,237,0.08); }
    .explore-content { padding: 48px; }
    .management-card { grid-template-columns: 1fr; }
    .ecard-1, .ecard-2, .ecard-3, .ecard-4 { grid-column: span 12; grid-row: span 1; margin-top: 0; }
}
@media (max-width: 768px) {
    .page-wrap { padding: 60px 24px; }
    .efforts-wrap { padding: 40px 24px; }
    .attainment-row { grid-template-columns: 100px 1fr; }
    .a-icon { display: none; }
    .explore-content { padding: 32px 24px; grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
