/* FamilienQuiz — Design nach CashUPP-Manual (Outfit · Graphit · Smaragd) */

@font-face {
  font-family: "Outfit";
  src: url("/vendor/outfit.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;

  --accent:      #12a06a;
  --accent-2:    #0e8d5e;
  --accent-weak: #e4f4ec;

  --pos:  #12a06a;
  --neg:  #d8484b;
  --warn: #cf8a24;
  --info: #3478c4;

  --bg:        #f4f5f6;
  --surface:   #ffffff;
  --surface-2: #f7f8f9;
  --surface-3: #f0f2f4;
  --text:      #14171b;
  --text-2:    #5a626b;
  --muted:     #868d96;
  --border:    #e6e9ec;
  --track:     #eceef0;

  --radius-sm: 10px;
  --radius:    14px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow:    0 1px 2px rgba(20,23,27,.04), 0 8px 24px -12px rgba(20,23,27,.12);
  --shadow-lg: 0 2px 4px rgba(20,23,27,.05), 0 24px 48px -20px rgba(20,23,27,.22);

  /* Antwortfarben (A/B/C/D) aus der CashUPP-Semantik */
  --a0: #d8484b; --a1: #3478c4; --a2: #cf8a24; --a3: #12a06a;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --accent:      #2cc488;
    --accent-2:    #25b87e;
    --accent-weak: rgba(44,196,136,.14);
    --pos:  #2cc488; --neg: #f2655f; --warn: #e3a83f; --info: #5a9ce6;
    --bg:        #0a0b0d;
    --surface:   #15171b;
    --surface-2: #1b1e23;
    --surface-3: #20242a;
    --text:      #f0f2f4;
    --text-2:    #a3aab2;
    --muted:     #6f767e;
    --border:    rgba(255,255,255,.08);
    --track:     rgba(255,255,255,.08);
    --shadow:    0 1px 2px rgba(0,0,0,.4), 0 10px 30px -14px rgba(0,0,0,.6);
    --shadow-lg: 0 2px 6px rgba(0,0,0,.5), 0 28px 60px -24px rgba(0,0,0,.7);
    --a0: #e0605f; --a1: #5a9ce6; --a2: #e3a83f; --a3: #2cc488;
  }
}
:root[data-theme="dark"] {
  --accent:      #2cc488;
  --accent-2:    #25b87e;
  --accent-weak: rgba(44,196,136,.14);
  --pos:  #2cc488; --neg: #f2655f; --warn: #e3a83f; --info: #5a9ce6;
  --bg:        #0a0b0d;
  --surface:   #15171b;
  --surface-2: #1b1e23;
  --surface-3: #20242a;
  --text:      #f0f2f4;
  --text-2:    #a3aab2;
  --muted:     #6f767e;
  --border:    rgba(255,255,255,.08);
  --track:     rgba(255,255,255,.08);
  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 10px 30px -14px rgba(0,0,0,.6);
  --shadow-lg: 0 2px 6px rgba(0,0,0,.5), 0 28px 60px -24px rgba(0,0,0,.7);
  --a0: #e0605f; --a1: #5a9ce6; --a2: #e3a83f; --a3: #2cc488;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  overscroll-behavior-y: none;
}
.num { font-variant-numeric: tabular-nums; }

/* Grundbausteine */
.btn {
  display: block; width: 100%; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600;
  padding: 15px; border-radius: var(--radius);
  background: var(--accent); color: #fff;
  box-shadow: var(--shadow); transition: transform .08s, background .15s;
}
.btn:active { transform: scale(.985); background: var(--accent-2); }
.btn:disabled { opacity: .45; cursor: default; }
.btn.ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); box-shadow: none; }
.btn.danger { background: var(--neg); }
.btn.small { padding: 9px 14px; font-size: .88rem; width: auto; }

.field {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 13px 15px; outline: none;
}
.field:focus-visible { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-weak); }

.label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

/* Wortmarke + Metall-Kachel */
.wordmark { letter-spacing: -.035em; }
.wordmark b { font-weight: 700; } .wordmark i { font-style: normal; font-weight: 300; }
.metal {
  border-radius: 24%; display: flex; align-items: center; justify-content: center;
  color: #fff; letter-spacing: -.035em; flex-shrink: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.16), transparent 55%),
    conic-gradient(from 0deg at 62% 40%,
      #262b31 0deg, #14171b 45deg, #2b3138 90deg, #14171b 135deg,
      #23282e 180deg, #101318 225deg, #262b31 270deg, #14171b 315deg, #262b31 360deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), inset 0 -2px 4px rgba(0,0,0,.55),
    0 8px 20px -8px rgba(0,0,0,.5);
}
.metal b { font-weight: 700; } .metal i { font-style: normal; font-weight: 300; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
