:root {
  --night: #0c1418;
  --deep: #13242a;
  --teal: #1f6f68;
  --gold: #d8b46d;
  --sand: #f3eadc;
  --muted: #c7bcae;
  --line: rgba(243,234,220,.18);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(31,111,104,.42), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(216,180,109,.20), transparent 30%),
    linear-gradient(135deg, var(--night), var(--deep));
  color: var(--sand);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 85%);
  pointer-events: none;
}

.landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(28px, 6vw, 80px);
}

.card {
  position: relative;
  width: min(1120px, 100%);
  padding: clamp(30px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(12,20,24,.62);
  box-shadow: 0 30px 100px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216,180,109,.22), transparent 68%);
}

.brandline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 92px);
}

.mark {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 700;
}

.status {
  color: var(--muted);
  border: 1px solid rgba(216,180,109,.35);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: .9rem;
  background: rgba(216,180,109,.08);
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(3.8rem, 11vw, 9.4rem);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 850;
}

h2 {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  max-width: 860px;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  line-height: 1.13;
  letter-spacing: -.035em;
  font-weight: 560;
}

.text {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 34px;
  max-width: 820px;
}

.text p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 42px;
  max-width: 900px;
}

.pill {
  border: 1px solid rgba(243,234,220,.18);
  background: rgba(243,234,220,.065);
  color: var(--sand);
  border-radius: 999px;
  padding: 11px 15px;
  font-size: .95rem;
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(243,234,220,.68);
  font-size: .96rem;
}

@media (max-width: 720px) {
  .brandline {
    align-items: flex-start;
    flex-direction: column;
  }

  .card {
    border-radius: 26px;
  }
}

/* Zentrierung */
.card {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.brandline {
  justify-content: center;
}

h2,
.text,
.text p {
  margin-left: auto;
  margin-right: auto;
}

.pills {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  text-align: center;
}

/* Finaler Zentrierungs-Fix */
.landing {
  justify-content: center !important;
  align-items: center !important;
  width: 100vw !important;
  min-height: 100vh !important;
}

.card {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* HARD CENTER FIX */
html,
body {
  width: 100% !important;
  min-height: 100vh !important;
  margin: 0 !important;
}

body {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow-x: hidden !important;
}

.landing {
  width: 100% !important;
  max-width: 1280px !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  padding: clamp(24px, 5vw, 72px) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.card {
  width: 100% !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
}
