/* ORIA KI-Vereinspaket — Produkt-Landingpage
   Dark + Gold, mobile-first, keine externen Ressourcen, kein Tracking. */

:root {
  --bg: #0a0a0a;
  --bg-2: #101010;
  --bg-3: #161616;
  --gold: #d4af37;
  --gold-hi: #e6c75a;
  --gold-dim: rgba(212, 175, 55, 0.14);
  --text: #f2f0ea;
  --muted: #9a978e;
  --rand: rgba(255, 255, 255, 0.1);
  --gruen: #2e9e5b;
  --rot: #c95b5b;
  --radius: 16px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92%); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rand);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; }
.brand svg { width: 34px; height: 34px; }
.brand .brand-sub { display: block; font-size: 0.64rem; font-weight: 600; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; }
.nav-toggle {
  background: none; border: 1px solid var(--rand); border-radius: 10px; color: var(--text);
  width: 44px; height: 44px; font-size: 1.3rem; cursor: pointer; display: grid; place-items: center;
}
.nav-links { display: none; position: absolute; inset: 58px 0 auto 0; background: var(--bg-2); padding: 10px 4% 18px; border-bottom: 1px solid var(--rand); }
.nav-links.open { display: block; }
.nav-links a { display: block; color: var(--text); padding: 13px 8px; font-weight: 600; border-bottom: 1px solid var(--rand); }
.nav-links a:hover { color: var(--gold); text-decoration: none; }
.nav-links .btn-cta { margin-top: 14px; display: inline-block; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; position: static; background: none; padding: 0; border: 0; gap: 4px; align-items: center; }
  .nav-links a { border: 0; padding: 9px 13px; font-size: 0.92rem; border-radius: 8px; }
  .nav-links a:hover { background: rgba(255,255,255,0.06); }
}

/* Buttons */
.btn {
  display: inline-block; padding: 13px 24px; border-radius: 10px; font-weight: 700;
  font-size: 0.95rem; border: 0; cursor: pointer; transition: transform 0.12s ease, box-shadow 0.12s ease; text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn-gold { background: var(--gold); color: #0a0a0a; }
.btn-gold:hover { background: var(--gold-hi); text-decoration: none; box-shadow: 0 8px 26px rgba(212,175,55,0.3); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--rand); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

/* Hero */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(212,175,55,0.12), transparent 55%),
    radial-gradient(ellipse 60% 70% at 5% 100%, rgba(212,175,55,0.06), transparent 60%),
    var(--bg);
  padding: 78px 0 64px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.7;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold-dim);
  border: 1px solid rgba(212,175,55,0.4); color: var(--gold); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 6.5vw, 3.6rem); line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero .lead { color: var(--muted); font-size: clamp(1rem, 2.6vw, 1.2rem); max-width: 36em; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 36px; color: var(--muted); font-size: 0.88rem; }
.hero-proof strong { color: var(--text); }

/* Sektionen */
.section { padding: 62px 0; }
.section.alt { background: var(--bg-2); border-block: 1px solid var(--rand); }
.section-head { max-width: 680px; margin-bottom: 36px; }
.kicker { color: var(--gold); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(1.6rem, 4.6vw, 2.3rem); line-height: 1.18; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* Problem / Zeitersparnis */
.problem-grid { display: grid; gap: 14px; }
@media (min-width: 760px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card { background: var(--bg-3); border: 1px solid var(--rand); border-radius: var(--radius); padding: 22px; }
.problem-card .p-ico { font-size: 1.5rem; margin-bottom: 10px; }
.problem-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.problem-card p { font-size: 0.9rem; color: var(--muted); }
.zeit-sparen {
  margin-top: 26px; background: linear-gradient(120deg, rgba(212,175,55,0.16), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.35); border-radius: var(--radius); padding: 26px;
}
.zeit-sparen h3 { color: var(--gold); margin-bottom: 8px; }
.zeit-sparen p { font-size: 0.95rem; color: var(--text); }

/* Leistungen */
.leistung-grid { display: grid; gap: 14px; }
@media (min-width: 700px) { .leistung-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .leistung-grid { grid-template-columns: repeat(3, 1fr); } }
.leistung-card {
  background: var(--bg-3); border: 1px solid var(--rand); border-radius: var(--radius);
  padding: 24px; transition: border-color 0.15s ease, transform 0.15s ease;
}
.leistung-card:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-2px); }
.leistung-card .l-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-dim); display: grid; place-items: center; margin-bottom: 14px; }
.leistung-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.leistung-card p { font-size: 0.89rem; color: var(--muted); }
.leistung-card .l-tag { display: inline-block; margin-top: 12px; font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* Live-Demo Spielbericht */
.demo-wrap { background: var(--bg-3); border: 1px solid var(--rand); border-radius: var(--radius); padding: 26px; }
.demo-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.demo-btn {
  background: var(--bg); border: 1.5px solid var(--rand); color: var(--text); border-radius: 10px;
  padding: 11px 18px; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.15s ease;
}
.demo-btn:hover, .demo-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.demo-status { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; min-height: 1.4em; }
.demo-out { display: none; }
.demo-out.show { display: block; }
.demo-block { background: var(--bg); border: 1px solid var(--rand); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.demo-block h4 { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.demo-block p { font-size: 0.92rem; white-space: pre-wrap; }
.demo-block .post-label { display: inline-block; font-size: 0.7rem; font-weight: 800; padding: 3px 9px; border-radius: 999px; margin-bottom: 6px; letter-spacing: 0.06em; }
.post-label.ig { background: rgba(201,91,91,0.18); color: #ff9d9d; }
.post-label.wa { background: rgba(46,158,91,0.18); color: #7edda2; }
.post-label.fb { background: rgba(90,130,200,0.18); color: #9db9ff; }
.demo-hinweis { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: 12px; }

/* Musterverein */
.muster-grid { display: grid; gap: 14px; }
@media (min-width: 860px) { .muster-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.muster-liste { list-style: none; margin-top: 18px; }
.muster-liste li { padding: 8px 0 8px 30px; position: relative; font-size: 0.93rem; color: var(--muted); border-bottom: 1px solid var(--rand); }
.muster-liste li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.muster-liste li strong { color: var(--text); }
.muster-frame {
  border: 1px solid rgba(212,175,55,0.35); border-radius: var(--radius); overflow: hidden;
  background: var(--bg-3); box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}
.muster-frame .mf-head { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--rand); background: var(--bg); }
.mf-dot { width: 10px; height: 10px; border-radius: 50%; background: #3a3a3a; }
.mf-dot.g { background: var(--gruen); }
.mf-dot.y { background: var(--gold); }
.mf-url { font-size: 0.75rem; color: var(--muted); margin-left: 6px; }
.mf-body { padding: 26px 22px; }
.mf-body .mf-kicker { color: var(--gold); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.mf-body h3 { font-size: 1.3rem; margin: 6px 0 12px; }
.mf-body .mf-line { height: 8px; border-radius: 4px; background: #2a2a2a; margin-bottom: 8px; }
.mf-body .mf-line.w60 { width: 60%; } .mf-body .mf-line.w80 { width: 80%; } .mf-body .mf-line.w40 { width: 40%; }
.mf-cta { display: inline-block; margin-top: 14px; background: var(--gold); color: #0a0a0a; font-weight: 800; font-size: 0.85rem; padding: 9px 18px; border-radius: 8px; }

/* Preise */
.preis-grid { display: grid; gap: 16px; }
@media (min-width: 820px) { .preis-grid { grid-template-columns: repeat(3, 1fr); } }
.preis-card { background: var(--bg-3); border: 1px solid var(--rand); border-radius: var(--radius); padding: 26px; position: relative; }
.preis-card.featured { border-color: rgba(212,175,55,0.55); background: linear-gradient(160deg, rgba(212,175,55,0.08), var(--bg-3) 45%); }
.preis-card .p-name { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.preis-card .p-preis { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.preis-card .p-preis small { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.preis-card ul { list-style: none; margin: 16px 0 0; }
.preis-card li { padding: 6px 0 6px 26px; position: relative; font-size: 0.88rem; color: var(--muted); }
.preis-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.preis-hinweis { margin-top: 18px; font-size: 0.82rem; color: var(--muted); }
.preis-hinweis strong { color: var(--gold); }

/* Förderung */
.foerder-box { background: var(--gold-dim); border: 1px solid rgba(212,175,55,0.35); border-radius: var(--radius); padding: 22px; font-size: 0.92rem; }
.foerder-box strong { color: var(--gold); }

/* Kontakt */
.kontakt-grid { display: grid; gap: 24px; }
@media (min-width: 860px) { .kontakt-grid { grid-template-columns: 1fr 0.8fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--rand); border-radius: 10px;
  color: var(--text); padding: 12px 14px; font-size: 0.95rem; font-family: inherit; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-hinweis { font-size: 0.78rem; color: var(--muted); margin-top: 10px; }
.form-ok { display: none; background: rgba(46,158,91,0.15); border: 1px solid rgba(46,158,91,0.5); color: #7edda2; border-radius: 10px; padding: 16px; margin-bottom: 16px; font-size: 0.92rem; }
.form-ok.show { display: block; }
.form-fehler { display: none; background: rgba(201,91,91,0.15); border: 1px solid rgba(201,91,91,0.5); color: #ff9d9d; border-radius: 10px; padding: 16px; margin-bottom: 16px; font-size: 0.92rem; }
.form-fehler.show { display: block; }
.kontakt-info { background: var(--bg-3); border: 1px solid var(--rand); border-radius: var(--radius); padding: 24px; }
.kontakt-info h3 { color: var(--gold); margin-bottom: 12px; }
.kontakt-info p { font-size: 0.9rem; color: var(--muted); margin-bottom: 8px; }

/* CTA */
.cta-band {
  background: linear-gradient(120deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.4); border-radius: var(--radius); padding: 40px 28px; text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin-bottom: 10px; }
.cta-band p { color: var(--muted); max-width: 36em; margin: 0 auto 24px; }

/* Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--rand); padding: 38px 0 30px; font-size: 0.86rem; color: var(--muted); }
.footer-inner { display: grid; gap: 22px; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer h4 { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.site-footer a { color: #c9c6bd; }
.site-footer a:hover { color: var(--gold); }
.footer-links a { display: block; padding: 3px 0; }
.footer-legal { border-top: 1px solid var(--rand); margin-top: 26px; padding-top: 16px; font-size: 0.78rem; color: #6d6a62; }

/* Reveal */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
