/* ══════════════════════════════════════════════════════
   AXORA — Design System v2
   axora-community.de
   ══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  /* Background layers */
  --bg-void:    #03050a;
  --bg-deep:    #060a12;
  --bg-base:    #090e18;
  --bg-raised:  #0d1420;
  --bg-float:   #111b2e;
  --bg-overlay: #162035;

  /* Borders */
  --b-subtle:  rgba(255,255,255,0.04);
  --b-default: rgba(255,255,255,0.08);
  --b-strong:  rgba(255,255,255,0.14);
  --b-accent:  rgba(82,168,255,0.3);

  /* Brand accent — icy electric blue */
  --a-500: #3b8fff;
  --a-400: #52a8ff;
  --a-300: #7fbdff;
  --a-200: #b3d8ff;
  --a-glow: rgba(59,143,255,0.18);
  --a-glow-strong: rgba(59,143,255,0.32);

  /* Semantic */
  --green:  #2dd882;
  --orange: #ff9f43;
  --red:    #ff5757;
  --green-dim: rgba(45,216,130,0.12);
  --orange-dim: rgba(255,159,67,0.12);
  --red-dim: rgba(255,87,87,0.1);

  /* Text */
  --t-high:   #eef1f8;
  --t-mid:    #8a9ab8;
  --t-low:    #4a5878;
  --t-ghost:  #2a3550;

  /* Typography */
  --f-display: 'Syne', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --nav-h: 72px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.04) inset;
  --shadow-glow: 0 0 40px var(--a-glow);
  --shadow-glow-strong: 0 0 80px var(--a-glow-strong), 0 0 120px rgba(59,143,255,0.1);
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg-void);
  color: var(--t-high);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--bg-overlay); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--b-strong); }

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-sm {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── NOISE OVERLAY ───────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,5,10,0.92) 0%, rgba(3,5,10,0) 100%);
  backdrop-filter: blur(0px);
  transition: all 0.4s;
  z-index: -1;
}
.nav.scrolled::before {
  background: rgba(6,10,18,0.94);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid var(--b-subtle);
  box-shadow: 0 1px 0 rgba(255,255,255,0.03), 0 8px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--t-high);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--a-500), var(--a-300));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 20px var(--a-glow);
  flex-shrink: 0;
}
.logo-text-main { color: var(--t-high); }
.logo-text-dot { color: var(--a-400); }

/* Nav links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: 7px 16px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-mid);
  transition: all 0.2s;
  letter-spacing: 0.01em;
  position: relative;
}
.nav-link:hover { color: var(--t-high); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--t-high); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--a-400);
  border-radius: 2px;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-discord-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  background: rgba(88,101,242,0.14);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: var(--r-sm);
  color: #8b9cf4;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s;
}
.nav-discord-btn:hover {
  background: rgba(88,101,242,0.25);
  border-color: rgba(88,101,242,0.5);
  color: #adb6f7;
  box-shadow: 0 0 20px rgba(88,101,242,0.15);
}
.nav-apply-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--a-500);
  border: none;
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(59,143,255,0.3);
}
.nav-apply-btn:hover {
  background: var(--a-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(59,143,255,0.4);
}

/* Mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-sm);
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--t-mid);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,10,18,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--b-default);
  padding: 16px 28px 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 499;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer .nav-link {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 1rem;
}
.nav-mobile-drawer .nav-discord-btn,
.nav-mobile-drawer .nav-apply-btn {
  margin-top: 8px;
  justify-content: center;
  padding: 12px;
}

@media (max-width: 900px) {
  .nav-center, .nav-right { display: none; }
  .nav-burger { display: flex; }
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background system */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,143,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,143,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 40%, black 20%, transparent 80%);
}

/* Radial spotlight */
.hero-spot {
  position: absolute;
  width: 900px; height: 900px;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(59,143,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,143,255,0.12) 0%, transparent 60%);
  top: -200px; left: -200px;
  animation: orbDrift 20s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,216,130,0.07) 0%, transparent 60%);
  bottom: -100px; right: -100px;
  animation: orbDrift 25s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(127,189,255,0.06) 0%, transparent 60%);
  top: 50%; right: 10%;
  animation: orbDrift 18s ease-in-out infinite 5s;
}

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.06); }
  66% { transform: translate(-20px, 40px) scale(0.95); }
}

/* Horizontal line accent */
.hero-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,143,255,0.15) 30%, rgba(59,143,255,0.15) 70%, transparent);
  top: 55%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h);
}

.hero-inner {
  padding: 100px 0 80px;
  max-width: 820px;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 8px;
  background: rgba(59,143,255,0.08);
  border: 1px solid rgba(59,143,255,0.2);
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.badge-dot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(59,143,255,0.15);
  border-radius: 50%;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--a-400);
  border-radius: 50%;
  animation: pulseDot 2.5s ease-in-out infinite;
}
.badge-text {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--a-300);
  text-transform: uppercase;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,143,255,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(59,143,255,0); }
}

/* Headline */
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero-h1-line1 { display: block; color: var(--t-high); }
.hero-h1-line2 {
  display: block;
  background: linear-gradient(135deg, var(--a-500) 0%, var(--a-300) 50%, #a0d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-h1-line2::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--a-500), transparent);
  opacity: 0.4;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--t-mid);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

/* CTA row */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

/* Social proof row */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeSlideUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}
.proof-divider {
  width: 1px; height: 32px;
  background: var(--b-default);
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-num {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--t-high);
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--t-low);
  letter-spacing: 0.05em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%; transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeSlideUp 1s ease 1.2s both;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid var(--b-strong);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: var(--a-400);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
.scroll-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--t-ghost);
  text-transform: uppercase;
}
@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--a-500);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,143,255,0.3), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary:hover {
  background: var(--a-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,143,255,0.45), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--t-high);
  border: 1px solid var(--b-default);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--b-strong);
}

.btn-discord {
  background: rgba(88,101,242,0.15);
  color: #9ba3f5;
  border: 1px solid rgba(88,101,242,0.25);
}
.btn-discord:hover {
  background: rgba(88,101,242,0.25);
  border-color: rgba(88,101,242,0.5);
  box-shadow: 0 4px 20px rgba(88,101,242,0.15);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.btn svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a-400);
  margin-bottom: 16px;
}
.eyebrow-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--a-400);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--t-high);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1rem;
  color: var(--t-mid);
  line-height: 1.75;
  max-width: 520px;
}
.section-header-centered {
  text-align: center;
  margin-bottom: 64px;
}
.section-header-centered .section-sub {
  margin: 0 auto;
}
.section-header-centered .eyebrow {
  justify-content: center;
}

/* ══════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════ */
.card {
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}
.card:hover {
  border-color: var(--b-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.06) inset;
}
.card-accent {
  border-color: var(--b-accent);
}
.card-accent:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,143,255,0.2), var(--shadow-glow);
}

/* ══════════════════════════════════════════════════════
   STATUS BADGES
   ══════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-green { background: var(--green-dim); color: var(--green); }
.badge-orange { background: var(--orange-dim); color: var(--orange); }
.badge-blue { background: var(--a-glow); color: var(--a-300); }
.badge-red { background: var(--red-dim); color: var(--red); }

.badge-dot-sm {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.badge-green .badge-dot-sm { animation: pulseDot 2s ease-in-out infinite; }

/* ══════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════ */
.stats-strip {
  border-top: 1px solid var(--b-subtle);
  border-bottom: 1px solid var(--b-subtle);
  background: var(--bg-deep);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 44px 32px;
  border-right: 1px solid var(--b-subtle);
  text-align: center;
  transition: background 0.25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-raised); }
.stat-emoji { font-size: 1.6rem; margin-bottom: 14px; }
.stat-num {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--a-500), var(--a-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; color: var(--t-low); font-weight: 500; }

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--b-subtle); }
}

/* ══════════════════════════════════════════════════════
   OVERVIEW / PROJECTS SECTION
   ══════════════════════════════════════════════════════ */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.overview-card {
  composes: card;
}
.ov-icon {
  width: 48px; height: 48px;
  background: var(--bg-float);
  border: 1px solid var(--b-default);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.card:hover .ov-icon {
  border-color: var(--b-accent);
  background: var(--a-glow);
  box-shadow: var(--shadow-glow);
}
.ov-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--t-high);
  letter-spacing: -0.01em;
}
.ov-desc {
  font-size: 0.875rem;
  color: var(--t-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.ov-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ov-arrow {
  color: var(--t-low);
  transition: all 0.25s;
}
.card:hover .ov-arrow {
  color: var(--a-400);
  transform: translateX(4px);
}

@media (max-width: 900px) { .overview-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .overview-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════
   BOT TEASER SECTION
   ══════════════════════════════════════════════════════ */
.bot-section {
  position: relative;
  overflow: hidden;
}
.bot-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59,143,255,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(45,216,130,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.bot-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bot-visual {
  position: relative;
}
.bot-embed-preview {
  background: #1e2231;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 4px solid var(--a-500);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.embed-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.embed-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--a-500), var(--a-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 14px var(--a-glow);
}
.embed-bot-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--a-300);
}
.embed-bot-tag {
  font-size: 0.65rem;
  background: var(--a-500);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
  font-weight: 700;
}
.embed-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t-high);
  margin-bottom: 8px;
}
.embed-desc {
  font-size: 0.82rem;
  color: #9da8c4;
  line-height: 1.6;
  margin-bottom: 16px;
}
.embed-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.embed-field-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #a0aac5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.embed-field-value {
  font-size: 0.8rem;
  color: #c5cedf;
}
.embed-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.embed-btn {
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s;
}
.embed-btn-primary {
  background: var(--a-500);
  color: #fff;
}
.embed-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #c5cedf;
  border: 1px solid rgba(255,255,255,0.1);
}
.embed-timestamp {
  margin-top: 14px;
  font-size: 0.68rem;
  color: #5a6789;
}

.bot-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.bot-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-md);
  transition: all 0.25s;
}
.bot-feature:hover {
  border-color: var(--b-accent);
  background: var(--bg-float);
}
.bot-feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.bot-feature-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--t-high);
  margin-bottom: 3px;
}
.bot-feature-text p {
  font-size: 0.8rem;
  color: var(--t-mid);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .bot-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ══════════════════════════════════════════════════════
   TEAM SECTION
   ══════════════════════════════════════════════════════ */
.team-grid-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.team-dept-icon {
  width: 52px; height: 52px;
  background: var(--bg-float);
  border: 1px solid var(--b-default);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.team-dept-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.team-dept-sub { font-size: 0.82rem; color: var(--t-low); margin-top: 2px; }

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.role-card {
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}
.role-card:hover {
  border-color: var(--b-strong);
  background: var(--bg-float);
  transform: translateY(-2px);
}
.role-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--b-subtle);
}
.role-badge-icon {
  width: 38px; height: 38px;
  background: var(--bg-void);
  border: 1px solid var(--b-default);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.role-name {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.role-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.role-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.5;
}
.role-row-key {
  color: var(--t-low);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 1px;
  flex-shrink: 0;
}
.role-row-val { color: var(--t-mid); }

.team-department { margin-bottom: 64px; }
.team-department:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════
   PROJECTS PAGE
   ══════════════════════════════════════════════════════ */
.projects-toc {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-lg);
  padding: 20px;
  height: fit-content;
}
.toc-title {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-low);
  margin-bottom: 14px;
}
.toc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  color: var(--t-mid);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.toc-item:hover { background: var(--bg-float); color: var(--t-high); }
.toc-item.active { background: var(--a-glow); color: var(--a-300); }

.projects-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .projects-layout { grid-template-columns: 1fr; }
  .projects-toc { display: none; }
}

.project-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--b-subtle);
}
.project-block:last-child { border-bottom: none; }
.project-block-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}
.project-block-icon {
  font-size: 2.8rem;
  width: 68px; height: 68px;
  background: var(--bg-float);
  border: 1px solid var(--b-default);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.project-block-title {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.project-block-sub { font-size: 0.9rem; color: var(--t-mid); line-height: 1.65; max-width: 480px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.feature-item-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-md);
  font-size: 0.84rem;
  color: var(--t-mid);
  transition: all 0.2s;
  line-height: 1.5;
}
.feature-item-card:hover { border-color: var(--b-strong); color: var(--t-high); }
.feature-check { color: var(--a-400); flex-shrink: 0; margin-top: 1px; font-size: 0.8rem; }

.goal-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--t-mid);
  line-height: 1.6;
}
.goal-arrow { color: var(--a-400); flex-shrink: 0; }

.sub-heading {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-low);
  margin-bottom: 14px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--b-subtle);
}

@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════
   PARTNER PAGE
   ══════════════════════════════════════════════════════ */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.standard-card {
  composes: card;
}
.std-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.std-icon-blue { background: var(--a-glow); border: 1px solid var(--b-accent); }
.std-icon-green { background: var(--green-dim); border: 1px solid rgba(45,216,130,0.25); }
.std-icon-orange { background: var(--orange-dim); border: 1px solid rgba(255,159,67,0.25); }
.std-title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.std-desc { font-size: 0.82rem; color: var(--t-mid); line-height: 1.65; }

@media (max-width: 900px) { .standards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .standards-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════
   BEWERBEN PAGE
   ══════════════════════════════════════════════════════ */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.apply-roles-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apply-role-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-lg);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  cursor: default;
}
.apply-role-card:hover {
  border-color: var(--b-accent);
  background: var(--bg-float);
  transform: translateX(6px);
  box-shadow: var(--shadow-glow);
}
.apply-role-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.apply-role-icon {
  width: 44px; height: 44px;
  background: var(--bg-void);
  border: 1px solid var(--b-default);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s;
}
.apply-role-card:hover .apply-role-icon {
  border-color: var(--b-accent);
  background: var(--a-glow);
}
.apply-role-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.demand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.demand-high { background: rgba(255,87,87,0.12); color: #ff7070; }
.demand-mid  { background: rgba(255,159,67,0.12); color: #ffb05a; }
.demand-low  { background: var(--a-glow); color: var(--a-300); }

.apply-role-arrow {
  font-size: 1rem;
  color: var(--t-ghost);
  transition: all 0.3s;
}
.apply-role-card:hover .apply-role-arrow {
  color: var(--a-400);
  transform: translateX(4px);
}

.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 20px;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -12px;
  width: 1px;
  background: var(--b-default);
}
.step-num-wrap {
  width: 40px; height: 40px;
  background: var(--bg-float);
  border: 1px solid var(--b-default);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--a-400);
  z-index: 1;
}
.step-body {
  padding: 8px 0 32px;
}
.step-body h4 {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-body p {
  font-size: 0.82rem;
  color: var(--t-mid);
  line-height: 1.6;
}

@media (max-width: 900px) { .apply-layout { grid-template-columns: 1fr; gap: 48px; } }

/* ══════════════════════════════════════════════════════
   PAGE HERO
   ══════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--b-subtle);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(59,143,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,143,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero .section-sub { margin: 0 auto; }

/* ══════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(59,143,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,143,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,143,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.cta-sub { font-size: 1rem; color: var(--t-mid); line-height: 1.75; max-width: 480px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   ROLE CHIPS JOIN
   ══════════════════════════════════════════════════════ */
.open-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 32px 0 40px;
}
.open-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s;
}
.open-chip:hover { border-color: var(--b-accent); background: var(--bg-float); }
.chip-demand {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-void);
  border-top: 1px solid var(--b-subtle);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--b-subtle);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--t-low);
  line-height: 1.75;
  max-width: 280px;
}
.footer-brand-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social {
  width: 34px; height: 34px;
  background: var(--bg-raised);
  border: 1px solid var(--b-default);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--t-low);
  transition: all 0.2s;
}
.footer-social:hover { border-color: var(--b-strong); color: var(--t-high); }

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-ghost);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--t-low);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--t-mid); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: var(--t-ghost);
}
.footer-bottom-mono { font-family: var(--f-mono); font-size: 0.7rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-h1 { letter-spacing: -0.02em; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .section { padding: 72px 0; }
  .section-title { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════════════════
   DISCORD SVG ICON
   ══════════════════════════════════════════════════════ */
.icon-discord {
  width: 18px; height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}
