/* ============================================================
   elftipp — SEO-Landingpages (bundesliga-tippspiel, kicktipp-
   alternative, tippspiel-verein-firma)
   Leichtes, statisches Layout im Landing-Look: liest ausschliesslich
   tokens.css-Variablen (CLAUDE.md §4a). Kein JS noetig.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Kopfleiste (vereinfachte Landing-Nav) ── */
.seo-nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,10,11,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.seo-nav-in {
  max-width: 1080px; margin: 0 auto;
  padding: var(--sp-3) var(--sp-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.brand {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--text-1); text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.brand img { display: block; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--touch-min);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: var(--fs-btn); font-weight: 600; text-decoration: none;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-gold:hover { background: var(--gold-strong); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--text-1); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Inhalt ── */
.seo-wrap { max-width: 780px; margin: 0 auto; padding: 0 var(--sp-4); }
.seo-hero { padding: var(--sp-8) 0 var(--sp-7); }
.seo-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700; line-height: 1.08; letter-spacing: -.02em;
  margin: 0 0 var(--sp-4);
}
.seo-hero h1 .dot { color: var(--gold); font-style: normal; }
.seo-lede { font-size: 18px; color: var(--text-2); max-width: 60ch; margin: 0 0 var(--sp-5); }
.seo-cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

section { padding: var(--sp-7) 0; border-top: 1px solid var(--line); }
h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h2); font-weight: 700; letter-spacing: -.01em;
  margin: 0 0 var(--sp-4);
}
h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; margin: var(--sp-5) 0 var(--sp-2); }
p { margin: 0 0 var(--sp-4); color: var(--text-2); max-width: 65ch; }
p strong, li strong { color: var(--text-1); }
ul { margin: 0 0 var(--sp-4); padding-left: 1.2em; color: var(--text-2); }
li { margin-bottom: var(--sp-2); }
a { color: var(--gold); }
a:hover { color: var(--gold-strong); }

/* Schritt-Liste (nummeriert, Goldkante als Signatur) */
.steps { list-style: none; padding: 0; margin: 0 0 var(--sp-4); counter-reset: step; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-7);
  margin-bottom: var(--sp-3);
  background: var(--bg-1);
  border-radius: var(--r-card);
  border-left: var(--edge-gold);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: var(--sp-4); top: var(--sp-4);
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.steps li b { display: block; color: var(--text-1); font-size: var(--fs-h3); font-family: var(--font-display); margin-bottom: 2px; }

/* Vergleich (kicktipp-alternative) */
.cmp { width: 100%; border-collapse: collapse; margin: 0 0 var(--sp-4); font-size: var(--fs-small); }
.cmp caption { text-align: left; color: var(--text-3); font-size: var(--fs-caption); padding-bottom: var(--sp-2); }
.cmp th, .cmp td { text-align: left; padding: var(--sp-3) var(--sp-3); vertical-align: top; }
.cmp thead th { color: var(--text-3); font-weight: 500; border-bottom: 1px solid var(--line-strong); }
.cmp tbody tr { border-bottom: 1px solid var(--line); }
.cmp tbody th { color: var(--text-1); font-weight: 500; }
.cmp td { color: var(--text-2); }
.cmp .yes { color: var(--up); }
.cmp-scroll { overflow-x: auto; }

/* Zielgruppen-Kacheln */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin: 0 0 var(--sp-4); }
.tile { background: var(--bg-1); border-radius: var(--r-card); padding: var(--sp-4); }
.tile b { display: block; font-family: var(--font-display); font-size: var(--fs-h3); color: var(--text-1); margin-bottom: var(--sp-1); }
.tile p { font-size: var(--fs-small); margin: 0; }
@media (max-width: 640px) { .tiles { grid-template-columns: 1fr; } }

/* FAQ als native Accordions */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: var(--sp-4) 0;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3);
  color: var(--text-1);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding-bottom: var(--sp-4); }

/* Abschluss-CTA */
.seo-final {
  text-align: center;
  padding: var(--sp-8) 0;
}
.seo-final h2 { font-size: clamp(26px, 4.5vw, 36px); }
.seo-final p { margin-left: auto; margin-right: auto; }

/* Fusszeile */
.seo-foot { border-top: 1px solid var(--line); padding: var(--sp-6) 0; }
.seo-foot-in {
  max-width: 1080px; margin: 0 auto; padding: 0 var(--sp-4);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
  font-size: var(--fs-caption); color: var(--text-3);
}
.seo-foot a { color: var(--text-3); text-decoration: none; margin-right: var(--sp-4); }
.seo-foot a:hover { color: var(--text-1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
