/* ============================================================
   IGEL Now & Next 2026 – Frontend Styles
   
   Brand Colors:
   - IGEL Yellow:  #FFD101
   - IGEL Purple:  #4500A6
   - Black:        #0D0D0D
   - White:        #FFFFFF
   
   Font: Manrope (headings), system sans-serif (body)
   ============================================================ */

/* ----------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
    --igel-yellow: #FFD101;
    --igel-yellow-light: #FFE34D;
    --igel-yellow-dim: rgba(255, 209, 1, 0.15);
    --igel-purple: #4500A6;
    --igel-purple-light: #6B21D8;
    --igel-purple-dim: rgba(69, 0, 166, 0.25);
    --igel-black: #0D0D0D;
    --igel-dark: #141418;
    --igel-card: #1A1A22;
    --igel-card-hover: #22222E;
    --igel-border: rgba(255, 255, 255, 0.08);
    --igel-border-highlight: rgba(255, 209, 1, 0.25);
    --igel-text: #FFFFFF;
    --igel-text-secondary: rgba(255, 255, 255, 0.65);
    --igel-text-muted: rgba(255, 255, 255, 0.4);
    --igel-radius: 12px;
    --igel-radius-lg: 20px;
    --igel-radius-sm: 8px;
    --igel-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --igel-transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    --igel-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --igel-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
    --igel-font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --igel-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --igel-max-width: 1280px;

    /* Button text colors */
    --igel-btn-text: #0D0D0D;
    --igel-btn-hover-text: #0D0D0D;
    --igel-footer-btn-text: #0D0D0D;
    --igel-footer-btn-hover-text: #0D0D0D;
}

/* ----------------------------------------
   RESET & BASE
   ---------------------------------------- */
.igel-nn-wrapper {
    all: initial;
    display: block;
    font-family: var(--igel-font-body);
    color: var(--igel-text);
    background: var(--igel-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;

    /* Break out of any theme container to go full-width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.igel-nn-wrapper *,
.igel-nn-wrapper *::before,
.igel-nn-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.igel-nn-wrapper ul,
.igel-nn-wrapper ol,
.igel-nn-wrapper li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

.igel-nn-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.igel-nn-wrapper a {
    color: inherit;
    text-decoration: none;
}

.igel-nn-wrapper button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.igel-nn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--igel-font-heading);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: all var(--igel-transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.igel-nn-btn--primary {
    background: var(--igel-yellow);
    color: var(--igel-btn-text);
    box-shadow: 0 4px 24px rgba(255, 209, 1, 0.3);
}

.igel-nn-btn--primary:hover {
    background: var(--igel-yellow-light);
    color: var(--igel-btn-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 209, 1, 0.45);
}

.igel-nn-btn--ghost {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--igel-text);
    background: transparent;
}

.igel-nn-btn--ghost:hover {
    border-color: var(--igel-yellow);
    color: var(--igel-yellow);
    background: var(--igel-yellow-dim);
}

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.igel-nn-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, var(--igel-purple-dim) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, var(--igel-yellow-dim) 0%, transparent 50%),
        linear-gradient(180deg, var(--igel-black) 0%, var(--igel-dark) 100%);
}

.igel-nn-hero__inner {
    width: 100%;
    max-width: var(--igel-max-width);
    margin: 0 auto;
}

/* Hero Background: Video */
.igel-nn-hero__bg-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.igel-nn-hero__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Hero Background: Image */
.igel-nn-hero__bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Hero Dark Overlay */
.igel-nn-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--igel-black);
    pointer-events: none;
}

.igel-nn-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.igel-nn-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: igel-nn-float 12s ease-in-out infinite;
}

.igel-nn-particle--1 {
    width: 6px;
    height: 6px;
    background: var(--igel-yellow);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 14s;
}

.igel-nn-particle--2 {
    width: 4px;
    height: 4px;
    background: var(--igel-purple-light);
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 11s;
}

.igel-nn-particle--3 {
    width: 8px;
    height: 8px;
    background: var(--igel-yellow);
    top: 75%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.igel-nn-particle--4 {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    top: 30%;
    left: 65%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.igel-nn-particle--5 {
    width: 5px;
    height: 5px;
    background: var(--igel-purple-light);
    top: 10%;
    left: 90%;
    animation-delay: 6s;
    animation-duration: 13s;
}

@keyframes igel-nn-float {

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

    25% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.8;
        transform: translateY(-40px) scale(1.5);
    }

    75% {
        opacity: 0.4;
    }
}

.igel-nn-hero__content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.igel-nn-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--igel-yellow-dim);
    border: 1px solid var(--igel-border-highlight);
    border-radius: 50px;
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--igel-yellow);
    margin-bottom: 32px;
}

.igel-nn-hero__igel-sparkle {
    flex-shrink: 0;
    animation: igel-nn-sparkle-pulse 3s ease-in-out infinite;
}

@keyframes igel-nn-sparkle-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }

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

/* Live Stream Badge */
.igel-nn-hero__badge--live {
    background: rgba(255, 50, 50, 0.15);
    border-color: rgba(255, 50, 50, 0.4);
    color: #ff4444;
    gap: 10px;
}

.igel-nn-hero__live-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: igel-nn-live-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 50, 50, 0.6);
}

@keyframes igel-nn-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px rgba(255, 50, 50, 0.6); }
    50% { opacity: 0.5; transform: scale(0.85); box-shadow: 0 0 12px rgba(255, 50, 50, 0.9); }
}

/* Live Stream Two-Column Layout */
.igel-nn-hero--live:not(.igel-nn-hero--gated) .igel-nn-hero__badge--live {
    display: none; /* Caption above the player replaces this when ungated */
}

.igel-nn-hero--live:not(.igel-nn-hero--gated) .igel-nn-hero__inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.igel-nn-hero--live:not(.igel-nn-hero--gated) .igel-nn-hero__content {
    flex: 1;
    min-width: 0;
}

.igel-nn-hero__live-column {
    flex: 1.2;
    min-width: 0;
    position: relative;
    z-index: 3;
}

/* Hide live player when page is gated (kept in DOM for JS reveal) */
.igel-nn-hero__live-column--gated-hidden {
    display: none;
}

/* Live Caption */
.igel-nn-hero__live-caption {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 50, 50, 0.15);
    border: 1px solid rgba(255, 50, 50, 0.4);
    border-radius: 50px;
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Live Stream Player */
.igel-nn-hero__live-player {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* Mobile: stack vertically */
@media (max-width: 899px) {
    .igel-nn-hero--live:not(.igel-nn-hero--gated) .igel-nn-hero__inner {
        flex-direction: column;
        gap: 32px;
    }
    
    .igel-nn-hero--live:not(.igel-nn-hero--gated) .igel-nn-hero__content {
        text-align: center;
    }

    .igel-nn-hero__live-column {
        width: 100%;
    }
}

.igel-nn-hero__title {
    font-family: var(--igel-font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--igel-text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.igel-nn-hero__title span {
    background: linear-gradient(135deg, var(--igel-yellow) 0%, var(--igel-yellow-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Logo (replaces text title) */
.igel-nn-hero__title--logo {
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
}

.igel-nn-hero__title--logo .igel-nn-hero__logo {
    display: block;
    width: auto;
    height: auto;
    max-width: var(--igel-hero-logo-w, 450px);
}

@media (max-width: 768px) {
    .igel-nn-hero__title--logo .igel-nn-hero__logo {
        max-width: var(--igel-hero-logo-w-mobile, 280px);
        margin: 0 auto;
    }
}

.igel-nn-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--igel-text-secondary);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.igel-nn-hero__cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.igel-nn-hero__visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 2;
}

.igel-nn-hero__glow {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--igel-yellow-dim) 0%, transparent 70%);
    filter: blur(80px);
    animation: igel-nn-glow-pulse 8s ease-in-out infinite;
}

@keyframes igel-nn-glow-pulse {

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

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

/* ----------------------------------------
   JUMP NAVIGATION
   ---------------------------------------- */
.igel-nn-jumpnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(20, 20, 24, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--igel-border);
    transition: box-shadow var(--igel-transition);
}

.igel-nn-jumpnav.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.igel-nn-jumpnav__inner {
    max-width: var(--igel-max-width);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.igel-nn-jumpnav__inner::-webkit-scrollbar {
    display: none;
}

.igel-nn-jumpnav__label {
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--igel-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}

.igel-nn-jumpnav__list {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.igel-nn-jumpnav__link {
    display: block;
    padding: 18px 20px;
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--igel-text-secondary);
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all var(--igel-transition);
}

.igel-nn-jumpnav__link:hover {
    color: var(--igel-text);
}

.igel-nn-jumpnav__link.is-active {
    color: var(--igel-yellow);
    border-bottom-color: var(--igel-yellow);
}

/* ----------------------------------------
   HIGHLIGHTS CAROUSEL
   ---------------------------------------- */
.igel-nn-highlights {
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, var(--igel-purple-dim) 0%, transparent 70%),
        linear-gradient(180deg, var(--igel-dark) 0%, var(--igel-black) 100%);
    padding: 64px 0 72px;
    overflow: hidden;
}

.igel-nn-highlights__inner {
    max-width: var(--igel-max-width);
    margin: 0 auto;
    padding: 0 48px;
}

.igel-nn-highlights__header {
    margin-bottom: 36px;
}

.igel-nn-highlights__title {
    font-family: var(--igel-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--igel-text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.igel-nn-highlights__subtitle {
    font-size: 15px;
    color: var(--igel-text-secondary);
}

.igel-nn-highlights__carousel {
    position: relative;
}

.igel-nn-highlights__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.igel-nn-highlights__track::-webkit-scrollbar {
    display: none;
}

.igel-nn-highlights__card {
    flex: 0 0 480px;
    min-height: 270px;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: var(--igel-radius-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--igel-card);
    cursor: pointer;
    transition: transform var(--igel-transition), box-shadow var(--igel-transition);
    border: 1px solid var(--igel-border);
}

.igel-nn-highlights__card:hover {
    transform: scale(1.03);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 40px var(--igel-yellow-dim);
    border-color: var(--igel-border-highlight);
}

.igel-nn-highlights__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(13, 13, 13, 0.95) 0%,
            rgba(13, 13, 13, 0.6) 40%,
            rgba(13, 13, 13, 0.1) 70%,
            transparent 100%);
    z-index: 1;
    transition: background var(--igel-transition);
}

.igel-nn-highlights__card:hover .igel-nn-highlights__card-overlay {
    background: linear-gradient(to top,
            rgba(13, 13, 13, 0.9) 0%,
            rgba(13, 13, 13, 0.45) 40%,
            rgba(13, 13, 13, 0.05) 70%,
            transparent 100%);
}

.igel-nn-highlights__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.igel-nn-highlights__card-duration {
    display: inline-block;
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--igel-font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--igel-text);
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.igel-nn-highlights__card-title {
    font-family: var(--igel-font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--igel-text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.igel-nn-highlights__card-desc {
    font-size: 14px;
    color: var(--igel-text-secondary);
    line-height: 1.5;
}

.igel-nn-highlights__card-play {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--igel-yellow);
    transition: transform var(--igel-transition);
}

.igel-nn-highlights__card:hover .igel-nn-highlights__card-play {
    transform: translateX(4px);
}

.igel-nn-highlights__card-play-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--igel-yellow);
    color: var(--igel-black);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(255, 209, 1, 0.4);
    transition: box-shadow var(--igel-transition), transform var(--igel-transition);
}

.igel-nn-highlights__card:hover .igel-nn-highlights__card-play-icon {
    box-shadow: 0 6px 28px rgba(255, 209, 1, 0.6);
    transform: scale(1.1);
}

/* Navigation Arrows */
.igel-nn-highlights__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 20, 24, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--igel-border);
    border-radius: 50%;
    color: var(--igel-text);
    cursor: pointer;
    transition: all var(--igel-transition);
    opacity: 0;
    pointer-events: none;
}

.igel-nn-highlights__carousel:hover .igel-nn-highlights__nav {
    opacity: 1;
    pointer-events: auto;
}

.igel-nn-highlights__nav:hover {
    background: var(--igel-yellow);
    color: var(--igel-black);
    border-color: var(--igel-yellow);
    box-shadow: 0 4px 20px rgba(255, 209, 1, 0.3);
}

.igel-nn-highlights__nav--prev {
    left: -8px;
}

.igel-nn-highlights__nav--next {
    right: -8px;
}

.igel-nn-highlights__nav.is-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Responsive: Highlights */
@media (max-width: 768px) {
    .igel-nn-highlights {
        padding: 48px 0 56px;
    }

    .igel-nn-highlights__inner {
        padding: 0 24px;
    }

    .igel-nn-highlights__card {
        flex: 0 0 calc(100vw - 64px);
        min-height: 200px;
    }

    .igel-nn-highlights__nav {
        display: none;
    }

    .igel-nn-highlights__card-title {
        font-size: 18px;
    }

    .igel-nn-highlights__card-content {
        padding: 20px;
    }
}

/* ----------------------------------------
   CONTENT AREA
   ---------------------------------------- */
.igel-nn-content {
    max-width: var(--igel-max-width);
    margin: 0 auto;
    padding: 0 48px;
}

/* ----------------------------------------
   TRACK SECTIONS
   ---------------------------------------- */
.igel-nn-track {
    padding: 80px 0;
    border-bottom: 1px solid var(--igel-border);
}

.igel-nn-track:last-child {
    border-bottom: none;
}

.igel-nn-track__header {
    margin-bottom: 48px;
    position: relative;
    padding-left: 20px;
}

.igel-nn-track__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--igel-yellow), var(--igel-purple));
}

.igel-nn-track__title {
    font-family: var(--igel-font-heading);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--igel-text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.igel-nn-track__desc {
    font-size: 16px;
    color: var(--igel-text-secondary);
    max-width: 600px;
    margin-bottom: 8px;
}

.igel-nn-track__count {
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--igel-yellow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Coming Soon badge */
.igel-nn-track__coming-soon-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--igel-dark);
    background: var(--igel-yellow);
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 12px;
    vertical-align: middle;
}

/* Coming Soon state */
.igel-nn-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background: var(--igel-card);
    border: 1px dashed var(--igel-border);
    border-radius: var(--igel-radius-lg);
    margin-bottom: 32px;
}

.igel-nn-coming-soon__icon {
    margin-bottom: 16px;
    opacity: 0.7;
}

.igel-nn-coming-soon__title {
    font-family: var(--igel-font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--igel-text);
    margin: 0 0 8px;
}

.igel-nn-coming-soon__text {
    font-size: 15px;
    color: var(--igel-text-muted);
    max-width: 420px;
}

/* Per-video "Coming Soon" state (no URL) */
.igel-nn-card--coming-soon {
    cursor: default;
}

.igel-nn-card--coming-soon:hover {
    transform: none;
    border-color: var(--igel-border);
    box-shadow: none;
    background: var(--igel-card);
}

.igel-nn-card--coming-soon .igel-nn-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.igel-nn-card__coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255, 209, 1, 0.15);
    border: 1px solid var(--igel-yellow);
    color: var(--igel-yellow);
    font-family: var(--igel-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Segment card coming soon variant */
.igel-nn-segment-card--coming-soon {
    cursor: default;
    opacity: 0.7;
}

.igel-nn-segment-card--coming-soon:hover {
    border-color: var(--igel-border);
    background: var(--igel-card);
}

.igel-nn-segment-card__coming-soon {
    font-family: var(--igel-font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--igel-yellow);
}

/* Segment card resource CTA link */
.igel-nn-segment-card__watch--resource {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--igel-yellow);
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.igel-nn-segment-card__watch--resource:hover {
    text-decoration: underline;
}

/* Resource card variant (non-video content) */
.igel-nn-card--resource {
    cursor: pointer;
}

.igel-nn-card--resource .igel-nn-card__thumb::after {
    display: none;
}

.igel-nn-card__resource-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: var(--igel-yellow);
    color: #fff;
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.igel-nn-card--resource:hover .igel-nn-card__resource-overlay {
    opacity: 1;
}

.igel-nn-card__watch--resource {
    color: var(--igel-yellow);
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.igel-nn-card__watch--resource:hover {
    text-decoration: underline;
}

/* Segment card description */
.igel-nn-segment-card__desc {
    font-size: 13px;
    line-height: 1.45;
    color: var(--igel-text-secondary);
    margin: 4px 0 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Segment card actions area */
.igel-nn-segment-card__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--igel-border);
}

/* Announcement variant */
.igel-nn-segment-card--announcement {
    border-left: 3px solid var(--igel-yellow);
}

.igel-nn-segment-card__announcement-badge {
    font-family: var(--igel-font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--igel-yellow);
    background: rgba(255, 209, 1, 0.1);
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
    display: inline-block;
}

/* Press release link */
.igel-nn-segment-card__press-release {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--igel-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.igel-nn-segment-card__press-release:hover {
    color: var(--igel-yellow);
}

/* Resource link – simple text style */
.igel-nn-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--igel-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.igel-nn-resource-link:hover {
    color: var(--igel-yellow);
}

/* Keynote coming soon variant */
.igel-nn-keynote--coming-soon .igel-nn-keynote__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    border-radius: var(--igel-radius-lg);
    z-index: 1;
}

.igel-nn-keynote__coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255, 209, 1, 0.15);
    border: 1px solid var(--igel-yellow);
    color: var(--igel-yellow);
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 24px;
    white-space: nowrap;
}

.igel-nn-keynote__thumb {
    position: relative;
}

/* ----------------------------------------
   VIDEO CARD GRID
   ---------------------------------------- */
.igel-nn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

/* ----------------------------------------
   KEYNOTE HERO BLOCK
   ---------------------------------------- */
.igel-nn-keynote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    padding: 40px;
    background: var(--igel-card);
    border: 1px solid var(--igel-border);
    border-radius: var(--igel-radius-lg);
}

.igel-nn-keynote__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.igel-nn-keynote__label {
    font-family: var(--igel-font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--igel-yellow);
}

.igel-nn-keynote__title {
    font-family: var(--igel-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--igel-text);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.igel-nn-keynote__desc {
    font-size: 15px;
    color: var(--igel-text-secondary);
    line-height: 1.7;
}

.igel-nn-keynote__speakers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.igel-nn-keynote__speakers-label {
    font-family: var(--igel-font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--igel-text-muted);
}

.igel-nn-keynote__speaker {
    display: flex;
    align-items: center;
    gap: 12px;
}

.igel-nn-keynote__speaker div {
    display: flex;
    flex-direction: column;
}

.igel-nn-keynote__speaker strong {
    font-family: var(--igel-font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--igel-text);
}

.igel-nn-keynote__speaker span {
    font-size: 13px;
    color: var(--igel-text-muted);
}

.igel-nn-keynote__duration {
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--igel-text-muted);
    margin-left: 12px;
}

.igel-nn-keynote__thumb {
    position: relative;
    border-radius: var(--igel-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

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

.igel-nn-keynote__thumb:hover img {
    transform: scale(1.04);
}

.igel-nn-keynote__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: background var(--igel-transition);
}

.igel-nn-keynote__thumb:hover .igel-nn-keynote__play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* ----------------------------------------
   SEGMENTS DIVIDER
   ---------------------------------------- */
.igel-nn-segments-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    margin-bottom: 28px;
    background: var(--igel-card);
    border: 1px solid var(--igel-border);
    border-radius: var(--igel-radius-sm);
}

.igel-nn-segments-divider span {
    font-family: var(--igel-font-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--igel-text-muted);
}

/* ----------------------------------------
   SEGMENT CARD GRID
   ---------------------------------------- */
.igel-nn-segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}

.igel-nn-segment-card {
    background: var(--igel-card);
    border: 1px solid var(--igel-border);
    border-radius: var(--igel-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: all var(--igel-transition);
}

.igel-nn-segment-card:hover {
    border-color: var(--igel-border-highlight);
    background: var(--igel-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--igel-shadow);
}

.igel-nn-segment-card__company {
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--igel-yellow);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.igel-nn-segment-card__title {
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--igel-text);
    line-height: 1.35;
    margin: 0;
}

.igel-nn-segment-card__role {
    font-size: 13px;
    color: var(--igel-text-muted);
}

.igel-nn-segment-card__name {
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--igel-text-secondary);
}

.igel-nn-segment-card__watch {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--igel-font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--igel-yellow);
    transition: color var(--igel-transition);
}

.igel-nn-segment-card:hover .igel-nn-segment-card__watch {
    color: var(--igel-yellow-light);
}

.igel-nn-segment-card__watch svg {
    transition: transform var(--igel-transition);
}

.igel-nn-segment-card:hover .igel-nn-segment-card__watch svg {
    transform: translateX(3px);
}

/* Responsive: stack keynote on mobile */
@media (max-width: 768px) {
    .igel-nn-keynote {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .igel-nn-segments-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

/* ----------------------------------------
   VIDEO CARD
   ---------------------------------------- */
.igel-nn-card {
    position: relative;
    background: var(--igel-card);
    border-radius: var(--igel-radius);
    border: 1px solid var(--igel-border);
    overflow: hidden;
    transition: all var(--igel-transition);
    cursor: pointer;
}

.igel-nn-card:hover {
    transform: translateY(-6px);
    border-color: var(--igel-border-highlight);
    box-shadow: var(--igel-shadow);
    background: var(--igel-card-hover);
}

/* Thumbnail */
.igel-nn-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--igel-dark) 0%, var(--igel-card) 100%);
}

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

.igel-nn-card:hover .igel-nn-card__thumb img {
    transform: scale(1.05);
}

/* Play overlay */
.igel-nn-card__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity var(--igel-transition);
}

.igel-nn-card:hover .igel-nn-card__play-overlay {
    opacity: 1;
}

.igel-nn-card__play-btn {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--igel-yellow);
    color: var(--igel-black);
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform var(--igel-transition);
    box-shadow: 0 8px 32px rgba(255, 209, 1, 0.4);
}

.igel-nn-card:hover .igel-nn-card__play-btn {
    transform: scale(1);
}

/* Duration badge */
.igel-nn-card__duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    font-family: var(--igel-font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--igel-text);
    backdrop-filter: blur(4px);
}

/* Platform badge */
.igel-nn-card__platform {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    font-family: var(--igel-font-heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--igel-text-muted);
    backdrop-filter: blur(4px);
}

/* Card body */
.igel-nn-card__body {
    padding: 24px;
}

.igel-nn-card__title {
    font-family: var(--igel-font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--igel-text);
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.igel-nn-card__excerpt {
    font-size: 14px;
    color: var(--igel-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Speaker info */
.igel-nn-card__speaker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--igel-border);
}

.igel-nn-card__speaker-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--igel-purple) 0%, var(--igel-purple-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--igel-font-heading);
    font-size: 16px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    position: relative;
}

/* Photo avatar: gradient ring + circular image */
.igel-nn-card__speaker-avatar--photo {
    padding: 2px;
    background: linear-gradient(135deg, var(--igel-yellow) 0%, var(--igel-purple) 50%, var(--igel-purple-light) 100%);
}

.igel-nn-card__speaker-avatar--photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--igel-card);
}

.igel-nn-card__speaker-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.igel-nn-card__speaker-name {
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--igel-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.igel-nn-card__speaker-role {
    font-size: 12px;
    color: var(--igel-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Watch now link */
.igel-nn-card__watch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--igel-font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--igel-yellow);
    transition: all var(--igel-transition);
    padding: 0;
}

.igel-nn-card__watch svg {
    transition: transform var(--igel-transition);
}

.igel-nn-card:hover .igel-nn-card__watch {
    color: var(--igel-yellow-light);
}

.igel-nn-card:hover .igel-nn-card__watch svg {
    transform: translateX(4px);
}

/* ----------------------------------------
   EMPTY STATE
   ---------------------------------------- */
.igel-nn-empty {
    text-align: center;
    padding: 120px 48px;
}

.igel-nn-empty__icon {
    margin-bottom: 24px;
    opacity: 0.6;
}

.igel-nn-empty__title {
    font-family: var(--igel-font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--igel-text);
    margin-bottom: 12px;
}

.igel-nn-empty__text {
    font-size: 16px;
    color: var(--igel-text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

/* ----------------------------------------
   VIDEO MODAL
   ---------------------------------------- */
.igel-nn-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--igel-transition), visibility var(--igel-transition);
}

.igel-nn-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.igel-nn-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
}

.igel-nn-modal__container {
    position: relative;
    width: 90vw;
    max-width: 1100px;
    background: var(--igel-dark);
    border-radius: var(--igel-radius-lg);
    border: 1px solid var(--igel-border);
    overflow: hidden;
    box-shadow: var(--igel-shadow-lg);
    transform: scale(0.92) translateY(20px);
    transition: transform var(--igel-transition-slow);
}

.igel-nn-modal.is-open .igel-nn-modal__container {
    transform: scale(1) translateY(0);
}

.igel-nn-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--igel-border);
}

.igel-nn-modal__title {
    font-family: var(--igel-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--igel-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 16px;
}

.igel-nn-modal__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--igel-text-secondary);
    transition: all var(--igel-transition);
    flex-shrink: 0;
}

.igel-nn-modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--igel-text);
}

.igel-nn-modal__player {
    position: relative;
    background: #000;
}

/* Responsive video container inside modal */
.igel-nn-video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
}

.igel-nn-video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ----------------------------------------
   FOOTER CTA
   ---------------------------------------- */
.igel-nn-footer-cta {
    background: linear-gradient(180deg, var(--igel-dark) 0%, var(--igel-black) 100%);
    border-top: 1px solid var(--igel-border);
}

.igel-nn-footer-cta .igel-nn-btn--primary {
    color: var(--igel-footer-btn-text);
}

.igel-nn-footer-cta .igel-nn-btn--primary:hover {
    color: var(--igel-footer-btn-hover-text);
}

.igel-nn-footer-cta__inner {
    max-width: var(--igel-max-width);
    margin: 0 auto;
    padding: 96px 48px;
    text-align: center;
}

.igel-nn-footer-cta__title {
    font-family: var(--igel-font-heading);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--igel-text);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.igel-nn-footer-cta__text {
    font-size: 17px;
    color: var(--igel-text-secondary);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ----------------------------------------
   SCROLL FADE-IN ANIMATION
   ---------------------------------------- */
.igel-nn-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.igel-nn-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger child cards */
.igel-nn-grid .igel-nn-card:nth-child(1) {
    transition-delay: 0.05s;
}

.igel-nn-grid .igel-nn-card:nth-child(2) {
    transition-delay: 0.1s;
}

.igel-nn-grid .igel-nn-card:nth-child(3) {
    transition-delay: 0.15s;
}

.igel-nn-grid .igel-nn-card:nth-child(4) {
    transition-delay: 0.2s;
}

.igel-nn-grid .igel-nn-card:nth-child(5) {
    transition-delay: 0.25s;
}

.igel-nn-grid .igel-nn-card:nth-child(6) {
    transition-delay: 0.3s;
}

/* ----------------------------------------
   RESPONSIVE DESIGN
   ---------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .igel-nn-hero {
        padding: 100px 32px 60px;
        min-height: 60vh;
    }

    .igel-nn-hero__visual {
        display: none;
    }

    .igel-nn-jumpnav__inner {
        padding: 0 32px;
    }

    .igel-nn-content {
        padding: 0 32px;
    }

    .igel-nn-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .igel-nn-track {
        padding: 60px 0;
    }

    .igel-nn-footer-cta__inner {
        padding: 72px 32px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .igel-nn-hero {
        padding: 80px 20px 48px;
        min-height: auto;
    }

    .igel-nn-hero__badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .igel-nn-hero__title {
        margin-bottom: 16px;
    }

    .igel-nn-hero__cta-group {
        flex-direction: column;
    }

    .igel-nn-btn {
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .igel-nn-jumpnav__inner {
        padding: 0 20px;
        gap: 20px;
    }

    .igel-nn-jumpnav__label {
        display: none;
    }

    .igel-nn-jumpnav__link {
        padding: 14px 12px;
        font-size: 13px;
    }

    .igel-nn-content {
        padding: 0 20px;
    }

    .igel-nn-track {
        padding: 48px 0;
    }

    .igel-nn-track__header {
        margin-bottom: 32px;
    }

    .igel-nn-track__title {
        font-size: clamp(28px, 7vw, 40px);
    }

    .igel-nn-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Segment cards go single-column on phones */
    .igel-nn-segments-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .igel-nn-segment-card {
        padding: 16px;
    }

    .igel-nn-card__body {
        padding: 20px;
    }

    /* Keynote block tighter padding */
    .igel-nn-keynote {
        padding: 20px;
    }

    .igel-nn-keynote__video {
        border-radius: var(--igel-radius);
    }

    .igel-nn-modal__container {
        width: 96vw;
        border-radius: var(--igel-radius);
    }

    .igel-nn-modal__header {
        padding: 16px 20px;
    }

    .igel-nn-modal__title {
        font-size: 14px;
    }

    .igel-nn-footer-cta__inner {
        padding: 56px 20px;
    }

    .igel-nn-footer-cta__title {
        font-size: clamp(24px, 6vw, 36px);
    }
}

/* ----------------------------------------
   LEAD GATE – HERO INLINE FORM + GATED CONTENT
   ---------------------------------------- */

/* Hero two-column layout when gated */
.igel-nn-hero--gated .igel-nn-hero__inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.igel-nn-hero--gated .igel-nn-hero__lead-form {
    flex: 0 0 420px;
    max-width: 420px;
    order: 1;
}

.igel-nn-hero--gated .igel-nn-hero__content {
    flex: 1 1 auto;
}

/* Hero lead form card */
.igel-nn-hero__lead-form {
    position: relative;
    z-index: 3;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
        var(--igel-card);
    border: 1px solid var(--igel-border);
    border-radius: var(--igel-radius-lg);
    box-shadow: var(--igel-shadow-lg), 0 0 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: igel-nn-gate-slide-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.igel-nn-hero__lead-form.is-hidden {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
    pointer-events: none;
}

@keyframes igel-nn-gate-slide-in {
    0% { opacity: 0; transform: translateX(60px) scale(0.96); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

.igel-nn-hero__lead-form-header {
    padding: 28px 24px 20px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, var(--igel-yellow-dim) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid var(--igel-border);
}

.igel-nn-hero__lead-form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--igel-yellow-dim);
    border: 1px solid var(--igel-border-highlight);
    border-radius: 14px;
    color: var(--igel-yellow);
    margin-bottom: 16px;
}

.igel-nn-hero__lead-form-title {
    font-family: var(--igel-font-heading);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 800;
    color: var(--igel-text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.igel-nn-hero__lead-form-subtitle {
    font-size: 13px;
    color: var(--igel-text-secondary);
    line-height: 1.5;
}

.igel-nn-hero__lead-form-body {
    padding: 20px 24px 24px;
    position: relative;
}

/* Success state inside hero form */
.igel-nn-hero__lead-form-success {
    text-align: center;
    padding: 40px 24px;
}

/* Shared form field styles (used by hero form) */
.igel-nn-lead-gate__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.igel-nn-lead-gate__field[data-field="email"],
.igel-nn-lead-gate__field[data-field="postal_code"] {
    grid-column: 1 / -1;
}

/* Conditionally hidden fields (e.g. State when country doesn't have states) */
.igel-nn-lead-gate__field--hidden {
    display: none;
}

.igel-nn-lead-gate__label {
    display: block;
    font-family: var(--igel-font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--igel-text-secondary);
    margin-bottom: 5px;
}

.igel-nn-lead-gate__req {
    color: var(--igel-yellow);
    margin-left: 2px;
}

.igel-nn-lead-gate__input {
    width: 100%;
    padding: 10px 14px;
    height: 40px;
    line-height: 18px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--igel-border);
    border-radius: var(--igel-radius-sm);
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    font-family: var(--igel-font-body);
    font-size: 13px;
    transition: border-color var(--igel-transition), box-shadow var(--igel-transition), background var(--igel-transition);
    outline: none;
}

/* Override browser autofill/autocomplete background + text styles.
   Browsers apply their own bg (yellow in Chrome, blue in Safari) via
   :-webkit-autofill. The inset box-shadow trick masks it with an opaque
   dark colour that matches our card background. The 5000s transition
   delay prevents browsers from transitioning back to their defaults. */
.igel-nn-lead-gate__input:-webkit-autofill,
.igel-nn-lead-gate__input:-webkit-autofill:hover,
.igel-nn-lead-gate__input:-webkit-autofill:focus,
.igel-nn-lead-gate__select:-webkit-autofill,
.igel-nn-lead-gate__select:-webkit-autofill:hover,
.igel-nn-lead-gate__select:-webkit-autofill:focus {
    -webkit-text-fill-color: #FFFFFF !important;
    -webkit-box-shadow: 0 0 0 1000px #1e1e30 inset !important;
    box-shadow: 0 0 0 1000px #1e1e30 inset !important;
    border-color: var(--igel-border) !important;
    caret-color: #FFFFFF;
    transition: background-color 5000s ease-in-out 0s;
}

.igel-nn-lead-gate__input::placeholder {
    color: var(--igel-text-muted);
}

.igel-nn-lead-gate__input:focus {
    border-color: var(--igel-yellow);
    box-shadow: 0 0 0 3px var(--igel-yellow-dim);
    background: rgba(255, 255, 255, 0.08);
}

.igel-nn-lead-gate__input.has-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Country select dropdown — match input dimensions exactly */
.igel-nn-lead-gate__select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 36px;
}

.igel-nn-lead-gate__select option {
    background: #1a1a2e;
    color: #ffffff;
}

.igel-nn-lead-gate__error {
    display: block;
    font-size: 11px;
    color: #ef4444;
    margin-top: 3px;
    min-height: 14px;
    line-height: 1.3;
}

.igel-nn-lead-gate__consent {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--igel-border);
}

.igel-nn-lead-gate__consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--igel-text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.igel-nn-lead-gate__checkbox {
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--igel-yellow);
}

.igel-nn-lead-gate__submit {
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    font-size: 15px;
    justify-content: center;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.igel-nn-lead-gate__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.igel-nn-lead-gate__submit-loading svg {
    animation: igel-nn-spin 1s linear infinite;
}

@keyframes igel-nn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.igel-nn-lead-gate__privacy {
    margin-top: 14px;
    font-size: 11px;
    color: var(--igel-text-muted);
    text-align: center;
    line-height: 1.5;
}

.igel-nn-lead-gate__privacy a {
    color: var(--igel-text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.igel-nn-lead-gate__privacy a:hover {
    color: var(--igel-yellow);
}

/* Success icon */
.igel-nn-lead-gate__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--igel-yellow-dim);
    border-radius: 50%;
    color: var(--igel-yellow);
    margin-bottom: 16px;
    animation: igel-nn-success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes igel-nn-success-pop {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.igel-nn-lead-gate__success-text {
    font-family: var(--igel-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--igel-text);
    line-height: 1.4;
}

/* ----------------------------------------
   GATED CONTENT – BLURRED WRAPPER + PADLOCK OVERLAY
   ---------------------------------------- */

/* Outer container holds both the overlay and the blurred content */
.igel-nn-gated-outer {
    position: relative;
}

/* The actual content that gets blurred */
.igel-nn-gated-wrap {
    transition: filter 0.8s ease;
}

.igel-nn-gated-wrap.is-gated {
    filter: blur(8px) saturate(50%);
    pointer-events: none;
    user-select: none;
    max-height: 600px;
    overflow: hidden;
}

/* Padlock overlay — sits on top of blurred content, NOT inside it */
.igel-nn-gated-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.7) 100%);
    pointer-events: none;
    transition: opacity 0.6s ease;
}

.igel-nn-gated-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.igel-nn-gated-overlay__inner {
    text-align: center;
    max-width: 480px;
    padding: 0 24px;
}

.igel-nn-gated-overlay__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--igel-yellow-dim);
    border: 1px solid var(--igel-border-highlight);
    border-radius: 50%;
    color: var(--igel-yellow);
    margin-bottom: 20px;
    animation: igel-nn-lock-pulse 2s ease-in-out infinite;
}

@keyframes igel-nn-lock-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 209, 1, 0.2); }
    50% { box-shadow: 0 0 0 16px rgba(255, 209, 1, 0); }
}

.igel-nn-gated-overlay__text {
    font-family: var(--igel-font-heading);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: var(--igel-text);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* ----------------------------------------
   RESPONSIVE – HERO GATED FORM
   ---------------------------------------- */
@media (max-width: 900px) {
    .igel-nn-hero--gated .igel-nn-hero__inner {
        flex-direction: column;
        gap: 24px;
    }

    .igel-nn-hero--gated .igel-nn-hero__lead-form {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .igel-nn-hero--gated .igel-nn-hero__content {
        order: 0;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .igel-nn-hero__lead-form-header {
        padding: 20px 16px 16px;
    }

    .igel-nn-hero__lead-form-body {
        padding: 16px;
    }

    .igel-nn-lead-gate__fields {
        grid-template-columns: 1fr;
    }

    .igel-nn-hero__lead-form-title {
        font-size: 18px;
    }

    .igel-nn-gated-overlay {
        padding-top: 40px;
    }
}

/* ----------------------------------------
   PRINT STYLES
   ---------------------------------------- */
@media print {

    .igel-nn-jumpnav,
    .igel-nn-modal,
    .igel-nn-lead-gate,
    .igel-nn-hero__particles,
    .igel-nn-card__play-overlay {
        display: none !important;
    }

    .igel-nn-wrapper {
        background: white;
        color: black;
    }

    .igel-nn-card {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
}