/* Acrisum Shop — statisch, Pages/Netlify-tauglich */
:root {
  --bg: #0c1014;
  --bg2: #141a22;
  --text: #eef2f6;
  --muted: #8b96a8;
  --line: #2a3444;
  --accent: #c4a35a;
  --accent-dim: rgba(196, 163, 90, 0.14);
  --ok: #6bcf8e;
  --font: "Segoe UI", system-ui, sans-serif;
  --display: "Segoe UI Semibold", "Segoe UI", system-ui, sans-serif;
  --max: 720px;
  --wide: 960px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
#oben { scroll-margin-top: 0; }
.section[id] { scroll-margin-top: 4.5rem; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  /* gleiche linke Kante wie .hero-inner / .wrap */
  padding: 1rem max(1.25rem, calc((100% - var(--wide)) / 2 + 1.25rem));
  border-bottom: 1px solid var(--line);
  background: rgba(12, 16, 20, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  font-size: 1.05rem;
}
.brand:hover { text-decoration: none; color: var(--accent); }
.nav { display: flex; flex-wrap: wrap; gap: 0.85rem; font-size: 0.86rem; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }

.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 163, 90, 0.18), transparent 55%),
    linear-gradient(165deg, #1a2433 0%, var(--bg) 55%, #0a0d11 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 20%, transparent 85%);
  pointer-events: none;
}
/* gleiche Innenbreite + Padding wie .wrap — eine linke Kante */
.hero-inner {
  position: relative;
  max-width: var(--wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 14ch;
  margin-bottom: 0.75rem;
}
.hero .lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 0.85rem;
}
.hero-kern {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  max-width: 36rem;
  display: grid;
  gap: 0.35rem;
}
.hero-kern li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--text);
}
.hero-kern li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 6px;
  font-weight: 650;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: default;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--accent);
  color: #1a1408;
  box-shadow: 0 2px 10px rgba(196, 163, 90, 0.35);
}
.btn-primary:hover {
  filter: brightness(1.06);
  color: #1a1408;
  box-shadow: 0 4px 16px rgba(196, 163, 90, 0.45);
}
.btn-primary:not([aria-disabled="true"]).btn-pulse {
  animation: cta-pulse 2.8s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(196, 163, 90, 0.35); }
  50% { box-shadow: 0 4px 18px rgba(196, 163, 90, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary:not([aria-disabled="true"]).btn-pulse { animation: none; }
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--muted); color: var(--text); }
.btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}
.price-chip {
  font-size: 0.88rem;
  color: var(--muted);
}
.price-chip strong { color: var(--text); font-size: 1.05rem; }

/* Testcode — auf Homepage sichtbar, später entfernen */
.test-code-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-top: 1.1rem;
  max-width: 36rem;
  opacity: 0.88;
}
.test-code-hint {
  font-size: 0.8rem;
  color: var(--muted);
}
.test-code {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.test-code input {
  width: 9.5rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--text);
  font-size: 0.88rem;
}
.test-code input::placeholder {
  color: #6a7588;
}
.test-code input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(196, 163, 90, 0.22);
}
.test-code input.test-code-falsch {
  border-color: #c45c5c;
}
.test-code-go {
  position: relative;
  min-width: 2.6rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
}
.test-code-go:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.test-code-go:disabled {
  cursor: wait;
  opacity: 0.85;
}
.test-code-spinner {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid rgba(196, 163, 90, 0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  vertical-align: -0.1rem;
  animation: spin 0.7s linear infinite;
}
.test-code-spinner[hidden] { display: none; }
@keyframes spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .test-code-spinner { animation: none; border-top-color: var(--accent); }
}

.wrap { max-width: var(--wide); margin: 0 auto; padding: 2.5rem 1.25rem; }
/* Gleicher Abstand zwischen Nutzen / Ausblick / Einblick / FAQ */
.section + .section { margin-top: 2.5rem; }
.section h2 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 0;
}
.benefit {
  padding: 1.1rem 1.15rem;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.benefit h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.benefit p { font-size: 0.9rem; color: var(--muted); }

.einblick-lead {
  font-size: 0.95rem;
  color: var(--muted);
  margin: -0.35rem 0 1rem;
}
.einblick-shot {
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0c1014;
}
.einblick-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.einblick-shot figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.einblick-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: visible;
  background: #0c1014;
  margin-bottom: 0.75rem;
}
.einblick-iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #0c1014;
  overflow: visible;
}
.einblick-more {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.shot {
  border: 1px dashed var(--line);
  border-radius: 8px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--accent-dim);
  margin-bottom: 2.5rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p { margin-top: 0.45rem; color: var(--muted); font-size: 0.92rem; }

.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}
.legal h1 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.legal h2 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
.legal p, .legal li { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.55rem; }
.legal ul { padding-left: 1.2rem; margin-bottom: 0.75rem; }
.legal strong { color: var(--text); }

.footer {
  border-top: 1px solid var(--line);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer a { color: var(--muted); margin: 0 0.4rem; }
.footer a:hover { color: var(--accent); }

/* Cookie-/Datenschutz-Hinweis (Info, kein Tracker-Consent) */
.cookie-hinweis {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem max(1rem, calc((100% - var(--wide)) / 2 + 1rem));
  background: #121820;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}
.cookie-hinweis[hidden] { display: none !important; }
.cookie-hinweis p { flex: 1 1 16rem; margin: 0; max-width: 52rem; }
.cookie-hinweis a { color: var(--accent); }
.cookie-hinweis-ok {
  flex: 0 0 auto;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.95rem;
  border-radius: 6px;
  border: 1px solid var(--accent);
  background: var(--accent-dim);
  color: var(--text);
}
.cookie-hinweis-ok:hover { background: rgba(196, 163, 90, 0.28); }

body.has-cookie-hinweis { padding-bottom: 5.5rem; }

.legal-toc {
  font-size: 0.86rem;
  margin: 0.75rem 0 1.25rem;
  color: var(--muted);
}
.legal-toc a { margin: 0 0.1rem; }

.btn-legal {
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--text);
  margin: 0.35rem 0.5rem 0.35rem 0;
}
.btn-legal:hover { border-color: var(--accent); color: var(--accent); }

.note {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg2);
  font-size: 0.86rem;
  color: var(--muted);
}
.note-preis {
  margin-top: 0.85rem;
  max-width: 36rem;
}
.note-quiet {
  margin-top: 0.65rem;
  max-width: 36rem;
  padding: 0.55rem 0;
  border: none;
  background: transparent;
  font-size: 0.82rem;
}

.ausblick {
  margin-top: 1rem;
  width: 100%;
  padding: 0.95rem 1.05rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 163, 90, 0.35);
  background: var(--accent-dim);
  font-size: 0.88rem;
  color: var(--muted);
}
#ausblick .ausblick {
  margin-top: 0;
}
.ausblick strong { color: var(--text); }
.ausblick ul,
.ausblick-list {
  margin: 0.45rem 0 0.55rem 1.1rem;
  padding: 0;
}
.ausblick li {
  margin: 0.15rem 0;
  transition: transform 0.15s ease, color 0.15s ease;
}
.ausblick li:hover {
  transform: translateX(4px);
  color: var(--text);
}
.ausblick .positiv {
  color: var(--ok);
  margin-bottom: 0.55rem;
}
.ausblick .ideen {
  margin-top: 0.55rem;
  color: var(--text);
  font-size: 0.86rem;
}
