@font-face {
    font-family: Singing Sans;
    src: url(./static/assets/Singing_Sans-CSJYxodT.woff2)format("woff2"), url(./static/assets/Singing_Sans-BERC94M5.woff)format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:root {
  --bg: #09091a;
  --bg-soft: #11112a;
  --card: rgba(255, 255, 255, .065);
  --card-strong: rgba(255, 255, 255, .095);
  --text: #f7f5ff;
  --muted: #b5b3c9;
  --line: rgba(255, 255, 255, .14);
  --pink: #ff2d95;
  --violet: #7c4dff;
  --cyan: #35d9ff;
  --gold: #ffd166;
  --success: #6ef0ad;
  --danger: #ff7b91;
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
  min-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;

  /* rot danach natürlich wieder entfernen */
}

body {
  min-height: 100vh;

  background:
    radial-gradient(circle at 10% 0%, rgba(124, 77, 255, .16), transparent 34rem),
    radial-gradient(circle at 95% 18%, rgba(255, 45, 149, .14), transparent 34rem),
    var(--bg);

  color: var(--text);
  overflow-x: hidden;

  font-family: "neulis-neue", ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}

.page-glow--one {
  background: var(--pink);
  top: 18%;
  left: -180px;
}

.page-glow--two {
  background: var(--cyan);
  top: 58%;
  right: -220px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - var(--max))/2));
  background: rgba(9, 9, 26, .76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand-heart {
  color: var(--pink);
  font-size: 1.4rem;
}

.brand > span > img {
  max-height: 4rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: .95rem;
}

.nav a:hover {
  color: var(--text);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 24px;
}

.hero {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.kicker,
.meta-label {
  font-size: .76rem;
  letter-spacing: .18em;
  font-weight: 800;
  color: var(--cyan);
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2 {
  font-family: Singing Sans, ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(3.7rem, 9vw, 7.8rem);
  line-height: .8;
  margin: 18px 0 28px;
  max-width: 1000px;
}

h1 span.h1-willkommen {
  font-size: 4rem;
  color: var(--text);
}

h1 span,
.registration h2 span {
  background: linear-gradient(90deg, var(--pink), #bd61ff 48%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: 4rem;
  line-height: .98;
  margin-bottom: 24px;
}

h3 {
  font-size: 1.25rem;
}

p.muted {
  color: var(--muted);
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  border: 0;
  color: white;
  background: linear-gradient(105deg, var(--pink), var(--violet));
  box-shadow: 0 14px 40px rgba(255, 45, 149, .2);
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button--small {
  padding: 10px 15px;
  font-size: .88rem;
}

.button.download {
  max-width: 50%;
}

.text-link {
  color: var(--muted);
  font-weight: 700;
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-card>div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(9, 9, 26, .9);
}

.hero-card strong {
  font-size: 1rem;
}

.meta-label {
  color: var(--muted);
  font-size: .67rem;
}

.ticker {
  position: relative;

  /* Der äußere Container verlässt NIEMALS den Viewport */
  width: 100%;
  max-width: 100%;
  overflow: hidden;

  /* etwas Platz für die Rotation */
  padding: 12px 0;
}

.ticker-tilt {
  width: 104%;
  margin-left: -2%;

  padding: 16px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);

  transform: rotate(-1.2deg);
  transform-origin: center;
}

.ticker-track {
  display: flex;
  width: max-content;

  font-weight: 900;
  color: var(--violet);
  letter-spacing: .06em;
  font-size: 1.05rem;
  white-space: nowrap;

  animation: ticker 28s linear infinite;
}

.ticker-track span {
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-number {
  width: max-content;
  color: var(--pink);
  font-weight: 900;
  font-size: .82rem;
  border: 1px solid rgba(255, 45, 149, .4);
  border-radius: 99px;
  padding: 6px 10px;
  margin-bottom: 16px;
}

.kicker {
  margin: 0 0 14px;
}

.prose-card,
.form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .04));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.prose-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.prose-card strong {
  color: var(--text);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span,
.tag {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  border-radius: 99px;
  padding: 8px 12px;
  font-size: .8rem;
  color: #ddd9ee;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading>p {
  max-width: 400px;
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card,
.support-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition-duration: 0.6s;
}

.step-card .step {
  display: inline-block;
  font-weight: 900;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, .14);
  margin-bottom: 70px;
  transition-duration: 0.6s;
}

.step-card p,
.support-card p {
  color: var(--muted);
  line-height: 1.65;
}

.step-card--accent {
  background: linear-gradient(155deg, rgba(255, 45, 149, .26), rgba(124, 77, 255, .12));
}

.step-card--accent .step {
  color: var(--gold);
}

.step-card:hover {
  border-color: var(--pink);
  transition-duration: 0.6s;
  cursor: pointer;
}

.step-card:hover .step {
  color: var(--pink);
  transition-duration: 0.6s;
}

.support-card:hover {
  border-color: var(--cyan);
  transition-duration: 0.6s;
  cursor: pointer;
}

.support-card:hover .support-icon {
  color: var(--cyan);
  background: rgba(53, 217, 255, .11);
  transition-duration: 0.6s;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.support-card {
  min-height: 300px;
}

/*.support-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(53, 217, 255, .11);
  color: var(--cyan);
  margin-bottom: 65px;
  font-size: 1.2rem;
}*/

.support-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(254, 255, 255, 0.11);
  color: var(--text);
  margin-bottom: 65px;
  font-size: 1.2rem;
  transition-duration: 0.6s;
}

.support-card .tag {
  display: inline-block;
  margin-top: 14px;
}

.registration {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.registration-intro {
  position: sticky;
  top: 120px;
}

.registration-intro>p {
  color: var(--muted);
  line-height: 1.75;
}

.availability {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.availability-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px currentColor;
}

.availability.ready .availability-dot {
  background: var(--success);
}

.availability.offline .availability-dot {
  background: var(--danger);
}

.form-card {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.two-cols {
  grid-template-columns: 1fr 1fr;
}

label>span,
legend {
  display: block;
  margin-bottom: 8px;
  font-size: .86rem;
  color: #ddd9ee;
  font-weight: 700;
}

input,
select {
  width: 100%;
  color: var(--text);
  background: rgba(3, 3, 15, .55);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(53, 217, 255, .75);
  box-shadow: 0 0 0 3px rgba(53, 217, 255, .08);
}

select option {
  background: #11112a;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.choice span {
  display: block;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.choice input:checked+span {
  color: white;
  border-color: var(--pink);
  background: rgba(255, 45, 149, .14);
}

.checkbox-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  cursor: pointer;
}

.checkbox-line input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--pink);
  align-self: center;
}

.checkbox-line span {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.2;
}

.submit-button {
  width: 100%;
  padding-block: 16px;
  margin-top: 4px;
}

.submit-button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin: 0;
  min-height: 24px;
  color: var(--muted);
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 24px 50px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .85rem;
  align-items: center;
}

@media (max-width: 900px) {
  .nav>a:not(.button) {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-card {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .registration {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .registration-intro {
    position: static;
  }

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

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

  .section-heading {
    display: block;
  }

  .section-heading>p {
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  footer span {
    max-width: 9rem;
  }

  .brand {
    font-size: .83rem;
  }

  .button--small {
    padding: 9px 12px;
  }

  .button.download {
    max-width: 100%;
  }

  .section {
    padding: 78px 18px;
  }

  h1 span.h1-willkommen {
    font-size: 2rem !important;
  }

  .hero.section > h1 > span {
    font-size: 3rem;
  }

  .hero.section > h1 {
    line-height: .6;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-card,
  .timeline,
  .two-cols,
  .choice-row {
    grid-template-columns: 1fr;
  }

  .step-card .step,
  .support-icon {
    margin-bottom: 35px;
  }

  .prose-card,
  .form-card {
    padding: 22px;
  }

  footer {
    margin-inline: 18px;
    padding-inline: 0;
  }
}

span.pink {
  color: var(--pink);
}

.country-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.country-select-wrapper select {
  width: 100%;
  padding-left: 52px;
}

.country-flag {
  position: absolute;
  left: 16px;
  z-index: 2;

  width: 24px;
  height: 18px;

  background-size: cover;

  pointer-events: none;
  opacity: 0;
}

.country-flag.visible {
  opacity: 1;
  position: absolute;
}