:root {
  --ink: #071740;
  --muted: #52607a;
  --paper: #f8fbff;
  --line: #d9e2f0;
  --teal: #0a79ff;
  --red: #f22d36;
  --gold: #ff8a18;
  --blue: #063ac7;
  --orange: #ff7b16;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(7, 23, 64, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--white);
  padding: .7rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(7, 23, 64, .06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand-onair {
  display: inline-grid;
  min-width: 76px;
  min-height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 35, 35, .9);
  border-radius: 8px;
  padding: .35rem .55rem;
  color: #ff2020;
  background: #101114;
  box-shadow:
    inset 0 0 10px rgba(255, 25, 25, .18),
    0 10px 24px rgba(7, 23, 64, .16);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-shadow: 0 0 4px rgba(255, 25, 25, .8), 0 0 10px rgba(255, 25, 25, .42);
  animation: onAirPulse 2.1s ease-in-out infinite;
}

@keyframes onAirPulse {
  0%, 100% {
    color: #ff2020;
    border-color: rgba(255, 35, 35, .85);
    box-shadow:
      inset 0 0 8px rgba(255, 25, 25, .18),
      0 10px 24px rgba(7, 23, 64, .16);
    text-shadow: 0 0 4px rgba(255, 25, 25, .82), 0 0 10px rgba(255, 25, 25, .45);
  }
  50% {
    color: #ffefef;
    border-color: rgba(255, 74, 74, 1);
    box-shadow:
      inset 0 0 12px rgba(255, 25, 25, .28),
      0 0 18px rgba(255, 25, 25, .32),
      0 10px 24px rgba(7, 23, 64, .16);
    text-shadow: 0 0 5px rgba(255, 25, 25, .95), 0 0 14px rgba(255, 25, 25, .72);
  }
}

.brand small,
.eyebrow {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: .7rem .9rem;
  font: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  border-radius: 10px;
  padding: .75rem 1rem;
  color: #101828;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--white);
}

.site-nav a[aria-current="page"],
.site-nav .nav-active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(6, 58, 199, .18);
}

.site-nav a[aria-current="page"]:hover,
.site-nav .nav-active:hover {
  background: #052f9f;
}

.site-nav .nav-cta {
  margin-left: .45rem;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(6, 58, 199, .18);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #111418;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 15, 19, .92) 0%, rgba(12, 15, 19, .7) 38%, rgba(12, 15, 19, .18) 100%),
    url("radio-recruiting-hero.jpg") center/cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(760px, 92vw);
  padding: clamp(7rem, 12vw, 10rem) clamp(1rem, 5vw, 5rem) clamp(4rem, 9vw, 7rem);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 8vw, 7.5rem);
  line-height: .92;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: .45rem;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.home-hero .hero-actions {
  max-width: 520px;
}

.button {
  appearance: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: .85rem 1.15rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
}

.primary {
  color: var(--white);
  background: var(--blue);
}

.secondary {
  color: var(--white);
  background: linear-gradient(135deg, #ff9f18, #ff5d1c);
}

.audio-explain-button {
  flex-basis: 100%;
  flex-direction: row;
  align-items: center;
  width: fit-content;
  min-width: 0;
  border-color: rgba(255, 255, 255, .34);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), transparent 48%),
    linear-gradient(135deg, #18b83d, #02862e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .4),
    0 14px 30px rgba(2, 134, 46, .26);
  gap: .72rem;
}

.audio-explain-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 12px,
      rgba(255, 255, 255, .22) 12px 15px,
      transparent 15px 25px
    );
  transform: translateX(-18%);
}

.audio-explain-button.is-playing::before {
  opacity: .55;
  animation: audioButtonBars 1.15s linear infinite;
}

.audio-explain-button.is-playing .audio-explain-button__icon {
  animation: audioButtonPulse 1.1s ease-in-out infinite;
}

.audio-explain-button__icon,
.audio-explain-button__text,
.audio-explain-button strong,
.audio-explain-button small {
  position: relative;
  z-index: 1;
}

.audio-explain-button__icon {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: #078a31;
  background: #ffffff;
  font-size: .92rem;
  line-height: 1;
  box-shadow: 0 7px 16px rgba(0, 0, 0, .18);
}

.audio-explain-button__text {
  display: grid;
  gap: .02rem;
  line-height: 1;
}

.audio-explain-button strong {
  font-size: clamp(1.18rem, 1.75vw, 1.42rem);
  letter-spacing: .04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .18);
}

.audio-explain-button small {
  color: rgba(255, 255, 255, .95);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.audio-explain-button:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .2), transparent 48%),
    linear-gradient(135deg, #20ca48, #027d2b);
}

.primary::after,
.secondary::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 34%, rgba(255, 255, 255, .3) 50%, transparent 66%);
  transform: translateX(-70%) skewX(-18deg);
  animation: buttonWipe 3.8s ease-in-out infinite;
}

.secondary::after {
  animation-delay: .35s;
}

.primary:hover::after,
.secondary:hover::after {
  animation-duration: 1.5s;
}

@keyframes buttonWipe {
  0%,
  42% {
    transform: translateX(-70%) skewX(-18deg);
  }

  76%,
  100% {
    transform: translateX(70%) skewX(-18deg);
  }
}

@keyframes audioButtonBars {
  from {
    transform: translateX(-18%);
  }

  to {
    transform: translateX(18%);
  }
}

@keyframes audioButtonPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 7px 16px rgba(0, 0, 0, .18);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .2), 0 7px 16px rgba(0, 0, 0, .18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary::after,
  .secondary::after,
  .audio-explain-button.is-playing::before,
  .audio-explain-button.is-playing .audio-explain-button__icon {
    animation: none;
  }
}

.ghost {
  border-color: var(--line);
  background: var(--white);
}

.section,
.page-hero {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.feature-grid,
.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature,
.columns article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1.3rem;
  box-shadow: 0 10px 35px rgba(21, 23, 27, .06);
}

.feature span {
  color: var(--teal);
  font-weight: 900;
}

.process-band {
  color: var(--white);
  background: var(--ink);
}

.process-band .eyebrow {
  color: rgba(255, 255, 255, .65);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, .22);
}

.steps div {
  min-height: 190px;
  padding: 1.2rem;
  background: #20242b;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: .7rem;
  color: rgba(255, 255, 255, .72);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 166, 166, .18), transparent 26rem),
    linear-gradient(135deg, #ffffff, #eef2ef);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.page-hero p {
  max-width: 820px;
  color: #3e444b;
  font-size: 1.15rem;
}

.problem-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .86) 48%, rgba(255, 255, 255, .56) 100%),
    url("radio-recruiting-hero.jpg") center right / cover no-repeat;
}

.problem-hero h1 {
  max-width: 940px;
}

.problem-hero > .eyebrow {
  color: var(--red);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  letter-spacing: .12em;
}

.problem-intro {
  background: #ffffff;
}

.problem-photo {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 23, 64, .16);
}

.problem-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(7, 23, 64, .18)),
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 38%);
  pointer-events: none;
}

.problem-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 64% center;
}

.problem-copy {
  color: #24304a;
  font-size: 1.08rem;
}

.problem-band {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 123, 22, .22), transparent 22rem),
    linear-gradient(135deg, #071740, #063ac7);
}

.problem-band .eyebrow,
.problem-band p {
  color: rgba(255, 255, 255, .82);
}

.problem-band__inner {
  width: min(980px, 100%);
}

.problem-band h2 {
  max-width: 920px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: #f7faff;
}

.problem-grid article {
  border: 1px solid rgba(6, 58, 199, .14);
  border-radius: 8px;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 14px 38px rgba(7, 23, 64, .06);
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: .85rem;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.problem-note {
  margin-top: 1.4rem;
  border-left: 4px solid var(--orange);
  background: #fff8f0;
  padding: 1rem 1.15rem;
  color: #071740;
}

.spot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 123, 22, .16), transparent 20rem),
    linear-gradient(135deg, #ffffff, #eef5ff);
}

.spot-hero h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  line-height: .98;
  overflow-wrap: normal;
}

.spot-hero > div > .eyebrow {
  color: var(--red);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  letter-spacing: .12em;
}

.spot-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(7, 23, 64, .18);
}

.spot-hero__image img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center center;
}

.spot-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: #f7faff;
}

.spot-flow article,
.spot-topic-list article {
  border: 1px solid rgba(6, 58, 199, .14);
  border-radius: 8px;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 14px 38px rgba(7, 23, 64, .06);
}

.spot-flow span {
  display: inline-flex;
  margin-bottom: .85rem;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .08em;
}

.spot-band {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 23, 64, .95), rgba(6, 58, 199, .86)),
    url("recruiting-spot-studio.jpg") center / cover no-repeat;
}

.spot-band .eyebrow,
.spot-band p {
  color: rgba(255, 255, 255, .82);
}

.spot-band div {
  width: min(880px, 100%);
}

.media-analysis-note {
  margin-top: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
    rgba(7, 23, 64, .42);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .22);
  padding: 1.15rem 1.25rem;
  backdrop-filter: blur(10px);
}

.media-analysis-note span {
  display: inline-flex;
  margin-bottom: .45rem;
  color: #ffc247;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.media-analysis-note p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  font-weight: 750;
  line-height: 1.55;
}

.media-analysis-note--light {
  border-color: rgba(6, 58, 199, .18);
  border-left-color: var(--blue);
  background:
    linear-gradient(135deg, rgba(6, 58, 199, .08), rgba(255, 138, 24, .08)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(7, 23, 64, .1);
}

.media-analysis-note--light span {
  color: var(--blue);
}

.media-analysis-note--light p {
  color: #17233f;
}

.spot-topic-list {
  display: grid;
  gap: 1rem;
}

.station-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(10, 121, 255, .14), transparent 20rem),
    linear-gradient(135deg, #ffffff, #eef5ff);
}

.station-hero h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  line-height: .98;
}

.station-hero > div > .eyebrow {
  color: var(--red);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  letter-spacing: .12em;
}

.station-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 23, 64, .18);
}

.station-hero__image img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: #f7faff;
}

.station-grid article {
  border: 1px solid rgba(6, 58, 199, .14);
  border-radius: 8px;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 14px 38px rgba(7, 23, 64, .06);
}

.station-grid span {
  display: inline-flex;
  margin-bottom: .85rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .08em;
}

.station-band {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 23, 64, .95), rgba(6, 58, 199, .84)),
    url("richtiger-radiosender-planung.jpg") center / cover no-repeat;
}

.station-band .eyebrow,
.station-band p {
  color: rgba(255, 255, 255, .82);
}

.station-band div {
  width: min(900px, 100%);
}

.price-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 123, 22, .14), transparent 20rem),
    linear-gradient(135deg, #ffffff, #eef5ff);
}

.price-hero h1 {
  max-width: 850px;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
  line-height: .98;
}

.price-hero > div > .eyebrow {
  color: var(--red);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  letter-spacing: .12em;
}

.price-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 23, 64, .18);
}

.price-hero__image img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  background: #f7faff;
}

.price-invest-note {
  margin-top: 1.45rem;
  border: 1px solid rgba(255, 138, 24, .28);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 138, 24, .12), rgba(6, 58, 199, .06)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(7, 23, 64, .09);
  padding: 1.15rem 1.25rem;
}

.price-invest-note span {
  display: inline-flex;
  margin-bottom: .42rem;
  color: #d75c05;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.price-invest-note p {
  margin: 0;
  color: #17233f;
  font-size: clamp(1.02rem, 1.55vw, 1.16rem);
  font-weight: 780;
  line-height: 1.55;
}

.price-grid article {
  border: 1px solid rgba(6, 58, 199, .14);
  border-radius: 8px;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 14px 38px rgba(7, 23, 64, .06);
}

.price-grid span {
  display: inline-flex;
  margin-bottom: .85rem;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .08em;
}

.price-band {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 23, 64, .95), rgba(6, 58, 199, .82)),
    url("preise-mediaplanung.jpg") center / cover no-repeat;
}

.price-band .eyebrow,
.price-band p {
  color: rgba(255, 255, 255, .82);
}

.price-band div {
  width: min(900px, 100%);
}

.price-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  gap: clamp(2rem, 5vw, 5rem);
  background: #ffffff;
}

.contact-page-hero {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 123, 22, .16), transparent 24rem),
    linear-gradient(135deg, #ffffff, #eef5ff);
}

.contact-page-hero > .eyebrow {
  color: var(--red);
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  letter-spacing: .12em;
}

.contact-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  background: #f7faff;
}

.contact-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid rgba(6, 58, 199, .14);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 0 14px 38px rgba(7, 23, 64, .06);
}

.contact-card h2 {
  margin-bottom: 1rem;
}

.contact-card p:not(.eyebrow) {
  color: #24304a;
}

.contact-card--dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 123, 22, .22), transparent 18rem),
    linear-gradient(135deg, #071740, #063ac7);
}

.contact-card--dark .eyebrow,
.contact-card--dark p,
.contact-card--dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, .82);
}

.contact-details {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  background: #ffffff;
}

.contact-detail-list {
  display: grid;
  gap: .85rem;
}

.contact-detail-list a {
  display: grid;
  gap: .15rem;
  border: 1px solid rgba(6, 58, 199, .14);
  border-radius: 8px;
  background: #f8fbff;
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-detail-list span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .problem-grid,
  .station-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spot-hero,
  .station-hero,
  .price-hero,
  .spot-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.access-steps {
  display: grid;
  width: min(720px, 100%);
  gap: 1rem;
  margin-top: 2rem;
}

.access-steps div {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
  border: 1px solid rgba(21, 23, 27, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .7);
  padding: 1rem 1.25rem;
}

.access-steps span {
  font-size: 1.55rem;
}

.access-steps strong {
  font-size: 1.02rem;
}

.sample-request-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 86% 18%, rgba(10, 121, 255, .12), transparent 18rem),
    linear-gradient(135deg, #ffffff, #e9f8f5);
}

.sample-request-hero figure {
  margin: 0;
  overflow: visible;
  border-radius: 8px;
}

.sample-request-hero img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
}

.compact {
  min-height: 58vh;
}

.form-section {
  padding-top: 2rem;
}

.lead-form {
  width: min(960px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(1rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

.compact-form {
  width: min(620px, 100%);
}

.form-note {
  margin: -.2rem 0 1rem;
  color: var(--muted);
  font-weight: 800;
}

.sample-access-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 82% 22%, rgba(10, 121, 255, .16), transparent 19rem),
    linear-gradient(135deg, #ffffff, #eef5ff);
}

.sample-access-hero h1 {
  max-width: 820px;
}

.sample-access-hero > div > .eyebrow {
  color: #14894a;
}

.sample-access-hero figure {
  margin: 0;
  overflow: visible;
  border-radius: 8px;
}

.sample-access-hero img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
}

.thanks-access {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(10, 121, 255, .16), transparent 20rem),
    radial-gradient(circle at 18% 70%, rgba(255, 138, 24, .12), transparent 22rem),
    linear-gradient(135deg, #ffffff, #eef5ff);
}

.thanks-access h1 {
  max-width: 840px;
}

.thanks-access__copy {
  max-width: 760px;
}

.thanks-access--simple .thanks-access__copy {
  max-width: 880px;
}

.thanks-access figure {
  margin: 0;
  overflow: visible;
  border-radius: 8px;
}

.thanks-access img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
}

.thanks-access .eyebrow {
  color: #14894a;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: .11em;
}

.thanks-access__copy > .button {
  margin-top: 1.35rem;
}

.thanks-button {
  background: linear-gradient(135deg, #18a558, #0f7f43);
  box-shadow: 0 16px 34px rgba(15, 127, 67, .22);
}

.thanks-button:hover {
  background: linear-gradient(135deg, #20b864, #0d713b);
}

.thanks-confirmation {
  margin-top: 1.25rem;
  border: 1px solid rgba(6, 58, 199, .18);
  border-left: 5px solid var(--blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 42px rgba(7, 23, 64, .08);
  padding: 1rem 1.15rem;
}

.thanks-confirmation span {
  display: inline-flex;
  margin-bottom: .35rem;
  color: #14894a;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.thanks-confirmation p {
  margin: 0;
  color: #17233f;
  font-size: 1rem;
}

.thanks-confirmation--job {
  border-left-color: #14894a;
}

.thanks-confirmation--job span {
  color: #14894a;
}

.sample-section {
  background: var(--white);
}

.sample-intro {
  max-width: 1180px;
  margin-bottom: 2rem;
}

.sample-intro__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.sample-intro__top h2 {
  margin-bottom: 0;
}

.sample-intro__button {
  flex: 0 0 auto;
  min-height: 66px;
  border-radius: 999px;
  padding-inline: clamp(1.6rem, 3vw, 2.6rem);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  box-shadow: 0 22px 48px rgba(255, 101, 24, .34);
  white-space: nowrap;
}

.sample-intro__button::before {
  content: "➤";
  margin-right: .65rem;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sample-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8f5;
  padding: 1.1rem;
}

.sample-card h3 {
  min-height: 2.7rem;
  margin-bottom: .85rem;
  font-size: 1.05rem;
}

.sample-card audio {
  width: 100%;
}

.sample-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2.25rem;
}

.sample-bottom-actions .button {
  min-height: 62px;
  border-radius: 999px;
  padding-inline: clamp(1.7rem, 3vw, 2.8rem);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  box-shadow: 0 18px 38px rgba(6, 58, 199, .16);
}

.sample-bottom-actions .secondary {
  box-shadow: 0 22px 48px rgba(255, 101, 24, .34);
}

.sample-bottom-actions .secondary::before {
  content: "➤";
  margin-right: .65rem;
}

.mail-option {
  display: flex;
  width: min(960px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 1rem auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #20242b;
  color: var(--white);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.mail-option h2 {
  margin-bottom: .5rem;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.mail-option p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.mail-option .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.submission-choice-grid {
  display: grid;
  width: min(1100px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
  margin: 0 auto;
}

.submission-choice-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: clamp(1.25rem, 3vw, 1.7rem);
  box-shadow: var(--shadow);
}

.submission-choice-card.is-dark {
  border-color: #20242b;
  background: #20242b;
  color: var(--white);
}

.submission-choice-card h2 {
  max-width: 14ch;
  margin: .45rem 0 .75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.08;
}

.submission-choice-card p:not(.eyebrow) {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
}

.submission-choice-card.is-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, .78);
}

.submission-choice-card .button {
  width: fit-content;
  white-space: normal;
}

.submission-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: .35rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8cec8;
  border-radius: 8px;
  padding: .9rem;
  font: inherit;
  background: #fbfcfb;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(0, 166, 166, .22);
  border-color: var(--teal);
}

.is-invalid {
  border-color: var(--red);
}

.brevo-form-shell {
  width: min(960px, 100%);
  margin: 0 auto;
}

.sib-form-message-panel {
  display: none;
}

.brevo-message-panel {
  margin: 0 auto 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .9rem 1rem;
  font-weight: 800;
}

.brevo-message-panel-error {
  color: #661d1d;
  background: #ffeded;
  border-color: #ff4949;
}

.brevo-message-panel-success {
  color: #085229;
  background: #e7faf0;
  border-color: #13ce66;
}

.brevo-native-form .sib-form-block,
.brevo-native-form .form__entry,
.brevo-native-form .form__label-row,
.brevo-native-form .entry__field {
  display: block;
}

.brevo-native-form .entry__label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 800;
}

.brevo-native-form .entry__error {
  display: block;
  min-height: 0;
  margin: .35rem 0 0;
  font-weight: 700;
}

.input--hidden {
  display: none !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-weight: 600;
}

.consent input {
  width: auto;
  margin-top: .35rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.check-list {
  padding-left: 1.1rem;
}

.check-list li {
  margin-bottom: .7rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  color: rgba(255, 255, 255, .78);
  background: #101216;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .split,
  .feature-grid,
  .spot-hero,
  .station-hero,
  .price-hero,
  .sample-request-hero,
  .sample-access-hero,
  .thanks-access,
  .spot-flow,
  .station-grid,
  .price-grid,
  .price-summary,
  .contact-choice,
  .contact-details,
  .columns,
  .steps,
  .form-grid,
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82vh;
  }

  .sample-request-hero figure,
  .sample-access-hero figure,
  .thanks-access figure {
    width: min(70vw, 300px);
    max-height: 150px;
    justify-self: center;
  }

  .sample-request-hero img,
  .sample-access-hero img,
  .thanks-access img {
    width: auto;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin: 0 auto;
  }

  .hero-media {
    background:
      linear-gradient(0deg, rgba(12, 15, 19, .92) 0%, rgba(12, 15, 19, .55) 55%, rgba(12, 15, 19, .28) 100%),
      url("radio-recruiting-hero.jpg") center/cover no-repeat;
  }

  .contact-strip,
  .site-footer,
  .mail-option {
    align-items: flex-start;
    flex-direction: column;
  }

  .submission-choice-grid {
    grid-template-columns: 1fr;
  }

  .submission-choice-card {
    min-height: 0;
  }

  .submission-choice-card h2 {
    max-width: none;
  }

  .submission-choice-card .button {
    width: 100%;
  }

  .sample-intro__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-intro__button {
    width: 100%;
    white-space: normal;
  }

  .sample-bottom-actions .button {
    width: 100%;
  }

  .mail-option .button {
    width: 100%;
    white-space: normal;
  }
}

/* Startseite: helle Radio-Recruiting-Bühne nach Designgrundlage */
.home-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 6vw, 6.5rem) clamp(1rem, 2vw, 2rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 31%, rgba(255, 255, 255, .72) 45%, rgba(255, 255, 255, .18) 67%, rgba(255, 255, 255, .04) 100%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.08)),
    url("radio-recruiting-hero.jpg") center right / cover no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(6, 58, 199, .18) 1.1px, transparent 1.35px);
  background-size: 15px 15px;
  opacity: .34;
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, #000 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 240px;
  background:
    radial-gradient(ellipse at 82% 50%, rgba(255, 55, 40, .22), transparent 30%),
    linear-gradient(104deg, transparent 0 31%, rgba(255,255,255,.1) 32%, rgba(239,45,54,.46) 34%, rgba(255,125,24,.36) 36%, transparent 40%),
    linear-gradient(108deg, transparent 0 42%, rgba(255,255,255,.6) 43%, rgba(255, 58, 48, .5) 44%, transparent 48%),
    repeating-linear-gradient(102deg, transparent 0 20px, rgba(255,255,255,.22) 21px 23px, transparent 24px 44px);
  clip-path: polygon(0 54%, 18% 47%, 39% 52%, 58% 43%, 77% 32%, 100% 18%, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 22px rgba(239, 45, 54, .24));
  opacity: .82;
}

.home-hero__copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
  min-width: 0;
}

.home-hero .eyebrow {
  color: var(--red);
  letter-spacing: .14em;
}

.home-hero h1 {
  max-width: 12.8ch;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: clamp(2.9rem, 4.45vw, 4.25rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
  width: auto;
  max-width: 100%;
  background: linear-gradient(90deg, #f22d36, #ff8a18);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero .hero-copy {
  max-width: 760px;
  color: #081226;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.45;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin: 1.15rem 0 1.35rem;
}

.benefit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 26px rgba(7, 23, 64, .08);
  padding: 0 1.1rem;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.benefit::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--red);
  font-size: 1.05rem;
}

.benefit-pin::before { content: "●"; }
.benefit-wave::before { content: "≋"; font-size: 1.5rem; }
.benefit-mega::before { content: "▶"; }

.home-hero .button {
  min-height: 58px;
  border-radius: 999px;
  padding: 0 1.7rem;
  font-size: 1.05rem;
  box-shadow: 0 16px 34px rgba(6, 58, 199, .2);
}

.home-hero .audio-explain-button {
  min-height: 58px;
  border-radius: 999px;
  padding: 0 1.7rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .4),
    0 14px 30px rgba(2, 134, 46, .26);
}

.home-hero .secondary {
  box-shadow: 0 16px 34px rgba(255, 116, 24, .24);
}

.play-button::before,
.send-button::before {
  margin-right: .65rem;
  font-size: 1.15rem;
}

.play-button::before { content: "▶"; }
.send-button::before { content: "➤"; }

.branch-ticker {
  position: relative;
  width: min(740px, 100%);
  margin-top: 1.35rem;
  border: 1px solid rgba(6, 58, 199, .22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(7, 23, 64, .9), rgba(6, 58, 199, .72)),
    radial-gradient(circle at 92% 50%, rgba(10, 121, 255, .35), transparent 30%);
  box-shadow: 0 18px 42px rgba(7, 23, 64, .16);
  overflow: hidden;
  padding: 1rem 1.1rem 1rem 4.85rem;
  backdrop-filter: blur(14px);
}

.branch-ticker--wide {
  width: auto;
  margin: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding: 1.15rem clamp(1rem, 6vw, 6.5rem) 1.1rem calc(clamp(1rem, 6vw, 6.5rem) + 4.4rem);
  background:
    linear-gradient(135deg, rgba(7, 23, 64, .92), rgba(6, 58, 199, .74)),
    radial-gradient(circle at 84% 50%, rgba(112, 57, 255, .28), transparent 28%),
    radial-gradient(circle at 18% 50%, rgba(40, 219, 255, .18), transparent 24%);
  box-shadow: 0 16px 34px rgba(7, 23, 64, .12);
}

.branch-ticker--wide .level-meter {
  left: clamp(1rem, 6vw, 6.5rem);
}

.branch-ticker--wide .ticker-track {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.branch-ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 23, 64, .96), transparent 16%, transparent 84%, rgba(7, 23, 64, .92)),
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent);
}

.branch-ticker p {
  position: relative;
  z-index: 2;
  margin: 0 0 .6rem;
  color: #ffffff;
  font-size: .92rem;
  font-weight: 900;
}

.level-meter {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 42px;
  height: 48px;
  transform: translateY(-50%);
}

.level-meter span {
  width: 4px;
  min-height: 12px;
  border-radius: 99px;
  background: linear-gradient(180deg, #28dbff, #7b61ff 55%, #ff7b16);
  box-shadow: 0 0 12px rgba(40, 219, 255, .38);
  animation: meterPulse 1.15s ease-in-out infinite;
}

.level-meter span:nth-child(2) { animation-delay: .12s; }
.level-meter span:nth-child(3) { animation-delay: .24s; }
.level-meter span:nth-child(4) { animation-delay: .08s; }
.level-meter span:nth-child(5) { animation-delay: .18s; }
.level-meter span:nth-child(6) { animation-delay: .3s; }

.ticker-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.1rem;
  color: #bfe8ff;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 800;
  white-space: nowrap;
  animation: branchTicker 42s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
}

.ticker-track span::after {
  content: "•";
  color: rgba(255, 255, 255, .44);
  font-size: .9rem;
}

@keyframes branchTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes meterPulse {
  0%, 100% { height: 16px; opacity: .72; }
  30% { height: 44px; opacity: 1; }
  58% { height: 24px; opacity: .86; }
}

@keyframes onAirPulse {
  0%, 100% {
    opacity: .24;
    filter: brightness(.82);
    text-shadow:
      0 0 4px rgba(255, 120, 24, .72),
      0 0 10px rgba(255, 96, 18, .64),
      0 0 20px rgba(255, 96, 18, .46);
  }
  44%, 58% {
    opacity: .76;
    filter: brightness(1.28);
    text-shadow:
      0 0 6px rgba(255, 178, 65, 1),
      0 0 18px rgba(255, 104, 18, 1),
      0 0 34px rgba(255, 104, 18, .86),
      0 0 58px rgba(255, 104, 18, .52);
  }
}

.home-hero__visual {
  position: relative;
  z-index: 3;
  min-height: 500px;
}

.home-process {
  padding: 3.5rem clamp(.75rem, 2.5vw, 2.25rem) 3.4rem;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.6rem;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto 1.55rem;
  color: var(--ink);
}

.process-heading span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 58, 199, .32));
}

.process-heading span:last-child {
  background: linear-gradient(90deg, rgba(6, 58, 199, .32), transparent);
}

.process-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  text-align: center;
  text-transform: uppercase;
}

.process-audience {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem;
  width: fit-content;
  max-width: min(100%, 920px);
  margin: -.65rem auto 2rem;
  border: 1px solid rgba(6, 58, 199, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(7, 23, 64, .08);
  padding: .68rem 1.2rem;
  color: #2e3d5d;
  font-size: clamp(.92rem, 1.5vw, 1.05rem);
  font-weight: 800;
  text-align: center;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.85rem, 1.2vw, 1.35rem);
  max-width: 1560px;
  margin: 0 auto;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.35rem;
}

.process-cta .button {
  min-height: 68px;
  border-radius: 999px;
  padding-inline: clamp(2rem, 4vw, 3.2rem);
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  box-shadow: 0 22px 48px rgba(255, 101, 24, .34);
}

.process-cta .button::before {
  content: "➤";
  margin-right: .65rem;
  font-size: 1.05em;
}

.wiggle-button {
  animation: buttonWiggle 4.2s ease-in-out infinite;
  transform-origin: center;
}

.wiggle-button:hover {
  animation-duration: 1.4s;
}

@keyframes buttonWiggle {
  0%,
  72%,
  100% {
    transform: rotate(0deg) translateX(0);
  }

  76% {
    transform: rotate(-1.4deg) translateX(-1px);
  }

  80% {
    transform: rotate(1.4deg) translateX(1px);
  }

  84% {
    transform: rotate(-.9deg) translateX(-1px);
  }

  88% {
    transform: rotate(.9deg) translateX(1px);
  }
}

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: start;
  justify-items: center;
  min-height: 318px;
  border: 1px solid rgba(6, 58, 199, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(7, 23, 64, .06);
  padding: 1.7rem 1.35rem 1.55rem;
}

.process-step h3 {
  color: var(--ink);
  font-size: .98rem;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
}

.process-step p {
  margin-bottom: 0;
  color: #17233f;
  font-size: .9rem;
  line-height: 1.48;
  text-align: center;
}

.process-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(6, 58, 199, .08);
}

.process-icon span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6, 58, 199, .22);
}

.home-studio {
  display: grid;
  gap: 1.4rem;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 138, 24, .16), transparent 22rem),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.home-studio figure {
  position: relative;
  width: min(100%, 1280px);
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(7, 23, 64, .18);
  transform: translateY(-2.4rem);
}

.home-studio figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 58%, rgba(7, 23, 64, .48)),
    linear-gradient(90deg, rgba(6, 58, 199, .18), transparent 28%, transparent 72%, rgba(255, 105, 24, .14));
}

.home-studio img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.home-studio__copy {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.home-studio__copy h2 {
  max-width: 860px;
  margin-inline: auto;
}

.home-studio__copy p:last-child {
  max-width: 880px;
  margin-inline: auto;
  color: #2e3d5d;
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
}

@media (max-width: 1080px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 48%, rgba(255, 255, 255, .2) 72%, rgba(255,255,255,.05) 100%),
      url("radio-recruiting-hero.jpg") center right / cover no-repeat;
  }

  .home-hero__visual {
    min-height: 280px;
  }

  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(4) {
    border-right: 0;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-icon {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 680px) {
  .home-hero {
    padding-top: 2rem;
    padding-left: .85rem;
    padding-right: .85rem;
    background:
      linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 52%, rgba(255,255,255,.25) 74%, rgba(255,255,255,.05) 100%),
      url("radio-recruiting-hero.jpg") 67% bottom / auto 58% no-repeat,
      linear-gradient(180deg, #ffffff, #eaf2ff);
  }

  .home-hero__copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.4vw, 2.38rem);
    line-height: 1.02;
  }

  .home-hero .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .home-hero__visual {
    min-height: 235px;
  }

  .hero-benefits {
    gap: .55rem;
  }

  .benefit {
    min-height: 38px;
    padding: 0 .85rem;
    font-size: .76rem;
  }

  .home-hero .button {
    width: 100%;
    min-height: 54px;
    padding-left: .9rem;
    padding-right: .9rem;
    font-size: .92rem;
  }

  .branch-ticker {
    padding-left: 4.35rem;
    width: 100%;
    margin-top: 1rem;
  }

  .branch-ticker--wide {
    width: auto;
    margin: 0;
    padding: 1rem .85rem 1rem 4.45rem;
  }

  .branch-ticker--wide .level-meter {
    left: .95rem;
  }

  .process-heading {
    grid-template-columns: 1fr;
  }

  .process-heading span {
    display: none;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 58, 199, .18);
  }

  .process-step:last-child {
    border-bottom: 0;
  }
}
