/* Aurora Run — Website V1 · PaperWhite-Optik, Farbsprache Gold/Blau/Grün */

:root {
  --paper: #F6F2E9;
  --paper-deep: #EFE9DB;
  --card: #FBF8F1;
  --ink: #211D15;
  --ink-soft: #5C5546;
  --line: #DDD5C2;
  --gold: #B8912B;
  --gold-bright: #D4AF37;
  --blue: #2B5BA8;
  --green: #2E5C46;
  --night: #101114;
  --night-ink: #EDE6D6;
  --radius: 14px;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Kopf ---------- */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.wordmark {
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 15px; text-decoration: none; color: var(--ink);
}
.wordmark .dot { color: var(--gold); }
nav.main a {
  text-decoration: none; color: var(--ink-soft); font-size: 14px;
  margin-left: 22px; letter-spacing: 0.02em;
}
nav.main a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 56px; text-align: center; }
.hero-icon {
  width: 88px; height: 88px; border-radius: 20px; margin-bottom: 26px;
  box-shadow: 0 10px 30px rgba(33, 29, 21, 0.18);
}
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); line-height: 1.12;
  font-weight: 700; letter-spacing: -0.01em;
  max-width: 17ch; margin: 0 auto;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.sub {
  margin: 22px auto 0; max-width: 54ch;
  font-size: 19px; color: var(--ink-soft);
}
.hero .cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.badge-store {
  display: inline-block; padding: 13px 26px; border-radius: 12px;
  background: var(--ink); color: var(--paper); text-decoration: none;
  font-size: 15px; letter-spacing: 0.02em;
}
.badge-soon {
  display: inline-block; padding: 13px 20px; border-radius: 12px;
  border: 1px solid var(--line); color: var(--ink-soft); font-size: 15px;
}

/* ---------- Bild-Platzhalter (werden durch echte Assets ersetzt) ---------- */
figure.shot {
  margin: 40px auto 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--paper-deep);
}
figure.shot img, figure.shot video { display: block; width: 100%; height: auto; }
figure.shot.ph {
  display: grid; place-items: center; min-height: 320px;
  color: var(--ink-soft); font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
figure.shot figcaption {
  font-size: 13px; color: var(--ink-soft); padding: 10px 16px;
  border-top: 1px solid var(--line); text-align: left;
}

/* ---------- Sektionen ---------- */
section { padding: 72px 0; }
section.alt { background: var(--paper-deep); }
.kicker {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
h2 { font-size: clamp(26px, 4vw, 36px); line-height: 1.2; margin-bottom: 14px; }
p.lead { font-size: 17px; color: var(--ink-soft); max-width: 62ch; }

.cols { display: grid; gap: 20px; margin-top: 36px; }
.cols.three { grid-template-columns: repeat(3, 1fr); }
.cols.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 800px) { .cols.three, .cols.two { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--ink-soft); }
.card .accent { display: block; width: 34px; height: 4px; border-radius: 2px; margin-bottom: 16px; }
.accent.gold { background: var(--gold-bright); }
.accent.blue { background: var(--blue); }
.accent.green { background: var(--green); }

/* Sportarten-Galerie (Netflix-artige Kachel-Reihe) */
.reel { margin-top: 36px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity; scroll-padding-left: 24px; scrollbar-width: thin; }
@media (min-width: 1128px) {
  .reel { scroll-padding-left: calc(50vw - 516px); }
}
.reel-track {
  display: flex; gap: 16px;
  padding: 4px 24px 18px;
  width: max-content;
}
@media (min-width: 1128px) {
  .reel-track { padding-left: calc(50vw - 516px); padding-right: calc(50vw - 516px); }
}
.tile {
  flex: none; width: 220px; aspect-ratio: 3 / 4;
  border-radius: 12px; scroll-snap-align: start;
  background:
    radial-gradient(120% 90% at 20% 8%, rgba(212, 175, 55, 0.22), transparent 55%),
    linear-gradient(160deg, #1B1C21 0%, #101114 70%);
  border: 1px solid #2A2C33;
  display: flex; align-items: flex-end;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.tile:hover { transform: scale(1.045); border-color: var(--gold); }
.tile-body { padding: 18px; }
.tile h3 { color: var(--night-ink); font-size: 19px; margin-bottom: 6px; }
.tile p { color: rgba(237, 230, 214, 0.62); font-size: 13px; line-height: 1.45; }
.tile.own {
  background: var(--card); border: 1px dashed var(--gold);
}
.tile.own h3 { color: var(--ink); }
.tile.own p { color: var(--ink-soft); }

/* Merkliste */
ul.marks { margin-top: 24px; list-style: none; }
ul.marks li {
  padding: 10px 0 10px 30px; position: relative;
  font-size: 16px; border-bottom: 1px solid var(--line);
}
ul.marks li:last-child { border-bottom: none; }
ul.marks li::before {
  content: ""; position: absolute; left: 4px; top: 19px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}

/* Farbsprache-Legende */
.legend { display: grid; gap: 12px; margin-top: 26px; max-width: 560px; }
.legend .row {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 16px; font-size: 15px;
}
.legend .swatch { width: 22px; height: 22px; border-radius: 6px; flex: none; }
.swatch.gold { background: var(--gold-bright); }
.swatch.blue { background: var(--blue); }
.swatch.green { background: var(--green); }
.legend b { margin-right: 6px; }

/* Export = Nacht-Sektion */
section.night { background: var(--night); color: var(--night-ink); }
section.night h2 { color: var(--night-ink); }
section.night .kicker { color: var(--gold-bright); }
section.night p.lead { color: color-mix(in srgb, var(--night-ink) 72%, transparent); }
section.night .card {
  background: #16171B; border-color: #2A2C33;
}
section.night .card h3 { color: var(--night-ink); }
section.night .card p { color: color-mix(in srgb, var(--night-ink) 65%, transparent); }
section.night figure.shot { border-color: #2A2C33; background: #16171B; }

/* FAQ */
details.faq {
  border-bottom: 1px solid var(--line); padding: 6px 0;
}
details.faq summary {
  cursor: pointer; font-size: 17px; font-weight: 600;
  padding: 14px 0; list-style: none; position: relative; padding-right: 34px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 12px;
  font-size: 22px; color: var(--gold); font-weight: 400;
}
details.faq[open] summary::after { content: "–"; }
details.faq p { padding: 0 0 18px; color: var(--ink-soft); max-width: 68ch; }

/* Fuß */
footer.site {
  border-top: 1px solid var(--line); padding: 40px 0 60px;
  font-size: 14px; color: var(--ink-soft);
}
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
footer.site a { color: var(--ink-soft); text-decoration: none; margin-right: 20px; }
footer.site a:hover { color: var(--ink); }

/* Rechtsseiten */
main.legal { max-width: 760px; margin: 0 auto; padding: 60px 24px 100px; }
main.legal h1 { font-size: 32px; margin-bottom: 8px; }
main.legal h2 { font-size: 20px; margin: 36px 0 10px; }
main.legal p, main.legal li { font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; }
main.legal ul { padding-left: 22px; }
.draft-note {
  background: var(--paper-deep); border: 1px dashed var(--gold);
  border-radius: 10px; padding: 14px 18px; margin: 26px 0; font-size: 14px;
}
