/* Common styles für neulandpro.com Sub-Pages (Legal, Danke, Newsletter etc.) */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: #050507;
  color: #F2F0EA;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Top Nav ===== */
.np-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 5, 7, 0.85);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.np-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px);
}
.np-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: #F2F0EA; text-decoration: none; font-weight: 700; font-size: 17px;
}
.np-logo img { width: 28px; height: 28px; }
.np-back {
  color: rgba(242, 240, 234, 0.68);
  text-decoration: none;
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.np-back:hover { color: #4DECDC; }

/* ===== Page container ===== */
.np-page {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 96px) clamp(20px, 4vw, 40px) 96px;
}
.np-page-narrow {
  max-width: 720px;
}

/* ===== Header ===== */
.np-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #4DECDC;
  margin-bottom: 20px;
}
.np-h1 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  color: #F2F0EA;
  text-transform: uppercase;
}
.np-h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  color: #4DECDC;
  text-transform: none;
  letter-spacing: -0.02em;
}
.np-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(242, 240, 234, 0.55);
  margin: 0 0 24px;
}
.np-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(242, 240, 234, 0.82);
  margin: 0 0 40px;
}
.np-lede strong { color: #F2F0EA; }

/* ===== Content (Long-form legal text) ===== */
.np-content section {
  margin-bottom: 40px;
  scroll-margin-top: 90px;
}
.np-content h2 {
  font-family: 'Anton', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
  letter-spacing: 0.005em;
  color: #F2F0EA;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.np-content h2 .np-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55em;
  color: rgba(77, 236, 220, 0.7);
  margin-right: 10px;
  font-weight: 700;
  vertical-align: 0.16em;
  letter-spacing: 0.05em;
}
.np-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #F2F0EA;
  margin: 24px 0 10px;
}
.np-content p {
  font-size: 15.5px;
  line-height: 1.68;
  color: rgba(242, 240, 234, 0.82);
  margin: 0 0 14px;
}
.np-content p:last-child { margin-bottom: 0; }
.np-content strong { color: #F2F0EA; font-weight: 600; }
.np-content a {
  color: #4DECDC;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}
.np-content a:hover { color: #F2F0EA; }
.np-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
  color: rgba(242, 240, 234, 0.82);
  font-size: 15.5px;
  line-height: 1.68;
}
.np-content ul li { margin-bottom: 8px; }
.np-content ul li::marker { color: rgba(77, 236, 220, 0.7); }
.np-content code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
  background: rgba(77, 236, 220, 0.14);
  color: #4DECDC;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===== Facts Box ===== */
.np-facts {
  background: rgba(77, 236, 220, 0.04);
  border-left: 3px solid #4DECDC;
  padding: 20px 24px;
  margin: 20px 0;
  border-radius: 4px;
}
.np-facts p {
  margin: 0 0 6px;
  font-size: 14.5px;
}
.np-facts p:last-child { margin: 0; }
.np-facts-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(77, 236, 220, 0.85);
  margin-bottom: 6px;
}

/* ===== TOC ===== */
.np-toc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 0 0 48px;
}
.np-toc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.62);
  margin: 0 0 12px;
}
.np-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
@media (max-width: 640px) { .np-toc ol { grid-template-columns: 1fr; } }
.np-toc li {
  counter-increment: toc;
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.4;
}
.np-toc li::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(77, 236, 220, 0.6);
  top: 3px;
}
.np-toc a {
  color: rgba(242, 240, 234, 0.82);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.np-toc a:hover {
  color: #4DECDC;
  border-bottom-color: rgba(77, 236, 220, 0.5);
}

/* ===== Buttons ===== */
.np-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
  border: 1px solid transparent;
}
.np-btn-primary {
  background: linear-gradient(120deg, #47B6A1, #4DECDC);
  color: #050507 !important;
}
.np-btn-primary:hover { filter: brightness(1.08); transform: translateY(-2px); color: #050507 !important; }
.np-btn-ghost {
  background: transparent;
  color: #F2F0EA;
  border-color: rgba(255, 255, 255, 0.22);
}
.np-btn-ghost:hover { border-color: #F2F0EA; background: rgba(255, 255, 255, 0.04); }

/* ===== Danke-Page Layout ===== */
.np-danke {
  text-align: center;
  padding-top: clamp(80px, 12vw, 140px);
}
.np-danke .np-h1 {
  margin-bottom: 24px;
}
.np-danke .np-lede {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.np-danke-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.np-footer {
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 12.5px;
  color: rgba(242, 240, 234, 0.45);
  background: #030304;
  margin-top: 60px;
}
.np-footer a {
  color: rgba(242, 240, 234, 0.72);
  text-decoration: none;
  margin: 0 10px;
  transition: color .2s ease;
}
.np-footer a:hover { color: #4DECDC; }
.np-footer-copy { margin-top: 16px; }
