/* ==========================================================================
   CSS CUSTOM VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-pure-black: #020204;
    --card-bg-glass: rgba(10, 10, 14, 0.75);
    --card-border-glass: rgba(255, 255, 255, 0.10);
    
    --text-primary: #f8f9fa;
    --text-secondary: #9a9ab0;
    --text-muted: #525266;
    
    /* Branding Colors */
    --lime-glow-core: #89F336;
    --lime-glow-rgba: rgba(137, 243, 54, 0.40);
    --amber-glow-core: #fba001;
    --amber-glow-rgba: rgba(251, 160, 1, 0.40);
    --purple-glow-core: #7928CA;

    /* Official Social Brand Colors */
    --color-facebook: #1877F2;
    --color-tiktok: #25F4EE;
    --color-instagram: #E1306C;
    --color-linkedin: #0A66C2;
    
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'Space Grotesk', monospace;
    
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-apple: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-pure-black);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    background: #020204;
}

/* Color Helper Classes */
.lime-text { color: var(--lime-glow-core) !important; }
.amber-text { color: var(--amber-glow-core) !important; }

/* ==========================================================================
   SPACE ATMOSPHERE & GALACTIC BACKGROUND ENGINE
   ========================================================================== */
.space-grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(137, 243, 54, 0.03) 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
}

.cosmic-nebula-1 {
    position: fixed;
    top: 25%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 70vw;
    height: 70vw;
    max-width: 1000px;
    max-height: 1000px;
    background: radial-gradient(circle, rgba(137, 243, 54, 0.12) 0%, rgba(137, 243, 54, 0.03) 40%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
    animation: nebulaPulse 9s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.cosmic-nebula-2 {
    position: fixed;
    bottom: 15%;
    right: 10%;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(121, 40, 202, 0.15) 0%, rgba(251, 160, 1, 0.04) 45%, rgba(0,0,0,0) 75%);
    z-index: 1;
    pointer-events: none;
    animation: nebulaPulse 12s ease-in-out infinite alternate-reverse;
}

@keyframes nebulaPulse {
    0% { opacity: 0.5; transform: scale(0.95) translate(0, 0); }
    100% { opacity: 1; transform: scale(1.15) translate(-20px, 15px); }
}

/* ==========================================================================
   INTERACTIVE UI COMPONENTS & MOUSE SYSTEMS
   ========================================================================== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, transparent, var(--lime-glow-core), var(--amber-glow-core));
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 10px var(--lime-glow-core);
}

#custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--lime-glow-core);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s var(--transition-smooth), height 0.2s var(--transition-smooth), background-color 0.2s;
    box-shadow: 0 0 10px var(--lime-glow-core);
}

#cursor-blur {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(137, 243, 54, 0.35);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s linear, width 0.3s var(--transition-smooth), height 0.3s var(--transition-smooth);
}

.cursor-hovering #custom-cursor {
    width: 24px;
    height: 24px;
    background-color: rgba(137, 243, 54, 0.25);
    border: 1px solid var(--lime-glow-core);
}

.cursor-hovering #cursor-blur {
    width: 65px;
    height: 65px;
    border-color: rgba(137, 243, 54, 0.7);
}

/* ==========================================================================
   LAYOUT STRUCTURE & GLOBAL COMPONENTS
   ========================================================================== */
main {
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 40px;
    width: 100%;
}

.min-container {
    max-width: 820px;
}

.text-center { text-align: center; }

h2.section-title {
    font-family: var(--font-mono);
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 30%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    font-family: var(--font-mono);
    color: var(--lime-glow-core);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-shadow: 0 0 12px var(--lime-glow-rgba);
}

/* Premium Glass Cards */
.glass-card {
    background: var(--card-bg-glass);
    border: 1px solid var(--card-border-glass);
    border-radius: 24px;
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.5s var(--transition-apple), border-color 0.5s var(--transition-apple), box-shadow 0.5s var(--transition-apple);
    overflow: hidden;
    position: relative;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(137, 243, 54, 0.4);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.85), 0 0 30px rgba(137, 243, 54, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Button Component Map */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s var(--transition-smooth), opacity 0.3s, box-shadow 0.3s;
    cursor: pointer;
    font-family: var(--font-sans);
}

.btn-primary {
    background: linear-gradient(135deg, var(--lime-glow-core) 0%, #6cd61d 100%);
    color: #000000;
    border: none;
}

.btn-glow:hover {
    box-shadow: 0 0 35px var(--lime-glow-rgba), 0 0 15px var(--lime-glow-core);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-left: 15px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(137, 243, 54, 0.08);
    border-color: var(--lime-glow-core);
    box-shadow: 0 0 20px rgba(137, 243, 54, 0.2);
}

/* ==========================================================================
   NAVIGATION DESIGNS & CIRCULAR LOGO
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s var(--transition-smooth), border-color 0.4s;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(2, 2, 4, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-wrap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    padding: 2px;
    border: 2px solid var(--lime-glow-core);
    box-shadow: 0 0 15px var(--lime-glow-rgba);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s var(--transition-smooth);
    position: relative;
}

.nav-logo-wrap:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--lime-glow-core);
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.nav-status-indicator {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 11px;
    height: 11px;
    background-color: var(--lime-glow-core);
    border: 2px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 8px var(--lime-glow-core);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--lime-glow-core);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--transition-apple);
    box-shadow: 0 0 8px var(--lime-glow-core);
}

.nav-link.active::after, .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mobile-toggle { display: none; }

/* ==========================================================================
   HERO HOME ARCHITECTURE (ORBITAL SPACE CIRCLE)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(137, 243, 54, 0.06);
    border: 1px solid rgba(137, 243, 54, 0.25);
    font-size: 0.85rem;
    color: var(--lime-glow-core);
    font-family: var(--font-mono);
    margin-bottom: 24px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--lime-glow-core);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--lime-glow-core);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
}

.hero-visual {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-orbit-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px dashed rgba(137, 243, 54, 0.25);
    animation: rotateOrbit 25s linear infinite;
    pointer-events: none;
}

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

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.hero-title .greeting {
    display: block;
    font-size: 1.6rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0;
}

.hero-title .name {
    background: linear-gradient(180deg, #ffffff 40%, #b0b0ba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typing-container {
    height: 36px;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--lime-glow-core);
    font-weight: 600;
    text-shadow: 0 0 12px var(--lime-glow-rgba);
}

.typing-container .cursor {
    animation: blink 0.7s infinite;
    margin-left: 4px;
}

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

.hero-manifesto {
    font-size: 1.15rem;
    line-height: 1.65;
    color: #e4e4e7;
    margin-bottom: 32px;
    max-width: 620px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-cta-group {
    display: flex;
    align-items: center;
}

.hero-circle-frame {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    padding: 12px;
    background: rgba(10, 10, 14, 0.6);
    border: 2px solid rgba(137, 243, 54, 0.45);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 60px rgba(137, 243, 54, 0.25);
    position: relative;
    z-index: 2;
    animation: elegantFloat 7s ease-in-out infinite alternate;
}

.hero-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: brightness(100%);
}

.circle-rim {
    border-radius: 50%;
    box-shadow: inset 0 0 30px rgba(137, 243, 54, 0.45);
    border: 1px solid rgba(137, 243, 54, 0.35);
}

@keyframes elegantFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(1.5deg); }
}

/* ==========================================================================
   ABOUT ARCHITECTURE
   ========================================================================== */
.about-section {
    position: relative;
}

.about-headline {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #ffffff 20%, #86868b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card {
    padding: 40px;
    border-color: rgba(137, 243, 54, 0.15);
}

.about-body p {
    font-size: 1.18rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ==========================================================================
   DEDICATED CONTENT PLATFORMS SHOWCASE
   ========================================================================== */
.channels-section {
    position: relative;
}

.channel-subdesc {
    max-width: 600px;
    margin: -10px auto 50px auto;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.channel-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.card-glow-bg {
    position: absolute;
    top: 0; right: 0; width: 180px; height: 180px;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.5s;
}

.lime-glow-bg { background-color: var(--lime-glow-core); }
.amber-glow-bg { background-color: var(--amber-glow-core); }

.channel-card:hover .card-glow-bg { opacity: 0.35; }

.channel-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.channel-pfp-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg-glass);
    flex-shrink: 0;
}

.channel-pfp {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.lime-pfp-border {
    border: 2px solid var(--lime-glow-core);
    box-shadow: 0 0 15px var(--lime-glow-rgba);
}

.amber-pfp-border {
    border: 2px solid var(--amber-glow-core);
    box-shadow: 0 0 15px var(--amber-glow-rgba);
}

.channel-title-wrap {
    display: flex;
    flex-direction: column;
}

.channel-title {
    font-size: 1.6rem;
    font-weight: 700;
}

.channel-handle {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    margin-top: 2px;
}

.channel-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.btn-channel {
    align-self: flex-start;
    padding: 14px 32px;
    font-size: 0.92rem;
    border-radius: 24px;
}

.btn-lime {
    background: linear-gradient(135deg, var(--lime-glow-core) 0%, #76db2b 100%);
    color: #000;
}

.btn-lime:hover {
    box-shadow: 0 0 30px var(--lime-glow-rgba), 0 0 10px var(--lime-glow-core);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber-glow-core) 0%, #e59200 100%);
    color: #000;
}

.btn-amber:hover {
    box-shadow: 0 0 30px var(--amber-glow-rgba), 0 0 10px var(--amber-glow-core);
}

.junaid-channel-card:hover {
    border-color: var(--lime-glow-core);
}

.junirex-channel-card:hover {
    border-color: var(--amber-glow-core);
}

/* ==========================================================================
   TIMELINE JOURNEY
   ========================================================================== */
.journey-section {
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0 auto;
    padding: 40px 0;
}

.timeline-bar {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.06);
    transform: translateX(-50%);
}

#timeline-progress {
    background: linear-gradient(to bottom, var(--lime-glow-core), #a4ff4f);
    height: 0%;
    transition: height 0.1s linear;
    will-change: height;
    box-shadow: 0 0 12px var(--lime-glow-core);
}

.timeline-item {
    padding: 20px 0;
    width: 50%;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-apple);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left { left: 0; padding-right: 60px; }
.timeline-item.right { left: 50%; padding-left: 60px; }

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--bg-pure-black);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    position: absolute;
    top: 40px;
    left: 100%;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: background-color 0.5s, border-color 0.5s;
}

.timeline-item.active-dot .timeline-dot {
    background-color: var(--lime-glow-core);
    border-color: var(--lime-glow-core);
    box-shadow: 0 0 20px var(--lime-glow-core);
}

.timeline-item.right .timeline-dot { left: 0; }

.timeline-card {
    padding: 32px;
    position: relative;
}

.timeline-date {
    font-family: var(--font-mono);
    color: var(--lime-glow-core);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px var(--lime-glow-rgba);
}

.timeline-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.timeline-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.98rem;
}

.future-card {
    border: 1px dashed rgba(137, 243, 54, 0.5);
    background: rgba(137, 243, 54, 0.04);
}

/* ==========================================================================
   EDUCATION & SKILLS
   ========================================================================== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.premium-card {
    padding: 50px;
    position: relative;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(137, 243, 54, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.card-label {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.degree-title {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.institution-meta {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.skills-content-wrapper .section-title {
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.skill-chip {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 40px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.4s var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.skill-chip:hover {
    background: rgba(137, 243, 54, 0.12);
    border-color: var(--lime-glow-core);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(137, 243, 54, 0.15);
}

/* ==========================================================================
   CINEMATIC QUOTE SECTION WITH FADED SOFT-EDGE junaidinspire.jpeg
   ========================================================================== */
.quote-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-bg-img {
    height: 130%;
    max-height: 750px;
    width: auto;
    object-fit: contain;
    opacity: 0.42;
    filter: contrast(130%) brightness(88%);
    mix-blend-mode: lighten;
    
    /* CSS Gradient Mask to smoothly dissolve hard cut edges */
    -webkit-mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 85%),
                        linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: radial-gradient(circle at 50% 40%, black 30%, transparent 85%),
                linear-gradient(to bottom, black 60%, transparent 100%);
}

.quote-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(2, 2, 4, 0.2) 0%, rgba(2, 2, 4, 0.95) 85%);
}

.quote-glow-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(137, 243, 54, 0.18) 0%, transparent 70%);
    filter: blur(60px);
}

.quote-content-relative {
    position: relative;
    z-index: 2;
}

.cinematic-quote {
    font-family: var(--font-sans);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.04em;
    color: var(--text-muted);
    transition: color 0.8s var(--transition-apple);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.quote-line-white {
    color: rgba(180, 180, 190, 1);
    transition: color 0.8s var(--transition-apple);
}

.cinematic-quote.visible .quote-line-white {
    color: #ffffff;
}

.highlight-lime {
    background: linear-gradient(180deg, #ffffff 0%, var(--lime-glow-core) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(137, 243, 54, 0.4));
}

/* ==========================================================================
   STYLISH COMMUNITY FOOTER HUB WITH CIRCULAR LOGO
   ========================================================================== */
.footer {
    background: linear-gradient(to top, #010102 0%, var(--bg-pure-black) 100%);
    position: relative;
    z-index: 10;
}

.footer-top-border {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--lime-glow-core) 50%, transparent 100%);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    padding-bottom: 80px;
    padding-top: 100px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-wrap {
    position: relative;
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2px;
    border: 2px solid var(--lime-glow-core);
    box-shadow: 0 0 20px var(--lime-glow-rgba);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    background-color: var(--lime-glow-core);
    filter: blur(25px);
    opacity: 0.4;
    z-index: -1;
}

.footer-owner {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 40%, #86868b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 340px;
}

.footer-social-hub {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hub-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 0.12em;
    position: relative;
    padding-left: 16px;
}

.hub-title::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    background-color: var(--lime-glow-core);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--lime-glow-core);
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.footer-social-node {
    padding: 22px 26px;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 18px;
    transition: all 0.4s var(--transition-smooth);
}

.node-icon-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--transition-smooth);
}

.svg-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s var(--transition-smooth);
}

/* Custom Icon Colors */
.brand-lime { color: var(--lime-glow-core); }
.brand-amber { color: var(--amber-glow-core); }
.brand-fb { color: var(--color-facebook); }
.brand-tt { color: var(--color-tiktok); }
.brand-ig { color: var(--color-instagram); }
.brand-li { color: var(--color-linkedin); }

.node-meta {
    display: flex;
    flex-direction: column;
}

.platform-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.handle-tag {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    margin-top: 1px;
}

.node-catch {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Platform Hover Highlights */
.yt-lime-node:hover {
    border-color: rgba(137, 243, 54, 0.5);
    background: radial-gradient(circle at 100% 100%, rgba(137, 243, 54, 0.15) 0%, transparent 70%), rgba(15,15,18,0.9);
}
.yt-lime-node:hover .yt-lime-badge {
    background: rgba(137, 243, 54, 0.25);
    border-color: var(--lime-glow-core);
    box-shadow: 0 0 15px var(--lime-glow-rgba);
}

.yt-amber-node:hover {
    border-color: rgba(251, 160, 1, 0.5);
    background: radial-gradient(circle at 100% 100%, rgba(251, 160, 1, 0.15) 0%, transparent 70%), rgba(15,15,18,0.9);
}
.yt-amber-node:hover .yt-amber-badge {
    background: rgba(251, 160, 1, 0.25);
    border-color: var(--amber-glow-core);
    box-shadow: 0 0 15px var(--amber-glow-rgba);
}

.fb-node:hover {
    border-color: rgba(24, 119, 242, 0.5);
    background: radial-gradient(circle at 100% 100%, rgba(24, 119, 242, 0.15) 0%, transparent 70%), rgba(15,15,18,0.9);
}
.fb-node:hover .fb-badge {
    background: rgba(24, 119, 242, 0.25);
    border-color: var(--color-facebook);
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.35);
}

.tiktok-node:hover {
    border-color: rgba(37, 244, 238, 0.5);
    background: radial-gradient(circle at 100% 100%, rgba(37, 244, 238, 0.15) 0%, transparent 70%), rgba(15,15,18,0.9);
}
.tiktok-node:hover .tt-badge {
    background: rgba(37, 244, 238, 0.25);
    border-color: var(--color-tiktok);
    box-shadow: 0 0 15px rgba(37, 244, 238, 0.35);
}

.ig-node:hover {
    border-color: rgba(225, 48, 108, 0.5);
    background: radial-gradient(circle at 100% 100%, rgba(225, 48, 108, 0.15) 0%, transparent 70%), rgba(15,15,18,0.9);
}
.ig-node:hover .ig-badge {
    background: rgba(225, 48, 108, 0.25);
    border-color: var(--color-instagram);
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.35);
}

.li-node:hover {
    border-color: rgba(10, 102, 194, 0.5);
    background: radial-gradient(circle at 100% 100%, rgba(10, 102, 194, 0.15) 0%, transparent 70%), rgba(15,15,18,0.9);
}
.li-node:hover .li-badge {
    background: rgba(10, 102, 194, 0.25);
    border-color: var(--color-linkedin);
    box-shadow: 0 0 15px rgba(10, 102, 194, 0.35);
}

.footer-social-node:hover .svg-icon {
    transform: scale(1.18);
}

.footer-bottom {
    padding-top: 40px;
    padding-bottom: 50px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.copyright-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-animated-line {
    width: 80px;
    height: 2px;
    background-color: var(--lime-glow-core);
    border-radius: 2px;
    animation: linePulse 3.5s ease-in-out infinite alternate;
}

@keyframes linePulse {
    0% { width: 50px; opacity: 0.5; box-shadow: 0 0 0px transparent; }
    100% { width: 150px; opacity: 1; box-shadow: 0 0 18px var(--lime-glow-core); }
}

/* ==========================================================================
   SCROLL ENGINE VISIBILITY STRUCTS
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-apple), transform 0.8s var(--transition-apple);
    will-change: transform, opacity;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE LAYOUT ENGINE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 900px) {
    h2.section-title { font-size: 2.2rem; }
    
    .hero-section {
        padding-top: 90px;
        min-height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-visual {
        order: 1;
        width: 100%;
        margin-top: 10px;
    }

    .hero-orbit-ring {
        width: 300px;
        height: 300px;
    }

    .hero-circle-frame {
        width: 270px;
        height: 270px;
        padding: 8px;
    }

    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }

    .typing-container {
        font-size: 1.15rem;
        height: 32px;
        margin-bottom: 18px;
    }

    .hero-manifesto { 
        font-size: 1.05rem;
        margin-left: auto; 
        margin-right: auto;
        margin-bottom: 28px;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline-bar { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 50px !important; padding-right: 0 !important; }
    .timeline-dot { left: 20px !important; }
    
    .quote-section { padding: 100px 0; }
    .quote-bg-img { opacity: 0.35; height: 110%; }
    .cinematic-quote { font-size: 2.2rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-social-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px; height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }
    .mobile-toggle span {
        width: 100%; height: 2px;
        background-color: var(--text-primary);
        transition: transform 0.3s, opacity 0.3s;
        transform-origin: left;
    }
    .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg); }
    .mobile-toggle.open span:nth-child(2) { transform: rotate(-45deg); }
    
    .nav-menu {
        position: fixed;
        top: 0; left: 0; width: 100vw; height: 100vh;
        background-color: rgba(2, 2, 4, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%);
        transition: transform 0.6s var(--transition-apple);
        z-index: 1050;
    }
    .nav-menu.open { transform: translateY(0); }
}

@media (max-width: 600px) {
    .section-container { padding: 60px 20px; }
    .hero-title { font-size: 2.3rem; }
    .hero-circle-frame { width: 230px; height: 230px; }
    .hero-orbit-ring { width: 250px; height: 250px; }
    .cinematic-quote { font-size: 1.7rem; }
    .footer-social-grid { grid-template-columns: 1fr; }
    .btn-secondary { margin-left: 0; margin-top: 12px; }
    .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; }
    .hero-cta-group .btn { width: 100%; }
}