:root {
  --bg-darker: #101010;
  --bg-dark: #151515;
  --bg-medium: #1d1d1d;
  --bg-muted: #292929;
  --accent: #bc9139;
  --accent-soft: #d6aa4a;
  --text-primary: #ffffff;
  --text-secondary: #d5d5d5;
  --text-muted: #999999;
  --max-width: 1360px;
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 30px 70px -35px rgba(0, 0, 0, 0.65);
  --section-gutter: clamp(1.5em, 4vw, 3em);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-medium) 0%, var(--bg-darker) 100%);
  color: var(--text-primary);
  font-family: inherit;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--accent-soft);
}

[data-reveal] {
  opacity: 0;
  transform: var(--reveal-transform, translateY(0));
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="up"] {
  --reveal-transform: translateY(28px);
}

[data-reveal="fade"] {
  --reveal-transform: translateY(0);
}

[data-reveal].is-visible {
  opacity: 1;
  --reveal-transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.announcement-bar {
  background: var(--accent);
  color: #fff;
  padding: 0.65rem 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

.announcement-inner {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  width: min(100%, 1120px);
  margin: 0 auto;
}

.announcement-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
}

.soundwave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.soundwave-left {
  justify-content: flex-end;
}

.soundwave-right {
  justify-content: flex-start;
}

.soundwave-bar {
  flex: 0 0 3px;
  width: 3px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  animation: soundwavePulse var(--wave-duration, 1.25s) ease-in-out infinite;
  animation-delay: var(--wave-delay, 0s);
  transform-origin: center bottom;
  height: var(--wave-height, 16px);
}

.soundwave-bar:nth-child(odd) {
  --wave-height: 18px;
  --wave-duration: 1.35s;
}

.soundwave-bar:nth-child(3n + 1) {
  --wave-height: 20px;
  --wave-duration: 1.15s;
  --wave-delay: 0.08s;
}

.soundwave-bar:nth-child(4n + 2) {
  --wave-height: 24px;
  --wave-duration: 1.55s;
  --wave-delay: 0.18s;
}

.soundwave-bar:nth-child(5n + 3) {
  --wave-height: 12px;
  --wave-duration: 1s;
  --wave-delay: 0.28s;
}

.soundwave-bar:nth-child(6n) {
  --wave-height: 22px;
  --wave-duration: 1.45s;
  --wave-delay: -0.12s;
}

.soundwave-bar:nth-child(7) {
  --wave-height: 26px;
  --wave-duration: 1.25s;
  --wave-delay: 0.32s;
}

@keyframes soundwavePulse {
  0%,
  100% {
    transform: scaleY(0.35);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@media (max-width: 700px) {
  .announcement-inner {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .announcement-text {
    justify-content: center;
  }

  .soundwave {
    justify-content: center;
    width: 100%;
  }

  .soundwave-left {
    justify-content: center;
  }

  .soundwave-right {
    display: none;
  }

  .site-header {
    position: static;
    top: auto;
    margin: 1.25rem auto 2rem;
    padding: 1.5rem var(--section-gutter);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: none;
    background: linear-gradient(150deg, rgba(32, 32, 32, 0.97), rgba(16, 16, 16, 0.98));
  }
}

.site-header {
  position: sticky;
  top: clamp(0.75rem, 1.6vw, 1.2rem);
  z-index: 1000;
  width: min(var(--max-width), calc(100% - 2 * var(--section-gutter)));
  margin: clamp(1rem, 2vw, 1.75rem) auto clamp(2rem, 4vw, 3rem);
  padding: clamp(1.1rem, 2vw, 1.6rem) var(--section-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(150deg, rgba(30, 30, 30, 0.98), rgba(16, 16, 16, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 26px -22px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
}

.logo-group {
  display: flex;
  align-items: center;
  gap: clamp(0.2rem, 0.6vw, 0.5rem);
}

.logo-icon {
  width: clamp(46px, 4vw, 60px);
  height: auto;
  display: block;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.logo-wordmark {
  width: clamp(160px, 20vw, 220px);
  height: auto;
  display: block;
}

.logo-icon.logo-clicked {
  animation: logoNudge 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes logoNudge {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(4px, 3px);
  }
  45% {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(7px, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes buttonRadiate {
  0% {
    opacity: 0.75;
    transform: scaleX(0.96) scaleY(0.8);
  }
  70% {
    opacity: 0;
    transform: scaleX(1.15) scaleY(1.55);
  }
  100% {
    opacity: 0;
    transform: scaleX(1.15) scaleY(1.55);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  color: var(--text-primary);
  font-size: 0.95rem;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-soft);
}

.site-nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding-bottom: 5rem;
}

main > section {
  width: min(var(--max-width), calc(100% - 2 * var(--section-gutter)));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-gutter);
  padding-right: var(--section-gutter);
}

.hero {
  position: relative;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: clamp(2.3rem, 3.5vw, 3.2rem) 0 clamp(1.2rem, 2.6vw, 1.8rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(2.4rem, 4.8vw, 3.8rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(188, 145, 57, 0.2), transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(135deg, rgba(52, 52, 52, 1), rgba(18, 18, 18, 1));
  border-radius: var(--radius-lg);
  z-index: -2;
}

.hero::after {
  content: none;
}

.hero-content {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(360px, 48vw, 520px);
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 clamp(0.5rem, 3vw, 1.75rem) 0;
  min-height: clamp(360px, 42vw, 560px);
  margin-bottom: -0.5rem;
}

.hero-keyboard {
  position: absolute;
  bottom: -10%;
  right: -2%;
  width: clamp(760px, 98vw, 1180px);
  max-width: 150%;
  height: clamp(400px, 64vw, 620px);
  transform: rotate(-5deg);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

.keyboard-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(28px, 1fr));
  grid-auto-rows: clamp(80px, 6vw, 128px);
  gap: 0.45rem;
}

.key {
  border-radius: clamp(0.8rem, 1.4vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
  background: #181818;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: clamp(80px, 6vw, 128px);
}

.key.wide {
  grid-column: span 2;
  min-height: clamp(80px, 6vw, 128px);
}

.key.is-lit {
  transform: scale(0.99);
  box-shadow: inset 0 0 0 1px rgba(188, 145, 57, 0.65);
  background: #2a2418;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.text-highlight {
  color: #ffd889;
  font-weight: 700;
}

.hero-subtitle {
  margin: 1.5rem 0 2.5rem;
  max-width: 32rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.input-group {
  position: relative;
  flex: 1 1 260px;
  display: flex;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 1.15rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.input-icon img {
  width: 20px;
  height: auto;
  opacity: 0.85;
}

.newsletter-form input {
  width: 100%;
  padding: 0.95rem 1.2rem 0.95rem 3.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #1d1d1d;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(188, 145, 57, 0.3);
}

.newsletter-form button {
  flex: 0 0 auto;
  position: relative;
  z-index: 0;
  overflow: visible;
  border: none;
  border-radius: 999px;
  padding: 0.95rem 2.6rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.newsletter-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(188, 145, 57, 0.65);
  opacity: 0;
  transform: scaleX(0.96) scaleY(0.8);
  animation: buttonRadiate 3s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.hero-portrait {
  max-height: clamp(360px, 48vw, 540px);
  width: auto;
  border-radius: 0;
  border: none;
  box-shadow: none;
  position: absolute;
  right: 0;
  bottom: -6%;
  z-index: 1;
  margin: 0;
}

.hero-title {
  position: relative;
  overflow: hidden;
}

.hero-title-subline {
  margin: 0.5rem 0 0.35rem;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 500;
  color: var(--text-secondary);
}

.typing-caret {
  display: inline-block;
  width: 0.6ch;
  margin-left: 0.05ch;
  background: transparent;
  color: var(--accent);
  animation: caretBlink 0.8s steps(1, end) infinite;
}

@keyframes caretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.podcast {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}

.podcast-visual {
  position: relative;
  pointer-events: none;
  z-index: -1;
  height: 0;
  overflow: visible;
}

.podcast-mic {
  width: clamp(150px, 18vw, 240px);
  transform: translate(100%, -35%) rotate(-10deg);
  opacity: 0.95;
}

.section-title-group {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
  padding: 0;
  position: relative;
  z-index: 1;
  padding-right: clamp(2rem, 12vw, 8rem);
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title-group h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  position: relative;
  z-index: 1;
}

.testimonials {
  padding: 0;
  margin-bottom: clamp(-3rem, -4vw, -1.5rem);
}

.testimonial-showcase {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3.5rem, 6vw, 4.5rem);
  align-items: center;
  position: relative;
}

.testimonial-details {
  display: grid;
  gap: 1.4rem;
  text-align: left;
  justify-items: flex-start;
  position: relative;
  z-index: 4;
  margin-top: clamp(0.75rem, 2.2vw, 2.5rem);
}

.testimonial-text {
  margin: 0;
  font-size: clamp(1.35rem, 1.55vw, 1.6rem);
  line-height: 1.68;
  max-width: 32rem;
  color: var(--text-secondary);
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}

.testimonial-gallery {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.testimonial-stack {
  position: relative;
  width: min(100%, clamp(400px, 58vw, 600px));
  max-width: 660px;
  min-height: clamp(320px, 48vw, 460px);
  max-height: clamp(320px, 48vw, 460px);
}

.testimonial-stack-card {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.65rem, 0.9vw, 0.9rem);
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.testimonial-stack-card img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border-radius: var(--radius-lg);
  object-fit: contain;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.testimonial-stack-card.is-prev img,
.testimonial-stack-card.is-next img {
  filter: blur(3px) saturate(0.9);
}

.testimonial-stack-name {
  margin: 0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-secondary);
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(0.35rem, 0.7vw, 0.6rem) clamp(1rem, 2.2vw, 1.85rem);
  border-radius: 999px;
}

.testimonial-stack-card.is-current {
  transform: translate(0, 0) scale(1);
  opacity: 1;
  z-index: 3;
}

.testimonial-stack-card.is-prev {
  transform: translateX(-34%) translateY(12%) scale(0.75);
  opacity: 0.8;
  z-index: 2;
}

.testimonial-stack-card.is-next {
  transform: translateX(34%) translateY(12%) scale(0.75);
  opacity: 0.8;
  z-index: 1;
}

.testimonial-stack.is-shifting-next {
  animation: stackShiftNext 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-stack.is-shifting-prev {
  animation: stackShiftPrev 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-details {
  display: grid;
  gap: 1.4rem;
  text-align: center;
  justify-items: center;
  position: relative;
  z-index: 4;
  margin-top: clamp(0.75rem, 2.2vw, 2.5rem);
}

.testimonial-text {
  margin: 0;
  font-size: clamp(1.35rem, 1.55vw, 1.6rem);
  line-height: 1.68;
  max-width: 34rem;
  color: var(--text-secondary);
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.testimonial-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(188, 145, 57, 0.2);
  color: var(--accent);
}


.podcast-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .podcast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.episode-status {
  margin: 0;
  padding: 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  width: 100%;
}

.episode-status a {
  color: var(--accent);
  font-weight: 600;
}

.episode-card {
  background: linear-gradient(160deg, rgba(44, 44, 44, 0.96), rgba(18, 18, 18, 0.98));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.episode-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.4);
}

.episode-media-link {
  position: absolute;
  inset: 0;
  display: block;
}

.episode-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.episode-media-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, background 180ms ease;
}

.episode-media-play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 0.9rem solid currentColor;
  border-top: 0.55rem solid transparent;
  border-bottom: 0.55rem solid transparent;
  margin-left: 0.2rem;
}

.episode-media-link:hover img,
.episode-media-link:focus-visible img {
  transform: scale(1.02);
  filter: brightness(1.12);
}

.episode-media-link:hover .episode-media-play,
.episode-media-link:focus-visible .episode-media-play {
  transform: translate(-50%, -50%) scale(1.05);
  background: var(--accent);
}

.episode-content {
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
}

.episode-content h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.35;
}

.episode-date {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.podcast-more {
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  padding: 0 var(--section-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.load-more-button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.55rem 1.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.load-more-button:hover,
.load-more-button:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.load-more-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(188, 145, 57, 0.35);
}

.load-more-button:disabled {
  cursor: default;
  opacity: 0.5;
  transform: none;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.podcast-platforms {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.podcast-platform-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.podcast-platform-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.podcast-platform-link:hover,
.podcast-platform-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: rgba(188, 145, 57, 0.18);
}

.episode-description {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.5rem;
  display: grid;
  gap: 0.35rem;
}

.episode-description-toggle {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.1rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: color 0.2s ease;
  width: 100%;
  text-align: left;
}

.episode-description-toggle span {
  flex: 1;
}

.episode-description-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.2s ease, color 0.2s ease;
  margin-left: auto;
}

.episode-description-toggle.is-open svg {
  transform: rotate(180deg);
}

.episode-description-toggle:hover,
.episode-description-toggle:focus-visible {
  color: var(--accent);
}

.episode-description-content {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.cta-books {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
  padding: 0;
  overflow: visible;
}

.cta-books-media {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  place-items: center;
  z-index: 1;
  overflow: visible;
}

.cta-books-media::before,
.cta-books-media::after {
  content: "";
  position: absolute;
  top: 52%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.cta-books-media::before {
  width: 72%;
  height: 90%;
  background: radial-gradient(circle, rgba(32, 90, 255, 0.48) 0%, rgba(18, 52, 168, 0.26) 45%, rgba(12, 32, 110, 0.12) 75%);
  filter: blur(42px);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0.58;
}

.cta-books-media::after {
  width: 62%;
  height: 82%;
  background: radial-gradient(circle, rgba(120, 190, 255, 0.38) 0%, rgba(72, 140, 255, 0.16) 52%, transparent 72%);
  filter: blur(36px);
  transform: translate(-50%, -50%);
  opacity: 0.45;
  animation: ctaGlowPulse 8s ease-in-out infinite alternate;
}

.cta-books::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 90%;
  transform: translate(-50%, -50%) scale(0.9);
  background: radial-gradient(ellipse at center, rgba(26, 64, 180, 0.22) 0%, rgba(12, 26, 96, 0.1) 55%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.cta-books-media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.cta-books-content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 4vw, 3.25rem);
  display: grid;
  gap: 1.3rem;
  color: var(--text-primary);
}

.cta-books-content h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.cta-books-content p {
  margin: 0;
  color: var(--text-secondary);
  max-width: 32rem;
}

@keyframes ctaGlowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.35;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.4;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: none;
}

.cta-button-blue {
  position: relative;
  z-index: 0;
  overflow: visible;
  background: linear-gradient(135deg, rgba(61, 139, 255, 0.95), rgba(20, 112, 255, 0.9));
  border: none;
  transition: background 0.3s ease;
}

.cta-button-blue:hover,
.cta-button-blue:focus-visible {
  background: linear-gradient(135deg, rgba(71, 149, 255, 0.98), rgba(23, 120, 255, 0.92));
  transform: none;
}

.cta-button-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(64, 138, 255, 0.6);
  opacity: 0;
  transform: scaleX(0.96) scaleY(0.8);
  animation: buttonRadiate 3s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.cta-button.secondary:hover,
.cta-button.secondary:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.cta-list {
  padding: 0;
}

.cta-mail-icon {
  width: 92px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
}

.cta-list-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: radial-gradient(circle at 15% 25%, rgba(188, 145, 57, 0.24), transparent 65%),
    linear-gradient(135deg, rgba(45, 45, 45, 0.95), rgba(18, 18, 18, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.5rem;
}

.cta-list-inner h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.cta-list-inner p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-secondary);
}

.site-footer {
  padding: 2rem 1rem 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0) scale(1);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 40, 0.95));
  border: 1px solid rgba(86, 147, 255, 0.4);
  border-radius: 999px;
  padding: 0.55rem 0.65rem 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  backdrop-filter: blur(10px);
  z-index: 9;
  animation: floatingCtaIntro 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.floating-cta.is-dismissed {
  animation: floatingCtaDismiss 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.floating-cta-text {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.floating-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61, 139, 255, 0.95), rgba(20, 112, 255, 0.9));
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.floating-cta-button:hover,
.floating-cta-button:focus-visible {
  transform: translateY(-1px);
}

@keyframes floatingCtaIntro {
  0% {
    transform: translate(-50%, 18px) scale(0.85);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -6px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
}

@keyframes stackShiftNext {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(-14px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes stackShiftPrev {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(14px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes floatingCtaDismiss {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -10px) scale(1.08);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, 16px) scale(0.9);
    opacity: 0;
    visibility: hidden;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1024px) {
  .site-header {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    position: static;
    top: auto;
    margin: 1.25rem auto 2rem;
    padding: 1.5rem var(--section-gutter);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: none;
    background: linear-gradient(150deg, rgba(32, 32, 32, 0.97), rgba(16, 16, 16, 0.98));
  }

  .logo-group {
    justify-content: center;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 1.5rem;
    width: min(100%, 600px);
  }

  .site-nav a {
    padding: 0.35rem 0.35rem;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-form {
    justify-content: center;
  }

  .input-group {
    max-width: 420px;
  }

  .hero-visual {
    min-height: 340px;
    padding-bottom: 0;
  }

  .hero-keyboard {
    right: -1%;
    bottom: -4%;
    width: clamp(520px, 94vw, 860px);
    height: clamp(300px, 58vw, 500px);
    transform: rotate(-4deg);
  }

  .hero-portrait {
    position: static;
    max-height: clamp(360px, 62vw, 520px);
    width: min(100%, 460px);
    margin: 2.5rem auto -1.5rem;
  }

  .podcast {
    padding: 4rem 0 0;
  }

  .section-title-group {
    padding-right: 0;
  }

  .podcast-visual {
    position: relative;
    margin: 1.5rem auto 0;
    display: block;
    height: 0;
    overflow: visible;
    pointer-events: none;
    z-index: -1;
  }

  .podcast-mic {
    width: clamp(160px, 32vw, 220px);
    transform: translate(0, -10%) rotate(-8deg);
  }

  .podcast-more {
    justify-content: center;
    text-align: center;
  }

  .podcast-platforms {
    justify-content: center;
  }

  .cta-books {
    grid-template-columns: 1fr;
  }

  .cta-books-content {
    text-align: center;
    justify-items: center;
  }

  .testimonial-showcase {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(2.25rem, 6vw, 3.75rem);
  }

  .testimonial-gallery {
    justify-content: center;
  }

  .testimonial-details {
    text-align: center;
    justify-items: center;
    margin: 0 auto;
  }

  .testimonial-controls {
    justify-content: center;
  }

  .testimonial-stack {
    width: min(100%, clamp(300px, 68vw, 480px));
    min-height: clamp(300px, 60vw, 420px);
    max-height: clamp(300px, 60vw, 420px);
  }

  .testimonial-stack-card.is-prev {
    transform: translateX(-24%) translateY(12%) scale(0.74);
  }

  .testimonial-stack-card.is-next {
    transform: translateX(24%) translateY(12%) scale(0.74);
  }

  .testimonial-stack-name {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    letter-spacing: 0.12em;
  }
}

@media (max-width: 640px) {
  main > section {
    padding-left: clamp(1.5rem, 6vw, 2.75rem);
    padding-right: clamp(1.5rem, 6vw, 2.75rem);
  }

  .announcement-bar {
    font-size: 0.85rem;
  }

  .logo-group {
    gap: 0.45rem;
  }

  .logo-wordmark {
    width: clamp(150px, 45vw, 200px);
  }

  .site-nav {
    gap: 0.85rem;
    justify-content: center;
  }

  .site-nav a {
    font-size: 0.85rem;
  }

  .site-nav a.nav-cta {
    padding: 0.55rem 1.25rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .newsletter-form {
    gap: 0.75rem;
  }

  .input-group {
    flex: 1 1 100%;
  }

  .podcast {
    padding: 3rem 0 0;
  }

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

  .podcast-visual {
    margin: 1.5rem auto -2rem;
  }

  .podcast-mic {
    width: clamp(150px, 55vw, 220px);
    opacity: 0.75;
  }

  .newsletter-form button {
    width: auto;
    align-self: center;
  }

  .hero-keyboard {
    right: -5%;
    bottom: -3%;
    top: auto;
    width: clamp(320px, 125vw, 540px);
    height: clamp(240px, 82vw, 360px);
    opacity: 0.5;
  }

  .hero-portrait {
    position: static;
    max-height: clamp(260px, 82vw, 420px);
    width: min(100%, 420px);
    margin: 2rem auto -1.5rem;
  }

  .testimonial-stack {
    width: min(100%, clamp(240px, 88vw, 300px));
    min-height: clamp(240px, 94vw, 300px);
    max-height: clamp(240px, 94vw, 300px);
  }

  .testimonial-stack-card {
    gap: clamp(0.4rem, 2.8vw, 0.65rem);
  }

  .testimonial-stack-card.is-prev {
    transform: translateX(-14%) translateY(11%) scale(0.78);
    opacity: 0.65;
  }

  .testimonial-stack-card.is-next {
    transform: translateX(14%) translateY(11%) scale(0.78);
    opacity: 0.65;
  }

  .testimonial-stack-name {
    padding: clamp(0.3rem, 2.2vw, 0.55rem) clamp(0.85rem, 5vw, 1.6rem);
    font-size: clamp(0.85rem, 3vw, 0.95rem);
    letter-spacing: 0.1em;
  }

  .episode-content {
    padding: 1.75rem;
  }

  .podcast-more {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .podcast-platforms {
    justify-content: center;
  }

  .cta-books::before {
    width: 90%;
    height: 110%;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(60px);
  }

  .cta-books-media::before {
    width: 110%;
    height: 140%;
    opacity: 0.7;
  }

  .cta-books-media::after {
    width: 95%;
    height: 120%;
  }

  .testimonial-gallery {
    margin-bottom: 1.75rem;
  }

  .testimonial-stack {
    min-height: auto;
    max-height: none;
  }

  .testimonial-stack-card {
    position: relative;
    inset: auto;
    transform: none !important;
    opacity: 0;
    display: none;
    transition: none;
  }

  .testimonial-stack-card.is-current {
    display: flex;
    opacity: 1;
  }

  .testimonial-stack-card img {
    max-width: min(280px, 80vw);
    width: 100%;
  }

  .floating-cta {
    display: none;
  }

  .cta-list-inner {
    padding: 3rem 1.75rem;
  }
}
