/* Berufswelten marketing site — flat, navy + teal */
:root {
  --navy: #0f253d;
  --navy-deep: #0a1a2c;
  --navy-mid: #163552;
  --teal: #2bb8a8;
  --teal-hover: #3ccfc0;
  --teal-dim: rgba(43, 184, 168, 0.14);
  --ink: #e8eef4;
  --muted: #9bb0c4;
  --line: rgba(232, 238, 244, 0.12);
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(43, 184, 168, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 40%, rgba(22, 53, 82, 0.9), transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, #122f4a 100%);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(10, 26, 44, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.burger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.1rem;
}

.burger-lines span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-drawer {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.75rem 0 1rem;
}

.nav-drawer.open {
  display: block;
}

.nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer a {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted);
  font-weight: 500;
}

.nav-drawer a:hover {
  color: var(--ink);
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
}

/* —— Hero —— */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 4.1rem);
  padding: 3.5rem 0 4.5rem;
}

.hero-brand {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}

.hero-headline {
  margin: 0 0 1rem;
  max-width: 28rem;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--teal);
}

.hero-lead {
  margin: 0 0 2.25rem;
  max-width: 32rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.85rem 2rem;
  border-radius: 0.35rem;
  background: var(--teal);
  color: var(--navy-deep);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta:hover {
  background: var(--teal-hover);
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* —— Inner pages —— */
.page {
  padding: 3rem 0 5rem;
}

.page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.page .eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page .prose {
  max-width: 40rem;
  color: var(--muted);
}

.page .prose p {
  margin: 0 0 1rem;
}

.page .prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.page .prose strong {
  color: var(--ink);
  font-weight: 600;
}

.badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0.3rem;
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 600;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a:hover {
  color: var(--ink);
}
