:root {
  --teal: #2fb0b5;
  --aqua: #aee6e3;
  --deep: #0e3d43;
  --deep-2: #062f36;
  --gold: #ffc83d;
  --coral: #ff5a4f;
  --white: #ffffff;
  --cream: #f6f2e8;
  --warm: #e6e1d6;
  --ink: #0f3044;
  --muted: #5e7380;
  --line: rgba(14, 61, 67, 0.12);
  --gold-line: rgba(225, 159, 37, 0.25);
  --shadow: 0 22px 50px rgba(42, 57, 58, 0.12);
  --soft-shadow: 0 12px 34px rgba(42, 57, 58, 0.09);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  font-family: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 90%, rgba(174, 230, 227, 0.5), transparent 18rem),
    radial-gradient(circle at 8% 86%, rgba(255, 200, 61, 0.28), transparent 13rem),
    radial-gradient(circle at 92% 6%, rgba(174, 230, 227, 0.32), transparent 19rem),
    linear-gradient(180deg, #fbf7ed 0%, #fffdf8 42%, #f8f1e5 100%);
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  color: rgba(47, 176, 181, 0.14);
  font-size: 128px;
  line-height: 1;
  pointer-events: none;
}

body::before {
  content: "♪";
  left: 30px;
  top: 180px;
}

body::after {
  content: "𝄞";
  right: 26px;
  top: 215px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.icon,
[data-icon] svg {
  display: block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

main,
.site-footer {
  width: min(1220px, calc(100% - 28px));
  margin-inline: auto;
}

.section-anchor {
  scroll-margin-top: 18px;
}

.hero-card,
.section-block,
.story-panel,
.curation-intro,
.about-section,
.final-cta,
.site-footer {
  position: relative;
  overflow: hidden;
}

.hero-card {
  min-height: 650px;
  margin-top: 14px;
  padding: 28px clamp(44px, 4.2vw, 58px) 44px;
  border: 1px solid rgba(14, 61, 67, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 5% 91%, rgba(255, 200, 61, 0.55), transparent 7rem),
    radial-gradient(circle at 98% 93%, rgba(174, 230, 227, 0.72), transparent 11rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 245, 0.9));
  box-shadow: 0 18px 55px rgba(41, 48, 44, 0.12);
}

.decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.decor-note,
.decor-clef {
  color: rgba(47, 176, 181, 0.17);
  font-weight: 900;
}

.hero-note-a {
  left: 20px;
  top: 185px;
  font-size: 54px;
}

.hero-clef {
  right: 30px;
  top: 175px;
  font-size: 142px;
}

.decor-cloud {
  width: 180px;
  height: 76px;
  border-radius: 70% 70% 0 0;
  opacity: 0.78;
}

.cloud-left {
  left: -18px;
  bottom: -8px;
  background:
    radial-gradient(circle at 20% 60%, #aee6e3 0 42%, transparent 43%),
    radial-gradient(circle at 55% 42%, #ffc83d 0 38%, transparent 39%);
}

.cloud-right {
  right: -34px;
  bottom: -10px;
  width: 240px;
  background: radial-gradient(circle at 48% 70%, #aee6e3 0 58%, transparent 59%);
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 132px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #071d2d;
  font-size: 15px;
  font-weight: 900;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 15px;
  color: white;
  background: linear-gradient(180deg, #087b80, #025a60);
  box-shadow: 0 14px 24px rgba(0, 77, 83, 0.28);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.whatsapp-link .icon {
  width: 24px;
  height: 24px;
}

.brand-logo {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.whatsapp-link .whatsapp-logo,
.final-cta .whatsapp-logo {
  filter: brightness(0) invert(1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(410px, 500px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(42px, 5vw, 62px);
  padding-top: clamp(34px, 4vw, 54px);
}

.hero-player-stack {
  display: grid;
  align-self: start;
  gap: clamp(18px, 2vw, 24px);
  margin-top: 8px;
}

.hero-copy {
  padding-left: clamp(28px, 2.7vw, 38px);
}

.hero-copy h1 {
  margin: 0 0 30px;
  color: #082e3a;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.hero-copy h1 span,
.section-heading h2 span,
.story-copy h2 span,
.curation-copy h2 span,
.about-copy h2 span {
  color: #0b8b93;
}

.hero-copy p {
  position: relative;
  max-width: 560px;
  margin: 0;
  padding-left: 0;
  color: #18394a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-copy p::before {
  display: none;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions {
  gap: 10px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn .icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #07888e, #035f68);
  box-shadow: 0 14px 24px rgba(3, 95, 104, 0.24);
}

.btn-outline {
  min-width: 226px;
  color: #083949;
  border-color: #0f8790;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 11px 22px rgba(3, 95, 104, 0.08);
}

.hero-actions .btn {
  min-height: 66px;
  gap: 12px;
  padding-inline: 18px;
  font-size: 14.5px;
}

.hero-actions .btn .icon {
  width: 28px;
  height: 28px;
}

.hero-actions .btn-primary {
  min-width: 278px;
}

.hero-actions .btn-outline {
  width: 260px;
}

.platform-strip {
  margin-top: 42px;
}

.platform-strip p {
  margin: 0 0 16px;
  padding: 0;
  color: #1b3c4f;
  font-size: 15px;
  font-weight: 700;
}

.platform-strip p::before {
  display: none;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.platform-row a,
.platform-grid a,
.footer-platforms a {
  display: inline-flex;
  align-items: center;
  color: #071d2d;
  font-weight: 900;
}

.platform-row a {
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.platform-mark {
  display: inline-grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--deep);
  border: 1px solid rgba(14, 61, 67, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 7px 14px rgba(14, 61, 67, 0.1);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.platform-logo {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.platform-logo.amazon-logo {
  width: 28px;
  height: 28px;
}

.radio-player {
  position: relative;
  overflow: hidden;
  min-height: 515px;
  padding: 40px 34px 36px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 78% 9%, rgba(47, 176, 181, 0.36), transparent 16rem),
    radial-gradient(circle at 22% 100%, rgba(0, 75, 84, 0.95), transparent 18rem),
    linear-gradient(145deg, #007980 0%, #053d48 55%, #022d37 100%);
  background-size: 130% 130%;
  box-shadow: 0 24px 45px rgba(0, 58, 66, 0.28);
  animation: playerGlow 12s ease-in-out infinite alternate;
}

.radio-player::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  pointer-events: none;
}

.player-note {
  position: absolute;
  z-index: 1;
  color: rgba(47, 176, 181, 0.5);
  font-size: 70px;
  animation: noteFloat 5.5s ease-in-out infinite alternate;
}

.note-one {
  right: 132px;
  top: 48px;
}

.note-two {
  right: 76px;
  top: 118px;
  animation-delay: 1.2s;
}

.signal-icon {
  position: absolute;
  right: 38px;
  top: auto;
  bottom: 34px;
  display: inline-grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.45);
  width: 54px;
  height: 54px;
  font-weight: 900;
}

.signal-icon .icon {
  width: 48px;
  height: 48px;
}

.player-heading,
.spotify-embed-shell {
  position: relative;
  z-index: 2;
}

.spotify-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.player-heading h2 {
  margin: 0;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.player-heading p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 500;
}

.spotify-embed-shell {
  padding: 9px;
  border: 1px solid rgba(115, 231, 224, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(0, 41, 50, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 18px 34px rgba(0, 25, 33, 0.22);
}

.spotify-embed-shell iframe {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px;
  background: #101010;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  margin-bottom: 0;
  padding: 0 18px;
  border-radius: 9px;
  color: #092d37;
  background: var(--gold);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 0 0 rgba(255, 90, 79, 0);
  animation: livePulse 2.8s ease-in-out infinite;
}

.live-pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 90, 79, 0.14);
}

.hero-proof {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  justify-self: center;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(14, 61, 67, 0.1);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 20px rgba(14, 61, 67, 0.08);
  font-size: 15px;
  font-weight: 900;
}

.hero-proof .platform-logo {
  width: 18px;
  height: 18px;
}

.section-block,
.story-panel,
.curation-intro,
.about-section {
  margin-top: 52px;
}

.section-block {
  padding: 56px 54px;
  border: 1px solid rgba(14, 61, 67, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0% 100%, rgba(174, 230, 227, 0.24), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 253, 248, 0.84));
  box-shadow: var(--soft-shadow);
}

.section-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--deep);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
}

.section-heading.large h2 {
  max-width: 800px;
  margin-inline: auto;
  font-size: 46px;
}

.section-heading p {
  max-width: 740px;
  margin: 14px auto 0;
  color: #1d3d4d;
  font-size: 18px;
  font-weight: 500;
}

.heading-rule,
.small-rule {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin-top: 18px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.heading-rule::before,
.heading-rule::after,
.small-rule::before,
.small-rule::after {
  width: 72px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
}

.heading-rule::before,
.small-rule::before {
  margin-right: 16px;
}

.heading-rule::after,
.small-rule::after {
  margin-left: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 44px;
}

.service-card,
.price-card,
.curation-card {
  border: 1px solid rgba(14, 61, 67, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 15px 34px rgba(31, 51, 53, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card {
  display: flex;
  min-height: 258px;
  padding: 36px 28px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.round-icon {
  display: inline-grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.round-icon .icon {
  width: 44px;
  height: 44px;
}

.round-icon.aqua {
  background: rgba(174, 230, 227, 0.72);
}

.round-icon.yellow {
  background: var(--gold);
}

.round-icon.coral {
  background: #ff7167;
}

.round-icon.warm {
  background: #e8e4dc;
}

.service-card h3,
.price-card h3,
.curation-card h3 {
  margin: 26px 0 12px;
  color: var(--deep);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.18;
}

.service-card p,
.price-card p,
.curation-card p {
  margin: 0;
  color: #18394a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 34px;
  align-items: stretch;
  padding: 44px 46px;
  border: 1px solid rgba(14, 61, 67, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.story-note {
  left: 46%;
  bottom: 42px;
  color: rgba(47, 176, 181, 0.17);
  font-size: 92px;
  transform: rotate(-20deg);
}

.story-copy h2,
.curation-copy h2,
.about-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
}

.story-copy p,
.curation-copy p,
.about-copy p,
.important-card p {
  margin: 20px 0 0;
  color: #163a50;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  font-size: 20px;
  font-weight: 700;
}

.check-list li {
  display: flex;
  align-items: center;
}

.check-list .icon {
  width: 27px;
  height: 27px;
  margin-right: 16px;
  color: white;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #08949a, #02747a);
  flex: 0 0 auto;
}

.important-card {
  padding: 42px 46px;
  border: 2px solid rgba(47, 176, 181, 0.42);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(239, 255, 255, 0.94), rgba(238, 253, 252, 0.8));
}

.important-note {
  padding: 18px 20px;
  border-top: 1px solid rgba(47, 176, 181, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 18px !important;
}

.important-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.important-title > span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(180deg, #03979b, #006e77);
  font-size: 34px;
  font-weight: 900;
}

.important-title > span .icon {
  width: 30px;
  height: 30px;
}

.important-title h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
}

.important-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 48px;
  text-align: center;
}

.important-grid span {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 116px;
  padding: 0 10px;
  border-right: 1px solid rgba(47, 176, 181, 0.28);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.important-grid span:last-child {
  border-right: 0;
}

.important-grid i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-inline: auto;
  color: var(--deep);
}

.important-grid i .icon {
  width: 40px;
  height: 40px;
}

.packages-block {
  padding-top: 66px;
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 200, 61, 0.22), transparent 12rem),
    radial-gradient(circle at 100% 100%, rgba(174, 230, 227, 0.42), transparent 16rem),
    linear-gradient(180deg, rgba(255, 252, 245, 0.86), rgba(255, 255, 255, 0.82));
}

.side-clef {
  right: 26px;
  top: 40px;
  font-size: 120px;
}

.packages-block .price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 44px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 36px 28px 28px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.packages-block .price-card {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows:
    88px
    48px
    minmax(108px, auto)
    minmax(128px, 1fr)
    38px
    22px
    56px;
  justify-items: center;
  align-items: start;
  padding: 30px 24px 22px;
}

.packages-block .price-card .round-icon {
  margin: 0;
}

.packages-block .price-card h3 {
  margin: 18px 0 0;
}

.packages-block .price-card p {
  margin: 0;
}

.packages-block .price-card strong {
  margin: 0;
}

.packages-block .package-middle {
  width: 100%;
  min-width: 0;
  align-self: stretch;
}

.packages-block .package-middle-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.price-card.featured,
.curation-card.featured {
  border-color: var(--gold);
  box-shadow: 0 15px 34px rgba(31, 51, 53, 0.09);
}

.price-card:hover,
.curation-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(47, 176, 181, 0.5);
  box-shadow: 0 24px 48px rgba(31, 51, 53, 0.14);
}

.price-card:active,
.curation-card:active {
  transform: translateY(-3px);
  border-color: rgba(47, 176, 181, 0.42);
  box-shadow: 0 18px 34px rgba(31, 51, 53, 0.12);
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  padding: 9px 24px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, #ff766b, var(--coral));
  font-size: 18px;
  font-weight: 900;
  transform: translateX(-50%);
  white-space: nowrap;
}

.mini-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.mini-icons span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(174, 230, 227, 0.74);
  color: var(--deep);
  font-size: 23px;
  font-weight: 900;
}

.mini-icons .icon {
  width: 23px;
  height: 23px;
}

.divider {
  display: grid;
  width: 100%;
  margin: auto 0 18px;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
}

.divider::before,
.divider::after {
  display: inline-block;
  width: 72px;
  height: 1px;
  content: "";
  background: var(--gold-line);
  vertical-align: middle;
}

.price-card strong,
.curation-card strong {
  display: block;
  margin-bottom: 24px;
  color: #027981;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
}

.package-comparison {
  display: block;
  min-height: 20px;
  margin: -12px 0 18px;
  color: #4f6a72;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.packages-block .premium-album-feature {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.packages-block .price-card .premium-album-trigger {
  display: flex;
  width: 100%;
  min-height: auto;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--deep);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.packages-block .premium-album-badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: #f2644f;
  font-size: 9px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.packages-block .premium-album-label {
  display: block;
  width: min(100%, 204px);
  max-width: 204px;
  color: #075d68;
  font-size: 12.5px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.packages-block .premium-album-label-text {
  display: inline;
  color: inherit;
  text-decoration-color: rgba(7, 93, 104, 0.48);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease, text-decoration-thickness 180ms ease;
}

.packages-block .premium-album-tail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.packages-block .premium-album-label .icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin: 0;
  color: #e65c43;
}

.packages-block .price-card:hover .premium-album-trigger,
.packages-block .price-card .premium-album-trigger:hover {
  border-color: transparent;
  color: var(--deep);
  background: transparent;
  box-shadow: none;
}

.packages-block .price-card .premium-album-trigger:hover .premium-album-label-text,
.packages-block .price-card .premium-album-trigger:focus-visible .premium-album-label-text {
  color: #01828a;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
}

.packages-block .price-card .premium-album-trigger:active {
  color: var(--deep);
}

.packages-block .price-card .premium-album-trigger:focus-visible {
  outline: 3px solid rgba(255, 167, 31, 0.52);
  outline-offset: 2px;
}

.packages-block .price-card[data-product-card="premium"] .mini-icons {
  gap: 8px;
  margin-top: 17px;
}

.packages-block .price-card[data-product-card="premium"] .mini-icons span {
  width: 39px;
  height: 39px;
}

.packages-block .price-card[data-product-card="premium"] .mini-icons .icon {
  width: 19px;
  height: 19px;
}

.packages-block .price-card[data-product-card="premium"] strong {
  margin: 0;
}

.packages-block .price-card .package-comparison {
  width: 100%;
  min-height: 20px;
  margin: 0;
  align-self: start;
}

.packages-block .price-card > button:last-child {
  min-height: 56px;
  margin: 0;
  align-self: start;
}

.packages-block .price-card[data-product-card="premium"] > p[data-product-description] {
  max-width: 210px;
  line-height: 1.45;
}

.price-card button,
.curation-card button {
  width: 100%;
  min-height: 56px;
  border: 2px solid #02858d;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-card:hover button,
.curation-card:hover button {
  color: white;
  border-color: transparent;
  background: linear-gradient(180deg, #07888e, #035f68);
  box-shadow: 0 12px 22px rgba(3, 95, 104, 0.2);
}

.package-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 34px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}

.package-note span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #03878e;
}

.package-note .icon {
  width: 18px;
  height: 18px;
  color: white;
}

.steps-block {
  padding-block: 68px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 0;
  margin: 52px 0 0;
  list-style: none;
  text-align: center;
}

.steps-list li {
  position: relative;
  display: grid;
  grid-template-rows: 52px 104px 76px auto;
  justify-items: center;
  align-items: start;
}

.steps-list li:not(:last-child)::after {
  position: absolute;
  top: 108px;
  right: -19px;
  color: #027981;
  content: "›";
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.step-number {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: rgba(174, 230, 227, 0.9);
  font-size: 28px;
  font-weight: 900;
}

.steps-list i {
  display: grid;
  min-height: 104px;
  margin: 0;
  place-items: center;
  align-self: center;
  color: var(--deep);
  font-style: normal;
  line-height: 1;
}

.steps-list i .icon {
  width: 64px;
  height: 64px;
}

.steps-list h3 {
  display: flex;
  width: min(165px, 100%);
  min-height: 64px;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  color: var(--deep);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.steps-list p {
  width: min(165px, 100%);
  margin: 0;
  color: #17344b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.curation-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.86fr);
  gap: 26px;
}

.curation-copy,
.audience-card {
  min-height: 520px;
  padding: 58px 56px;
  border: 1px solid rgba(14, 61, 67, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.curation-copy {
  background:
    radial-gradient(circle at 96% 72%, rgba(174, 230, 227, 0.26), transparent 11rem),
    rgba(255, 255, 255, 0.84);
}

.curation-copy h2 {
  font-size: 48px;
}

.small-rule {
  min-width: 160px;
}

.audience-card {
  text-align: center;
}

.audience-card h2 {
  margin: 0;
  color: var(--deep);
  font-size: 38px;
  font-weight: 900;
}

.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px 24px;
  margin-top: 44px;
  align-items: start;
}

.audience-grid span {
  display: grid;
  width: calc((100% - 48px) / 3);
  min-width: 0;
  grid-template-rows: 82px minmax(48px, auto);
  justify-items: center;
  align-items: start;
  gap: 15px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
  text-wrap: balance;
}

.audience-grid span:nth-child(4) {
  width: calc((100% - 48px) / 3);
}

.audience-grid span:nth-child(5) {
  width: min(250px, calc((100% - 24px) / 2));
  max-width: 250px;
}

.audience-grid i {
  display: inline-grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: rgba(174, 230, 227, 0.46);
  font-size: 40px;
  font-style: normal;
}

.audience-grid i .icon {
  width: 42px;
  height: 42px;
}

.curation-packages {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(47, 176, 181, 0.22), transparent 14rem),
    radial-gradient(circle at 100% 100%, rgba(255, 200, 61, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(255, 255, 255, 0.82));
}

.curation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 1040px;
  gap: 24px;
  margin: 48px auto 0;
}

.curation-callout {
  max-width: 560px;
  margin: 16px auto 0;
  color: #17344b;
  font-size: 19px;
  font-weight: 800;
}

.curation-card {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 476px;
  padding: 34px 20px 28px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.curation-card h3 {
  max-width: 100%;
  font-size: 21px;
}

.curation-card p {
  font-size: 16.5px;
}

.curation-card .package-scope {
  width: 100%;
  margin: 16px 0 20px;
  border-top: 1px solid rgba(3, 121, 129, 0.14);
  border-bottom: 1px solid rgba(3, 121, 129, 0.14);
  text-align: left;
}

.curation-card .package-scope > summary {
  min-height: 46px;
  padding: 10px 32px 10px 4px;
  color: #067d84;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.curation-card .package-scope > summary::after {
  right: 8px;
  width: 8px;
  height: 8px;
  border-width: 2px;
}

.curation-card .package-scope[open] > summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.curation-card .package-scope ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 4px 2px 14px 20px;
  color: #17344b;
  font-size: 13.5px;
  line-height: 1.35;
}

.curation-card strong {
  margin-top: auto;
  font-size: clamp(21px, 1.35vw, 24px);
}

.curation-card button {
  min-width: 0;
  font-size: 15.5px;
}

.listen-block {
  background:
    radial-gradient(circle at 0% 100%, rgba(255, 200, 61, 0.28), transparent 14rem),
    radial-gradient(circle at 100% 96%, rgba(174, 230, 227, 0.42), transparent 17rem),
    rgba(255, 255, 255, 0.78);
}

.listen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 390px));
  justify-content: center;
  gap: 28px;
  margin-top: 46px;
}

.listen-card {
  min-height: 410px;
  padding: 42px 36px;
  border: 1px solid rgba(14, 61, 67, 0.08);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.listen-card.dark {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 105%, rgba(47, 176, 181, 0.36), transparent 15rem),
    linear-gradient(145deg, #007a81, #032f3a 75%);
}

.listen-card.dark::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 62px;
  color: rgba(47, 176, 181, 0.62);
  content: "⌁⌁⌁⌁⌁";
  font-size: 70px;
  letter-spacing: 0;
}

.listen-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--gold);
  line-height: 1;
}

.listen-icon .icon {
  width: 42px;
  height: 42px;
}

.listen-card h3 {
  margin: 20px 0 18px;
  color: inherit;
  font-size: 34px;
  font-weight: 900;
}

.listen-card p {
  position: relative;
  z-index: 1;
  margin: 0 auto 36px;
  max-width: 280px;
  color: inherit;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.listen-card button,
.outline-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 30px;
  border-radius: 13px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  gap: 10px;
}

.listen-card button .icon {
  width: 22px;
  height: 22px;
}

.listen-card.dark button {
  border: 0;
  color: var(--deep);
  background: var(--gold);
}

.listen-card.dark.center button {
  color: white;
  border: 2px solid var(--teal);
  background: rgba(255, 255, 255, 0.05);
}

.listen-card.platforms {
  background: rgba(255, 255, 255, 0.82);
}

.listen-card.platforms h3 {
  color: var(--deep);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
  margin: 30px 0;
}

.platform-grid a {
  flex-direction: column;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.outline-link {
  border: 2px solid #02858d;
  color: #027981;
  background: white;
}

.listen-card.platforms .outline-link {
  max-width: 100%;
  padding-inline: 22px;
  font-size: 16px;
  white-space: nowrap;
}

.about-section {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 64px;
  align-items: center;
  padding: 38px 0;
}

.about-image {
  display: block;
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.about-copy h2 {
  font-size: 50px;
}

.about-copy .small-rule::before {
  width: 78px;
  margin: 0;
  background: #07888e;
}

.about-copy .small-rule::after {
  display: none;
}

.about-copy p {
  max-width: 620px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  max-width: 600px;
  gap: 14px;
  padding: 0;
  margin: 36px 0 0;
  list-style: none;
  text-align: center;
}

.values-list li {
  display: grid;
  gap: 10px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 700;
}

.values-list i {
  display: inline-grid;
  width: 64px;
  height: 64px;
  margin-inline: auto;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: rgba(174, 230, 227, 0.4);
  font-size: 32px;
  font-style: normal;
}

.values-list i .icon {
  width: 34px;
  height: 34px;
}

.faq-section {
  padding: 70px 58px 82px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 24px 34px;
  margin-top: 48px;
}

details {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 24px rgba(79, 63, 38, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.faq-item.is-open {
  border-color: rgba(47, 176, 181, 0.32);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 30px rgba(79, 63, 38, 0.11);
}

summary {
  position: relative;
  display: flex;
  min-height: 120px;
  align-items: center;
  padding: 22px 64px 22px 28px;
  color: var(--deep);
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  overflow-wrap: anywhere;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 12px;
  height: 12px;
  content: "";
  border-right: 3px solid var(--deep);
  border-bottom: 3px solid var(--deep);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 260ms ease;
}

.faq-item.is-open summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 300ms ease, opacity 220ms ease;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 28px;
  color: #17344b;
  font-size: 17px;
  line-height: 1.5;
}

.final-cta {
  margin-top: 52px;
  padding: 58px 44px 42px;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 136, 145, 0.42), transparent 18rem),
    linear-gradient(145deg, #073d45, #03242d 76%);
  box-shadow: 0 22px 48px rgba(0, 47, 55, 0.22);
  text-align: center;
}

.cta-cross {
  display: inline-grid;
  margin-bottom: 18px;
  color: var(--gold);
}

.cta-cross .icon {
  width: 48px;
  height: 48px;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 22px;
  color: white;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
}

.final-cta > p {
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  font-weight: 500;
}

.cta-actions {
  justify-content: center;
}

.btn-gold {
  color: var(--deep);
  background: linear-gradient(180deg, #ffdd79, var(--gold));
  box-shadow: 0 0 28px rgba(255, 200, 61, 0.28);
}

.btn-dark-outline {
  color: white;
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.03);
}

.whatsapp-note {
  margin-top: 30px !important;
  font-size: 18px !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-note .icon {
  width: 22px;
  height: 22px;
}

.whatsapp-note .brand-logo {
  width: 22px;
  height: 22px;
}

.site-footer {
  margin-top: 36px;
  padding: 34px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 1fr 1.15fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  width: 144px;
}

.footer-brand p {
  max-width: 230px;
  margin: 18px 0 0;
  color: #273b45;
  font-size: 17px;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer h3 .icon,
.site-footer a .icon,
.site-footer span .icon {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: -4px;
  color: var(--teal);
}

.site-footer a .brand-logo {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: -4px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(66%) saturate(587%) hue-rotate(136deg) brightness(89%) contrast(89%);
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 0 0 13px;
  color: #273b45;
  font-size: 16px;
  font-weight: 500;
}

.site-footer a:hover {
  color: #02858d;
}

.footer-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-platforms a {
  margin: 0;
}

.footer-platforms .platform-mark {
  width: 42px;
  min-width: 42px;
  height: 42px;
}

.footer-platforms .platform-logo {
  width: 24px;
  height: 24px;
}

@keyframes playerGlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes noteFloat {
  from {
    transform: translateY(0) rotate(-2deg);
    opacity: 0.42;
  }
  to {
    transform: translateY(-12px) rotate(3deg);
    opacity: 0.72;
  }
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 90, 79, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 90, 79, 0.26);
  }
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--gold-line);
  color: #273b45;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
}

.footer-bottom p:last-child {
  text-align: right;
}

.footer-bottom span {
  margin: 0;
  color: var(--teal);
  font-size: 30px;
}

.jingle-section {
  position: relative;
  overflow: hidden;
  margin: 22px 0;
  padding: clamp(42px, 4.5vw, 62px);
  border: 1px solid rgba(14, 61, 67, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 249, 239, 0.9)),
    #fffaf1;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.jingle-section::before,
.jingle-section::after {
  position: absolute;
  z-index: -1;
  color: rgba(47, 176, 181, 0.13);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
  pointer-events: none;
}

.jingle-section::before {
  content: "♪";
  left: 24px;
  top: 42%;
  font-size: 92px;
  transform: rotate(-9deg);
}

.jingle-section::after {
  content: "♫";
  right: 28px;
  bottom: 20px;
  color: rgba(255, 90, 79, 0.12);
  font-size: 78px;
  transform: rotate(8deg);
}

.jingle-benefits {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 42px;
  padding: 10px 18px;
  border: 1px solid rgba(231, 158, 44, 0.17);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 8px 20px rgba(42, 57, 58, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.jingle-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.jingle-benefits .icon {
  width: 18px;
  height: 18px;
  color: #ee9d20;
}

.jingle-benefits span:nth-child(3) .icon {
  color: #118c94;
}

.jingle-benefits span:nth-child(5) .icon {
  color: var(--coral);
}

.jingle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  align-items: stretch;
  gap: clamp(38px, 4vw, 56px);
}

.jingle-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0 10px;
}

.jingle-copy h2 {
  position: relative;
  z-index: 2;
  max-width: 630px;
  margin: 0;
  color: #082f3c;
  font-size: clamp(46px, 4.45vw, 62px);
  font-weight: 950;
  line-height: 1.02;
}

.jingle-copy h2 strong {
  display: inline;
  color: #f15439;
  font-weight: inherit;
}

.jingle-copy > p:not(.jingle-price-note):not(.jingle-microcopy) {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 28px 0 0;
  color: #264859;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.jingle-wave {
  position: absolute;
  top: 2px;
  right: 54px;
  display: flex;
  height: 64px;
  align-items: center;
  gap: 6px;
  opacity: 0.3;
}

.jingle-wave span {
  width: 6px;
  border-radius: 999px;
  background: #f1a94a;
}

.jingle-wave span:nth-child(1),
.jingle-wave span:nth-child(9) {
  height: 14px;
}

.jingle-wave span:nth-child(2),
.jingle-wave span:nth-child(8) {
  height: 30px;
}

.jingle-wave span:nth-child(3),
.jingle-wave span:nth-child(7) {
  height: 44px;
}

.jingle-wave span:nth-child(4),
.jingle-wave span:nth-child(6) {
  height: 24px;
}

.jingle-wave span:nth-child(5) {
  height: 60px;
}

.jingle-megaphone {
  position: absolute;
  z-index: 1;
  right: 8px;
  top: 180px;
  width: 180px;
  height: auto;
  filter: drop-shadow(0 20px 20px rgba(8, 47, 60, 0.16));
  pointer-events: none;
  transform: rotate(-4deg);
}

.jingle-actions {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 14px;
  margin-top: 48px;
}

.jingle-primary,
.jingle-secondary {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.jingle-primary {
  flex: 1 1 52%;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #08929a, #056973);
  box-shadow: 0 15px 28px rgba(5, 105, 115, 0.24);
}

.jingle-secondary {
  flex: 1 1 48%;
  border: 2px solid #0a8991;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.7);
}

.jingle-primary .icon,
.jingle-secondary .icon {
  width: 23px;
  height: 23px;
}

.jingle-primary .jingle-action-arrow {
  margin-left: auto;
}

.jingle-primary:hover,
.jingle-secondary:hover {
  transform: translateY(-3px);
}

.jingle-primary:hover {
  box-shadow: 0 19px 32px rgba(5, 105, 115, 0.3);
}

.jingle-secondary:hover {
  background: #fff;
  box-shadow: 0 14px 26px rgba(8, 47, 60, 0.1);
}

.jingle-primary:active,
.jingle-secondary:active {
  transform: translateY(0);
}

.jingle-price-note {
  position: relative;
  z-index: 2;
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  margin: 28px 0 0;
  padding: 10px 16px;
  border: 1px solid rgba(14, 61, 67, 0.12);
  border-radius: 999px;
  color: #294b59;
  background: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 800;
}

.jingle-price-note .icon {
  width: 18px;
  height: 18px;
  color: #f09a17;
}

.jingle-price-note strong {
  color: #ef5b3f;
  white-space: nowrap;
}

.jingle-price-note i {
  color: #efac3c;
  font-style: normal;
}

.jingle-microcopy {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: #49636e;
  font-size: 14px;
  font-weight: 800;
}

.jingle-microcopy .icon {
  width: 18px;
  height: 18px;
  color: var(--coral);
}

.jingle-types {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 14px;
}

.jingle-type-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 162px;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(14, 61, 67, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(42, 57, 58, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.jingle-type-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 176, 181, 0.32);
  box-shadow: 0 20px 38px rgba(42, 57, 58, 0.12);
}

.jingle-type-card > div {
  min-width: 0;
}

.jingle-card-icon {
  display: inline-grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  color: #0b5560;
  box-shadow: inset 0 0 0 1px rgba(14, 61, 67, 0.05);
}

.jingle-card-icon.commercial {
  background: linear-gradient(145deg, #ffe3bb, #ffd0ad);
}

.jingle-card-icon.political,
.jingle-card-icon.institutional {
  background: linear-gradient(145deg, #e7f8f6, #cdecea);
}

.jingle-card-icon .icon {
  width: 46px;
  height: 46px;
}

.jingle-type-card h3 {
  margin: 4px 0 4px;
  color: #082f3c;
  font-size: 21px;
  font-weight: 950;
}

.jingle-type-card p {
  margin: 0;
  color: #315364;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.jingle-type-card button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 7px 13px;
  border: 1px solid #179da5;
  border-radius: 999px;
  color: #0c6170;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 950;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.jingle-type-card button:hover {
  color: #fff;
  background: #07888e;
  transform: translateY(-1px);
}

.jingle-type-card button .icon {
  width: 16px;
  height: 16px;
}

.jingle-card-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.jingle-card-badge.coral {
  color: #e45842;
  background: #fff6f1;
}

.jingle-card-badge.aqua {
  color: #07838b;
  background: #eefbfa;
}

.jingle-license-copy {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-self: end;
  gap: 9px;
  margin: 8px 0 0;
  padding: 9px 14px;
  border: 1px solid rgba(14, 61, 67, 0.11);
  border-radius: 999px;
  color: #385964;
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 850;
}

.jingle-license-copy .icon {
  width: 17px;
  height: 17px;
  color: #0a8b93;
}

.jingle-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(4, 25, 30, 0.46);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity 240ms ease;
}

.jingle-overlay.is-open {
  opacity: 1;
}

.jingle-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 65;
  display: grid;
  width: min(480px, calc(100vw - 24px));
  height: 100dvh;
  grid-template-rows: auto minmax(0, 1fr);
  border-left: 1px solid rgba(14, 61, 67, 0.12);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 245, 236, 0.98)),
    #fffdf8;
  box-shadow: -24px 0 54px rgba(4, 25, 30, 0.26);
  transform: translateX(105%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.jingle-drawer.is-open {
  transform: translateX(0);
}

.jingle-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(14, 61, 67, 0.1);
}

.jingle-drawer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #e2643f;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.jingle-drawer-kicker .icon {
  width: 18px;
  height: 18px;
}

.jingle-drawer-header h2 {
  margin: 5px 0 0;
  color: #082f3c;
  font-size: 28px;
  font-weight: 950;
}

.jingle-drawer-header button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(14, 61, 67, 0.13);
  border-radius: 12px;
  color: #7e4b49;
  background: #fff;
  cursor: pointer;
}

.jingle-drawer-header button .icon {
  width: 20px;
  height: 20px;
}

.jingle-form {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.jingle-form-body {
  overflow-y: auto;
  padding: 20px 24px 28px;
  overscroll-behavior: contain;
}

.jingle-field,
.jingle-fieldset {
  display: grid;
  gap: 9px;
}

.jingle-field + .jingle-fieldset,
.jingle-fieldset + .jingle-fieldset,
.jingle-fieldset + .jingle-included,
.jingle-included + .jingle-fieldset,
.jingle-fieldset + .jingle-secondary-license,
.jingle-fieldset + .jingle-political-fields,
.jingle-fieldset + .jingle-license-notice,
.jingle-secondary-license + .jingle-license-notice,
.jingle-political-fields + .jingle-license-notice,
.jingle-license-notice + .jingle-fieldset {
  margin-top: 20px;
}

.jingle-field > span,
.jingle-fieldset legend {
  padding: 0;
  color: #123d4c;
  font-size: 14px;
  font-weight: 950;
}

.jingle-fieldset {
  min-width: 0;
  margin-inline: 0;
  padding: 0;
  border: 0;
}

.jingle-field select,
.jingle-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(14, 61, 67, 0.16);
  border-radius: 11px;
  color: #123d4c;
  background: rgba(255, 255, 255, 0.86);
  outline: 0;
  padding: 11px 13px;
  font-size: 14px;
  font-weight: 750;
}

.jingle-field select:focus,
.jingle-field input:focus {
  border-color: #168f97;
  box-shadow: 0 0 0 3px rgba(47, 176, 181, 0.16);
}

.jingle-field input[aria-invalid="true"] {
  border-color: #d34f43;
  box-shadow: 0 0 0 3px rgba(255, 90, 79, 0.13);
}

.jingle-segmented {
  display: grid;
  gap: 8px;
}

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

.jingle-voice-options,
.jingle-deadline-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jingle-segmented label,
.jingle-license-option {
  position: relative;
  display: flex;
  min-width: 0;
  cursor: pointer;
}

.jingle-segmented input,
.jingle-license-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.jingle-segmented label > span,
.jingle-license-option > span {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border: 1px solid rgba(14, 61, 67, 0.14);
  border-radius: 11px;
  color: #315260;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.jingle-segmented label > span {
  flex-direction: column;
  gap: 2px;
}

.jingle-segmented small {
  color: #637982;
  font-size: 10px;
  font-weight: 800;
}

.jingle-segmented input:checked + span,
.jingle-license-option input:checked + span {
  border-color: #087f87;
  color: #fff;
  background: linear-gradient(180deg, #07949b, #08727a);
  box-shadow: 0 9px 18px rgba(7, 127, 135, 0.18);
}

.jingle-segmented input:checked + span small {
  color: rgba(255, 255, 255, 0.82);
}

.jingle-segmented input:focus-visible + span,
.jingle-license-option input:focus-visible + span,
.jingle-primary:focus-visible,
.jingle-secondary:focus-visible,
.jingle-type-card button:focus-visible,
.jingle-drawer-header button:focus-visible,
.jingle-form-footer button:focus-visible {
  outline: 3px solid rgba(255, 167, 31, 0.52);
  outline-offset: 2px;
}

.jingle-included {
  margin-top: 18px;
  border: 1px solid rgba(14, 61, 67, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.57);
}

.jingle-included summary {
  min-height: auto;
  padding: 12px 14px;
  color: #315260;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.jingle-included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding: 0 18px 16px 32px;
  color: #526a74;
  font-size: 12px;
  font-weight: 700;
}

.jingle-license-options {
  display: grid;
  gap: 8px;
}

.jingle-license-option > span {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: initial;
  gap: 12px;
  text-align: left;
}

.jingle-license-option b {
  align-self: center;
  color: inherit;
  font-size: 12px;
  white-space: nowrap;
}

.jingle-license-option em {
  display: block;
  margin-top: 3px;
  color: #687d85;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.jingle-license-option input:checked + span em {
  color: rgba(255, 255, 255, 0.78);
}

.jingle-secondary-license {
  padding: 14px;
  border: 1px solid rgba(47, 176, 181, 0.2);
  border-radius: 13px;
  background: rgba(226, 248, 246, 0.55);
}

.jingle-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jingle-legal-box,
.jingle-license-notice,
.jingle-priority-note {
  padding: 14px;
  border: 1px solid rgba(47, 176, 181, 0.22);
  border-radius: 13px;
  color: #315260;
  background: rgba(226, 248, 246, 0.54);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.jingle-legal-box {
  margin-top: 14px;
}

.jingle-legal-box strong {
  color: #0c5661;
  font-size: 13px;
}

.jingle-legal-box p {
  margin: 7px 0 0;
}

.jingle-license-notice:empty {
  display: none;
}

.jingle-priority-note {
  margin: 14px 0 0;
  border-color: rgba(232, 154, 34, 0.25);
  color: #795018;
  background: rgba(255, 238, 205, 0.58);
}

.jingle-estimate {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(238, 157, 32, 0.23);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 249, 235, 0.9), rgba(255, 255, 255, 0.86));
}

.jingle-estimate-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: #0b6c72;
  font-size: 15px;
  font-weight: 950;
}

.jingle-estimate-heading strong {
  color: #ef5b3f;
  font-size: 26px;
  white-space: nowrap;
}

.jingle-summary {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(14, 61, 67, 0.16);
}

.jingle-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: #4f6872;
  font-size: 12px;
  font-weight: 750;
}

.jingle-summary-row span:last-child {
  color: #153f4d;
  text-align: right;
  font-weight: 900;
}

.jingle-summary-row.total-row {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(14, 61, 67, 0.1);
  color: #123d4c;
  font-size: 14px;
}

.jingle-form-footer {
  padding: 16px 24px 22px;
  border-top: 1px solid rgba(14, 61, 67, 0.1);
  background: rgba(255, 253, 248, 0.96);
}

.jingle-form-footer p {
  margin: 0 0 10px;
  color: #647a82;
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.jingle-form-footer button {
  width: 100%;
  min-height: 54px;
  padding: 12px 18px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(180deg, #ff6849, #e84d34);
  box-shadow: 0 13px 24px rgba(232, 77, 52, 0.22);
  cursor: pointer;
  font-size: 15px;
  font-weight: 950;
}

.jingle-form-footer button:hover {
  background: linear-gradient(180deg, #ff7357, #df452f);
}

body.cart-open,
body.jingle-open,
body.premium-album-open {
  overflow: hidden;
}

.premium-album-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(4, 25, 30, 0.5);
  opacity: 0;
  backdrop-filter: blur(3px);
  transition: opacity 220ms ease;
}

.premium-album-overlay.is-open {
  opacity: 1;
}

.premium-album-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 75;
  display: grid;
  width: min(640px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(14, 61, 67, 0.12);
  border-radius: 22px;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(174, 230, 227, 0.27), transparent 17rem),
    linear-gradient(180deg, #fffdf8, #f9f4ea);
  box-shadow: 0 30px 70px rgba(4, 25, 30, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -47%) scale(0.985);
  transition: opacity 220ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-album-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.premium-album-overlay[hidden],
.premium-album-modal[hidden],
.premium-album-example[hidden] {
  display: none;
}

.premium-album-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(14, 61, 67, 0.1);
}

.premium-album-modal-kicker {
  display: inline-block;
  color: #e45b41;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.premium-album-modal-header h2 {
  margin: 6px 0 0;
  color: var(--deep);
  font-size: 31px;
  font-weight: 950;
  line-height: 1.08;
}

.premium-album-modal-header > button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(14, 61, 67, 0.13);
  border-radius: 50%;
  color: #7e4b49;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.premium-album-modal-header > button .icon {
  width: 20px;
  height: 20px;
}

.premium-album-modal-body {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 22px 28px 28px;
}

.premium-album-intro {
  margin: 0;
  color: #294b59;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.5;
}

.premium-album-placeholder {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  margin-top: 19px;
  padding: 17px 18px;
  border: 1px dashed rgba(3, 121, 129, 0.35);
  border-radius: 15px;
  background: rgba(226, 247, 245, 0.54);
}

.premium-album-placeholder > .icon {
  width: 34px;
  height: 34px;
  justify-self: center;
  color: #07848b;
}

.premium-album-placeholder strong {
  display: block;
  color: var(--deep);
  font-size: 15px;
  font-weight: 950;
}

.premium-album-placeholder p {
  margin: 4px 0 0;
  color: #4b6670;
  font-size: 13.5px;
  line-height: 1.4;
}

.premium-album-included {
  margin-top: 21px;
}

.premium-album-included h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 950;
}

.premium-album-included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-album-included li {
  position: relative;
  padding-left: 21px;
  color: #294b59;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.premium-album-included li::before {
  position: absolute;
  top: 0.23em;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: #0a8b93;
  box-shadow: inset 0 0 0 4px #e8f8f6;
}

.premium-album-customization-note {
  margin-top: 21px;
  padding: 16px 17px;
  border-left: 4px solid #f3a826;
  border-radius: 0 13px 13px 0;
  background: rgba(255, 242, 211, 0.58);
}

.premium-album-customization-note strong {
  display: block;
  color: var(--deep);
  font-size: 14px;
  font-weight: 950;
}

.premium-album-customization-note p {
  margin: 5px 0 0;
  color: #4c5d63;
  font-size: 13px;
  line-height: 1.45;
}

.premium-album-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 11px;
  margin-top: 22px;
}

.premium-album-actions > a,
.premium-album-actions > button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.premium-album-example {
  grid-column: 1 / -1;
  border: 1px solid rgba(7, 132, 139, 0.28);
  color: #076c73;
  background: rgba(255, 255, 255, 0.82);
}

.premium-album-personalize {
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #078e95, #05656e);
  box-shadow: 0 11px 22px rgba(5, 101, 110, 0.2);
}

.premium-album-personalize .icon {
  width: 18px;
  height: 18px;
}

.premium-album-understood {
  border: 1px solid rgba(7, 132, 139, 0.32);
  color: #075d68;
  background: rgba(255, 255, 255, 0.82);
}

.premium-album-actions > a:hover,
.premium-album-actions > button:hover {
  transform: translateY(-2px);
}

.premium-album-modal-header > button:focus-visible,
.premium-album-actions > a:focus-visible,
.premium-album-actions > button:focus-visible {
  outline: 3px solid rgba(255, 167, 31, 0.52);
  outline-offset: 2px;
}

.cart-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(180deg, #07888e, #035f68);
  box-shadow: 0 18px 32px rgba(0, 77, 83, 0.3);
  cursor: pointer;
}

.cart-fab .icon {
  width: 25px;
  height: 25px;
}

.cart-fab strong {
  position: absolute;
  right: -4px;
  top: -5px;
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  padding: 0 7px;
  border: 2px solid #fffaf0;
  border-radius: 999px;
  color: var(--deep);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(4, 25, 30, 0.46);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 55;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(500px, calc(100vw - 24px));
  height: 100dvh;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(174, 230, 227, 0.24), transparent 15rem),
    linear-gradient(180deg, #fffdf8, #f8f2e8);
  box-shadow: -24px 0 48px rgba(4, 25, 30, 0.24);
  transform: translateX(105%);
  transition: transform 260ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 24px 28px;
  border-color: rgba(14, 61, 67, 0.1);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(14, 61, 67, 0.1);
}

.cart-header h2 {
  margin: 0;
  color: var(--deep);
  font-size: 30px;
  font-weight: 900;
}

.cart-header p {
  margin: 6px 0 0;
  color: #4b6170;
  font-size: 15px;
  font-weight: 700;
}

.cart-close {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(14, 61, 67, 0.12);
  border-radius: 50%;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.cart-close .icon {
  width: 21px;
  height: 21px;
}

.cart-body {
  overflow-y: auto;
  padding: 22px 28px;
}

.cart-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 26px 18px;
  border: 1px dashed rgba(14, 61, 67, 0.18);
  border-radius: 18px;
  color: #4b6170;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.cart-empty[hidden] {
  display: none;
}

.cart-empty .icon {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.cart-empty p {
  margin: 0;
  font-weight: 800;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(14, 61, 67, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 22px rgba(31, 51, 53, 0.07);
}

.cart-item h3 {
  margin: 0;
  color: var(--deep);
  font-size: 17px;
  font-weight: 900;
}

.cart-item p {
  margin: 6px 0 0;
  color: #4b6170;
  font-size: 14px;
  line-height: 1.35;
}

.cart-item strong {
  display: block;
  margin-top: 10px;
  color: #057d84;
  font-size: 18px;
  font-weight: 900;
}

.cart-item-kicker {
  display: inline-block;
  margin-bottom: 5px;
  color: #e25a3f;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 90, 79, 0.2);
  border-radius: 50%;
  color: #a7342d;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.cart-item button[data-jingle-edit] {
  border-color: rgba(7, 136, 142, 0.22);
  color: #087981;
}

.cart-item button .icon {
  width: 18px;
  height: 18px;
}

.cart-addons,
.cart-policy {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(14, 61, 67, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.cart-addons h3,
.cart-policy h3 {
  margin: 0 0 14px;
  color: var(--deep);
  font-size: 17px;
  font-weight: 900;
}

.cart-addons label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  color: #17344b;
  font-size: 15px;
  font-weight: 800;
}

.cart-addons label:has(input:disabled) {
  color: #8a9ba2;
  opacity: 0.62;
}

.cart-addons label + label {
  border-top: 1px solid rgba(14, 61, 67, 0.08);
}

.cart-addons input,
.cart-terms input {
  accent-color: #07888e;
}

.cart-policy p {
  margin: 0;
  color: #4b6170;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.cart-policy p + p {
  margin-top: 10px;
}

.cart-footer {
  border-top: 1px solid rgba(14, 61, 67, 0.1);
  background: rgba(255, 253, 248, 0.92);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #4b6170;
  font-size: 15px;
  font-weight: 800;
}

.cart-total-row + .cart-total-row {
  margin-top: 7px;
}

.cart-total-row.total {
  color: var(--deep);
  font-size: 20px;
}

.cart-terms {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  margin-top: 18px;
  color: #17344b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.cart-terms-note {
  margin: 10px 0 16px;
  color: #5b6d76;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.cart-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: linear-gradient(180deg, #07888e, #035f68);
  box-shadow: 0 14px 26px rgba(3, 95, 104, 0.22);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.cart-submit:disabled {
  color: #789098;
  background: #dce9e7;
  box-shadow: none;
  cursor: not-allowed;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  max-width: min(360px, calc(100vw - 32px));
  padding: 15px 18px;
  border-radius: 14px;
  color: white;
  background: var(--deep);
  box-shadow: 0 16px 36px rgba(0, 47, 55, 0.24);
  font-size: 15px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

body.cart-open .toast {
  right: min(540px, calc(100vw - 380px));
}

body.jingle-open .toast {
  right: min(500px, calc(100vw - 380px));
}

@media (max-width: 1180px) {
  main,
  .site-footer {
    width: min(100% - 24px, 1220px);
  }

  .hero-card {
    padding-inline: 36px;
  }

  .site-header {
    grid-template-columns: 160px 1fr;
  }

  .whatsapp-link {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: center;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .radio-player {
    max-width: 680px;
  }

  .service-grid,
  .price-grid,
  .packages-block .price-grid,
  .listen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .story-panel,
  .curation-intro,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 620px;
  }

  .steps-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-list li:nth-child(3)::after {
    display: none;
  }

  .steps-list li:nth-child(6)::after {
    display: none;
  }

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

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

  .curation-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 24px) / 2);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  body::before,
  body::after {
    font-size: 80px;
  }

  .hero-card {
    min-height: auto;
    padding: 26px 18px 34px;
    border-radius: 22px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand {
    width: 132px;
  }

  .whatsapp-link {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: 50px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 36px;
    padding-top: 30px;
  }

  .hero-copy {
    padding-left: 0;
  }

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

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

  .hero-actions {
    margin-top: 34px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .platform-row {
    gap: 18px;
  }

  .platform-strip {
    margin-top: 34px;
  }

  .radio-player {
    min-height: auto;
    padding: 30px 18px;
    border-radius: 18px;
  }

  .player-heading h2 {
    font-size: 26px;
  }

  .player-heading p {
    font-size: 16px;
  }

  .section-block,
  .story-panel,
  .curation-copy,
  .audience-card,
  .final-cta {
    padding: 34px 18px;
    border-radius: 22px;
  }

  .section-heading h2,
  .section-heading.large h2,
  .story-copy h2,
  .curation-copy h2,
  .about-copy h2,
  .final-cta h2 {
    font-size: 33px;
  }

  .section-heading p,
  .story-copy p,
  .curation-copy p,
  .about-copy p,
  .important-card p,
  .final-cta > p {
    font-size: 16px;
  }

  .service-grid,
  .price-grid,
  .packages-block .price-grid,
  .curation-grid,
  .listen-grid,
  .faq-grid,
  .values-list {
    grid-template-columns: 1fr;
  }

  .curation-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  summary {
    min-height: 150px;
    padding: 20px 56px 20px 22px;
    font-size: 17px;
  }

  .story-panel {
    gap: 24px;
  }

  .check-list {
    grid-template-columns: 1fr;
    font-size: 17px;
  }

  .important-card {
    padding: 28px 18px;
  }

  .important-note {
    padding: 16px;
    font-size: 15px !important;
  }

  .important-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .important-grid span {
    border-right: 0;
    min-height: auto;
  }

  .price-card,
  .curation-card {
    min-height: auto;
  }

  .curation-card {
    min-height: 416px;
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-list li:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -28px;
    transform: translateX(50%) rotate(90deg);
  }

  .steps-list li {
    grid-template-rows: 44px 82px auto auto;
    padding-bottom: 38px;
  }

  .steps-list li:last-child {
    padding-bottom: 0;
  }

  .audience-grid {
    gap: 30px;
  }

  .audience-grid span,
  .audience-grid span:nth-child(4),
  .audience-grid span:nth-child(5) {
    grid-column: auto;
    width: min(280px, 100%);
    max-width: min(280px, 100%);
    justify-self: center;
  }

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

  .cart-fab {
    right: 18px;
    bottom: 18px;
  }

  .cart-drawer {
    width: min(100vw - 14px, 500px);
  }

  .cart-header,
  .cart-footer {
    padding: 20px;
  }

  .cart-body {
    padding: 18px 20px;
  }

  body.cart-open .toast {
    right: 16px;
    bottom: 86px;
  }

  .cart-header h2 {
    font-size: 26px;
  }

  .about-section {
    padding-block: 28px;
    gap: 30px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .btn {
    min-height: 58px;
    padding-inline: 16px;
  }

  .platform-mark {
    width: 38px;
    height: 38px;
  }

}

@media (max-width: 1040px) {
  .jingle-layout {
    grid-template-columns: 1fr;
  }

  .jingle-copy {
    min-height: 580px;
  }

  .jingle-copy h2 {
    max-width: 720px;
  }

  .jingle-megaphone {
    right: 4%;
    top: 190px;
    width: 210px;
  }

  .jingle-actions {
    max-width: 690px;
  }

  .jingle-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jingle-type-card {
    min-height: 300px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    padding: 48px 20px 22px;
    text-align: center;
  }

  .jingle-card-icon {
    width: 84px;
    height: 84px;
  }

  .jingle-card-icon .icon {
    width: 41px;
    height: 41px;
  }

  .jingle-type-card button {
    justify-self: center;
  }

  .jingle-license-copy {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .jingle-section {
    margin-block: 16px;
    padding: 32px 20px 36px;
    border-radius: 22px;
  }

  .jingle-benefits {
    flex-wrap: wrap;
    gap: 8px 11px;
    margin-bottom: 34px;
    border-radius: 16px;
    font-size: 12px;
  }

  .jingle-benefits > span[aria-hidden="true"] {
    display: none;
  }

  .jingle-benefits span {
    white-space: normal;
  }

  .jingle-copy {
    min-height: auto;
    padding-top: 6px;
  }

  .jingle-copy h2 {
    font-size: 40px;
    line-height: 1.05;
  }

  .jingle-copy > p:not(.jingle-price-note):not(.jingle-microcopy) {
    margin-top: 22px;
    font-size: 17px;
  }

  .jingle-wave {
    display: none;
  }

  .jingle-megaphone {
    position: relative;
    right: auto;
    top: auto;
    width: min(260px, 82%);
    margin: 20px auto 0;
    align-self: center;
    transform: rotate(-4deg);
  }

  .jingle-actions {
    margin-top: 18px;
  }

  .jingle-types {
    grid-template-columns: 1fr;
  }

  .jingle-type-card {
    min-height: 170px;
    grid-template-columns: 84px minmax(0, 1fr);
    justify-items: stretch;
    padding: 24px 20px;
    text-align: left;
  }

  .jingle-type-card button {
    justify-self: start;
  }

  .jingle-card-icon {
    width: 80px;
    height: 80px;
  }

  .jingle-card-icon .icon {
    width: 38px;
    height: 38px;
  }

  .jingle-license-copy {
    grid-column: auto;
    justify-self: center;
  }

  .jingle-drawer {
    width: min(500px, calc(100vw - 10px));
  }

  .jingle-drawer-header {
    padding: 19px 18px 16px;
  }

  .jingle-form-body {
    padding: 18px 18px 24px;
  }

  .jingle-form-footer {
    padding: 14px 18px 18px;
  }

  .jingle-included summary {
    min-height: auto;
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .premium-album-modal {
    width: calc(100vw - 28px);
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }

  .premium-album-modal-header {
    gap: 12px;
    padding: 20px 18px 17px;
  }

  .premium-album-modal-header h2 {
    font-size: 26px;
  }

  .premium-album-modal-body {
    padding: 18px 18px 22px;
  }

  .premium-album-intro {
    font-size: 15px;
  }

  .premium-album-placeholder {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 15px;
  }

  .premium-album-included ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .premium-album-actions {
    grid-template-columns: 1fr;
  }

  .premium-album-example {
    grid-column: auto;
  }

  .jingle-copy h2 {
    font-size: 35px;
  }

  .jingle-actions {
    flex-direction: column;
  }

  .jingle-primary,
  .jingle-secondary {
    width: 100%;
    flex-basis: auto;
  }

  .jingle-price-note {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 14px;
    text-align: center;
  }

  .jingle-microcopy {
    align-items: flex-start;
  }

  .jingle-type-card {
    min-height: 190px;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    padding: 46px 16px 20px;
  }

  .jingle-card-icon {
    width: 66px;
    height: 66px;
  }

  .jingle-card-icon .icon {
    width: 31px;
    height: 31px;
  }

  .jingle-card-badge {
    right: 14px;
    top: 14px;
  }

  .jingle-type-card h3 {
    font-size: 19px;
  }

  .jingle-duration-options,
  .jingle-voice-options,
  .jingle-deadline-options,
  .jingle-field-grid {
    grid-template-columns: 1fr;
  }

  .jingle-included ul {
    grid-template-columns: 1fr;
  }

  .jingle-estimate-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .jingle-estimate-heading strong {
    font-size: 24px;
  }
}
