/* ===== CSS Custom Properties ===== */
:root {
    --color-black: #0a0a0a;
    --color-black-soft: #141414;
    --color-black-lighter: #1a1a1a;
    --color-dark-gray: #252525;
    --color-gray: #6b6b6b;
    --color-light-gray: #a0a0a0;
    --color-off-white: #f5f5f5;
    --color-white: #ffffff;
    --color-yellow: #ffd700;
    --color-yellow-bright: #ffe44d;
    --color-yellow-soft: #ffec8b;
    --color-yellow-glow: rgba(255, 215, 0, 0.3);
    --color-yellow-subtle: rgba(255, 215, 0, 0.1);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --max-width: 1200px;
    --nav-height: 80px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--color-yellow-glow);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.splinexx {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    width: 120%;
    height: 120%;
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-dark-gray);
    border-radius: var(--radius-full);
    border: 2px solid var(--color-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-yellow);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.accent {
    color: var(--color-yellow);
}

.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
    transform: translateY(0);
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.fade-in.visible,
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    height: 70px;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), transparent 50%, rgba(255, 215, 0, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar:hover::before {
    opacity: 1;
}

.navbar.scrolled {
    top: 10px;
    background: rgba(10, 10, 10, 0.9);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo-text {
    color: var(--color-yellow);
    font-size: 1.6rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-light-gray);
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    border-radius: 30px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    color: var(--color-black) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-yellow-bright), var(--color-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.2);
}

.nav-cta:hover::before {
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.spline-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.spline-background spline-viewer {
    width: 100%;
    height: 100%;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.shape-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    top: -300px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--color-yellow);
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--color-yellow-bright), var(--color-yellow));
    top: 50%;
    left: 50%;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, -40px) rotate(10deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--color-yellow);
    margin-bottom: var(--space-lg);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.title-line {
    display: block;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.title-line.accent {
    color: var(--color-yellow);
    position: relative;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
}

.title-line.accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-yellow), var(--color-yellow-bright), var(--color-yellow));
    background-size: 200% 100%;
    border-radius: var(--radius-full);
    animation: underline-grow 1s ease forwards 0.5s, gradient-shift 3s ease infinite 1.5s;
    transform-origin: left;
    transform: scaleX(0);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes underline-grow {
    to {
        transform: scaleX(1);
    }
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-light-gray);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    color: var(--color-light-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--color-yellow);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    color: var(--color-black);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--color-yellow);
    color: var(--color-yellow);
    transform: translateY(-4px);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.btn-full {
    width: 100%;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 10;
}

.image-frame {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid var(--color-yellow);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.6;
    animation: frame-pulse 4s ease-in-out infinite;
}

.frame-accent-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 2px solid var(--color-yellow);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
    animation: frame-pulse 4s ease-in-out infinite 2s;
}

@keyframes frame-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

.portrait {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
}

.image-frame:hover .portrait {
    transform: scale(1.02);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(255, 215, 0, 0.1);
}

.image-glow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 120px;
    background: linear-gradient(135deg, var(--color-yellow), var(--color-yellow-bright));
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--color-yellow);
    transform: translateY(5px);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-yellow);
    opacity: 0.5;
}

.section-tag::before {
    right: calc(100% + 15px);
}

.section-tag::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about {
    background: var(--color-black-soft);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.about-text p {
    color: var(--color-light-gray);
    margin-bottom: var(--space-md);
}

.about-text strong {
    color: var(--color-yellow);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-dark-gray);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: var(--space-xs);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.about-image-wrapper {
    position: relative;
}

.about-accent-box {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-yellow);
    border-radius: var(--radius-lg);
    opacity: 0.3;
}

.about-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

/* Podcast */
.podcast {
    background: var(--gradient-dark);
}

.podcast-featured {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
    background: var(--color-black-lighter);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-3xl);
}

.podcast-cover {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cover-art {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cover-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.cover-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.03) 10px, rgba(255, 215, 0, 0.03) 20px);
}

.cover-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg);
}

.cover-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.cover-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-yellow);
    line-height: 1.3;
}

.podcast-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
}

.podcast-wave span {
    width: 4px;
    height: 100%;
    background: var(--color-yellow);
    border-radius: var(--radius-full);
    animation: wave 1s ease-in-out infinite;
}

.podcast-wave span:nth-child(1) {
    animation-delay: 0s;
    height: 60%;
}

.podcast-wave span:nth-child(2) {
    animation-delay: 0.1s;
    height: 80%;
}

.podcast-wave span:nth-child(3) {
    animation-delay: 0.2s;
    height: 100%;
}

.podcast-wave span:nth-child(4) {
    animation-delay: 0.3s;
    height: 70%;
}

.podcast-wave span:nth-child(5) {
    animation-delay: 0.4s;
    height: 50%;
}

.podcast-wave span:nth-child(6) {
    animation-delay: 0.5s;
    height: 90%;
}

.podcast-wave span:nth-child(7) {
    animation-delay: 0.6s;
    height: 60%;
}

.podcast-wave span:nth-child(8) {
    animation-delay: 0.7s;
    height: 100%;
}

.podcast-wave span:nth-child(9) {
    animation-delay: 0.8s;
    height: 75%;
}

.podcast-wave span:nth-child(10) {
    animation-delay: 0.9s;
    height: 55%;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

.podcast-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.podcast-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
}

.podcast-description {
    color: var(--color-light-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.podcast-platforms {
    display: flex;
    gap: var(--space-md);
}

.platform-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-gray);
    border-radius: var(--radius-md);
    color: var(--color-light-gray);
    transition: var(--transition-base);
    position: relative;
}

.platform-link svg {
    width: 24px;
    height: 24px;
}

.platform-link::before {
    content: attr(aria-label);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.platform-link::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 6px solid transparent;
    border-top-color: var(--color-yellow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.platform-link:hover::before,
.platform-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.platform-link:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.episodes-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.spotify-embed {
    background: var(--color-black-lighter);
    border-radius: var(--radius-xl);
    padding: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.spotify-embed iframe {
    display: block;
    border-radius: var(--radius-lg);
}

.episodes-embeds {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.episode-embed {
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
    overflow: hidden;
}

.episode-embed:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.episode-embed iframe {
    display: block;
    border-radius: var(--radius-md);
}

.episodes-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.episode-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.episode-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.episode-number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-yellow);
    background: var(--color-yellow-subtle);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.episode-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.episode-meta {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: var(--space-xs);
}

.episode-desc {
    font-size: 0.9rem;
    color: var(--color-light-gray);
}

.episode-play {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-gray);
    border-radius: 50%;
    color: var(--color-yellow);
    transition: var(--transition-base);
}

.episode-play:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: scale(1.1);
}

/* Certifications */
.certifications {
    background: var(--color-black-soft);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.cert-card {
    background: var(--color-black-lighter);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.2);
}

.cert-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow-subtle);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.cert-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-yellow);
}

.cert-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.cert-org {
    font-size: 0.9rem;
    color: var(--color-yellow);
    margin-bottom: var(--space-md);
}

.cert-desc {
    color: var(--color-light-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cert-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-yellow);
    background: var(--color-yellow-subtle);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.membership-highlight {
    background: linear-gradient(135deg, var(--color-yellow-subtle) 0%, transparent 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.membership-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.membership-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.membership-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-black);
}

.membership-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.membership-text p {
    color: var(--color-light-gray);
}

/* Leadership */
.leadership {
    background: var(--gradient-dark);
}

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.leadership-quote {
    background: var(--color-black-lighter);
    border-left: 4px solid var(--color-yellow);
    padding: var(--space-xl);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    margin-bottom: var(--space-xl);
}

.leadership-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.leadership-quote cite {
    color: var(--color-yellow);
    font-style: normal;
    font-weight: 600;
}

.leadership-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.leadership-text p {
    color: var(--color-light-gray);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.leadership-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.pillar {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.pillar:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(5px);
}

.pillar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow-subtle);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-yellow);
}

.pillar h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.pillar p {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    line-height: 1.6;
}

/* Gallery */
.gallery {
    background: var(--color-black-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-frame {
    width: 100%;
    height: 100%;
    position: relative;
    border: 2px solid var(--color-dark-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-frame {
    border-color: var(--color-yellow);
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-frame img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-yellow);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact */
.contact {
    background: var(--gradient-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-intro {
    margin-bottom: var(--space-xl);
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--color-light-gray);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow-subtle);
    border-radius: var(--radius-md);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-yellow);
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span:last-child {
    color: var(--color-white);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--color-yellow);
}

.social-links h4 {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--color-light-gray);
}

.social-icons {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-gray);
    border-radius: 50%;
    color: var(--color-light-gray);
    transition: var(--transition-base);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--color-black-lighter);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-light-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px var(--color-yellow-subtle);
}

.form-group select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0a0a0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--color-dark-gray);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-dark-gray);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-logo .logo-text {
    color: var(--color-yellow);
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: var(--space-xs);
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-light-gray);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-yellow);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark-gray);
    border-radius: 50%;
    color: var(--color-light-gray);
    transition: var(--transition-base);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.footer-decoration {
    display: flex;
    gap: var(--space-xs);
}

.footer-decoration span {
    width: 8px;
    height: 8px;
    background: var(--color-yellow);
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

.footer-decoration span:nth-child(2) {
    animation-delay: 0.3s;
}

.footer-decoration span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .image-frame {
        max-width: 350px;
    }

    .hero-subtitle {
        margin: 0 auto var(--space-lg);
    }

    .hero-tags,
    .hero-cta {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .podcast-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .podcast-cover {
        max-width: 300px;
        margin: 0 auto;
    }

    .podcast-platforms {
        justify-content: center;
    }

    .cert-grid,
    .leadership-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item.wide {
        grid-column: span 2;
        height: 200px;
    }

    .gallery-item:not(.large):not(.wide) {
        height: 200px;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        height: 60px;
        border-radius: 30px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 10px;
        right: 10px;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 215, 0, 0.1);
        border-radius: 20px;
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-xs);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stat-item {
        padding: var(--space-md);
        background: var(--color-dark-gray);
        border-radius: var(--radius-md);
    }

    .episode-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .episode-number,
    .episode-play {
        justify-self: center;
    }

    .membership-content {
        flex-direction: column;
        text-align: center;
    }

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

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item {
        grid-column: span 1;
        height: 250px;
    }

    .pillar {
        flex-direction: column;
        text-align: center;
    }

    .pillar-icon {
        margin: 0 auto;
    }

    .contact-form {
        padding: var(--space-lg);
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

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

    .image-frame {
        max-width: 280px;
    }

    .frame-accent,
    .frame-accent-2 {
        display: none;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }
}