/*
  DomeinScan huisstijl — light fintech (Brex/Wise-logica)
  Basis:  #FFFFFF / #F7F9FC  ·  Tekst: #1A2744  ·  Accent: #F05A28
  Soft:   #FFF4EF            ·  Succes: #1F6B4A (alleen “goed” in mock)
  Regel:  ~90% neutraal, ~10% oranje op élke actie (CTA, links, pills, steps)
*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --white: #ffffff;
  --paper: #f7f9fc;
  --paper-2: #eef2f7;
  --ink: #1a2744;
  --navy: #1a2744;
  --ink-soft: #4a5d73;
  --mist: #7a8b9c;
  --line: #e6ebf1;
  --orange: #f05a28;
  --orange-deep: #d4481a;
  --orange-soft: #fff4ef;
  --ok: #1f6b4a;
  --warn: #8a6a1a;
  --space-1: 0.4rem;
  --space-2: 0.85rem;
  --space-3: 1.25rem;
  --space-4: 2rem;
  --space-5: 3.25rem;
  --space-6: 4.75rem;
  --radius: 8px;
  /* Reason: één neutrale sans (Outfit) — geen display/serif “agency”-uitstraling */
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
  --max: 1120px;
  --shadow: 0 1px 2px rgba(26, 39, 68, 0.04), 0 16px 40px rgba(26, 39, 68, 0.06);
  --shadow-shot: 0 2px 4px rgba(26, 39, 68, 0.05), 0 28px 56px rgba(26, 39, 68, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

/* Actielinks = signature orange (Wise/Brex) */
a {
  color: var(--orange);
}

a:hover {
  color: var(--orange-deep);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: var(--space-2);
  top: var(--space-2);
}

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

/* —— Nav —— */
.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: 4.5rem;
  padding: 0.35rem 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-wordmark {
  width: 260px;
  height: auto;
  max-width: none;
}

@media (max-width: 820px) {
  .nav-wordmark {
    width: 168px;
  }

  .top-bar {
    min-height: 4rem;
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.site-nav a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):focus-visible {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: var(--space-2);
    gap: 0.15rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 0.55rem 0;
  }

  .top-bar {
    flex-wrap: wrap;
  }

  .btn-nav {
    width: 100%;
    margin-top: 0.35rem;
  }
}

/* —— Buttons: oranje primary · navy outline secondary —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-deep);
  color: #fff;
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

.btn-nav {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* —— Hero: editorial polish + product shot —— */
.hero {
  background:
    radial-gradient(640px 300px at 88% 18%, rgba(240, 90, 40, 0.14), transparent 58%),
    radial-gradient(420px 240px at 8% 0%, rgba(240, 90, 40, 0.07), transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  color: var(--ink);
  padding: var(--space-5) 0 var(--space-5);
  border-bottom: 1px solid var(--line);
}

.hero-single {
  display: flex;
  justify-content: flex-start;
}

.hero-copy {
  width: 100%;
  max-width: 40rem;
}

@media (max-width: 900px) {
  .hero-single {
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
    max-width: 36rem;
  }

  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 var(--space-2);
  padding: 0.3rem 0.75rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 999px;
  border: 1px solid rgba(240, 90, 40, 0.2);
}

.hero h1 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.8vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  /* Reason: geen enge ch-limiet — .hero-copy bepaalt de breedte al. */
  max-width: none;
  text-wrap: balance;
  color: var(--navy);
}

.hero-lead {
  margin: 0 0 var(--space-2);
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero-hook {
  margin: 0 0 var(--space-3);
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  text-wrap: pretty;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  align-items: center;
}

.trust-line {
  margin: var(--space-2) 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--mist);
  max-width: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
  max-width: 36rem;
}

.trust-row li {
  position: relative;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--mist);
  padding-left: 0.95rem;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
}

