:root {
  --red: #ec2948;
  --red-dark: #b50f2e;
  --yellow: #ffd83d;
  --cream: #fff9ed;
  --ink: #21151a;
  --muted: #6d5c62;
  --pink: #ffe1e8;
  --blue: #dcecff;
  --green: #dff4d3;
  --line: #eadbd7;
  --white: #fff;
  --shadow: 0 18px 50px rgba(80, 21, 36, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  color: inherit;
}
.hidden {
  display: none !important;
}
.promo-bar {
  height: 34px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  padding: 0 10px;
}
.site-header {
  height: 76px;
  padding: 0 clamp(16px, 5vw, 72px);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand {
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: -1px;
  font-size: 25px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.brand span {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  white-space: nowrap;
  border: 0;
  background: none;
  font-weight: 700;
  cursor: pointer;
  padding: 10px;
}
.currency {
  display: flex;
  background: #f5efeb;
  padding: 3px;
  border-radius: 999px;
}
.currency button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.currency button.active {
  background: #fff;
  box-shadow: 0 1px 6px #0002;
}
.button {
  border: 0;
  border-radius: 9px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition:
    transform 0.16s,
    box-shadow 0.16s,
    background 0.16s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}
.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 0 var(--red-dark);
}
.button.primary:hover {
  background: #ff3857;
}
.button.secondary {
  background: #fff;
  border: 2px solid var(--ink);
}
.button.dark {
  background: var(--ink);
  color: #fff;
}
.button.small {
  padding: 9px 14px;
  font-size: 13px;
}
.button.big {
  font-size: 16px;
  padding: 16px 24px;
}
.button.huge {
  font-size: 18px;
  padding: 19px 28px;
}
.button.wide {
  width: 100%;
}
.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  background: #fff;
  overflow: hidden;
}
.hero-photo {
  background: url("/assets/famiglia-canzone-hero.webp") center/cover no-repeat;
  min-height: 620px;
}
.hero-copy {
  padding: 70px clamp(28px, 6vw, 90px) 60px 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.eyebrow {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  transform: rotate(-1deg);
}
.eyebrow.coral {
  background: var(--red);
}
.eyebrow.yellow {
  background: var(--yellow);
  color: var(--ink);
}
.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  margin: 22px 0;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-lead {
  font-size: 20px;
  max-width: 580px;
  margin: 0 0 22px;
  color: #493940;
}
.hero-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0 9px;
  margin-bottom: 22px;
}
.hero-price span {
  font-weight: 700;
}
.hero-price strong {
  font-size: 42px;
  line-height: 1;
  color: var(--red);
}
.hero-price small {
  grid-column: 1/-1;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
}
.trust-line {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin: 18px 0 0;
}
.proof-strip {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px clamp(20px, 7vw, 110px);
  gap: 20px;
}
.proof-strip div {
  text-align: center;
  border-right: 1px solid #ffffff30;
}
.proof-strip div:last-child {
  border: 0;
}
.proof-strip strong {
  display: block;
  font-size: 27px;
  color: var(--yellow);
}
.proof-strip span {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.section {
  padding: 90px clamp(18px, 7vw, 110px);
}
.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 44px;
}
.section-heading.left {
  text-align: left;
  margin-left: 0;
}
.section-heading h2,
.referral-banner h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 18px 0 12px;
}
.section-heading p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}
.occasions {
  background: #fff;
}
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: auto;
}
.occasion-grid button {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 15px;
  padding: 22px;
  text-align: left;
  cursor: pointer;
  font-size: 30px;
  transition: 0.15s;
}
.occasion-grid button:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.occasion-grid b,
.occasion-grid span {
  display: block;
}
.occasion-grid b {
  font-size: 18px;
  margin: 7px 0 2px;
}
.occasion-grid span {
  font-size: 13px;
  color: var(--muted);
}
.how {
  background: var(--yellow);
  text-align: center;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1150px;
  margin: 0 auto 38px;
  text-align: left;
}
.how-grid .email-step {
  order: 4;
}
/* Four narrow columns only fit with the number above the text; below that
   width two roomy columns read better than four squeezed ones. */
@media (min-width: 1101px) {
  .how-grid article {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 1100px) {
  .how-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 820px;
  }
  .site-header .desktop-only {
    display: none;
  }
}
@media (max-width: 600px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}
.compare-previews {
  margin: 0 20px 16px;
}
.site-language {
  width: auto;
  max-width: 120px;
  min-height: 38px;
  padding: 6px;
  font: inherit;
  border: 1px solid #bbb;
  border-radius: 8px;
  background: white;
  color: #222;
}
@media (max-width: 600px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }
  .site-language {
    max-width: 100px;
    font-size: 13px;
  }
}
.how-grid article {
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 18px;
}
.how-grid i {
  font-style: normal;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}
.how-grid h3 {
  margin: 2px 0 6px;
  font-size: 21px;
}
.how-grid p {
  margin: 0;
  color: var(--muted);
}
.extras-showcase {
  background: #fff;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 14px;
}
.extras-grid article {
  border-radius: 16px;
  padding: 25px;
  min-height: 275px;
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.extras-grid article.pink {
  background: var(--pink);
}
.extras-grid article.blue {
  background: var(--blue);
}
.extras-grid article.yellow {
  background: #fff1a8;
}
.extras-grid article.green {
  background: var(--green);
}
.extras-grid article > span {
  font-size: 45px;
}
.extras-grid h3 {
  font-size: 22px;
  margin: 12px 0 5px;
}
.extras-grid p {
  margin: 0 0 16px;
  color: #55454b;
}
.extras-grid b {
  margin-top: auto;
  font-size: 18px;
}
.reviews {
  background: #6c1735;
  color: #fff;
}
.reviews .section-heading p {
  color: #f3c9d7;
}
.placeholder-note {
  font-size: 12px !important;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-grid blockquote {
  margin: 0;
  background: #fff;
  color: var(--ink);
  border-radius: 15px;
  padding: 28px;
  box-shadow: 7px 7px 0 var(--yellow);
}
.review-grid blockquote > span {
  color: #e99900;
  letter-spacing: 3px;
}
.review-grid blockquote p {
  font-size: 18px;
  font-weight: 700;
}
.review-grid footer {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.pricing {
  background: var(--cream);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
  gap: 18px;
}
.offer-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.offer-card.featured {
  border-color: var(--red);
  box-shadow: 8px 8px 0 var(--red);
}
.offer-badge {
  position: absolute;
  right: 18px;
  top: -15px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
  transform: rotate(2deg);
}
.offer-card h3 {
  font-size: 25px;
  margin: 0;
}
.offer-card .price {
  font-size: 45px;
  font-weight: 1000;
  color: var(--red);
  line-height: 1;
  margin: 15px 0 6px;
}
.offer-card p {
  color: var(--muted);
  margin: 5px 0 18px;
}
.offer-card ul {
  padding: 0;
  list-style: none;
  margin: 0 0 22px;
}
.offer-card li {
  margin: 8px 0;
  font-weight: 700;
}
.secure-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 25px;
}
.referral-banner {
  padding: 55px clamp(24px, 9vw, 150px);
  background: var(--red);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.referral-banner > div > span {
  font-size: 35px;
}
.referral-banner h2 {
  margin: 8px 0;
}
.referral-banner p {
  margin: 0;
  max-width: 600px;
}
.create-page {
  min-height: calc(100vh - 110px);
  background: linear-gradient(135deg, #fff3c9, #ffdce5);
  padding: 40px 18px;
}
.wizard-shell {
  max-width: 850px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.close-page {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
}
.wizard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 20px 34px;
}
.wizard-head > div {
  width: 250px;
  text-align: right;
  font-size: 12px;
  margin-right: 28px;
}
.progress {
  height: 8px;
  background: #eee;
  border-radius: 99px;
  margin-top: 7px;
  overflow: hidden;
}
.progress i {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--red);
  transition: width 0.2s;
}
.wizard-step {
  padding: 42px 70px;
}
.wizard-step > h1 {
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 18px 0 8px;
}
.wizard-step > h1 em {
  font-style: normal;
  color: var(--red);
}
.wizard-step > p {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 30px;
}
.wizard-step label {
  display: block;
  margin: 22px 0;
}
.wizard-step label > span,
.extra-fields label > span {
  display: block;
  font-weight: 800;
  margin-bottom: 7px;
}
.wizard-step label small {
  font-weight: 400;
  color: var(--muted);
}
input,
textarea,
select {
  width: 100%;
  border: 2px solid #d9ccca;
  background: #fff;
  border-radius: 9px;
  padding: 14px 15px;
  color: var(--ink);
}
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #ffd1da;
  border-color: var(--red);
}
textarea {
  resize: vertical;
}
.field-help {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}
.required-note {
  margin: -4px 0 14px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 700;
}
.wizard-step fieldset {
  border: 0;
  padding: 0;
  margin: 25px 0;
}
.wizard-step legend {
  font-weight: 800;
  margin-bottom: 10px;
}
.choice-grid {
  display: grid;
  gap: 9px;
}
.choice-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}
.choice-grid.styles {
  grid-template-columns: repeat(2, 1fr);
}
.choice {
  border: 2px solid #ddd0cd;
  background: #fff;
  padding: 13px 12px;
  border-radius: 9px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.choice:hover,
.choice.selected {
  border-color: var(--red);
  background: #fff1f4;
}
.choice.selected:after {
  content: " ✓";
  color: var(--red);
}
.lyrics-choice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.lyrics-choice label {
  margin: 0;
  border: 2px solid #ddd0cd;
  border-radius: 10px;
  padding: 18px;
  cursor: pointer;
}
.lyrics-choice label:has(input:checked) {
  border-color: var(--red);
  background: #fff2f4;
}
.lyrics-choice input {
  position: absolute;
  opacity: 0;
}
.lyrics-choice span,
.lyrics-choice b,
.lyrics-choice small {
  display: block;
}
.lyrics-choice span {
  font-size: 30px;
}
.lyrics-choice b {
  margin: 5px 0;
}
.summary-box {
  background: var(--cream);
  border: 2px dashed #d7bcb4;
  border-radius: 10px;
  padding: 16px;
  margin: 24px 0;
}
.consent {
  font-size: 12px;
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
}
.consent input {
  width: auto;
  margin-top: 3px;
}
.wizard-actions {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 22px 34px;
  display: flex;
  justify-content: space-between;
}
.library-page {
  padding: 60px clamp(18px, 7vw, 110px);
  min-height: 80vh;
}
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
}
.dashboard-head h1 {
  font-size: 50px;
  line-height: 1;
  margin: 14px 0 8px;
}
.dashboard-head p {
  color: var(--muted);
  margin: 0;
}
.notice {
  padding: 16px;
  border-radius: 10px;
  background: var(--green);
  border: 2px solid #8bb874;
  margin-bottom: 20px;
  font-weight: 700;
}
.song-list {
  display: grid;
  gap: 18px;
}
.song-project {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px #5b1b2d0c;
}
.project-head {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  background: #fff8f3;
}
.project-head h2 {
  margin: 0;
  font-size: 24px;
}
.project-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.variant-list {
  padding: 12px 22px;
}
.variant {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.variant:last-child {
  border: 0;
}
.variant-no {
  width: 42px;
  height: 42px;
  background: var(--pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.variant.selected .variant-no {
  background: var(--red);
  color: #fff;
}
.variant-info b,
.variant-info span {
  display: block;
}
.variant-info span {
  color: var(--muted);
  font-size: 12px;
}
.variant-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}
.mini-btn {
  border: 1px solid #cbbab7;
  background: #fff;
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.mini-btn.red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.mini-btn:disabled {
  opacity: 0.5;
}
.status {
  font-size: 12px;
  font-weight: 900;
  padding: 6px 9px;
  border-radius: 99px;
  background: #eee;
}
.status.ready {
  background: var(--green);
}
.status.failed {
  background: var(--pink);
  color: var(--red-dark);
}
.project-footer {
  padding: 15px 22px;
  background: #fff8f3;
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: flex-end;
}
.post-purchase-upsell {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}
.post-purchase-upsell > span {
  font-size: 34px;
}
.post-purchase-upsell h3,
.post-purchase-upsell p {
  margin: 0;
}
.post-purchase-upsell p {
  margin-top: 4px;
  color: #58484a;
  font-size: 14px;
}
.empty-state {
  text-align: center;
  padding: 60px;
  background: #fff;
  border: 2px dashed #d5c4bf;
  border-radius: 15px;
}
.empty-state > span {
  font-size: 60px;
}
.account-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 45px;
}
.account-grid article {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 25px;
}
.account-grid .icon {
  font-size: 35px;
}
.account-grid h2 {
  margin: 0 0 5px;
  font-size: 21px;
}
.account-grid p {
  color: var(--muted);
  font-size: 14px;
}
.account-grid form,
.share-row {
  display: flex;
  gap: 8px;
}
.account-grid form input,
.share-row input {
  min-width: 0;
}
.referral-status {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}
.referral-status b,
.referral-status span {
  display: block;
}
.ref-progress {
  height: 12px;
  background: #eee;
  border-radius: 99px;
  flex: 1;
  overflow: hidden;
}
.ref-progress i {
  height: 100%;
  display: block;
  background: var(--red);
  width: 0;
}
.share-row {
  margin-bottom: 10px;
}
dialog {
  border: 0;
  border-radius: 18px;
  padding: 35px;
  max-width: 900px;
  width: calc(100% - 30px);
  box-shadow: 0 30px 100px #0005;
  max-height: calc(100dvh - 30px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #2b0c1888;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-size: 36px;
  letter-spacing: -0.03em;
  margin: 15px 0 5px;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 2;
}
#extras-dialog .dialog-close {
  display: block;
  position: sticky;
  float: none;
  top: 0;
  right: auto;
  margin: -20px -5px -22px auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}
.confirmation-dialog {
  max-width: 760px;
  max-height: min(92vh, 850px);
  padding: 42px;
  text-align: center;
  overflow-y: auto;
}
.confirmation-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 32px;
  transform: rotate(-5deg);
}
.confirmation-dialog > p {
  margin: 10px auto 24px;
  max-width: 430px;
  color: var(--muted);
  line-height: 1.55;
}
.selection-extras {
  margin: 20px 0;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--cream);
  text-align: left;
}
.buy-extras {
  margin: 24px 0;
  padding: 18px;
  border-radius: 14px;
  background: var(--cream);
}
.buy-extras h3,
.buy-extras p {
  margin: 0;
}
.buy-extras p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}
.selection-extras h3,
.selection-extras p {
  margin: 0;
}
.selection-extras p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}
.selection-extras-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.selection-extra-option {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px;
  border: 2px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}
.selection-extra-option:has(input:checked) {
  border-color: var(--red);
  background: #fff2f4;
}
.selection-extra-option input {
  width: auto;
}
.selection-extra-option strong {
  color: var(--red-dark);
  font-size: 13px;
}
.confirmation-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 1px solid #f1c9cd;
  border-radius: 12px;
  background: #fff6f7;
  text-align: left;
}
.confirmation-note span {
  font-size: 21px;
}
.confirmation-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
  margin-top: 24px;
}
.extras-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}
.extra-option {
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  gap: 10px;
  cursor: pointer;
}
.extra-option:has(input:checked) {
  border-color: var(--red);
  background: #fff2f4;
}
.extra-option input {
  width: auto;
}
.extra-option b,
.extra-option small,
.extra-option strong {
  display: block;
}
.extra-option strong {
  margin-top: 6px;
  color: var(--red-dark);
}
.extra-fields {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
}
.extra-fields label:nth-child(2) {
  grid-row: span 2;
}
.upload-fields {
  margin: 15px 0;
}
.file-drop {
  display: grid;
  place-items: center;
  border: 2px dashed #c9aaa3;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
}
.file-drop > span {
  font-size: 35px;
}
.file-drop input {
  margin-top: 10px;
}
.form-error {
  color: var(--red-dark);
  font-weight: 700;
  background: var(--pink);
  padding: 10px;
  border-radius: 8px;
}
.player {
  position: fixed;
  z-index: 50;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 50px #0006;
  border-radius: 13px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: 42px minmax(120px, 240px) 1fr auto;
  align-items: center;
  gap: 13px;
}
.player > button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
}
.player b,
.player span {
  display: block;
}
.player span {
  font-size: 11px;
  color: #c8bac0;
}
#player-title span {
  display: inline;
  font-size: inherit;
  color: inherit;
}
.player-track {
  height: 8px;
  background: #ffffff22;
  border-radius: 99px;
  cursor: pointer;
  overflow: hidden;
}
.player-track i {
  height: 100%;
  display: block;
  background: var(--red);
  width: 0;
}
.player a {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.toasts {
  position: fixed;
  z-index: 100;
  right: 20px;
  top: 125px;
  display: grid;
  gap: 8px;
}
.toast {
  max-width: 360px;
  background: var(--ink);
  color: #fff;
  padding: 13px 16px;
  border-radius: 9px;
  box-shadow: var(--shadow);
}
.toast.ok {
  background: #2c6e35;
}
.toast.error {
  background: var(--red-dark);
}
.variant-hint {
  flex: 1 1 100%;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}
.test-mode-banner {
  position: sticky;
  top: 76px;
  z-index: 20;
  padding: 10px 16px;
  text-align: center;
  background: #bdf5cf;
  border-bottom: 2px solid var(--ink);
  font-size: 13px;
  font-weight: 950;
}
.promo-redeem {
  margin-top: 26px;
  padding: 22px;
  border: 2px dashed var(--ink);
  border-radius: 16px;
  background: var(--yellow);
}
.promo-redeem h3,
.promo-redeem p {
  margin: 0 0 8px;
}
.promo-redeem form {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 8px;
  margin-top: 14px;
}
.promo-redeem input {
  min-width: 0;
}
.faq {
  background: #fff7df;
}
.faq-list {
  max-width: 860px;
  margin: 38px auto 0;
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}
.faq-list summary {
  padding: 20px 52px 20px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  position: relative;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 26px;
  line-height: 18px;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  margin: 0;
  padding: 0 20px 22px;
  color: var(--muted);
  line-height: 1.6;
}
.info-page {
  min-height: 75vh;
  padding: 55px 24px 90px;
  background: var(--cream);
  position: relative;
}
.simple-page-head {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}
.simple-page-head h1 {
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 18px 0;
}
.simple-page-head > p {
  color: var(--muted);
  font-size: 20px;
}
.simple-steps {
  max-width: 1120px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.simple-steps article {
  position: relative;
  padding: 24px 18px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink);
}
.simple-steps article > i {
  position: absolute;
  top: 10px;
  right: 12px;
  font-style: normal;
  font-weight: 950;
  color: var(--red);
}
.simple-steps article > span {
  font-size: 34px;
}
.simple-steps h2 {
  font-size: 20px;
  margin: 14px 0 8px;
}
.simple-steps p,
.simple-callout p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.simple-callout {
  max-width: 850px;
  margin: 44px auto 30px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-radius: 18px;
  background: var(--yellow);
  border: 2px solid var(--ink);
}
.simple-callout span {
  color: #16814f;
  font-weight: 950;
  margin-right: 7px;
}
.centered {
  display: block;
  margin-inline: auto;
}
.contact-layout {
  max-width: 970px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.contact-layout aside,
.contact-form {
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 6px 6px 0 var(--ink);
}
.contact-layout aside > span {
  font-size: 45px;
}
.contact-layout aside li {
  margin: 10px 0;
}
.contact-layout aside p {
  margin: 24px 0;
  color: var(--muted);
}
.contact-form {
  display: grid;
  gap: 16px;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.site-footer {
  padding: 40px max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.site-footer .brand {
  color: #fff;
}
.site-footer p {
  margin: 0;
  color: #d8d0cb;
}
.site-footer nav {
  display: flex;
  gap: 15px;
}
.site-footer button {
  border: 0;
  padding: 0;
  background: none;
  color: #fff;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 900px) {
  .simple-steps {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
  .promo-redeem form {
    grid-template-columns: 1fr;
  }
  .desktop-only {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    min-height: 410px;
    order: 2;
    background-position: 61% center;
  }
  .hero-copy {
    padding: 45px 24px;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }
  .proof-strip div:nth-child(2) {
    border-right: 0;
  }
  .occasion-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .extras-grid {
    grid-template-columns: 1fr 1fr;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
  .wizard-step {
    padding: 36px;
  }
  .choice-grid.compact {
    grid-template-columns: 1fr 1fr;
  }
  .lyrics-choice {
    grid-template-columns: 1fr;
  }
  .dashboard-head {
    align-items: flex-start;
    gap: 20px;
  }
  .variant {
    grid-template-columns: 45px 1fr;
  }
  .variant-actions {
    grid-column: 1/-1;
    justify-content: flex-start;
  }
  .project-footer {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .post-purchase-upsell {
    grid-template-columns: auto 1fr;
  }
  .post-purchase-upsell .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .simple-steps,
  .simple-callout {
    grid-template-columns: 1fr;
  }
  .info-page {
    padding: 38px 12px 65px;
  }
  .simple-page-head h1 {
    font-size: 42px;
  }
  .contact-layout aside,
  .contact-form {
    padding: 21px;
  }
  .site-footer {
    padding: 34px 20px;
  }
  body {
    font-size: 15px;
  }
  .promo-bar {
    font-size: 11px;
  }
  .site-header {
    height: 64px;
    padding: 0 12px;
  }
  .brand {
    font-size: 19px;
  }
  .brand span {
    width: 30px;
    height: 30px;
  }
  .site-header nav {
    gap: 5px;
  }
  .currency button {
    padding: 6px;
    font-size: 10px;
  }
  .site-header .button {
    padding: 7px 9px;
    font-size: 11px;
  }
  .hero-photo {
    min-height: 300px;
  }
  .hero-copy {
    padding: 34px 18px 42px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero .button {
    width: 100%;
    font-size: 15px;
  }
  .proof-strip {
    padding: 20px 12px;
    gap: 12px;
  }
  .proof-strip strong {
    font-size: 21px;
  }
  .section {
    padding: 65px 16px;
  }
  .section-heading h2,
  .referral-banner h2 {
    font-size: 36px;
  }
  .occasion-grid,
  .extras-grid {
    grid-template-columns: 1fr;
  }
  .how-grid article {
    box-shadow: 4px 4px 0 var(--ink);
  }
  .review-grid blockquote {
    box-shadow: 5px 5px 0 var(--yellow);
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .referral-banner {
    padding: 42px 18px;
    display: block;
  }
  .referral-banner .button {
    margin-top: 22px;
    width: 100%;
  }
  .create-page {
    padding: 12px 8px;
  }
  .wizard-shell {
    border-radius: 12px;
  }
  .wizard-head {
    padding: 15px;
  }
  .wizard-head > div {
    width: 150px;
  }
  .wizard-step {
    padding: 32px 18px;
  }
  .wizard-step > h1 {
    font-size: 34px;
  }
  .choice-grid.compact,
  .choice-grid.styles {
    grid-template-columns: 1fr;
  }
  .wizard-actions {
    padding: 15px;
    gap: 8px;
  }
  .wizard-actions .button {
    padding: 12px;
    font-size: 13px;
  }
  .library-page {
    padding: 38px 12px;
  }
  .dashboard-head {
    display: block;
  }
  .dashboard-head h1 {
    font-size: 40px;
  }
  .dashboard-head .button {
    margin-top: 18px;
    width: 100%;
  }
  .project-head {
    display: block;
  }
  .project-head .button {
    margin-top: 12px;
  }
  .variant-list {
    padding: 10px 14px;
  }
  .account-grid article {
    display: block;
    padding: 20px;
  }
  .account-grid form,
  .share-row {
    display: grid;
  }
  .extras-options,
  .extra-fields {
    grid-template-columns: 1fr;
  }
  dialog {
    padding: 28px 18px;
  }
  .confirmation-dialog {
    padding: 32px 18px 20px;
  }
  .confirmation-actions {
    grid-template-columns: 1fr;
  }
  .selection-extras-options {
    grid-template-columns: 1fr;
  }
  .player {
    left: 7px;
    right: 7px;
    bottom: 7px;
    grid-template-columns: 36px 1fr auto;
  }
  .player-track {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .toasts {
    left: 10px;
    right: 10px;
    top: 105px;
  }
  .toast {
    max-width: none;
  }
}
