/* Oeffentliche Startseite (landing.html). Eigenes Stylesheet statt style.css:
   dort sind .btn, .price usw. fuer die App belegt und wuerden hier kollidieren.
   Tokens kommen aus variables.css. */

* { box-sizing: border-box; margin: 0; }
body { background: var(--color-bg-base); color: var(--color-text-primary); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--neon-cyan); }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(28px, 4vw, 40px); margin: 10px 0 14px; }
.lead { color: var(--color-text-secondary); font-size: 18px; max-width: 640px; }
section { padding: 96px 0; border-top: 1px solid var(--color-border-default); }

/* Nav */
nav { position: sticky; top: 0; z-index: 10; background: rgba(10,10,12,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border-default); }
nav .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-weight: 500; letter-spacing: 2px; font-size: 14px; }
.brand svg { width: 26px; height: 26px; }
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--color-text-secondary); }
.nav-links a:hover { color: var(--color-text-primary); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; font-size: 14px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 8px; font-weight: 600; font-size: 15px; border: 1px solid transparent; transition: .15s; }
.btn-primary { background: var(--neon-cyan); color: #0a0a0c; }
.btn-primary:hover { box-shadow: 0 0 24px rgba(0,217,255,.45); }
.btn-ghost { border-color: var(--color-border-strong); color: var(--color-text-primary); }
.btn-ghost:hover { border-color: var(--neon-cyan); }
.btn-sm { padding: 8px 14px; font-size: 14px; }

/* Hero */
.hero { padding: 80px 0 96px; border: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5.2vw, 60px); margin: 14px 0 20px; }
.hero h1 em { font-style: normal; color: var(--neon-magenta); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 18px; }
.hero-note { font-size: 13px; color: var(--color-text-tertiary); }

/* Set-Karte */
.setcard { background: var(--color-bg-surface); border: 1px solid var(--color-border-strong); border-radius: 14px; padding: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,46,136,.06); }
.setcard-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.setcard-title { font-weight: 600; font-size: 17px; }
.setcard-meta { font-size: 13px; color: var(--color-text-secondary); }
.chip { display: inline-block; font-family: var(--font-mono); font-size: 11px; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.chip-serato { background: rgba(255,122,46,.15); color: var(--color-sw-serato); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--color-border-default); border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.stats div { background: var(--color-bg-elevated); padding: 10px 12px; }
.stat-v { font-family: var(--font-mono); font-size: 17px; font-weight: 500; }
.stat-l { font-size: 11px; color: var(--color-text-tertiary); text-transform: uppercase; letter-spacing: 1px; }
.curve-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--color-text-tertiary); font-family: var(--font-mono); margin-bottom: 4px; }
.curve { width: 100%; height: 84px; display: block; }
.slots { display: flex; height: 8px; border-radius: 4px; overflow: hidden; margin: 6px 0 4px; }
.slot-legend { display: flex; justify-content: space-between; font-size: 11px; font-family: var(--font-mono); color: var(--color-text-tertiary); }
.insights { margin-top: 16px; display: grid; gap: 8px; }
.insight { display: flex; gap: 10px; align-items: center; padding: 10px 12px; background: var(--color-bg-elevated); border-radius: 8px; font-size: 13px; }
.insight .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.insight b { font-weight: 600; }
.insight .r { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--color-text-secondary); white-space: nowrap; }
.caption { font-size: 12px; color: var(--color-text-tertiary); text-align: center; margin-top: 12px; }

/* Software */
.sw { padding: 40px 0; }
.sw-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.sw-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; color: var(--color-text-tertiary); text-transform: uppercase; margin-right: 8px; }
.sw-item { display: flex; flex-direction: column; padding: 12px 20px; border: 1px solid var(--color-border-default); border-radius: 10px; min-width: 170px; }
.sw-item strong { font-size: 16px; }
.sw-item span { font-family: var(--font-mono); font-size: 11px; color: var(--color-text-tertiary); }

/* Funktionen */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.feat { background: var(--color-bg-surface); border: 1px solid var(--color-border-default); border-radius: 14px; padding: 26px; border-top: 2px solid var(--accent); }
.feat h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.feat p { color: var(--color-text-secondary); font-size: 15px; }
.feat-vis { margin-top: 20px; }
.heat { display: grid; grid-template-columns: 28px repeat(9, 1fr); gap: 3px; font-family: var(--font-mono); font-size: 10px; color: var(--color-text-tertiary); }
.heat i { aspect-ratio: 1.6; border-radius: 3px; background: var(--neon-magenta); }
.rank { display: grid; gap: 6px; font-size: 13px; }
.rank div { display: flex; justify-content: space-between; padding: 8px 10px; background: var(--color-bg-elevated); border-radius: 6px; }
.rank .dust { color: var(--color-text-tertiary); }
.trans { display: flex; align-items: center; gap: 10px; font-size: 13px; flex-wrap: wrap; }
.trans .t { padding: 8px 10px; background: var(--color-bg-elevated); border-radius: 6px; flex: 1; min-width: 120px; }
.trans .t small { display: block; font-family: var(--font-mono); color: var(--color-text-tertiary); font-size: 11px; }
.cov { display: grid; gap: 10px; font-size: 13px; }
.cov-row { display: grid; grid-template-columns: 1fr 44px; gap: 10px; align-items: center; }
.cov-bar { height: 6px; background: var(--color-bg-elevated); border-radius: 3px; margin-top: 4px; overflow: hidden; }
.cov-bar div { height: 100%; background: var(--neon-mint); }

/* Ablauf */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.step { padding: 24px; border: 1px solid var(--color-border-default); border-radius: 14px; }
.step-n { font-family: var(--font-mono); color: var(--neon-cyan); font-size: 13px; }
.step h3 { font-size: 18px; margin: 8px 0 6px; }
.step p { color: var(--color-text-secondary); font-size: 15px; }
.privacy { margin-top: 20px; padding: 20px 24px; border-radius: 14px; background: var(--neon-cyan-muted); border: 1px solid rgba(0,217,255,.3); display: flex; gap: 16px; align-items: flex-start; }
.privacy svg { flex: none; width: 24px; height: 24px; color: var(--neon-cyan); margin-top: 2px; }
.privacy p { color: var(--color-text-secondary); font-size: 15px; }
.privacy strong { color: var(--color-text-primary); }

/* Request Board */
.rb-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: center; }
.rb .eyebrow { color: var(--neon-lime); }
.rb-list { list-style: none; padding: 0; margin-top: 24px; display: grid; gap: 14px; }
.rb-list li { display: flex; gap: 12px; color: var(--color-text-secondary); }
.rb-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--neon-lime); margin-top: 10px; flex: none; }
.rb-list strong { color: var(--color-text-primary); }
.phone { background: #050506; border: 1px solid var(--color-border-strong); border-radius: 34px; padding: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px rgba(182,255,60,.07); }
.phone-screen { background: var(--color-bg-surface); border-radius: 22px; padding: 18px 16px; }
.ph-dj { text-align: center; margin-bottom: 14px; }
.ph-dj strong { display: block; font-size: 17px; }
.ph-dj span { font-size: 12px; color: var(--color-text-tertiary); }
.ph-input { border: 1px solid var(--color-border-strong); border-radius: 8px; padding: 10px 12px; font-size: 13px; color: var(--color-text-tertiary); margin-bottom: 14px; }
.req { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 8px; background: var(--color-bg-elevated); margin-bottom: 8px; font-size: 13px; }
.req div { flex: 1; min-width: 0; }
.req small { display: block; color: var(--color-text-tertiary); font-size: 12px; }
.vote { display: flex; flex-direction: column; align-items: center; font-family: var(--font-mono); font-size: 12px; color: var(--neon-lime); border: 1px solid rgba(182,255,60,.35); border-radius: 6px; padding: 3px 8px; }
.req.played { opacity: .5; }
.ph-tip { margin-top: 12px; text-align: center; font-size: 13px; color: var(--neon-lime); border: 1px dashed rgba(182,255,60,.35); border-radius: 8px; padding: 9px; }

/* Preise */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.price { background: var(--color-bg-surface); border: 1px solid var(--color-border-default); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; }
.price.hl { border-color: var(--neon-magenta); box-shadow: 0 0 0 1px var(--neon-magenta), 0 0 40px rgba(255,46,136,.12); position: relative; }
.badge-launch { position: absolute; top: -11px; left: 24px; background: var(--neon-magenta); color: #0a0a0c; font-family: var(--font-mono); font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 999px; }
.price h3 { font-size: 16px; font-weight: 600; }
.amount { font-family: var(--font-display); font-size: 38px; font-weight: 600; margin: 10px 0 0; }
.amount s { font-size: 20px; color: var(--color-text-tertiary); font-weight: 500; margin-left: 6px; }
.per { font-size: 13px; color: var(--color-text-tertiary); min-height: 21px; }
.price ul { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 8px; font-size: 14px; color: var(--color-text-secondary); flex: 1; }
.price li::before { content: "✓"; color: var(--neon-cyan); margin-right: 8px; }
.price .btn { justify-content: center; }
.price-note { margin-top: 20px; font-size: 14px; color: var(--color-text-tertiary); text-align: center; }

/* FAQ */
.faq { max-width: 780px; margin-top: 36px; }
details { border-bottom: 1px solid var(--color-border-default); padding: 18px 0; }
summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
summary::after { content: "+"; font-family: var(--font-mono); color: var(--neon-cyan); }
details[open] summary::after { content: "–"; }
details p { color: var(--color-text-secondary); margin-top: 10px; font-size: 15px; }

/* Abschluss */
.final { text-align: center; }
.final .lead { margin: 0 auto 30px; }
footer { border-top: 1px solid var(--color-border-default); padding: 40px 0; font-size: 14px; color: var(--color-text-tertiary); }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer nav { position: static; background: none; border: 0; backdrop-filter: none; display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 960px) {
  .hero-grid, .rb-grid { grid-template-columns: 1fr; gap: 48px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .rb-grid .phone { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .features, .steps, .price-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nav-right .login { display: none; }
  .sw-item { min-width: 0; flex: 1 1 40%; }
  .sw-label { width: 100%; text-align: center; margin: 0 0 4px; }
}
