/* ---- Local Fonts ---- */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 300 700; /* Stufenlose Stärke von 300 bis 700 */
  font-display: swap;
  src: url('fonts/space-grotesk-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800; /* Stufenlose Stärke von 200 bis 800 */
  font-display: swap;
  src: url('fonts/manrope-variable.woff2') format('woff2');
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Manrope', system-ui, sans-serif; background: #fff; color: #161A18; -webkit-font-smoothing: antialiased; }
::selection { background: var(--accent); color: var(--on-accent); }
a { text-decoration: none; }

/* ---- Accent color CSS variables (set by JS on load) ---- */
:root {
  --accent: #fcf0df;
  --accent-ink: #8a5a1a;
  --accent-soft: #fdf8f0;
  --accent-border: #f0dfc0;
  --on-accent: #2e1d06;
  --dark: #1c1509;
  --accent-shadow: rgba(252,240,223,0.45);
  --accent-glow: rgba(252,240,223,0.20);
}

@keyframes mdFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---- Nav ---- */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid #ECEFED;
}
nav {
  max-width: 1140px; margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px; color: #161A18;
}
.nav-logo-img {
  width: 100%; max-width: 60px; aspect-ratio: 1 / 1; border-radius: 50%;
  object-fit: cover; flex: none;
}
.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 19px; letter-spacing: -0.02em;
}
.nav-logo-dot { color: var(--accent-ink); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: #46514B; font-size: 15px; font-weight: 500;
}
.nav-links a:hover { color: var(--accent-ink); }
.nav-right { display: flex; align-items: center; gap: 30px; }
.lang-switch {
  display: flex; align-items: center; padding: 3px; gap: 2px;
  background: #F2F5F3; border-radius: 9px; border: 1px solid #E6EAE7;
}
.lang-btn {
  border: none; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 600; padding: 6px 12px;
  border-radius: 7px; background: transparent; color: #8A958E;
  transition: background .15s, color .15s, box-shadow .15s;
}
.lang-btn.active {
  background: #fff; color: #161A18; font-weight: 700;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.nav-cta {
  background: var(--accent); color: var(--on-accent);
  font-weight: 600; font-size: 14.5px; padding: 11px 18px;
  border-radius: 10px; white-space: nowrap;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .88; }

/* ---- Construction Banner ---- */
.construction-banner {
  background: #E9B23B; color: #1c1509; text-align: center;
  padding: 10px 20px; font-weight: 600; font-size: 14.5px;
}

/* ---- Hero ---- */
.hero { background: #F7F9F8; border-bottom: 1px solid #ECEFED; }
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 84px 28px 92px;
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--accent-ink); background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 7px 13px; border-radius: 999px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-ink); flex: none;
}
h1 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(40px, 5vw, 60px); line-height: 1.04;
  letter-spacing: -0.035em; margin: 22px 0 0; text-wrap: balance;
}
.hero-sub {
  font-size: 18.5px; line-height: 1.6; color: #4A554F;
  margin: 22px 0 0; max-width: 35ch; text-wrap: pretty;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn-primary {
  background: var(--accent); color: var(--on-accent);
  font-weight: 600; font-size: 16px; padding: 15px 26px;
  border-radius: 12px; box-shadow: 0 12px 26px -10px var(--accent-shadow);
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .88; }
.btn-secondary {
  background: #fff; color: #1B241F; font-weight: 600;
  font-size: 16px; padding: 15px 26px; border-radius: 12px;
  border: 1px solid #DCE2DE; transition: border-color .15s;
}
.btn-secondary:hover { border-color: #bcc3be; }
.btn-secondary-arrow { color: #93A099; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: #5A655E; font-weight: 500;
}
.chip-check { color: var(--accent-ink); font-weight: 700; }

/* ---- Mock ---- */
.mock-wrap { position: relative; }
.mock-glow {
  position: absolute; inset: -18px -18px auto auto;
  width: 120px; height: 120px;
  background: radial-gradient(circle at 70% 30%, var(--accent-glow), transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.mock-card {
  position: relative; background: #fff;
  border: 1px solid #E6EAE7; border-radius: 18px;
  box-shadow: 0 30px 60px -28px rgba(20,40,30,0.28);
  overflow: hidden; animation: mdFloat 7s ease-in-out infinite;
}
.mock-titlebar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; border-bottom: 1px solid #EEF1EF; background: #FAFBFA;
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.mock-url {
  margin-left: 12px; font-size: 12px; color: #98A39C;
  font-family: 'Space Grotesk', sans-serif;
}
.mock-body { padding: 26px; }
.mock-header { display: flex; align-items: center; gap: 9px; }
.mock-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--on-accent); font-size: 12px; font-weight: 700; flex: none;
}
.mock-title-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px;
}
.mock-intro { margin: 12px 0 0; font-size: 13px; line-height: 1.5; color: #7A857E; }
.mock-field { margin-top: 18px; }
.mock-field + .mock-field { margin-top: 13px; }
.mock-label { font-size: 12.5px; color: #7A857E; font-weight: 600; display: block; }
.mock-input {
  margin-top: 7px; height: 40px; background: #fff;
  border: 1px solid #E2E7E3; border-radius: 12px;
}
.mock-input.focused {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  display: flex; align-items: center; padding: 0 14px;
}
.mock-cursor { width: 1px; height: 18px; background: var(--accent-ink); }
.mock-helper { margin-top: 7px; font-size: 12px; color: #98A39C; }
.mock-submit {
  margin-top: 18px; background: var(--accent); color: var(--on-accent);
  text-align: center; font-weight: 600; font-size: 15px;
  padding: 13px; border-radius: 12px;
}

/* ---- Section header ---- */
.section-kicker {
  font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink);
}
h2 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(32px, 4vw, 44px); letter-spacing: -0.03em; margin: 14px 0 0;
}
.section-sub {
  font-size: 17.5px; line-height: 1.6; color: #4A554F;
  margin: 16px 0 0; text-wrap: pretty;
}

/* ---- Plugins section ---- */
.plugins-section { max-width: 1140px; margin: 0 auto; padding: 96px 28px; scroll-margin-top: 78px; }
.plugins-header { text-align: center; max-width: 640px; margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px; margin-top: 54px;
}
.feature-card {
  background: #fff; border: 1px solid #E9ECEA; border-radius: 16px;
  padding: 28px 26px; transition: border-color .2s;
}
.feature-card:hover { border-color: var(--accent-border); }
.feature-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--accent-soft); color: var(--accent-ink);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px;
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 18.5px; margin: 18px 0 0; letter-spacing: -0.01em;
}
.feature-card p { font-size: 14.5px; line-height: 1.55; color: #5A655E; margin: 9px 0 0; }
.plugin-banner {
  margin-top: 22px; display: grid;
  grid-template-columns: 1fr auto; gap: 28px;
  align-items: center; background: var(--dark);
  border-radius: 18px; padding: 34px 38px;
}
.plugin-banner-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.plugin-banner-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.08); color: var(--accent);
  font-size: 22px; font-weight: 700; flex: none;
}
.plugin-banner-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 21px; color: #fff;
}
.plugin-banner-tag { font-size: 14px; color: #B6A6B0; margin-top: 3px; }
.btn-banner {
  background: var(--accent); color: var(--on-accent);
  font-weight: 600; font-size: 15.5px; padding: 14px 24px;
  border-radius: 11px; white-space: nowrap;
  transition: opacity .15s;
}
.btn-banner:hover { opacity: .88; }

.upcoming-box {
  background: var(--accent-soft); border: 1px dashed var(--accent-border);
  border-radius: 14px; padding: 20px 28px;
  text-align: center; max-width: 640px; margin: 0 auto;
  color: var(--accent-ink); font-size: 14.5px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

/* ---- About section ---- */
.about-section {
  background: #F7F9F8; border-top: 1px solid #ECEFED;
  border-bottom: 1px solid #ECEFED; scroll-margin-top: 78px;
}
.about-inner {
  max-width: 1140px; margin: 0 auto; padding: 92px 28px;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 64px; align-items: start;
}
.about-h2 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(30px, 3.6vw, 42px); letter-spacing: -0.03em;
  margin: 14px 0 0; line-height: 1.1;
}
.about-avatar-row { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.about-avatar-img {
  width: 100%; max-width: 56px; aspect-ratio: 1 / 1; border-radius: 50%;
  object-fit: cover; flex: none;
}
.about-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; }
.about-role { font-size: 13.5px; color: #6B766F; }
.about-p1 { font-size: 18px; line-height: 1.65; color: #2F3A34; margin: 0; text-wrap: pretty; }
.about-p2 { font-size: 16.5px; line-height: 1.65; color: #4A554F; margin: 18px 0 0; text-wrap: pretty; }
.values-list { margin-top: 30px; display: grid; gap: 14px; }
.value-card {
  display: flex; gap: 15px; align-items: flex-start;
  background: #fff; border: 1px solid #E9ECEA;
  border-radius: 13px; padding: 18px 20px;
}
.value-check {
  flex: none; margin-top: 1px; width: 24px; height: 24px;
  border-radius: 7px; background: var(--accent-soft); color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.value-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; }
.value-desc { font-size: 14.5px; line-height: 1.5; color: #5A655E; margin-top: 4px; }

/* ---- Support section ---- */
.support-section { max-width: 1140px; margin: 0 auto; padding: 96px 28px; scroll-margin-top: 78px; }
.support-card {
  background: var(--dark); border-radius: 22px; padding: 64px 56px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
}
.support-kicker {
  font-family: 'Space Grotesk', sans-serif; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.support-h2 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: clamp(30px, 3.6vw, 42px); letter-spacing: -0.03em;
  margin: 14px 0 0; line-height: 1.1; color: #fff; text-wrap: balance;
}
.support-sub { font-size: 17px; line-height: 1.6; color: #B6A6B0; margin: 18px 0 0; max-width: 42ch; text-wrap: pretty; }
.contact-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 30px;
}
.contact-label { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #A99AA4; font-weight: 600; }
.contact-email {
  display: block; margin-top: 6px;
  font-family: 'Space Grotesk', sans-serif; font-size: 20px;
  font-weight: 600; color: #fff;
}
.contact-email:hover { color: var(--accent); }
.contact-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 22px 0; }
.contact-meta { display: flex; align-items: center; justify-content: space-between; }
.online-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: #4FB477; box-shadow: 0 0 0 4px rgba(79,180,119,0.18); flex: none;
}
.btn-contact {
  display: block; text-align: center; margin-top: 26px;
  background: var(--accent); color: var(--on-accent);
  font-weight: 600; font-size: 15.5px; padding: 14px;
  border-radius: 11px; transition: opacity .15s;
}
.btn-contact:hover { opacity: .88; }

/* ---- Footer ---- */
footer { border-top: 1px solid #ECEFED; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 38px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 11px; }
.footer-logo-img {
  width: 100%; max-width: 28px; aspect-ratio: 1 / 1; border-radius: 50%;
  object-fit: cover; flex: none;
}
.footer-tagline { font-size: 14.5px; color: #46514B; }
.footer-links { display: flex; align-items: center; gap: 24px; }
.footer-links a { font-size: 13.5px; color: #6B766F; }
.footer-links a:hover { color: #161A18; }
.footer-copy { font-size: 13px; color: #A2ADA6; }