/* ==========================================================================
   Flowstate Radio – flowstateradio.net
   Dark, premium look. Gold = network brand, violet = Deep pilot station.
   Self-hosted variable fonts, no third-party requests.
   ========================================================================== */

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #0b0813;
  --bg-elevated: #130e1f;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --text: #f2eef8;
  --text-dim: #b4abc6;
  --text-faint: #7d7490;
  --gold: #e8b64c;
  --gold-soft: #f5ce6e;
  --gold-deep: #b07f1f;
  --violet: #a96bd8;
  --violet-deep: #3a1f52;
  --live: #ff3b30;
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* station accents (D-064 / config/sender-farbwelten.json).
     Classical and Rap corrected 2026-08-08: both channel logos are
     photographed in a single accent colour (gold resp. sapphire blue) –
     the previous values used the background MOOD colour (dark blue) or an
     outdated pre-correction plan (red) instead of the logo colour. See
     config/sender-farbwelten.json "akzent" per sender. */
  --c-deep: #a96bd8;
  --c-house: #e77755; /* Citrin – korrigiert 2026-08-09 auf den verbindlichen
                         "akzent"-Wert 0xE77755 aus config/sender-farbwelten.json
                         (vorher #f2822b, eine freie Schätzung von 2026-08-07). */
  --c-chill: #3ed4c5;
  --c-classical: #d3b069;
  --c-jazz: #5ddf97; /* Malachit-Grün – D-154/2026-08-11, ersetzt Rauchquarz/Gold
                        #d99e3b. Verbindlicher "akzent"-Wert 0x5DDF97 aus
                        config/sender-farbwelten.json. */
  --c-rock: #c93030;
  --c-rap: #c4c9d2; /* Anthrazit/Chrom – D-154/2026-08-11, ersetzt Saphir/Blau
                       #55bee7. Verbindlicher "akzent"-Wert 0xC4C9D2 aus
                       config/sender-farbwelten.json, streng monochrom. */
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(169, 107, 216, 0.4); }

img { max-width: 100%; display: block; }

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: #ffe09a; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 8, 19, 0.82);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 17px;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand img { width: 38px; height: 38px; border-radius: 50%; }
.brand .brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  font-weight: 600;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color 0.18s, background 0.18s;
}
.main-nav a:hover { color: var(--text); background: var(--panel-strong); }
.main-nav a.active { color: var(--text); background: var(--panel-strong); }
.main-nav a.nav-cta {
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  font-weight: 700;
  margin-left: 8px;
}
.main-nav a.nav-cta:hover { filter: brightness(1.1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; place-items: center; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 24px 22px;
    gap: 4px;
    background: rgba(13, 9, 22, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 16px; border-radius: 12px; font-size: 16px; }
  .main-nav a.nav-cta { margin-left: 0; text-align: center; margin-top: 8px; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 130%;
  background:
    radial-gradient(42% 55% at 22% 30%, rgba(105, 58, 160, 0.32), transparent 70%),
    radial-gradient(38% 48% at 78% 18%, rgba(232, 182, 76, 0.10), transparent 70%),
    radial-gradient(50% 60% at 60% 90%, rgba(58, 31, 82, 0.35), transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
h1 .grad {
  background: linear-gradient(115deg, #f7dc9a 8%, var(--gold) 42%, #9d6ecb 75%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 18.5px;
  color: var(--text-dim);
  max-width: 54ch;
  margin-bottom: 34px;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s, filter 0.16s, background 0.16s, border-color 0.16s;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 8px 28px rgba(232, 182, 76, 0.22);
}
.btn-gold:hover { filter: brightness(1.08); color: #17110a; }
.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: var(--panel);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.22); background: var(--panel-strong); color: var(--text); }

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.55);
  animation: livepulse 1.8s ease-out infinite;
}
@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(255, 59, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

.hero-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--text-faint);
}

/* --------------------------------------------------------------------------
   Video facade (click-to-load YouTube, privacy mode)
   -------------------------------------------------------------------------- */

.player-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(169, 107, 216, 0.08);
}
.player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  display: block;
}
.yt-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.2s, transform 0.6s ease;
}
.yt-facade:hover img { opacity: 1; transform: scale(1.015); }
.yt-facade .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 8, 19, 0.72);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  transition: transform 0.18s, background 0.18s;
}
.yt-facade:hover .play-badge { transform: translate(-50%, -50%) scale(1.07); background: rgba(169, 107, 216, 0.4); }
.yt-facade .play-badge svg { width: 30px; height: 30px; fill: #fff; margin-left: 4px; }
.yt-facade .facade-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 18px 13px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  text-align: center;
}

.player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(19, 14, 31, 0.92);
  border-top: 1px solid var(--line-soft);
}
.player-meta .station-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: linear-gradient(160deg, #ff5148, #d92a20);
  border-radius: 8px;
  padding: 5px 11px;
}
.badge-soon {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px 11px;
}

/* Now playing strip */
.nowplaying {
  display: none;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 13px 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--panel);
  font-size: 14.5px;
}
.nowplaying.visible { display: flex; }
.nowplaying .np-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  white-space: nowrap;
}
.nowplaying .np-title { font-weight: 600; }
.nowplaying .np-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 15px;
  margin-left: auto;
}
.nowplaying .np-eq i {
  width: 3px;
  background: var(--violet);
  border-radius: 2px;
  animation: eq 1.1s ease-in-out infinite;
}
.nowplaying .np-eq i:nth-child(1) { height: 60%; animation-delay: 0s; }
.nowplaying .np-eq i:nth-child(2) { height: 100%; animation-delay: 0.25s; }
.nowplaying .np-eq i:nth-child(3) { height: 45%; animation-delay: 0.5s; }
.nowplaying .np-eq i:nth-child(4) { height: 80%; animation-delay: 0.12s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-head p { color: var(--text-dim); font-size: 17px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* --------------------------------------------------------------------------
   Station grid
   -------------------------------------------------------------------------- */

.station-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.station-card {
  --accent: var(--violet);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel-strong), rgba(255, 255, 255, 0.015));
  padding: 26px 26px 24px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.station-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
}
.station-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.station-card .st-logo {
  height: 72px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.station-card .st-logo img {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 28%, transparent);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.15));
}

.station-card .st-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.station-card .st-desc {
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 8px 0 18px;
  flex: 1;
}
.station-card .st-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.station-card .st-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.station-card .st-link:hover { color: var(--accent); }
.station-card .st-link::after { content: "→"; transition: transform 0.18s; }
.station-card .st-link:hover::after { transform: translateX(3px); }

.station-card.is-live { border-color: rgba(169, 107, 216, 0.35); } /* Fallback */
.station-card.is-live { border-color: color-mix(in srgb, var(--accent) 35%, transparent); }

/* --------------------------------------------------------------------------
   Feature rows / value props
   -------------------------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.feature {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 28px;
}
.feature .f-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(150deg, rgba(232, 182, 76, 0.16), rgba(169, 107, 216, 0.14));
  border: 1px solid var(--line);
  font-size: 21px;
}
.feature p { color: var(--text-dim); font-size: 14.8px; }

/* --------------------------------------------------------------------------
   Advertising tiles
   -------------------------------------------------------------------------- */

.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.ad-tile {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 24px;
  background: var(--panel);
  transition: border-color 0.2s, background 0.2s;
}
.ad-tile:hover { border-color: rgba(232, 182, 76, 0.4); background: var(--panel-strong); }
.ad-tile h3 { font-size: 17px; margin-bottom: 6px; }
.ad-tile p { color: var(--text-dim); font-size: 14.2px; }
.ad-tile .ad-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 48px;
  overflow: hidden;
  background:
    radial-gradient(60% 120% at 15% 0%, rgba(105, 58, 160, 0.35), transparent 65%),
    radial-gradient(50% 110% at 90% 100%, rgba(232, 182, 76, 0.14), transparent 60%),
    var(--bg-elevated);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--text-dim); max-width: 52ch; }
@media (max-width: 720px) { .cta-band { padding: 40px 28px; } }

/* --------------------------------------------------------------------------
   Prose pages (about, legal)
   -------------------------------------------------------------------------- */

.page-head {
  padding: 72px 0 40px;
  position: relative;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: -80% -20% auto;
  height: 160%;
  background: radial-gradient(40% 60% at 30% 40%, rgba(105, 58, 160, 0.22), transparent 70%);
  pointer-events: none;
}
.page-head h1 { font-size: clamp(32px, 4.5vw, 48px); position: relative; }
.page-head p { position: relative; color: var(--text-dim); font-size: 18px; max-width: 62ch; }

.prose { max-width: 760px; }
.prose h2 { font-size: 26px; margin: 44px 0 12px; }
.prose h3 { margin: 30px 0 8px; }
.prose p { color: var(--text-dim); margin-bottom: 16px; }
.prose ul { color: var(--text-dim); margin: 0 0 16px 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); }

.placeholder-box {
  border: 1px dashed rgba(232, 182, 76, 0.5);
  background: rgba(232, 182, 76, 0.06);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  color: var(--gold-soft);
  font-size: 14.5px;
  margin: 18px 0;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 12px;
}
.contact-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px;
}
.contact-card p { color: var(--text-dim); font-size: 14.8px; margin: 8px 0 18px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 40px;
  background: #090711;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-brand img { width: 34px; height: 34px; border-radius: 50%; }
.site-footer p { color: var(--text-faint); font-size: 14px; max-width: 44ch; }

.site-footer h4 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer li a { color: var(--text-faint); font-size: 14.5px; }
.site-footer li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.muted { color: var(--text-dim); }
.small { font-size: 13.5px; }
.mt-0 { margin-top: 0; }
.center { text-align: center; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #17110a;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Booking flow (Verkaufsstrecke, docs/59) – forms, block picker, summary
   -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.product-card {
  --accent: var(--gold);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel-strong), rgba(255, 255, 255, 0.015));
  padding: 28px 26px 26px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.55;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}
.product-card .p-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold-soft);
  margin: 4px 0 2px;
}
.product-card .p-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}
.product-card p { color: var(--text-dim); font-size: 14.6px; }
.product-card ul {
  list-style: none;
  margin: 14px 0 20px;
  flex: 1;
}
.product-card ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 14.2px;
  margin-bottom: 8px;
}
.product-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.product-card .btn { justify-content: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 24px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  color: #17110a;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  margin-bottom: 14px;
}
.step h3 { font-size: 16px; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 14px; }

/* Booking form */
.booking-form { max-width: 760px; }
.form-section { margin-bottom: 40px; }
.form-section > h2 {
  font-size: 21px;
  margin-bottom: 4px;
}
.form-section > .section-sub {
  color: var(--text-dim);
  font-size: 14.6px;
  margin-bottom: 20px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 7px;
}
.field label .opt {
  font-weight: 500;
  color: var(--text-faint);
  font-size: 12.5px;
  margin-left: 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.16s, background 0.16s;
  color-scheme: dark;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b4abc6' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
/* Native <option> lists ignore most CSS, but Chrome and Firefox do honour
   background-color/color set directly on <option> (and on <select> itself,
   which several engines use as the popup's base colour). Without this the
   dropdown list falls back to the OS theme — on a dark page that has shown
   up as barely-readable light-on-light text for every unselected row, while
   the closed control (styled above) looked fine. Applies to every select on
   the site: occasion, category, block day, currency-native fallbacks. */
.field select,
.field select option {
  background-color: var(--bg-elevated);
  color: var(--text);
}
.field select option:checked,
.field select option:hover,
.field select option:focus {
  /* Dark text on gold, same pairing as .step-num/.choice-pill elsewhere on
     the site — var(--text) on --gold-deep measured under 3:1 contrast. */
  background-color: var(--gold);
  color: #17110a;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(232, 182, 76, 0.55);
  background: var(--panel-strong);
}
.field .hint {
  color: var(--text-faint);
  font-size: 12.8px;
  margin-top: 6px;
}
.field .charcount {
  float: right;
  color: var(--text-faint);
  font-size: 12px;
  margin-top: 6px;
}
.field-error {
  color: #ff8f87;
  font-size: 13px;
  margin-top: 6px;
}
.has-error input,
.has-error select,
.has-error textarea {
  border-color: rgba(255, 99, 90, 0.65) !important;
}
.field input[type="file"] {
  width: 100%;
  color: var(--text-dim);
  font-size: 14px;
  padding: 10px 0;
}

/* Choice pills (station, spot mode) */
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice-pill { position: relative; }
.choice-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.choice-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: border-color 0.16s, color 0.16s, background 0.16s;
}
.choice-pill input:checked + span {
  color: var(--text);
  border-color: rgba(232, 182, 76, 0.6);
  background: rgba(232, 182, 76, 0.09);
}
.choice-pill input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.choice-pill input:disabled + span {
  opacity: 0.45;
  cursor: not-allowed;
}
.choice-pill .pill-note {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Block picker */
.block-picker .block-day { max-width: 340px; margin-bottom: 16px; }
.block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.block-option {
  font: inherit;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--text);
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: border-color 0.16s, background 0.16s, transform 0.16s;
}
.block-option:hover:not(:disabled) { border-color: rgba(232, 182, 76, 0.45); background: var(--panel-strong); }
.block-option.is-selected {
  border-color: var(--gold);
  background: rgba(232, 182, 76, 0.1);
  box-shadow: 0 0 0 1px var(--gold) inset;
}
.block-option:disabled { opacity: 0.45; cursor: not-allowed; }
.block-option .bo-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
}
.block-option .bo-local { color: var(--text-dim); font-size: 12.8px; }
.block-option .bo-avail { color: var(--gold-soft); font-size: 12px; margin-top: 4px; }
.block-option .bo-avail.is-full { color: var(--text-faint); }
.block-cutoff-note { color: var(--text-faint); font-size: 12.8px; margin-top: 12px; }

/* Preview + summary */
.preview-card {
  border: 1px solid color-mix(in srgb, var(--violet) 35%, transparent);
  border-radius: var(--radius-sm);
  background: rgba(169, 107, 216, 0.07);
  padding: 18px 22px;
}
.preview-card .pv-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}
.preview-card p {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.5;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  padding: 20px 22px;
}
.sum-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 14.6px;
  color: var(--text-dim);
  padding: 6px 0;
}
.sum-line span:last-child { text-align: right; white-space: nowrap; }
.sum-line.sum-total {
  border-top: 1px solid var(--line-soft);
  margin-top: 8px;
  padding-top: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 16.5px;
}
.sum-line.sum-total span:last-child { color: var(--gold-soft); }
.sum-note { color: var(--text-faint); font-size: 12.8px; margin-top: 10px; }

/* Currency switch: dezenter Segmentschalter im Preis-/Zahlbereich
   (Nutzerentscheid 2026-08-11). Standard USD, EUR/CHF wählbar, gerendert
   von main.js in [data-currency-switch]; ohne JS bleibt der leere Container
   unsichtbar (kein leerer Rahmen). */
.currency-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.currency-switch:empty { display: none; }
.currency-switch .cs-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.currency-switch .cs-options {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  background: var(--panel);
}
.currency-switch .cs-options button {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.currency-switch .cs-options button:hover { color: var(--text); }
.currency-switch .cs-options button.is-active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #17110a;
}
.currency-switch .cs-options button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.currency-switch .cs-note {
  color: var(--text-faint);
  font-size: 12.4px;
}

/* Consent / terms checkboxes */
.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--panel);
  margin-bottom: 12px;
}
.check-row input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}
.check-row label {
  color: var(--text-dim);
  font-size: 14.2px;
  cursor: pointer;
}
.check-row .field-error { grid-column: 1 / -1; margin-top: 0; }

.form-alert {
  border: 1px solid rgba(255, 99, 90, 0.45);
  background: rgba(255, 99, 90, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--text);
  font-size: 14.6px;
  margin-bottom: 18px;
}
.form-alert a { color: var(--gold-soft); }

.notice-soft {
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  padding: 14px 18px;
  color: var(--text-dim);
  font-size: 13.6px;
}

.pay-note {
  color: var(--text-faint);
  font-size: 13px;
  margin-top: 14px;
}
.booking-form [data-submit] { width: 100%; justify-content: center; font-size: 16.5px; }

/* Order result pages */
.result-card {
  max-width: 680px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 44px 40px;
}
.result-card .r-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(150deg, rgba(232, 182, 76, 0.18), rgba(169, 107, 216, 0.16));
  border: 1px solid var(--line);
}
.result-card p { color: var(--text-dim); margin-bottom: 14px; }
.result-card .order-ref {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) { .result-card { padding: 32px 24px; } }

/* --------------------------------------------------------------------------
   Listen everywhere – Plattform-Badges (Daten: assets/js/plattformen.js)
   -------------------------------------------------------------------------- */

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.lp-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lp-item:hover {
  border-color: rgba(232, 182, 76, 0.4);
  background: var(--panel-strong);
}
.lp-item img { display: block; width: auto; }
/* TuneIn-Logo: Datei enthält laut Brand-Regel unverändert die eingebaute
   Schutzzone (transparenter Rand, Marke ≈44 % der Bildhöhe). Höher rendern
   und den Rand über negative Außenabstände ausgleichen – die Bilddatei
   selbst bleibt unangetastet. */
.lp-item img.lp-tunein { margin: -13px; }
.lp-item .lp-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.lp-item .lp-sub {
  font-size: 12.5px;
  color: var(--text-dim);
  white-space: nowrap;
}
.lp-item img + .lp-sub {
  border-left: 1px solid var(--line);
  padding-left: 11px;
}

/* Kompakte Variante: Vertrauensband "Broadcasting on" (advertise/book) */
.listen-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.015);
  padding: 22px 0;
}
.listen-band .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
}
.listen-band .lb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.listen-band .platform-row { gap: 10px; }
.listen-band .lp-item { padding: 9px 15px; }

@media (max-width: 640px) {
  .platform-row { gap: 10px; }
  .lp-item { padding: 11px 15px; }
}
