:root{
  --font-body:'Manrope',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-heading:'Manrope',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --brand:#006241;
  --brand-accent:#3c968c;
  --text:#1d1d1b;
  --muted:#465550;
  --bg:#f7f7f7;
  --card:#ffffff;
  --line:#dfdcd5;
  --shadow:0 18px 48px rgba(0,0,0,.08);
  --radius:18px;
  --transition:all .2s ease-in-out;
}
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;min-height:100%}
body{
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
a{color:var(--brand);text-decoration:none;transition:var(--transition)}
a:hover{text-decoration:underline}
.container{
  max-width:960px;
  margin:0 auto;
  padding:0 clamp(1.25rem,4vw,2.5rem);
}
.site-header{
  background:var(--card);
  border-bottom:1px solid var(--line);
  box-shadow:0 24px 40px rgba(0,0,0,.04);
}
.site-header__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.5rem;
  padding:1.75rem 0 1.25rem;
}
.brand{
  display:flex;
  align-items:center;
  gap:1rem;
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background-color:var(--brand);
  background-image:url('/public/logo-light.png');
  background-repeat:no-repeat;
  background-position:center;
  background-size:70%;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
}
.brand-copy{display:flex;flex-direction:column;gap:.2rem}
.brand-name{
  font-family:var(--font-heading);
  font-weight:600;
  font-size:1.1rem;
  color:var(--brand);
  letter-spacing:.02em;
  text-transform:uppercase;
}
.brand-subtitle{
  color:var(--muted);
  font-size:.95rem;
}
.language-switch{
  display:flex;
  align-items:center;
  gap:.6rem;
}
.lang-toggle{
  appearance:none;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:1.4rem;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:var(--transition);
}
.lang-toggle[aria-pressed="true"]{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  box-shadow:0 0 0 4px rgba(0,98,65,.14);
}
.lang-toggle:focus-visible,
.button:focus-visible{
  outline:3px solid rgba(0,98,65,.2);
  outline-offset:3px;
}
.hero-copy{
  padding:0 0 2.5rem;
}
h1{
  margin:0;
  font-family:var(--font-heading);
  font-weight:600;
  font-size:clamp(2rem,6vw,2.8rem);
  line-height:1.1;
}
.subtitle{
  margin:.75rem 0 0;
  color:var(--muted);
  font-size:1.05rem;
}
main.container{
  padding:2.5rem clamp(1.25rem,4vw,2.5rem) 3.5rem;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:2rem clamp(1.2rem,4vw,2.2rem);
  border:1px solid rgba(0,0,0,.02);
}
.intro{
  color:var(--muted);
  font-size:1.05rem;
  margin:0 0 1.5rem;
}
.intro strong{color:var(--text)}
.rules{
  list-style:none;
  margin:1.5rem 0 2rem;
  padding:0;
  display:grid;
  gap:1rem;
}
.rules li{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:1rem;
  padding-top:1rem;
  border-top:1px solid var(--line);
}
.rules li:first-child{padding-top:0;border-top:none}
.rules p{
  margin:0;
  font-size:1rem;
  color:var(--text);
}
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(0,98,65,.12);
  color:var(--brand);
  font-weight:600;
  font-size:1rem;
}
.info-grid{
  display:grid;
  gap:2rem;
  margin-top:2.5rem;
}
.info-grid article h2{
  margin:0 0 .75rem;
  font-size:1.2rem;
  font-weight:600;
  color:var(--brand);
}
.info-grid article p{
  margin:.5rem 0 0;
  color:var(--text);
}
.info-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.6rem;
}
.info-list li{
  position:relative;
  padding-left:1.4rem;
  color:var(--text);
}
.info-list li::before{
  content:'';
  position:absolute;
  top:.65rem;
  left:0;
  width:.6rem;
  height:.6rem;
  border-radius:50%;
  background:var(--brand-accent);
  box-shadow:0 0 0 3px rgba(0,98,65,.1);
}
.cta-group{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.25rem;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  padding:.65rem 1.4rem;
  border-radius:999px;
  font-weight:600;
  font-size:1rem;
  background:var(--brand);
  color:#fff;
  border:2px solid var(--brand);
  transition:var(--transition);
}
.button:hover{
  background:#004e33;
  border-color:#004e33;
  text-decoration:none;
}
.button-secondary{
  background:transparent;
  color:var(--brand);
  border-color:rgba(0,98,65,.35);
}
.button-secondary:hover{
  background:rgba(0,98,65,.08);
  border-color:var(--brand);
}
.site-footer{
  border-top:1px solid var(--line);
  padding:2.25rem 0;
  font-size:.95rem;
  color:var(--muted);
  text-align:center;
}
.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;
}
[data-language="nl"] [lang="en"],
[data-language="en"] [lang="nl"]{
  display:none;
}
@media (min-width:640px){
  .rules{
    gap:1.2rem;
  }
}
@media (min-width:780px){
  .info-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:2.5rem;
  }
  .hero-copy{
    padding-bottom:3rem;
  }
}
