/* =========================================================
   GLOBAL
========================================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #191629 0%, #050509 45%, #050509 100%);
    color: #f5f5ff;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(5, 5, 15, 0.88);
    border-bottom: 1px solid rgba(123, 47, 255, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 70px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(120deg, #ffffff, #caa9ff, #7b2fff, #ffffff);
    background-size: 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientFlow 4s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

nav.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

nav.nav-links a {
    position: relative;
    padding: 6px 0;
    font-size: 16px;
    opacity: 0.95;
}

nav.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #7b2fff, #b58bff);
    border-radius: 999px;
    transition: width 0.25s ease;
}

nav.nav-links a:hover::after {
    width: 100%;
}

/* Burger */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    border-radius: 999px;
    transition: .2s;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 720px) {
    .nav-toggle { display: block; }

    nav.nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 12px 0;
        gap: 10px;
    }

    nav.nav-links.open {
        display: flex;
    }
}

/* =========================================================
   HERO
========================================================= */
.hero {
    padding: 110px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.3fr);
    gap: 70px;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    max-width: 640px;
}

.hero-eyebrow {
    font-size: 14px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #a89dff;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 50px);
    font-weight: 800;
    margin-bottom: 14px;
}

.hero-subtitle {
    color: #c4c2ff;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* Badges */
.hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.badge {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(123,47,255,.18);
    border: 1px solid rgba(181,139,255,.55);
}

/* Buttons */
.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #7b2fff, #b58bff);
    color: #140b25;
    box-shadow: 0 12px 35px rgba(123,47,255,.55);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(123,47,255,.7);
}

.btn-ghost {
    background: rgba(20,15,40,.85);
    border: 1px solid rgba(123,47,255,.45);
}

/* =========================================================
   SHOP SYSTEM CARD (GRÖSSER & WICHTIGER)
========================================================= */
.stats-card {
    background: radial-gradient(circle at top left, rgba(123,47,255,.28), rgba(6,6,16,.98));
    border-radius: 26px;
    padding: 34px 32px;
    border: 1px solid rgba(181,139,255,.8);
    box-shadow: 0 26px 70px rgba(0,0,0,.75);
    max-width: 520px;
    margin-left: auto;
}

.stats-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.stats-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-step {
    background: rgba(10,8,22,.95);
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(123,47,255,.5);
}

.stats-step strong {
    display: block;
    margin-bottom: 6px;
}

.stats-footnote {
    margin-top: 20px;
    font-size: 15px;
    color: #d2cdff;
}

/* =========================================================
   SECTIONS / CARDS
========================================================= */
.section {
    padding: 70px 0;
}

.section-title {
    font-size: 30px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #b9b4ff;
    margin-bottom: 28px;
}

.card {
    background: rgba(9,8,18,.96);
    border-radius: 18px;
    border: 1px solid rgba(83,69,153,.8);
    padding: 22px;
    box-shadow: 0 16px 38px rgba(0,0,0,.65);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}

/* =========================================================
   DISCORD CTA (UNTEN – GROSS)
========================================================= */
.discord-cta {
    margin-top: 90px;
    padding: 60px 0;
    background: radial-gradient(circle at center, rgba(123,47,255,.25), rgba(5,5,15,.98));
    border-top: 1px solid rgba(123,47,255,.6);
}

.discord-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.discord-box h2 {
    font-size: 34px;
    margin-bottom: 14px;
}

.discord-box p {
    font-size: 17px;
    color: #cfcaff;
    margin-bottom: 28px;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
    padding: 22px 0;
    background: rgba(5,4,12,.98);
    border-top: 1px solid rgba(60,50,120,.8);
    font-size: 13px;
    color: #9b95d0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 880px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: unset;
    }

    .stats-card {
        max-width: 100%;
        margin-left: 0;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}
