/* RAJA International — Coming-Soon Landingpage
   Markenfarben: Rot #D8322F · Gelb #EFC729 · Schwarz */

:root {
  --red: #d8322f;
  --red-deep: #9d1f1d;
  --gold: #efc729;
  --ink: #0d0b0b;
  --ink-soft: #171312;
  --paper: #f6f2ec;
  --muted: rgba(246, 242, 236, .62);
  --line: rgba(246, 242, 236, .12);

  --font-display: 'Anton', 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-hand: 'Chewy', 'Archivo', cursive;

  --pad: clamp(1.25rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .3vw, 1.125rem);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Hintergrund: Marmor-Anmutung ---------- */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(120% 90% at 50% -10%, #241a19 0%, transparent 60%),
    repeating-linear-gradient(112deg,
      rgba(246,242,236,.028) 0 1px,
      transparent 1px 9px,
      rgba(246,242,236,.016) 9px 10px,
      transparent 10px 34px),
    linear-gradient(180deg, #120e0e 0%, var(--ink) 45%, #0a0808 100%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.glow {
  position: fixed;
  z-index: -2;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.glow--red {
  width: min(62vw, 620px);
  aspect-ratio: 1;
  top: -14vh;
  left: 50%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(216,50,47,.42), transparent 68%);
}

.glow--gold {
  width: min(48vw, 460px);
  aspect-ratio: 1;
  bottom: -18vh;
  right: -10vw;
  background: radial-gradient(circle, rgba(239,199,41,.2), transparent 70%);
}

/* ---------- Topbar ---------- */

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem var(--pad);
  border-bottom: 1px solid var(--line);
}

.topbar__brand {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.topbar__brand em {
  font-style: normal;
  color: var(--muted);
}

.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(239,199,41,.6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,199,41,.55); }
  70%  { box-shadow: 0 0 0 .55rem rgba(239,199,41,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,199,41,0); }
}

/* ---------- Layout ---------- */

.stage {
  flex: 1;
  width: 100%;
  max-width: 68rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5rem) var(--pad) clamp(2rem, 5vw, 3.5rem);
}

.hero { text-align: center; }

/* ---------- Logo-Platte ---------- */

.plate {
  display: inline-block;
  padding: clamp(1rem, 3vw, 1.6rem) clamp(1.6rem, 5vw, 2.8rem);
  background: var(--paper);
  border-radius: 1.5rem;
  box-shadow:
    0 1.5rem 3.5rem rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.08),
    inset 0 -.35rem 0 rgba(216,50,47,.14);
  animation: rise .7s cubic-bezier(.2,.7,.3,1) both;
}

.plate__logo {
  display: block;
  width: clamp(11rem, 34vw, 17rem);
  height: auto;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(1.2rem) scale(.97); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Text ---------- */

.kicker {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 .75rem;
  font-family: var(--font-hand);
  font-size: clamp(1.05rem, 1rem + .6vw, 1.45rem);
  color: var(--gold);
  letter-spacing: .01em;
}

.headline {
  margin: 0 auto;
  max-width: min(16ch, 100%);
  overflow-wrap: break-word;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 1.2rem + 5.6vw, 5.25rem);
  line-height: .95;
  letter-spacing: .005em;
  text-transform: uppercase;
  text-wrap: balance;
}

.headline__accent {
  color: var(--red);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 2.5rem rgba(216,50,47,.45);
}

.lede {
  margin: clamp(1.1rem, 3vw, 1.6rem) auto 0;
  max-width: min(46ch, 100%);
  color: var(--muted);
  text-wrap: pretty;
}

/* ---------- Fortschritt ---------- */

.progress {
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: min(26rem, 100%);
}

.progress__track {
  height: .5rem;
  border-radius: 999px;
  background: rgba(246,242,236,.09);
  overflow: hidden;
}

.progress__fill {
  display: block;
  height: 100%;
  width: 60%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-deep), var(--red) 55%, var(--gold));
  transform-origin: left;
  animation: fill 1.6s .35s cubic-bezier(.2,.7,.3,1) both;
}

@keyframes fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.progress__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .6rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Teaser-Karten ---------- */

.teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-top: clamp(3rem, 8vw, 5rem);
}

.card {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(160deg, rgba(246,242,236,.05), rgba(246,242,236,.015));
  text-align: left;
  transition: border-color .25s ease, transform .25s ease;
}

.card:hover {
  border-color: rgba(216,50,47,.5);
  transform: translateY(-2px);
}

.card__badge {
  display: inline-block;
  padding: .3rem .65rem;
  border-radius: .5rem;
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card__title {
  margin: .9rem 0 .4rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.card__text {
  margin: 0;
  font-size: .95rem;
  color: var(--muted);
  text-wrap: pretty;
}

/* ---------- Footer ---------- */

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem 1.5rem;
  padding: 1.5rem var(--pad);
  border-top: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}

.footer p { margin: 0; }

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .progress__fill { transform: none; }
}
