@font-face {
  font-family: 'Overglow';
  src:
    url('./Fonts/overglowfont.otf') format('opentype'),
    url('./Fonts/overglowfont.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Broadway';
  src: url('./Fonts/broadway-regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Tilt Prism';
  src: url('./Fonts/TiltPrism-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Golos Text';
  src: url('./Fonts/GolosText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Golos Text';
  src: url('./Fonts/GolosText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Golos Text';
  src: url('./Fonts/GolosText-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cabinet Grotesk';
  src:
    url('./Fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
    url('./Fonts/CabinetGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cabinet Grotesk';
  src:
    url('./Fonts/CabinetGrotesk-ExtraBold.woff2') format('woff2'),
    url('./Fonts/CabinetGrotesk-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cabinet Grotesk';
  src:
    url('./Fonts/CabinetGrotesk-Extralight.woff2') format('woff2'),
    url('./Fonts/CabinetGrotesk-Extralight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --midnight: #040016;
  --midnight-soft: #0d0630;
  --midnight-glow: rgba(255, 255, 255, 0.12);
  --lumen: #ff8cec;
  --electric: #6df7ff;
  --violet-flare: #d68cff;
  --citrus-flash: #ffef8c;
  --text-primary: rgba(255, 255, 255, 0.98);
  --text-muted: rgba(232, 226, 255, 0.82);
  --card-border: rgba(255, 255, 255, 0.24);
  --panel-bg: rgba(18, 10, 48, 0.6);
  --panel-hover: rgba(30, 18, 64, 0.86);
  --panel-shadow: 0 32px 54px rgba(3, 4, 24, 0.56);
  --surface-radius: 12px;
  --bg-fade: 1;
  --overlay-strength: 0.6;
  --sun-opacity: 1;
  --sun-blur: 3.8px;
  --font-hero: "Cabinet Grotesk", "Golos Text", system-ui, sans-serif;
  --font-heading: "Cabinet Grotesk", "Golos Text", system-ui, sans-serif;
  --font-text: "Golos Text", ui-sans-serif, -apple-system, "Segoe UI", sans-serif;
}

html {
  font-family: var(--font-text);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background-color: var(--midnight);
  color: var(--text-primary);
  scroll-behavior: smooth;
}

body {
  position: relative;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 176, 255, 0.32), transparent 58%),
    linear-gradient(180deg, #11023f 0%, #230462 48%, #050018 100%);
  min-height: 100vh;
  padding-bottom: 10rem;
  font-family: var(--font-text);
  color: var(--text-primary);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.15;
}

.font-button-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.font-button-heading::placeholder {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to top, rgba(5, 0, 25, 0.96) 0%, rgba(5, 0, 25, 0.65) 46%, rgba(5, 0, 25, 0) 68%),
    repeating-linear-gradient(to top, rgba(109, 247, 255, 0.5) 0 2px, rgba(109, 247, 255, 0) 2px 36px),
    repeating-linear-gradient(to right, rgba(109, 247, 255, 0.16) 0 2px, rgba(109, 247, 255, 0) 2px 140px);
  background-blend-mode: screen;
  background-position: center bottom, 0 0, 0 0;
  background-size: cover, 100% 100%, 100% 100%;
  filter: blur(8px) saturate(0.95) brightness(0.78);
  opacity: calc(var(--bg-fade) * 0.48);
  -webkit-mask: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0 60%, rgba(0, 0, 0, 0) 93%);
  mask: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0 60%, rgba(0, 0, 0, 0) 93%);
  animation: horizonSweep 24s linear infinite;
}

body::before {
  content: '';
  position: fixed;
  top: 8vh;
  left: 50%;
  width: min(60vmin, 480px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  background:
    repeating-linear-gradient(to bottom,
      rgba(255, 255, 255, 0.2) 0 14px,
      rgba(255, 255, 255, 0) 14px 26px),
    radial-gradient(circle at 50% 50%, rgba(255, 230, 200, 0.72) 0%, rgba(255, 160, 245, 0.72) 45%, rgba(255, 113, 227, 0.58) 68%, rgba(255, 113, 227, 0) 82%);
  border-radius: 50%;
  box-shadow:
    0 0 180px rgba(255, 140, 236, 0.55),
    0 0 260px rgba(109, 247, 255, 0.45);
  -webkit-mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.92) 0 72%, rgba(0, 0, 0, 0) 80%);
  mask: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.92) 0 72%, rgba(0, 0, 0, 0) 80%);
  animation: sunPulse 10s ease-in-out infinite alternate;
  filter: blur(var(--sun-blur)) brightness(0.85);
  opacity: var(--sun-opacity);
}

body > * {
  position: relative;
  z-index: 2;
}

@keyframes sunPulse {
  0% {
    filter: blur(var(--sun-blur)) brightness(0.85) hue-rotate(0deg) saturate(1.05);
  }
  100% {
    filter: blur(var(--sun-blur)) brightness(0.85) hue-rotate(-8deg) saturate(1.2);
  }
}

@keyframes horizonSweep {
  0% {
    background-position: center bottom, 0 0, 0 0;
  }
  100% {
    background-position: center bottom, 0 -220px, 160px 0;
  }
}

.dark body {
  color: var(--text-primary);
}

.social-icon {
  font-size: 1.25rem;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 140, 236, 0.4);
  transition: transform 200ms ease, color 200ms ease;
}

.social-icon:hover,
.social-icon:focus {
  color: #ffffff;
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(109, 247, 255, 0.5);
}

.skip-to-content {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--lumen);
  color: #090416;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  z-index: 50;
}

.skip-to-content:focus {
  left: 16px;
  outline: none;
}

.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(9, 4, 36, 0.85), rgba(4, 10, 36, 0.85));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.25rem 1.5rem;
  z-index: 99;
  box-shadow: 0 -12px 28px rgba(3, 1, 18, 0.55);
}

@media (max-width: 640px) {
  .fixed-bottom-bar {
    padding-inline: 1rem;
  }

  body {
    padding-bottom: 12rem;
  }
}

.hero-name {
  font-family: var(--font-hero);
  font-weight: 200;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.18rem, 0.9vw, 0.5rem);
  text-transform: uppercase;
  letter-spacing: clamp(0.06em, 0.7vw, 0.14em);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  color: var(--text-primary);
  margin-inline: auto;
  line-height: 0.94;
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
}

.hero-name__line {
  display: block;
  line-height: 0.92;
  letter-spacing: inherit;
  color: inherit;
}

.hero-name__line--last {
  letter-spacing: inherit;
}

@media (max-width: 540px) {
  .hero-name {
    font-size: clamp(2.2rem, 14vw, 3.6rem);
    letter-spacing: clamp(0.04em, 0.45vw, 0.08em);
    gap: clamp(0.1rem, 1.2vw, 0.28rem);
  }
}


.hero-kicker {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--electric);
  text-shadow: 0 0 14px rgba(109, 247, 255, 0.45);
}

.hero-body {
  max-width: 54ch;
  margin: 1.25rem auto 1.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-photo-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 auto 2rem;
}

.hero-photo {
  width: min(24rem, 80vw);
  border-radius: var(--surface-radius);
  box-shadow: 0 24px 40px rgba(5, 4, 32, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-subline {
  max-width: 54ch;
  margin: 0 auto 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 0 16px rgba(214, 140, 255, 0.45),
    0 0 24px rgba(109, 247, 255, 0.35);
}

main {
  position: relative;
  z-index: 2;
}

main::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(6, 2, 18, 0) 0%,
    rgba(6, 2, 18, 0.4) 22%,
    rgba(6, 2, 18, 0.62) 48%,
    rgba(6, 2, 18, 0.2) 100%);
  opacity: calc(var(--overlay-strength) * 0.95);
}

.about-copy {
  max-width: 60ch;
  margin: 0 auto 0;
  display: grid;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.87);
  font-size: 1.02rem;
  line-height: 1.75;
  text-align: left;
}

.about-copy .about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  color: var(--electric);
  text-shadow: 0 0 12px rgba(109, 247, 255, 0.45);
  margin-top: 0.5rem;
}

.release-banner {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  margin-top: 0.5rem;
  margin-bottom: 1.8rem;
  border-radius: var(--surface-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(120deg, rgba(109, 247, 255, 0.25), rgba(255, 140, 236, 0.35), rgba(255, 239, 140, 0.22));
  color: var(--violet-flare);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  line-height: 1.35;
  text-shadow:
    0 0 18px rgba(255, 140, 236, 0.6),
    0 0 26px rgba(109, 247, 255, 0.45);
  transition: box-shadow 200ms ease, background 220ms ease;
}

.release-banner:hover,
.release-banner:focus {
  box-shadow: 0 20px 32px rgba(5, 3, 25, 0.52);
  background: linear-gradient(120deg, rgba(109, 247, 255, 0.35), rgba(255, 140, 236, 0.45), rgba(255, 239, 140, 0.32));
}

.release-banner span {
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0.12em;
  text-shadow:
    0 0 18px rgba(255, 239, 140, 0.65),
    0 0 36px rgba(255, 140, 236, 0.6),
    0 0 42px rgba(109, 247, 255, 0.55);
}

.release-banner svg {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(109, 247, 255, 0.65));
}

.section-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  text-align: center;
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 12px rgba(255, 140, 236, 0.35);
}

.section-subhead {
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 0.98rem;
}

.listen-panels-wide {
  margin: 1.5rem auto 2.5rem;
  max-width: min(64rem, 92vw);
}

.listen-panels {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.listen-panels .cta-panel {
  height: 100%;
  align-items: flex-start;
}

.listen-panels .panel-info {
  align-items: flex-start;
}

.listen-panels .panel-icon {
  background: linear-gradient(135deg, rgba(255, 140, 236, 0.32), rgba(109, 247, 255, 0.28));
  border-radius: var(--surface-radius);
}

.listen-panels .panel-info .text-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
}

.listen-panels .panel-cta {
  align-self: flex-start;
}

#services .cta-panel {
  border-radius: 0;
}

#services .panel-icon {
  border-radius: 0;
}

@media (min-width: 1024px) {
  .listen-panels .cta-panel {
    flex-wrap: nowrap;
  }
}

@media (min-width: 768px) {
  .listen-panels .panel-cta {
    align-self: center;
  }
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--card-border);
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--surface-radius);
  box-shadow: 0 18px 32px rgba(5, 3, 25, 0.45);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  text-decoration: none;
  color: inherit;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.cta-panel:hover,
.cta-panel:focus {
  transform: translateY(-4px);
  background: var(--panel-hover);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: var(--panel-shadow);
}

.panel-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.panel-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--surface-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 140, 236, 0.35), rgba(109, 247, 255, 0.3));
  box-shadow: 0 0 18px rgba(255, 140, 236, 0.32);
  color: #ffffff;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.panel-icon--services {
  width: 9rem;
  height: 9rem;
  min-width: 9rem;
  background: none;
  background-image: url('/Assets/Images/Photo%201.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 0;
}

.bandcamp-panel .panel-icon {
  color: #629aa9;
}

.youtube-panel .panel-icon {
  color: #ff0000;
}

.merch-panel .panel-icon {
  color: #f45800;
}

.panel-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  letter-spacing: -0.005em;
}

.panel-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}

.panel-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--lumen);
  text-shadow: 0 0 12px rgba(255, 140, 236, 0.45);
  flex-shrink: 0;
  margin-left: auto;
}


.booking-cta {
  cursor: pointer;
  flex-wrap: nowrap;
}

.booking-cta__label {
  position: relative;
  display: inline-block;
  overflow: visible;
  line-height: 1.1;
}

.booking-cta__label-text,
.booking-cta__label-email {
  display: block;
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
  white-space: nowrap;
}

.booking-cta__label-email {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(6px);
  text-transform: none;
  letter-spacing: normal;
  font-size: inherit;
  pointer-events: none;
}

.booking-cta__icon {
  transition: opacity 220ms ease, transform 220ms ease;
}

.booking-cta__feedback {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}

.booking-cta .panel-info {
  flex: 1 1 auto;
  min-width: 0;
}

.booking-cta .panel-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 639px) {
  .booking-cta {
    flex-wrap: wrap;
  }

  .booking-cta .panel-cta {
    white-space: normal;
  }
}

.cta-panel--revealed .booking-cta__label-text {
  opacity: 0;
  transform: translateY(-6px);
}

.cta-panel--revealed .booking-cta__label-email {
  opacity: 1;
  transform: translateY(0);
}

.booking-cta__feedback.booking-cta__feedback--visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-panel--revealed .booking-cta__icon {
  opacity: 0;
  transform: translateX(0);
}

.cta-panel--revealed .panel-cta {
  gap: 0.25rem;
}

.video-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--surface-radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: rgba(14, 10, 32, 0.6);
  box-shadow: 0 18px 32px rgba(4, 2, 16, 0.35);
}

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

.video-link {
  align-self: flex-start;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 200ms ease, text-shadow 200ms ease;
}

.video-link:hover,
.video-link:focus {
  color: var(--lumen);
  text-shadow: 0 0 12px rgba(255, 140, 236, 0.45);
}

.highlight-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 2.5rem;
}

.highlight-card {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--surface-radius);
  background: linear-gradient(135deg, rgba(30, 18, 64, 0.7), rgba(18, 10, 48, 0.65));
  text-align: center;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  color: var(--text-primary);
  text-shadow: 0 0 16px rgba(109, 247, 255, 0.24);
}

.highlight-card span {
  display: inline-block;
  max-width: 20ch;
}

.text-lumen {
  color: var(--lumen) !important;
}

.contact-bar {
  margin-top: 6rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--surface-radius);
  background: linear-gradient(115deg, rgba(255, 140, 236, 0.24), rgba(109, 247, 255, 0.24), rgba(255, 239, 140, 0.18));
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .contact-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.contact-bar__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.contact-bar__link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding-bottom: 0.2rem;
  transition: color 200ms ease, border-color 200ms ease, text-shadow 200ms ease;
}

.contact-bar__link:hover,
.contact-bar__link:focus {
  color: var(--lumen);
  border-color: var(--lumen);
  text-shadow: 0 0 12px rgba(255, 140, 236, 0.45);
}

.hover\:text-lumen:hover {
  color: var(--lumen) !important;
}

.bg-lumen {
  background-color: var(--lumen) !important;
}

.focus\:border-b-lumen:focus {
  border-bottom-color: var(--lumen) !important;
}

.dark .dark\:focus\:border-b-lumen:focus {
  border-bottom-color: var(--lumen) !important;
}

svg.text-lumen {
  color: var(--lumen);
}

.dark .text-dark-400,
.dark .text-dark-500,
.dark .text-dark-700 {
  color: rgba(255, 255, 255, 0.78) !important;
}

.dark .text-dark-800 {
  color: var(--text-primary) !important;
}

.dark .border-dark-700,
.dark .border-dark-800 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.modal-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-enter {
  animation: modalFade 320ms ease forwards;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 12px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 640px) {
  .cta-panel {
    padding: 1.25rem 1.15rem;
  }

  .panel-info {
    align-items: flex-start;
  }

  .panel-cta {
    margin-top: 1rem;
    margin-left: 0;
  }

  .listen-panels .cta-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .listen-panels .panel-info {
    width: 100%;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .listen-panels .panel-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--surface-radius);
    font-size: 1.35rem;
  }

  .listen-panels .panel-label {
    font-size: 1.1rem;
  }

  .listen-panels .panel-copy {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .listen-panels .panel-cta {
    width: 100%;
    justify-content: space-between;
  }
}
