:root {
  --ink: #07111c;
  --ink2: #102537;
  --paper: #f5f8fb;
  --card: #ffffff;
  --text: #0e2233;
  --muted: #657889;
  --line: #dfe8ef;
  --line-dark: rgba(255,255,255,.13);
  --accent: #42e0a3;
  --accent2: #5db8ff;
  --accent3: #9b7bff;
  --accent-dark: #067b5c;
  --danger: #ffcc66;
  --shadow: 0 28px 90px rgba(5, 18, 31, .18);
  --shadow-soft: 0 18px 55px rgba(6, 24, 38, .11);
  --radius: 28px;
  --wrap: min(1180px, calc(100% - 36px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: var(--wrap); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,17,28,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #06111c;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  box-shadow: 0 12px 30px rgba(66,224,163,.28);
}
.brand strong { display: block; letter-spacing: -.03em; line-height: 1.05; }
.brand small { display: block; color: rgba(255,255,255,.62); font-size: .78rem; }

.top-nav {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.top-nav a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 800;
}
.top-nav a:hover { color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(66,224,163,.35), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(93,184,255,.30), transparent 34%),
    radial-gradient(circle at 68% 82%, rgba(155,123,255,.25), transparent 28%),
    linear-gradient(135deg, #05101a, #112b42 58%, #06111c);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.09);
  right: -230px;
  top: 90px;
  box-shadow: inset 0 0 80px rgba(255,255,255,.045);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 48px;
  min-height: 780px;
  padding: 78px 0;
  align-items: center;
}
.notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-weight: 900;
  font-size: .87rem;
}
.notice-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(66,224,163,.15);
}
.hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: .88;
  letter-spacing: -.085em;
  max-width: 760px;
}
.hero p {
  max-width: 690px;
  color: rgba(255,255,255,.78);
  font-size: 1.17rem;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
  font-size: .96rem;
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #06111c;
  box-shadow: 0 18px 42px rgba(66,224,163,.24);
}
.btn.ghost {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.20);
}
.btn.light {
  color: #092333;
  background: #fff;
  border-color: var(--line);
}

.label-stack {
  position: relative;
  min-height: 560px;
}
.label-card {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(100%, 520px);
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 34px;
  box-shadow: 0 38px 130px rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.56);
  overflow: hidden;
}
.label-card.back {
  right: 70px;
  bottom: 108px;
  opacity: .48;
  transform: rotate(-7deg) scale(.88);
}
.label-card.mid {
  right: 28px;
  bottom: 54px;
  opacity: .72;
  transform: rotate(4deg) scale(.93);
}
.label-card.front {
  right: 0;
  bottom: 0;
}
.label-card-head {
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #edf9ff);
  border-bottom: 1px solid var(--line);
}
.kicker {
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.label-card h2, .label-card h3 {
  margin: 8px 0 0;
  font-size: 1.85rem;
  letter-spacing: -.05em;
  line-height: 1.03;
}
.label-body { padding: 24px; display: grid; gap: 16px; }
.status-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ddfff1;
  color: #057452;
  font-weight: 950;
}
.notice-text {
  padding: 18px;
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 1.02rem;
}
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.data-pill {
  background: #eef6fb;
  border-radius: 16px;
  padding: 12px;
  color: var(--muted);
  font-size: .88rem;
}
.data-pill strong {
  color: var(--text);
  display: block;
}

.section-pad { padding: 94px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 950;
}
h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  line-height: .96;
  letter-spacing: -.065em;
}
.section-intro {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.grid-3, .grid-2, .article-grid, .related-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2, .article-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }

.card, .feature-card, .article-card, .related-card, .form-card, .output-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.feature-card, .article-card, .related-card, .form-card, .output-card, .card { padding: 28px; }
.feature-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(66,224,163,.18), rgba(93,184,255,.20));
  color: #07573f;
  font-size: 1.4rem;
  font-weight: 950;
}
.feature-card h3, .card h3 {
  margin: 18px 0 8px;
  font-size: 1.28rem;
  letter-spacing: -.035em;
}
.feature-card p, .card p { margin: 0; color: var(--muted); }

.dark-band {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(66,224,163,.22), transparent 26%),
    linear-gradient(135deg, #07111c, #10283b);
}
.dark-band .section-intro, .dark-band .card p { color: rgba(255,255,255,.72); }
.dark-band .eyebrow { color: #8cffd2; }
.dark-band .card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.dark-band .card h3 { color: #fff; }

.generator-section { background: linear-gradient(180deg, #eef7fc, #fff); }
.generator-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 22px;
  margin-top: 36px;
  align-items: start;
}
.form-grid { display: grid; gap: 16px; }
label {
  display: grid;
  gap: 7px;
  font-size: .92rem;
  color: var(--muted);
  font-weight: 850;
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cddae3;
  border-radius: 16px;
  padding: 13px 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.output-label {
  border: 1px solid rgba(66,224,163,.36);
  background: #f0fff9;
  border-radius: 22px;
  padding: 20px;
}
.output-label h3 { margin: 0 0 8px; letter-spacing: -.035em; }
.output-short {
  margin-top: 16px;
  padding: 16px;
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 900;
}
.output-code {
  margin: 16px 0;
  padding: 16px;
  background: #06111c;
  color: #d7fff1;
  border-radius: 18px;
  overflow: auto;
  font-size: .86rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.example-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.example-mini {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.example-mini strong { display: block; letter-spacing: -.02em; }
.example-mini span { display: block; color: var(--muted); margin-top: 6px; font-size: .92rem; }

.article-card, .related-card { text-decoration: none; display: grid; gap: 10px; transition: transform .18s ease, border-color .18s ease; }
.article-card:hover, .related-card:hover { transform: translateY(-2px); border-color: rgba(66,224,163,.58); }
.article-card strong, .related-card strong { font-size: 1.42rem; letter-spacing: -.04em; }
.article-card span, .related-card span:last-child { color: var(--muted); }
.related-kicker { color: var(--accent-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 950; font-size: .78rem; }

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 15%, rgba(66,224,163,.25), transparent 28%),
    linear-gradient(135deg, #06111c, #10283b);
}
.contact-section .section-intro, .contact-section label { color: rgba(255,255,255,.72); }
.contact-card {
  margin-top: 34px;
  border-radius: 32px;
  padding: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 90px rgba(0,0,0,.28);
}
.contact-card input, .contact-card textarea { background: rgba(255,255,255,.97); }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 650;
}
.checkbox-row input { width: auto; margin-top: 5px; }
.checkbox-row a { color: #8cffd2; font-weight: 900; }

.site-footer {
  padding: 40px 0;
  color: rgba(255,255,255,.72);
  background: #040b12;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}
.site-footer strong { color: #fff; }
.site-footer p { max-width: 560px; margin: 8px 0 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; font-weight: 850; }

.legal-page { background: #f8fbfd; }
.legal-hero {
  color: #fff;
  padding: 82px 0;
  background:
    radial-gradient(circle at 25% 10%, rgba(66,224,163,.28), transparent 28%),
    linear-gradient(135deg, #06111c, #132d43);
}
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: .95;
  letter-spacing: -.075em;
}
.legal-hero .lead { color: rgba(255,255,255,.76); max-width: 810px; font-size: 1.12rem; }
.legal-content {
  background: #fff;
  margin-top: -28px;
  margin-bottom: 72px;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
}
.legal-content h2 {
  margin-top: 32px;
  font-size: 1.58rem;
  letter-spacing: -.04em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 24px; letter-spacing: -.03em; }
.legal-content p, .legal-content li { color: #405363; }
.legal-content a { color: #087052; font-weight: 850; }
.legal-content ul { padding-left: 22px; }
.note-box {
  padding: 18px;
  border: 1px solid rgba(66,224,163,.38);
  background: #f0fff9;
  border-radius: 20px;
}

@media (max-width: 980px) {
  .hero-grid, .generator-grid, .grid-3, .grid-2, .article-grid, .related-grid, .example-strip {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: auto; }
  .label-stack { min-height: 460px; }
  .label-card.back, .label-card.mid { display: none; }
}
@media (max-width: 720px) {
  .nav-wrap { align-items: flex-start; padding: 14px 0; }
  .top-nav { gap: 10px; }
  .top-nav a { font-size: .84rem; }
  .section-pad { padding: 72px 0; }
  .footer-grid { display: grid; }
  .site-footer nav { justify-content: flex-start; }
  .data-grid { grid-template-columns: 1fr; }
  .legal-content { padding: 24px; }
}


/* V3 Toolkit Erweiterungen */
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.trust-item {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.76);
}

.trust-item strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.matrix {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.matrix-row {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr .8fr;
  gap: 12px;
  align-items: stretch;
}

.matrix-cell {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(6,24,38,.07);
}

.matrix-head .matrix-cell {
  background: #07111c;
  color: #fff;
  font-weight: 950;
  box-shadow: none;
}

.matrix-cell strong {
  display: block;
  letter-spacing: -.03em;
}

.label-library {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 34px;
}

.label-sample {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.label-type {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 950;
  color: #052115;
  background: linear-gradient(135deg, #d7fff0, #e7f4ff);
}

.label-sample p {
  margin: 0;
  color: var(--muted);
}

.label-sample .copy-chip {
  border: 1px solid var(--line);
  background: #f7fbfd;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.tool-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.tool-tab {
  padding: 9px 13px;
  border-radius: 999px;
  background: #eef7fc;
  border: 1px solid var(--line);
  font-weight: 900;
  color: #17455f;
}

.badge-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.ai-badge-card {
  min-height: 220px;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(66,224,163,.18), transparent 36%),
    #fff;
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.ai-badge {
  width: fit-content;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #06111c;
  color: #fff;
  font-weight: 950;
}

.ai-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(66,224,163,.18);
}

.ai-badge-card h3 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -.04em;
}

.ai-badge-card p {
  margin: 0;
  color: var(--muted);
}

.hero-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.metric-pill {
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.76);
  font-weight: 850;
}

.metric-pill strong {
  color: #fff;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.scenario {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.scenario h3 {
  margin: 0 0 10px;
  letter-spacing: -.04em;
  font-size: 1.35rem;
}

.scenario ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .trust-row,
  .badge-showcase,
  .scenario-grid {
    grid-template-columns: 1fr;
  }

  .matrix-row,
  .label-sample {
    grid-template-columns: 1fr;
  }

  .label-sample .copy-chip {
    width: fit-content;
  }
}
