/* Lettertypen staan lokaal; deze pagina laadt niets van derden. */
@font-face {
  font-family: 'Ubuntu'; font-style: normal; font-weight: 700; font-display: swap;
  src: url(assets/fonts/ubuntu-700-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Ubuntu'; font-style: normal; font-weight: 500; font-display: swap;
  src: url(assets/fonts/ubuntu-500-latin.woff2) format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url(assets/fonts/inter-latin.woff2) format('woff2');
}

:root {
  --navy-deep: #000E27;
  --navy-lift: #0A3168;
  --cyan: #12D5FE;
  --head: "Ubuntu", "Segoe UI", system-ui, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .76);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Zelfde achtergrond als de hero van de site: raster plus twee gloeden. */
.bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.bg__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 35%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 40%, #000 35%, transparent 100%);
}
.bg__glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.bg__glow--a {
  width: 620px; height: 620px; top: -240px; right: -150px;
  background: radial-gradient(circle, rgba(18, 213, 254, .3), transparent 68%);
}
.bg__glow--b {
  width: 560px; height: 560px; bottom: -280px; left: -180px;
  background: radial-gradient(circle, rgba(10, 49, 104, .95), transparent 70%);
}

main {
  position: relative; z-index: 1;
  display: grid; align-content: center; justify-items: start;
  width: 100%; max-width: 760px;
  margin-inline: auto;
  padding: clamp(56px, 10vw, 96px) clamp(24px, 6vw, 40px);
}

.brand { display: grid; line-height: 1; font-family: var(--head); margin-bottom: clamp(40px, 8vw, 64px); }
.brand b { font-size: clamp(1.5rem, 5vw, 2rem); font-weight: 700; letter-spacing: .075em; color: #fff; }
.brand i {
  font-style: normal; margin-top: 8px;
  font-size: clamp(.58rem, 1.9vw, .78rem); font-weight: 500;
  letter-spacing: .335em; color: var(--cyan);
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--head);
  font-size: clamp(1.9rem, 5.6vw, 2.9rem);
  font-weight: 700; letter-spacing: -.021em; line-height: 1.12;
  color: #fff;
  text-wrap: balance;
}

.lead { margin: 0 0 2.6rem; max-width: 46ch; }

.contact {
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  width: 100%;
}
.contact__label {
  margin: 0 0 .5rem;
  font-family: var(--head);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.contact a {
  font-family: var(--head);
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .25s cubic-bezier(.22, 1, .36, 1);
  word-break: break-word;
}
.contact a:hover,
.contact a:focus-visible { border-bottom-color: var(--cyan); }
.contact a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; border-radius: 3px; }

footer {
  position: relative; z-index: 1;
  width: 100%; max-width: 760px;
  margin-inline: auto;
  padding: 0 clamp(24px, 6vw, 40px) clamp(28px, 5vw, 40px);
  font-size: .84rem;
  color: rgba(255, 255, 255, .46);
}
footer p { margin: 0; }
footer address { font-style: normal; margin-top: .3rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
