/* picVoc – Website. Farbrichtung „Textmarker“, Schriften selbst gehostet (keine externen Anbieter). */

@font-face { font-family: "Bricolage Grotesque"; src: url("fonts/bricolage-grotesque.woff2") format("woff2"); font-weight: 500 800; font-display: swap; }
@font-face { font-family: "Figtree"; src: url("fonts/figtree.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Caveat"; src: url("fonts/caveat.woff2") format("woff2"); font-weight: 600 700; font-display: swap; }

:root {
  --yellow: #FFC70A;
  --orange: #FF9F1C;
  --ink: #1B1F3B;
  --paper: #FFFCF2;
  --bg: #FBF7EA;
  --surface: #FFFFFF;
  --text: #1B1F3B;
  --muted: #5A5E75;
  --line: rgba(27, 31, 59, 0.12);
  --tint: #FFF0B8;
  --link: #9A5B00;
  --shadow: 0 20px 50px -30px rgba(27, 31, 59, 0.35);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0F1120;
    --surface: rgba(255, 255, 255, 0.05);
    --text: #F4F4F8;
    --muted: #A3A6BC;
    --line: rgba(255, 255, 255, 0.12);
    --tint: rgba(255, 199, 10, 0.16);
    --link: #FFD84D;
    --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.6 "Figtree", system-ui, sans-serif;
}
a { color: var(--link); text-underline-offset: 3px; }
a:hover { color: var(--text); }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: "Bricolage Grotesque", "Figtree", sans-serif; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.3rem, 7vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

.wrap { width: min(1080px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(760px, 100% - 32px); margin-inline: auto; }

.mark {
  color: var(--ink);
  background: linear-gradient(100deg, transparent 1%, var(--yellow) 3%, #FFB21A 97%, transparent 99%);
  padding: 0 0.12em;
  border-radius: 0.18em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hand { font-family: "Caveat", cursive; font-weight: 700; }

/* Kopfzeile */
.top { padding: 18px 0; }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand svg { width: 40px; height: 40px; }
.wordmark { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.04em; }
.top nav { display: flex; gap: 18px; font-weight: 600; font-size: 0.95rem; }
.top nav a { color: var(--text); text-decoration: none; }
.top nav a:hover { text-decoration: underline; }
@media (max-width: 560px) { .top nav .opt { display: none; } }

/* Hero */
.hero { padding: 32px 0 56px; }
.hero .wrap { display: grid; gap: 40px; align-items: center; }
@media (min-width: 880px) { .hero .wrap { grid-template-columns: 1.1fr 0.9fr; } }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 34em; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.store {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 8px 18px; border-radius: 14px;
  background: var(--ink); color: #FFFFFF; text-decoration: none; font-weight: 600;
  border: 1px solid transparent;
}
@media (prefers-color-scheme: dark) { .store { background: #FFFFFF; color: var(--ink); } }
.store:hover { color: inherit; opacity: 0.9; }
.store svg { width: 24px; height: 24px; }
.store small { display: block; font-size: 0.7rem; font-weight: 500; opacity: 0.8; line-height: 1.1; }
.store span { line-height: 1.15; }
.store[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
.soon { font-size: 0.9rem; color: var(--muted); margin-top: 10px; }

/* Handy-Darstellung im Hero */
.phone {
  justify-self: center;
  width: min(320px, 100%);
  border-radius: 44px; border: 8px solid #0B0B10;
  background: var(--paper); color: var(--ink);
  padding: 36px 18px 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
}
.phone .row { display: flex; justify-content: space-between; align-items: center; }
.chip { padding: 6px 12px; border-radius: 999px; background: #FFF0B8; font-weight: 700; font-size: 0.8rem; }
.kids { display: flex; gap: 8px; }
.kids span { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(27,31,59,0.12); font-weight: 600; font-size: 0.85rem; background: #FFFFFF; }
.kids span.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cta { border-radius: 22px; padding: 18px; background: linear-gradient(135deg, var(--yellow), var(--orange)); display: flex; gap: 14px; align-items: center; }
.cta b { font-family: "Bricolage Grotesque", sans-serif; font-size: 1.05rem; display: block; }
.cta small { font-size: 0.85rem; }
.cta i { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,0.45); display: grid; place-items: center; flex: none; }
.due { border-radius: 18px; background: #FFFFFF; border: 1px solid rgba(27,31,59,0.1); padding: 14px; }
.due .bar { display: flex; gap: 4px; margin-top: 10px; }
.due .bar i { height: 8px; border-radius: 4px; }

/* Abschnitte */
section { padding: 56px 0; }
.eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .grid.three { grid-template-columns: repeat(3, 1fr); } .grid.two { grid-template-columns: repeat(2, 1fr); } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.card .num {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--yellow), var(--orange)); color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; margin-bottom: 14px;
}
.card p:last-child { margin-bottom: 0; }
.card .hand { font-size: 1.6rem; color: #D9480F; display: inline-block; transform: rotate(-3deg); }
@media (prefers-color-scheme: dark) { .card .hand { color: #FF9E6B; } }
.band { background: var(--ink); color: #F4F4F8; border-radius: 32px; padding: 36px 28px; }
.band p { color: #C9CBDA; }
.band a { color: #FFD84D; }
.leitner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 18px; }
.leitner div { border-radius: 12px; padding: 10px 4px; text-align: center; background: rgba(255,255,255,0.07); font-size: 0.8rem; }
.leitner b { display: block; font-size: 1rem; color: #FFD84D; }

details { border-bottom: 1px solid var(--line); padding: 16px 0; }
summary { cursor: pointer; font-weight: 700; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: "Bricolage Grotesque", sans-serif; font-size: 1.4rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: 12px 0 0; color: var(--muted); }

/* Rechtstexte */
.legal { padding: 24px 0 64px; }
.legal h1 { font-size: clamp(2rem, 6vw, 3rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2em; }
.legal h3 { font-size: 1.05rem; margin-top: 1.4em; }
.legal ul, .legal ol { padding-left: 1.2em; }
.legal li { margin-bottom: 0.4em; }
.legal .stand { color: var(--muted); }
.offen { background: #FFE1E1; color: #8A1C1C; padding: 0 4px; border-radius: 4px; font-weight: 600; }
.table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.table th, .table td { text-align: left; vertical-align: top; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.table-wrap { overflow-x: auto; }

/* Einladung */
.invite { padding: 24px 0 64px; text-align: center; }
.code {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 800;
  font-size: clamp(1.8rem, 9vw, 3rem); letter-spacing: 0.08em;
  display: inline-block; margin: 12px 0 8px; word-break: break-all;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
  padding: 0 24px; border-radius: 16px; font-weight: 700; text-decoration: none; border: none;
  background: linear-gradient(135deg, var(--yellow), var(--orange)); color: var(--ink); font-size: 1.05rem;
}
.btn:hover { color: var(--ink); opacity: 0.92; }
.invite .stores { justify-content: center; }
.steps { text-align: left; max-width: 30em; margin: 24px auto 0; }

/* Fußzeile */
footer { padding: 32px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.95rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
footer nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
footer a { color: var(--muted); }
