@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&display=swap");

:root {
  --blue: #0649a8;
  --blue-deep: #06275f;
  --blue-soft: #eef4ff;
  --ink: #151821;
  --muted: #606675;
  --line: #e7ecf5;
  --paper: #ffffff;
  --wash: #f8faff;
  --pink: #f9e4e1;
  --mint: #e2f2ef;
  --lavender: #e7e5ff;
  --yellow: #fff1c5;
  --gray: #eceef2;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(14, 42, 92, .09);
  --page: minmax(22px, 1fr) minmax(0, 1120px) minmax(22px, 1fr);
  font-family: "Nunito Sans", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: var(--page);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(6, 73, 168, .08);
  backdrop-filter: blur(18px);
}
.site-header > * { grid-row: 1; align-self: center; }
.brand { grid-column: 2; width: max-content; padding: 22px 0; }
.brand img { width: 128px; height: auto; }
nav {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 140px;
}
nav a, .nav-cta {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
}
nav a {
  position: relative;
  padding: 8px 2px;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
nav a:hover::after, nav a[aria-current="page"]::after { transform: scaleX(1); }
nav a[aria-current="page"] { color: var(--blue-deep); }
.nav-cta {
  grid-column: 2;
  justify-self: end;
  padding: 10px 15px;
  border: 1px solid rgba(6, 73, 168, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover { background: var(--blue-soft); transform: translateY(-1px); }

.hero {
  display: grid;
  grid-template-columns: var(--page);
  align-items: center;
  min-height: 510px;
  padding: 58px 0 76px;
  overflow: hidden;
}
.hero > * { grid-column: 2; }
.label-hero, .prod-hero { text-align: center; }
.label-hero {
  min-height: 470px;
  padding-bottom: 48px;
}
.prod-hero {
  min-height: auto;
  padding: 62px 0 38px;
}
.prod-hero .hero-copy {
  max-width: 1080px;
}
.prod-hero .lead {
  max-width: 840px;
  margin-bottom: 18px;
  text-wrap: balance;
}
.prod-text {
  max-width: 790px;
  margin: 0 auto 12px;
  color: var(--muted);
  font-family: inherit;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.6;
}
.prod-text strong {
  color: var(--blue);
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 900;
}
.sponso-hero {
  grid-template-columns: minmax(24px, 1fr) minmax(0, 530px) minmax(320px, 420px) minmax(24px, 1fr);
  column-gap: 86px;
  padding-top: 34px;
}
.sponso-hero > .hero-copy {
  grid-column: 2;
  max-width: 530px;
  text-align: left;
}
.sponso-hero > .sound-stack {
  grid-column: 3;
  justify-self: stretch;
  width: auto;
  margin-top: 28px;
}
.hero-copy {
  max-width: 760px;
  margin: 0 auto;
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
h1 {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: clamp(36px, 4.15vw, 50px);
  line-height: 1.09;
  font-weight: 900;
  letter-spacing: -.01em;
}
.two-line-title span {
  display: block;
  white-space: nowrap;
}
.two-line-title {
  max-width: 920px;
}
h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(28px, 3.15vw, 38px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -.008em;
}
h3 {
  margin-bottom: 12px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -.008em;
}
.lead {
  max-width: 650px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.6;
}
.hero-lead-two-lines {
  max-width: 940px;
}
.hero-lead-two-lines span {
  display: block;
  white-space: nowrap;
}
.sponso-hero .lead { margin-left: 0; }
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sponso-hero .hero-actions { justify-content: flex-start; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(6, 73, 168, .18);
}
.secondary {
  color: var(--blue);
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 1px rgba(6, 73, 168, .08);
}

.blue-band {
  position: relative;
  display: grid;
  grid-template-columns: var(--page);
  align-items: center;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.2), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.12), transparent 24%),
    linear-gradient(110deg, #315faa, #0649a8);
}
.blue-band > * { grid-column: 2; }
.podcast-cloud {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  height: 430px;
  margin-bottom: 0;
  pointer-events: none;
}
.cover-orb {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  display: block;
  width: calc(96px * var(--s));
  aspect-ratio: 1;
  border-radius: 12px;
  transform: translate(-50%, -50%);
  animation: floatCover 7s ease-in-out infinite;
  animation-delay: var(--d);
}
.cover-orb::before,
.cover-orb::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 17px;
  pointer-events: none;
}
.cover-orb::before {
  border: 1px solid var(--aura);
  box-shadow: 0 0 28px var(--glow), inset 0 0 18px var(--glow);
  opacity: .66;
  animation: soundAura 3.8s ease-in-out infinite;
  animation-delay: var(--d);
}
.cover-orb::after {
  z-index: -1;
  inset: -42%;
  background:
    radial-gradient(circle, var(--glow) 0 32%, rgba(255,255,255,0) 70%);
  filter: blur(10px);
  opacity: .9;
  animation: softGlow 5.2s ease-in-out infinite;
  animation-delay: calc(var(--d) - .8s);
}
.cover-orb img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 38px rgba(0, 24, 76, .26);
}
.cover-editor .podcast-cloud {
  pointer-events: auto;
}
.cover-editor .cover-orb {
  cursor: grab;
  animation: none;
}
.cover-editor .cover-orb::before,
.cover-editor .cover-orb::after {
  animation: none;
}
.cover-editor .cover-orb.is-dragging {
  z-index: 6;
  cursor: grabbing;
}
.cover-editor .cover-orb.is-selected::before {
  border-color: rgba(255, 255, 255, .95);
  box-shadow: 0 0 0 2px rgba(6, 73, 168, .9), 0 0 30px rgba(255, 255, 255, .7);
  opacity: 1;
}
.cover-editor-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 31;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 34px rgba(6, 73, 168, .28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  touch-action: none;
  user-select: none;
  cursor: grab;
}
.cover-editor-toggle:hover {
  transform: translateY(-2px);
}
.cover-editor-toggle[aria-expanded="true"] {
  background: #08255c;
}
.cover-editor-toggle.is-moving {
  cursor: grabbing;
  transform: scale(.96);
}
.cover-editor-panel {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 30;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(6, 73, 168, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 60px rgba(14, 42, 92, .18);
}
.cover-editor-panel::after {
  content: "";
  position: absolute;
  left: clamp(22px, var(--anchor-x, 50%), calc(100% - 22px));
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(6, 73, 168, .16);
  border-bottom: 1px solid rgba(6, 73, 168, .16);
  background: rgba(255, 255, 255, .96);
  transform: translateX(-50%) rotate(45deg);
}
.cover-editor-panel.is-below-toggle::after {
  top: -7px;
  bottom: auto;
  border: 0;
  border-left: 1px solid rgba(6, 73, 168, .16);
  border-top: 1px solid rgba(6, 73, 168, .16);
}
.cover-editor-panel[hidden] {
  display: none;
}
.cover-editor-panel strong {
  color: var(--blue);
  font-size: 16px;
}
.cover-editor-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.cover-editor-field {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.cover-editor-field input[type="password"],
.cover-editor-field input[type="file"] {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.cover-editor-field input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
}
.cover-editor-error {
  color: #b42318 !important;
  font-weight: 800;
}
.cover-editor-panel textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font: 12px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  resize: vertical;
}
.cover-editor-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cover-editor-actions button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}
.cover-editor-actions button:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.cover-editor-actions button:disabled {
  cursor: not-allowed;
  opacity: .45;
}
.podcast-link-editor-toggle {
  position: fixed;
  right: 88px;
  bottom: 18px;
  z-index: 31;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: #08255c;
  color: #fff;
  box-shadow: 0 16px 34px rgba(6, 73, 168, .28);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
}
.podcast-link-editor-toggle:hover {
  transform: translateY(-2px);
}
.podcast-link-editor-toggle[aria-expanded="true"] {
  background: var(--blue);
}
.podcast-link-editor-panel {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 30;
  display: grid;
  gap: 12px;
  width: min(1120px, calc(100vw - 36px));
  max-height: min(760px, calc(100vh - 118px));
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(6, 73, 168, .16);
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 70px rgba(14, 42, 92, .2);
}
.podcast-link-editor-login {
  width: min(360px, calc(100vw - 36px));
}
.podcast-link-editor-panel[hidden] {
  display: none;
}
.podcast-link-editor-panel strong {
  color: var(--blue);
  font-size: 18px;
}
.podcast-link-editor-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.podcast-link-editor-panel label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.podcast-link-editor-panel input,
.podcast-link-editor-panel textarea {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.podcast-link-table-wrap {
  overflow: auto;
  border: 1px solid rgba(6, 73, 168, .1);
  border-radius: 14px;
}
.podcast-link-editor-panel table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
}
.podcast-link-editor-panel th,
.podcast-link-editor-panel td {
  padding: 9px;
  border-bottom: 1px solid rgba(6, 73, 168, .08);
  vertical-align: top;
  text-align: left;
}
.podcast-link-editor-panel thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f4f7ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.podcast-link-editor-panel tbody th {
  width: 170px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.25;
}
.podcast-link-editor-panel td {
  min-width: 190px;
}
.podcast-link-editor-panel td:first-of-type {
  min-width: 270px;
}
.podcast-link-editor-panel td input {
  font-size: 12px;
}
.podcast-link-editor-panel textarea {
  min-height: 118px;
  font: 12px/1.45 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  resize: vertical;
}
.podcast-link-editor-error {
  color: #b42318 !important;
  font-weight: 800;
}
.podcast-link-editor-status {
  color: var(--blue) !important;
  font-weight: 800;
}
.podcast-link-editor-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.podcast-link-editor-actions button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
}
.podcast-link-editor-actions button:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.stats {
  position: relative;
  z-index: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: min(100%, 980px);
  max-width: none;
  color: #fff;
  text-align: center;
  font-size: clamp(24px, 2.25vw, 31px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -.012em;
}
.stats strong,
.stats span {
  display: inline;
  opacity: .96;
}
@keyframes floatCover {
  0%, 100% { translate: 0 0; rotate: -1deg; }
  50% { translate: 0 -13px; rotate: 1.5deg; }
}
@keyframes soundAura {
  0%, 100% { transform: scale(.94); opacity: .38; }
  45% { transform: scale(1.18); opacity: .72; }
}
@keyframes softGlow {
  0%, 100% { transform: scale(.96); opacity: .52; }
  50% { transform: scale(1.12); opacity: .9; }
}
@keyframes podcasterCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes playerBarDance {
  0%, 100% { transform: scaleY(.72); }
  50% { transform: scaleY(1.12); }
}
@keyframes campaignDotAura {
  0%, 100% {
    box-shadow: 0 0 0 8px rgba(6, 73, 168, .08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(6, 73, 168, .03);
    transform: scale(1.08);
  }
}

.split-section, .proof-section, .contact-area, .production-copy, .podcast-network, .offer-lanes, .process, .catalog-hero {
  display: grid;
  grid-template-columns: var(--page);
}
.split-section {
  grid-template-columns: minmax(24px, 1fr) minmax(0, 600px) minmax(320px, 390px) minmax(24px, 1fr);
  column-gap: 92px;
  align-items: center;
  padding: 82px 0 92px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 48%, var(--wash) 100%);
}
.split-section > .copy {
  grid-column: 2;
  max-width: none;
}
.split-section > .podcaster-card {
  grid-column: 3;
  align-self: center;
  justify-self: stretch;
  width: auto;
  margin-top: 0;
}
.copy p, .production-copy p, .proof-copy p, .contact-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.copy p {
  max-width: 590px;
  margin-bottom: 18px;
}
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  padding-right: 34px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
}
.text-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  transform: translateY(-50%);
}
.text-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}
.podcaster-card {
  position: relative;
  display: grid;
  align-content: start;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 22px;
  min-height: 276px;
  padding: 30px;
  overflow: hidden;
  color: var(--blue-deep);
  text-decoration: none;
  border: 1px solid rgba(6, 73, 168, .14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 16%, rgba(6, 73, 168, .11), transparent 25%),
    linear-gradient(145deg, rgba(255,255,255,.98), #f2f7ff);
  box-shadow: 0 18px 46px rgba(14, 42, 92, .09);
  animation: podcasterCardFloat 7s ease-in-out infinite;
  transition: box-shadow .25s ease;
}
.podcaster-card::before {
  content: "";
  position: absolute;
  inset: auto -70px -88px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 73, 168, .11), transparent 68%);
  pointer-events: none;
}
.podcaster-card:hover {
  animation-play-state: paused;
  box-shadow: 0 24px 56px rgba(14, 42, 92, .14);
}
.card-kicker {
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(6, 73, 168, .07);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.podcaster-card h3 {
  grid-column: 1 / -1;
  max-width: 280px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 24px;
}
.podcaster-card p {
  grid-column: 1;
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.podcast-card-icon {
  grid-column: 2;
  align-self: end;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(6, 73, 168, .14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 35% 22%, rgba(255,255,255,.9), rgba(255,255,255,.46)),
    rgba(239, 246, 255, .82);
  box-shadow: 0 18px 34px rgba(6, 73, 168, .11);
}
.podcast-card-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(6, 73, 168, .17);
}

.podcast-network { padding: 84px 0 104px; }
.catalog-hero {
  padding: 74px 0 26px;
  background:
    radial-gradient(circle at 72% 18%, rgba(6, 73, 168, .08), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.catalog-hero > * { grid-column: 2; }
.catalog-hero .section-title {
  max-width: 720px;
  margin-bottom: 0;
}
.catalog-hero h1 { margin-bottom: 16px; }
.catalog-hero .lead {
  margin-left: 0;
  margin-right: 0;
}
.podcast-network.dedicated {
  padding-top: 34px;
  background: #fbfdff;
}
.section-title {
  grid-column: 2;
  max-width: 560px;
  margin-bottom: 46px;
}
.category-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 8px;
  grid-auto-flow: dense;
  gap: 24px;
  align-items: start;
}
.category-card {
  width: 100%;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(6, 73, 168, .08);
  box-shadow: 0 16px 42px rgba(14, 42, 92, .06);
}
.category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--blue);
}
.category-heading h3 { margin-bottom: 0; }
.category-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  width: 92%;
  margin: 0 auto;
}
.cover-grid a {
  display: block;
  position: relative;
  border-radius: 8px;
  outline-offset: 4px;
  cursor: pointer;
}
.cover-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .12);
  transition: transform .22s ease, box-shadow .22s ease;
}
.cover-grid img:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(15, 23, 42, .16); }
.cover-grid a:hover img,
.cover-grid a:focus-visible img {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, .16);
}
.partner-badge {
  position: absolute;
  left: 7px;
  bottom: 7px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: rgba(6, 73, 168, .92);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 73, 168, .26);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.partner-cover::after {
  content: attr(data-partner-note);
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: min(280px, 74vw);
  padding: 12px 14px;
  border: 1px solid rgba(6, 73, 168, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(14, 42, 92, .18);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.partner-cover::before {
  content: "";
  position: absolute;
  left: 15px;
  bottom: calc(100% + 4px);
  z-index: 6;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(6, 73, 168, .12);
  border-bottom: 1px solid rgba(6, 73, 168, .12);
  background: rgba(255, 255, 255, .98);
  opacity: 0;
  transform: translateY(6px) rotate(45deg);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}
.partner-cover:hover::before,
.partner-cover:hover::after,
.partner-cover:focus-visible::before,
.partner-cover:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.partner-cover:hover::before,
.partner-cover:focus-visible::before {
  transform: translateY(0) rotate(45deg);
}
.pink { background: var(--pink); }
.blue { background: #e4f2fb; }
.mint { background: var(--mint); }
.yellow { background: var(--yellow); }
.lavender { background: var(--lavender); }
.coral { background: #ffe5dc; }
.gray { background: var(--gray); }
.soft-green { background: #dcffd2; }
.neon-icon { display: none; }

.sound-stack {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.soundcloud-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.mini-audio-player:not(.is-empty) {
  cursor: pointer;
}
.mini-audio-player:focus-visible {
  outline: 3px solid rgba(6, 73, 168, .22);
  outline-offset: 4px;
}
.soundcloud-card.is-empty {
  cursor: default;
}
.soundcloud-card img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.soundcloud-card strong {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.soundcloud-card span {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}
.sponsor-audio-card {
  cursor: default;
}
.sponsor-audio-card span {
  max-width: 270px;
}
.simple-audio-player {
  display: block;
  width: 100%;
  height: 34px;
  margin-top: 8px;
}
.soundcloud-card i {
  position: relative;
  display: block;
  height: 30px;
  margin-top: 8px;
  opacity: .65;
  background: repeating-linear-gradient(90deg, #667085 0 3px, transparent 3px 8px);
  clip-path: polygon(0 50%, 6% 40%, 12% 58%, 18% 34%, 24% 68%, 30% 30%, 36% 62%, 42% 45%, 48% 74%, 54% 33%, 60% 60%, 66% 44%, 72% 70%, 78% 36%, 84% 62%, 90% 45%, 100% 55%, 100% 100%, 0 100%);
}
.mini-audio-progress {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: var(--mini-progress, 0%);
  overflow: hidden;
  background: repeating-linear-gradient(90deg, var(--blue) 0 3px, transparent 3px 8px);
  opacity: 0;
  transition: opacity .18s ease;
}
.mini-audio-player.is-playing .mini-audio-progress {
  opacity: .38;
}

.offer-lanes {
  scroll-margin-top: 120px;
  padding: 18px max(24px, calc((100vw - 1120px) / 2)) 92px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  grid-template-rows: 74px auto auto;
  align-content: start;
  column-gap: 24px;
  row-gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 73, 168, .08);
  box-shadow: 0 16px 42px rgba(14, 42, 92, .06);
}
.offer-card h2 {
  align-self: center;
  margin: 0;
  font-size: 25px;
}
.offer-card img {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: 74px;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 2px 0 0;
  filter: drop-shadow(0 12px 18px rgba(14, 42, 92, .1));
}
.offer-card p {
  grid-column: 1 / -1;
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}
.offer-card ul {
  grid-column: 1 / -1;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
}
.offer-card li {
  color: var(--ink);
  font-weight: 700;
}
.offer-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 10px 2px 0;
  border-radius: 999px;
  background: var(--blue);
}

.proof-section {
  grid-template-columns: minmax(24px, 1fr) minmax(0, 700px) minmax(320px, 420px) minmax(24px, 1fr);
  column-gap: 52px;
  align-items: start;
  padding: 82px 0;
  background: var(--wash);
}
.proof-section > .proof-copy {
  grid-column: 2;
  max-width: 700px;
}
.proof-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 26px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(6, 73, 168, .16);
}
.campaign-card {
  grid-column: 3;
  justify-self: stretch;
  width: auto;
  margin-top: 0;
  padding: 26px;
  border: 1px solid rgba(6, 73, 168, .12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, .95), rgba(255, 255, 255, 0) 30%),
    linear-gradient(145deg, #ffffff 0%, #eef4ff 100%);
  box-shadow: 0 24px 60px rgba(14, 42, 92, .1);
}
.campaign-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.campaign-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.campaign-card li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  column-gap: 12px;
}
.campaign-card li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(6, 73, 168, .08);
  animation: campaignDotAura 2.8s ease-in-out infinite;
}
.campaign-card li:nth-child(2)::before {
  animation-delay: .35s;
}
.campaign-card li:nth-child(3)::before {
  animation-delay: .7s;
}
.campaign-card strong {
  grid-column: 2;
  display: block;
  color: var(--ink);
  font-size: 18px;
}
.campaign-card span {
  grid-column: 2;
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.55;
}
.campaign-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(6, 73, 168, .07);
  color: var(--ink);
  font-weight: 750;
}

.production-copy {
  padding: 16px 0 48px;
}
.production-copy > * {
  grid-column: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.process {
  padding: 24px 0 92px;
}
.process::before {
  content: "";
  grid-column: 2;
  display: none;
}
.process-card {
  grid-column: 2;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.process-card + .process-card { margin-top: 20px; }
.process-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.process-step {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.process-icon {
  width: 52px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(14, 42, 92, .1);
}
.process-icon svg {
  width: 27px;
  aspect-ratio: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-icon.concept {
  color: #b76b00;
  background: #fff1c9;
}
.process-icon.production {
  color: #0f7b8b;
  background: #d9f7f3;
}
.process-icon.diffusion {
  color: #7b45d1;
  background: #efe5ff;
}
.process-icon.promotion {
  color: #c14f2e;
  background: #ffe6dc;
}
.process-card h2 { font-size: 26px; margin-top: 0; }
@media (min-width: 900px) {
  .process {
    grid-template-columns: minmax(24px, 1fr) repeat(2, minmax(0, 548px)) minmax(24px, 1fr);
    gap: 24px;
  }
  .process-card {
    grid-column: auto;
    width: auto;
    margin-top: 0;
  }
  .process-card:nth-child(odd) { grid-column: 2; }
  .process-card:nth-child(even) { grid-column: 3; }
  .process-card + .process-card { margin-top: 0; }
}
@media (min-width: 1180px) {
  .process {
    grid-template-columns: minmax(24px, 1fr) repeat(4, minmax(0, 300px)) minmax(24px, 1fr);
  }
  .process-card:nth-child(1) { grid-column: 2; }
  .process-card:nth-child(2) { grid-column: 3; }
  .process-card:nth-child(3) { grid-column: 4; }
  .process-card:nth-child(4) { grid-column: 5; }
  .process-card h2 { font-size: 24px; }
}

.contact-band, .prod-contact {
  padding: 86px 0 94px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, #315faa, var(--blue-deep));
}
.contact-band > *, .prod-contact > * { grid-column: 2; }
.contact-band h2, .prod-contact h2 {
  margin-bottom: 28px;
  color: #fff;
}
.contact-mode-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(100%, 450px);
  margin: 0 auto 32px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.contact-mode-toggle button {
  grid-column: auto;
  justify-self: stretch;
  min-width: 0;
  min-height: 44px;
  padding: 0 18px;
  color: rgba(255, 255, 255, .86);
  background: transparent;
  box-shadow: none;
  font-size: 14px;
}
.contact-mode-toggle button:hover {
  transform: none;
  background: rgba(255, 255, 255, .08);
}
.contact-mode-toggle button.is-active {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 25, 74, .16);
}
.contact-panels {
  display: grid;
  justify-items: center;
}
.contact-panel {
  width: 100%;
}
.contact-panel[hidden] {
  display: none;
}
.voice-widget-placeholder {
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  min-height: 360px;
  max-width: 820px;
  padding: 0;
  color: var(--blue-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 16%, rgba(6, 73, 168, .1), transparent 30%),
    rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}
.voice-widget-placeholder h3 {
  margin-bottom: 10px;
  color: var(--blue);
}
.voice-widget-placeholder p {
  margin: 0;
  color: var(--muted);
}
.voice-recorder-form {
  width: min(100%, 820px);
  height: 100%;
  min-height: 360px;
  margin: 0 auto;
  padding: 44px 34px 38px;
  display: grid;
  place-content: center;
  justify-items: center;
  align-self: stretch;
  justify-self: center;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.voice-recorder-shell {
  display: grid;
  gap: 12px;
  justify-items: center;
}
.voice-recorder-form:has(.voice-recorder-fields[hidden]) .voice-recorder-shell {
  transform: translateY(12px);
}
.voice-recorder-form:has(.voice-recorder-note:not(:empty)) .voice-recorder-shell {
  transform: none;
}
.voice-recorder-main {
  display: grid;
  justify-items: center;
  gap: 24px;
}
.voice-record-button {
  position: relative;
  width: 108px;
  min-width: 0;
  min-height: 108px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.22), transparent 32%),
    var(--blue);
  box-shadow:
    0 24px 44px rgba(6, 73, 168, .22),
    0 0 0 14px rgba(6, 73, 168, .07);
}
.voice-record-button::before,
.voice-record-button::after {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  border: 1px solid rgba(6, 73, 168, .16);
  animation: voiceAura 2.4s ease-in-out infinite;
  pointer-events: none;
}
.voice-record-button::after {
  inset: -32px;
  animation-delay: .45s;
}
.voice-record-button.is-recording {
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.22), transparent 32%),
    #d94b4b;
  box-shadow:
    0 22px 42px rgba(217, 75, 75, .24),
    0 0 0 14px rgba(217, 75, 75, .09);
}
.voice-record-button.has-recording {
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.22), transparent 32%),
    var(--blue);
  box-shadow:
    0 22px 42px rgba(6, 73, 168, .22),
    0 0 0 14px rgba(6, 73, 168, .08);
}
.voice-record-button:disabled {
  cursor: default;
}
.voice-record-button:disabled:hover {
  transform: none;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,.22), transparent 32%),
    var(--blue);
}
.voice-record-icon {
  width: 46px;
  aspect-ratio: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.voice-recorder-copy h3 {
  margin: 6px 0 8px;
  color: var(--blue);
  font-size: 25px;
}
.voice-recorder-copy p {
  max-width: 430px;
  margin: 0 auto;
  color: var(--muted);
}
.voice-recorder-status {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 14px;
  min-width: 262px;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--blue-deep);
  border-radius: 999px;
  background: #eef4ff;
  font-weight: 850;
}
.voice-recorder-status strong {
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}
.voice-recorder-status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.voice-recorder-preview {
  width: min(100%, 520px);
}
.voice-reset-button {
  grid-column: auto;
  min-width: 136px;
  min-height: 40px;
  padding: 0 18px;
  color: var(--blue);
  background: #eef4ff;
  box-shadow: none;
}
.voice-reset-button:hover {
  color: #fff;
}
.voice-reset-button:disabled,
.voice-recorder-form button:disabled {
  cursor: not-allowed;
  opacity: .55;
}
.voice-reset-button:disabled {
  display: none;
}
.voice-recorder-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  text-align: left;
}
.voice-recorder-fields[hidden] {
  display: none;
}
.voice-recorder-fields button {
  align-self: end;
  grid-column: 1 / -1;
  margin-top: 12px;
}
.voice-recorder-note {
  min-height: 24px;
  margin: 20px 0 0;
  color: var(--blue);
  font-weight: 850;
  text-align: center;
}
.voice-recorder-note:empty {
  display: none;
}
@keyframes voiceAura {
  0%, 100% { transform: scale(.92); opacity: .18; }
  50% { transform: scale(1.08); opacity: .66; }
}
.contact-area {
  padding: 82px 0;
  align-items: start;
}
.contact-area > .contact-intro {
  grid-column: 2;
  max-width: 380px;
}
.contact-area > form {
  grid-column: 2;
  justify-self: end;
  width: min(650px, 58vw);
  margin-top: -190px;
}
.prod-contact { display: grid; }
.prod-contact .contact-intro {
  max-width: 760px;
  margin: 0 auto 30px;
}
form {
  padding: 26px;
  color: var(--blue-deep);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 18px;
}
.compact-form {
  display: grid;
  gap: 16px;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #eef3fb;
  font: inherit;
  transition: border .2s ease, background .2s ease, box-shadow .2s ease;
}
select {
  appearance: none;
  padding-right: 48px;
  background-color: #eef3fb;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 17px) 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(6, 73, 168, .45);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(6, 73, 168, .08);
}
textarea { min-height: 124px; resize: vertical; }
.full { grid-column: 1 / -1; }
button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 190px;
  min-height: 50px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font: inherit;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
button:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
  box-shadow: 0 14px 30px rgba(6, 73, 168, .18);
}
.category-card .see-more {
  display: inline-flex;
  grid-column: auto;
  justify-self: start;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  color: var(--blue);
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(6, 73, 168, .14);
  box-shadow: none;
}
.category-card .see-more:hover {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(6, 73, 168, .16);
}
.cover-modal[hidden] { display: none; }
.cover-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 17, 44, .5);
  backdrop-filter: blur(12px);
}
.modal-open { overflow: hidden; }
.modal-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(820px, 86vh);
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 0%, rgba(6, 73, 168, .08), transparent 25%),
    #fff;
  box-shadow: 0 32px 90px rgba(5, 17, 44, .28);
}
.modal-panel h2 { margin-bottom: 20px; }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  grid-column: auto;
  place-items: center;
  min-width: 40px;
  width: 40px;
  min-height: 40px;
  padding: 0;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid rgba(6, 73, 168, .1);
  box-shadow: none;
  font-size: 24px;
  line-height: 1;
}
.modal-close:hover {
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}
.modal-cover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 18px;
}
.modal-cover-grid figure { margin: 0; }
.modal-cover-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .13);
}
.modal-cover-grid figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}

.podcast-player-modal[hidden] { display: none; }
.podcast-player-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 15, 27, .58);
  backdrop-filter: blur(6px);
}

.podcast-player-panel {
  position: relative;
  width: min(980px, calc(100vw - 56px));
  max-height: min(700px, calc(100vh - 64px));
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(130, 163, 210, .28);
  border-radius: 18px;
  background: #102844;
  box-shadow: 0 28px 70px rgba(4, 12, 24, .34);
}

.podcast-player-panel:focus {
  outline: none;
}

.podcast-player-panel::before {
  display: none;
}

.podcast-player-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  width: 34px;
  min-height: 34px;
  padding: 0;
  color: #d8e7fb;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(210, 226, 249, .22);
  box-shadow: none;
  font-size: 20px;
  line-height: 1;
  z-index: 3;
}

.podcast-player-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-height: inherit;
}

.podcast-player-main {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 2vw, 24px);
  overflow: auto;
}

.podcast-player-hero {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.podcast-cover-shell {
  position: relative;
  width: 96px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(210, 226, 249, .18);
}

.podcast-cover-shell::after {
  display: none;
}

.podcast-player-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 9px;
  border: 0;
  box-shadow: none;
}

.podcast-player-copy {
  min-width: 0;
  max-width: 720px;
  padding-right: 48px;
}

.podcast-player-kicker {
  margin: 0 0 6px;
  color: #9db4d4;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.podcast-player-copy h2 {
  margin: 0 0 5px;
  color: #f7fbff;
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.podcast-player-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.podcast-player-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #b8c7db;
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.podcast-player-main audio {
  display: none;
}

.podcast-audio-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(210, 226, 249, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.podcast-audio-card[hidden] {
  display: none;
}

.podcast-play-button {
  grid-column: auto;
  justify-self: auto;
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 50%;
  background: #dbe8fb;
  border: 0;
  box-shadow: none;
}

.podcast-play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #102844;
}

.podcast-play-button.is-playing span {
  width: 15px;
  height: 17px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, #102844 0 36%, transparent 36% 64%, #102844 64% 100%);
}

.podcast-audio-body {
  min-width: 0;
  width: 100%;
}

.podcast-audio-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 2px;
  color: #b8c7db;
  font-size: 12px;
  font-weight: 800;
}

.podcast-progress {
  width: 100%;
  height: 12px;
  margin: 0;
  accent-color: var(--blue);
  appearance: none;
  background: transparent;
}

.podcast-progress::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(216, 231, 251, .18);
}

.podcast-progress::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: #dbe8fb;
  border: 0;
  box-shadow: none;
}

.podcast-waveform {
  display: none;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 4px;
  height: 26px;
  margin-top: 11px;
  opacity: .56;
}

.podcast-waveform i {
  display: block;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(180deg, var(--blue), #8fb6ff);
  transform-origin: bottom;
}

.podcast-waveform i:nth-child(1) { height: 34%; }
.podcast-waveform i:nth-child(2) { height: 62%; }
.podcast-waveform i:nth-child(3) { height: 42%; }
.podcast-waveform i:nth-child(4) { height: 82%; }
.podcast-waveform i:nth-child(5) { height: 55%; }
.podcast-waveform i:nth-child(6) { height: 96%; }
.podcast-waveform i:nth-child(7) { height: 46%; }
.podcast-waveform i:nth-child(8) { height: 74%; }
.podcast-waveform i:nth-child(9) { height: 58%; }
.podcast-waveform i:nth-child(10) { height: 88%; }
.podcast-waveform i:nth-child(11) { height: 44%; }
.podcast-waveform i:nth-child(12) { height: 68%; }

.podcast-audio-card.is-playing .podcast-waveform i {
  animation: playerBarDance 1.2s ease-in-out infinite;
  opacity: .9;
}

.podcast-audio-card.is-playing .podcast-waveform i:nth-child(2n) {
  animation-delay: -.36s;
}

.podcast-audio-card.is-playing .podcast-waveform i:nth-child(3n) {
  animation-delay: -.72s;
}

.podcast-platform-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.podcast-platform-block p {
  margin: 0;
  color: #a8bad2;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.podcast-platform-links {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.podcast-platform-links a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(210, 226, 249, .16);
  box-shadow: none;
  transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}

.podcast-platform-links a:hover {
  border-color: rgba(210, 226, 249, .34);
  background: rgba(255, 255, 255, .12);
}

.podcast-platform-links img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.podcast-episode-list {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
  min-height: 0;
  max-height: 360px;
  padding: 0;
  background: #183a63;
  border-top: 1px solid rgba(210, 226, 249, .14);
}

.podcast-episode-list h3 {
  margin: 0;
  padding: 14px 20px 10px;
  color: #f7fbff;
  font-size: 18px;
}

.podcast-episode-list div {
  display: grid;
  gap: 0;
  align-content: start;
  overflow: auto;
  padding: 0 0 8px;
}

.podcast-episode-list button {
  grid-column: auto;
  justify-self: stretch;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 8px 20px;
  color: #eaf2ff;
  text-align: left;
  font-weight: 700;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(210, 226, 249, .14);
  box-shadow: none;
  transition: background .2s ease;
}

.podcast-episode-thumb {
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, .08);
}

.podcast-episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-episode-info {
  display: grid;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.podcast-episode-list button strong {
  display: block;
  overflow: hidden;
  color: #f7fbff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.podcast-episode-info span,
.podcast-empty {
  display: block;
  margin-top: 0;
  color: #a8bad2;
  font-size: 12px;
  line-height: 1.2;
}

.podcast-empty {
  margin: 0;
  padding: 8px 20px 0;
}

.podcast-episode-duration {
  display: block;
  justify-self: end;
  color: #c8d7ea;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.podcast-episode-list button:hover {
  transform: none;
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.legal-page {
  display: grid;
  grid-template-columns: var(--page);
  padding: 76px 0 94px;
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 82, 176, .08), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7f9fe 100%);
}

.legal-shell {
  grid-column: 2;
  max-width: 980px;
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-title {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(36px, 4.15vw, 50px);
  line-height: 1.09;
}

.legal-updated {
  margin: -4px 0 18px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 850;
}

.legal-intro {
  max-width: 760px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.legal-card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(38, 84, 177, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 70px rgba(15, 35, 76, .08);
}

.legal-card section {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(38, 84, 177, .1);
}

.legal-card section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.legal-card h3 {
  margin: 18px 0 8px;
  color: var(--blue-deep);
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-card p { margin: 0 0 12px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { margin: 0; padding-left: 20px; }
.legal-card a { color: var(--blue); font-weight: 850; }

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

.legal-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: #eef4ff;
  color: var(--blue-deep);
  font-weight: 850;
}
.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--blue);
  text-align: center;
  font-weight: 800;
}
.form-note:empty {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: var(--page);
  padding: 42px 0;
  background: #fff;
}
.site-footer > div:first-child {
  grid-column: 2;
  display: grid;
  gap: 6px;
}
.site-footer > .social {
  grid-column: 2;
  justify-self: end;
  margin-top: -78px;
  text-align: center;
}
.site-footer a { text-decoration: none; }
.footer-main {
  color: var(--blue-deep);
  font-weight: 900;
}
.footer-main::before { content: "→ "; }
.site-footer div a:not(.footer-main), .site-footer span {
  color: var(--muted);
  font-size: 15px;
}
.social a {
  display: block;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  :root { --page: minmax(24px, 1fr) minmax(0, 960px) minmax(24px, 1fr); }
  .split-section {
    grid-template-columns: var(--page);
    row-gap: 28px;
  }
  .sponso-hero {
    grid-template-columns: minmax(24px, 1fr) minmax(0, 960px) minmax(24px, 1fr);
  }
  .sponso-hero > .sound-stack,
  .split-section > .podcaster-card,
  .campaign-card,
  .contact-area > form {
    width: auto;
    margin-top: 34px;
    justify-self: start;
  }
  .sponso-hero > .hero-copy,
  .sponso-hero > .sound-stack,
  .split-section > .copy,
  .split-section > .podcaster-card,
  .proof-section > .proof-copy,
  .campaign-card,
  .contact-area > .contact-intro,
  .contact-area > form {
    max-width: 720px;
  }
  .split-section > .copy,
  .split-section > .podcaster-card { grid-column: 2; }
  .campaign-card { grid-column: 2; }
  .split-section > .podcaster-card { max-width: 420px; }
  .sponso-hero > .sound-stack { grid-column: 2; }
  .process-card { width: auto; }
}

@media (max-width: 860px) {
  :root { --page: 22px minmax(0, 1fr) 22px; }
  .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    padding: 18px 22px 14px;
    padding-bottom: 14px;
  }
  .brand {
    width: 100%;
    padding: 0;
  }
  .brand img { width: 112px; }
  .site-header nav {
    width: 100%;
    max-width: 360px;
    margin-right: 0;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.45fr) minmax(0, .85fr);
    gap: 0;
  }
  nav a:nth-child(1) { grid-column: 1; justify-self: start; }
  nav a:nth-child(2) { grid-column: 2; justify-self: center; }
  nav a:nth-child(3) { grid-column: 3; justify-self: end; }
  nav a {
    min-width: 0;
    font-size: 16px;
    line-height: 1.35;
  }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding: 48px 0 60px; }
  .label-hero, .prod-hero { text-align: left; }
  .hero-copy, .lead { margin-left: 0; margin-right: 0; }
  h1 { font-size: clamp(32px, 9.5vw, 42px); }
  .two-line-title span {
    display: inline;
    white-space: normal;
  }
  .hero-lead-two-lines span {
    display: inline;
    white-space: normal;
  }
  h2 { font-size: clamp(26px, 6.4vw, 33px); }
  h3 { font-size: 21px; }
  .lead { font-size: 17px; }
  .hero-actions { justify-content: flex-start; }
  .button { width: 100%; }
  .blue-band {
    min-height: 390px;
    padding: 32px 0 42px;
  }
  .podcast-cloud {
    height: 235px;
    margin-bottom: 12px;
  }
  .cover-orb { width: calc(74px * var(--s)); }
  .cover-orb:nth-child(1) { left: 14%; top: 14%; }
  .cover-orb:nth-child(2) { left: 42%; top: 20%; }
  .cover-orb:nth-child(3) { left: 72%; top: 16%; }
  .cover-orb:nth-child(4) { left: 24%; top: 62%; }
  .cover-orb:nth-child(5) { left: 55%; top: 66%; }
  .cover-orb:nth-child(6) { left: 84%; top: 58%; }
  .cover-orb:nth-child(7) { left: 8%; top: 84%; }
  .cover-orb:nth-child(8) { left: 76%; top: 84%; }
  .cover-orb:nth-child(n+9) { display: none; }
  .stats {
    width: min(100%, 320px);
    font-size: 20px;
    line-height: 1.22;
  }
  .stats strong,
  .stats span { display: inline; }
  .stats span:last-child { display: block; }
  .split-section, .podcast-network, .proof-section, .contact-area, .contact-band, .prod-contact, .catalog-hero { padding-top: 62px; padding-bottom: 62px; }
  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 18px;
  }
  .category-heading { display: block; }
  .category-heading span { white-space: normal; }
  .cover-grid {
    width: 100%;
    gap: 10px;
  }
  .podcast-network.dedicated { padding-top: 0; }
  .offer-lanes {
    grid-template-columns: 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }
  .offer-card {
    grid-template-columns: minmax(0, 1fr) 66px;
    grid-template-rows: 60px auto auto;
    column-gap: 16px;
  }
  .offer-card img { width: 60px; }
  .soundcloud-card { grid-template-columns: 72px 1fr; }
  .soundcloud-card img { width: 72px; }
  .campaign-card { margin-top: 20px; }
  .contact-area > form {
    width: auto;
    margin-top: 24px;
  }
  .contact-form, .row { grid-template-columns: 1fr; }
  .contact-mode-toggle {
    width: 100%;
    max-width: 360px;
  }
  .contact-mode-toggle button {
    padding: 0 10px;
    font-size: 12px;
  }
  .copy p, .production-copy p, .proof-copy p, .contact-intro p { max-width: 330px; }
  .site-footer > .social {
    justify-self: start;
    margin-top: 22px;
  }
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .podcast-player-panel {
    max-height: 90vh;
    overflow: auto;
  }
  .podcast-player-layout {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .podcast-player-main {
    padding: 22px;
    overflow: visible;
  }
  .podcast-player-hero {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }
  .podcast-cover-shell {
    width: 96px;
    border-radius: 10px;
  }
  .podcast-player-cover {
    border-radius: 9px;
  }
  .podcast-player-copy {
    padding-right: 38px;
  }
  .podcast-episode-list {
    min-height: auto;
    max-height: 340px;
    padding: 0;
    border-left: 0;
    border-top: 1px solid rgba(210, 226, 249, .14);
  }
  .podcast-episode-list div {
    max-height: 320px;
  }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .eyebrow { font-size: 12px; }
  h1 { font-size: 29px; }
  h2 { font-size: 27px; }
  .hero-copy { max-width: 330px; }
  .category-card, .offer-card, .podcaster-card, .process-card, form { padding: 20px; }
  .cover-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card .see-more { width: 100%; }
  .modal-panel { padding: 24px 18px; }
  .modal-cover-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .podcast-player-modal { padding: 12px; }
  .podcast-player-panel {
    width: 100%;
    border-radius: 16px;
  }
  .podcast-player-close {
    top: 14px;
    right: 14px;
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }
  .podcast-player-main {
    gap: 18px;
    padding: 22px 18px;
  }
  .podcast-player-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .podcast-cover-shell {
    width: 96px;
  }
  .podcast-player-copy {
    padding-right: 0;
  }
  .podcast-player-copy h2 {
    font-size: 25px;
  }
  .podcast-audio-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .podcast-play-button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
  }
  .podcast-platform-links a {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
  .podcast-episode-list {
    min-height: auto;
    padding: 0;
  }
  .contact-band h2, .prod-contact h2 { text-align: left; }
  .contact-mode-toggle {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .voice-widget-placeholder {
    min-height: 300px;
    padding: 24px 18px;
  }
  .voice-recorder-form {
    padding: 24px 18px;
  }
  .voice-record-button {
    width: 104px;
    min-height: 104px;
  }
  .voice-recorder-fields {
    grid-template-columns: 1fr;
  }
}
