/* ============================================
   SO-TUNING.de - Styleguide
   Modern Remake 2025
   ============================================ */

/* ---------- 1. External Fonts & Icons ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* ---------- 2. CSS Custom Properties ---------- */
:root {
    /* Colors */
    --clr-primary: #c800a1;
    --clr-primary-dark: #9a0078;
    --clr-primary-light: #e040fb;
    --clr-accent: #ff2d8f;
    --clr-bg: #0d0d0d;
    --clr-bg-2: #141414;
    --clr-bg-3: #1a1a1a;
    --clr-surface: #1e1e1e;
    --clr-surface-2: #242424;
    --clr-border: rgba(200, 0, 161, 0.25);
    --clr-text: #f5f5f5;
    --clr-text-muted: #a0a0a0;
    --clr-white: #ffffff;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #c800a1 0%, #7c00ff 100%);
    --grad-hero: linear-gradient(180deg, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.85) 100%);
    --grad-card: linear-gradient(135deg, rgba(200, 0, 161, 0.08) 0%, rgba(124, 0, 255, 0.04) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(200, 0, 161, 0.3);

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-base: 16px;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 10rem;

    /* Layout */
    --container-max: 1200px;
    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ---------- 3. Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c800a1, #7c00ff);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #e040fb, #9a00ff);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #c800a1 #0d0d0d;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-family);
}

/* ---------- 4. Utility Classes ---------- */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section {
    padding: var(--space-xl) 0;
}

.section--dark {
    background-color: var(--clr-bg-2);
}

.section--surface {
    background-color: var(--clr-surface);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-primary-light);
    margin-bottom: var(--space-xs);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--clr-white);
}

.section-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- 5. Announcement Bar ---------- */
.announcement-bar {
    background: var(--grad-primary);
    color: var(--clr-white);
    text-align: center;
    padding: 0.55rem var(--space-sm);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
}

.announcement-bar a {
    color: var(--clr-white);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---------- 6. Navigation ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    border-radius: var(--radius-sm);
    transition: color var(--transition-base), background var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-white);
    background: rgba(200, 0, 161, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--grad-primary);
    border-radius: var(--radius-full);
}

.nav-link--cta {
    background: var(--grad-primary);
    color: var(--clr-white) !important;
    padding: 0.55rem 1.2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(200, 0, 161, 0.35);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav-link--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 0, 161, 0.5);
    background: var(--grad-primary) !important;
}

/* SOTF 2026 leak nav link */
.nav-link--leak {
    color: #c800a1 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.5px;
    animation: leakPulse 3s ease-in-out infinite;
    border: 1px solid rgba(200, 0, 161, 0.25);
    border-radius: var(--radius-sm);
}

.nav-link--leak:hover {
    background: rgba(200, 0, 161, 0.12) !important;
    color: #e040fb !important;
    border-color: rgba(200, 0, 161, 0.5);
}

@keyframes leakPulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: none;
    }

    40% {
        opacity: 0.6;
        text-shadow: 0 0 8px rgba(200, 0, 161, 0.8);
    }

    42% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }
}

/* Dropdown */
.nav-item {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--clr-surface-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 180px;
    box-shadow: var(--shadow-md);
    animation: dropdownIn 0.2s ease;
}

@keyframes dropdownIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    color: var(--clr-text-muted);
    border-radius: var(--radius-sm);
    transition: color var(--transition-base), background var(--transition-base);
}

.nav-dropdown a:hover {
    color: var(--clr-primary-light);
    background: rgba(200, 0, 161, 0.1);
}

/* Burger menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: calc(var(--nav-height) + 36px);
    /* announce bar + navbar */
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: var(--space-md);
    flex-direction: column;
    gap: var(--space-xs);
    overflow-y: auto;
}

.mobile-nav.open {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--clr-white);
    background: rgba(200, 0, 161, 0.12);
    border-color: var(--clr-border);
}

.mobile-nav a.mobile-cta {
    background: var(--grad-primary);
    color: var(--clr-white);
    text-align: center;
    margin-top: var(--space-sm);
    box-shadow: 0 4px 20px rgba(200, 0, 161, 0.35);
}

/* ---------- 7. Hero Section ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height) - 36px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    z-index: 1;
}

/* Animated particles overlay */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--clr-primary);
    opacity: 0.15;
    animation: float linear infinite;
}

@keyframes float {
    from {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    to {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: var(--space-xl) 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 0, 161, 0.15);
    border: 1px solid rgba(200, 0, 161, 0.4);
    border-radius: var(--radius-full);
    padding: 0.35rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-primary-light);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease both;
}

.hero-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--clr-primary-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.9s ease 0.1s both;
}

.hero-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245, 245, 245, 0.8);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease 0.2s both;
    font-weight: 300;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInDown 1.1s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    animation: fadeInDown 1.2s ease 0.4s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1;
}

.hero-stat-value span {
    color: var(--clr-primary-light);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* ---------- 8. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--clr-white);
    box-shadow: 0 6px 25px rgba(200, 0, 161, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(200, 0, 161, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--clr-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--clr-primary-light);
    color: var(--clr-primary-light);
    box-shadow: 0 6px 25px rgba(200, 0, 161, 0.2);
}

.btn-ghost {
    background: rgba(200, 0, 161, 0.1);
    color: var(--clr-primary-light);
    border: 1px solid var(--clr-border);
}

.btn-ghost:hover {
    background: rgba(200, 0, 161, 0.2);
    box-shadow: var(--shadow-glow);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ---------- 9. Cards ---------- */
.card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), 0 0 40px rgba(200, 0, 161, 0.12);
    border-color: rgba(200, 0, 161, 0.45);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.5rem;
}

.card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-primary-light);
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* Feature Cards */
.feature-card {
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(200, 0, 161, 0.15);
    border-color: rgba(200, 0, 161, 0.4);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--grad-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(200, 0, 161, 0.3);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 0.6rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
}

/* ---------- 10. Grid Layouts ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ---------- 11. Team Cards ---------- */
.team-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding-bottom: 1.5rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(200, 0, 161, 0.2);
}

.team-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.team-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-img-wrap img {
    transform: scale(1.05);
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, transparent 100%);
}

.team-card-body {
    padding: 1.25rem 1.5rem 0;
}

.team-card-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white);
}

.team-card-role {
    font-size: 0.85rem;
    color: var(--clr-primary-light);
    font-weight: 500;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- 12. Sponsoring Packages ---------- */
.sponsor-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.sponsor-card.featured {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 2px var(--clr-primary), var(--shadow-glow);
}

.sponsor-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: var(--clr-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
}

.sponsor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.sponsor-position {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-primary-light);
    margin-bottom: 0.75rem;
}

.sponsor-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--clr-white);
    line-height: 1;
}

.sponsor-price sup {
    font-size: 1.5rem;
    vertical-align: top;
    margin-top: 0.5rem;
}

.sponsor-features {
    margin: 1.5rem 0;
    text-align: left;
}

.sponsor-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsor-feature-item::before {
    content: '✓';
    color: var(--clr-primary-light);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---------- 13. Info Boxes / Callouts ---------- */
.info-box {
    background: rgba(200, 0, 161, 0.06);
    border: 1px solid rgba(200, 0, 161, 0.2);
    border-left: 4px solid var(--clr-primary);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-box-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-box-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

.info-box-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ---------- 14. Page Hero (Inner Pages) ---------- */
.page-hero {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--clr-bg-2);
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 0, 161, 0.2) 0%, rgba(13, 13, 13, 0.8) 100%);
    z-index: 1;
}

/* Decorative blobs */
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 0, 161, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-primary-light);
    margin-bottom: 0.75rem;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-hero-title span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(245, 245, 245, 0.75);
    max-width: 600px;
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--clr-text-muted);
    transition: color var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--clr-primary-light);
}

.breadcrumb span {
    color: var(--clr-primary-light);
}

/* ---------- 15. List Styles ---------- */
.styled-list {
    margin-top: 1rem;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.styled-list li::before {
    content: '▸';
    color: var(--clr-primary-light);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Numbered list */
.numbered-list {
    counter-reset: list-counter;
}

.numbered-list li {
    counter-increment: list-counter;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.numbered-list li::before {
    content: counter(list-counter);
    min-width: 28px;
    height: 28px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-white);
    flex-shrink: 0;
}

/* ---------- 16. Timeline (Archiv) ---------- */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-primary), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    background: var(--clr-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(200, 0, 161, 0.3);
}

/* ---------- 17. Map / Contact ---------- */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    aspect-ratio: 16/9;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) invert(90%) hue-rotate(160deg) brightness(0.9) contrast(0.9);
}

.contact-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 0, 161, 0.12);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-primary-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--clr-text);
}

.contact-value a {
    color: var(--clr-white);
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-value a:hover {
    color: var(--clr-primary-light);
}

/* ---------- 18. Social Links ---------- */
.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    color: var(--clr-white);
    background: rgba(200, 0, 161, 0.15);
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 0, 161, 0.25);
}

/* ---------- 19. Footer ---------- */
.footer {
    background: #080808;
    border-top: 1px solid var(--clr-border);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '→';
    font-size: 0.8rem;
    color: var(--clr-primary-light);
    opacity: 0;
    transition: opacity var(--transition-base), transform var(--transition-base);
    transform: translateX(-4px);
}

.footer-links a:hover {
    color: var(--clr-primary-light);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.footer-copy span {
    color: var(--clr-primary-light);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--clr-primary-light);
}

/* ---------- 20. Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ---------- 21. Keyframes ---------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    from {
        background-position: -200% center;
    }

    to {
        background-position: 200% center;
    }
}

/* ---------- 22. Divider ---------- */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--clr-border), transparent);
    margin: var(--space-lg) 0;
}

/* ---------- 23. Highlight Badge ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.badge-primary {
    background: rgba(200, 0, 161, 0.15);
    color: var(--clr-primary-light);
    border: 1px solid rgba(200, 0, 161, 0.3);
}

.badge-success {
    background: rgba(0, 200, 100, 0.12);
    color: #4cff90;
    border: 1px solid rgba(0, 200, 100, 0.25);
}

/* ---------- 24. Top Scroll Progress Bar ---------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--grad-primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ---------- 25. Responsive ---------- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
        --space-xl: 4rem;
        --space-lg: 2.5rem;
    }

    .nav-menu {
        display: none;
    }

    .burger {
        display: flex;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(13, 13, 13, 0.98);
    border-top: 1px solid rgba(200, 0, 161, 0.4);
    backdrop-filter: blur(20px);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#cookie-banner.visible {
    transform: translateY(0);
}

#cookie-banner p {
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 680px;
    flex: 1;
    min-width: 260px;
}

#cookie-banner a {
    color: #e040fb;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #c800a1, #7c00ff);
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(200, 0, 161, 0.35);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 0, 161, 0.5);
}

.cookie-btn-decline {
    background: transparent;
    color: #a0a0a0;
    border: 1px solid rgba(200, 0, 161, 0.3);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s, border-color 0.2s;
}

.cookie-btn-decline:hover {
    color: #fff;
    border-color: rgba(200, 0, 161, 0.6);
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY WIDGET
═══════════════════════════════════════════ */
#a11y-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 99998;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

#a11y-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c800a1, #7c00ff);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(200, 0, 161, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

#a11y-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(200, 0, 161, 0.55);
}

#a11y-toggle-btn:focus-visible {
    outline: 3px solid #e040fb;
    outline-offset: 3px;
}

#a11y-panel {
    background: rgba(13, 13, 13, 0.97);
    border: 1px solid rgba(200, 0, 161, 0.4);
    border-radius: 1rem;
    padding: 1rem;
    min-width: 220px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    gap: 0.5rem;
}

#a11y-panel.open {
    display: flex;
}

.a11y-panel-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e040fb;
    margin-bottom: 0.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(200, 0, 161, 0.2);
}

.a11y-option-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 0.5rem;
    background: transparent;
    color: #a0a0a0;
    border: 1px solid transparent;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.a11y-option-btn:hover {
    background: rgba(200, 0, 161, 0.1);
    color: #fff;
    border-color: rgba(200, 0, 161, 0.3);
}

.a11y-option-btn.active {
    background: rgba(200, 0, 161, 0.15);
    color: #e040fb;
    border-color: rgba(200, 0, 161, 0.4);
}

.a11y-option-btn i {
    width: 18px;
    text-align: center;
    color: #c800a1;
}

/* ── ACCESSIBILITY MODES ── */

/* High Contrast */
body.a11y-contrast {
    --clr-bg: #000 !important;
    --clr-surface: #111 !important;
    --clr-text: #fff !important;
    --clr-text-muted: #ddd !important;
    --clr-border: rgba(255, 255, 100, 0.6) !important;
    --clr-primary-light: #ffff00 !important;
    --clr-primary: #ffff00 !important;
    background: #000 !important;
    color: #fff !important;
}

body.a11y-contrast a {
    color: #ffff00 !important;
}

body.a11y-contrast .btn-primary,
body.a11y-contrast .nav-link--cta {
    background: #ffff00 !important;
    color: #000 !important;
}

/* Large Text */
body.a11y-large {
    font-size: 120%;
}

body.a11y-large .nav-link {
    font-size: 1rem;
}

body.a11y-large .section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

body.a11y-large .feature-text,
body.a11y-large .footer-desc {
    font-size: 1rem;
}

/* Reduced Motion */
body.a11y-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Skip link */
.skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    z-index: 999999;
    background: #ffff00;
    color: #000;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 0.5rem 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}