/* --- 1. Variables & Reset --- */
:root {
    --bg-cream: #F6EECD;
    --green-deep: #3F756C;
    --green-neon: #4FA89B;
    --terracotta: #C6743E;
    --gold: #E1C789;
    --text-main: #2D3436;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-cream);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.5; /* Line height diperkecil dikit */
    overflow-x: hidden;
    height: 100vh; /* Kunci tinggi layar */
}

/* --- 2. Navbar Compact --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%; /* Padding diperkecil */
    height: 80px; /* Tinggi navbar fix */
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--green-deep);
}

.dot { color: var(--terracotta); font-size: 2rem; line-height: 0; }

.links a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.95rem; /* Font menu diperkecil dikit */
    transition: 0.3s;
}
.links a:hover { color: var(--terracotta); }

/* --- 3. Hero Layout (Anti Scroll) --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    height: calc(100vh - 80px); /* Sisa tinggi layar setelah navbar */
    display: flex;
    align-items: center; /* Tengahkan vertikal */
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

/* --- 4. Typography Compact --- */
.content { flex: 1.2; will-change: transform, opacity; } /* Memberi ruang lebih untuk teks */

.badge {
    display: inline-block;
    background: rgba(63, 117, 108, 0.1);
    color: var(--green-deep);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
    border: 1px solid rgba(63, 117, 108, 0.2);
}

/* Typing Cursor Effect */
.badge::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 4px;
    opacity: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

h1 {
    font-size: 2.8rem; /* UKURAN DIPERKECIL (Tadinya 3.5rem) */
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--green-deep);
    letter-spacing: -1px;
}

.role {
    font-size: 1.1rem;
    color: var(--terracotta);
    margin-bottom: 20px;
    font-weight: 600;
}

.bio {
    color: #555;
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 95%; /* Melebarkan teks agar tidak terlalu panjang ke bawah */
}

/* --- 5. Buttons & Icons --- */
.cta-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background-color: var(--green-deep);
    color: var(--bg-cream);
    padding: 12px 30px; /* Padding tombol disesuaikan */
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(63, 117, 108, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(63, 117, 108, 0.5);
}

/* LinkedIn Button Style */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(63, 117, 108, 0.2);
    border-radius: 8px;
    color: var(--green-deep);
    transition: all 0.3s;
}

.btn-icon:hover {
    border-color: var(--green-deep);
    background: var(--green-deep);
    color: var(--bg-cream);
    transform: translateY(-3px);
}

.btn-secondary { /* Style navbar button "Let's Talk" */
    border: 1px solid var(--green-deep);
    padding: 8px 20px;
    border-radius: 6px;
}

/* --- 6. Visual --- */
.visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 450px; /* Ukuran gambar dibatasi agar tidak "makan tempat" */
    height: auto;
    position: relative;
    z-index: 2;
}

.glow-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

/* --- 7. MODAL STYLES (Pop Up) --- */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(63, 117, 108, 0.6); /* Backdrop Hijau Gelap Transparan */
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 1px solid var(--green-deep);
    animation: popUp 0.3s ease-out forwards;
}

@keyframes popUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-img {
    width: 150px;
    margin-bottom: 20px;
}

.modal-content h2 { color: var(--green-deep); margin-bottom: 10px; }
.modal-content p { color: #666; margin-bottom: 25px; }

.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    color: var(--terracotta);
    cursor: pointer;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }
    .container { height: auto; padding-top: 20px; padding-bottom: 40px; }
    h1 { font-size: 2.2rem; }
    .hero-img { max-width: 280px; margin-bottom: 20px; }
    .cta-group { justify-content: center; }
    .links { display: none; } /* Hide menu on mobile for now simple */
}

/* --- VISUAL COMPOSITION (SIDE BY SIDE) --- */
.visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- VISUAL COMPOSITION (SIDE BY SIDE - DOMINANT AVATAR) --- */

.visual-row {
    display: flex;
    align-items: center; /* Sejajar vertikal tengah */
    justify-content: center; /* Memastikan di tengah */
    gap: 10px; /* Jarak dibuat rapat agar terlihat menyatu */
    position: relative;
    z-index: 2;
}

/* 1. Ilustrasi Tech (Pendukung - Dikecilkan) */
.hero-img {
    width: 100%;
    max-width: 260px; /* Dikecilkan (Tadi 400px) agar tidak mendominasi */
    height: auto;
    opacity: 0.9; /* Sedikit transparan agar fokus ke Avatar */
    transition: transform 0.5s ease;
}

/* 2. Avatar Wrapper (UTAMA - Dibesarkan Signifikan) */
.avatar-wrapper {
    position: relative;
    width: 300px; /* DIBESARKAN (Tadi 180px) -> Ini kuncinya */
    height: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Style Bingkai Foto */
    padding: 12px; /* Padding bingkai sedikit ditebalkan */
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(63, 117, 108, 0.2); /* Bayangan lebih tegas */
    transform: scale(1); /* Default scale normal */
    z-index: 5; /* Pastikan dia di atas kalau gesekan */
}

.avatar-img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* --- INTERACTION (POP UP LEBIH DRAMATIS) --- */

.avatar-wrapper:hover {
    transform: scale(1.1) rotate(-2deg); /* Membesar lagi saat hover */
    box-shadow: 0 25px 50px rgba(63, 117, 108, 0.3);
    z-index: 10;
}

/* Label Nama - Posisi disesuaikan karena gambar makin besar */
.floating-label {
    position: absolute;
    top: -50px; /* Lebih tinggi karena gambarnya besar */
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem; /* Font dibesarkan sedikit */
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(198, 116, 62, 0.4);
}

.avatar-wrapper:hover .floating-label {
    top: -20px; /* Posisi akhir saat hover */
    opacity: 1;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .visual-row {
        flex-direction: column-reverse; 
        gap: 20px;
    }
    /* Di HP kita kecilkan lagi biar masuk layar */
    .hero-img { max-width: 200px; }
    .avatar-wrapper { width: 220px; }
}

/* --- SCROLL HINT (Isyarat Ke Bawah) --- */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--green-deep);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--green-deep);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 18px; }
}

/* --- SECTION 5: THE HOOK (FIXED & CLEAN) --- */

.hook-section {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Padding atas disesuaikan agar pas di tengah */
    padding: 40px 5% 0 5%; 
    position: relative;
    overflow: hidden;
}

.hook-container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
    /* Pastikan teks punya prioritas layer lebih tinggi dari gambar */
    z-index: 10; 
}

/* Typography */
.hook-title {
    font-size: 3.5rem;
    color: var(--green-deep);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
    line-height: 1.1;
    position: relative;
    z-index: 3;
}

.hook-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    /* Beri jarak aman ke gambar, jangan ditarik paksa */
    margin-bottom: 20px; 
    position: relative;
    z-index: 3;
}

/* Visual Container */
.crossroad-visual {
    width: 100%;
    max-width: 1300px; /* Gambar lebar */
    margin: 0 auto;
    
    /* Hapus border/shadow agar seamless */
    border-radius: 0; 
    box-shadow: none; 
    
    position: relative;
    z-index: 1; /* Layer di bawah teks */

    /* Animasi 'Bernapas' Halus (Floating) */
    animation: float 6s ease-in-out infinite;
}

/* ... (Kode sebelumnya di dalam .crossroad-visual tetap sama) ... */

.hook-img {
    width: 100%;
    height: auto;
    display: block;
    
    /* Untuk Browser Modern (Chrome, Edge, Firefox baru) */
    mask-image: radial-gradient(
        ellipse at center, 
        black 50%,      /* Tengah gambar jelas sampai 50% */
        transparent 90% /* Mulai memudar dan transparan total di pinggir 95% */
    );

    /* Untuk Safari/WebKit (Wajib ada buat iPhone/Mac) */
    -webkit-mask-image: radial-gradient(
        ellipse at center, 
        black 50%,
        transparent 90%
    );
}

/* ... (Sisa kode tetap sama) ... */

/* Hapus shine effect karena statis lebih elegan */
.hook-shine { display: none; }

/* Definisi Animasi Floating */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* Naik dikit */
    100% { transform: translateY(0px); }
}

/* --- Floating Logos (Hook Section) --- */
.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2; /* Above image */
}

.float-logo {
    position: absolute;
    object-fit: contain;
    opacity: 0; /* Start hidden for fade-in */
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 15px rgba(63, 117, 108, 0.1));
}

.float-logo.visible {
    opacity: 0.9;
}

.float-logo:hover {
    transform: scale(1.1) rotate(0deg) !important; /* Reset rotation on hover */
    opacity: 1;
    z-index: 5;
}

/* Positions & Dynamic Sizing (Centered & Above Image) */
.logo-1 { 
    width: 120px; height: 120px; 
    top: 5%; left: 15%; 
    transform: rotate(-15deg);
    animation-duration: 7s;
}
.logo-2 { 
    width: 110px; height: 110px; 
    top: 10%; right: 15%; 
    transform: rotate(10deg);
    animation-delay: 1s;
}
.logo-3 { 
    width: 100px; height: 100px; 
    top: 70%; left: 25%; 
    transform: rotate(5deg);
    animation-delay: 2.5s;
    animation-duration: 8s;
}
.logo-4 { 
    width: 130px; height: 130px; 
    top: 65%; right: 25%; 
    transform: rotate(-10deg);
    animation-delay: 4s;
}
.logo-5 { 
    width: 90px; height: 90px; 
    top: 25%; left: 35%; 
    transform: rotate(-25deg);
    animation-delay: 1.5s;
    animation-duration: 9s;
}
.logo-6 { 
    width: 95px; height: 95px; 
    top: 20%; right: 35%; 
    transform: rotate(20deg);
    animation-delay: 3.5s;
    animation-duration: 7.5s;
}

/* Responsive HP */
@media (max-width: 768px) {
    .hook-title { font-size: 2.2rem; }
    .hook-subtitle { font-size: 1rem; margin-bottom: 10px; }
    .hook-section { padding-top: 60px; min-height: auto; }
    
    /* Adjust logos for mobile */
    .float-logo { width: 70px !important; height: 70px !important; }
    .logo-1 { left: 5%; top: 0%; }
    .logo-2 { right: 5%; top: 5%; }
    .logo-3 { left: 5%; top: 25%; }
    .logo-4 { right: 5%; top: 30%; }
    .logo-5 { left: 2%; top: 50%; }
    .logo-6 { right: 2%; top: 55%; }
}

/* --- SECTION: THE PARADOX --- */
.paradox-section {
    width: 100%;
    min-height: 100vh;
    padding: 30px 5%;
    background-color: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/img/paradox.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.paradox-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(246, 238, 205, 0.35);
    z-index: 1;
}

.paradox-container {
    max-width: 1200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.paradox-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--green-deep);
    line-height: 1.2;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(63, 117, 108, 0.1);
}

.paradox-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: -10px; /* Sedikit mendekat ke subtitle */
    margin-bottom: 10px;
}

.badge-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.badge-logo:hover {
    transform: scale(1.1);
}

.paradox-subtitle {
    font-weight: 500;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 20px rgba(63, 117, 108, 0.08);
}

.paradox-story {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.45); /* Transparan */
    backdrop-filter: blur(5px); /* Efek blur di belakangnya */
    padding: 30px;
    border-radius: 16px;
    max-width: 600px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(63, 117, 108, 0.05);
}

.paradox-story:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 40px rgba(63, 117, 108, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.linkedin-logo {
    width: 34px;
    height: 34px;
}

.story-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.story-author {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.2;
}

.story-source {
    font-size: 0.8rem;
    color: #666;
}

.story-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
}

.read-more {
    font-weight: 700;
    color: var(--green-deep);
    font-size: 0.95rem;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .paradox-title { font-size: 1.6rem; }
}

/* --- SECTION: JOURNAL / BLOG --- */
.journal-section {
    padding: 80px 5%;
    background-color: var(--bg-cream);
    display: flex;
    justify-content: center;
}

.journal-container {
    width: 100%;
    max-width: 1200px;
    height: auto; /* Override hero container height */
    display: block; /* Override flex from .container */
}

.journal-header {
    text-align: center;
    margin-bottom: 50px;
}

.journal-header h2 {
    font-size: 2.5rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.journal-header p {
    color: #555;
    font-size: 1.1rem;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.journal-card {
    background: #FFF;
    border: 1px solid rgba(63, 117, 108, 0.2);
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(63, 117, 108, 0.15);
}

.journal-date {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.journal-card h3 {
    font-size: 1.5rem;
    color: var(--green-deep);
    margin: 10px 0;
    line-height: 1.3;
}

.journal-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.journal-link {
    color: var(--green-deep);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

/* --- SECTION: JOURNEY --- */
.journey-section {
    width: 100%;
    min-height: 700px;
    background-image: url('/img/cafe_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.journey-card {
    position: absolute;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    z-index: 2;
}

.journey-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #3F756C;
    line-height: 1.1;
    margin-bottom: 10px;
}

.journey-card p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.journey-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 40px rgba(63, 117, 108, 0.2);
}

.top-left { top: 10%; left: 5%; max-width: 600px;}
.bottom-right { bottom: 13%; right: 5%; text-align: right; max-width: 400px; }

@media (max-width: 768px) {
    .journey-section { height: auto; min-height: 120vh; padding: 40px 5%; }
    .journey-card { position: relative; width: 100%; }
    .top-left { top: 0; left: 0; margin-bottom: 300px; text-align: center; }
    .bottom-right { bottom: 0; right: 0; text-align: center; }
}

.insta-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 15px;
    font-weight: 700;
    color: var(--green-deep);
}

/* --- SECTION: THE ASCENT --- */
.ascent-section {
    width: 100%;
    min-height: 100vh;
    background-image: url('/img/beyond.jpeg');
    background-size: cover;
    background-position: center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
}

.ascent-content {
    max-width: 700px;
    text-align: center;
    /* Glassmorphism effect for readability */
    backdrop-filter: blur(4px);
    background: rgba(246, 238, 205, 0.65); /* var(--bg-cream) with opacity */
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.ascent-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--green-deep);
    margin-bottom: 20px;
    line-height: 1.1;
}

.ascent-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .ascent-content h2 { font-size: 2.2rem; }
}

/* --- 8. Playful Features --- */

/* Feature 2: Timeline Navigation */
.timeline-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-nav ul {
    list-style: none;
    position: relative;
}

/* Vertical Line */
.timeline-nav ul::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px; /* Center of dot (14px width / 2 approx) */
    width: 2px;
    background: rgba(63, 117, 108, 0.2);
    z-index: -1;
}

.timeline-nav li {
    margin-bottom: 20px;
    position: relative;
}

.timeline-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.timeline-nav .dot {
    width: 14px;
    height: 14px;
    background: var(--bg-cream);
    border: 2px solid var(--green-deep);
    border-radius: 50%;
    transition: all 0.3s ease;
    display: block;
}

.timeline-nav a.active .dot {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: scale(1.3);
}

.timeline-nav .label {
    position: absolute;
    right: 25px;
    background: var(--green-deep);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.timeline-nav a:hover .label {
    opacity: 1;
    transform: translateX(0);
}

/* Feature 1: Sticky Avatar */
#guide-avatar {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Placed on Left to balance Timeline on Right */
    width: 90px;
    z-index: 999;
    transition: transform 0.3s ease;
    cursor: pointer;
}

#guide-avatar img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    transition: opacity 0.3s ease;
}

.avatar-tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #fff;
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom center;
    pointer-events: none;
}

.avatar-tooltip.show {
    transform: translateX(-50%) scale(1);
}

/* Feature 3: Humble Footer */
.humble-footer {
    background: var(--green-deep);
    color: var(--bg-cream);
    text-align: center;
    padding: 40px 20px;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.humble-footer p {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.humble-footer:hover p {
    opacity: 1;
}

.humble-footer .hidden-icon {
    opacity: 0;
    display: inline-block;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.humble-footer:hover .hidden-icon {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive: Hide Playful Features */
@media (max-width: 768px) {
    .timeline-nav, #guide-avatar {
        display: none;
    }
}