/* AuraCurve Website — Look angelehnt an die App: dunkle Paneele, Gold-Akzent
   (#FFC442, HUD-Gold der App), Papier-Ton #F2F2ED (Karten-Palette „Weiß"). */

:root {
  --gold: #FFC442;
  --gold-tief: #D9A22C;
  --bg: #0B0E14;
  --panel: #131722;
  --panel-hell: #1A1F2C;
  --text: #EDEDEA;
  --muted: rgba(237, 237, 234, 0.62);
  --line: rgba(255, 255, 255, 0.09);
  --paper: #F2F2ED;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.hof { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* Kopfzeile */
.kopf {
  position: sticky; top: 0; z-index: 30;
  background: rgba(11, 14, 20, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.kopf-innen {
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.kopf-logo img { height: 30px; display: block; }
.kopf-nav { display: flex; gap: 22px; align-items: center; }
.kopf-nav a { color: var(--muted); font-size: 15px; font-weight: 500; }
.kopf-nav a:hover { color: var(--text); text-decoration: none; }
.kopf-nav a.cta {
  color: #0B0E14; background: var(--gold);
  padding: 9px 18px; border-radius: 999px; font-weight: 700;
}
.kopf-nav a.cta:hover { background: #FFD060; }

/* Held */
.held { padding: 84px 0 56px; text-align: center; }
.held h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1.12;
}
.held h1 .gold { color: var(--gold); }
.held p.unter {
  margin: 20px auto 0; max-width: 640px;
  font-size: clamp(16px, 2vw, 19px); color: var(--muted);
}
.held-aktionen { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.knopf {
  display: inline-block; padding: 14px 26px; border-radius: 999px;
  font-size: 16px; font-weight: 700;
}
.knopf.gold { background: var(--gold); color: #0B0E14; }
.knopf.gold:hover { background: #FFD060; text-decoration: none; }
.knopf.rahmen { border: 1.5px solid var(--line); color: var(--text); }
.knopf.rahmen:hover { border-color: rgba(255, 255, 255, 0.3); text-decoration: none; }
.held .status {
  margin-top: 18px; font-size: 13.5px; color: var(--muted);
}

/* Platzhalter für echte Screenshots (bewusst beschriftet, bis Bilder da sind) */
.schaufenster { padding: 20px 0 70px; }
.geraete { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.geraet {
  width: 240px; aspect-ratio: 9 / 19.2;
  border: 1.5px solid var(--line); border-radius: 34px;
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-hell) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 13px; text-align: center; padding: 18px;
}
.geraet.breit { width: 420px; aspect-ratio: 4 / 3; border-radius: 22px; }

/* Funktionen */
.funktionen { padding: 30px 0 60px; }
.funktionen h2, .planer-teaser h2 {
  font-size: clamp(24px, 3.4vw, 34px); font-weight: 800;
  text-align: center; margin-bottom: 10px;
}
.funktionen .zeile-unter { text-align: center; color: var(--muted); margin-bottom: 40px; }
.karten {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.karte {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.karte svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.karte h3 { font-size: 16.5px; margin: 12px 0 6px; }
.karte p { font-size: 14px; color: var(--muted); }

/* Planer-Teaser */
.planer-teaser { padding: 26px 0 84px; text-align: center; }
.planer-teaser .buehne {
  margin: 30px auto 26px; max-width: 860px; aspect-ratio: 16 / 9;
  border: 1.5px solid var(--line); border-radius: 22px;
  background:
    radial-gradient(1200px 400px at 30% 20%, rgba(255, 196, 66, 0.07), transparent),
    linear-gradient(160deg, var(--panel) 0%, var(--panel-hell) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; padding: 20px;
}
.planer-teaser p.text { max-width: 620px; margin: 0 auto; color: var(--muted); }

/* Fußzeile */
.fuss { border-top: 1px solid var(--line); padding: 30px 0 44px; }
.fuss-innen { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; }
.fuss-innen nav { display: flex; gap: 18px; flex-wrap: wrap; }
.fuss-innen a { color: var(--muted); }
.fuss-innen a:hover { color: var(--text); }

/* Rechtsseiten */
.recht { padding: 50px 0 80px; max-width: 760px; }
.recht h1 { font-size: 30px; margin-bottom: 8px; }
.recht h2 { font-size: 19px; margin: 28px 0 8px; }
.recht p, .recht li { color: var(--muted); font-size: 15px; }
.recht ul { padding-left: 20px; }
.entwurf {
  background: rgba(255, 196, 66, 0.1); border: 1px solid rgba(255, 196, 66, 0.4);
  color: var(--gold); border-radius: 12px; padding: 12px 16px;
  font-size: 14px; margin: 18px 0 26px;
}
.platzhalter { color: var(--gold); font-weight: 600; }

@media (max-width: 640px) {
  .kopf-nav a:not(.cta) { display: none; }
  .held { padding-top: 56px; }
}
