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

:root {
  --bg: #fffaf8;
  --bg-2: #fff1f7;
  --text: #2b2230;
  --muted: #6f6478;
  --white: #ffffff;
  --primary: #8b5cf6;
  --primary-2: #ec4899;
  --accent: #22c7d6;
  --border: rgba(139, 92, 246, 0.12);
  --shadow: 0 18px 50px rgba(139, 92, 246, 0.12);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #fffaf8 0%, #fff7fb 40%, #f8fbff 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(236, 72, 153, 0.18), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(34, 199, 214, 0.16), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(139, 92, 246, 0.14), transparent 26%);
  z-index: -1;
}

.container {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 14px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-top {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.brand-text strong {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
}

.menu-btn {
  display: none;
  border: none;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  margin-top: 10px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
}

.mobile-nav a + a {
  margin-top: 8px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 70px 0 40px;
}

.hero-copy h1 {
  font-size: 64px;
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 18px;
}

.pill {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 14px 30px rgba(236, 72, 153, 0.22);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.hero-card {
  min-height: 360px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.65));
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
}

.hero-card-inner {
  width: 100%;
  border-radius: 24px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.08)),
    white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mini-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-card-inner h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.hero-card-inner p {
  color: var(--muted);
  line-height: 1.8;
}

.text-link {
  margin-top: 18px;
  color: var(--primary);
  font-weight: 600;
}

.features {
  padding: 30px 0 80px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: 42px;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(34, 199, 214, 0.16));
  margin-bottom: 16px;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.8;
}

/* Shared page blocks */
.page-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 42px 0 80px;
}

.page-intro {
  margin-bottom: 24px;
}

.page-intro h1 {
  font-size: 52px;
  margin-bottom: 12px;
}

.page-intro p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 780px;
}

.card-soft {
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .mobile-nav.show {
    display: block;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .section-head h2,
  .page-intro h1 {
    font-size: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.podcast-controls {
  margin-bottom: 20px;
}

.podcast-search {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  outline: none;
  color: var(--text);
}

.podcast-layout-new {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.podcast-player-wrap,
.podcast-list-wrap {
  padding: 18px;
}

.podcast-player-media {
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

.podcast-player-media video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.podcast-player-content {
  padding: 18px 8px 8px;
}

.podcast-date {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.podcast-player-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.podcast-player-content p {
  color: var(--muted);
  line-height: 1.85;
}

.podcast-player-actions {
  margin-top: 20px;
}

.podcast-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.podcast-list-head h3 {
  font-size: 24px;
}

.podcast-list-head span {
  color: var(--muted);
  font-size: 14px;
}

.podcast-list-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 76vh;
  overflow-y: auto;
  padding-right: 2px;
}

.podcast-card-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  padding: 10px;
  cursor: pointer;
  transition: 0.25s ease;
  text-align: left;
}

.podcast-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(139, 92, 246, 0.1);
}

.podcast-card-item img {
  width: 118px;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
  background: #f3f4f6;
}

.podcast-card-body span {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.podcast-card-body h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.podcast-card-body p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.active-podcast-card {
  border-color: rgba(139, 92, 246, 0.24);
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(236,72,153,0.08));
}

.podcast-empty-state {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
}

.podcast-empty-state h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.podcast-empty-state p {
  color: var(--muted);
  line-height: 1.7;
}

.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 34, 48, 0.24);
  backdrop-filter: blur(8px);
}

.popup-box {
  position: relative;
  width: min(420px, calc(100% - 24px));
  margin: 14vh auto 0;
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(43, 34, 48, 0.18);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  color: var(--primary);
  cursor: pointer;
  font-size: 24px;
}

.popup-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.popup-box p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.75;
}

.download-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.download-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(139,92,246,0.08), rgba(236,72,153,0.08));
  border: 1px solid rgba(139, 92, 246, 0.12);
  text-align: center;
  transition: 0.25s ease;
}

.download-choice:hover {
  transform: translateY(-2px);
}

.download-choice span {
  font-size: 28px;
}

.download-choice strong {
  color: var(--text);
}

@media (max-width: 980px) {
  .podcast-layout-new {
    grid-template-columns: 1fr;
  }

  .podcast-list-new {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .podcast-card-item {
    grid-template-columns: 1fr;
  }

  .podcast-card-item img {
    width: 100%;
    height: 180px;
  }

  .podcast-player-content h2 {
    font-size: 28px;
  }

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

.contact-clean-wrap {
  padding: 26px;
}

.contact-clean-form {
  display: grid;
  gap: 18px;
}

.form-block {
  display: grid;
  gap: 10px;
}

.form-block span {
  font-size: 14px;
  color: var(--muted);
}

.form-block select,
.form-block textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(255,255,255,0.8);
  outline: none;
  color: var(--text);
  resize: vertical;
}

.voice-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.voice-status {
  color: var(--muted);
  font-size: 14px;
}

.contact-submit-btn {
  width: fit-content;
}

.form-status-text {
  min-height: 24px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .contact-clean-wrap {
    padding: 20px;
  }

  .contact-submit-btn {
    width: 100%;
  }
}

.btn {
  transition: 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(139,92,246,0.2);
}

html {
  scroll-behavior: smooth;
}

.feature-card:hover,
.podcast-card-item:hover {
  transform: translateY(-4px);
}

.hero-video-card {
  min-height: 420px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-video-shell {
  position: relative;
  width: 100%;
  padding: 18px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,255,255,0.58));
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 24px 60px rgba(139, 92, 246, 0.12),
    0 10px 30px rgba(236, 72, 153, 0.08);
  overflow: hidden;
}

.hero-video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.28),
    rgba(34, 199, 214, 0.22),
    rgba(236, 72, 153, 0.24)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.22);
}

.hero-highlight-media {
  position: relative;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  border-radius: 26px;
  background: #120f18;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 18px 40px rgba(43, 34, 48, 0.12);
}

.hero-highlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 10, 20, 0.16), transparent 38%),
    linear-gradient(to right, rgba(255,255,255,0.04), transparent 30%);
  pointer-events: none;
}

.hero-highlight-media video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transform: scale(1.02);
  animation: highlightFloat 12s ease-in-out infinite alternate;
  filter: saturate(1.06) contrast(1.02);
}

.hero-video-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-top: 14px;
  padding: 4px 2px 2px;
}

.hero-video-meta-text {
  flex: 1;
}

.hero-video-meta .mini-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
}

.hero-video-meta h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-video-meta p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.hero-video-meta .text-link {
  flex-shrink: 0;
  align-self: center;
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--primary);
  background: rgba(139, 92, 246, 0.08);
  font-weight: 600;
  transition: 0.25s ease;
}

.hero-video-meta .text-link:hover {
  transform: translateY(-2px);
  background: rgba(139, 92, 246, 0.12);
}

@keyframes highlightFloat {
  from {
    transform: scale(1.02) translateY(0px);
  }
  to {
    transform: scale(1.08) translateY(-4px);
  }
}

@media (max-width: 760px) {
  .hero-video-shell {
    padding: 14px;
    border-radius: 26px;
  }

  .hero-video-shell::before {
    border-radius: 26px;
  }

  .hero-video-badge {
    top: 14px;
    left: 14px;
  }

  .hero-highlight-media {
    border-radius: 20px;
    min-height: 220px;
  }

  .hero-highlight-media video {
    min-height: 220px;
  }

  .hero-video-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-video-meta h3 {
    font-size: 22px;
  }

  .hero-video-meta .text-link {
    width: 100%;
    text-align: center;
  }
}

.hero-highlight-media video {
  border-radius: 26px;
  filter: saturate(1.08) contrast(1.03) brightness(1.01);
}

.custom-player {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.custom-player video {
  width: 100%;
  display: block;
  pointer-events: none;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.play-btn {
  pointer-events: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: 0.25s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.player-controls {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-size: 14px;
}

.player-controls input {
  flex: 1;
}

.youtube-player-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

.youtube-player-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.highlight-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}