/* Tim Taxis · Solar Warm — DSR Webinar Landing (webinar.timtaxis.de/dsr rebuild) */

:root {
  --stille: #fff1d4;
  --stille-soft: #fff6df;
  --stille-warm: #ffeac2;
  --sein: #12224b;
  --strahlen: #f48a28;
  --weite: #c8ddea;
  --sunset: #c8561d;
  --gold: #f4b940;
  /* Seitenflächen wie das Original: weiß + neutrales Hellgrau, Karten weiß */
  --seite: #ffffff;
  --sektion: #eef0f0;
  --karte: #ffffff;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--seite);
  color: var(--sein);
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 17.2px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.dsr-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.dsr-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.6px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sunset);
}

.dsr-serif { font-family: 'Cormorant Garamond', Garamond, Georgia, serif; }

/* ---------- Topbar (wie Original: schwarz, schlichter Text) ---------- */
.dsr-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #000000;
  color: #ffffff;
}
.dsr-topbar .dsr-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.dsr-topbar span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.dsr-topbar strong { color: #ffffff; font-weight: 700; }
.dsr-topbar a {
  flex: 0 0 auto;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: var(--strahlen);
  padding: 6px 18px;
  border-radius: 999px;
  transition: background 0.3s var(--ease-out), transform 0.2s var(--ease-out);
}
.dsr-topbar a:hover { background: var(--sunset); }
.dsr-topbar a:active { transform: scale(0.97); }
@media (max-width: 640px) { .dsr-topbar span .dsr-topbar-extra { display: none; } }

/* ---------- Hero ---------- */
.dsr-hero {
  position: relative;
  padding: clamp(56px, 9vh, 110px) 0 clamp(56px, 8vh, 96px);
  overflow: hidden;
}
.dsr-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 62vw;
  height: 62vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle closest-side at center, rgba(245, 192, 154, 0.55), rgba(245, 192, 154, 0.18) 55%, transparent 98%);
  pointer-events: none;
  animation: dsr-drift 14s ease-in-out infinite alternate;
}
@keyframes dsr-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3%, 4%, 0) scale(1.06); }
}
.dsr-hero .dsr-wrap {
  position: relative;
  max-width: 900px;
  text-align: center;
}
.dsr-hero-brand { height: 64px; width: auto; margin: 0 auto 30px; }
.dsr-hero .dsr-lead { margin-left: auto; margin-right: auto; }
.dsr-hero .dsr-hero-cta { justify-content: center; margin-top: 26px; }
.dsr-hero h1 {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-weight: 500;
  font-size: clamp(39.9px, 4.8vw, 65.1px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 18px 0 22px;
}
.dsr-hero h1 em { font-style: normal; color: inherit; }
.dsr-hero h1 sup { font-size: 0.35em; font-family: 'DM Sans', sans-serif; font-weight: 400; opacity: 0.55; }
.dsr-hero .dsr-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(19.8px, 2vw, 24.2px);
  line-height: 1.5;
  color: rgba(18, 34, 75, 0.8);
  max-width: 48ch;
  margin-bottom: 34px;
}
.dsr-hero .dsr-lead strong { font-weight: 600; color: var(--sein); }

.dsr-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.6px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sein);
  background: rgba(200, 86, 29, 0.07);
  border: 1px solid rgba(200, 86, 29, 0.25);
  border-radius: 999px;
  padding: 9px 18px;
}
.dsr-date-chip svg { color: var(--sunset); }

/* Datum als schlichte Textzeilen (wie Original) */
.dsr-date-plain {
  font-family: 'Cormorant Garamond', Garamond, Georgia, serif;
  font-size: clamp(20.9px, 2.2vw, 26.4px);
  line-height: 1.4;
  color: var(--sein);
}
.dsr-date-plain strong { font-weight: 700; }

.dsr-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.dsr-hero-blessing { margin-top: 30px; }

/* Highlight-Balken wie im Original: flacher oranger Block, weiße Schrift */
.dsr-mark {
  display: inline-block;
  background: var(--strahlen);
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(20.9px, 2.2vw, 28.6px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  padding: 7px 16px 8px;
  border-radius: 3px;
  text-wrap: balance;
}

/* Buttons: orange Pill wie im Original */
.dsr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 17px 44px;
  background: var(--strahlen);
  color: #ffffff;
  box-shadow: 0 18px 34px -18px rgba(244, 138, 40, 0.55);
  transition: background 0.32s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.32s var(--ease-out);
}
.dsr-btn:hover { background: var(--sunset); box-shadow: 0 18px 34px -20px rgba(200, 86, 29, 0.55); }
.dsr-btn:active { transform: scale(0.98); }

/* Ruhiger Puls auf den Anmelde-Buttons — zieht den Blick, ohne zu zappeln.
   Bewusst NUR transform: box-shadow bleibt bei :hover/:active steuerbar, weil
   Keyframe-Werte jede normale Regel überstimmen würden. Beim Hover die
   Animation ganz abschalten (nicht pausieren), sonst friert sie mitten im
   Zyklus ein und der Button bleibt vergrößert stehen. */
.dsr-btn--pulse { animation: dsr-pulse 2.6s var(--ease-out) infinite; }
.dsr-btn--pulse:hover,
.dsr-btn--pulse:focus-visible,
.dsr-btn--pulse:active { animation: none; }
@keyframes dsr-pulse {
  0%, 62%, 100% { transform: scale(1); }
  76%           { transform: scale(1.032); }
  88%           { transform: scale(0.996); }
}
.dsr-btn-sub {
  display: block;
  font-size: 12.7px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.92;
  margin-top: 2px;
}
.dsr-btn--stack { flex-direction: column; gap: 1px; padding: 13px 40px 12px; }

/* Video facade (shared) */
.dsr-video {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sein);
  box-shadow: 0 40px 80px -34px rgba(18, 34, 75, 0.55);
}
.dsr-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out), opacity 0.4s ease;
}
.dsr-video:hover img { transform: scale(1.035); }
.dsr-video .dsr-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.dsr-video .dsr-play span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 241, 212, 0.92);
  color: var(--sunset);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 14px 30px -12px rgba(18, 34, 75, 0.5);
  transition: transform 0.32s var(--ease-out), background 0.32s var(--ease-out), color 0.32s var(--ease-out);
}
.dsr-video:hover .dsr-play span { transform: scale(1.08); background: var(--sunset); color: var(--stille); }
.dsr-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.dsr-video--portrait { aspect-ratio: 9 / 16; max-width: 360px; margin: 0 auto; }
.dsr-video--wide { aspect-ratio: 16 / 9; }

/* Tim-Video: 16:9 auf Desktop, 9:16-Hochformat auf Mobilgeraeten */
.dsr-video-only-mobile { display: none; }

.dsr-video-caption {
  margin-top: 14px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.1px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18, 34, 75, 0.55);
}

/* ---------- Video + Nutzenargumente (Aufbau des Originals) ---------- */
.dsr-pitch {
  position: relative;
  padding: 0 0 clamp(56px, 9vh, 100px);
}
.dsr-pitch .dsr-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
/* min-width: 0, damit die breite Marquee-Spur die Grid-Spalte nicht aufsprengt */
.dsr-pitch-media { position: sticky; top: 92px; min-width: 0; }

/* Bekannt aus – direkt unter dem Video */
.dsr-press-inline { margin-top: 34px; text-align: center; }
.dsr-press-label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 25.3px;
  font-weight: 600;
  color: var(--sein);
  margin-bottom: 20px;
}
/* Bekannt-aus: automatisch durchlaufender Logo-Slider (Endlos-Marquee).
   Die Spur enthaelt den Logo-Satz doppelt; -50% entspricht damit exakt
   einem Satz und der Loop springt nicht. */
.dsr-press-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.dsr-press-logos {
  display: flex;
  width: max-content;
  animation: dsr-marquee 26s linear infinite;
}
.dsr-press-logos:hover { animation-play-state: paused; }
.dsr-press-set {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 76px);
  padding-right: clamp(44px, 5vw, 76px);
}
.dsr-press-logos img {
  height: 96px;
  width: auto;
  opacity: 0.95;
}
@keyframes dsr-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .dsr-press-logos { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
}

/* Nutzenargumente */
.dsr-pitch-points { display: grid; gap: clamp(26px, 4vh, 38px); padding-top: 4px; }
.dsr-point { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.dsr-point-ic {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(244, 138, 40, 0.12);
  color: var(--sunset);
  margin-top: 2px;
}
.dsr-point h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(24.2px, 2.5vw, 30.8px);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--sein);
  margin-bottom: 8px;
  text-wrap: balance;
}
.dsr-point p {
  font-size: 16.7px;
  line-height: 1.68;
  color: rgba(18, 34, 75, 0.75);
}

/* ---------- Sections ---------- */
.dsr-section { padding: clamp(64px, 10vh, 120px) 0; }
.dsr-white { background: var(--seite); }
.dsr-cream { background: var(--sektion); }

.dsr-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(31.5px, 4vw, 50.4px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 14px 0 18px;
}
.dsr-h2 em { font-style: italic; color: inherit; }

/* ---------- CTA band (hell wie im Original, Orange nur im Button) ---------- */
.dsr-band {
  background: var(--sektion);
  color: var(--sein);
  padding: clamp(54px, 8vh, 88px) 0;
}
.dsr-band .dsr-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.dsr-band .dsr-eyebrow { color: var(--sunset); }
.dsr-band-date {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(29.4px, 3.6vw, 46.2px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.dsr-band-date em { font-style: italic; color: inherit; }

/* ---------- Audience ---------- */
.dsr-audience .dsr-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}
.dsr-audience-intro { position: sticky; top: 90px; }
.dsr-audience-intro p { color: rgba(18, 34, 75, 0.75); max-width: 46ch; margin-bottom: 30px; }
.dsr-audience-list { border-top: 1px solid rgba(18, 34, 75, 0.1); }
.dsr-audience-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(18, 34, 75, 0.1);
}
.dsr-audience-item .dsr-check {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 138, 40, 0.13);
  color: var(--sunset);
  margin-top: 2px;
}
/* Zielgruppen: runde Personenfotos wie auf der Original-Seite */
.dsr-audience-photo {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px -10px rgba(18, 34, 75, 0.4);
}
.dsr-audience-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 24.2px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.dsr-audience-item p { font-size: 16.1px; color: rgba(18, 34, 75, 0.65); max-width: 46ch; }

/* ---------- Video testimonials ---------- */
.dsr-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 34px);
  margin-top: clamp(30px, 5vh, 52px);
}
.dsr-videos-grid .dsr-video { border-radius: 14px; box-shadow: 0 26px 54px -26px rgba(18, 34, 75, 0.45); }
.dsr-videos-grid .dsr-play span { width: 56px; height: 56px; }

/* ---------- Quote band (audience photo, Koralle wie im Original) ---------- */
.dsr-quote-band {
  position: relative;
  padding: clamp(90px, 16vh, 170px) 0;
  background-image: linear-gradient(115deg, rgba(18, 34, 75, 0.88) 8%, rgba(200, 86, 29, 0.82) 60%, rgba(244, 138, 40, 0.78)), url("/assets/dsr/bg-audience.jpg");
  background-size: cover;
  background-position: center 30%;
  color: #ffffff;
  text-align: left;
}
.dsr-quote-band .dsr-wrap { max-width: 980px; }
.dsr-quote-band .dsr-eyebrow { color: rgba(255, 255, 255, 0.88); }
.dsr-quote-band blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(35.7px, 5.2vw, 67.2px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 20px 0 14px;
  text-wrap: balance;
}
.dsr-quote-band cite {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 12.6px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 34px;
}
.dsr-quote-band p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20.9px, 2.2vw, 26.4px);
  line-height: 1.45;
  max-width: 42ch;
  margin-bottom: 36px;
}

/* ---------- About Tim ---------- */
.dsr-about .dsr-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.dsr-about-photo { position: relative; }
.dsr-about-photo img {
  border-radius: 16px;
  box-shadow: 0 40px 80px -34px rgba(18, 34, 75, 0.5);
}
.dsr-about-photo::after {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(200, 86, 29, 0.35);
  border-radius: 16px;
  z-index: -1;
}
.dsr-about-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20.9px, 2.2vw, 25.3px);
  line-height: 1.4;
  color: var(--sunset);
  margin: 16px 0 22px;
}
.dsr-about p { color: rgba(18, 34, 75, 0.78); margin-bottom: 14px; max-width: 58ch; }
.dsr-about p strong { color: var(--sein); font-weight: 600; }
.dsr-about .dsr-btn { margin-top: 14px; }

/* ---------- Text testimonials ---------- */
.dsr-voices { column-count: 2; column-gap: 26px; margin-top: clamp(30px, 5vh, 52px); }
.dsr-voice {
  break-inside: avoid;
  background: var(--karte);
  border: 1px solid rgba(18, 34, 75, 0.07);
  border-radius: 16px;
  padding: 30px 28px;
  margin-bottom: 26px;
}
.dsr-voice p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 20.1px;
  line-height: 1.5;
  color: rgba(18, 34, 75, 0.88);
  margin-bottom: 18px;
}
.dsr-voice footer { display: flex; align-items: center; gap: 12px; }
.dsr-voice .dsr-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 138, 40, 0.16);
  color: var(--sunset);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.8px;
  letter-spacing: 0.05em;
}
.dsr-voice .dsr-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.6px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sein);
}
.dsr-voice .dsr-place {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18, 34, 75, 0.45);
  margin-top: 2px;
}

/* ---------- Method cards ---------- */
.dsr-methods { display: grid; gap: clamp(24px, 4vh, 40px); margin-top: clamp(30px, 5vh, 52px); }
.dsr-method {
  border-radius: 22px;
  padding: clamp(40px, 6vw, 76px);
  color: var(--stille);
}
.dsr-method--warm {
  background: linear-gradient(135deg, var(--sunset) 4%, #d96a24 55%, var(--strahlen));
  box-shadow: 0 40px 80px -36px rgba(200, 86, 29, 0.6);
}
.dsr-method--deep {
  background: linear-gradient(135deg, #0d1a3d 4%, var(--sein) 60%, #1c3266);
  box-shadow: 0 40px 80px -36px rgba(18, 34, 75, 0.65);
}
.dsr-method .dsr-eyebrow { color: rgba(255, 241, 212, 0.72); }
.dsr-method--deep .dsr-eyebrow { color: var(--gold); }
.dsr-method h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(29.4px, 3.6vw, 44.1px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 22px;
}
.dsr-method h3 em { font-style: italic; color: var(--gold); }
.dsr-method-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.dsr-method p { font-size: 16.7px; line-height: 1.7; color: rgba(255, 241, 212, 0.88); margin-bottom: 13px; }
.dsr-method p strong { color: #ffffff; font-weight: 600; }
.dsr-method-quote {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 241, 212, 0.25);
}
.dsr-method-quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(18.7px, 2vw, 23.1px);
  line-height: 1.45;
}
.dsr-method-quote cite {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 12.1px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 241, 212, 0.65);
}

/* ---------- Legal notes ---------- */
.dsr-legal-notes { padding: clamp(48px, 7vh, 76px) 0; background: var(--sektion); border-top: 1px solid rgba(18, 34, 75, 0.08); }
.dsr-legal-notes h2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.6px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(18, 34, 75, 0.55);
  margin-bottom: 22px;
}
.dsr-legal-notes ul { list-style: none; max-width: 860px; }
.dsr-legal-notes li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14.4px;
  line-height: 1.6;
  color: rgba(18, 34, 75, 0.6);
  border-top: 1px solid rgba(18, 34, 75, 0.06);
}
.dsr-legal-notes li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200, 86, 29, 0.45);
}

/* ---------- Footer ---------- */
.dsr-footer {
  padding: 30px 24px 40px;
  text-align: center;
  background: #000000;
}
.dsr-footer p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.1px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}
.dsr-footer a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.1px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.dsr-footer a:hover { color: var(--strahlen); border-color: var(--strahlen); }

/* ---------- Modal ---------- */
.dsr-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dsr-modal.is-open { display: flex; }
.dsr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 34, 75, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.dsr-modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--seite);
  border: 1px solid rgba(18, 34, 75, 0.1);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 50px 100px -30px rgba(0, 0, 0, 0.5);
  padding: 40px 38px 34px;
  animation: dsr-modal-in 0.45s var(--ease-out);
}
@keyframes dsr-modal-in {
  from { opacity: 0; transform: translate3d(0, 22px, 0) scale(0.97); }
  to   { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
.dsr-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 34, 75, 0.07);
  color: var(--sein);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s var(--ease-out);
}
.dsr-modal-close:hover { background: rgba(18, 34, 75, 0.14); }
.dsr-modal-close:active { transform: scale(0.94); }
/* Kopfzeile im Modal endet vor dem Schliessen-Button (36px + Abstand),
   sonst laeuft "19:30 Uhr" unter das X. */
.dsr-modal-card .dsr-eyebrow { display: block; padding-right: 48px; }
.dsr-modal-card h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 33px;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 10px 0 12px;
}
.dsr-modal-card h2 em { font-style: italic; color: var(--sunset); }
.dsr-modal-card .dsr-modal-note {
  font-size: 14.9px;
  line-height: 1.6;
  color: rgba(18, 34, 75, 0.65);
  margin-bottom: 26px;
}
.dsr-field { margin-bottom: 16px; }
.dsr-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18, 34, 75, 0.6);
  margin-bottom: 7px;
}
.dsr-field input[type="text"],
.dsr-field input[type="email"] {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 17.2px;
  color: var(--sein);
  background: #ffffff;
  border: 1px solid rgba(18, 34, 75, 0.18);
  border-radius: 8px;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.dsr-field input:focus {
  border-color: var(--strahlen);
  box-shadow: 0 0 0 3px rgba(244, 138, 40, 0.18);
}
.dsr-field.has-error input { border-color: #b3401f; }
.dsr-field .dsr-error {
  display: none;
  font-size: 13.8px;
  color: #b3401f;
  margin-top: 6px;
}
.dsr-field.has-error .dsr-error { display: block; }
.dsr-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.4px;
  line-height: 1.55;
  color: rgba(18, 34, 75, 0.7);
  margin: 20px 0 22px;
}
.dsr-consent input { margin-top: 3px; accent-color: var(--sunset); width: 16px; height: 16px; flex: 0 0 auto; }
.dsr-consent a { color: var(--sein); }
.dsr-consent.has-error { color: #b3401f; }
.dsr-consent.has-error a { color: #b3401f; }
.dsr-modal-card .dsr-btn { width: 100%; }
.dsr-modal-card .dsr-btn[disabled] { opacity: 0.6; cursor: wait; }
.dsr-form-feedback { display: none; font-size: 14.9px; line-height: 1.55; border-radius: 8px; padding: 12px 14px; margin-top: 16px; }
.dsr-form-feedback.is-error { display: block; background: rgba(179, 64, 31, 0.1); color: #8f3115; }
.dsr-modal-success { display: none; text-align: center; padding: 26px 0 10px; }
.dsr-modal.show-success .dsr-modal-success { display: block; }
.dsr-modal.show-success .dsr-modal-form { display: none; }
.dsr-modal-success .dsr-success-ic {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 138, 40, 0.16);
  color: var(--sunset);
  margin: 0 auto 20px;
}
.dsr-modal-success h2 { margin-bottom: 10px; }
.dsr-modal-success p { font-size: 15.5px; color: rgba(18, 34, 75, 0.7); max-width: 34ch; margin: 0 auto; }

/* ---------- Scroll reveal ---------- */
.dsr-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.dsr-reveal.in-view { opacity: 1; transform: translate3d(0, 0, 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dsr-reveal { opacity: 1; transform: none; transition: none; }
  .dsr-hero::before { animation: none; }
  .dsr-modal-card { animation: none; }
  .dsr-btn--pulse { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .dsr-pitch .dsr-wrap { grid-template-columns: 1fr; gap: 40px; }
  .dsr-pitch-media { position: static; }
  .dsr-video--portrait { max-width: 320px; }
  .dsr-audience .dsr-wrap { grid-template-columns: 1fr; }
  .dsr-audience-intro { position: static; }
  .dsr-about .dsr-wrap { grid-template-columns: 1fr; }
  .dsr-about-photo { max-width: 420px; }
  .dsr-method-cols { grid-template-columns: 1fr; }
  .dsr-voices { column-count: 1; }
}
@media (max-width: 640px) {
  .dsr-video-only-desktop { display: none; }
  .dsr-video-only-mobile { display: block; }
  .dsr-topbar .dsr-wrap { gap: 10px; justify-content: space-between; }
  .dsr-topbar span { font-size: 10.9px; letter-spacing: 0.1em; }
  .dsr-point { grid-template-columns: 36px 1fr; gap: 13px; }
  .dsr-point-ic { width: 36px; height: 36px; border-radius: 11px; }
  .dsr-point-ic svg { width: 18px; height: 18px; }
  .dsr-press-set { gap: 30px; padding-right: 30px; }
  .dsr-press-logos img { height: 56px; }
  .dsr-videos-grid { grid-template-columns: 1fr; }
  /* Die Knoepfe stehen bereits mittig; Vorzeile und Datum blieben aber
     linksbuendig, obwohl der Kopfbereich darueber zentriert ist. */
  .dsr-band .dsr-wrap { flex-direction: column; align-items: center; text-align: center; }
  /* CTA-Buttons in Band, Zielgruppe und Zitat-Band mittig (Wunsch vom 06.08.2026) */
  .dsr-band .dsr-btn,
  .dsr-audience-intro .dsr-btn,
  .dsr-quote-band .dsr-btn,
  .dsr-about .dsr-btn {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .dsr-modal-card { padding: 32px 24px 26px; }
  .dsr-hero-cta .dsr-btn { width: 100%; }
}

/* ============================================================
   DANKE-SEITE
   ============================================================ */

.dsr-danke-body { background: var(--seite); }

.dsr-danke-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vh, 92px) 0 clamp(28px, 4vh, 48px);
  text-align: center;
}
/* Der erste Schritt schloss mit 192px Leerraum an die Begruessung an -
   Hero-Unterkante und Sektions-Oberkante summierten sich. */
.dsr-danke-hero + .dsr-section { padding-top: clamp(32px, 4.5vh, 56px); }
.dsr-danke-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: 1000px;
  height: 700px;
  /* Verlauf laeuft mit closest-side exakt am Elementrand transparent aus -
     keine border-radius-Beschneidung mehr, die sichtbare Kanten erzeugt. */
  background: radial-gradient(ellipse closest-side at center, rgba(244, 185, 64, 0.3), rgba(244, 138, 40, 0.08) 55%, transparent 98%);
  pointer-events: none;
}
.dsr-danke-hero .dsr-wrap { position: relative; max-width: 760px; }

.dsr-danke-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.1px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #16804f;
  background: rgba(22, 128, 79, 0.1);
  border: 1px solid rgba(22, 128, 79, 0.22);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 22px;
}

.dsr-danke-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(44.1px, 6.8vw, 79.8px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--sein);
  margin-bottom: 26px;
}
.dsr-danke-h1 em { font-style: italic; color: var(--sunset); }
.dsr-danke-lead { margin-top: 4px; }

/* Schritte */
.dsr-danke-wrap { max-width: 820px; }
/* Schritte: komplett mittig zentriert - Nummer ueber der Ueberschrift. */
.dsr-step { display: grid; grid-template-columns: 1fr; gap: 18px; justify-items: center; text-align: center; }
.dsr-step-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sunset);
  color: var(--stille);
  /* DM Sans statt Cormorant: dessen Mediaeval-Ziffern lassen die 1 wie ein
     roemisches I aussehen. Lining-/Tabular-Ziffern stehen zudem symmetrisch
     auf der Mittelachse, sodass die Zahl wirklich mittig im Kreis sitzt. */
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: 'lnum' 1, 'tnum' 1;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 14px 28px -14px rgba(200, 86, 29, 0.6);
}
.dsr-step-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(27.3px, 3.6vw, 39.9px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--sein);
  margin-bottom: 14px;
  text-wrap: balance;
}
.dsr-step-body p { font-size: 17.2px; line-height: 1.7; color: rgba(18, 34, 75, 0.78); margin-bottom: 12px; max-width: 58ch; margin-inline: auto; }
.dsr-step-body strong { color: var(--sein); font-weight: 600; }
.dsr-step-hint {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  max-width: 58ch;
  margin-inline: auto;
  font-size: 13.5px !important;
  color: rgba(18, 34, 75, 0.62) !important;
  background: rgba(244, 185, 64, 0.14);
  border-radius: 10px;
  padding: 13px 16px;
}
.dsr-step-hint svg { flex: 0 0 auto; margin-top: 2px; color: var(--sunset); }

/* Mail-Screenshot */
.dsr-mail-shot { margin-top: 26px; }
.dsr-mail-shot figcaption {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.1px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(18, 34, 75, 0.5);
  margin-bottom: 12px;
}
.dsr-mail-shot img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(18, 34, 75, 0.1);
  box-shadow: 0 30px 60px -30px rgba(18, 34, 75, 0.4);
}

/* Termin-Karte */
.dsr-event-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  border: 1px solid rgba(18, 34, 75, 0.1);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 28px);
  margin: 22px 0 26px;
  box-shadow: 0 24px 50px -30px rgba(18, 34, 75, 0.32);
}
.dsr-event-when { display: flex; gap: 13px; align-items: flex-start; }
.dsr-event-when svg { flex: 0 0 auto; margin-top: 3px; color: var(--sunset); }
.dsr-event-when strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--sein);
}
.dsr-event-when strong sup { font-size: 0.55em; opacity: 0.6; }
/* Nur die direkte Zeile umbrechen — nicht die Datums-Spans darin. */
.dsr-event-when > div > span {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(18, 34, 75, 0.6);
  margin-top: 5px;
}
.dsr-event-when > div > span span { display: inline; }

/* Anmelde-Button in der Termin-Karte mittig ausrichten (er steht durch
   flex-wrap praktisch immer in einer eigenen Zeile). */
.dsr-event-card .dsr-btn { margin-inline: auto; }

/* Kalender-Download */
.dsr-calendar { text-align: center; padding-top: 4px; }
.dsr-calendar-label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 23.1px;
  font-weight: 500;
  color: var(--sein);
  margin-bottom: 16px;
}
.dsr-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.2px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sein);
  background: #ffffff;
  border: 1px solid rgba(18, 34, 75, 0.18);
  border-radius: 8px;
  padding: 15px 26px;
  transition: border-color 0.3s var(--ease-out), transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.dsr-calendar-btn svg { color: var(--sunset); }
.dsr-calendar-btn:hover {
  border-color: var(--sunset);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -18px rgba(200, 86, 29, 0.5);
}
.dsr-calendar-btn:active { transform: translateY(0) scale(0.985); }
.dsr-step-body .dsr-calendar-hint {
  font-size: 14.4px;
  color: rgba(18, 34, 75, 0.55);
  margin: 14px auto 0;
  max-width: 44ch;
}

.dsr-danke-quote { padding: clamp(70px, 12vh, 130px) 0; }

@media (max-width: 640px) {
  .dsr-step { grid-template-columns: 1fr; gap: 12px; }
  .dsr-step-num { width: 42px; height: 42px; font-size: 18px; }
  .dsr-event-card { flex-direction: column; align-items: stretch; }
  .dsr-event-card .dsr-btn { width: 100%; }
}
