/* Selbst gehostete Fonts — keine externen Requests (DSGVO-konform) */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dmsans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/dmsans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dmserif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dmserif-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --green:    #1D9E75;
  --green-dk: #0F6E56;
  --green-lt: #E1F5EE;
  --black:    #111111;
  --anthraz:  #1E1E1E;
  --stone:    #5A5A5A;
  --silver:   #AAAAAA;
  --offwhite: #F5F4F0;
  --bg:       #0d1210;
  --surface:  #151d19;
  --border:   rgba(255,255,255,0.07);
  --text:     #F5F4F0;
  --muted:    #8aaa9e;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "DM Sans", -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── Nav ── */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
  background: rgba(13,18,16,0.88);
  backdrop-filter: blur(14px);
}
.nav-logo { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; height: 22px; }
.nav-logo-name { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
.nav-studio { font-size: 0.72rem; color: var(--muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-left: 0.2rem; }
.lang-btns { display: flex; gap: 0.4rem; }
.lang-btns button {
  background: none; border: 1px solid var(--border);
  color: var(--muted); border-radius: 6px;
  padding: 0.25rem 0.65rem; cursor: pointer; font-size: 0.8rem; font-family: inherit;
}
.lang-btns button.active { border-color: var(--green); color: var(--green); }

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 5.5rem 1.5rem 5rem;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(29,158,117,0.20) 0%, transparent 65%);
}
.hero-icon {
  width: 108px; height: 108px; border-radius: 24px;
  background: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 20px 60px rgba(29,158,117,0.35);
}
.hero-icon svg { width: 68px; height: 68px; }
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 0.8rem;
}
h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--offwhite);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted); max-width: 500px;
  margin: 0 auto 2.5rem; font-weight: 300;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.45rem 1.1rem;
  font-size: 0.82rem; color: var(--muted);
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ── Features ── */
.features {
  max-width: 960px; margin: 0 auto; padding: 5rem 1.5rem;
}
.section-eyebrow {
  text-align: center; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.7rem;
}
.section-title {
  font-family: "DM Serif Display", Georgia, serif;
  text-align: center; font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2; color: var(--offwhite);
  margin-bottom: 0.7rem;
}
.section-sub {
  text-align: center; color: var(--muted);
  max-width: 460px; margin: 0 auto 3rem;
  font-size: 0.95rem; font-weight: 300;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 1.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(29,158,117,0.35); transform: translateY(-2px); }
.card-icon { font-size: 1.6rem; margin-bottom: 0.85rem; }
.card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.card p { font-size: 0.875rem; color: var(--muted); font-weight: 300; }

/* ── Privacy strip ── */
.privacy-strip {
  background: linear-gradient(135deg, rgba(29,158,117,0.10), rgba(15,110,86,0.10));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem; text-align: center;
}
.privacy-strip h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.6rem; color: var(--offwhite); margin-bottom: 0.6rem;
}
.privacy-strip p { color: var(--muted); max-width: 500px; margin: 0 auto; font-weight: 300; }
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.4rem; }
.pill {
  background: rgba(29,158,117,0.12);
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: 50px; padding: 0.3rem 0.9rem;
  font-size: 0.8rem; color: #6dd4b0;
}

/* ── Footer ── */
footer {
  text-align: center; padding: 2.5rem 1.5rem;
  font-size: 0.8rem; color: var(--muted);
  border-top: 1px solid var(--border);
}
footer a { color: var(--green); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Language switching */
.text-de, .text-en { display: none !important; }
body.lang-de .text-de { display: revert !important; }
body.lang-en .text-en { display: revert !important; }
