/* ============================================================
   HOME PAGE — GLOBAL OVERRIDES
   ============================================================ */

@font-face {
    font-family: 'Delight';
    src: url('../Assets/delight-font-family/delight-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Override global flex-row layout */
.main-content {
    display: block;
    padding: 0;
    min-height: unset;
}

/* Transparent header over hero */
.home-page .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    height: 64px;
    padding: 0 2rem;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.home-page .header .login-logo-img {
    height: 28px;
    width: auto;
}

.home-page .header .nav {
    margin-top: 0;
}

.home-page .header.scrolled {
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(178, 120, 255, 0.15);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

/* ---- Background (Parallax via JS) ---- */
.hero-bg {
    position: absolute;
    inset: -5%;          /* Puffer für Parallax-Versatz */
    background: url('../images/Hero_Background.png') center center / cover no-repeat;
    z-index: 0;
    will-change: transform;
}

/* Dunkler Gradient-Overlay über dem Background */
.hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right,  rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%),
        linear-gradient(to top,    rgba(0,0,0,0.65) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 25%);
    pointer-events: none;
}

/* Fade ans nächste Section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #000000);
    z-index: 4;
    pointer-events: none;
}

/* ---- Artist Image ---- */
.hero-artist {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 96%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    z-index: 2;
    animation: artistSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.2s;
    transform-origin: bottom right;
    filter: brightness(0.82);
}

@keyframes artistSlideIn {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* ---- Text Content ---- */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 8rem 4rem 0;
    max-width: 580px;
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.hero-headline .accent {
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(178, 120, 255, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(178, 120, 255, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(178, 120, 255, 0.15);
    border-bottom: 1px solid rgba(178, 120, 255, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.stat-number {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(178, 120, 255, 0.2);
    flex-shrink: 0;
}

/* ============================================================
   STICKY SCROLL STACK
   ============================================================ */

.scroll-stack-section {
    position: relative;
    height: 370vh;
    background: linear-gradient(180deg, #000000 0%, #0a000f 100%);
}

.scroll-stack__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-stack__step {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 6rem;
    gap: 4rem;
    opacity: 0;
    transform: translateY(48px) scale(0.97);
    filter: blur(3px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s ease;
    z-index: 1;
    pointer-events: none;
    /* Eigener Hintergrund pro Step – kein Durchscheinen */
    background: #000000;
}

.scroll-stack__step[data-step="0"] {
    background: radial-gradient(ellipse 80% 70% at 65% 55%, rgba(90, 30, 180, 0.18) 0%, #000000 65%);
}

.scroll-stack__step[data-step="1"] {
    background: radial-gradient(ellipse 80% 70% at 65% 55%, rgba(124, 58, 237, 0.15) 0%, #000000 65%);
}

.scroll-stack__step[data-step="2"] {
    background: radial-gradient(ellipse 80% 70% at 65% 55%, rgba(160, 80, 255, 0.13) 0%, #000000 65%);
}

.scroll-stack__step[data-step="3"] {
    background: radial-gradient(ellipse 80% 70% at 65% 55%, rgba(178, 100, 255, 0.11) 0%, #000000 65%);
}

.scroll-stack__step.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
    z-index: 3;
    pointer-events: auto;
}

.scroll-stack__step.is-past {
    opacity: 0.22;
    transform: translateY(-24px) scale(0.97);
    filter: blur(1.5px);
    z-index: 2;
}

/* ---- Text Side ---- */
.scroll-stack__text {
    position: relative;
}

.step-bg-number {
    position: absolute;
    top: -0.25em;
    left: -0.12em;
    font-size: clamp(7rem, 16vw, 15rem);
    font-weight: 900;
    color: rgba(178, 120, 255, 0.055);
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

.step-label {
    position: relative;
    z-index: 1;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1.25rem;
}

.step-title {
    position: relative;
    z-index: 1;
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.75rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.step-sub {
    position: relative;
    z-index: 1;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.75;
    max-width: 400px;
}

/* ---- Visual Side ---- */
.scroll-stack__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.scroll-stack__visual img {
    position: relative;
    z-index: 1;
    height: 62vh;
    max-height: 580px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.65));
}

/* ---- Progress Dots ---- */
.scroll-stack__dots {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 10;
}

.scroll-stack__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition: background 0.35s ease, transform 0.35s ease;
}

.scroll-stack__dot.is-active {
    background: #B278FF;
    transform: scale(1.6);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .scroll-stack__step {
        padding: 0 3rem;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .scroll-stack-section {
        height: 420vh;
    }

    .scroll-stack__step {
        grid-template-columns: 1fr;
        padding: 5rem 1.75rem 2rem;
        gap: 1.5rem;
        align-content: center;
        text-align: center;
    }

    .scroll-stack__visual {
        order: -1;
    }

    .scroll-stack__visual img {
        height: 36vh;
    }

    .step-sub {
        margin: 0 auto;
    }

    .mockup-glow {
        width: 200px;
        height: 200px;
    }

    .scroll-stack__dots {
        right: 1rem;
    }
}

/* ============================================================
   TRENDING EVENTS SECTION
   ============================================================ */

.events-section {
    padding: 0 4rem 7rem;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: content-box;
}

.events-section .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.events-section .section-headline {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    text-wrap: balance;
}

.events-section .section-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3rem;
    text-wrap: balance;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* ── Event Card (identisch mit Profil-Seite) ── */
.event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(178, 120, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.event-card:hover {
    border-color: rgba(178, 120, 255, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(178, 120, 255, 0.12);
}

.event-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(178, 120, 255, 0.05);
}

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

.event-card:hover .event-card__image {
    transform: scale(1.06);
}

.event-card__body {
    padding: 0.75rem 0.9rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-card__date {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #B278FF;
}

.event-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card__location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    overflow: hidden;
}

.event-card__location i {
    flex-shrink: 0;
    font-size: 0.65rem;
}

.event-card__location span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-card__genres {
    font-size: 0.68rem;
    color: #B278FF;
    font-weight: 600;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.8;
}

/* Loading dots for home events */
.home-events-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 3rem 0;
}

.home-events-loading span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(178, 120, 255, 0.5);
    animation: homeDotPulse 1.2s ease-in-out infinite;
}

.home-events-loading span:nth-child(2) { animation-delay: 0.2s; }
.home-events-loading span:nth-child(3) { animation-delay: 0.4s; }

@keyframes homeDotPulse {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
    40%           { opacity: 1;   transform: scale(1.2); }
}

/* ============================================================
   APP SHOWCASE (Slider Section)
   ============================================================ */

/* ---- Step Perks & CTA (used in scroll-stack step 02) ---- */

.step-perks {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.step-perks li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 1;
}

.step-perks li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-purple);
    flex-shrink: 0;
}

.step-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid rgba(178, 120, 255, 0.5);
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.step-cta:hover {
    background: rgba(178, 120, 255, 0.12);
    border-color: rgba(178, 120, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(178, 120, 255, 0.2);
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */

.app-download-section {
    padding: 7rem 2rem;
    text-align: center;
}

.app-download-section .section-headline {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.app-download-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2.5rem;
}

.app-download-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(178, 120, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.download-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.download-badge-link {
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.download-badge-link:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.download-badge-link img {
    height: 50px;
    width: auto;
    display: block;
}

.download-divider {
    width: 1px;
    height: 90px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.download-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.download-qr img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 1px solid rgba(178, 120, 255, 0.2);
}

.download-qr-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   STATS TAGLINE
   ============================================================ */

.stats-tagline {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* ============================================================
   ORGANIZER SECTION — Business Suite Pitch
   ============================================================ */

.organizer-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 4rem;
    background: linear-gradient(135deg, #0a0a12 0%, #13101e 100%);
}

.organizer-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(178, 120, 255, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.organizer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(178, 120, 255, 0.2), transparent);
}

.organizer-section__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 5rem;
    row-gap: 4rem;
    align-items: center;
}

.organizer-section__label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #B278FF;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.organizer-section__headline {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4.25rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.organizer-section__headline .accent {
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.organizer-section__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 460px;
}

.organizer-features {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(178, 120, 255, 0.15);
    padding-top: 3rem;
    gap: 0;
}

.org-feature {
    padding: 0 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 160px;
    transition: background 0.25s ease;
}

.org-feature:first-child {
    padding-left: 0;
}

.org-feature:last-child {
    border-right: none;
    padding-right: 0;
}

.org-feature:hover {
    background: rgba(178, 120, 255, 0.03);
}

.org-feature:hover .org-feature__num {
    opacity: 0.25;
}

.org-feature__num {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    color: #B278FF;
    opacity: 0.15;
    display: block;
    margin-bottom: 1.25rem;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
}

.org-feature__title {
    font-weight: 700;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.25;
}

.org-feature__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.55;
}

.btn-organizer {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 24px rgba(178, 120, 255, 0.35);
}

.btn-organizer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(178, 120, 255, 0.52);
}

.organizer-section__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.organizer-mockup-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.organizer-mockup-img {
    position: relative;
    z-index: 1;
    max-width: 300px;
    width: 100%;
    filter: drop-shadow(0 40px 80px rgba(178, 120, 255, 0.3));
}

.organizer-hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    object-fit: cover;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.5));
}

/* ============================================================
   ARTIST SECTION — Artist & DJ Pitch
   ============================================================ */

.artist-section {
    position: relative;
    overflow: hidden;
    padding: 8rem 4rem;
    background: #000;
}

.artist-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 120, 255, 0.09) 0%, transparent 68%);
    pointer-events: none;
}

.artist-section__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.artist-section__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artist-mockup-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(178, 120, 255, 0.22) 0%, transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.artist-mockup-img {
    position: relative;
    z-index: 1;
    max-width: 270px;
    width: 100%;
    filter: drop-shadow(0 32px 64px rgba(178, 120, 255, 0.25));
}

.artist-section__label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #B278FF;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.artist-section__headline {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4.25rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.artist-section__headline .accent {
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-section__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.artist-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.artist-role {
    background: rgba(178, 120, 255, 0.1);
    border: 1px solid rgba(178, 120, 255, 0.25);
    color: #B278FF;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

.btn-artist {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1.5px solid rgba(178, 120, 255, 0.45);
    color: #B278FF;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-artist:hover {
    background: rgba(178, 120, 255, 0.12);
    border-color: #B278FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(178, 120, 255, 0.2);
}

/* ============================================================
   COMMUNITY SOCIAL PROOF
   ============================================================ */

.community-proof {
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #0a0a12 0%, #000 100%);
    border-top: 1px solid rgba(178, 120, 255, 0.08);
    border-bottom: 1px solid rgba(178, 120, 255, 0.08);
}

.community-proof__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
}

.community-proof__avatars {
    display: flex;
    gap: 0;
    margin-bottom: 0.5rem;
}

.community-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2.5px solid #000;
    margin-left: -14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: default;
    transition: transform 0.2s ease, z-index 0s;
    position: relative;
    z-index: 1;
}

.community-proof__avatars .community-avatar:first-child {
    margin-left: 0;
}

.community-avatar:hover {
    transform: translateY(-5px) scale(1.12);
    z-index: 10;
}

.community-proof__number {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
}

.community-proof__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.community-proof__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #B278FF;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(178, 120, 255, 0.3);
    padding-bottom: 0.15rem;
    margin-top: 0.5rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.community-proof__link:hover {
    color: #c89fff;
    border-color: rgba(178, 120, 255, 0.7);
}

/* ============================================================
   DOWNLOAD SECTION — Redesign
   ============================================================ */

.app-download-section {
    padding: 8rem 4rem;
    background: linear-gradient(to bottom, #000 0%, #07050f 100%);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.app-download-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(178, 120, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.download-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #B278FF;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
}

.download-headline {
    font-family: 'Delight', 'Inter', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.download-headline .accent {
    background: linear-gradient(135deg, #B278FF, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-coming-soon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.coming-soon-pill {
    background: rgba(178, 120, 255, 0.18);
    border: 1px solid rgba(178, 120, 255, 0.4);
    color: #B278FF;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
}

.coming-soon-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.download-text .download-badges {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.download-badges--dimmed .download-badge-link {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
    filter: grayscale(0.3);
}

.download-instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.download-instagram-link i {
    font-size: 1.1rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-instagram-link:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.download-text .download-qr {
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
}

.download-mockups {
    position: relative;
    overflow: hidden;
}

.download-slider-wrap {
    position: relative;
}

.daynite-slides {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    padding: 1rem 0.5rem 2rem;
}

.daynite-slides::-webkit-scrollbar { display: none; }

.daynite-slides:active { cursor: grabbing; }

.daynite-slide {
    flex-shrink: 0;
}

.daynite-slide img {
    height: 380px;
    width: auto;
    border-radius: 22px;
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.daynite-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(178, 120, 255, 0.15);
    border: 1px solid rgba(178, 120, 255, 0.3);
    color: #B278FF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.daynite-slider-nav:hover {
    background: rgba(178, 120, 255, 0.28);
    border-color: rgba(178, 120, 255, 0.6);
}

.daynite-slider-nav.prev { left: 0; }
.daynite-slider-nav.next { right: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .hero-content {
        padding: 0 2.5rem 6rem;
    }

    .events-section {
        padding: 0 2.5rem 5rem;
    }

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

    .organizer-section,
    .artist-section {
        padding: 6rem 2.5rem;
    }

    .organizer-section__inner,
    .artist-section__inner {
        gap: 3rem;
    }

    .download-inner {
        gap: 3rem;
    }

}

@media (max-width: 768px) {
    .home-page .header {
        padding: 1rem 1.25rem 0;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 1.5rem 5rem;
        text-align: left;
    }

    /* Artist kleiner auf Mobile */
    .hero-artist {
        height: 70%;
        opacity: 0.6;
    }

    .stats-strip {
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .stat-sep { display: none; }

    .events-section {
        padding: 0 1.5rem 4rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Organizer section — stack on mobile */
    .organizer-section {
        padding: 5rem 1.5rem;
    }

    .organizer-section__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .organizer-section__visual {
        order: -1;
    }

    .organizer-mockup-img {
        max-width: 220px;
    }

    .organizer-features {
        grid-template-columns: repeat(2, 1fr);
        border-top: none;
        padding-top: 0;
    }

    .org-feature {
        border-right: none;
        padding: 1.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .org-feature:first-child {
        padding-left: 1rem;
    }

    .org-feature:last-child {
        padding-right: 1rem;
    }

    .org-feature:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }

    .org-feature__num {
        font-size: 3.5rem;
    }

    /* Artist section — stack on mobile */
    .artist-section {
        padding: 5rem 1.5rem;
    }

    .artist-section__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .artist-mockup-img {
        max-width: 200px;
    }

    /* Community proof */
    .community-proof {
        padding: 4rem 1.5rem;
    }

    /* Download section — stack on mobile */
    .app-download-section {
        padding: 5rem 1.5rem;
        text-align: left;
    }

    .download-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .download-text .download-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .daynite-slide img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2.2rem; }

    .hero-ctas { flex-direction: column; }

    .btn-hero-primary,
    .btn-hero-secondary { width: 100%; justify-content: center; }

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


    .app-download-card { flex-direction: column; padding: 1.5rem 1rem; }

    .download-badge-link img { height: 44px; }
}
