:root {
  --gold: #c9a24b;
  --bg: #0a0a0a;
  --surface: #151513;
  --surface-2: #1f1e1a;
  --text: #f2ede1;
  --text-dim: #a39d8c;
  --err: #d9534f;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #161513 0%, var(--bg) 60%);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  display: flex;
  justify-content: center;
  padding: clamp(24px, 6vw, 64px) 20px;
}

main {
  width: 100%;
  max-width: 560px;
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
}

header .kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
}

header h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0.4rem 0 0;
  font-weight: 700;
}

.card {
  background: linear-gradient(155deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid #2a2820;
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.6);
}

.card h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dropzone {
  border: 1.5px dashed #443f30;
  border-radius: var(--radius);
  padding: 2.2rem 1rem;
  text-align: center;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color 0.2s;
}
.dropzone:hover, .dropzone.drag { border-color: var(--gold); color: var(--text); }
.dropzone input { display: none; }

select, button {
  font: inherit;
  border-radius: 8px;
  border: 1px solid #443f30;
  background: #100f0c;
  color: var(--text);
  padding: 0.65rem 0.9rem;
}

select { width: 100%; margin-bottom: 0.9rem; }

button.primary {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #a9822f);
  color: #14120c;
  font-weight: 700;
  border: none;
  cursor: pointer;
  padding: 0.85rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s, filter 0.15s;
}
button.primary:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-1px); }
button.primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.befund { color: var(--text-dim); font-size: 0.92rem; line-height: 1.55; white-space: pre-line; }

audio { width: 100%; margin-top: 0.75rem; }

.status { font-size: 0.85rem; color: var(--text-dim); margin-top: 0.6rem; min-height: 1.2em; }
.status.error { color: var(--err); }

.preis { color: var(--gold); font-size: 1.4rem; font-weight: 700; text-align: center; margin: 0.4rem 0 1rem; }
.preis-hinweis { color: var(--text-dim); font-size: 0.75rem; text-align: center; margin: -0.6rem 0 1rem; }

.widerruf-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  cursor: pointer;
}
.widerruf-check input { margin-top: 0.2rem; flex-shrink: 0; }

.datenschutz-hinweis { color: var(--text-dim); font-size: 0.78rem; line-height: 1.5; }
.datenschutz-hinweis a { color: var(--gold); }

.hidden { display: none !important; }

footer { text-align: center; color: var(--text-dim); font-size: 0.75rem; margin-top: 2rem; }
footer a { color: var(--gold); }
