/* Senner MusicPro — Fake-Door D2C Landing. Anthropic-clean: warmes Off-White, eine Akzentfarbe. */

:root {
  color-scheme: light;
  --color-bg: #faf7f2;
  --color-surface: #ffffff;
  --color-surface-raised: #f2ede4;
  --color-border: #e4ddd0;
  --color-text: #221f1a;
  --color-text-muted: #6b6459;
  --color-accent: #1f5f5b;
  --color-accent-dark: #163f3c;
  --color-accent-contrast: #ffffff;
  --color-ok: #1a7f37;
  --color-warn: #9a6700;

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 96px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-sm: 0.875rem;  --text-base: 1rem;   --text-lg: 1.25rem;
  --text-xl: 1.6rem;    --text-2xl: 2.1rem;  --text-3xl: 2.9rem; --text-4xl: 3.6rem;

  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
  --shadow-1: 0 1px 3px rgb(30 25 15 / .08);
  --shadow-2: 0 8px 28px rgb(30 25 15 / .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 var(--space-4);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); }

p { margin: 0 0 var(--space-4); color: var(--color-text); max-width: 65ch; }
.muted { color: var(--color-text-muted); }

a { color: var(--color-accent); }

img, svg { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-7) 0; }
.section--alt { background: var(--color-surface); }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-accent-dark);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: var(--space-5);
  font-size: var(--text-sm);
}
.nav-links a { color: var(--color-text); text-decoration: none; }
.nav-links a:hover { color: var(--color-accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-base);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s ease-out, box-shadow .2s ease-out;
  min-height: 48px;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-contrast);
  box-shadow: var(--shadow-1);
}
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-2); }
.btn-secondary {
  background: transparent;
  color: var(--color-accent-dark);
  border: 1.5px solid var(--color-border);
}
.btn-secondary:hover { border-color: var(--color-accent); }
.btn-block { width: 100%; }

@media (prefers-reduced-motion: no-preference) {
  .btn:active { transform: translateY(1px); }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-8) 0 var(--space-9);
}
.hero-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-dark);
  background: var(--color-surface-raised);
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
.hero h1 { margin-bottom: var(--space-5); }
.hero-sub { font-size: var(--text-lg); color: var(--color-text-muted); margin-bottom: var(--space-6); }
.hero-cta-row { display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center; }
.hero-price-note { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-3); }
.hero-social-proof { font-size: var(--text-sm); color: var(--color-accent-dark); font-weight: 600; margin-top: var(--space-2); }
.hero-social-proof .proof-date { font-weight: 400; color: var(--color-text-muted); }

/* Product illustration (CSS-only, no external images) */
.product-art {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--color-surface-raised), var(--color-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
.product-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgb(31 95 91 / .10), transparent 60%);
}
.earplug-icon {
  width: 46%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgb(22 63 60 / .25));
}

/* Cards / grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.card h3 { margin-bottom: var(--space-2); }
.card p { margin-bottom: 0; }
.card-icon { font-size: 1.8rem; margin-bottom: var(--space-3); }

/* Problem/Solution */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.ps-card { padding: var(--space-6); border-radius: var(--radius-md); }
.ps-problem { background: #fbf1ec; border: 1px solid #edd9c9; }
.ps-solution { background: #eef5f0; border: 1px solid #cfe3d4; }
.ps-card h3 { display: flex; align-items: center; gap: var(--space-2); }

/* Social proof */
.proof-strip {
  display: flex;
  gap: var(--space-7);
  flex-wrap: wrap;
  align-items: baseline;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.proof-stat { }
.proof-stat .num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent-dark);
  display: block;
}
.proof-stat .label { font-size: var(--text-sm); color: var(--color-text-muted); }

/* Pricing */
.price-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
}
.price-tag { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; color: var(--color-accent-dark); }
.price-old { text-decoration: line-through; color: var(--color-text-muted); font-size: var(--text-lg); margin-right: var(--space-2); }
.price-features { list-style: none; padding: 0; margin: var(--space-5) 0; text-align: left; }
.price-features li { padding: var(--space-2) 0; display: flex; gap: var(--space-2); }
.price-features li::before { content: "✓"; color: var(--color-ok); font-weight: 700; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-5) 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-lg);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform .2s ease-out;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: var(--space-3); color: var(--color-text-muted); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-7) 0;
  background: var(--color-surface-raised);
}
.footer-links {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-size: var(--text-sm);
}
.footer-links a { color: var(--color-text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--color-accent); }
.footer-meta { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-4); }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgb(20 18 14 / .55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  z-index: 50;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-2);
  position: relative;
}
.modal-close {
  position: absolute;
  top: var(--space-4); right: var(--space-4);
  background: none; border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
}
.modal-box h3 { margin-bottom: var(--space-2); }
.modal-box .muted { margin-bottom: var(--space-5); }
.form-field { margin-bottom: var(--space-4); }
.form-field label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-2); }
.form-field input[type="email"] {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: var(--font-body);
}
.form-field input[type="email"]:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: var(--text-sm); margin-top: var(--space-3); min-height: 1.2em; }
.form-status.error { color: #cf222e; }
.form-status.ok { color: var(--color-ok); }

/* Legal pages */
.legal-content h2 { margin-top: var(--space-7); }
.legal-content { max-width: 720px; }

/* Danke page */
.thanks-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-9) 0;
}
.thanks-icon { font-size: 3rem; margin-bottom: var(--space-5); }
.badge-discount {
  display: inline-block;
  background: var(--color-surface-raised);
  border: 1px dashed var(--color-accent);
  color: var(--color-accent-dark);
  font-weight: 700;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  margin: var(--space-5) 0;
}

/* Mobile */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: var(--space-6); }
  .hero-art { order: -1; max-width: 280px; margin: 0 auto var(--space-6); }
  h1 { font-size: var(--text-3xl); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .problem-solution { grid-template-columns: 1fr; }
  .proof-strip { gap: var(--space-5); justify-content: space-between; }
  .nav-links { display: none; }
  .section { padding: var(--space-7) 0; }
}
