:root{
  --bg:#09090B; --surface:#131316; --surface-2:#18181B; --border:#27272A;
  --line:#3F3F46; --fg:#FAFAFA; --muted:#A1A1AA; --faint:#71717A; --green:#4ADE80;
  --radius:12px; --maxw:1100px;
}
*{box-sizing:border-box;margin:0;padding:0}
@font-face{font-family:'Geist';src:url('/fonts/Geist.ttf') format('truetype');font-weight:100 900;font-display:swap}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--fg);line-height:1.6;-webkit-font-smoothing:antialiased;
  font-family:'Geist','Helvetica Neue',-apple-system,system-ui,sans-serif}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}

/* nav */
header{position:sticky;top:0;z-index:10;background:rgba(9,9,11,.72);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;font-weight:600;letter-spacing:-.02em;font-size:18px}
.brand svg{width:26px;height:26px;display:block}
.nav-right{display:flex;align-items:center;gap:18px}
.navlink{color:var(--muted);font-size:14px;transition:color .15s ease}
.navlink:hover{color:var(--fg)}
.lang{color:var(--faint);font-size:12.5px;border:1px solid var(--border);border-radius:8px;padding:5px 9px;transition:color .15s ease,border-color .15s ease}
.lang:hover{color:var(--fg);border-color:var(--line)}

/* hero */
.hero{padding:88px 0 64px}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center}
@media(max-width:760px){.hero-grid{grid-template-columns:1fr;gap:36px}}
.hero h1{font-size:clamp(36px,6vw,58px);line-height:1.05;letter-spacing:-.035em;font-weight:600}
.hero .lede{color:var(--muted);font-size:18px;max-width:48ch;margin:18px 0 28px}
.cta{display:inline-flex;align-items:center;gap:8px;background:var(--green);color:#0B0B0B;
  font-weight:600;font-size:15px;padding:12px 20px;border-radius:10px;
  transition:transform .15s ease,background .15s ease}
.cta:hover{background:#5eea90}
.cta:active{transform:scale(.98)}
.hero-art{display:flex;justify-content:center}
.hero-art svg{width:min(260px,72%);height:auto}
.hero-note{color:var(--faint);font-size:13px;margin-top:14px;max-width:44ch}
.hero-note a{color:var(--muted);text-decoration:underline;text-underline-offset:2px}
.hero-note a:hover{color:var(--fg)}

/* sections */
section{padding:60px 0}
.section-title{font-size:clamp(26px,4vw,34px);letter-spacing:-.03em;font-weight:600;margin-bottom:10px}
.section-sub{color:var(--muted);max-width:58ch;margin-bottom:36px;font-size:17px}

/* features as hairline rows, not cards */
.feature{display:grid;grid-template-columns:280px 1fr;gap:32px;padding:26px 0;border-top:1px solid var(--border)}
.feature:last-child{border-bottom:1px solid var(--border)}
@media(max-width:680px){.feature{grid-template-columns:1fr;gap:8px}}
.feature h3{font-size:20px;letter-spacing:-.02em;font-weight:600}
.feature p{color:var(--muted);max-width:62ch}
.feature p a{color:var(--fg);text-decoration:underline;text-underline-offset:3px;
  text-decoration-color:var(--line);transition:text-decoration-color .15s ease}
.feature p a:hover{text-decoration-color:var(--green)}

/* alternative band */
.band{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.band h2{font-size:clamp(24px,3.4vw,30px);letter-spacing:-.02em;font-weight:600;margin-bottom:12px}
.band p{color:var(--muted);max-width:68ch;font-size:17px}

/* faq accordion */
.faq h2{font-size:clamp(24px,3.4vw,30px);letter-spacing:-.02em;font-weight:600;margin-bottom:24px}
.faq details{border-top:1px solid var(--border)}
.faq details:last-of-type{border-bottom:1px solid var(--border)}
.faq summary{cursor:pointer;list-style:none;padding:20px 0;font-size:17px;font-weight:600;
  display:flex;justify-content:space-between;align-items:center;gap:16px;letter-spacing:-.01em}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'+';color:var(--green);font-size:22px;line-height:1;font-weight:400}
.faq details[open] summary::after{content:'\2212'}
.faq details p{color:var(--muted);padding:0 0 22px;max-width:66ch}

/* closing */
.closing .big{font-size:clamp(24px,3.6vw,34px);letter-spacing:-.02em;font-weight:500;
  max-width:28ch;color:var(--fg);margin-bottom:28px}

/* footer */
footer{border-top:1px solid var(--border);padding:36px 0;color:var(--faint);font-size:14px}
.foot{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.foot .brand{font-size:15px}
.foot .links{display:flex;gap:22px;flex-wrap:wrap}
.foot a{color:var(--muted);transition:color .15s ease}
.foot a:hover{color:var(--fg)}

/* reveal */
.reveal{opacity:0;transform:translateY(14px);
  transition:opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}}

/* doc (privacy / impressum) */
.doc{max-width:760px;margin:0 auto;padding:64px 24px 80px}
.doc h1{font-size:34px;letter-spacing:-.03em;margin-bottom:6px}
.doc .sub{color:var(--muted);font-size:14px;margin-bottom:36px}
.doc h2{font-size:18px;letter-spacing:-.02em;margin:36px 0 10px}
.doc p,.doc li{color:#E4E4E7;font-size:15px}
.doc ul,.doc ol{padding-left:20px}
.doc li+li{margin-top:8px}
.doc h3{font-size:15.5px;letter-spacing:-.01em;margin:26px 0 6px}
.doc a{color:var(--green)}
.doc address{font-style:normal;color:#E4E4E7;line-height:1.8}
.doc .note{color:var(--muted);font-size:13px}
.doc hr{border:0;border-top:1px solid var(--border);margin:36px 0}

/* ---------- responsive / overflow safety ---------- */
html,body{overflow-x:hidden}
img,svg{max-width:100%}
.hero-art svg{height:auto}
/* grid tracks must be allowed to shrink below their content (1fr = minmax(auto,1fr)
   otherwise), and long words (Bundeslebensmittelschluessel) must break */
.hero-grid>*,.feature>*{min-width:0}
h1,h2,h3,p,summary,address,.lede,.section-sub{overflow-wrap:break-word}

@media(max-width:760px){
  .wrap{padding:0 20px}
  .hero{padding:56px 0 44px}
  section{padding:48px 0}
}
@media(max-width:480px){
  .wrap{padding:0 18px}
  .hero h1{font-size:31px;line-height:1.1}
  .hero .lede{font-size:16px}
  .feature{gap:6px}
}
