:root {
  --bg: #100b18;
  --bg-2: #171022;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #fff8ef;
  --muted: #cfc1d9;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #ffb000;
  --accent-2: #ff4d79;
  --accent-3: #8b5cf6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 77, 121, 0.26), transparent 32rem),
    radial-gradient(circle at 90% 0%, rgba(139, 92, 246, 0.25), transparent 34rem),
    linear-gradient(180deg, var(--bg), #09060d 65%, #050407);
  color: var(--text);
  line-height: 1.6;
}

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

img,
iframe {
  max-width: 100%;
}

code {
  padding: 0.15rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe7aa;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #1b0d00;
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(16, 11, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(calc(100% - 2rem), 1180px);
  margin-inline: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand small {
  display: block;
  margin-top: -0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 176, 0, 0.85), rgba(255, 77, 121, 0.85));
  box-shadow: 0 12px 28px rgba(255, 77, 121, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 750;
}

.nav-menu a {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  color: #1b0d00 !important;
  background: var(--accent) !important;
}

.nav-quiz {
  color: #04170a !important;
  background: linear-gradient(135deg, #38f28a, #14c96f) !important;
  box-shadow: 0 12px 26px rgba(20, 201, 111, 0.25);
}

.nav-quiz:hover,
.nav-quiz:focus-visible {
  color: #04170a !important;
  background: linear-gradient(135deg, #67ffab, #1be07e) !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

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

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 82%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #ffd36a;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #1b0d00;
  background: linear-gradient(135deg, var(--accent), #ffd36a);
  box-shadow: 0 16px 36px rgba(255, 176, 0, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  color: var(--text);
}

.text-link {
  color: #ffe6a6;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.latest-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 1.1rem 0 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255, 211, 106, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.latest-status.is-ready {
  border-color: rgba(56, 242, 138, 0.42);
  color: #bfffd8;
}

.latest-status.is-fallback {
  border-color: rgba(255, 176, 0, 0.42);
  color: #ffd36a;
}

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

.stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.stats dt {
  font-size: 1.55rem;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  display: grid;
  gap: 1rem;
}

.cover-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.cover-art {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}


.mini-player {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-player small {
  display: block;
  color: var(--muted);
}

.pulse {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(255, 77, 121, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 18px rgba(255, 77, 121, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 121, 0); }
}

.dark-panel {
  background: rgba(255,255,255,0.04);
  border-block: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.15fr) minmax(0, 0.85fr);
}

.split p,
.section-heading p,
.about-grid p {
  color: var(--muted);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

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

.episode-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.episode-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 176, 0, 0.45);
  background: rgba(255, 255, 255, 0.11);
}

.episode-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.08);
}

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

.episode-thumb::after {
  content: "Play";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.episode-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
}

.episode-meta {
  color: #ffd36a;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.episode-body h3 {
  margin-bottom: 0;
}

.episode-body p {
  color: var(--muted);
  font-size: 0.93rem;
}

.episode-body .text-link {
  margin-top: auto;
  align-self: flex-start;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 2rem;
  align-items: start;
}

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

.feature-list article {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
}

.feature-list span {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: #ffd36a;
  font-weight: 1000;
}

.feature-list p {
  margin-bottom: 0;
}

.guest-strip {
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.12), rgba(255, 77, 121, 0.12)),
    rgba(255, 255, 255, 0.03);
  border-block: 1px solid var(--line);
}

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

.cta-cards a {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16, 11, 24, 0.7);
  transition: transform 180ms ease, background 180ms ease;
}

.cta-cards a:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.cta-cards span {
  color: #ffd36a;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-cards strong {
  display: block;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.cta-cards small {
  color: var(--muted);
}

.contact-links {
  margin-bottom: 1rem;
}

.contact-social-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  align-items: stretch;
}

.social-contact-button {
  position: relative;
  isolation: isolate;
  flex: 1 1 0;
  min-width: 0;
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 0.22rem;
  padding: 0.95rem 0.9rem;
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: 999px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 176, 0, 0.22), transparent 12rem),
    rgba(16, 11, 24, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-contact-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(56, 242, 138, 0.16), rgba(255, 77, 121, 0.12));
  opacity: 0;
  transition: opacity 180ms ease;
}

.social-contact-button:hover,
.social-contact-button:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(56, 242, 138, 0.5);
}

.social-contact-button:hover::after,
.social-contact-button:focus-visible::after {
  opacity: 1;
}

.social-contact-button span {
  color: #ffd36a;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.social-contact-button strong {
  display: block;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.email-highlight {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.65rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 211, 106, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 176, 0, 0.24), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.email-highlight::after {
  content: "";
  position: absolute;
  inset: auto -12% -55% 35%;
  height: 170px;
  transform: rotate(-9deg);
  background: rgba(255, 77, 121, 0.18);
  pointer-events: none;
}

.email-highlight span {
  position: relative;
  z-index: 1;
  color: #ffd36a;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.email-highlight strong {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  white-space: nowrap;
  color: var(--text);
  font-size: clamp(1.2rem, 3.6vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.email-highlight small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1rem;
}


.email-highlight-wide {
  min-height: 210px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1.25rem;
  padding: clamp(1.6rem, 4.5vw, 3.3rem);
}

.email-highlight-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  color: inherit;
}

.email-highlight-main:hover strong,
.email-highlight-main:focus-visible strong {
  color: #fff;
}

.copy-email {
  position: relative;
  z-index: 1;
  justify-self: end;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #1b0d00;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 176, 0, 0.18);
}

.copy-email:hover,
.copy-email:focus-visible {
  transform: translateY(-1px);
}

.email-copy-status {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  min-height: 1.2em;
  color: #bfffd8;
  font-size: 0.9rem;
  font-weight: 850;
}

.performances-section {
  background: rgba(255, 255, 255, 0.025);
}

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

.performance-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.performance-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 245px;
}

.performance-date {
  display: grid;
  place-content: center;
  gap: 0.2rem;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 176, 0, 0.95), rgba(255, 77, 121, 0.88));
  color: #170b00;
}

.performance-date strong {
  display: block;
  font-size: 2.25rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.performance-date span {
  font-size: 0.8rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.performance-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem;
}

.performance-body h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.performance-meta {
  display: grid;
  gap: 0.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.performance-meta b {
  color: var(--text);
}

.performance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.performance-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
}

.performance-actions a:first-child {
  color: #1b0d00;
  background: var(--accent);
  border-color: transparent;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.35rem;
  place-items: center;
  min-height: 180px;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

.empty-state strong {
  color: var(--text);
  font-size: 1.4rem;
}


.quiz-section {
  padding-top: 8rem;
}

.quiz-shell {
  max-width: 900px;
  margin-inline: auto;
}

.compact-heading {
  margin-bottom: 1.3rem;
}

.quiz-card,
.visitor-question-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.quiz-progress {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 850;
}

.qa-card {
  position: relative;
  display: grid;
  gap: 1.15rem;
  min-height: 380px;
  padding: clamp(1.2rem, 3vw, 2rem);
  padding-bottom: 4.6rem;
  border: 1px solid rgba(255, 211, 106, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 176, 0, 0.16), transparent 20rem),
    rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.qa-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% 28%;
  height: 180px;
  transform: rotate(-7deg);
  background: rgba(255, 77, 121, 0.16);
  pointer-events: none;
}

.qa-card > * {
  position: relative;
  z-index: 1;
}

.qa-card h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.qa-question-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.voice-button,
.answer-reveal {
  border: 0;
  border-radius: 999px;
  color: #1b0d00;
  background: linear-gradient(135deg, var(--accent), #ffd36a);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(255, 176, 0, 0.18);
}

.voice-button {
  min-height: 42px;
  padding: 0.7rem 0.95rem;
}

.voice-status {
  min-height: 1.3em;
  margin: 0;
  color: #bfffd8;
  font-weight: 850;
}

.answer-reveal {
  position: relative;
  justify-self: start;
  min-width: 190px;
  min-height: 54px;
  padding: 0;
  transform-style: preserve-3d;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), box-shadow 160ms ease;
}

.answer-reveal:hover,
.answer-reveal:focus-visible,
.voice-button:hover,
.voice-button:focus-visible {
  transform: translateY(-2px);
}

.answer-reveal.is-flipped {
  transform: rotateX(180deg);
}

.answer-reveal.is-flipped:hover,
.answer-reveal.is-flipped:focus-visible {
  transform: rotateX(180deg) translateY(2px);
}

.answer-reveal span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0.85rem 1.2rem;
  backface-visibility: hidden;
}

.answer-reveal-back {
  transform: rotateX(180deg);
}

.qa-answer {
  max-width: 760px;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(56, 242, 138, 0.32);
  border-radius: 22px;
  background: rgba(56, 242, 138, 0.1);
  color: var(--text);
  animation: answerIn 240ms ease both;
}

.qa-answer p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text);
}

.qa-author {
  position: absolute;
  right: 1.35rem;
  bottom: 1.1rem;
  max-width: calc(100% - 2.7rem);
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: right;
}

.qa-author strong {
  color: #ffd36a;
}

.quiz-nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quiz-nav-actions .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.quiz-submit-section {
  padding-top: 1rem;
}

.visitor-question-form {
  display: grid;
  gap: 1.1rem;
}

.visitor-question-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(56, 242, 138, 0.16), transparent 18rem),
    radial-gradient(circle at 100% 8%, rgba(255, 176, 0, 0.18), transparent 16rem),
    rgba(255, 255, 255, 0.075);
}

.visitor-question-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -46% 30%;
  height: 180px;
  transform: rotate(-7deg);
  background: rgba(255, 77, 121, 0.14);
  pointer-events: none;
}

.visitor-question-card > * {
  position: relative;
  z-index: 1;
}

.visitor-form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.visitor-form-head h3 {
  margin: 0.18rem 0 0.35rem;
  color: var(--text);
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.visitor-form-head p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.review-badge {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(56, 242, 138, 0.34);
  border-radius: 999px;
  color: #bfffd8;
  background: rgba(56, 242, 138, 0.1);
  font-size: 0.75rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.visitor-form-grid {
  display: grid;
  gap: 0.95rem;
}

.field-group {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 850;
}

.field-label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 950;
}

.field-hint,
.form-helper {
  color: var(--muted);
  font-size: 0.92rem;
}

.visitor-question-form input,
.visitor-question-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 1rem 1.05rem;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.visitor-question-form input::placeholder,
.visitor-question-form textarea::placeholder {
  color: rgba(249, 245, 238, 0.42);
}

.visitor-question-form input:focus,
.visitor-question-form textarea:focus {
  border-color: rgba(56, 242, 138, 0.68);
  box-shadow: 0 0 0 4px rgba(56, 242, 138, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visitor-question-form textarea {
  resize: vertical;
}

.visitor-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.visitor-form-actions .btn {
  flex: 0 0 auto;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-status {
  min-height: 1.4em;
  margin: 0;
  color: #bfffd8;
  font-weight: 850;
}

@keyframes answerIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.site-footer {
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-grid p {
  max-width: 520px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.footer-links a {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.copyright {
  width: min(calc(100% - 2rem), var(--max));
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .cta-cards,
  .performances-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-cards,
  .performances-grid {
    grid-template-columns: 1fr;
  }
}

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

  .nav-menu {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 86px;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(16, 11, 24, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 86px;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(16, 11, 24, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

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

  .performance-card {
    grid-template-columns: 1fr;
  }

  .performance-date {
    min-height: 112px;
  }

  .email-highlight strong {
    font-size: clamp(1rem, 5.2vw, 1.45rem);
    letter-spacing: -0.045em;
  }

  .email-highlight-wide {
    grid-template-columns: 1fr;
    min-height: 220px;
  }

  .copy-email {
    justify-self: start;
  }

  .contact-social-row {
    flex-wrap: wrap;
  }

  .social-contact-button {
    flex-basis: calc(50% - 0.4rem);
  }

  .qa-question-top,
  .quiz-nav-actions,
  .visitor-form-actions,
  .visitor-form-head {
    align-items: stretch;
    flex-direction: column;
  }

  .qa-card {
    min-height: 0;
    padding-bottom: 1.2rem;
  }

  .qa-author {
    position: static;
    max-width: none;
    margin-top: 0.5rem;
  }

  .answer-reveal,
  .voice-button {
    width: 100%;
  }


  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}


@media (max-width: 560px) {
  .social-contact-button {
    flex-basis: 100%;
  }

  .visitor-form-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
