* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elegant Color Palette - Brighter Theme */
    --accent-color: #4FFFB0;
    --accent-dark: #00B894;
    --accent-glow: rgba(79, 255, 176, 0.15);
    --accent-glow-strong: rgba(79, 255, 176, 0.3);
    --dark-bg: #0d0d10;
    --card-bg: rgba(20, 20, 26, 0.85);
    --card-bg-solid: #14141a;
    --card-border: rgba(255, 255, 255, 0.1);
    --card-border-hover: rgba(79, 255, 176, 0.3);
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-subtle: rgba(255, 255, 255, 0.5);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-xs: 8px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    /* Gentle Apple-inspired easing — smooth ease-out, no overshoot/bounce */
    --transition-spring: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 24px 64px rgba(0, 0, 0, 0.35);
    /* Elegant layered elevation used on hover */
    --shadow-hover: 0 18px 48px -14px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-hover-glow: 0 18px 48px -14px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(79, 255, 176, 0.12), 0 10px 40px -12px rgba(79, 255, 176, 0.18);
}

body {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    perspective: 1000px;
}

.background-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url('assets/Geodesic Dome.jpg') center/cover;
    filter: brightness(0.65) saturate(1);
    transform-origin: center center;
    animation: globeEntrance 3s ease-out forwards, globeFloat 20s ease-in-out infinite 3s;
}

/* Epic 3D Globe Entrance Animation */
@keyframes globeEntrance {
    0% {
        transform: scale(1.4) rotateX(10deg) rotateY(-15deg);
        filter: brightness(0) saturate(0);
        opacity: 0;
    }
    40% {
        opacity: 1;
        filter: brightness(0.4) saturate(0.7);
    }
    70% {
        transform: scale(1.05) rotateX(3deg) rotateY(-3deg);
    }
    100% {
        transform: scale(1) rotateX(0deg) rotateY(0deg);
        filter: brightness(0.65) saturate(1);
        opacity: 1;
    }
}

/* Subtle Floating Animation */
@keyframes globeFloat {
    0%, 100% {
        transform: scale(1) translateY(0) rotateY(0deg);
    }
    25% {
        transform: scale(1.02) translateY(-8px) rotateY(1deg);
    }
    50% {
        transform: scale(1) translateY(0) rotateY(0deg);
    }
    75% {
        transform: scale(1.02) translateY(-5px) rotateY(-1deg);
    }
}

/* Ambient Light Glow Overlay */
.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(79, 255, 176, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(100, 200, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 15%, rgba(79, 255, 176, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 85%, rgba(0, 150, 136, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 10, 12, 0.05) 0%, rgba(10, 10, 12, 0.55) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Main Wrapper */
.main-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 48px 32px 32px;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.6) 0%, transparent 100%);
    animation: contentFadeIn 1.5s ease-out 0.5s both;
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-profile {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-image-container {
    flex-shrink: 0;
    position: relative;
}

.hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    object-fit: cover;
    background: var(--dark-bg);
    box-shadow: 
        0 0 0 8px rgba(79, 255, 176, 0.08),
        0 0 60px rgba(79, 255, 176, 0.2),
        var(--shadow-strong);
    transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
    animation: profilePop 1s ease-out 1s both, profileGlow 4s ease-in-out infinite 2s;
}

@keyframes profilePop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes profileGlow {
    0%, 100% {
        box-shadow: 
            0 0 0 8px rgba(79, 255, 176, 0.08),
            0 0 60px rgba(79, 255, 176, 0.2),
            var(--shadow-strong);
    }
    50% {
        box-shadow: 
            0 0 0 12px rgba(79, 255, 176, 0.12),
            0 0 80px rgba(79, 255, 176, 0.35),
            var(--shadow-strong);
    }
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 0 12px rgba(79, 255, 176, 0.12),
        0 0 80px rgba(79, 255, 176, 0.3),
        var(--shadow-strong);
}

.hero-info {
    flex: 1;
}

.hero-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    line-height: 1.05;
}

.hero-name::first-letter {
    color: var(--accent-color);
    font-size: 1.1em;
}

.hero-tagline {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.002em;
    line-height: 1.75;
    max-width: 660px;
    padding: 10px 14px;
    background: rgba(5, 8, 10, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    text-wrap: balance;
}

.tagline-line {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.tagline-line + .tagline-line {
    margin-top: 4px;
}

.tagline-part {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.3s var(--transition-smooth);
}

.tagline-sep {
    color: var(--accent-color);
    margin: 0 8px 0 0;
    font-weight: 700;
    opacity: 0.9;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* ========== PROFILE CARD (Navigation) ========== */
.profile-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
    animation: contentFadeIn 1.5s ease-out 0.8s both;
}

.navigation-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: transform 0.3s var(--transition-spring), background 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), color 0.3s var(--transition-smooth);
    cursor: pointer;
}

.nav-link span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link span i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 24px;
}

.nav-link:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateX(6px);
    box-shadow: var(--shadow-hover);
}

.nav-link:active {
    transform: translateX(6px) scale(0.995);
}

.nav-link:hover span {
    color: var(--accent-color);
}

.nav-link > i {
    font-size: 0.9rem;
    color: var(--text-subtle);
    transition: all 0.35s var(--transition-smooth);
}

.nav-link:hover > i {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* ========== CONTENT SECTIONS ========== */
.content-sections {
    display: none;
}

.content-sections.active {
    display: block;
}

.content-section {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-strong);
    animation: fadeIn 0.35s var(--transition-smooth);
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header with Back Button */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    color: var(--text-muted);
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
}

.back-btn:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    color: var(--accent-color);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

.content-section h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 32px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-section h4:first-of-type {
    margin-top: 0;
}

.content-section h4 i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* ========== YOUTUBE CHANNEL BLOCK ========== */
.channel-block {
    margin-bottom: 40px;
}

.channel-block.secondary-channel {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--card-border);
    margin-bottom: 0;
}

.channel-header {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
}

.channel-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px var(--accent-glow);
    flex-shrink: 0;
}

.channel-info {
    flex: 1;
}

.channel-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.channel-bio {
    margin-bottom: 0;
}

.channel-bio p {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.channel-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.15rem;
    padding: 16px 20px;
    margin-bottom: 16px;
    border-left: 3px solid var(--accent-color);
    background: var(--accent-glow);
    border-radius: 0 var(--border-radius-xs) var(--border-radius-xs) 0;
}

/* ========== CHANNEL CTA BUTTON - Big, Green Text on Gray ========== */
.channel-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 22px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    color: var(--accent-color);
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s var(--transition-spring), background 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
    margin-bottom: 32px;
}

.channel-cta-btn i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.channel-cta-btn:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.channel-cta-btn:active {
    transform: translateY(0) scale(0.995);
}

/* ========== VIDEO CARDS GRID ========== */
.youtube-top-work {
    margin-top: 32px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.video-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}

.video-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-overlay i {
    color: var(--dark-bg);
    font-size: 1.25rem;
    margin-left: 3px;
}

.video-title {
    padding: 16px;
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* ========== SHORTS SECTION ========== */
.youtube-shorts {
    margin-top: 40px;
}

.youtube-shorts h4 i {
    color: #ff0000;
}

.shorts-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.short-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.35s var(--transition-smooth);
}

.short-item:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateX(6px);
}

.short-item i {
    color: #ff0000;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.short-item span {
    font-size: 0.9rem;
    font-weight: 450;
    line-height: 1.5;
    color: var(--text-muted);
}

.short-item:hover span {
    color: var(--text-light);
}

/* ========== EXTERNAL LINKS ========== */
.youtube-links,
.tech-links,
.articles-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.35s var(--transition-smooth);
}

.external-link i {
    color: var(--accent-color);
    font-size: 1rem;
}

.external-link:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    color: var(--accent-color);
}

/* Second Channel Section */
.second-channel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
}

.second-channel-bio {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding: 0 4px;
}

/* ========== PROJECTS GRID ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.project-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    padding: 28px;
    transition: transform 0.45s var(--transition-spring), background 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.45s var(--transition-smooth);
    will-change: transform;
}

.project-item:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover-glow);
}

.project-item h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px !important;
    line-height: 1.4;
}

.project-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.project-item .external-link {
    margin-top: 16px;
    padding: 10px 18px;
    font-size: 0.85rem;
}

/* ========== INTERNSHIPS LIST ========== */
.internships-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.internship-item {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    padding: 28px;
    transition: transform 0.45s var(--transition-spring), background 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.45s var(--transition-smooth);
}

.internship-item:hover {
    border-color: var(--card-border-hover);
    background: var(--accent-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover-glow);
}

/* Featured internship (IISc) - subtle accent emphasis */
.internship-featured {
    border-color: rgba(79, 255, 176, 0.28);
    background: linear-gradient(180deg, rgba(79, 255, 176, 0.06) 0%, rgba(255, 255, 255, 0.02) 60%);
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin-bottom: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: var(--accent-glow);
    border: 1px solid rgba(79, 255, 176, 0.25);
    border-radius: 999px;
}

.featured-tag i {
    font-size: 0.7rem;
}

.internship-item h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px !important;
}

.internship-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.internship-item p strong {
    color: var(--text-light);
    font-weight: 500;
}

/* ========== ARTICLES GRID ========== */
.articles-grid,
.letters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.article-card,
.letter-card {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.article-card:hover,
.letter-card:hover {
    transform: translateY(-6px);
    border-color: var(--card-border-hover);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.5);
}

.article-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.article-card:hover .article-image img,
.letter-card:hover .article-image img {
    transform: scale(1.08);
}

.article-content {
    padding: 20px;
}

.article-content h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 8px !important;
}

.article-meta {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-subtle);
    font-size: 0.75rem;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.article-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========== ORGANIZATIONS LIST ========== */
.organizations-list,
.collaborations-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 20px 0;
}

.organization-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    padding: 32px;
    transition: all 0.35s var(--transition-smooth);
}

.organization-item:hover {
    border-color: var(--card-border-hover);
    background: var(--accent-glow);
    box-shadow: var(--shadow-hover-glow);
}

.org-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.org-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: var(--border-radius-xs);
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
}

.org-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 6px !important;
    letter-spacing: -0.01em;
}

.org-tagline {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-style: normal;
    margin-bottom: 10px;
    opacity: 0.85;
}

.org-role {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.org-duration {
    color: var(--text-subtle);
    font-size: 0.85rem;
}

.org-description {
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.org-achievements {
    margin-top: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
}

.org-achievements h5 {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
}

.org-achievements ul {
    list-style: none;
    padding: 0;
}

.org-achievements li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.org-achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

/* Organization Gallery */
.org-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    overflow: hidden;
    transition: all 0.35s var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(79, 255, 176, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-muted);
}

/* Collaboration Styling */
.collaboration-item {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    padding: 28px;
    transition: transform 0.45s var(--transition-spring), background 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.45s var(--transition-smooth);
}

.collaboration-item:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover-glow);
}

/* Static collaboration card (no external link) keeps a subtle lift */
.collaboration-item.collaboration-static {
    cursor: default;
}

.collab-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.collab-logo {
    width: 90px;
    height: 54px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-xs);
    padding: 10px;
}

.collab-info h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px !important;
}

.collab-type {
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.collab-project {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-muted);
}

.collab-project strong {
    color: var(--text-light);
}

.collab-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.collab-link-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.collab-link-text i {
    color: #0077b5;
}

/* ========== CONTACT SECTION ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.contact-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
}

.contact-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card h4 i {
    color: var(--accent-color);
}

.contact-card > p {
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: var(--border-radius-xs);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s var(--transition-spring), background 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}

.email-button:hover {
    background: #3de69f;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(79, 255, 176, 0.25);
}

.email-button:active {
    transform: translateY(0) scale(0.99);
}

.email-button i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.email-button span {
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: center;
}

.support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.35s var(--transition-smooth);
}

.support-link i {
    font-size: 1rem;
}

.support-link:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
}

.support-link.patreon-link i {
    color: #f96854;
}

.support-link.coffee-link i {
    color: #ffdd00;
}

.upi-id {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    color: var(--text-light);
    font-size: 0.9rem;
}

.upi-id i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.upi-id strong {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
    color: var(--accent-color);
}

.creator-note {
    margin-top: 32px;
    padding: 28px;
    background: var(--accent-glow);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 var(--border-radius-xs) var(--border-radius-xs) 0;
}

.creator-note p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* ========== SOCIAL FOOTER ========== */
.social-footer {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 28px;
    margin-top: 32px;
    backdrop-filter: blur(20px);
    animation: contentFadeIn 1.5s ease-out 1.1s both;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s var(--transition-spring), background 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), color 0.3s var(--transition-smooth);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.03);
}

/* Platform-specific hover colors */
.social-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.35);
    color: #ff0000;
}

.social-icon.twitter:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.social-icon.instagram:hover {
    background: rgba(220, 39, 67, 0.12);
    border-color: rgba(220, 39, 67, 0.35);
    color: #dc2743;
}

.social-icon.linkedin:hover {
    background: rgba(0, 119, 181, 0.12);
    border-color: rgba(0, 119, 181, 0.35);
    color: #0077b5;
}

.social-icon.whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.35);
    color: #25d366;
}

.social-icon.medium:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.social-icon.email:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    color: var(--accent-color);
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 50px;
    font-weight: 300;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-size: 1rem;
    text-align: center;
    font-family: 'Syne', sans-serif;
    opacity: 0.9;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========== UTILITIES ========== */
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--accent-color);
    color: var(--dark-bg);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(79, 255, 176, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 255, 176, 0.4);
}

/* ========== SECTION INTRO ========== */
.section-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 720px;
}

/* ========== LIQUID-GLASS ICON (shared, tasteful) ========== */
.venture-icon,
.podcast-icon,
.collab-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    background: linear-gradient(145deg, rgba(79, 255, 176, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 8px 20px -8px rgba(79, 255, 176, 0.25);
    transition: transform 0.45s var(--transition-spring), box-shadow 0.45s var(--transition-smooth);
}

/* ========== STARTUP WORK / VENTURES ========== */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 4px 0;
}

.venture-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
    padding: 28px;
    transition: transform 0.45s var(--transition-spring), background 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.45s var(--transition-smooth);
    will-change: transform;
}

.venture-card:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover-glow);
}

.venture-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.venture-icon {
    width: 56px;
    height: 56px;
    font-size: 1.35rem;
}

.venture-card:hover .venture-icon {
    transform: translateY(-2px) scale(1.04);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 12px 26px -8px rgba(79, 255, 176, 0.4);
}

.venture-logo-tile {
    padding: 8px;
    overflow: hidden;
}

.venture-logo-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.venture-shot {
    display: block;
    margin-top: 20px;
    border-radius: var(--border-radius-xs);
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: rgba(0, 0, 0, 0.2);
}

.venture-shot img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s var(--transition-smooth);
}

.venture-shot:hover img {
    transform: scale(1.03);
}

.venture-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.venture-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    color: var(--accent-color);
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s var(--transition-smooth);
}

.venture-card > .venture-link {
    margin-top: 18px;
}

.venture-link i {
    font-size: 0.78rem;
}

.venture-link:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
}

.venture-heading {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.venture-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 !important;
    letter-spacing: -0.01em;
}

.venture-role {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--accent-color);
}

.venture-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.venture-body p:last-child {
    margin-bottom: 0;
}

/* ========== CHANNEL NUTSHELL LINE ========== */
.channel-nutshell {
    margin-top: 14px !important;
    padding-left: 16px;
    border-left: 3px solid var(--accent-color);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem !important;
    color: var(--text-light) !important;
    line-height: 1.6 !important;
}

/* ========== UNORTHODOX PODCAST ========== */
.podcast-block {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(180deg, rgba(79, 255, 176, 0.05) 0%, rgba(255, 255, 255, 0.02) 55%);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-sm);
}

.podcast-poster {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
}

.podcast-poster img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.7s var(--transition-smooth);
}

.podcast-poster:hover img {
    transform: scale(1.02);
}

.podcast-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.podcast-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.podcast-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.podcast-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0.85;
}

.podcast-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 !important;
    letter-spacing: -0.01em;
}

.podcast-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.podcast-episodes {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.episode-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    transition: transform 0.45s var(--transition-spring), border-color 0.4s var(--transition-smooth), box-shadow 0.45s var(--transition-smooth);
}

.episode-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover-glow);
}

.episode-thumb {
    width: 100%;
    overflow: hidden;
}

.episode-thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.episode-card:hover .episode-thumb img {
    transform: scale(1.04);
}

.episode-main {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
}

.episode-badge {
    flex-shrink: 0;
    padding: 8px 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark-bg);
    background: var(--accent-color);
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.episode-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 8px 0 !important;
    line-height: 1.45;
}

.episode-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ========== FEATURED COVERAGE ========== */
.coverage-block {
    margin-top: 40px;
}

.coverage-heading h4 {
    margin: 0 0 4px 0;
}

.coverage-subtitle {
    color: var(--text-subtle);
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding-left: 28px;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-xs);
    transition: transform 0.4s var(--transition-spring), background 0.35s var(--transition-smooth), border-color 0.35s var(--transition-smooth);
}

.coverage-item:hover {
    background: var(--accent-glow);
    border-color: var(--card-border-hover);
    transform: translateX(5px);
}

.coverage-item i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.coverage-item span {
    font-size: 0.88rem;
    font-weight: 450;
    line-height: 1.5;
    color: var(--text-muted);
}

.coverage-item:hover span {
    color: var(--text-light);
}

/* ========== ASSOCIATION PROGRESSION TIMELINE ========== */
.org-timeline {
    position: relative;
    margin: 8px 0 24px;
    padding-left: 26px;
}

.org-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-color) 0%, rgba(79, 255, 176, 0.15) 100%);
    border-radius: 2px;
}

.timeline-entry {
    position: relative;
    padding-bottom: 24px;
}

.timeline-entry:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-bg-solid);
    border: 2px solid rgba(79, 255, 176, 0.4);
    transform: translateX(-1px);
    transition: all 0.4s var(--transition-spring);
}

.timeline-current .timeline-marker {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(79, 255, 176, 0.15), 0 0 16px rgba(79, 255, 176, 0.4);
}

.timeline-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 14px;
    margin-bottom: 8px;
}

.timeline-role {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.timeline-current .timeline-role {
    color: var(--accent-color);
}

.timeline-duration {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-subtle);
    letter-spacing: 0.02em;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* Organization external links (e.g. Ministry recognition post) */
.org-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

/* Subtle premium hover for contact cards */
.contact-card {
    transition: transform 0.45s var(--transition-spring), border-color 0.4s var(--transition-smooth), box-shadow 0.45s var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--card-border-hover);
    box-shadow: var(--shadow-hover);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-section {
        padding: 32px 20px 24px;
    }

    .hero-profile {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .hero-image {
        width: 220px;
        height: 220px;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        line-height: 1.8;
        margin: 0 auto;
    }

    .tagline-line {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 14px;
        white-space: normal;
    }

    .tagline-sep {
        margin: 0 7px 0 0;
    }

    .container {
        padding: 0 16px 48px;
    }

    .profile-card {
        padding: 24px 20px;
    }

    .nav-link {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .content-section {
        padding: 28px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .channel-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .channel-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .channel-cta-btn {
        font-size: 1rem;
        padding: 18px 24px;
    }

    .videos-grid,
    .projects-grid,
    .articles-grid,
    .letters-grid,
    .ventures-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .podcast-block {
        padding: 24px 20px;
    }

    .podcast-header {
        flex-direction: column;
        text-align: center;
    }

    .episode-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .org-header,
    .collab-header,
    .second-channel-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .org-logo,
    .collab-logo {
        margin: 0 auto;
    }

    .org-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .support-links {
        flex-direction: column;
    }

    .support-link,
    .upi-id {
        width: 100%;
        justify-content: center;
    }

    .email-button {
        width: 100%;
        justify-content: center;
    }

    .social-container {
        gap: 8px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .youtube-links,
    .tech-links,
    .articles-links {
        flex-direction: column;
    }

    .external-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 200px;
        height: 200px;
    }

    .hero-name {
        font-size: 2rem;
    }

    .content-section {
        padding: 24px 16px;
    }

    .org-gallery {
        grid-template-columns: 1fr;
    }
}

/* ========== ACCESSIBILITY: RESPECT REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
