:root {
  --bg: #0a0c10;
  --bg-2: #10141b;
  --ink: #f4f1e9;
  --muted: #b4bcc9;
  --gold: #d8a531;
  --gold-soft: #e8c66a;
  --line: rgba(255, 255, 255, 0.09);
  --nav-h: 184px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0 clamp(1.6rem, 4vw, 4.5rem);
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, height .35s ease, border-color .35s ease;
}
.navbar.scrolled {
  height: 140px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-logo {
  height: clamp(64px, 8vw, 96px);
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(216,165,49,.4));
  transition: height .35s ease;
}
.navbar.scrolled .brand-logo { height: 72px; }
.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: .04em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand-text em {
  font-style: normal;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 5px;
}

.nav-links { display: flex; gap: 2.6rem; }
.nav-link {
  position: relative;
  text-decoration: none;
  color: #c3ccd8;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color .25s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.navbar > .btn { font-size: .92rem; --pad-y: 1rem; --pad-x: 2.2rem; }

/* ---------- BUTTONS (distinct shapes) ---------- */
.btn {
  --pad-y: .85rem;
  --pad-x: 1.9rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: var(--pad-y) var(--pad-x);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--gold);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, color .3s, background .3s;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.45), transparent);
  transform: translateX(-120%);
  transition: transform .6s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(216,165,49,.6); }

/* arrow chevron button */
.btn-arrow {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  padding-right: 2.6rem;
}
.btn-arrow::after {
  content: "→";
  font-size: 1.05rem;
  transition: transform .3s;
}
.btn-arrow:hover::after { transform: translateX(5px); }

/* slashed parallelogram-corner button */
.btn-slash {
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
  padding-left: 2.3rem;
  padding-right: 2.3rem;
}

/* notched / chamfered ghost button */
.btn-notch {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--bg); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(216,165,49,.5);
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

.btn-lg { --pad-y: 1.1rem; --pad-x: 2.6rem; font-size: .92rem; }

/* ---------- SECTIONS ---------- */
.section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: var(--nav-h) clamp(1.5rem, 6vw, 7rem) 4rem;
}

.eyebrow {
  font-family: "Sora", sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.section-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.body {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.75;
  max-width: 48ch;
}

/* ---------- HERO ---------- */
.hero { align-items: flex-start; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,16,.55) 0%, rgba(10,12,16,.75) 55%, var(--bg) 100%),
    radial-gradient(circle at 75% 25%, rgba(216,165,49,.16), transparent 45%),
    url("header.png") center/cover no-repeat;
  transform: scale(1.08);
  animation: slow-zoom 20s ease-in-out infinite alternate;
}
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  right: -10vw; top: -10vw;
  background: radial-gradient(circle, rgba(216,165,49,.22), transparent 60%);
  filter: blur(30px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; }
.hero-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: .92;
  letter-spacing: -.02em;
  margin: .4rem 0 1.6rem;
}
.hero-title .line { display: block; }
.hero-title .accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  text-stroke: 2px var(--gold);
}
.hero-sub { color: var(--muted); font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.65; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.scroll-cue span {
  width: 2px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 1.8s ease-in-out infinite;
}

/* ---------- MISSION ---------- */
.mission { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.mission-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  width: 100%;
}
.mission-copy .body { margin: 1.4rem 0 2rem; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.stat {
  padding: 2rem 1.6rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  transition: transform .4s, border-color .4s, background .4s;
}
.stat:hover { transform: translateY(-6px); border-color: rgba(216,165,49,.4); background: rgba(216,165,49,.04); }
.stat-num {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-soft);
  line-height: 1;
}
.stat-label {
  display: block; margin-top: .7rem;
  font-size: .84rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}

/* ---------- DIVISIONS ---------- */
.divisions { background: var(--bg-2); }
.divisions-head { margin-bottom: 3rem; }
.card-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  padding: 2.2rem 1.8rem 2.6rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, background .4s;
}
.card::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.card:hover { transform: translateY(-10px); border-color: rgba(216,165,49,.35); background: rgba(216,165,49,.03); }
.card:hover::after { transform: scaleX(1); }
.card-index {
  font-family: "Sora", sans-serif;
  font-weight: 800; font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .1em;
}
.card h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700; font-size: 1.5rem;
  margin: 1rem 0 .8rem;
}
.card p { color: var(--muted); font-size: 1.06rem; line-height: 1.65; }

/* ---------- APPLY ---------- */
.apply {
  align-items: center; text-align: center;
  background: radial-gradient(circle at 50% 40%, rgba(216,165,49,.08), transparent 55%), var(--bg);
  overflow: hidden;
}
.apply-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(216,165,49,.25), transparent 45%);
  pointer-events: none;
}
.apply-inner { position: relative; max-width: 720px; display: flex; flex-direction: column; align-items: center; }
.apply-inner .body { margin: 1.2rem auto 0; text-align: center; }
.apply-inner .hero-actions { justify-content: center; }
.apply-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  letter-spacing: -.01em;
  line-height: 1;
  background: linear-gradient(180deg, var(--ink), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.apply-note { margin-top: 2.4rem; font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }

/* ---------- BEWERBER ---------- */
.bewerber { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.fuehrung { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

/* ---------- BEWERBER INFO LIST ---------- */
.info-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  margin: 1.8rem 0 2rem;
  max-width: 34rem;
}
.info-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
}
.info-list span { color: var(--muted); font-size: .88rem; letter-spacing: .12em; text-transform: uppercase; }
.info-list b { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }

/* ---------- VISION PROSE ---------- */
.prose-inner { width: 100%; max-width: 960px; margin: 0 auto; }
.prose { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 1.9rem; }
.prose p {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  line-height: 1.85;
  max-width: 72ch;
}
.prose strong, .body strong { color: var(--ink); font-weight: 700; }

/* ---------- FÜHRUNG ROSTER ---------- */
.roster { display: flex; flex-direction: column; gap: 1rem; }
.roster-row {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.5rem 1.8rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .4s, border-color .4s;
}
.roster-row:hover { transform: translateX(6px); background: rgba(216,165,49,.04); border-color: rgba(216,165,49,.4); }
.roster-rank { font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.5rem; }
.roster-name { color: var(--muted); font-size: 1.08rem; letter-spacing: .04em; }
.roster-name b { color: var(--gold-soft); font-weight: 700; }
.roster-name.is-open { font-style: italic; letter-spacing: .12em; text-transform: uppercase; font-size: .9rem; }

/* ---------- RÄNGE ---------- */
.ranks { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.ranks-head { margin-bottom: 3rem; max-width: 60ch; }
.ranks-head .body { margin-top: 1.2rem; }
.rank-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.rank-group {
  padding: 2rem 1.8rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s, background .4s;
}
.rank-group:hover { transform: translateY(-6px); border-color: rgba(216,165,49,.35); background: rgba(216,165,49,.03); }
.rank-tier {
  display: block;
  font-family: "Sora", sans-serif;
  font-weight: 800; font-size: .92rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.rank-list { list-style: none; display: flex; flex-direction: column; }
.rank-list li {
  display: flex; align-items: baseline; gap: .7rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-weight: 700; font-size: 1rem; line-height: 1.35;
}
.rank-list li:last-child { border-bottom: none; }
.rank-no {
  font-size: .78rem;
  color: var(--gold);
  flex: 0 0 auto;
}

/* ---------- FAQ (Zusätzliches) ---------- */
.faq { display: grid; gap: 1rem; margin: 2rem 0 .5rem; width: 100%; max-width: 640px; text-align: left; }
.faq-item {
  padding: 1.4rem 1.6rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}
.faq-q { display: block; font-family: "Sora", sans-serif; font-weight: 700; color: var(--gold-soft); font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .55rem; }
.faq-a { display: block; color: var(--muted); font-size: 1.08rem; line-height: 1.65; }

/* ---------- FOOTER ---------- */
.footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 2rem clamp(1.5rem, 6vw, 7rem);
  border-top: 1px solid var(--line);
  font-size: .88rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* stagger children */
.hero-inner .reveal.in { transition-delay: calc(var(--i, 0) * .08s); }

@keyframes slow-zoom { from { transform: scale(1.08); } to { transform: scale(1.16); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mission-inner { grid-template-columns: 1fr; }
  .card-row { grid-template-columns: 1fr 1fr; }
  .rank-groups { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .card-row { grid-template-columns: 1fr; }
  .rank-groups { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .info-list { grid-template-columns: 1fr; }
  .brand-text { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg, .brand-mark, .scroll-cue span { animation: none; }
}
