:root {
  --blue-950: #061a44;
  --blue-900: #08235d;
  --blue-800: #10347c;
  --blue-650: #1454c8;
  --blue-500: #1e75ff;
  --blue-100: #eaf2ff;
  --blue-050: #f5f9ff;
  --ink: #071326;
  --muted: #59667a;
  --line: #dce6f6;
  --white: #ffffff;
  --lime: #b9ff4d;
  --sky: #8bd8ff;
  --coral: #ff7a59;
  --shadow: 0 26px 90px rgba(6, 26, 68, 0.16);
  --radius: 8px;
  --container: min(100% - 48px, 1180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(234, 242, 255, 0.8) 0, rgba(255, 255, 255, 0) 540px),
    var(--white);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(16, 52, 124, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 52, 124, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0, transparent 68%);
}

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

svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) auto;
  column-gap: clamp(28px, 4vw, 64px);
  align-items: center;
  width: var(--container);
  min-height: 84px;
  margin: 0 auto;
  background: rgba(245, 249, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--blue-950);
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 50%;
  font-family: "Tinos", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  justify-content: center;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a,
.footer a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer a:hover {
  color: var(--blue-500);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
}

.header-cta {
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  background: var(--blue-900);
  box-shadow: 0 14px 32px rgba(8, 35, 93, 0.18);
  font-size: 14px;
  white-space: nowrap;
}

.header-cta-secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  width: var(--container);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 110px);
}

.hero-solo {
  grid-template-columns: 1fr;
  max-width: var(--container);
}

.hero-solo .hero-copy {
  max-width: 1080px;
}

.section-label {
  margin: 0 0 18px;
  color: var(--blue-650);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.region-line {
  margin: -8px 0 22px;
  color: var(--blue-900);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 800;
  line-height: 1.35;
}

.hero h1,
h2 {
  margin: 0;
  color: var(--blue-950);
  font-family: "Tinos", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 7.4vw, 104px);
  line-height: 0.95;
}

.hero-text {
  max-width: 680px;
  margin: 30px 0 0;
  color: #26354d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 16px;
}

.button svg {
  width: 22px;
  height: 22px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--blue-900);
  box-shadow: 0 18px 44px rgba(8, 35, 93, 0.22);
}

.button-primary:hover {
  background: var(--blue-800);
}

.button-secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--blue-900);
}

.button-light {
  color: var(--blue-950);
  background: var(--lime);
  box-shadow: 0 16px 38px rgba(185, 255, 77, 0.16);
}

.hero-panel {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(185, 255, 77, 0.14) 0 18%, transparent 18% 100%),
    linear-gradient(160deg, var(--blue-950), var(--blue-800));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.start-panel-section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 0 clamp(56px, 8vw, 90px);
}

.start-panel-section .hero-panel {
  min-height: 0;
}

.hero-panel::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
}

.panel-topline strong {
  color: var(--lime);
  font-size: 15px;
}

.signal-card {
  position: relative;
  z-index: 1;
}

.main-signal {
  padding: clamp(34px, 5vw, 60px) 0;
}

.feature-index {
  color: var(--sky);
  font-family: "Tinos", Georgia, serif;
  font-size: 46px;
  line-height: 1;
}

.main-signal h2 {
  max-width: 420px;
  margin-top: 14px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.main-signal p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.6;
}

.mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mini-grid span {
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.intro-band,
.proof-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  width: 100%;
  padding: clamp(64px, 8vw, 96px) max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--blue-900);
}

.intro-band h2,
.proof-section h2 {
  color: var(--white);
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.02;
}

.intro-band .section-label,
.proof-section .section-label {
  color: var(--lime);
}

.intro-band p:not(.section-label),
.proof-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.section,
.split-section,
.process,
.decision-section,
.awards-section,
.person-section,
.talent-benefits,
.fit-section,
.scout-section {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.section-heading h2,
.split-copy h2,
.process h2,
.decision-card h2,
.person-copy h2,
.fit-card h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.person-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, var(--blue-900) 0, var(--blue-900) 46%, var(--white) 46%),
    var(--white);
}

.person-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) 0.72fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.person-portrait {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 216, 255, 0.18), transparent 46%),
    linear-gradient(180deg, var(--blue-800), var(--blue-950));
  border-radius: var(--radius);
}

.person-portrait::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.24);
}

.person-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.person-copy,
.person-notes {
  align-self: start;
}

.person-copy p:not(.section-label) {
  max-width: 750px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.person-notes {
  display: grid;
  gap: 12px;
}

.person-notes article {
  padding: 22px;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.person-notes span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-650);
  font-family: "Tinos", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.person-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.scout-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.scout-section-final {
  padding-top: 0;
}

.scout-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(6, 26, 68, 0.08);
}

.scout-card h2 {
  margin: 0;
  color: var(--blue-950);
  font-family: "Tinos", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.02;
}

.scout-copy {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.scout-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.scout-copy strong {
  color: var(--blue-950);
}

.talent-benefits {
  width: 100%;
  padding-bottom: clamp(34px, 5vw, 48px);
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, var(--white), var(--blue-050));
}

.talent-benefits .section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
  max-width: none;
}

.talent-benefits .section-heading h2 {
  max-width: 760px;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--blue-900);
}

.talent-grid article {
  position: relative;
  min-height: 330px;
  padding: 30px 26px;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.talent-grid article:first-child {
  border-left: 1px solid var(--line);
}

.talent-grid article:nth-child(even) {
  background: var(--blue-050);
}

.talent-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -46px;
  color: rgba(20, 84, 200, 0.08);
  content: attr(data-number);
  font-family: "Tinos", Georgia, serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
}

.talent-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 50%;
  font-weight: 800;
}

.talent-grid h3,
.talent-grid p {
  position: relative;
  z-index: 1;
}

.talent-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.talent-note {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(185, 255, 77, 0.12), transparent 42%),
    var(--blue-950);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(6, 26, 68, 0.12);
}

.talent-note h3 {
  margin: 0;
  color: var(--white);
  font-family: "Tinos", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.04;
}

.talent-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.kununu-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 48px);
  margin-bottom: 0;
  padding: clamp(22px, 4vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(6, 26, 68, 0.08);
}

.kununu-inline h3 {
  margin: 0;
  font-family: "Tinos", Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.08;
}

.kununu-inline .section-label {
  margin-bottom: 12px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-grid article {
  min-height: 300px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-index {
  display: block;
  margin-bottom: 42px;
  color: var(--blue-650);
}

h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.feature-grid p,
.path-list p,
.career-grid p,
.timeline p,
.decision-card p,
.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.split-copy {
  position: sticky;
  top: 120px;
}

.split-copy p:not(.section-label) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.path-list {
  display: grid;
  gap: 14px;
}

.path-list article,
.career-grid article {
  padding: 28px;
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.path-list article:nth-child(2) {
  background: var(--blue-100);
}

.path-list article:nth-child(3) {
  background: #f4fbff;
}

.path-list article:nth-child(4) {
  background: var(--white);
  box-shadow: 0 18px 48px rgba(6, 26, 68, 0.08);
}

.career {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, var(--white), var(--blue-050));
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.career-grid article {
  background: var(--white);
  box-shadow: 0 18px 48px rgba(6, 26, 68, 0.08);
}

.fit-section {
  padding-top: clamp(54px, 8vw, 86px);
  padding-bottom: clamp(54px, 8vw, 86px);
}

.fit-section-early {
  padding-top: 0;
  padding-bottom: clamp(36px, 6vw, 62px);
}

.fit-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(185, 255, 77, 0.14), transparent 42%),
    var(--blue-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fit-card .section-label {
  color: var(--lime);
}

.fit-card h2 {
  color: var(--white);
}

.fit-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.42;
}

.fit-copy strong {
  color: var(--white);
}

.fit-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.fit-traits span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--blue-950);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.awards-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(180deg, var(--blue-050), var(--white) 62%),
    var(--white);
}

.awards-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 58px);
}

.awards-intro h2 {
  max-width: 680px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

.awards-intro p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.award-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(6, 26, 68, 0.08);
}

.award-card-wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 360px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(139, 216, 255, 0.13), transparent 40%),
    var(--blue-950);
  border-color: rgba(255, 255, 255, 0.12);
}

.award-copy {
  max-width: 760px;
}

.award-kicker {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.award-card h3 {
  margin: 0 0 18px;
  font-family: "Tinos", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.award-card-wide h3 {
  color: var(--white);
}

.award-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.award-card-wide p:not(.award-kicker) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.faz-action {
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.faz-seal {
  width: min(100%, 330px);
  height: auto;
  overflow: hidden;
  background: #f2f4f8;
  border-radius: 34px;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.2));
}

.kubus-logo {
  width: min(100%, 270px);
  height: 312px;
  margin: 0 auto auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(6, 26, 68, 0.12));
}

.award-logo {
  width: min(100%, 250px);
  height: 312px;
  margin: 0 auto auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 34px rgba(6, 26, 68, 0.12));
}

.focus-logo {
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.zeit-logo {
  width: min(100%, 220px);
  padding: 0;
  background: #000;
}

.award-card-accent {
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255, 122, 89, 0.16), transparent 46%),
    var(--blue-950);
  border-color: rgba(255, 255, 255, 0.12);
}

.award-card-accent h3 {
  color: var(--white);
}

.award-card-accent p {
  color: rgba(255, 255, 255, 0.78);
}

.award-card > h3 {
  margin-top: 28px;
}

.process {
  padding-bottom: clamp(54px, 8vw, 86px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 34px 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue-900);
  border-radius: var(--radius);
}

.timeline li + li {
  padding-left: 28px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 50%;
  font-weight: 800;
}

.timeline h3 {
  min-height: 52px;
  margin-bottom: 18px;
}

.proof-section {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(139, 216, 255, 0.16), transparent 34%),
    var(--blue-950);
}

.text-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  color: var(--blue-950);
  background: var(--lime);
  border-radius: var(--radius);
  font-weight: 800;
}

.decision-section {
  padding-top: clamp(64px, 9vw, 104px);
}

.decision-card {
  padding: clamp(34px, 6vw, 68px);
  background:
    linear-gradient(90deg, rgba(30, 117, 255, 0.12), transparent 46%),
    var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.decision-card p:not(.section-label) {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: 19px;
}

.decision-card .button {
  margin-top: 34px;
}

.footer {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 54px;
  width: var(--container);
  margin: 0 auto;
  padding: 54px 0 48px;
  border-top: 1px solid var(--line);
}

.footer .brand {
  margin-bottom: 18px;
}

.footer h2 {
  margin: 0 0 16px;
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.footer a {
  display: block;
  margin-top: 10px;
  color: #33425d;
  font-size: 15px;
}

.legal-page {
  width: var(--container);
  margin: 0 auto;
}

.legal-hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(42px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--blue-950);
  font-family: "Tinos", Georgia, serif;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 700;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.legal-hero small {
  display: block;
  margin-top: 22px;
  color: var(--blue-650);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: clamp(42px, 7vw, 84px) 0 clamp(64px, 8vw, 104px);
}

.legal-content article {
  padding: clamp(24px, 4vw, 38px);
  background: var(--blue-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.legal-content p {
  max-width: 940px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.legal-content p + p {
  margin-top: 14px;
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .nav-toggle span:not(.sr-only) {
    height: 2px;
    background: var(--blue-950);
    border-radius: 999px;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 14px;
  }

  .hero,
  .intro-band,
  .split-section,
  .fit-card,
  .scout-card,
  .proof-section,
  .awards-intro,
  .award-card-wide,
  .person-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
  }

  .split-copy {
    position: static;
  }

  .feature-grid,
  .talent-grid,
  .career-grid,
  .timeline,
  .award-grid,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .talent-benefits .section-heading {
    grid-template-columns: 1fr;
  }

  .talent-note {
    grid-template-columns: 1fr;
  }

  .kununu-inline {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .award-card-wide {
    grid-column: span 2;
  }

  .faz-action {
    justify-self: start;
  }

  .text-link {
    justify-self: start;
  }

  .person-portrait {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 460px);
  }

  .brand {
    font-size: 23px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 56px;
  }

  .mini-grid,
  .feature-grid,
  .talent-grid,
  .career-grid,
  .timeline,
  .award-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .proof-section,
  .awards-section,
  .person-section,
  .talent-benefits,
  .fit-section,
  .scout-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .talent-grid article,
  .talent-grid article:first-child {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .person-card {
    padding: 24px;
  }

  .person-portrait {
    min-height: 420px;
  }

  .award-card-wide {
    grid-column: auto;
  }

  .award-card {
    min-height: auto;
  }

  .kubus-logo {
    height: auto;
    max-height: 340px;
  }

  .award-logo {
    height: auto;
    max-height: 360px;
  }

  .faz-seal {
    width: 100%;
    min-height: 310px;
  }

  .faz-action {
    justify-self: stretch;
  }

  .feature-grid {
    border-left: 0;
  }

  .feature-grid article {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .timeline li {
    min-height: auto;
    padding: 28px;
  }

  .timeline li + li {
    padding-left: 28px;
  }

  .footer {
    gap: 26px;
  }

  .legal-nav {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
