@import "tokens.css";

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--grey-900);
  background: #fff;
}
a { color: var(--indigo-text); text-decoration: none; }
a:hover { color: #312e81; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 48px;
  background: var(--nav);
  color: #f3f4f6;
}
.brand { font-size: 20px; font-weight: 900; }
.badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a5b4fc;
  border: 1px solid var(--indigo-text);
  border-radius: 6px;
  padding: 3px 8px;
  margin-left: 12px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: #fff; font-size: 15px; }
.nav-links a.muted { color: #9ca3af; }
.btn-ghost {
  border: 1px solid var(--grey-700);
  border-radius: 8px;
  padding: 9px 18px;
  color: #e5e7eb !important;
}
.hero {
  background: var(--tint);
  padding: 88px 48px 80px;
  text-align: center;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo-text);
}
.btn-primary {
  display: inline-flex;
  background: var(--indigo);
  color: #fff !important;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.25);
}
.card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-card);
  padding: 28px;
}
.section { padding: 80px 48px; max-width: 1104px; margin: 0 auto; }
.spots { color: var(--pink); font-weight: 600; }
.site-footer { padding: 40px 48px; color: var(--grey-500); font-size: 14px; }
.gh-content { max-width: 760px; margin: 0 auto; padding: 48px 24px; line-height: 1.65; }
#akademie-player iframe { width: 100%; aspect-ratio: 16/9; border: 0; }
@media (max-width: 800px) {
  .site-nav, .hero, .section { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: 32px; }
}
