:root {
  --ink: #071326;
  --deep: #091b43;
  --blue: #163d91;
  --cobalt: #2258c4;
  --ice: #d8fff2;
  --mint: #91e8c6;
  --lawn: #8bb95f;
  --paper: #f5f8ff;
  --white: #ffffff;
  --muted: #9eb0d2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 3rem, 1160px);
  margin-inline: auto;
  padding-block: 1.6rem;
}

.wordmark {
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-decoration: none;
}

.wordmark-dot {
  color: var(--mint);
}

.site-header nav,
.site-footer div {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-header nav a,
.site-footer a {
  color: var(--ice);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-content: center;
  width: 100%;
  padding: 8rem max(1.5rem, calc((100vw - 1160px) / 2)) 5rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 74% 20%, rgba(45, 93, 206, 0.6), transparent 34%),
    radial-gradient(circle at 7% 82%, rgba(88, 140, 194, 0.25), transparent 30%),
    linear-gradient(145deg, #061124 0%, #0b2457 55%, #071326 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8vw;
  top: -19vw;
  width: 50vw;
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 242, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(216, 255, 242, 0.025),
    0 0 0 18vw rgba(216, 255, 242, 0.018);
}

.hero-copy {
  width: min(100%, 850px);
  margin: 0 auto 2.3rem;
  text-align: center;
}

.eyebrow,
.legal-kicker {
  margin: 0 0 0.7rem;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 6.7rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.building-figure {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.building-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(216, 255, 242, 0.3);
  border-radius: 0.45rem;
  background-color: #0d2a62;
  background-image:
    linear-gradient(180deg, rgba(2, 13, 37, 0.04), rgba(2, 13, 37, 0.12)),
    url("zender-gebaeude.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42),
    0 0 0 0.55rem rgba(143, 233, 198, 0.055);
}

.building-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(216, 255, 242, 0.08), transparent 28%);
}

figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.legal-shell {
  width: min(100% - 3rem, 1160px);
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
  gap: 2rem 5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.6rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.legal-card {
  display: grid;
  grid-template-columns: 5rem minmax(0, 46rem);
  justify-content: center;
  gap: 1.5rem 3rem;
  margin-top: 1.25rem;
  padding: clamp(2rem, 6vw, 5.5rem);
  border: 1px solid rgba(158, 176, 210, 0.2);
  background: rgba(13, 35, 77, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.legal-index {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.legal-content h2 {
  margin: 0 0 3rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-content h3 {
  margin: 2.3rem 0 0.55rem;
  color: var(--ice);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-content p,
.legal-content address {
  margin: 0;
  color: #cbd7ee;
  font-size: 0.96rem;
  font-style: normal;
}

.legal-content a {
  color: var(--ice);
  overflow-wrap: anywhere;
}

.legal-content .spaced-paragraph {
  margin-top: 1rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 3rem, 1160px);
  margin-inline: auto;
  padding-block: 2rem;
  border-top: 1px solid rgba(158, 176, 210, 0.2);
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 2rem, 1160px);
    padding-block: 1.1rem;
  }

  .site-header nav {
    gap: 0.8rem;
  }

  .site-header nav a {
    font-size: 0.64rem;
  }

  .hero {
    padding-inline: 1rem;
    padding-top: 7rem;
  }

  .hero-copy {
    margin-bottom: 1.8rem;
  }

  .legal-shell {
    width: min(100% - 2rem, 1160px);
  }

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

  .section-heading .eyebrow {
    margin-bottom: -0.4rem;
  }

  .legal-card {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem;
  }

  .legal-content h2 {
    margin-bottom: 2.2rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 2rem, 1160px);
  }

  .site-footer div {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link {
    transition: none;
  }
}
