/* 
   =========================================
   DR. ISSAC JOHN PATTANIPARAMBI - STYLE SYSTEM
   =========================================
   Theme: "Rocket Sail Adventure" Color Palette
   Aesthetic: Futuristic Multi-Page Corporate-Tech
   =========================================
*/

/* --- CORE CUSTOM VARIABLES --- */
:root {
    --bg-darkest: #06070a;
    --bg-darker: #0c0f17;
    --bg-card: rgba(15, 20, 32, 0.65);
    
    /* Rocket Sail Adventure Palette Swatches */
    --swatch-black: #08090d;
    --swatch-slate: #8293a6;
    --swatch-navy: #0f4c81;
    --swatch-white: #ffffff;
    --swatch-orange: #f39c12;
    --swatch-cream: #f7d070;
    --swatch-mint: #81b29a;
    --swatch-teal: #006c5b;
    --swatch-taupe: #9a8284;
    
    /* Core Roles mapped from Palette */
    --accent-primary: var(--swatch-orange);
    --accent-secondary: var(--swatch-cream);
    --accent-navy: var(--swatch-navy);
    --accent-teal: var(--swatch-teal);
    --accent-mint: var(--swatch-mint);
    --accent-slate: var(--swatch-slate);
    --accent-taupe: var(--swatch-taupe);
    
    --border-card: rgba(130, 147, 166, 0.15);
    --border-glow: rgba(243, 156, 18, 0.25);
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--swatch-orange) 0%, var(--swatch-cream) 100%);
    --grad-navy: linear-gradient(135deg, var(--swatch-navy) 0%, var(--swatch-teal) 100%);
    --grad-cosmic: linear-gradient(135deg, var(--swatch-navy) 0%, var(--swatch-orange) 50%, var(--swatch-cream) 100%);
    --grad-taupe: linear-gradient(135deg, rgba(154, 130, 132, 0.15) 0%, rgba(130, 147, 166, 0.05) 100%);
    
    /* Text */
    --text-primary: var(--swatch-white);
    --text-secondary: #d1d9e6;
    --text-muted: var(--swatch-slate);
    
    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--swatch-black);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

body.loading {
    overflow: hidden;
}

/* Custom Selection */
::selection {
    background: rgba(243, 156, 18, 0.3);
    color: #fff;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--swatch-black);
}

::-webkit-scrollbar-thumb {
    background: var(--swatch-navy);
    border-radius: 4px;
    border: 2px solid var(--swatch-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--swatch-orange);
}

/* --- PARTICLE CANVAS & CURSOR GLOW --- */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.05) 0%, rgba(15, 76, 129, 0.03) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: width 0.3s ease, height 0.3s ease;
    mix-blend-mode: screen;
}

/* --- GLASSMORPHISM CARD COMPONENT --- */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.glass-card:hover {
    border-color: rgba(243, 156, 18, 0.3);
    box-shadow: 0 12px 40px 0 rgba(243, 156, 18, 0.1);
    transform: translateY(-4px);
}

/* --- FUTURISTIC PRELOADER --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--swatch-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.glow-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid var(--swatch-orange);
    border-right: 2px solid var(--swatch-navy);
    animation: rotateGlow 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -110px;
    margin-left: -80px;
}

.loader-logo {
    margin-bottom: 25px;
}

.logo-text {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 4px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.loader-bar-container {
    width: 240px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin: 15px auto;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--grad-primary);
    box-shadow: 0 0 10px var(--swatch-orange);
    transition: width 0.1s ease;
}

.loader-status {
    font-size: 0.8rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- BUTTONS & CONTROLS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--swatch-black);
    border: none;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(243, 156, 18, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--swatch-orange);
    color: var(--swatch-orange);
    background: rgba(243, 156, 18, 0.03);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.8rem;
    border: 1px solid var(--swatch-orange);
    color: var(--swatch-orange);
    background: transparent;
}

.btn-nav:hover {
    background: var(--swatch-orange);
    color: var(--swatch-black);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

/* --- FLOATING HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 9, 13, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(130, 147, 166, 0.1);
    transition: var(--transition-smooth);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.logo-bracket {
    color: var(--swatch-orange);
    font-weight: 500;
}

.logo-main {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 4px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--swatch-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

.nav-scroll-progress {
    height: 2.5px;
    width: 0%;
    background: var(--grad-primary);
    box-shadow: 0 0 8px var(--swatch-orange);
}

/* --- PAGE HERO CONTAINER --- */
.page-hero {
    position: relative;
    padding: 180px 24px 80px;
    background: linear-gradient(180deg, rgba(15, 76, 129, 0.08) 0%, rgba(8, 9, 13, 0) 100%);
    border-bottom: 1px solid rgba(130, 147, 166, 0.05);
    text-align: center;
    overflow: hidden;
}

.page-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.06) 0%, rgba(15, 76, 129, 0.02) 60%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 5;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* --- HERO SECTION (HOME ONLY) --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 80px;
    overflow: hidden;
    z-index: 10;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.1) 0%, rgba(243, 156, 18, 0.04) 50%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(243, 156, 18, 0.05);
    border: 1px solid rgba(243, 156, 18, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--swatch-orange);
    box-shadow: 0 0 10px var(--swatch-orange);
    animation: pulseGlow 1.5s infinite alternate;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--swatch-orange);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 25px;
    height: 40px;
    display: flex;
    align-items: center;
}

#typewriter-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typewriter-cursor {
    color: var(--swatch-orange);
    animation: blinkCursor 0.8s infinite alternate;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Stats Glass Console */
.hero-stats-panel {
    z-index: 5;
}

.stats-glass {
    background: rgba(15, 20, 32, 0.65);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(130, 147, 166, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.stats-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stats-dot.green { background-color: #ff5f56; }
.stats-dot.yellow { background-color: #ffbd2e; }
.stats-dot.red { background-color: #27c93f; }

.stats-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-left: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 22px 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: rgba(243, 156, 18, 0.02);
    border-color: rgba(243, 156, 18, 0.15);
    transform: scale(1.03);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.gradient-cyan {
    background: linear-gradient(135deg, var(--swatch-orange) 0%, var(--swatch-cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-violet {
    background: linear-gradient(135deg, var(--swatch-navy) 0%, var(--swatch-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-emerald {
    background: linear-gradient(135deg, var(--swatch-mint) 0%, var(--swatch-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-orange {
    background: linear-gradient(135deg, var(--swatch-orange) 0%, var(--swatch-taupe) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* Scroll Mouse Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-fast);
    z-index: 10;
}

.scroll-indicator:hover {
    color: var(--swatch-orange);
}

.indicator-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

.scroll-indicator:hover .indicator-mouse,
.scroll-indicator:hover .indicator-wheel {
    border-color: var(--swatch-orange);
    background-color: var(--swatch-orange);
}

.indicator-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.indicator-arrow {
    width: 16px;
    height: 16px;
    animation: bounceArrow 1.5s infinite;
}

/* --- SECTION GENERAL STYLING --- */
.section {
    padding: 90px 24px;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.section-header {
    max-width: 750px;
    margin: 0 auto 60px;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--swatch-orange);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- GRID SYSTEM --- */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* --- PROFILE INTERACTIVE TERMINAL --- */
.profile-tabs-container {
    width: 100%;
}

.profile-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(130, 147, 166, 0.1);
    color: var(--text-secondary);
    padding: 14px 28px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover {
    color: var(--swatch-orange);
    border-color: rgba(243, 156, 18, 0.2);
    background: rgba(243, 156, 18, 0.01);
}

.tab-btn.active {
    color: var(--swatch-orange);
    border-color: var(--swatch-orange);
    background: rgba(243, 156, 18, 0.05);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.15);
}

.profile-content-panel {
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: paneEntrance 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.tab-pane.active {
    display: block;
}

.pane-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: var(--swatch-orange);
    color: var(--swatch-black);
    border-radius: 4px;
    font-weight: 700;
}

.pane-text {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.personal-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-item svg {
    color: var(--swatch-orange);
    margin-top: 4px;
    flex-shrink: 0;
}

.highlight-item .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-item .val {
    font-weight: 500;
    color: var(--text-primary);
}

/* Bio Extra columns */
.tech-box {
    background: var(--grad-taupe);
    border: 1px solid rgba(130, 147, 166, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.box-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--swatch-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tech-quote-card {
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.15) 0%, rgba(243, 156, 18, 0.03) 100%);
    border: 1px solid rgba(15, 76, 129, 0.2);
    border-radius: 12px;
    padding: 30px;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: rgba(243, 156, 18, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.quote-author {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--swatch-orange);
    font-weight: 600;
}

/* TAB 2 - ROLES GRID */
.roles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.role-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(130, 147, 166, 0.08);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.role-card:hover {
    background: rgba(243, 156, 18, 0.01);
    border-color: rgba(243, 156, 18, 0.2);
    transform: translateX(4px);
}

.role-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.role-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.role-icon-wrapper.cyan { background: rgba(243, 156, 18, 0.08); color: var(--swatch-orange); }
.role-icon-wrapper.violet { background: rgba(15, 76, 129, 0.08); color: var(--swatch-navy); }
.role-icon-wrapper.emerald { background: rgba(129, 178, 154, 0.08); color: var(--swatch-mint); }
.role-icon-wrapper.orange { background: rgba(247, 208, 112, 0.08); color: var(--swatch-cream); }
.role-icon-wrapper.red { background: rgba(0, 108, 91, 0.08); color: var(--swatch-teal); }
.role-icon-wrapper.blue { background: rgba(154, 130, 132, 0.08); color: var(--swatch-taupe); }

.role-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.role-org {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--swatch-orange);
    font-weight: 600;
    margin-bottom: 8px;
}

.role-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* TAB 3 - SOCIAL IMPACT POINTS */
.impact-point {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(130, 147, 166, 0.08);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.impact-point:hover {
    border-color: rgba(243, 156, 18, 0.2);
    background: rgba(243, 156, 18, 0.01);
}

.point-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.point-header svg {
    color: var(--swatch-orange);
    width: 24px;
    height: 24px;
}

.point-header h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.impact-point p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* --- CAREER ORBIT TIMELINE --- */
.timeline-section {
    position: relative;
}

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

/* Timeline Vertical Line */
.timeline-line {
    position: absolute;
    width: 4px;
    background: rgba(255, 255, 255, 0.05);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-progress {
    position: absolute;
    width: 100%;
    background: var(--grad-primary);
    top: 0;
    height: 0%;
    box-shadow: 0 0 10px var(--swatch-orange);
}

/* Timeline Items */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
    opacity: 0.4;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

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

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

/* Timeline Glowing Dot */
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--swatch-black);
    border: 3px solid rgba(255, 255, 255, 0.2);
    top: 40px;
    z-index: 10;
    transition: var(--transition-smooth);
}

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

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

.timeline-item.revealed .timeline-dot {
    border-color: var(--swatch-orange);
    box-shadow: 0 0 15px var(--swatch-orange);
    background: var(--swatch-orange);
}

/* Timeline Card */
.timeline-card {
    padding: 30px;
}

.timeline-date {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--swatch-orange);
    margin-bottom: 12px;
}

.timeline-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-org {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.timeline-card p:last-child {
    margin-bottom: 0;
}

.timeline-bg-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.015);
    pointer-events: none;
}

.timeline-item.left .timeline-bg-icon {
    left: 20px;
    right: auto;
}

/* --- DIASPORA & SOCIAL LEADERSHIP SECTION --- */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.leader-card {
    height: 100%;
}

.leader-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.leader-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-icon svg {
    width: 28px;
    height: 28px;
}

.leader-icon.cyan { background: rgba(243, 156, 18, 0.08); color: var(--swatch-orange); }
.leader-icon.violet { background: rgba(15, 76, 129, 0.08); color: var(--swatch-navy); }
.leader-icon.emerald { background: rgba(129, 178, 154, 0.08); color: var(--swatch-mint); }
.leader-icon.orange { background: rgba(247, 208, 112, 0.08); color: var(--swatch-cream); }

.leader-stat {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--text-secondary);
}

.leader-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.leader-role {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--swatch-orange);
    margin-bottom: 20px;
}

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

/* Card Glow Effect on Hover */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(243, 156, 18, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.leader-card:hover .card-glow {
    opacity: 1;
}

.leader-card:hover .gallery-image-container img {
    transform: scale(1.04);
}

/* --- KEY FEATS & GUINNESS RECORDS --- */
.feats-grid {
    margin-bottom: 40px;
}

.feat-box {
    display: flex;
    gap: 25px;
    padding: 30px;
}

.feat-badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.08);
    border: 1px solid rgba(243, 156, 18, 0.2);
    color: var(--swatch-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.15);
}

.feat-badge-icon svg {
    width: 26px;
    height: 26px;
}

.feat-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.feat-meta {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--swatch-orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.feat-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tv-showcase-panel {
    background: linear-gradient(135deg, rgba(15, 20, 32, 0.6) 0%, rgba(15, 76, 129, 0.05) 100%);
    border: 1px solid rgba(15, 76, 129, 0.2);
    padding: 50px 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.tv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(15, 76, 129, 0.1);
    color: var(--swatch-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(15, 76, 129, 0.2);
}

.tv-icon svg {
    width: 32px;
    height: 32px;
}

.tv-showcase-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* --- ACCOLADES & AWARDS TERMINAL --- */
.awards-terminal-box {
    padding: 40px;
}

.terminal-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(130, 147, 166, 0.1);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.terminal-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(130, 147, 166, 0.1);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--swatch-orange);
    border-color: rgba(243, 156, 18, 0.2);
}

.filter-btn.active {
    background: rgba(243, 156, 18, 0.05);
    border-color: var(--swatch-orange);
    color: var(--swatch-orange);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.15);
}

.terminal-search {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.terminal-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.terminal-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(130, 147, 166, 0.1);
    border-radius: 8px;
    padding: 12px 16px 12px 42px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.terminal-search input:focus {
    outline: none;
    border-color: var(--swatch-orange);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.15);
    background: rgba(243, 156, 18, 0.01);
}

/* Awards Display Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-height: 250px;
}

.award-item-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(130, 147, 166, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: scaleUpIn 0.5s ease forwards;
}

.award-item-card:hover {
    background: rgba(243, 156, 18, 0.02);
    border-color: rgba(243, 156, 18, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.award-cat-badge {
    align-self: flex-start;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.award-cat-badge.international { background: rgba(243, 156, 18, 0.08); color: var(--swatch-orange); }
.award-cat-badge.regional { background: rgba(15, 76, 129, 0.08); color: var(--swatch-navy); }
.award-cat-badge.national { background: rgba(129, 178, 154, 0.08); color: var(--swatch-mint); }

.award-item-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.award-item-card .conferrer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.award-item-card .meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.award-year {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--swatch-orange);
}

.no-awards-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
}

.no-awards-found svg {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
}

/* --- SECURED CONTACT TERMINUS --- */
.contact-grid {
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-icon.cyan { background: rgba(243, 156, 18, 0.08); color: var(--swatch-orange); }
.info-icon.violet { background: rgba(15, 76, 129, 0.08); color: var(--swatch-navy); }
.info-icon.emerald { background: rgba(129, 178, 154, 0.08); color: var(--swatch-mint); }

.info-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-link {
    display: block;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-link:hover {
    color: var(--swatch-orange);
}

.info-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.social-rings {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-ring {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(130, 147, 166, 0.1);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-ring:hover {
    color: var(--swatch-orange);
    border-color: var(--swatch-orange);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-panel {
    padding: 40px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(130, 147, 166, 0.1);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--swatch-orange);
    box-shadow: 0 0 10px var(--swatch-orange);
    animation: pulseGlow 1.5s infinite alternate;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(130, 147, 166, 0.15);
    padding: 10px 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 1px;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--swatch-orange);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -15px;
    font-size: 0.75rem;
    color: var(--swatch-orange);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    border: none;
}

/* --- FOOTER SECTION --- */
.footer {
    background-color: #030406;
    border-top: 1px solid rgba(130, 147, 166, 0.05);
    padding: 80px 24px 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--swatch-orange);
    margin-bottom: 25px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--swatch-orange);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid rgba(130, 147, 166, 0.05);
    padding: 30px 24px;
}

.footer-bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-tech-meta {
    display: flex;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(130, 147, 166, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

.meta-item svg {
    width: 12px;
    height: 12px;
    color: var(--swatch-orange);
}

/* --- ANIMATIONS --- */
@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(243, 156, 18, 0.2);
        opacity: 0.7;
    }
    100% {
        box-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
        opacity: 1;
    }
}

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

@keyframes scrollMouse {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes paneEntrance {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUpIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reveal utility */
.animate-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

body:not(.loading) .animate-reveal {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* --- RESPONSIVE SETUPS --- */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-stats-panel {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .awards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 850px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(8, 9, 13, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(130, 147, 166, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-menu.open {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left !important;
    }

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

    .timeline-dot {
        left: 20px !important;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .terminal-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .terminal-search {
        max-width: 1000px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .profile-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .tab-btn {
        justify-content: center;
    }

    .personal-highlights-grid {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .awards-terminal-box {
        padding: 20px;
    }

    .contact-form-panel {
        padding: 24px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
