:root {
    --blue: #0047ff;
    --blue-deep: #001a72;
    --blue-soft: #e8efff;
    --cyan: #00a6c8;
    --red: #e22b4b;
    --red-soft: #fff0f3;
    --black: #05060a;
    --ink: #10131d;
    --muted: #657084;
    --line: #d8deea;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(0, 26, 114, .18);
    --radius-lg: 30px;
    --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 0%, rgba(0, 71, 255, .14), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f6f8ff 48%, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a { color: inherit; }

body.coming-soon-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top, rgba(0, 71, 255, .18), transparent 18rem),
        linear-gradient(135deg, #0a1d90 0%, #0c0f20 55%, #000000 100%);
}

.coming-soon-layout {
    flex: 1;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.coming-soon-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(760px, 100%);
    min-height: 460px;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem);
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(43, 96, 255, .18), transparent 18%),
        linear-gradient(135deg, #0a1d90 0%, #0a1035 45%, #000000 100%);
    border-radius: 32px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 24px 60px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.coming-soon-card::before,
.coming-soon-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.coming-soon-card::before {
    width: 180px;
    height: 180px;
    top: -50px;
    left: -40px;
}

.coming-soon-card::after {
    width: 240px;
    height: 240px;
    right: -80px;
    bottom: -90px;
}

.coming-soon-logo-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: .9rem;
}

.coming-soon-logo-wrap img {
    display: block;
    width: min(140px, 28vw);
    max-width: 140px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.coming-soon-card .eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: .4rem;
    color: #eef4ff;
}

.coming-soon-card h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -.06em;
    line-height: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem clamp(1rem, 4vw, 4rem);
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(216, 222, 234, .7);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    font-weight: 900;
    letter-spacing: -.03em;
    text-decoration: none;
}
.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
nav a {
    padding: .65rem .85rem;
    border-radius: 999px;
    color: #252b38;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
}
nav a:hover, nav a:focus-visible {
    background: var(--blue-soft);
    color: var(--blue-deep);
}

main {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    min-height: 72vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
    gap: clamp(2rem, 7vw, 5rem);
    align-items: center;
    padding: clamp(3rem, 8vw, 6.5rem) 0 4rem;
}

.eyebrow {
    margin: 0 0 .8rem;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
}

h1, h2, h3 { line-height: 1.05; color: var(--black); }
h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 6.6rem);
    letter-spacing: -.08em;
    max-width: 8.4ch;
}
h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -.055em;
}
h3 { margin: .75rem 0 .5rem; font-size: 1.25rem; letter-spacing: -.025em; }

.hero-note {
    margin: 1.75rem 0 0;
    display: inline-flex;
    align-items: baseline;
    gap: .85rem;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(0, 71, 255, .09);
    border: 1px solid rgba(0, 71, 255, .18);
    color: var(--blue-deep);
    font-weight: 700;
    max-width: min(44rem, 100%);
}
.hero-note strong {
    font-size: 1.05rem;
}

.lead {
    margin: 1.4rem 0 0;
    color: #3d4658;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    max-width: 44rem;
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .9rem 1.25rem;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    font: inherit;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    box-shadow: 0 14px 36px rgba(0, 71, 255, .32);
}
.button.secondary {
    color: var(--ink);
    background: var(--white);
    box-shadow: inset 0 0 0 1px var(--line);
}
.button.submit { width: 100%; margin-top: .4rem; }

.hero-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 520px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(5, 6, 10, .96), rgba(0, 26, 114, .92)),
        radial-gradient(circle at 70% 10%, rgba(0, 71, 255, .7), transparent 24rem);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: calc(var(--radius-lg) - 1px);
}
.hero-card::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: translate(80px, -20px);
}
.hero-card img {
    position: relative;
    z-index: 1;
    width: min(82%, 430px);
    filter: drop-shadow(0 20px 48px rgba(0,0,0,.42));
}

.season-preview {
    align-content: center;
    gap: 1.5rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}
.season-preview .preview-logo {
    width: min(58%, 300px);
    align-self: end;
}
.season-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: .35rem;
    width: min(100%, 420px);
    padding: 1.2rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}
.season-card span {
    color: rgba(255,255,255,.76);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
}
.season-card strong {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -.06em;
}
.season-card p {
    margin: .3rem 0 0;
    color: rgba(255,255,255,.82);
    font-weight: 800;
}

.steps, .championships, .form-section { padding: 4rem 0; }
.section-heading { margin-bottom: 1.4rem; max-width: 760px; }
.section-heading p:not(.eyebrow) {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}
.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.step-grid article {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 38px rgba(0, 26, 114, .08);
}
.step-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: var(--black);
    font-weight: 900;
}
.step-grid p { margin: 0; color: var(--muted); }

.championships {
    border-top: 1px solid rgba(216, 222, 234, .8);
}
.roadmap {
    position: relative;
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}
.roadmap::before {
    content: "";
    position: absolute;
    left: calc(56px - 1.5px);
    top: 28px;
    bottom: 28px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cyan), var(--blue), var(--red));
}
.roadmap-item {
    position: relative;
    display: grid;
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}
.roadmap-date {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    align-content: center;
    width: 112px;
    min-height: 112px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0, 26, 114, .1);
}
.roadmap-date span,
.roadmap-date small {
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
}
.roadmap-date strong {
    margin: -.2rem 0;
    color: var(--black);
    font-size: 2.65rem;
    line-height: 1;
    letter-spacing: -.05em;
}
.roadmap-content {
    min-width: 0;
    padding: clamp(1.1rem, 3vw, 1.55rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 14px 40px rgba(0, 26, 114, .08);
}
.roadmap-item.highlight .roadmap-content {
    border-color: rgba(226, 43, 75, .35);
    background: linear-gradient(135deg, var(--white), var(--red-soft));
}
.status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .25rem .6rem;
    border-radius: 999px;
    color: var(--blue-deep);
    background: var(--blue-soft);
    font-weight: 900;
    font-size: .78rem;
}
.roadmap-item.highlight .status {
    color: #8e0f28;
    background: #ffdce4;
}
.roadmap-content p {
    margin: 0 0 1rem;
    color: var(--muted);
}
.roadmap-content dl {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .75rem;
    margin: 0;
}
.roadmap-content dl div {
    min-width: 0;
    padding: .75rem;
    border-radius: 8px;
    background: #f6f8ff;
}
.roadmap-content dt {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.roadmap-content dd {
    margin: .1rem 0 0;
    color: var(--black);
    font-weight: 900;
}
.join-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--black), var(--blue-deep));
    box-shadow: var(--shadow);
}
.join-strip .eyebrow,
.join-strip h2 {
    color: var(--white);
}
.join-strip h2 {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
}
.join-strip .button.primary {
    color: var(--blue-deep);
    background: var(--white);
    box-shadow: none;
    flex: 0 0 auto;
}

.form-section {
    display: grid;
    grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
    gap: clamp(1.5rem, 5vw, 3rem);
    align-items: start;
}
.form-copy {
    position: sticky;
    top: 110px;
}
.form-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }

.form-card {
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
}

.field-grid {
    display: grid;
    gap: 1rem;
}
.field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

label {
    display: grid;
    gap: .45rem;
    margin-bottom: 1rem;
    font-weight: 800;
}
label span { font-size: .95rem; }

input, select, textarea {
    width: 100%;
    border: 1px solid #cfd7e6;
    border-radius: 14px;
    padding: .95rem 1rem;
    color: var(--ink);
    background: var(--white);
    font: inherit;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}
textarea { resize: vertical; min-height: 116px; }
input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 71, 255, .12);
}
small, .standalone-error {
    color: #b00020;
    font-weight: 700;
    font-size: .85rem;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-weight: 700;
}
.checkbox input { width: 20px; min-width: 20px; height: 20px; margin-top: .12rem; }
.checkbox a { color: var(--blue-deep); }

.notice {
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    font-weight: 800;
}
.notice.success { background: #eaf8ef; color: #116329; border: 1px solid #bde8c9; }
.notice.error { background: #fff0f0; color: #a30018; border: 1px solid #ffd0d0; }

.fineprint {
    margin: .9rem 0 0;
    color: var(--muted);
    font-size: .9rem;
}
.trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    color: #697386;
    border-top: 1px solid var(--line);
}
.site-footer a { text-decoration: none; font-weight: 800; }
.site-footer a:hover { color: var(--blue-deep); }

@media (max-width: 900px) {
    .hero, .form-section { grid-template-columns: 1fr; }
    .hero-card { min-height: 380px; }
    .form-copy { position: static; }
    .step-grid { grid-template-columns: 1fr; }
    .roadmap::before { left: calc(48px - 1.5px); }
    .roadmap-item {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 1rem;
    }
    .roadmap-date {
        width: 96px;
        min-height: 96px;
    }
    .roadmap-date strong { font-size: 2.25rem; }
    .join-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .site-header { align-items: flex-start; flex-direction: column; }
    nav { justify-content: flex-start; }
    .field-grid.two { grid-template-columns: 1fr; }
    h1 { font-size: clamp(2.6rem, 18vw, 4.3rem); }
    .hero-note {
        display: grid;
        gap: .25rem;
    }
    .season-card {
        padding: 1rem;
    }
    .roadmap::before {
        left: 22px;
        top: 52px;
        bottom: 52px;
    }
    .roadmap-item {
        grid-template-columns: 1fr;
        gap: .7rem;
        padding-left: 44px;
    }
    .roadmap-date {
        width: auto;
        min-height: auto;
        grid-template-columns: auto auto auto;
        justify-content: start;
        gap: .4rem;
        padding: .65rem .75rem;
    }
    .roadmap-date strong {
        margin: 0;
        font-size: 1.8rem;
    }
    .roadmap-content dl {
        grid-template-columns: 1fr;
    }
    .join-strip .button {
        width: 100%;
    }
}

/* Anpassung: Formular direkt unter dem oberen Bereich, einspaltig */
.form-section.single-column {
    display: block;
    max-width: 820px;
    margin: 0 auto;
    padding-top: 1rem;
}
.form-section.single-column .form-copy {
    position: static;
    margin-bottom: 1.5rem;
}
.form-section.single-column .form-card {
    width: 100%;
}
.form-section.single-column label {
    margin-bottom: 1.15rem;
}
.form-section.single-column textarea {
    min-height: 220px;
}
