/* Der Hero bringt seine Abstaende in .hero-inner mit; die generischen
   Sektionsabstaende wuerden sich addieren und eine leere Flaeche erzeugen. */
body .wrapper .hero { position: relative; overflow: hidden; padding-top: 0; padding-bottom: 0; }
body .wrapper .hero .hero-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 78% 18%, rgba(215, 255, 53, 0.20), rgba(215, 255, 53, 0) 40%), radial-gradient(circle at 14% 85%, rgba(164, 156, 255, 0.38), rgba(164, 156, 255, 0) 46%), linear-gradient(125deg, #150c33 0%, #2c1e63 50%, #4b3c86 100%); }
/* Punktraster wie in den anderen dunklen Sektionen (Tiefe statt glatter Verlauf) */
body .wrapper .hero .hero-bg::before { content: ""; position: absolute; inset: 0; background-image: var(--osa-dots); background-size: 22px 22px; }
body .wrapper .hero .hero-bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 50% 38%, rgba(215, 255, 53, 0.06), rgba(26, 16, 63, 0) 55%); }

body .wrapper .hero .hero-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 52px 20px 58px; text-align: center; }

body .wrapper .hero .hero-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--osa-lime); margin: 0 0 16px; }
body .wrapper .hero .hero-heading { font-size: 42px; font-weight: 700; line-height: 0.98; color: #FFFFFF; margin: 0; letter-spacing: -1.8px; text-shadow: 0 2px 20px rgba(26, 16, 63, 0.45); }
body .wrapper .hero .hero-heading .hero-accent { color: var(--osa-lime); font-weight: 700; }
body .wrapper .hero .hero-subheading { font-size: 17px; line-height: 1.55; color: #D8D2F0; margin: 18px auto 0; max-width: 620px; }

body .wrapper .hero .hero-stats { list-style: none; margin: 34px 0 0; padding: 0; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
body .wrapper .hero .hero-stat { flex: 1 1 150px; max-width: 240px; background-color: rgba(255, 255, 255, 0.06); border: 1px solid rgba(164, 156, 255, 0.35); border-top: 3px solid var(--osa-lime); padding: 20px 16px; }
body .wrapper .hero .hero-stat-num { display: block; font-size: 40px; font-weight: 700; line-height: 1; letter-spacing: -1.5px; color: var(--osa-lime); font-variant-numeric: tabular-nums; }
body .wrapper .hero .hero-stat-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #B7AEEA; margin-top: 10px; }

/* ---- Slot-Walzen fuer die RTP-Kennzahl ---- */
/* Der echte Wert bleibt als unsichtbarer Text im DOM (Screenreader + Crawler),
   die Walzen selbst sind aria-hidden. */
body .wrapper .hero .reel-value-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
body .wrapper .hero .reel-set { display: inline-flex; align-items: flex-end; justify-content: center; }
body .wrapper .hero .reel-fixed { display: block; line-height: 1; white-space: pre; }
body .wrapper .hero .reel { display: inline-block; height: 1em; overflow: hidden; }
body .wrapper .hero .reel-strip { display: block; transform: translateY(0); will-change: transform; }
body .wrapper .hero .reel-strip span { display: block; height: 1em; line-height: 1; text-align: center; }
body .wrapper .hero .reel.is-spinning .reel-strip { animation: osa-reel-spin var(--dur, 1700ms) cubic-bezier(0.17, 0.85, 0.16, 1) forwards; }
body .wrapper .hero .reel.is-landed { animation: osa-reel-pop 360ms ease-out; }

@keyframes osa-reel-spin {
  from { transform: translateY(0); }
  to { transform: translateY(calc(var(--land) * -1em)); }
}
@keyframes osa-reel-pop {
  0% { filter: none; }
  35% { filter: drop-shadow(0 0 12px rgba(215, 255, 53, 0.85)); }
  100% { filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  body .wrapper .hero .reel.is-spinning .reel-strip { animation: none; transform: translateY(calc(var(--land) * -1em)); }
  body .wrapper .hero .reel.is-landed { animation: none; }
}

body .wrapper .hero .search-card { background-color: var(--osa-card); padding: 16px; margin: 28px auto 0; max-width: 860px; box-shadow: 0 24px 50px rgba(21, 12, 51, 0.42); display: flex; flex-direction: column; gap: 12px; text-align: left; }
body .wrapper .hero .search-field { display: block; }
body .wrapper .hero .search-field .field-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #7a6f57; margin-bottom: 6px; }
body .wrapper .hero .search-field .field-select { width: 100%; font-family: inherit; font-size: 15px; color: var(--osa-ink); padding: 12px 14px; border: 1px solid #cdbfa0; border-radius: 0; background-color: var(--osa-card); cursor: pointer; }
body .wrapper .hero .search-field .field-select:focus { outline: none; border-color: var(--osa-ink); }
body .wrapper .hero .search-submit { justify-content: center; font-weight: 700; white-space: nowrap; }

body .wrapper .hero .hero-cred { display: inline-flex; align-items: center; gap: 12px; margin: 24px auto 0; font-size: 14px; color: #D8D2F0; text-align: left; }
body .wrapper .hero .hero-cred-photo { width: 44px; height: 44px; object-fit: cover; border: 2px solid var(--osa-lime); display: block; flex-shrink: 0; }
body .wrapper .hero .hero-cred-text strong { color: #FFFFFF; }
body .wrapper .hero .hero-cred-text a { color: var(--osa-lime); text-decoration: none; }
body .wrapper .hero .hero-cred-text a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  body .wrapper .hero .hero-inner { padding: 78px 32px 82px; }
  body .wrapper .hero .hero-heading { font-size: 62px; letter-spacing: -2.6px; }
  body .wrapper .hero .hero-subheading { font-size: 19px; }
  body .wrapper .hero .hero-stat-num { font-size: 52px; letter-spacing: -2px; }
  body .wrapper .hero .search-card { flex-direction: row; align-items: flex-end; padding: 18px; gap: 14px; }
  body .wrapper .hero .search-field { flex: 1; }
  body .wrapper .hero .search-submit { flex: 0 0 auto; align-self: stretch; }
}
@media (min-width: 1024px) {
  body .wrapper .hero .hero-heading { font-size: 74px; letter-spacing: -3.2px; }
}
