* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    .header-scrolled .logo-track {
        opacity: 1;
        animation: logoTrackDash 1s ease forwards;
    }

    .header-scrolled .logo-trace {
        animation: logoTrace 0.8s ease forwards;
    }

    .header-scrolled .logo-car {
        animation: logoCarDriveMobile 2.8s ease forwards;
    }

    .header-scrolled .logo-mark-layer {
        animation: markErase 2.8s ease forwards;
    }

    .header-scrolled .logo-text-layer {
        animation: textReveal 2.8s ease forwards;
    }
}

@keyframes logoCarDriveMobile {
    0% { opacity: 0; transform: translate(-36px, 10px) rotate(-6deg); }
    15% { opacity: 1; transform: translate(-8px, 4px) rotate(-3deg); }
    75% { opacity: 1; transform: translate(160px, -10px) rotate(2deg); }
    100% { opacity: 0; transform: translate(190px, -16px) rotate(6deg); }
}

:root {
    --black: #000000;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --neon-accent: #00ff88;
    --gray: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    background-color: #0f1115;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Let sections sit on the charcoal canvas */
section {
    background: transparent;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER STYLES */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--black);
    z-index: 1000;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.header-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header .container {
    position: relative;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 80px 30px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.1);
    gap: 0;
}

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

.nav-menu.nav-menu-static {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    gap: 16px;
    justify-content: flex-end;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    justify-content: center;
    order: 99;
}

.social-icon {
    color: var(--white);
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -35%);
    pointer-events: none;
}

.logo-stack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 110px;
}

.logo-layer {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.logo-mark-layer {
    opacity: 1;
}

.logo-text-layer {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2.2px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    transform: translateY(-12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-mark-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-mark {
    width: 132px;
    height: auto;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin-top: -30px;
}

.logo-trace {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.1));
    opacity: 0;
    border-radius: 999px;
}

.logo-track {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

.logo-track-path {
    fill: none;
    stroke: url(#logoCheckers);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 14 10;
    stroke-dashoffset: 0;
    opacity: 0.85;
}

.logo-car {
    position: absolute;
    bottom: 28px;
    left: -22px;
    width: 82px;
    height: auto;
    opacity: 0;
    transform: translateX(-20px) rotate(0deg);
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55)) drop-shadow(0 0 10px rgba(255,255,255,0.35));
    transition: opacity 0.3s ease;
}

.header-scrolled .logo-mark-layer {
    animation: markErase 3.8s ease forwards;
}

.header-scrolled .logo-text-layer {
    animation: textReveal 3.8s ease forwards;
}

.header-scrolled .logo-trace {
    animation: logoTrace 0.9s ease forwards;
}

.header-scrolled .logo-track {
    opacity: 1;
    animation: logoTrackDash 1.1s ease forwards;
}

.header-scrolled .logo-car {
    animation: logoCarDrive 4.2s ease forwards;
}

@keyframes logoTrace {
    0% { width: 0; opacity: 0; }
    30% { width: 160px; opacity: 0.8; }
    70% { width: 220px; opacity: 0.6; }
    100% { width: 220px; opacity: 0; }
}

@keyframes logoTrackDash {
    from { stroke-dashoffset: 0; opacity: 0.4; }
    to { stroke-dashoffset: -260; opacity: 0.9; }
}

@keyframes logoCarDrive {
    0% { opacity: 0; transform: translate(-80px, 32px) rotate(-10deg); }
    15% { opacity: 1; transform: translate(-20px, 14px) rotate(-6deg); }
    40% { opacity: 1; transform: translate(160px, -12px) rotate(-2deg); }
    70% { opacity: 1; transform: translate(320px, -48px) rotate(4deg); }
    100% { opacity: 0; transform: translate(380px, -72px) rotate(10deg); }
}

@keyframes logoCarDriveMobile {
    0% { opacity: 0; transform: translate(-36px, 10px) rotate(-6deg); }
    15% { opacity: 1; transform: translate(-8px, 4px) rotate(-3deg); }
    75% { opacity: 1; transform: translate(160px, -10px) rotate(2deg); }
    100% { opacity: 0; transform: translate(190px, -16px) rotate(6deg); }
}

@keyframes markErase {
    0% { opacity: 1; }
    35% { opacity: 1; }
    45% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes textReveal {
    0% { opacity: 0; transform: translate(-50%, -10px); }
    45% { opacity: 0; transform: translate(-50%, -10px); }
    55% { opacity: 1; transform: translate(-50%, -12px); }
    100% { opacity: 1; transform: translate(-50%, -12px); }
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.nav-btn {
    padding: 14px 20px;
    background-color: transparent;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    text-align: left;
}

.nav-btn:hover {
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.nav-btn-disabled {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.coming-soon-badge {
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-accent);
    font-size: 7px;
    padding: 2px 5px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    opacity: 0.8;
}

.nav-btn-primary {
    background-color: var(--neon-accent);
    color: var(--black);
    text-align: center;
    margin-top: 15px;
}

.nav-btn-primary:hover {
    background-color: #fff;
    color: var(--black);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
}

.hero-content {
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.3s forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
    }
}

.hero-content {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

.hero-subhead {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--neon-accent), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cta-button:hover::before {
    opacity: 0.2;
}

.cta-button:hover {
    background-color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/* PHONE GRID */
.phone-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap;
    margin-top: 60px;
    padding: 40px 0;
    position: relative;
    overflow: visible;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.phone-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 90%;
    background: radial-gradient(ellipse at center,
        rgba(0, 255, 136, 0.15) 0%,
        rgba(193, 53, 132, 0.1) 30%,
        rgba(10, 102, 194, 0.08) 50%,
        transparent 70%);
    pointer-events: none;
    z-index: -2;
    filter: blur(80px);
    opacity: 0.8;
}

@keyframes floatScroll {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.phone-card {
    animation: float 3s ease-in-out infinite;
}

.phone-card {
    position: relative;
}

.platform-sticker {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35));
}

.platform-sticker-ig {
    width: 90px;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background: none;
    padding: 0;
}

.platform-sticker-tt {
    width: 74px;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.platform-sticker-li {
    width: 64px;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background: none;
    padding: 0;
}
.platform-sticker-yt {
    width: 58px;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background: none;
    padding: 0;
}

.phone-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.phone-card:nth-child(1) {
    filter:
        drop-shadow(0 0 60px rgba(193, 53, 132, 0.6))
        drop-shadow(0 25px 50px rgba(193, 53, 132, 0.4))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.phone-card:nth-child(1)::before {
    background: radial-gradient(circle, rgba(193, 53, 132, 0.7) 0%, transparent 70%);
}

.phone-card:nth-child(2) {
    animation-delay: 1s;
    filter:
        drop-shadow(0 0 60px rgba(10, 102, 194, 0.6))
        drop-shadow(0 25px 50px rgba(10, 102, 194, 0.4))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.phone-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(10, 102, 194, 0.7) 0%, transparent 70%);
}

.phone-card:nth-child(3) {
    animation-delay: 2s;
    filter:
        drop-shadow(0 0 40px rgba(0, 242, 234, 0.4))
        drop-shadow(0 25px 50px rgba(0, 242, 234, 0.25))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

.phone-card:nth-child(3)::before {
    background: radial-gradient(circle, rgba(0, 242, 234, 0.45) 0%, transparent 70%);
}
.phone-card:nth-child(4) {
    animation-delay: 3s;
    filter:
        drop-shadow(0 0 36px rgba(255, 0, 0, 0.28))
        drop-shadow(0 22px 44px rgba(255, 0, 0, 0.2))
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.phone-card:nth-child(4)::before {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.35) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(2deg);
    }
}

.phone-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease;
    flex: 0 0 280px;
}

.phone-frame {
    transform: rotateY(0deg);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-card:nth-child(1):hover .phone-frame,
.phone-card:nth-child(3):hover .phone-frame,
.phone-card:nth-child(4):hover .phone-frame {
    transform: rotateY(5deg) translateY(-15px) scale(1.02);
}

.phone-card:nth-child(2):hover .phone-frame {
    transform: rotateY(-5deg) translateY(-15px) scale(1.02);
}

.phone-card:hover {
    z-index: 100;
}

.phone-card:active .phone-frame {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.phone-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse,
        rgba(0, 0, 0, 0.4) 0%,
        transparent 70%);
    filter: blur(10px);
    z-index: -3;
    opacity: 0.6;
}

.phone-frame {
    width: 280px;
    height: 540px;
    background:
        linear-gradient(165deg, rgba(80, 80, 80, 0.1) 0%, transparent 40%),
        linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 48px;
    padding: 10px;
    box-shadow:
        0 2px 4px rgba(255, 255, 255, 0.1),
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5),
        inset 2px 0 2px rgba(255, 255, 255, 0.05),
        inset -2px 0 2px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 48px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.08) 20%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.15) 80%,
        rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.phone-card:hover .phone-frame::before {
    opacity: 1;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background:
        radial-gradient(circle at 82px 13px, rgba(100, 150, 220, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 82px 13px, rgba(60, 100, 180, 0.6) 3px, transparent 3px),
        radial-gradient(circle at 82px 13px, rgba(20, 40, 80, 0.95) 4px, transparent 4px),
        radial-gradient(circle at 82px 13px, #000 4.5px, transparent 4.5px),
        radial-gradient(circle at 82px 13px, rgba(255, 255, 255, 0.06) 0.7px, transparent 0.7px),
        linear-gradient(180deg, #000 0%, #000 100%);
    border-radius: 20px;
    box-shadow:
        inset 0 2px 6px rgba(0, 0, 0, 0.98),
        inset 0 1px 3px rgba(0, 0, 0, 0.95),
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    background: var(--white);
    position: relative;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        transparent 100%);
    pointer-events: none;
    z-index: 10000;
    border-radius: 38px 38px 0 0;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    animation: screenShine 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes screenShine {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(10px, 10px) scale(1.1);
        opacity: 0.6;
    }
}

/* Instagram Feed Screen */
.instagram-screen {
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.ig-status-bar {
    padding: 10px 20px 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.3px;
}

.ig-status-icons {
    display: flex;
    gap: 5px;
    align-items: center;
}

/* Header */
.ig-header {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
}

.ig-plus-icon {
    stroke: #000;
}

.ig-logo {
    font-family: 'Billabong', 'Brush Script MT', 'Cookie', cursive;
    font-size: 28px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.ig-heart-icon {
    position: relative;
}

.ig-heart-icon svg {
    stroke: #000;
}

.ig-notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ff3040;
    border-radius: 50%;
    border: 1px solid #fff;
}


/* Post Header */
.ig-post-header {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}

.ig-post-profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.ig-post-profile-pic::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ig-post-profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.ig-post-user-info {
    flex: 1;
}

.ig-post-username {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ig-verified {
    width: 12px;
    height: 12px;
}

.ig-post-time {
    font-size: 11px;
    color: #737373;
    font-weight: 400;
}

.ig-post-dots {
    background: transparent;
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    font-weight: 700;
}

/* Post Image */
.ig-post-image {
    width: 100%;
    background: #f0f0f0;
    overflow: hidden;
}

.ig-post-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Post Actions */
.ig-post-actions {
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.ig-actions-left {
    display: flex;
    gap: 14px;
    align-items: center;
}

.ig-actions-left svg {
    cursor: pointer;
}

.ig-bookmark {
    cursor: pointer;
}

/* Likes & Caption */
.ig-likes {
    padding: 0 12px 4px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    background: #fff;
}

.ig-caption {
    padding: 0 12px 8px;
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    background: #fff;
}

.ig-caption strong {
    font-weight: 600;
    margin-right: 4px;
}

/* Bottom Nav */
.ig-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #fff;
    border-top: 1px solid #dbdbdb;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

.ig-bottom-nav svg {
    color: #000;
    stroke: #000;
    cursor: pointer;
}

.ig-nav-profile {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid #000;
    cursor: pointer;
}

/* LinkedIn Post Screen */
.linkedin-screen {
    background: #1b1f23;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* LinkedIn Status Bar */
.li-status-bar {
    padding: 10px 20px 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1b1f23;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.3px;
}

.li-status-icons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.li-post-card {
    background: #1b1f23;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.li-post-header {
    padding: 14px 18px;
    display: flex;
    gap: 14px;
}

.li-profile-pic {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.li-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.li-user-info {
    flex: 1;
}

.li-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
}

.li-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.li-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.li-following {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
}

.li-headline {
    color: #9ca3af;
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 2px;
}

.li-newsletter {
    color: #70b5f9;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2px;
}

.li-newsletter:hover {
    text-decoration: underline;
}

.li-post-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #9ca3af;
}

.li-menu-btn {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    height: fit-content;
}

.li-post-text {
    padding: 6px 16px;
    color: #fff;
    font-size: 11px;
    line-height: 1.4;
}

.li-post-text p {
    margin: 0 0 8px 0;
}

.li-post-text p:last-child {
    margin-bottom: 0;
}

.li-more {
    color: #9ca3af;
    cursor: pointer;
}

.li-post-image {
    width: 100%;
    overflow: hidden;
    padding: 0 12px;
    margin: 8px 0;
    flex-shrink: 0;
}

.li-post-image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.li-engagement {
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #38434f;
    border-bottom: 1px solid #38434f;
}

.li-reactions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.li-reaction-icons {
    display: flex;
    gap: -4px;
}

.li-reaction {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    border: 2px solid #1b1f23;
    margin-left: -4px;
}

.li-reaction:first-child {
    margin-left: 0;
}

.li-like {
    background: #0a66c2;
}

.li-celebrate {
    background: #6dae4f;
}

.li-love {
    background: #df704d;
}

.li-comments-reposts {
    color: #9ca3af;
    font-size: 12px;
    min-width: 0;
}

.li-engagement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    font-size: 10px;
    color: #cdd1d5;
    gap: 10px;
}

.li-engagement-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.li-reaction-icons {
    display: flex;
    align-items: center;
    gap: 0;
}

.li-reaction {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    margin-left: -4px;
    border: 2px solid #1b1f23;
}

.li-reaction:first-child {
    margin-left: 0;
}

.li-like {
    background: #0a66c2;
}

.li-celebrate {
    background: #6dae4f;
}

.li-love {
    background: #df704d;
}

.li-reaction-text {
    color: #cdd1d5;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.li-actions {
    display: flex;
    padding: 0;
    border-top: 1px solid #38434f;
}

.li-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.li-action-btn:hover {
    background: #38434f;
}

.li-action-btn span {
    font-size: 11px;
}

.li-action-btn svg {
    flex-shrink: 0;
    stroke: #9ca3af;
    width: 16px;
    height: 16px;
}

/* TikTok Screen */
.tiktok-screen {
    background: #000;
}

.tiktok-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 20px 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.3px;
    z-index: 11;
}

.tiktok-time {
    color: #fff;
}

.tiktok-status-icons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.tiktok-top-bar {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
    z-index: 10;
}

.tiktok-tab {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 500;
}

.tiktok-tab-active {
    color: var(--white);
    font-weight: 700;
}

.tiktok-search {
    position: absolute;
    right: 15px;
    font-size: 20px;
}

.tiktok-video-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.tiktok-video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 42%;
    transform: translateY(0%);
}

.tiktok-sidebar {
    position: absolute;
    right: 8px;
    bottom: 160px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.tiktok-profile-circle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tiktok-profile-pic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f2ea 0%, #ff0050 100%);
    border: 2px solid var(--white);
}

.tiktok-follow-plus {
    position: absolute;
    bottom: -5px;
    width: 16px;
    height: 16px;
    background: #fe2c55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.tiktok-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tiktok-count {
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
}

.tiktok-record {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiktok-record-spin {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00f2ea 0%, #ff0050 100%);
    animation: spin 3s linear infinite;
}

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

.tiktok-bottom-info {
    position: absolute;
    bottom: 74px;
    left: 12px;
    right: 70px;
    z-index: 10;
}

.tiktok-user-info {
    margin-bottom: 4px;
}

.tiktok-username {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
}

.tiktok-music {
    color: var(--white);
    font-size: 13px;
    opacity: 0.9;
}

.tiktok-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #2d2d2d;
    z-index: 10;
}

.tiktok-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    flex: 1;
}

.tiktok-nav-item svg {
    width: 24px;
    height: 24px;
}

.tiktok-nav-item span {
    font-size: 10px;
    font-weight: 500;
}

.tiktok-nav-plus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
}

/* YouTube Screen */
.youtube-screen {
    background: #0f0f0f;
    color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 38px;
    overflow: hidden;
}

.yt-status-bar {
    padding: 10px 18px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.2px;
}

.yt-status-icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.yt-video {
    position: relative;
    border-radius: 22px;
    margin: 0 12px;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    background: #0f0f0f;
}

.yt-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yt-video-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: rgba(255,255,255,0.1);
}

.yt-video-progress {
    width: 68%;
    height: 100%;
    background: #ff0000;
    border-radius: 0 6px 6px 0;
}

.yt-subscribe {
    border: none;
    background: #0a0a0a;
    color: #fff;
    padding: 9px 14px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yt-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.yt-comments {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #111;
    border-radius: 14px;
    padding: 12px;
    margin: 0 12px 12px;
    border: 1px solid #1f1f1f;
}

.yt-comment-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.yt-comments-header {
    font-weight: 800;
    font-size: 12.5px;
    color: #e8e8e8;
}

.yt-comment-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #6a5acd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.yt-comment-text {
    font-size: 12.5px;
    line-height: 1.5;
    color: #dcdcdc;
}

.yt-secondary-card {
    display: flex;
    gap: 10px;
    margin: 0 12px 14px;
    background: #141414;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #1f1f1f;
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
}

.yt-secondary-thumb {
    flex: 0 0 118px;
    background: linear-gradient(135deg, #0b1020 0%, #0f172a 50%, #0b132b 100%);
    position: relative;
}

.yt-secondary-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.1);
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.yt-secondary-length {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 4px 7px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
}

.yt-secondary-text {
    padding: 12px 12px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.yt-secondary-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.yt-secondary-meta {
    font-size: 11.5px;
    color: #a5a5a5;
}

.yt-title-row {
    padding: 12px 12px 6px;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    white-space: normal;
}

.yt-meta-inline {
    padding: 0 12px 8px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 10.5px;
    color: #cfcfcf;
    white-space: normal;
}

.yt-more {
    color: #cfcfcf;
}

.yt-inline-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 8px;
    flex-wrap: nowrap;
}

.yt-channel-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5f6d 0%, #ffc371 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #111;
    border: 2px solid #fff;
    flex-shrink: 0;
}

.yt-avatar-small {
    width: 26px;
    height: 26px;
    font-size: 12px;
}

.yt-inline-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.yt-inline-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    background: #181818;
    border: 1px solid #242424;
    border-radius: 12px;
    font-size: 11px;
    color: #e7e7e7;
    white-space: nowrap;
}

.yt-inline-icon svg {
    stroke: currentColor;
    width: 16px;
    height: 16px;
}

.yt-like svg {
    fill: white;
    stroke: white;
}

.yt-sparkle {
    font-size: 11px;
    color: #ffd966;
    line-height: 1;
}

/* SCROLL ANIMATIONS */
.section-animate {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-animate.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* SECTION HEADER */
.section-header {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.section-visible .section-header {
    animation: sectionHeaderFadeIn 0.8s ease-out forwards;
}

@keyframes sectionHeaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* CREATOR SHOWCASE SECTION */
.roster-section {
    padding: 120px 0;
    background-color: #0f1115;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-card {
    background-color: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid #222;
}

.section-visible .creator-card:nth-child(odd) {
    animation: slideInLeft 0.8s ease-out forwards;
}

.section-visible .creator-card:nth-child(even) {
    animation: slideInRight 0.8s ease-out forwards;
}

.creator-card:nth-child(odd) {
    opacity: 0;
    transform: translateX(-50px);
}

.creator-card:nth-child(even) {
    opacity: 0;
    transform: translateX(50px);
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-visible .creator-card:nth-child(1) { animation-delay: 0.1s; }
.section-visible .creator-card:nth-child(2) { animation-delay: 0.2s; }
.section-visible .creator-card:nth-child(3) { animation-delay: 0.3s; }
.section-visible .creator-card:nth-child(4) { animation-delay: 0.4s; }
.section-visible .creator-card:nth-child(5) { animation-delay: 0.5s; }
.section-visible .creator-card:nth-child(6) { animation-delay: 0.6s; }
.section-visible .creator-card:nth-child(7) { animation-delay: 0.7s; }
.section-visible .creator-card:nth-child(8) { animation-delay: 0.8s; }
.section-visible .creator-card:nth-child(9) { animation-delay: 0.9s; }

.creator-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.25);
    border-color: rgba(0, 255, 136, 0.3);
}

.creator-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    position: relative;
}

.creator-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: #1a1a1a;
}

.creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mariana-image img {
    object-position: center 35%;
}

.creator-image img[alt="Jean Kang"] {
    object-position: center 40%;
}

.creator-image img[alt="Ale Thomas"] {
    object-position: center 20%;
}

.creator-card:hover .creator-image img {
    transform: scale(1.05);
}

.creator-name {
    font-size: 24px;
    font-weight: 700;
    padding: 20px 20px 5px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.creator-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 20px 10px;
}

.creator-social-icon {
    color: #cfd2ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.creator-social-icon:hover {
    color: #00ff88;
    transform: translateY(-2px);
}

.creator-tagline {
    font-size: 16px;
    line-height: 1.5;
    padding: 5px 20px 20px;
    color: var(--off-white);
    font-style: italic;
}

.creator-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    border: 1px solid;
    background-color: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.3);
}

.cat-ai {
    background-color: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.35);
}

.cat-career {
    background-color: rgba(0, 150, 255, 0.12);
    color: #66b3ff;
    border-color: rgba(0, 150, 255, 0.35);
}

.roster-more {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    margin: 100px auto 0;
    font-style: italic;
    letter-spacing: 3px;
    opacity: 0;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 25px;
    transform: translateY(30px);
}

.section-visible .roster-more {
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.roster-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-accent) 20%, var(--neon-accent) 80%, transparent);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BRAND PARTNERS SECTION */
.partners-section {
    padding: 100px 0;
    background-color: #0f1115;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 70px 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
}

.section-visible .logo-item {
    animation: logoFadeIn 0.7s ease-out forwards;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-visible .logo-item:nth-child(1) { animation-delay: 0.1s; }
.section-visible .logo-item:nth-child(2) { animation-delay: 0.2s; }
.section-visible .logo-item:nth-child(3) { animation-delay: 0.3s; }
.section-visible .logo-item:nth-child(4) { animation-delay: 0.4s; }
.section-visible .logo-item:nth-child(5) { animation-delay: 0.5s; }
.section-visible .logo-item:nth-child(6) { animation-delay: 0.6s; }
.section-visible .logo-item:nth-child(7) { animation-delay: 0.7s; }
.section-visible .logo-item:nth-child(8) { animation-delay: 0.8s; }

.logo-item:hover {
    transform: translateY(-8px) scale(1.08);
}

.partner-logo-img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(1);
    animation: logoFloat 3s ease-in-out infinite;
}

.partner-logo-img.claude-logo {
    height: 88px;
    max-width: 240px;
}

.partner-logo-img.teachable-logo {
    height: 96px;
    max-width: 260px;
}

.partner-logo-img.kajabi-logo {
    height: 110px;
    max-width: 280px;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.logo-item:nth-child(1) .partner-logo-img { animation-delay: 0s; }
.logo-item:nth-child(2) .partner-logo-img { animation-delay: 0.3s; }
.logo-item:nth-child(3) .partner-logo-img { animation-delay: 0.6s; }
.logo-item:nth-child(4) .partner-logo-img { animation-delay: 0.9s; }
.logo-item:nth-child(5) .partner-logo-img { animation-delay: 1.2s; }
.logo-item:nth-child(6) .partner-logo-img { animation-delay: 1.5s; }
.logo-item:nth-child(7) .partner-logo-img { animation-delay: 1.8s; }
.logo-item:nth-child(8) .partner-logo-img { animation-delay: 2.1s; }

.logo-item:hover .partner-logo-img {
    filter: brightness(1.15) drop-shadow(0 8px 25px rgba(0, 255, 136, 0.3));
    animation-play-state: paused;
    transform: translateY(-15px) scale(1.05);
}

/* PHILOSOPHY SECTION */
.philosophy-section {
    padding: 180px 0 160px;
    background: linear-gradient(180deg, #0f1115 0%, #0c0d10 100%);
    position: relative;
    overflow: hidden;
}

/* Floating decorative orbs */
.philosophy-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 110, 180, 0.25) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: floatOrb1 20s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(100px, -50px) scale(1.2);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.philosophy-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 234, 0.2) 0%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    animation: floatOrb2 25s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-80px, -100px) scale(1.3);
    }
}

/* Middle decorative orb */
.philosophy-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    animation: floatOrb3 18s ease-in-out infinite;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

@keyframes floatOrb3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy-hero {
    text-align: center;
    margin-bottom: 120px;
    padding: 0 20px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
}

.section-visible .philosophy-hero {
    animation: fadeInUp 1s ease-out forwards;
}

.philosophy-headline {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -3px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy-subhead {
    max-width: 960px;
    margin: 46px auto 0;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
}

.philosophy-headline br {
    display: none;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.philosophy-headline .highlight-text:first-of-type {
    color: #ff6eb4;
    position: relative;
    display: inline-block;
}

.philosophy-headline .highlight-text:first-of-type::before {
    content: 'reach';
    position: absolute;
    top: 0;
    left: 0;
    color: #ff6eb4;
    filter: blur(25px);
    opacity: 0.6;
    animation: reachPulse 3s ease-in-out infinite;
}

@keyframes reachPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.philosophy-headline .highlight-text:first-of-type::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    right: -10px;
    height: 8px;
    background: linear-gradient(90deg, transparent, #ff6eb4 20%, #ff6eb4 80%, transparent);
    opacity: 0.4;
    transform: skewX(-15deg);
}

.glow-text {
    background: linear-gradient(135deg, #00ff88 0%, #00ffaa 25%, #00f2ea 50%, #00ffaa 75%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Pillars table layout */
.pillars-table {
    display: grid;
    gap: 36px;
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

.pillar-row {
    display: grid;
    grid-template-columns: auto 150px 1fr auto 1fr;
    gap: 18px;
    padding: 30px 24px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 12%, #0f1115), #11131a);
    align-items: center;
    min-height: 120px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    --accent: #d1935c;
    opacity: 0;
    transform: translateY(20px);
    animation: pillarFade 0.9s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes pillarFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pillar-row .pillar-cell {
    display: flex;
    align-items: center;
}

.pillar-row .pillar-cell.title {
    font-size: 18px;
    font-weight: 700;
    color: #f6f4ef;
    letter-spacing: -0.2px;
}

.pillar-row .pillar-cell.lead {
    font-weight: 700;
    line-height: 1.55;
    color: #e8e4db;
    letter-spacing: -0.1px;
}

.pillar-row .pillar-cell.support {
    color: #d6e4d8;
    line-height: 1.55;
    letter-spacing: -0.1px;
}

.pillar-row .pillar-cell.arrow {
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--accent);
    font-weight: 800;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--accent) 22%, transparent);
    transition: transform 0.2s ease;
}

.pillar-row .pillar-cell.icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-row .pillar-cell.icon svg {
    width: 28px;
    height: 28px;
}

.pillar-cell.icon.pink { color: #f27ea8; background: rgba(242, 126, 168, 0.14); }
.pillar-cell.icon.green { color: #5fbf9b; background: rgba(95, 191, 155, 0.14); }
.pillar-cell.icon.teal { color: #5bb0e3; background: rgba(91, 176, 227, 0.14); }
.pillar-cell.icon.amber { color: #f2b05e; background: rgba(242, 176, 94, 0.14); }
.pillar-cell.icon.violet { color: #b58df2; background: rgba(181, 141, 242, 0.14); }

.pillar-row:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.pillar-row:hover .pillar-cell.arrow {
    transform: translateY(-1px);
}

.pillars-connector {
    position: absolute;
    inset: -10px 0 -10px 0;
    width: 100%;
    height: calc(100% + 20px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.75;
}

.connector-car {
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

.connector-line {
    fill: none;
    stroke: url(#connectorGradient);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 14 10;
    animation: connectorDash 12s linear infinite;
    animation-play-state: paused;
}

.connector-track {
    fill: none;
    stroke: #1b1f29;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.8;
}

@keyframes connectorDash {
    to {
        stroke-dashoffset: -240;
    }
}

.philosophy-content {
    position: relative;
}

.philosophy-section.section-visible .connector-line {
    animation-play-state: running;
}

.philosophy-hero {
    position: relative;
    z-index: 2;
}

.pillar-row:nth-child(1) { --accent: #f27ea8; }
.pillar-row:nth-child(2) { --accent: #5fbf9b; }
.pillar-row:nth-child(3) { --accent: #5bb0e3; }
.pillar-row:nth-child(4) { --accent: #f2b05e; }
.pillar-row:nth-child(5) { --accent: #b58df2; }

.section-visible .philosophy-card {
    animation: cardFadeIn 0.9s ease-out forwards;
}

.philosophy-card:nth-child(1) {
    background: linear-gradient(145deg, rgba(255, 110, 180, 0.08) 0%, rgba(255, 110, 180, 0.03) 100%);
}

.philosophy-card:nth-child(2) {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 255, 136, 0.03) 100%);
}

.philosophy-card:nth-child(3) {
    background: linear-gradient(145deg, rgba(0, 242, 234, 0.08) 0%, rgba(0, 242, 234, 0.03) 100%);
}

.philosophy-card:nth-child(4) {
    background: linear-gradient(145deg, rgba(255, 184, 76, 0.08) 0%, rgba(255, 184, 76, 0.03) 100%);
}

.philosophy-card:nth-child(5) {
    background: linear-gradient(145deg, rgba(140, 110, 255, 0.08) 0%, rgba(140, 110, 255, 0.03) 100%);
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.section-visible .philosophy-card:nth-child(1) {
    animation-delay: 0.2s;
}

.section-visible .philosophy-card:nth-child(2) {
    animation-delay: 0.4s;
}

.section-visible .philosophy-card:nth-child(3) {
    animation-delay: 0.6s;
}

.section-visible .philosophy-card:nth-child(4) {
    animation-delay: 0.8s;
}

.section-visible .philosophy-card:nth-child(5) {
    animation-delay: 1s;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.philosophy-card:nth-child(1)::before {
    background: linear-gradient(90deg, transparent, #ff6eb4, transparent);
}

.philosophy-card:nth-child(2)::before {
    background: linear-gradient(90deg, transparent, var(--neon-accent), transparent);
}

.philosophy-card:nth-child(3)::before {
    background: linear-gradient(90deg, transparent, #00f2ea, transparent);
}

.philosophy-card:nth-child(4)::before {
    background: linear-gradient(90deg, transparent, #ffb84c, transparent);
}

.philosophy-card:nth-child(5)::before {
    background: linear-gradient(90deg, transparent, #8c6eff, transparent);
}

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

.philosophy-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.philosophy-card:nth-child(1):hover {
    box-shadow: 0 20px 60px rgba(255, 110, 180, 0.2);
}

.philosophy-card:nth-child(2):hover {
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.philosophy-card:nth-child(3):hover {
    box-shadow: 0 20px 60px rgba(0, 242, 234, 0.2);
}

.philosophy-card:nth-child(4):hover {
    box-shadow: 0 20px 60px rgba(255, 184, 76, 0.2);
}

.philosophy-card:nth-child(5):hover {
    box-shadow: 0 20px 60px rgba(140, 110, 255, 0.2);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    transition: all 0.5s ease;
    position: relative;
}

.philosophy-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.5s ease;
}

.philosophy-card:nth-child(1) .philosophy-icon {
    background: rgba(255, 110, 180, 0.15);
    color: #ff6eb4;
}

.philosophy-card:nth-child(2) .philosophy-icon {
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon-accent);
}

.philosophy-card:nth-child(3) .philosophy-icon {
    background: rgba(0, 242, 234, 0.15);
    color: #00f2ea;
}

.philosophy-card:nth-child(4) .philosophy-icon {
    background: rgba(255, 184, 76, 0.15);
    color: #ffb84c;
}

.philosophy-card:nth-child(5) .philosophy-icon {
    background: rgba(140, 110, 255, 0.15);
    color: #8c6eff;
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(5deg);
}

.philosophy-card:hover .philosophy-icon svg {
    transform: scale(1.1);
}

.philosophy-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.philosophy-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.philosophy-card-text {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 400;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    max-width: 540px;
}

.philosophy-card:hover .philosophy-card-text {
    color: rgba(255, 255, 255, 0.95);
}

.philosophy-card-text .card-lead {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.philosophy-card-text .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.08);
    color: var(--neon-accent);
    font-weight: 800;
    font-size: 15px;
}

.philosophy-card-text .card-support {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .pillars-table {
        gap: 14px;
    }

    .pillar-row::before,
    .pillar-row::after {
        display: none;
    }

    .pillars-connector {
        display: none;
    }

    .connector-car {
        display: none;
    }

    .pillar-row {
        grid-template-columns: auto 140px 1fr auto 1fr;
        padding: 18px 20px;
    }

    .pillar-row .pillar-cell.title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 2px 0;
        min-height: 60px;
    }

    .logo {
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .logo-stack {
        height: 64px;
        width: 130px;
    }

    .logo-mark {
        width: 62px;
        margin-top: -2px;
    }

    .logo-text-layer {
        display: none !important;
        transform: none;
    }

    .logo-trace,
    .logo-track,
    .logo-car {
        display: none;
        opacity: 0;
        animation: none;
    }

    /* Keep logo visible on scroll for mobile */
    .header-scrolled .logo-mark-layer {
        opacity: 1 !important;
        animation: none !important;
    }

    .header-scrolled .logo-mark {
        opacity: 1 !important;
        transform: none !important;
    }

    .header-scrolled .logo-track,
    .header-scrolled .logo-trace,
    .header-scrolled .logo-car,
    .header-scrolled .logo-text-layer {
        display: none !important;
        opacity: 0 !important;
        animation: none !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 12px;
        left: auto;
        width: 240px;
        background: var(--black);
        padding: 12px 16px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-end;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .nav-menu.active {
        display: flex;
    }

    .social-links,
    .nav-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        width: 100%;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .header-scrolled .logo-track,
    .header-scrolled .logo-trace,
    .header-scrolled .logo-car,
    .header-scrolled .logo-text-layer {
        display: none;
    }

    .pillars-table {
        margin-top: 50px;
    }

    .pillar-row {
        grid-template-columns: 1fr auto 1fr;
        grid-template-areas:
            "title title title"
            "lead arrow support";
        gap: 10px 10px;
        align-items: center;
        justify-items: center;
        padding: 12px 14px;
        min-height: auto;
        box-shadow: none;
        background: #11131a;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        position: relative;
    }

    .pillar-row::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;
        bottom: 12px;
        width: 3px;
        border-radius: 3px;
        background: var(--accent);
        opacity: 0.9;
    }

    .pillar-row .pillar-cell.icon {
        display: none;
    }

    .pillar-row .pillar-cell.arrow {
        grid-area: arrow;
        width: 24px;
        height: 24px;
        font-size: 13px;
        margin: 0 auto;
        transform: rotate(0deg);
        box-shadow: none;
        border-width: 1px;
    }

    .pillar-row .pillar-cell {
        justify-content: flex-start;
        text-align: center;
    }

    .pillar-row .pillar-cell.title {
        grid-area: title;
        font-size: 15px;
        line-height: 1.2;
        font-weight: 700;
        text-align: center;
    }

    .pillar-row .pillar-cell.lead {
        grid-area: lead;
        font-size: 14px;
        line-height: 1.35;
        font-weight: 600;
        max-width: 520px;
        text-align: center;
    }

    .pillar-row .pillar-cell.support {
        grid-area: support;
        font-size: 13px;
        line-height: 1.4;
        margin-top: 0;
        max-width: 520px;
        text-align: center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .philosophy-headline {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .philosophy-headline br {
        display: block;
        margin: 10px 0;
    }

    .philosophy-subhead {
        font-size: 18px;
        padding: 0 10px;
        margin-top: 32px;
    }

    .philosophy-grid {
        gap: 28px;
    }

    .philosophy-card {
        padding: 40px 30px;
    }

    .philosophy-card-title {
        font-size: 22px;
    }

    .philosophy-card-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 100px 0 80px;
    }

    .philosophy-headline {
        font-size: 42px;
        letter-spacing: -1.5px;
        line-height: 1.25;
    }

    .philosophy-subhead {
        font-size: 17px;
        line-height: 1.7;
        margin-top: 28px;
    }

    .philosophy-hero {
        margin-bottom: 60px;
    }

    .philosophy-grid {
        gap: 70px;
        margin-top: 60px;
    }

    .philosophy-card-text {
        gap: 12px;
    }

    .philosophy-card-text .card-arrow {
        padding: 6px 10px;
    }

    .philosophy-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        gap: 28px;
        padding: 40px 30px;
        align-items: flex-start;
        text-align: left;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        border-radius: 30px;
        position: relative;
        overflow: hidden;
    }

    .philosophy-card:nth-child(n) {
        margin-left: 0;
        margin-right: 0;
    }

    .philosophy-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        opacity: 0.5;
    }

    .philosophy-card:nth-child(1)::before {
        background: linear-gradient(180deg, #ff6eb4 0%, transparent 100%);
    }

    .philosophy-card:nth-child(2)::before {
        background: linear-gradient(180deg, var(--neon-accent) 0%, transparent 100%);
    }

    .philosophy-card:nth-child(3)::before {
        background: linear-gradient(180deg, #00f2ea 0%, transparent 100%);
    }

    .philosophy-card:nth-child(4)::before {
        background: linear-gradient(180deg, #ffb84c 0%, transparent 100%);
    }

    .philosophy-card:nth-child(5)::before {
        background: linear-gradient(180deg, #8c6eff 0%, transparent 100%);
    }

    .philosophy-card::after {
        display: none;
    }

    .philosophy-card:hover {
        transform: translateX(5px) scale(1);
    }

    .philosophy-card:nth-child(2):hover {
        transform: translateX(-5px) scale(1);
    }

    .philosophy-icon {
        width: 100px;
        height: 100px;
    }

    .philosophy-icon svg {
        width: 48px;
        height: 48px;
    }

    .philosophy-card-content {
        align-items: flex-start;
    }

    .philosophy-card-title {
        font-size: 32px;
        letter-spacing: -1px;
        text-align: left;
    }

    .philosophy-card-text {
        font-size: 16px;
        max-width: 100%;
        text-align: left;
    }

    .philosophy-card-title::before {
        bottom: -10px;
        width: 50px;
    }

    .philosophy-card:hover .philosophy-card-title::before {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .philosophy-section {
        padding: 80px 0 60px;
    }

    .philosophy-headline {
        font-size: 28px;
        padding: 0 15px;
        letter-spacing: -0.5px;
    }

    .philosophy-subhead {
        font-size: 16px;
        line-height: 1.65;
        margin-top: 22px;
    }

    .philosophy-hero {
        margin-bottom: 50px;
    }

    .philosophy-grid {
        gap: 50px;
    }

    .philosophy-card {
        gap: 22px;
        padding: 35px 25px;
    }

    .philosophy-card:nth-child(n) {
        margin-left: 0;
        margin-right: 0;
    }

    .philosophy-card-title {
        font-size: 26px;
    }

    .philosophy-card-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .philosophy-icon {
        width: 85px;
        height: 85px;
    }

    .philosophy-icon svg {
        width: 40px;
        height: 40px;
    }

    .philosophy-card-title::before {
        width: 40px;
    }

    .philosophy-card:hover .philosophy-card-title::before {
        width: 80px;
    }
}

/* INQUIRY SECTION */
.inquiry-section {
    padding: 120px 0;
    background-color: #0f1115;
}

.inquiry-subhead {
    text-align: center;
    font-size: 20px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.section-visible .inquiry-subhead {
    animation: fadeInUp 0.7s ease-out 0.15s forwards;
}

.inquiry-form {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
}

.section-visible .inquiry-form {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-accent);
    background-color: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.socials-group .socials-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.add-social-btn {
    margin-top: 10px;
    align-self: flex-start;
    background: transparent;
    color: var(--white);
    border: 1px dashed rgba(255, 255, 255, 0.35);
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.add-social-btn:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.inquiry-form .cta-button {
    width: 100%;
    margin-top: 20px;
}

/* FOOTER */
.footer {
    background-color: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

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

.footer-email {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-locations {
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1px;
}

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

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 14px;
}

/* TEAM PAGE */
/* ========================================
   TEAM PAGE STYLES
   ======================================== */

.team-page {
    background-color: #0f1115;
    color: var(--white);
}

/* Team Hero Section */
.team-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 30%, rgba(255,100,150,0.25), transparent 50%),
                radial-gradient(ellipse at 90% 20%, rgba(100,150,255,0.2), transparent 50%),
                radial-gradient(ellipse at 50% 90%, rgba(255,200,100,0.18), transparent 55%);
    filter: blur(100px);
    opacity: 0.7;
    animation: heroGlowDrift 20s ease-in-out infinite;
}

@keyframes heroGlowDrift {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -20px) scale(1.05) rotate(2deg); }
    66% { transform: translate(-20px, 30px) scale(0.98) rotate(-2deg); }
}

.team-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.team-hero-copy {
    flex: 1;
    max-width: 650px;
}

.team-hero-copy .eyebrow {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    opacity: 0.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.team-hero-copy .eyebrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,100,150,0.8), transparent);
}

.team-hero-copy h1 {
    font-size: 62px;
    line-height: 1.1;
    margin: 0 0 24px;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-hero-copy .lead {
    font-size: 21px;
    opacity: 0.75;
    line-height: 1.6;
    font-weight: 400;
}

/* Team Stats Grid - More Creative */
.team-hero-visual {
    flex: 0 0 auto;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg);
}

.stat-card:nth-child(2) {
    transform: rotate(1deg);
}

.stat-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        rgba(255,100,150,0.3),
        rgba(100,150,255,0.3),
        rgba(255,200,100,0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: -1;
}

.stat-card:hover {
    transform: rotate(0deg) translateY(-6px) scale(1.03);
    border-color: rgba(255,255,255,0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, rgba(255,200,150,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    position: relative;
    font-style: italic;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    position: relative;
}

/* Team Grid Section */
.team-grid-section {
    padding: 80px 0 20px;
    position: relative;
}

.team-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,100,150,0.15), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    grid-auto-rows: 1fr;
    align-items: stretch;
}

/* Team Cards - More Creative & Editorial */
.team-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: visible;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    height: 100%;
}

.team-card::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg,
        rgba(255,100,150,0.0),
        rgba(100,150,255,0.0),
        rgba(255,200,100,0.0));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.team-card:nth-child(1)::after {
    background: linear-gradient(135deg, rgba(255,100,150,0.3), rgba(255,100,150,0.05));
}

.team-card:nth-child(2)::after {
    background: linear-gradient(135deg, rgba(100,150,255,0.3), rgba(100,150,255,0.05));
}

.team-card:nth-child(3)::after {
    background: linear-gradient(135deg, rgba(255,200,100,0.3), rgba(255,200,100,0.05));
}

.team-card:hover {
    transform: translateY(-12px) rotate(-0.5deg);
    border-color: rgba(255,255,255,0.15);
}

.team-card:hover::after {
    opacity: 1;
}

.team-card-inner {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Team Photo - Fixed Zoom */
.team-photo-wrap {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
    filter: grayscale(0%) contrast(1.05);
}

.team-card:hover .team-photo-wrap img {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.1) brightness(1.05);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 32px;
}

.team-card:hover .team-photo-overlay {
    opacity: 1;
}

.team-social-links {
    display: flex;
    gap: 14px;
}

.team-social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(30px);
    opacity: 0;
}

.team-card:hover .team-social-icon {
    transform: translateY(0);
    opacity: 1;
}

.team-social-icon:nth-child(1) { transition-delay: 0.1s; }
.team-social-icon:nth-child(2) { transition-delay: 0.15s; }

.team-social-icon:hover {
    background: rgba(255,255,255,0.95);
    color: var(--black);
    transform: translateY(-6px) rotate(5deg);
    border-color: rgba(255,255,255,0.5);
}

/* Team Card Body */
.team-card-body {
    position: relative;
    z-index: 1;
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

.team-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.team-card h3 {
    font-size: 24px;
    margin: 0 0 4px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.team-role {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.team-badge {
    padding: 5px 12px;
    background: rgba(255,100,150,0.2);
    border: 1.5px solid rgba(255,100,150,0.4);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,150,180,0.95);
    white-space: nowrap;
}

.team-badge-partner {
    background: rgba(100,150,255,0.2);
    border-color: rgba(100,150,255,0.4);
    color: rgba(150,180,255,0.95);
}

.team-badge-strategy {
    background: rgba(255,200,100,0.2);
    border-color: rgba(255,200,100,0.4);
    color: rgba(255,220,150,0.95);
}

/* Team Expertise Tags */
.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.expertise-tag {
    padding: 5px 11px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.expertise-tag:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* Team Bio */
.team-bio-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-bio {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Team Highlights */
.team-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255,255,255,0.12);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.highlight-icon {
    flex-shrink: 0;
    opacity: 0.8;
}

.team-card:nth-child(1) .highlight-icon {
    color: rgba(255,150,180,0.9);
}

.team-card:nth-child(2) .highlight-icon {
    color: rgba(150,180,255,0.9);
}

.team-card:nth-child(3) .highlight-icon {
    color: rgba(255,220,150,0.9);
}

/* Team Values Section */
.team-values-section {
    padding: 40px 0 100px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.01), transparent);
    position: relative;
}

.team-values-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100,150,255,0.12), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.value-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.08), transparent 30%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    border-color: rgba(255,255,255,0.18);
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.value-card:hover::before {
    opacity: 1;
    animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
    to { transform: rotate(360deg); }
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: rotate(10deg) scale(1.1);
    border-color: rgba(255,255,255,0.3);
}

.value-card h3 {
    font-size: 19px;
    margin: 0 0 14px 0;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
}

.value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    margin: 0;
    position: relative;
}

/* Team CTA Section */
.team-cta-section {
    padding: 100px 0 140px;
    position: relative;
}

.team-cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    padding: 70px 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 36px;
    position: relative;
    overflow: hidden;
}

.team-cta-content::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 0deg,
        rgba(255,100,150,0.2),
        rgba(100,150,255,0.2),
        rgba(255,200,100,0.2),
        rgba(255,100,150,0.2));
    animation: rotateCTA 8s linear infinite;
}

@keyframes rotateCTA {
    to { transform: rotate(360deg); }
}

.team-cta-content::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: #0f1115;
    border-radius: 33px;
    z-index: 0;
}

.team-cta-content h2 {
    font-size: 48px;
    margin: 0 0 18px 0;
    position: relative;
    z-index: 1;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-cta-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 36px 0;
    position: relative;
    z-index: 1;
}

.team-cta-content .cta-button {
    position: relative;
    z-index: 1;
}

/* Responsive Design - Team Page */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

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

@media (max-width: 1024px) {
    .team-hero {
        padding: 140px 0 80px;
    }

    .team-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .team-hero-copy h1 {
        font-size: 48px;
    }

    .team-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .team-hero {
        padding: 100px 0 50px;
    }

    .team-hero-copy {
        max-width: 100%;
    }

    .team-hero-copy .eyebrow {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .team-hero-copy h1 {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .team-hero-copy .lead {
        font-size: 17px;
        line-height: 1.5;
    }

    .team-hero-visual {
        width: 100%;
        margin-top: 30px;
    }

    .team-stats-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        position: relative;
        padding: 10px 0;
    }

    .stat-card {
        transform: rotate(0deg) !important;
        padding: 18px 22px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-width: 2px;
        position: relative;
        width: fit-content;
        max-width: 85%;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .stat-card:nth-child(1) {
        align-self: flex-start;
        transform: rotate(-2deg) !important;
        margin-bottom: -15px;
        z-index: 3;
    }

    .stat-card:nth-child(2) {
        align-self: flex-end;
        transform: rotate(2deg) !important;
        margin-bottom: -15px;
        z-index: 2;
    }

    .stat-card:nth-child(3) {
        align-self: center;
        transform: rotate(-1deg) !important;
        z-index: 1;
    }

    .stat-number {
        font-size: 38px;
        margin-bottom: 6px;
        flex-shrink: 0;
        line-height: 1;
        font-weight: 900;
    }

    .stat-label {
        font-size: 10px;
        text-align: center;
        line-height: 1.3;
        max-width: 100%;
        letter-spacing: 1px;
    }

    .team-grid-section {
        padding: 50px 0 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-card {
        border-radius: 18px;
        border-width: 2px;
    }

    .team-card:hover {
        transform: translateY(-4px) rotate(0deg);
    }

    .team-photo-wrap {
        height: 420px;
        clip-path: none;
    }

    .team-photo-wrap img {
        object-position: center 15%;
        object-fit: cover;
    }

    .team-card-body {
        padding: 24px 20px 28px;
        gap: 14px;
    }

    .team-card h3 {
        font-size: 24px;
    }

    .team-role {
        font-size: 11px;
    }

    .team-header {
        flex-direction: row;
        align-items: flex-start;
    }

    .team-badge {
        font-size: 9px;
        padding: 4px 10px;
    }

    .team-expertise {
        gap: 6px;
    }

    .expertise-tag {
        font-size: 10px;
        padding: 4px 9px;
    }

    .team-bio {
        font-size: 14px;
        line-height: 1.65;
    }

    .team-highlights {
        gap: 8px;
        padding-top: 10px;
    }

    .highlight-item {
        font-size: 12px;
    }

    .highlight-icon {
        width: 16px;
        height: 16px;
    }

    .team-values-section {
        padding: 30px 0 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .value-card {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .value-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

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

    .value-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .value-card p {
        font-size: 14px;
    }

    .team-cta-section {
        padding: 60px 0 100px;
    }

    .team-cta-content {
        padding: 40px 24px;
        border-radius: 24px;
        border-width: 2px;
    }

    .team-cta-content h2 {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .team-cta-content p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .team-cta-content .cta-button {
        padding: 14px 32px;
        font-size: 14px;
    }

    .section-header {
        font-size: 22px;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .phone-grid {
        gap: 30px;
    }

    .platform-sticker {
        display: block;
        transform: translateX(-50%) scale(0.8);
    }

    .nav-btn {
        padding: 7px 16px;
        font-size: 11px;
    }

    .section-header {
        font-size: 40px;
    }

    .philosophy-text {
        font-size: 24px;
    }

    /* Logos on tablet/mobile */
    .logo-strip {
        gap: 28px 32px;
        padding: 20px;
    }

    .partner-logo-img {
        height: 42px;
        max-width: 110px;
    }

    .partner-logo-img.claude-logo {
        height: 60px;
        max-width: 200px;
    }

    .partner-logo-img.teachable-logo {
        height: 68px;
        max-width: 220px;
    }

    .partner-logo-img.kajabi-logo {
        height: 82px;
        max-width: 240px;
    }
}

@media (max-width: 900px) {
    .nav-buttons {
        gap: 8px;
    }

    .nav-btn {
        padding: 6px 14px;
        font-size: 11px;
    }

    .logo {
        font-size: 14px;
    }
}

/* Hamburger menu is now always visible - styles moved to base */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 15px 0;
    }

    .logo {
        position: static;
        transform: none;
        pointer-events: auto;
        font-size: 15px;
        text-align: left;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subhead {
        font-size: 18px;
    }

    .phone-grid {
        position: relative;
        height: 650px;
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .phone-card {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        animation: none !important;
        margin: 0;
        filter: none !important;
    }

    .phone-card.active {
        opacity: 1;
        z-index: 2;
        filter: none !important;
    }

    /* Disable hover effects on mobile */
    .phone-card:hover .phone-frame,
    .phone-card:nth-child(1):hover .phone-frame,
    .phone-card:nth-child(2):hover .phone-frame,
    .phone-card:nth-child(3):hover .phone-frame,
    .phone-card:nth-child(4):hover .phone-frame {
        transform: none !important;
    }

    .phone-frame {
        background: #1a1a1a !important;
        backdrop-filter: none !important;
    }

    .phone-frame::before {
        display: none !important;
    }

    .phone-screen::before,
    .phone-screen::after {
        display: none !important;
    }

    .phone-card::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 140%;
        height: 140%;
        border-radius: 50%;
        pointer-events: none;
        z-index: -1;
        filter: blur(80px);
        opacity: 0;
        display: block !important;
        transition: opacity 1s ease-in-out;
        background: transparent;
    }

    .phone-card:nth-child(1).active::before {
        background: radial-gradient(circle, rgba(193, 53, 132, 0.7) 0%, rgba(193, 53, 132, 0.35) 40%, transparent 70%);
        opacity: 1;
    }

    .phone-card:nth-child(2).active::before {
        background: radial-gradient(circle, rgba(10, 102, 194, 0.7) 0%, rgba(10, 102, 194, 0.35) 40%, transparent 70%);
        opacity: 1;
    }

    .phone-card:nth-child(3).active::before {
        background: radial-gradient(circle, rgba(0, 242, 234, 0.6) 0%, rgba(0, 242, 234, 0.3) 40%, transparent 70%);
        opacity: 1;
    }

    .phone-card:nth-child(4).active::before {
        background: radial-gradient(circle, rgba(255, 0, 0, 0.35) 0%, rgba(255, 0, 0, 0.2) 40%, transparent 70%);
        opacity: 1;
    }

    .phone-grid::before {
        display: none;
    }

    .phone-card::after {
        display: none;
    }

    .roster-section {
        padding: 80px 0 100px;
    }

    .section-header {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .creator-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .creator-card {
        font-size: 0.9em;
    }

    .creator-image-placeholder {
        height: 280px;
    }

    .creator-image {
        height: 280px;
    }

    .creator-name {
        font-size: 18px;
        padding: 15px 15px 5px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .creator-tagline {
        padding: 5px 15px 15px;
    }

    .creator-category {
        align-self: flex-start;
    }

    .roster-more {
        font-size: 32px;
        margin-top: 60px;
    }

    .creator-tagline {
        font-size: 13px;
        padding: 0 15px 10px;
    }

    .creator-category {
        margin: 0;
        font-size: 10px;
        padding: 6px 12px;
    }

    .logo-strip {
        gap: 40px;
    }

    .partner-logo {
        font-size: 18px;
    }

    .logo-strip {
        gap: 40px 50px;
        padding: 20px;
    }

    .partner-logo-img {
        height: 35px;
        max-width: 100px;
    }

    .logo-item:hover {
        transform: translateY(-5px) scale(1.05);
    }

    .philosophy-text {
        font-size: 20px;
    }

    .philosophy-section {
        padding: 100px 0 80px;
    }

    .philosophy-headline {
        font-size: 42px;
        letter-spacing: -1.5px;
        line-height: 1.25;
    }

    .philosophy-hero {
        margin-bottom: 60px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .philosophy-card {
        padding: 35px 30px;
    }

    .philosophy-icon {
        width: 70px;
        height: 70px;
    }

    .philosophy-icon svg {
        width: 35px;
        height: 35px;
    }

    .philosophy-card-title {
        font-size: 22px;
    }

    .philosophy-card-text {
        font-size: 15px;
    }

    .philosophy-card:hover {
        transform: translateY(-5px) scale(1);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        padding: 0 10px;
        line-height: 1.4;
        letter-spacing: -1px;
    }

    .hero-subhead {
        font-size: 16px;
    }

    .nav-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    .logo {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    .section-header {
        font-size: 28px;
    }

    .philosophy-text {
        font-size: 18px;
    }

    .phone-grid {
        height: 580px;
        padding: 20px 0;
    }

    .phone-card {
        transform: translate(-50%, -50%) scale(0.85) !important;
        filter: none !important;
    }

    .phone-card.active {
        transform: translate(-50%, -50%) scale(0.85) !important;
        filter: none !important;
    }

    .phone-frame {
        background: #1a1a1a !important;
        backdrop-filter: none !important;
    }

    .phone-frame::before {
        display: none !important;
    }

    .phone-screen::before,
    .phone-screen::after {
        display: none !important;
    }

    .phone-card::before {
        width: 130%;
        height: 130%;
        filter: blur(70px);
    }

    .phone-card:nth-child(1).active::before,
    .phone-card:nth-child(2).active::before,
    .phone-card:nth-child(3).active::before,
    .phone-card:nth-child(4).active::before {
        opacity: 1;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }

    .nav-btn {
        padding: 5px 10px;
        font-size: 9px;
    }

    .logo {
        font-size: 12px;
    }

    .phone-card {
        transform: translate(-50%, -50%) scale(0.8) !important;
        filter: none !important;
    }

    .phone-card.active {
        transform: translate(-50%, -50%) scale(0.8) !important;
        filter: none !important;
    }

    .phone-frame {
        background: #1a1a1a !important;
        backdrop-filter: none !important;
    }

    .phone-frame::before {
        display: none !important;
    }

    .phone-screen::before,
    .phone-screen::after {
        display: none !important;
    }

    .phone-card::before {
        width: 120%;
        height: 120%;
        filter: blur(60px);
    }

    .phone-card:nth-child(1).active::before,
    .phone-card:nth-child(2).active::before,
    .phone-card:nth-child(3).active::before,
    .phone-card:nth-child(4).active::before {
        opacity: 1;
    }

    .phone-grid {
        height: 550px;
    }
}

/* ========================================
   SPEAKERS PAGE STYLES
   ======================================== */

/* Stage Curtains Animation */
.stage-curtains {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: none;
    display: flex;
}

.curtain {
    position: relative;
    width: 50%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.curtain-left {
    justify-content: flex-end;
    animation: curtainOpenLeft 2.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

.curtain-right {
    justify-content: flex-start;
    animation: curtainOpenRight 2.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;
}

.curtain-fabric {
    width: 35%;
    height: 120%;
    margin-top: -5%;
    background: linear-gradient(
        180deg,
        #8B0000 0%,
        #b91c1c 10%,
        #7f1d1d 25%,
        #b91c1c 40%,
        #991b1b 50%,
        #7f1d1d 60%,
        #b91c1c 75%,
        #8B0000 90%,
        #5c0000 100%
    );
    position: relative;
    box-shadow: inset -20px 0 40px rgba(0, 0, 0, 0.4),
                inset 20px 0 40px rgba(0, 0, 0, 0.2);
    animation: curtainSway 3s ease-in-out infinite;
}

.curtain-left .curtain-fabric {
    border-radius: 0 0 50% 0;
    transform-origin: top center;
    box-shadow: inset -30px 0 50px rgba(0, 0, 0, 0.5),
                10px 0 30px rgba(0, 0, 0, 0.3);
}

.curtain-left .curtain-fabric:nth-child(1) {
    background: linear-gradient(180deg, #6b0f0f 0%, #8B0000 30%, #5c0000 70%, #450000 100%);
    animation: curtainSway 3s ease-in-out infinite;
    animation-delay: 0s;
}

.curtain-left .curtain-fabric:nth-child(2) {
    background: linear-gradient(180deg, #8B0000 0%, #b91c1c 20%, #991b1b 50%, #7f1d1d 80%, #6b0f0f 100%);
    margin-left: -8%;
    animation: curtainSway 3.2s ease-in-out infinite;
    animation-delay: 0.2s;
}

.curtain-left .curtain-fabric:nth-child(3) {
    background: linear-gradient(180deg, #991b1b 0%, #b91c1c 30%, #8B0000 60%, #7f1d1d 100%);
    margin-left: -8%;
    animation: curtainSway 2.8s ease-in-out infinite;
    animation-delay: 0.4s;
}

.curtain-right .curtain-fabric {
    border-radius: 0 0 0 50%;
    transform-origin: top center;
    box-shadow: inset 30px 0 50px rgba(0, 0, 0, 0.5),
                -10px 0 30px rgba(0, 0, 0, 0.3);
}

.curtain-right .curtain-fabric:nth-child(1) {
    background: linear-gradient(180deg, #991b1b 0%, #b91c1c 30%, #8B0000 60%, #7f1d1d 100%);
    animation: curtainSwayReverse 2.8s ease-in-out infinite;
    animation-delay: 0.1s;
}

.curtain-right .curtain-fabric:nth-child(2) {
    background: linear-gradient(180deg, #8B0000 0%, #b91c1c 20%, #991b1b 50%, #7f1d1d 80%, #6b0f0f 100%);
    margin-right: -8%;
    animation: curtainSwayReverse 3.1s ease-in-out infinite;
    animation-delay: 0.3s;
}

.curtain-right .curtain-fabric:nth-child(3) {
    background: linear-gradient(180deg, #6b0f0f 0%, #8B0000 30%, #5c0000 70%, #450000 100%);
    margin-right: -8%;
    animation: curtainSwayReverse 3.3s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Velvet texture overlay */
.curtain-fabric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        180deg,
        transparent 0px,
        rgba(0, 0, 0, 0.03) 2px,
        transparent 4px
    );
    pointer-events: none;
}

/* Shimmer effect on fabric */
.curtain-fabric::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 200%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 100%
    );
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(25%); }
}

/* Gold trim at top - removed since under nav */

/* Curtain sway animations */
@keyframes curtainSway {
    0%, 100% {
        transform: skewX(0deg) scaleX(1);
    }
    25% {
        transform: skewX(0.5deg) scaleX(1.01);
    }
    75% {
        transform: skewX(-0.3deg) scaleX(0.99);
    }
}

@keyframes curtainSwayReverse {
    0%, 100% {
        transform: skewX(0deg) scaleX(1);
    }
    25% {
        transform: skewX(-0.5deg) scaleX(0.99);
    }
    75% {
        transform: skewX(0.3deg) scaleX(1.01);
    }
}

/* Curtain opening animations */
@keyframes curtainOpenLeft {
    0% {
        transform: translateX(0) skewX(0deg);
    }
    30% {
        transform: translateX(-10%) skewX(2deg);
    }
    100% {
        transform: translateX(-105%) skewX(-1deg);
    }
}

@keyframes curtainOpenRight {
    0% {
        transform: translateX(0) skewX(0deg);
    }
    30% {
        transform: translateX(10%) skewX(-2deg);
    }
    100% {
        transform: translateX(105%) skewX(1deg);
    }
}

/* Delay hero content until curtains start opening */
.speakers-hero .hero-glow,
.speakers-hero .hero-floating-brands,
.speakers-hero .speakers-hero-content,
.speakers-hero .hero-scroll-indicator {
    animation-delay: 1s;
}

.speakers-hero .hero-eyebrow {
    animation: fadeInDown 1s ease-out 1.5s backwards;
}

.speakers-hero .title-line-1 {
    animation: titleReveal 1s ease-out 1.7s backwards;
}

.speakers-hero .title-line-2 {
    animation: titleReveal 1s ease-out 1.9s backwards, gradientShift 8s ease-in-out 1.9s infinite;
}

.speakers-hero .title-line-3 {
    animation: titleReveal 1s ease-out 2.1s backwards;
}

.speakers-hero .speakers-hero-subhead {
    animation: fadeInUp 1s ease-out 2.3s backwards;
}

.speakers-hero .hero-stats-wrap {
    animation: fadeInUp 1s ease-out 2.5s backwards;
}

/* Premium Hero Section */
.speakers-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050507;
}

/* Animated glow orbs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    pointer-events: none;
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #e94560 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: glowFloat1 20s ease-in-out infinite;
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6c5ce7 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: glowFloat2 25s ease-in-out infinite;
}

.hero-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d4aa 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowFloat3 18s ease-in-out infinite;
}

/* Floating hero videos */
.hero-video {
    position: absolute;
    width: 450px;
    z-index: 1;
    opacity: 0.6;
    overflow: visible;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
}

.hero-video::before {
    content: '';
    position: absolute;
    inset: -15%;
    background:
        linear-gradient(to right, #050507 0%, transparent 20%, transparent 80%, #050507 100%),
        linear-gradient(to bottom, #050507 0%, transparent 20%, transparent 80%, #050507 100%);
    background-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.9) brightness(0.95);
}

.hero-video-1 {
    bottom: 5%;
    right: 5%;
    animation: heroVideoFloat1 15s ease-in-out infinite;
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 28%, transparent 65%);
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 28%, transparent 65%);
}

.hero-video-2 {
    top: 5%;
    left: 5%;
    width: 420px;
    opacity: 0.7;
    animation: heroVideoFloat2 18s ease-in-out infinite;
}

@keyframes heroVideoFloat1 {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translateY(-8px) scale(1.02);
        opacity: 0.65;
    }
}

@keyframes heroVideoFloat2 {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-6px) scale(1.02);
        opacity: 0.8;
    }
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(50px, 30px) scale(1.1); opacity: 0.4; }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-40px, -50px) scale(1.15); opacity: 0.7; }
}

@keyframes glowFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-45%, -55%) scale(1.2); opacity: 0.6; }
}

/* Floating brand names */
.hero-floating-brands {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-brand {
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.fb-1 { top: 15%; left: 8%; animation: floatBrand 30s linear infinite; }
.fb-2 { top: 25%; right: 12%; animation: floatBrand 35s linear infinite reverse; }
.fb-3 { bottom: 30%; left: 5%; animation: floatBrand 28s linear infinite; }
.fb-4 { bottom: 20%; right: 8%; animation: floatBrand 32s linear infinite reverse; }
.fb-5 { top: 60%; left: 15%; animation: floatBrand 26s linear infinite; }

@keyframes floatBrand {
    0%, 100% { transform: translateY(0); opacity: 0.08; }
    50% { transform: translateY(-20px); opacity: 0.15; }
}

/* Hero content */
.speakers-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 160px 20px 120px;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.eyebrow-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Dramatic title */
.speakers-hero-title {
    margin-bottom: 40px;
    line-height: 1;
}

.title-line {
    display: block;
    animation: titleReveal 1s ease-out backwards;
}

.title-line-1 {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    animation-delay: 0.2s;
}

.title-line-2 {
    font-size: 140px;
    font-weight: 800;
    letter-spacing: -6px;
    text-transform: lowercase;
    background: linear-gradient(135deg, #ffffff 0%, #e94560 30%, #6c5ce7 60%, #00d4aa 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out 0.4s backwards, gradientShift 8s ease-in-out infinite;
    line-height: 0.9;
    margin-bottom: 10px;
}

.title-line-3 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -2px;
    color: #ffffff;
    animation-delay: 0.6s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subhead */
.speakers-hero-subhead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 60px;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats bar */
/* Stats + CTA Wrapper */
.hero-stats-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 25px 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    flex-wrap: nowrap;
}

.hero-stat {
    text-align: center;
    white-space: nowrap;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
    flex-shrink: 0;
}

/* CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #ffffff;
    color: #050507;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 1s ease-out 1.2s backwards;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.25);
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.5s backwards;
}

.hero-scroll-indicator span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #ffffff;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(40px); opacity: 0; }
}

/* Speakers Grid Section */
.speakers-grid-section {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #0f1115 0%, #0f1115 70%, #0d0f12 100%);
    position: relative;
}

/* Section CTA */
.speakers-section-cta {
    text-align: center;
    margin-top: 60px;
}

.section-cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.section-cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.speakers-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

.speakers-grid-section .section-header {
    text-align: center;
    margin-bottom: 70px;
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
}


.speakers-grid-section .container {
    position: relative;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Speaker Card - Base with accent color variable */
.speaker-card {
    --accent: #00ff88;
    background: linear-gradient(145deg,
        color-mix(in srgb, var(--accent) 8%, #111318) 0%,
        #111318 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
}

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

.speaker-card:hover {
    transform: translateY(-12px) scale(1.01);
    border-color: color-mix(in srgb, var(--accent) 40%, transparent);
    box-shadow:
        0 30px 60px color-mix(in srgb, var(--accent) 20%, transparent),
        0 0 0 1px color-mix(in srgb, var(--accent) 15%, transparent);
}

/* Clean white/silver accent for speakers */
.speaker-card { --accent: #ffffff; }
.speaker-card:nth-child(1) { --accent: #ffffff; }
.speaker-card:nth-child(2) { --accent: #e8e8e8; }
.speaker-card:nth-child(3) { --accent: #f0f0f0; }
.speaker-card:nth-child(4) { --accent: #ffffff; }
.speaker-card:nth-child(5) { --accent: #e8e8e8; }
.speaker-card:nth-child(6) { --accent: #f0f0f0; }

.speaker-media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.speaker-media-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #111318, transparent);
    pointer-events: none;
    z-index: 2;
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: all 0.6s ease;
}

.speaker-card:hover .speaker-image {
    opacity: 0;
}

.speaker-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.speaker-card:hover .speaker-video {
    opacity: 1;
}

/* Watch Speaking Button Overlay */
.speaker-watch-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 5;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.speaker-card:hover .speaker-watch-link {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.watch-btn:hover {
    background: rgba(139, 0, 0, 0.85);
    border-color: rgba(212, 168, 83, 0.5);
    box-shadow: 0 12px 40px rgba(139, 0, 0, 0.5), 0 0 20px rgba(212, 168, 83, 0.2);
    transform: scale(1.05);
}

.watch-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.watch-btn:hover svg {
    transform: scale(1.2);
}

.speaker-card-body {
    padding: 28px 28px 32px;
    position: relative;
}

.speaker-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.tbd-marker {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    margin-left: 8px;
}

.speaker-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.speaker-tag {
    display: inline-block;
    padding: 6px 14px;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-tag {
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}

.speaker-bio {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 18px;
}

.speaker-stages {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 2px solid color-mix(in srgb, var(--accent) 50%, transparent);
}

.stages-label {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stages-list {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.speaker-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #ffffff;
    color: #111;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
}

.speaker-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
    background: #f5f5f5;
}

/* Social Proof Section - Theatrical/Performance Design */
/* ========================================
   BROADWAY MARQUEE SECTION
   ======================================== */
.speakers-proof-section {
    position: relative;
    overflow: hidden;
    background: #0d0f12;
    padding: 80px 40px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Soft glow behind marquee */
.speakers-proof-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(255, 180, 80, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* The Marquee Frame - Soft edges */
.marquee-frame {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    background: linear-gradient(145deg, rgba(18, 16, 14, 0.9) 0%, rgba(10, 9, 8, 0.95) 100%);
    border: none;
    border-radius: 16px;
    padding: 50px;
    box-shadow:
        0 0 120px rgba(255, 180, 80, 0.06),
        0 40px 80px rgba(0, 0, 0, 0.5);
}

/* Light Bulb Rows */
.bulb-row, .bulb-col {
    position: absolute;
    display: flex;
    justify-content: space-around;
    z-index: 10;
}

.bulb-row {
    left: 20px;
    right: 20px;
    flex-direction: row;
}

.bulb-row-top { top: -8px; }
.bulb-row-bottom { bottom: -8px; }

.bulb-col {
    top: 20px;
    bottom: 20px;
    flex-direction: column;
}

.bulb-col-left { left: -8px; }
.bulb-col-right { right: -8px; }

/* Individual Bulbs - Subtle warm glow */
.bulb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff9e6, #ffcc33);
    box-shadow:
        0 0 6px 2px rgba(255, 200, 100, 0.7),
        0 0 15px 4px rgba(255, 180, 80, 0.3);
    animation: bulbSubtle 4s ease-in-out infinite;
}

/* Gentle stagger for organic feel */
.bulb:nth-child(odd) { animation-delay: 0s; }
.bulb:nth-child(even) { animation-delay: 2s; }
.bulb:nth-child(3n) { animation-delay: 1s; }
.bulb:nth-child(5n) { animation-delay: 3s; }

/* Subtle warm pulse - not too dramatic */
@keyframes bulbSubtle {
    0%, 100% {
        opacity: 1;
        box-shadow:
            0 0 6px 2px rgba(255, 200, 100, 0.8),
            0 0 15px 4px rgba(255, 180, 80, 0.4);
    }
    50% {
        opacity: 0.7;
        box-shadow:
            0 0 4px 1px rgba(255, 200, 100, 0.5),
            0 0 10px 2px rgba(255, 180, 80, 0.2);
    }
}

/* Inner Marquee Content */
.marquee-inner {
    position: relative;
    z-index: 5;
    background: transparent;
    border: none;
    padding: 60px 50px;
}

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

.marquee-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 200, 100, 0.7);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.marquee-headline {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.marquee-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, #ffcc33 0%, #ff9933 50%, #ffcc33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.marquee-subtext {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

/* Stages Showcase - Elegant Grid */
.stages-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.stage-badge {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(255, 200, 100, 0.25);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
}

.stage-badge:hover {
    background: rgba(255, 200, 100, 0.1);
    border-color: rgba(255, 200, 100, 0.5);
    color: #ffcc33;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 180, 80, 0.2);
}

/* Scrolling Stage Names */
.stages-scroll-wrap {
    overflow: hidden;
    margin-top: 30px;
    padding: 25px 0;
    background: linear-gradient(180deg, rgba(255, 200, 100, 0.03) 0%, transparent 100%);
}

.stages-scroll-track {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: stagesScroll 35s linear infinite;
    width: max-content;
}

@keyframes stagesScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stage-name {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.stage-name:hover {
    color: #ffcc33;
}

.stage-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 200, 100, 0.5);
    flex-shrink: 0;
}

/* Speakers Form Section */
.speakers-form-section {
    padding: 100px 0;
    background: #0d0f12;
    position: relative;
}

@media (max-width: 768px) {
    .speakers-form-section {
        padding: 60px 0 80px;
    }

    .speakers-form-header {
        margin-bottom: 40px;
    }
}

.speakers-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.speakers-form-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}

.speakers-form-subline {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.65);
}

.speakers-form {
    max-width: 320px;
    margin: 0 auto;
    padding: 35px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.speakers-form .form-row {
    display: block;
}

.speakers-form .form-group {
    margin-bottom: 24px;
}

.speakers-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.speakers-form .form-group input,
.speakers-form .form-group textarea,
.speakers-form .form-group select {
    width: 100%;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.speakers-form .form-group input:focus,
.speakers-form .form-group textarea:focus,
.speakers-form .form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.speakers-form .form-group input::placeholder,
.speakers-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.speakers-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

/* Topic Chips Grid */
.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.topic-chip {
    position: relative;
    cursor: pointer;
}

.topic-chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.topic-chip span {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topic-chip:hover span {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.topic-chip input:checked + span {
    background: rgba(255, 200, 100, 0.15);
    border-color: rgba(255, 180, 80, 0.6);
    color: #ffcc33;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 18px 40px;
    background: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.speakers-form .cta-button {
    width: 100%;
    margin-top: 30px;
    padding: 20px 40px;
    background: #ffffff;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    color: #111;
}

.speakers-form .cta-button:hover {
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.25);
    background: #f5f5f5;
}

/* Speakers Page Responsive */
@media (max-width: 1024px) {
    /* Hide hero videos on tablet */
    .hero-video {
        display: none;
    }

    .title-line-2 {
        font-size: 100px;
        letter-spacing: -4px;
    }

    .title-line-3 {
        font-size: 56px;
    }

    .hero-stats {
        gap: 35px;
    }

    .stat-number {
        font-size: 40px;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
    }

    .marquee-frame {
        padding: 35px;
    }

    .marquee-inner {
        padding: 45px 35px;
    }

    .marquee-headline {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .speakers-hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    /* Hide hero videos on mobile */
    .hero-video {
        display: none;
    }

    .speakers-hero-content {
        padding: 120px 25px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-floating-brands {
        display: none;
    }

    .hero-glow-1 {
        width: 400px;
        height: 400px;
    }

    .hero-glow-2 {
        width: 350px;
        height: 350px;
    }

    .hero-glow-3 {
        width: 250px;
        height: 250px;
    }

    .hero-eyebrow {
        margin-bottom: 35px;
    }

    .eyebrow-line {
        width: 30px;
    }

    .eyebrow-text {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .title-line-1 {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .title-line-2 {
        font-size: 80px;
        letter-spacing: -3px;
    }

    .title-line-3 {
        font-size: 36px;
    }

    .speakers-hero-subhead {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .hero-stats-wrap {
        gap: 25px;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px 30px;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .speakers-grid-section {
        padding: 60px 0 50px;
    }

    .speakers-grid-section .section-header {
        margin-bottom: 40px;
        font-size: 12px;
    }

    .speakers-section-cta {
        margin-top: 40px;
    }

    .section-cta-btn {
        padding: 16px 40px;
        font-size: 13px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 15px;
    }

    .speaker-card {
        border-radius: 16px;
    }

    .speaker-media-wrap {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .speaker-image {
        object-position: center 15%;
    }

    /* Show watch button always on mobile (no hover) */
    .speaker-watch-link {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .watch-btn {
        padding: 10px 18px;
        font-size: 11px;
    }

    /* Simplified mobile marquee - no frame, just content */
    .speakers-proof-section {
        padding: 50px 20px 60px;
    }

    .marquee-frame {
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    /* Hide bulbs on mobile */
    .bulb-row,
    .bulb-col {
        display: none;
    }

    .marquee-inner {
        padding: 0;
    }

    .marquee-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
        margin-bottom: 20px;
        color: rgba(255, 180, 80, 0.8);
    }

    .marquee-headline {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .marquee-subtext {
        font-size: 14px;
        margin-bottom: 0;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
    }

    .stages-scroll-wrap {
        margin-top: 35px;
        padding: 20px 0;
        background: linear-gradient(90deg, transparent, rgba(255, 180, 80, 0.08), transparent);
        border-top: 1px solid rgba(255, 180, 80, 0.1);
        border-bottom: 1px solid rgba(255, 180, 80, 0.1);
    }

    .stage-name {
        font-size: 13px;
    }

    .stages-scroll-track {
        gap: 20px;
    }
        left: 15px;
        right: 15px;
    }

    .bulb-row-top { top: -5px; }
    .bulb-row-bottom { bottom: -5px; }

    .bulb-col {
        top: 15px;
        bottom: 15px;
    }

    .bulb-col-left { left: -5px; }
    .bulb-col-right { right: -5px; }

    .stage-badge {
        padding: 8px 16px;
        font-size: 11px;
    }

    .stages-showcase {
        gap: 10px;
    }

    .stages-scroll-wrap {
        margin-top: 25px;
        padding: 18px 0;
    }

    .stage-name {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .stages-scroll-track {
        gap: 18px;
    }

    .stage-dot {
        width: 4px;
        height: 4px;
    }

    .speakers-form-title {
        font-size: 36px;
    }

    .speakers-form {
        margin: 0 15px;
        max-width: calc(100% - 30px);
        padding: 30px 25px;
    }

    .speakers-form .form-row {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        gap: 8px;
    }

    .topic-chip span {
        padding: 8px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .speakers-hero-content {
        padding: 120px 15px 80px;
    }

    .title-line-1 {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .title-line-2 {
        font-size: 60px;
        letter-spacing: -2px;
    }

    .title-line-3 {
        font-size: 28px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .speaker-name {
        font-size: 22px;
    }

    .speaker-tags {
        gap: 6px;
    }

    .speaker-tag {
        padding: 5px 12px;
        font-size: 9px;
    }

    .speaker-card-body {
        padding: 22px;
    }

    .speakers-proof-section {
        padding: 50px 12px;
    }

    .marquee-frame {
        padding: 15px;
    }

    .marquee-inner {
        padding: 28px 15px;
    }

    .marquee-eyebrow {
        font-size: 8px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }

    .marquee-headline {
        font-size: 24px;
        line-height: 1.3;
    }

    .marquee-accent {
        font-size: 22px;
    }

    .marquee-subtext {
        font-size: 12px;
    }

    .stage-badge {
        padding: 6px 12px;
        font-size: 10px;
    }

    .stages-scroll-wrap {
        margin-top: 20px;
        padding: 15px 0;
    }

    .stage-name {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .stages-scroll-track {
        gap: 12px;
    }

    .stage-dot {
        width: 3px;
        height: 3px;
    }

    .speakers-form-title {
        font-size: 28px;
    }
}

/* ============================================
   BRAND PARTNERSHIPS PAGE - WOW EDITION
   ============================================ */

.partnerships-page {
    background: #030305;
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: auto;
}

.partnerships-page * {
    cursor: auto;
}

.partnerships-page a,
.partnerships-page button {
    cursor: pointer;
}

/* Partnerships page - use same nav as homepage */

/* Morphing Background Blobs */
.morph-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blobMorph 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #0066ff 0%, #00ffcc 100%);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff0088 0%, #ff6600 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%;
        transform: rotate(180deg) scale(0.95);
    }
    75% {
        border-radius: 60% 40% 60% 30% / 70% 50% 40% 60%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Noise Texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
/* =========================================
   PARTNERSHIPS HERO - Artistic Design
   ========================================= */
.p-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    overflow: hidden;
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -100px;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: -50px;
    background: radial-gradient(circle, rgba(0,200,255,0.1) 0%, transparent 70%);
    animation: floatShape 12s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 20%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: floatShape 10s ease-in-out infinite 2s;
}

.shape-ring {
    width: 500px;
    height: 500px;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,0.05);
    background: transparent;
    animation: pulseRing 8s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(15px, 10px) rotate(2deg); }
}

@keyframes pulseRing {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scale(1.05); opacity: 0.3; }
}

/* Hero Grid Layout */
.p-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.p-hero-content {
    max-width: 600px;
}

/* Hero Label */
.hero-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.label-line {
    width: 40px;
    height: 1px;
    background: #00ff88;
}

.hero-label span:last-child {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* Headline Typography */
.p-hero-headline {
    margin-bottom: 35px;
}

.headline-lg {
    display: block;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.headline-lg:nth-child(1) { animation-delay: 0.3s; }
.headline-lg:nth-child(2) { animation-delay: 0.4s; }

.headline-xl {
    display: block;
    font-size: clamp(70px, 10vw, 140px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
    margin-top: 5px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.5s;
}

.gradient-text {
    background: linear-gradient(135deg, #00ff88 0%, #00ccff 50%, #00ff88 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease forwards 0.6s, gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.p-hero-subhead {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 520px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.75s;
}

.p-hero-subhead-2 {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 520px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.85s;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #00ff88;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.9s;
    transition: all 0.3s ease;
}

.cta-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.cta-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,255,136,0.25);
}

.cta-primary:hover svg {
    transform: translateX(4px);
}

/* Network Scene (Right Side) */
.p-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.network-scene {
    position: relative;
    width: 500px;
    height: 500px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Central Hub */
.network-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hub-core {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0,255,136,0.3) 0%, rgba(0,255,136,0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,255,136,0.3);
}

.hub-ring-1 {
    width: 90px;
    height: 90px;
    animation: ringExpand 3s ease-out infinite;
}

.hub-ring-2 {
    width: 90px;
    height: 90px;
    animation: ringExpand 3s ease-out infinite 1s;
}

.hub-ring-3 {
    width: 90px;
    height: 90px;
    animation: ringExpand 3s ease-out infinite 2s;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes ringExpand {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hub-label {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00ff88;
    text-align: center;
    line-height: 1.3;
}

/* SVG Connection Lines */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.conn-path {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 1;
    stroke-dasharray: 5 5;
}

.particle {
    fill: #00ff88;
}

.particle.p1, .particle.p3, .particle.p5 { fill: #00ff88; }
.particle.p2, .particle.p4, .particle.p6 { fill: #00ccff; }

/* Expert Nodes */
.expert-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: nodeAppear 0.6s ease forwards;
}

.node-1 { top: 8%; right: 15%; animation-delay: 0.6s; }
.node-2 { top: 42%; right: -5%; animation-delay: 0.8s; }
.node-3 { bottom: 8%; right: 15%; animation-delay: 1s; }
.node-4 { top: 8%; left: 15%; animation-delay: 0.7s; }
.node-5 { top: 42%; left: -5%; animation-delay: 0.9s; }
.node-6 { bottom: 8%; left: 15%; animation-delay: 1.1s; }

@keyframes nodeAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.node-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.node-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--node-color), transparent);
    -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;
}

.node-avatar svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s ease;
}

/* Unique colors for each node */
.node-1 { --node-color: #00ff88; }
.node-1 .node-avatar { background: linear-gradient(135deg, rgba(0,255,136,0.15) 0%, rgba(0,255,136,0.03) 100%); }
.node-1 .node-avatar svg { color: #00ff88; }

.node-2 { --node-color: #00ccff; }
.node-2 .node-avatar { background: linear-gradient(135deg, rgba(0,204,255,0.15) 0%, rgba(0,204,255,0.03) 100%); }
.node-2 .node-avatar svg { color: #00ccff; }

.node-3 { --node-color: #ff6b6b; }
.node-3 .node-avatar { background: linear-gradient(135deg, rgba(255,107,107,0.15) 0%, rgba(255,107,107,0.03) 100%); }
.node-3 .node-avatar svg { color: #ff6b6b; }

.node-4 { --node-color: #ffd93d; }
.node-4 .node-avatar { background: linear-gradient(135deg, rgba(255,217,61,0.15) 0%, rgba(255,217,61,0.03) 100%); }
.node-4 .node-avatar svg { color: #ffd93d; }

.node-5 { --node-color: #c77dff; }
.node-5 .node-avatar { background: linear-gradient(135deg, rgba(199,125,255,0.15) 0%, rgba(199,125,255,0.03) 100%); }
.node-5 .node-avatar svg { color: #c77dff; }

.node-6 { --node-color: #ff77a9; }
.node-6 .node-avatar { background: linear-gradient(135deg, rgba(255,119,169,0.15) 0%, rgba(255,119,169,0.03) 100%); }
.node-6 .node-avatar svg { color: #ff77a9; }

.expert-node:hover .node-avatar {
    transform: scale(1.15);
    box-shadow: 0 0 35px rgba(var(--node-color-rgb, 0,255,136), 0.4);
}

.node-1:hover .node-avatar { box-shadow: 0 0 35px rgba(0,255,136,0.4); }
.node-2:hover .node-avatar { box-shadow: 0 0 35px rgba(0,204,255,0.4); }
.node-3:hover .node-avatar { box-shadow: 0 0 35px rgba(255,107,107,0.4); }
.node-4:hover .node-avatar { box-shadow: 0 0 35px rgba(255,217,61,0.4); }
.node-5:hover .node-avatar { box-shadow: 0 0 35px rgba(199,125,255,0.4); }
.node-6:hover .node-avatar { box-shadow: 0 0 35px rgba(255,119,169,0.4); }

.node-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.node-1 .node-label { color: rgba(0,255,136,0.7); }
.node-2 .node-label { color: rgba(0,204,255,0.7); }
.node-3 .node-label { color: rgba(255,107,107,0.7); }
.node-4 .node-label { color: rgba(255,217,61,0.7); }
.node-5 .node-label { color: rgba(199,125,255,0.7); }
.node-6 .node-label { color: rgba(255,119,169,0.7); }

.expert-node:hover .node-label {
    opacity: 1;
    transform: scale(1.05);
}

/* Floating Data Points */
.data-point {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatPoint 8s ease-in-out infinite;
}

.dp-1 { top: 25%; left: 30%; animation-delay: 0s; background: #00ff88; }
.dp-2 { top: 35%; right: 25%; animation-delay: 1s; background: #00ccff; }
.dp-3 { bottom: 30%; left: 25%; animation-delay: 2s; background: #ff6b6b; }
.dp-4 { bottom: 25%; right: 30%; animation-delay: 0.5s; background: #ffd93d; }
.dp-5 { top: 20%; left: 50%; animation-delay: 1.5s; background: #c77dff; }
.dp-6 { bottom: 20%; left: 45%; animation-delay: 2.5s; background: #ff77a9; }
.dp-7 { top: 50%; left: 20%; animation-delay: 3s; background: #00ff88; }
.dp-8 { top: 55%; right: 20%; animation-delay: 0.8s; background: #00ccff; }

@keyframes floatPoint {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(10px, -15px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5px, 10px) scale(1);
        opacity: 0.3;
    }
    75% {
        transform: translate(15px, 5px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legacy - keeping for compatibility */
.text-reveal {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.tag-float {
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    opacity: 0;
    animation: tagFloat 0.6s ease forwards;
    animation-delay: calc(1.5s + (var(--i) * 0.1s));
    transition: all 0.3s ease;
}

.tag-float:hover {
    background: rgba(0,255,136,0.1);
    border-color: #00ff88;
    color: #00ff88;
    transform: translateY(-3px);
}

@keyframes tagFloat {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Magnetic Button */
.magnetic-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: transparent;
    border: 2px solid #00ff88;
    color: #00ff88;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 2s;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00ff88;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.magnetic-btn:hover {
    color: #000;
}

.magnetic-btn:hover::before {
    transform: translateY(0);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.magnetic-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2.5s;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #00ff88, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
    }
    50% { 
        opacity: 1;
        transform: scaleY(1);
    }
}

.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Infinite Marquee */
.marquee-strip {
    background: #00ff88;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #000;
    white-space: nowrap;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Stats Section - Visual */
.p-stats-section {
    padding: 150px 0;
    position: relative;
    z-index: 2;
}

/* Stats Section Animations - Scroll Triggered */
.p-stats-section .section-title-split {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-stats-section.section-visible .section-title-split {
    opacity: 1;
    transform: translateY(0);
}

.p-stats-section .title-line:nth-child(2) {
    transition-delay: 0.2s;
}

/* Featured Stat Animation */
.p-stats-section .featured-stat {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.p-stats-section.section-visible .featured-stat {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Featured ring paused until visible */
.p-stats-section .featured-ring .ring-progress {
    animation-play-state: paused;
}

.p-stats-section.section-visible .featured-ring .ring-progress {
    animation-play-state: running;
}

/* Featured stat glow pulse */
.p-stats-section .featured-stat-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,255,136,0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: featuredGlow 3s ease-in-out infinite;
    animation-play-state: paused;
}

.p-stats-section.section-visible .featured-stat-visual::before {
    animation-play-state: running;
    opacity: 1;
}

@keyframes featuredGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Featured number counter animation */
.p-stats-section .featured-number {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s;
}

.p-stats-section.section-visible .featured-number {
    opacity: 1;
    transform: scale(1);
}

/* Circular Stats Animation */
.p-stats-section .circular-stat {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-stats-section .circular-stat:nth-child(1) { transition-delay: 0.6s; }
.p-stats-section .circular-stat:nth-child(2) { transition-delay: 0.8s; }
.p-stats-section .circular-stat:nth-child(3) { transition-delay: 1s; }

.p-stats-section.section-visible .circular-stat {
    opacity: 1;
    transform: translateY(0);
}

/* Progress bars paused until visible */
.p-stats-section .progress-bar {
    animation-play-state: paused;
}

.p-stats-section.section-visible .progress-bar {
    animation-play-state: running;
}

/* Circular number count-up effect */
.p-stats-section .circular-number {
    opacity: 0;
    transition: opacity 0.5s ease 1s;
}

.p-stats-section.section-visible .circular-number {
    opacity: 1;
}

/* ROI Highlight Animation */
.p-stats-section .roi-highlight {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s;
}

.p-stats-section.section-visible .roi-highlight {
    opacity: 1;
    transform: translateY(0);
}

/* ROI bar fill paused until visible */
.p-stats-section .roi-bar-fill {
    animation-play-state: paused;
}

.p-stats-section.section-visible .roi-bar-fill {
    animation-play-state: running;
}

/* ROI glow and multiplier paused until visible */
.p-stats-section .roi-bar-glow,
.p-stats-section .roi-multiplier {
    animation-play-state: paused;
}

.p-stats-section.section-visible .roi-bar-glow,
.p-stats-section.section-visible .roi-multiplier {
    animation-play-state: running;
}

/* ROI number animation */
.p-stats-section .roi-number {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.8s;
}

.p-stats-section.section-visible .roi-number {
    opacity: 1;
    transform: translateX(0);
}

/* Stats source fade in */
.p-stats-section .stats-source {
    opacity: 0;
    transition: opacity 0.8s ease 2s;
}

.p-stats-section.section-visible .stats-source {
    opacity: 1;
}

.section-title-split {
    text-align: center;
    margin-bottom: 80px;
}

.title-line {
    display: block;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.title-outline {
    color: transparent;
    -webkit-text-stroke: 2px #00ff88;
}

/* Featured Stat */
.featured-stat {
    text-align: center;
    margin-bottom: 100px;
}

.featured-stat-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
}

.featured-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.featured-ring .ring-bg {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 8;
}

.featured-ring .ring-progress {
    fill: none;
    stroke: url(#featuredGrad);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565;
    stroke-dashoffset: 565;
    animation: ringFill 2s ease forwards 0.5s;
}

@keyframes ringFill {
    to {
        stroke-dashoffset: 0;
    }
}

.featured-stat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.featured-number {
    display: block;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.featured-unit {
    font-size: 40px;
}

.featured-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.featured-description {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Circular Stats Grid */
.circular-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto 100px;
}

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

.progress-ring {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
    margin-bottom: 20px;
}

.progress-bg {
    fill: none;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339;
    stroke-dashoffset: 339;
    animation: progressFill 1.5s ease forwards;
    animation-delay: 0.8s;
}

.circular-stat:nth-child(1) .progress-bar { animation-delay: 0.8s; stroke-dashoffset: calc(339 - (339 * 0.85)); }
.circular-stat:nth-child(2) .progress-bar { animation-delay: 1s; stroke-dashoffset: calc(339 - (339 * 0.87)); }
.circular-stat:nth-child(3) .progress-bar { animation-delay: 1.2s; stroke-dashoffset: calc(339 - (339 * 0.99)); }

@keyframes progressFill {
    from {
        stroke-dashoffset: 339;
    }
}

.circular-stat {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circular-stat .progress-ring {
    display: block;
}

.circular-stat-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.circular-number {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.circular-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    max-width: 200px;
    margin: 20px auto 0;
}

/* ROI Highlight */
.roi-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
}

.roi-visual {
    position: relative;
    flex-shrink: 0;
}

.roi-bar {
    width: 200px;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.roi-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #00ff88, #ffd93d, #ff6b6b);
    border-radius: 6px;
    animation: roiFill 2s ease forwards 1.5s;
}

@keyframes roiFill {
    to {
        width: 100%;
    }
}

.roi-bar-glow {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255,107,107,0.6) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: roiGlow 2s ease forwards 2.5s;
}

@keyframes roiGlow {
    to {
        opacity: 1;
    }
}

.roi-multiplier {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 16px;
    font-weight: 700;
    color: #ff6b6b;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards 2.5s;
}

.roi-content {
    text-align: left;
}

.roi-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff88, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.roi-label {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

.stats-source {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 80px;
    letter-spacing: 0.5px;
}

/* Connection Section */
.connection-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.connection-subhead {
    text-align: center;
    font-size: 20px;
    color: rgba(255,255,255,0.65);
    max-width: 650px;
    margin: -40px auto 50px;
    line-height: 1.7;
}

.highlight-practitioner {
    font-weight: 700;
    font-size: 1.3em;
    font-style: italic;
    background: linear-gradient(135deg, #c77dff, #ff77a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 4px;
}

.highlight-practitioner::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #c77dff, #ff77a9);
    opacity: 0.6;
}

.connection-visual {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.connection-svg {
    width: 100%;
    height: auto;
}

/* Desktop horizontal, mobile vertical */
.connection-svg-desktop {
    display: block;
}

.connection-svg-mobile {
    display: none;
}

.conn-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 2;
    stroke-dasharray: 8 4;
    opacity: 0.5;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -100;
    }
}

.node-pulse {
    fill: none;
    stroke: #00ff88;
    stroke-width: 1;
    opacity: 0.3;
    animation: nodePulse 2s ease-out infinite;
}

@keyframes nodePulse {
    0% {
        r: 30;
        opacity: 0.5;
    }
    100% {
        r: 60;
        opacity: 0;
    }
}

.node-ring {
    fill: none;
    stroke: rgba(0,255,136,0.4);
    stroke-width: 2;
}

.node-core {
    fill: rgba(0,255,136,0.2);
    stroke: #00ff88;
    stroke-width: 2;
}

.node-label {
    fill: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-anchor: middle;
}

.particle {
    filter: url(#glow);
}

.connection-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.connection-label-left {
    left: 0;
    align-items: flex-start;
}

.connection-label-right {
    right: 0;
    align-items: flex-end;
}

.label-tag {
    padding: 8px 16px;
    background: rgba(0,255,136,0.1);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00ff88;
}

/* =============================================
   THE DRIVE DIFFERENCE - Race Track Journey
   ============================================= */
.difference-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Story Opener - Compact */
.story-opener {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.year-num {
    display: block;
    font-size: clamp(100px, 12vw, 160px);
    font-weight: 900;
    line-height: 0.85;
    background: linear-gradient(180deg, #00ff88 0%, rgba(0,255,136,0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -6px;
}

.year-text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.story-headline {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255,255,255,0.85);
    letter-spacing: -0.5px;
}

.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(15px);
    animation: wordReveal 0.5s ease forwards;
}

.word-reveal:nth-child(1) { animation-delay: 0.1s; }
.word-reveal:nth-child(2) { animation-delay: 0.15s; }
.word-reveal:nth-child(3) { animation-delay: 0.2s; }
.word-reveal:nth-child(4) { animation-delay: 0.25s; }
.word-reveal:nth-child(5) { animation-delay: 0.3s; }
.word-reveal:nth-child(6) { animation-delay: 0.35s; }
.word-reveal:nth-child(7) { animation-delay: 0.4s; }
.word-reveal:nth-child(8) { animation-delay: 0.45s; }
.word-reveal:nth-child(9) { animation-delay: 0.5s; }
.word-reveal:nth-child(10) { animation-delay: 0.55s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-word {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Race Journey Container */
.race-journey {
    position: relative;
    width: 100%;
    height: 450px;
    margin: 0 auto;
}

.journey-track {
    width: 100%;
    height: 100%;
}

.track-path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawTrack 3s ease forwards;
}

@keyframes drawTrack {
    to {
        stroke-dashoffset: 0;
    }
}

.track-particle {
    filter: drop-shadow(0 0 6px currentColor);
}

.journey-car image {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

/* Milestone Cards */
.milestone {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 24px;
    max-width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: milestoneReveal 0.6s ease forwards;
}

.milestone:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0,255,136,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.milestone-1 {
    top: 0;
    left: 22%;
    animation-delay: 0.5s;
}

.milestone-2 {
    top: 35%;
    left: 45%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.milestone-3 {
    bottom: 15%;
    left: 60%;
    animation-delay: 1.5s;
}

@keyframes milestoneReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.milestone-2 {
    animation-name: milestoneReveal2;
}

@keyframes milestoneReveal2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.milestone-icon {
    display: inline-block;
    font-size: 18px;
    color: #00ff88;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.5));
}

.milestone h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.milestone p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin: 0;
}

/* Finish Line */
.finish-line {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: finishReveal 0.6s ease forwards 2s;
}

@keyframes finishReveal {
    to {
        opacity: 1;
    }
}

.finish-flag {
    width: 30px;
    height: 40px;
    animation: flagWave 1s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

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

.finish-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.finish-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Journey Tagline */
.journey-tagline {
    text-align: center;
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    margin-top: 40px;
}

.journey-tagline span {
    color: #00ff88;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .milestone-1 { left: 15%; }
    .milestone-3 { left: 55%; }
    .finish-line { right: 2%; }
}

@media (max-width: 768px) {
    .difference-section {
        padding: 60px 0;
    }

    .story-opener {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 40px;
    }

    .year-num {
        letter-spacing: -4px;
    }

    .race-journey {
        height: auto;
        min-height: 500px;
    }

    .journey-track {
        display: none;
    }

    .milestone {
        position: relative;
        max-width: 100%;
        margin-bottom: 16px;
        opacity: 1;
        animation: none;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .finish-line {
        position: relative;
        justify-content: center;
        margin-top: 30px;
        opacity: 1;
        animation: none;
        transform: none;
        right: auto;
        top: auto;
    }

    .journey-tagline {
        margin-top: 30px;
        font-size: 18px;
    }
}

/* =============================================
   PARTNERS CONSTELLATION - Premium Design
   ============================================= */
.partners-constellation-section {
    padding: 80px 0 100px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

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

.partners-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c77dff;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(199,125,255,0.1);
    border: 1px solid rgba(199,125,255,0.2);
    border-radius: 50px;
}

.partners-title {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    color: #fff;
}

.partners-title span {
    display: block;
    background: linear-gradient(135deg, #c77dff 0%, #ff77a9 50%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Constellation Wrapper */
.constellation-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 550px;
    margin: 0 auto;
}

.constellation-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.const-line {
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    opacity: 0.5;
}

/* Logo Grid */
.logo-constellation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Logo Nodes */
.logo-node {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 16px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.logo-node img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.node-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(0,255,136,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 50%;
}

.logo-node:hover {
    transform: scale(1.15) translateY(-5px);
    border-color: rgba(0,255,136,0.4);
    background: linear-gradient(135deg, rgba(0,255,136,0.15) 0%, rgba(0,255,136,0.05) 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,255,136,0.2);
}

.logo-node:hover .node-glow {
    opacity: 1;
}

/* Position each logo node - Scattered pattern */
.logo-node-1 { top: 8%; left: 5%; animation: nodeFloat 6s ease-in-out infinite; }
.logo-node-2 { top: 5%; left: 28%; animation: nodeFloat 7s ease-in-out infinite 0.5s; }
.logo-node-3 { top: 8%; right: 28%; animation: nodeFloat 5.5s ease-in-out infinite 1s; }
.logo-node-4 { top: 5%; right: 5%; animation: nodeFloat 6.5s ease-in-out infinite 0.3s; }

.logo-node-5 { top: 38%; left: 2%; animation: nodeFloat 5s ease-in-out infinite 0.7s; }
.logo-node-6 { top: 65%; left: 8%; animation: nodeFloat 7.5s ease-in-out infinite 0.2s; }
.logo-node-7 { top: 65%; right: 8%; animation: nodeFloat 6s ease-in-out infinite 1.2s; }
.logo-node-8 { top: 38%; right: 2%; animation: nodeFloat 5.5s ease-in-out infinite 0.8s; }

.logo-node-9 { bottom: 8%; left: 12%; animation: nodeFloat 6.5s ease-in-out infinite 0.4s; }
.logo-node-10 { bottom: 5%; left: 32%; animation: nodeFloat 5s ease-in-out infinite 0.9s; }
.logo-node-11 { bottom: 5%; right: 32%; animation: nodeFloat 7s ease-in-out infinite 0.6s; }
.logo-node-12 { bottom: 8%; right: 12%; animation: nodeFloat 6s ease-in-out infinite 1.1s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Center Hub */
.center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hub-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,255,136,0.2) 0%, rgba(199,125,255,0.1) 40%, transparent 70%);
    animation: hubPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.hub-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hub-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0,255,136,0.3);
    animation: ringExpand 3s ease-in-out infinite;
}

.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 130%; height: 130%; animation-delay: 1s; }
.ring-3 { width: 160%; height: 160%; animation-delay: 2s; }

@keyframes ringExpand {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}

.hub-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,255,136,0.15) 0%, rgba(199,125,255,0.1) 100%);
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.hub-text-small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #00ff88;
}

.hub-text-large {
    display: block;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    margin: 4px 0;
}

/* Partners Subline */
.partners-subline {
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-top: 40px;
}

.subline-accent {
    color: #00ff88;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .constellation-wrapper {
        height: 500px;
    }

    .logo-node {
        width: 65px;
        height: 65px;
        padding: 12px;
    }

    .center-hub {
        width: 130px;
        height: 130px;
    }

    .hub-content {
        padding: 20px;
    }

    .hub-text-large {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .partners-constellation-section {
        padding: 60px 0 80px;
    }

    .constellation-wrapper {
        height: auto;
        padding: 20px 0;
    }

    .constellation-lines {
        display: none;
    }

    .logo-constellation {
        position: relative;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 20px;
    }

    .logo-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100%;
        aspect-ratio: 1;
        animation: none !important;
    }

    .center-hub {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        grid-column: span 3;
        width: 100%;
        height: auto;
        margin: 20px 0;
    }

    .hub-glow,
    .hub-rings {
        display: none;
    }

    .hub-content {
        padding: 24px;
    }
}

/* Form Section */
.p-form-section {
    padding: 150px 0;
    position: relative;
    z-index: 2;
}

/* Form section when at top of page */
.p-form-section-top {
    padding-top: 180px;
}

/* Hero section when below form */
.p-hero-below-form {
    min-height: auto;
    padding: 80px 0 100px;
}

/* ============================================= */
/* PREMIUM SCROLL ANIMATIONS - Partnerships Page */
/* ============================================= */

/* Form Section Entrance */
.p-form-section-top .form-headline {
    opacity: 0;
    transform: translateY(40px);
    animation: premiumFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.p-form-section-top .form-headline span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: premiumFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-form-section-top .form-headline span:nth-child(1) { animation-delay: 0.3s; }
.p-form-section-top .form-headline span:nth-child(2) { animation-delay: 0.45s; }
.p-form-section-top .form-headline span:nth-child(3) { animation-delay: 0.6s; }

.p-form-section-top .form-subline {
    opacity: 0;
    transform: translateY(25px);
    animation: premiumFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.p-form-section-top .form-contact-direct {
    opacity: 0;
    transform: translateY(20px);
    animation: premiumFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.p-form-section-top .p-form {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    animation: premiumFormReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes premiumFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes premiumFormReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Section - Scroll Triggered */
.p-hero-below-form {
    position: relative;
}

.p-hero-below-form .hero-label,
.p-hero-below-form .p-hero-headline,
.p-hero-below-form .p-hero-subhead,
.p-hero-below-form .p-hero-subhead-2,
.p-hero-below-form .cta-primary,
.p-hero-below-form .p-hero-visual {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-hero-below-form.section-visible .hero-label {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.p-hero-below-form.section-visible .p-hero-headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.p-hero-below-form.section-visible .p-hero-subhead {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.p-hero-below-form.section-visible .p-hero-subhead-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.p-hero-below-form.section-visible .cta-primary {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.p-hero-below-form.section-visible .p-hero-visual {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Headline words stagger animation */
.p-hero-below-form .headline-lg,
.p-hero-below-form .headline-xl {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-hero-below-form.section-visible .headline-lg:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.p-hero-below-form.section-visible .headline-lg:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.p-hero-below-form.section-visible .headline-xl {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

/* Partners Section - Premium Scroll Animation */
.partnerships-page .partners-section {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnerships-page .partners-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.partnerships-page .partners-section .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnerships-page .partners-section.section-visible .section-header {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Staggered logo strip animation */
.partnerships-page .partners-section .logo-strip {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.partnerships-page .partners-section.section-visible .logo-strip:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.partnerships-page .partners-section.section-visible .logo-strip:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.partnerships-page .partners-section.section-visible .logo-strip:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* Individual logo items with stagger */
.partnerships-page .partners-section .logo-item {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.partnerships-page .partners-section.section-visible .logo-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.partnerships-page .partners-section.section-visible .logo-strip:nth-child(2) .logo-item:nth-child(1) { transition-delay: 0.4s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(2) .logo-item:nth-child(2) { transition-delay: 0.5s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(2) .logo-item:nth-child(3) { transition-delay: 0.6s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(2) .logo-item:nth-child(4) { transition-delay: 0.7s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(2) .logo-item:nth-child(5) { transition-delay: 0.8s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(2) .logo-item:nth-child(6) { transition-delay: 0.9s; }

.partnerships-page .partners-section.section-visible .logo-strip:nth-child(3) .logo-item:nth-child(1) { transition-delay: 0.7s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(3) .logo-item:nth-child(2) { transition-delay: 0.8s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(3) .logo-item:nth-child(3) { transition-delay: 0.9s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(3) .logo-item:nth-child(4) { transition-delay: 1s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(3) .logo-item:nth-child(5) { transition-delay: 1.1s; }

.partnerships-page .partners-section.section-visible .logo-strip:nth-child(4) .logo-item:nth-child(1) { transition-delay: 1s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(4) .logo-item:nth-child(2) { transition-delay: 1.1s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(4) .logo-item:nth-child(3) { transition-delay: 1.2s; }
.partnerships-page .partners-section.section-visible .logo-strip:nth-child(4) .logo-item:nth-child(4) { transition-delay: 1.3s; }

/* Premium hover effects for logos */
.partnerships-page .partners-section .logo-item:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Section divider lines */
.p-hero-below-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0,255,136,0.3), transparent);
    opacity: 0;
    animation: lineReveal 1.5s ease 1s forwards;
}

@keyframes lineReveal {
    to {
        opacity: 1;
    }
}

/* Smooth parallax-like effect on scroll */
.p-hero-below-form .network-scene {
    transition: transform 0.3s ease-out;
}

/* Premium glow pulse on CTA */
.p-hero-below-form .cta-primary {
    position: relative;
    overflow: hidden;
}

.p-hero-below-form.section-visible .cta-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,255,136,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: ctaGlowPulse 2s ease-in-out 1.2s infinite;
    pointer-events: none;
}

@keyframes ctaGlowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
}

.form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.form-left {
    position: sticky;
    top: 150px;
}

.form-headline {
    margin-bottom: 30px;
}

.form-headline span {
    display: block;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
}

.form-headline .highlight-text {
    background: linear-gradient(135deg, #00ff88, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subline {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 50px;
}

.form-contact-direct {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.contact-email {
    font-size: 18px;
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #fff;
}

/* Form Fields */
.p-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 50px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-field {
    position: relative;
}

.form-field.full-width {
    grid-column: span 2;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 20px 0 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field textarea {
    resize: none;
    min-height: 100px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #00ff88;
}

.form-field label {
    position: absolute;
    left: 0;
    top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 11px;
    color: #00ff88;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-field input:focus ~ .field-line,
.form-field select:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%2300ff88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.form-field select option {
    background: #111;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    margin-top: 40px;
    background: #00ff88;
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,255,136,0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .circular-stats-grid {
        gap: 40px;
    }

    .roi-highlight {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

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

    .form-left {
        position: static;
    }
}

@media (max-width: 768px) {
    /* Hero responsive */
    .p-hero {
        padding: 120px 0 80px;
    }

    .p-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .p-hero-content {
        max-width: 100%;
    }

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

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }

    .headline-lg {
        font-size: 28px;
    }

    .headline-xl {
        font-size: 60px;
        letter-spacing: -2px;
    }

    .p-hero-subhead,
    .p-hero-subhead-2 {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Stats responsive */
    .featured-stat-visual {
        width: 220px;
        height: 220px;
    }

    .featured-number {
        font-size: 52px;
    }

    .featured-unit {
        font-size: 28px;
    }

    .circular-stats-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .circular-stat {
        flex: 0 0 calc(50% - 15px);
        max-width: 150px;
    }

    .circular-stat:nth-child(3) {
        flex: 0 0 100%;
        max-width: 150px;
    }

    .progress-ring {
        width: 100px;
        height: 100px;
    }

    .circular-stat-content {
        width: 100px;
        height: 100px;
    }

    .circular-number {
        font-size: 22px;
    }

    .circular-label {
        font-size: 12px;
        margin-top: 10px;
    }

    .roi-number {
        font-size: 44px;
    }

    .roi-bar {
        width: 160px;
    }

    .p-hero-visual {
        order: -1;
        margin-bottom: 20px;
        width: 100%;
        overflow: visible;
    }

    .network-scene {
        width: 100%;
        max-width: 260px;
        height: 260px;
        margin: 0 auto;
        overflow: visible;
    }

    /* Reposition nodes to fit mobile - smaller */
    .node-1 { top: 2%; right: 18%; }
    .node-2 { top: 38%; right: 0%; }
    .node-3 { bottom: 2%; right: 18%; }
    .node-4 { top: 2%; left: 18%; }
    .node-5 { top: 38%; left: 0%; }
    .node-6 { bottom: 2%; left: 18%; }

    .node-avatar {
        width: 28px;
        height: 28px;
    }

    .node-label {
        font-size: 6px;
    }

    .network-hub {
        width: 70px;
        height: 70px;
    }

    .hub-label {
        font-size: 9px;
    }

    .hub-ring-1 { width: 85px; height: 85px; }
    .hub-ring-2 { width: 100px; height: 100px; }
    .hub-ring-3 { width: 115px; height: 115px; }

    /* Reduce green background on mobile */
    .blob-1 {
        width: 300px;
        height: 300px;
        opacity: 0.15;
    }

    .blob-2, .blob-3 {
        opacity: 0.08;
    }

    /* Hero text smaller on mobile */
    .p-hero-subhead,
    .p-hero-subhead-2 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .p-hero-content {
        padding-top: 10px;
    }

    .hero-label {
        margin-bottom: 25px;
    }

    .cta-primary {
        margin-top: 20px;
    }

    .network-hub {
        width: 80px;
        height: 80px;
    }

    .hub-core {
        width: 50px;
        height: 50px;
    }

    .hub-ring-1, .hub-ring-2, .hub-ring-3 {
        width: 60px;
        height: 60px;
    }

    .hub-label {
        font-size: 8px;
    }

    .expert-node {
        display: flex;
    }

    .node-avatar {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .node-avatar svg {
        width: 18px;
        height: 18px;
    }

    .node-label {
        font-size: 8px;
    }

    .hero-shapes .shape-ring {
        display: none;
    }

    .stats-carousel {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 56px;
    }

    /* Mobile: Horizontal scroll for difference cards */
    .difference-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 20px;
    }

    .difference-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .difference-track {
        display: flex;
        gap: 20px;
        width: max-content;
    }

    .diff-card {
        width: 280px;
        min-height: 300px;
        padding: 25px;
        flex-shrink: 0;
    }

    /* Mobile: Floating logos */
    .logos-float-container {
        height: 350px;
    }

    .float-logo {
        width: 55px;
        height: 55px;
        padding: 10px;
    }

    .float-center {
        padding: 20px 35px;
    }

    .float-center span:nth-child(2) {
        font-size: 18px;
    }

    /* Mobile: Connection visual - vertical SVG */
    .connection-svg-desktop {
        display: none;
    }

    .connection-svg-mobile {
        display: block;
        max-width: 300px;
        margin: 0 auto;
    }

    .connection-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .connection-subhead {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .highlight-practitioner {
        font-size: 1.2em;
    }

    .label-tag {
        padding: 6px 12px;
        font-size: 10px;
    }

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

    .form-field.full-width {
        grid-column: span 1;
    }

    .p-form {
        padding: 30px 20px;
    }

    .title-line {
        font-size: 32px;
    }

    /* Stats section - reduce padding on mobile */
    .p-stats-section {
        padding: 80px 0 60px;
    }

    .section-title-split {
        margin-bottom: 50px;
    }

    .featured-stat {
        margin-bottom: 60px;
    }

    /* Connection section - reduce top space */
    .connection-section {
        padding: 40px 0 60px;
    }

    /* Mobile SVG - ensure full visibility */
    .connection-svg-mobile {
        width: 100%;
        max-width: 280px;
        height: auto;
        min-height: 500px;
    }

    .connection-visual {
        overflow: visible;
        padding: 20px 0;
    }

    /* Center the circular stats cards */
    .circular-stats-grid {
        justify-content: center;
        align-items: center;
    }

    .circular-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Form section - add padding and center text */
    .p-form-section {
        padding: 60px 20px;
    }

    .form-split {
        padding: 0;
    }

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

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

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

    .form-contact-direct {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline-lg {
        font-size: 24px;
    }

    .headline-xl {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .p-hero-subhead,
    .p-hero-subhead-2 {
        font-size: 14px;
    }

    .cta-primary {
        padding: 16px 32px;
        font-size: 12px;
    }

    .stat-value {
        font-size: 44px;
    }

    .diff-card {
        width: 280px;
        min-height: 320px;
    }

    /* Smaller mobile form fixes */
    .p-form-section {
        padding: 40px 15px;
    }

    .form-headline span {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .form-subline {
        font-size: 14px;
    }

    .p-form {
        padding: 25px 15px;
    }

    /* Stats section even smaller */
    .p-stats-section {
        padding: 60px 0 50px;
    }

    .featured-stat-visual {
        width: 180px;
        height: 180px;
    }

    .featured-number {
        font-size: 42px;
    }

    .featured-unit {
        font-size: 24px;
    }

    .featured-description {
        font-size: 14px;
        padding: 0 10px;
    }

    /* Connection section smaller */
    .connection-section {
        padding: 30px 0 50px;
    }

    .connection-subhead {
        font-size: 15px;
        padding: 0 10px;
    }

    .connection-svg-mobile {
        max-width: 260px;
        min-height: 480px;
    }
}

/* =============================================
   CAREERS PAGE
   ============================================= */

/* Hero */
.careers-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* ---- Hero content ---- */
.careers-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    opacity: 0;
    animation: heroFadeIn 1s ease-out 0.3s forwards;
}

.careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--neon-accent);
    margin-bottom: 32px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    animation: badgeGlow 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-accent);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(0, 255, 136, 0); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.1); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.2); }
}

.careers-hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--neon-accent);
    position: relative;
}

.careers-hero-sub {
    font-size: 20px;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Job Posting Card */
.careers-posting-section {
    padding: 40px 0 80px;
}

.posting-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 0.8s ease-out 0.6s forwards;
}

.posting-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 24px;
    flex-wrap: wrap;
}

.posting-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.posting-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.meta-tag svg {
    opacity: 0.6;
}

.posting-comp {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.comp-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-accent);
    margin-bottom: 4px;
    font-weight: 600;
}

.comp-detail {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.comp-note {
    font-size: 13px;
    opacity: 0.5;
}

.posting-body {
    padding: 48px;
}

.posting-intro p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 16px;
}

.posting-intro p:last-child {
    margin-bottom: 0;
}

.posting-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.posting-col-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--neon-accent);
}

.posting-list {
    list-style: none;
    padding: 0;
}

.posting-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.posting-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--neon-accent);
    border-radius: 50%;
}

.posting-footer-note {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.posting-footer-note p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.7;
    font-style: italic;
}

/* Application Form */
.careers-form-section {
    padding: 100px 0 120px;
    position: relative;
}

.careers-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 136, 0.3));
}

.careers-form-sub {
    text-align: center;
    font-size: 18px;
    opacity: 0.6;
    margin-top: -40px;
    margin-bottom: 60px;
}

.careers-form {
    max-width: 700px;
    margin: 0 auto;
}

.careers-form .form-group {
    margin-bottom: 24px;
}

.careers-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

.required {
    color: var(--neon-accent);
}

.careers-form .form-group input,
.careers-form .form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.careers-form .form-group input:focus,
.careers-form .form-group textarea:focus {
    outline: none;
    border-color: var(--neon-accent);
    background-color: rgba(0, 255, 136, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.15);
}

.careers-form .form-group input::placeholder,
.careers-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.careers-form .form-group textarea {
    resize: vertical;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.char-count.char-limit {
    opacity: 1;
    color: #ff6b6b;
}

/* Submit button */
.careers-submit-btn {
    width: 100%;
    margin-top: 16px;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success svg {
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-success p {
    font-size: 16px;
    opacity: 0.7;
    line-height: 1.6;
}

.form-success a {
    color: var(--neon-accent);
    text-decoration: none;
}

.form-success a:hover {
    text-decoration: underline;
}

/* Careers page responsive — mobile */
@media (max-width: 768px) {
    .careers-hero {
        min-height: 70vh;
        padding-top: 160px;
    }

    .careers-hero-title {
        font-size: 44px;
    }

    .careers-hero-sub {
        font-size: 17px;
    }

    .posting-header {
        flex-direction: column;
        padding: 28px 24px;
    }

    .posting-comp {
        align-items: flex-start;
        text-align: left;
    }

    .posting-body {
        padding: 28px 24px;
    }

    .posting-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .posting-title {
        font-size: 24px;
    }

    .careers-form-section {
        padding: 60px 0 80px;
    }

    .careers-form-sub {
        margin-top: -30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
