/* Voices of Bayan – HubSpot native, rebuilt from scratch
   Section 1: Hero card (p-listen style) with bg, overlay, waves, copy left, audio player right (full width of column)
   Section 2: Prose block
*/
@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

.voices-native {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

/* Titles use Funnel Display */
.voices-native .voices-hero .p-card-body h2,
.voices-native .voices-hero .p-card-body .p-voices-subtitle,
.voices-native .p-about .p-intro .voices-prose-title,
.voices-native .p-about .p-intro .voices-prose-cta,
.voices-native .voices-cta-body h2 {
  font-family: "Funnel Display", serif;
}

.voices-native * {
  box-sizing: border-box;
}

/* ---------- Section 1: Hero card ---------- */
.voices-native .voices-hero {
  position: relative;
  display: block;
  min-height: 100vh;
  border-radius: 0;
  flex-shrink: 0;
}
.voices-native .voices-cta-body p {
  color: #ffffff;
}
.voices-native .voices-hero .p-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #1a1a1a;
  background-image: url("https://20234420.fs1.hubspotusercontent-na1.net/hubfs/20234420/bayan-voices-6.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}

.voices-native .voices-hero .p-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.voices-native .voices-hero .p-card-content.voices-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  min-height: 100vh;
}

.voices-native .voices-hero .p-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  padding-bottom: 0.5rem;
}

/* Wave bars (above title) */
.voices-native .voices-hero .p-voices-waves {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1px;
  margin: 0 0 0.75rem 0;
  padding: 0;
  height: 3.1rem;
  min-height: 3.1rem;
  max-width: 280px;
  flex-shrink: 0;
}

.voices-native .voices-hero .p-voices-wave-bar {
  display: block;
  flex: 0 0 3px;
  width: 3px;
  min-width: 3px;
  height: 100%;
  min-height: 6px;
  background: #fff;
  border-radius: 1px;
  transform-origin: bottom center;
  animation: p-voices-wave-a 1.2s ease-in-out infinite;
}

.voices-native .voices-hero .p-voices-wave-bar:nth-child(4n+1) { animation-name: p-voices-wave-a; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(4n+2) { animation-name: p-voices-wave-b; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(4n+3) { animation-name: p-voices-wave-c; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(4n)   { animation-name: p-voices-wave-d; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n+1) { animation-delay: 0s;    }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n+2) { animation-delay: 0.08s; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n+3) { animation-delay: 0.16s; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n+4) { animation-delay: 0.24s; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n+5) { animation-delay: 0.32s; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n+6) { animation-delay: 0.4s;  }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n+7) { animation-delay: 0.48s; }
.voices-native .voices-hero .p-voices-wave-bar:nth-child(8n)   { animation-delay: 0.56s; }

@keyframes p-voices-wave-a {
  0%, 100% { transform: scaleY(0.2);  }
  50%      { transform: scaleY(0.95); }
}
@keyframes p-voices-wave-b {
  0%, 100% { transform: scaleY(0.5);  }
  50%      { transform: scaleY(0.35); }
}
@keyframes p-voices-wave-c {
  0%, 100% { transform: scaleY(0.35); }
  50%      { transform: scaleY(0.85); }
}
@keyframes p-voices-wave-d {
  0%, 100% { transform: scaleY(0.7);  }
  50%      { transform: scaleY(0.25); }
}

.voices-native .voices-hero .p-card-body h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.voices-native .voices-hero .p-card-body p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0 0 0.75rem 0;
}

.voices-native .voices-hero .p-card-body .p-voices-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.voices-native .voices-hero .p-card-cta {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 0.75rem;
}

.voices-native .voices-hero .p-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.4em 0.4em 0.4em 1em;
  background: #fff;
  color: #0f0f0f;
  font-weight: 400;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.voices-native .voices-hero .p-card-btn:hover {
  opacity: 0.92;
}

.voices-native .voices-hero .p-card-btn .p-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: 0.75rem;
  background: #C4D5D9;
  border-radius: 50%;
  font-size: 1.1rem;
}

/* Right column: scrolls with content, no scrollbar, aligned to top */
.voices-native .voices-cards-wrap {
  position: static;
  width: 100%;
  min-width: 0;
  overflow: visible;
  align-self: start;
}

/* Hero right column: audio playlist 70% of column width */
.voices-native .voices-hero-voice-cards {
  width: 70%;
  max-width: none;
  margin: 0 auto;
}

.voices-native .voices-hero-center {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.voices-native .voices-hero-center-backdrop {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Playlist frame: more rectangular */
.voices-native .voices-playlist-frame.voices-hero-center {
  min-height: 240px;
  max-width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem 1.25rem;
}

.voices-native .voices-playlist {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  min-width: 0;
}

.voices-native .voices-playlist-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.voices-native .voices-playlist-collapse {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}

.voices-native .voices-playlist-collapse:hover {
  color: #fff;
}

.voices-native .voices-playlist-collapse-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}

.voices-native .voices-playlist-collapse[aria-expanded="false"] .voices-playlist-collapse-icon {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}

.voices-native .voices-playlist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 180px;
  overflow-y: auto;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.voices-native .voices-playlist-list-wrap.is-collapsed .voices-playlist-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.voices-native .voices-playlist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  min-width: 0;
  transition: background 0.15s ease;
}

.voices-native .voices-playlist-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.voices-native .voices-playlist-item.is-current {
  background: rgba(255, 255, 255, 0.12);
}

.voices-native .voices-playlist-item-thumb {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.voices-native .voices-playlist-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voices-native .voices-playlist-item-title {
  flex: 1;
  min-width: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.voices-native .voices-playlist-item-duration {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.voices-native .voices-playlist-item-play {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.voices-native .voices-playlist-item-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 3px;
}

.voices-native .voices-playlist-item.is-current .voices-playlist-item-play {
  background: rgba(255, 255, 255, 0.4);
}

.voices-native .voices-playlist-transport {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.voices-native .voices-playlist-transport .voices-audio-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.voices-native .voices-playlist-transport .voices-audio-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Skip back: double left-pointing triangles */
.voices-native .voices-audio-rewind::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent currentColor transparent transparent;
  box-shadow: -5px 0 0 currentColor;
}

/* Skip forward: double right-pointing triangles */
.voices-native .voices-audio-ff::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent currentColor;
  box-shadow: 5px 0 0 currentColor;
}

.voices-native .voices-playlist-transport .voices-hero-play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
}

.voices-native .voices-playlist-controls {
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}

.voices-native .voices-playlist-controls .voices-audio-progress-wrap {
  width: 100%;
}

.voices-native .voices-playlist-controls .voices-audio-time {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.voices-native .voices-playlist-volume-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.voices-native .voices-volume-btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.voices-native .voices-volume-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.voices-native .voices-volume-btn::before {
  content: "";
  display: block;
  width: 18px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.voices-native .voices-volume-btn.is-muted::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E");
}

.voices-native .voices-volume-range {
  flex: 1;
  min-width: 60px;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  cursor: pointer;
}

.voices-native .voices-volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.voices-native .voices-volume-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.voices-native .voices-hero-center-waves {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 2.5rem;
  margin-bottom: 1rem;
}

.voices-native .voices-hero-wave-bar {
  display: block;
  flex: 0 0 4px;
  width: 4px;
  min-height: 6px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transform-origin: bottom center;
  animation: p-voices-wave-a 1.2s ease-in-out infinite;
}

.voices-native .voices-hero-wave-bar:nth-child(4n+1) { animation-name: p-voices-wave-a; }
.voices-native .voices-hero-wave-bar:nth-child(4n+2) { animation-name: p-voices-wave-b; }
.voices-native .voices-hero-wave-bar:nth-child(4n+3) { animation-name: p-voices-wave-c; }
.voices-native .voices-hero-wave-bar:nth-child(4n)   { animation-name: p-voices-wave-d; }
.voices-native .voices-hero-wave-bar:nth-child(8n+1) { animation-delay: 0s;    }
.voices-native .voices-hero-wave-bar:nth-child(8n+2) { animation-delay: 0.08s; }
.voices-native .voices-hero-wave-bar:nth-child(8n+3) { animation-delay: 0.16s; }
.voices-native .voices-hero-wave-bar:nth-child(8n+4) { animation-delay: 0.24s; }
.voices-native .voices-hero-wave-bar:nth-child(8n+5) { animation-delay: 0.32s; }
.voices-native .voices-hero-wave-bar:nth-child(8n+6) { animation-delay: 0.4s;  }
.voices-native .voices-hero-wave-bar:nth-child(8n+7) { animation-delay: 0.48s; }
.voices-native .voices-hero-wave-bar:nth-child(8n)   { animation-delay: 0.56s; }

.voices-native .voices-hero-center-controls {
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 260px;
}

.voices-native .voices-hero-play-btn {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
}

.voices-native .voices-hero-play-btn:hover {
  background: #fff;
}

.voices-native .voices-hero-center-controls .voices-audio-progress-wrap {
  width: 100%;
}

.voices-native .voices-hero-center-controls .voices-audio-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.voices-native .voices-hero-center .voices-audio-progress-wrap {
  background: rgba(255, 255, 255, 0.25);
}

.voices-native .voices-hero-center .voices-audio-progress-fill {
  background: rgba(255, 255, 255, 0.65);
}

.voices-native .voices-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.voices-native .voices-slide {
  padding: 1.5rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #000;
  flex-shrink: 0;
}

.voices-native .voices-slide-cutout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.25rem;
  align-items: stretch;
}

.voices-native .voices-slide-cutout .voices-audio {
  min-height: 160px;
}

.voices-native .voices-audio {
  position: relative;
  min-height: 140px;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  isolation: isolate;
}

.voices-native .voices-audio-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.voices-native .voices-audio-el {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.voices-native .voices-audio-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

.voices-native .voices-audio-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.voices-native .voices-audio-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.voices-native .voices-audio-btn:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.voices-native .voices-audio-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 4px;
}

.voices-native .voices-audio.is-playing .voices-audio-play::before {
  width: 5px;
  height: 14px;
  border: none;
  margin-left: 0;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 8px 0 0 currentColor;
}

.voices-native .voices-audio-progress-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 6px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  cursor: pointer;
}

.voices-native .voices-audio-progress-track {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.voices-native .voices-audio-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  transition: width 0.05s linear;
}

.voices-native .voices-audio-time {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.7);
  font-variant-numeric: tabular-nums;
}

.voices-native .voices-slide-copy {
  padding-top: 0.25rem;
}

.voices-native .voices-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d9488;
  margin-bottom: 0.5rem;
}

.voices-native .voices-slide-title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: #0f0f0f;
  margin-bottom: 0.5rem;
}

.voices-native .voices-slide-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2a2a2a;
  margin-bottom: 0;
}

/* ---------- Section 2: Prose ---------- */
/* ---------- Section 2: p-about (intro + portrait with parallax img) ---------- */
.voices-native .p-about {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 5vw, 3rem) 5rem;
  background: #fff;
  color: #1a1a1a;
}

.voices-native .p-about .p-col.p-intro {
  min-width: 0;
}

/* Terminal-style text reveal (lines slide up on scroll) */
.voices-native .p-about .text-reveal-line-mask {
  display: block;
  overflow: hidden;
}
.voices-native .p-about .text-reveal-line {
  display: block;
  will-change: transform;
}

.voices-native .p-about .p-intro .voices-prose-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  color: #0f0f0f;
}

.voices-native .p-about .p-intro p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
  color: #2a2a2a;
}

.voices-native .p-about .p-intro p:last-child {
  margin-bottom: 0;
}

.voices-native .p-about .p-intro .voices-prose-cta {
  font-weight: 600;
  margin-top: 1.5rem !important;
  color: #0f0f0f;
}

.voices-native .p-about .p-col.p-portrait {
  position: sticky;
  top: 2rem;
}

.voices-native .p-about .p-portrait-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 0.75rem;
  max-width: 380px;
  margin: 0 auto;
}

/* Image slider (replaces parallax-img) */
.voices-native .voices-image-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.voices-native .voices-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
}

.voices-native .voices-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.voices-native .voices-slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.voices-native .voices-slider-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  vertical-align: middle;
}

.voices-native .voices-slider-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 2;
}

.voices-native .voices-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: none;
}

.voices-native .voices-slider-progress-bar.voices-slider-progress-anim {
  transition: width 5s linear;
}

.voices-native .voices-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.voices-native .voices-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.voices-native .voices-slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.voices-native .voices-slider-dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

/* ---------- Section 3: CTA block (hero-style, single column) ---------- */
.voices-native .voices-cta {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.voices-native .voices-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #1a1a1a;
  background-image: url("https://20234420.fs1.hubspotusercontent-na1.net/hubfs/20234420/bayan-voices-6.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
}

.voices-native .voices-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.voices-native .voices-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.voices-native .voices-cta-body {
  text-align: center;
  max-width: 560px;
}

.voices-native .voices-cta .p-voices-waves {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
  margin: 0 auto 0.75rem;
  padding: 0;
  height: 3.1rem;
  min-height: 3.1rem;
  max-width: 280px;
  flex-shrink: 0;
}

.voices-native .voices-cta .p-voices-wave-bar {
  display: block;
  flex: 0 0 3px;
  width: 3px;
  min-width: 3px;
  height: 100%;
  min-height: 6px;
  background: #fff;
  border-radius: 1px;
  transform-origin: bottom center;
  animation: p-voices-wave-a 1.2s ease-in-out infinite;
}

.voices-native .voices-cta .p-voices-wave-bar:nth-child(4n+1) { animation-name: p-voices-wave-a; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(4n+2) { animation-name: p-voices-wave-b; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(4n+3) { animation-name: p-voices-wave-c; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(4n)   { animation-name: p-voices-wave-d; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n+1) { animation-delay: 0s;    }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n+2) { animation-delay: 0.08s; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n+3) { animation-delay: 0.16s; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n+4) { animation-delay: 0.24s; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n+5) { animation-delay: 0.32s; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n+6) { animation-delay: 0.4s;  }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n+7) { animation-delay: 0.48s; }
.voices-native .voices-cta .p-voices-wave-bar:nth-child(8n)   { animation-delay: 0.56s; }

.voices-native .voices-cta-body h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.voices-native .voices-cta .p-card-cta {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.voices-native .voices-cta-audio-wrap {
  position: relative;
}

.voices-native .voices-cta-audio-el {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.voices-native .voices-cta-audio-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.4em 1em 0.4em 1em;
  background: #fff;
  color: #0f0f0f;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.voices-native .voices-cta-audio-btn:hover {
  opacity: 0.92;
}

.voices-native .voices-cta-audio-btn:focus {
  outline: 2px solid #0f0f0f;
  outline-offset: 2px;
}

.voices-native .voices-cta-audio-btn-icon {
  position: relative;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.voices-native .voices-cta-audio-btn.is-playing .voices-cta-audio-btn-icon {
  width: 4px;
  height: 12px;
  border: none;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 6px 0 0 currentColor;
}

.voices-native .voices-cta-audio-btn-text {
  position: relative;
  z-index: 1;
}

.voices-native .voices-cta .p-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.4em 0.4em 0.4em 1em;
  background: #fff;
  color: #0f0f0f;
  font-weight: 400;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.voices-native .voices-cta .p-card-btn:hover {
  opacity: 0.92;
}

.voices-native .voices-cta .p-card-btn .p-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: 0.75rem;
  background: #C4D5D9;
  border-radius: 50%;
  font-size: 1.1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .voices-native .voices-hero {
    min-height: 0;
  }

  .voices-native .voices-hero .p-card-content.voices-hero-content {
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }

  .voices-native .voices-hero .p-card-body {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .voices-native .voices-cards-wrap {
    position: static;
    max-height: none;
    overflow: visible;
    padding-bottom: 0;
  }

  .voices-native .voices-hero-voice-cards {
    width: 100%;
  }

  .voices-native .voices-hero-center {
    min-height: 180px;
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .voices-native .voices-hero-center-waves {
    height: 2rem;
    margin-bottom: 0.75rem;
  }

  .voices-native .voices-hero-wave-bar {
    flex: 0 0 3px;
    width: 3px;
  }

  .voices-native .voices-hero-play-btn {
    width: 48px;
    height: 48px;
  }

  .voices-native .voices-cards {
    flex-direction: row;
    min-width: max-content;
    padding-right: clamp(1.5rem, 5vw, 3rem);
    gap: 1rem;
  }

  .voices-native .voices-slide {
    flex: 0 0 85vw;
    max-width: 420px;
    scroll-snap-align: start;
  }

  .voices-native .p-about {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .voices-native .voices-cta {
    min-height: 80vh;
  }
}

@media (max-width: 640px) {
  .voices-native .voices-hero .p-card-content.voices-hero-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .voices-native .voices-hero .p-card-body h2 {
    font-size: 1.5rem;
  }

  .voices-native .voices-hero-voice-cards {
    width: 100%;
  }

  .voices-native .voices-hero-center {
    min-height: 160px;
    padding: 1rem 0.75rem;
    border-radius: 12px;
  }

  .voices-native .voices-hero-center-waves {
    height: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .voices-native .voices-slide-cutout {
    grid-template-columns: 1fr;
  }

  .voices-native .voices-slide {
    flex: 0 0 88vw;
    padding: 1.25rem;
  }

  .voices-native .p-about {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .voices-native .voices-cta-body h2 {
    font-size: 1.5rem;
  }
}
