:root {
  --black: #050505;
  --charcoal: #111111;
  --charcoal-2: #191919;
  --panel: rgba(17, 17, 17, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.22);
  --line-strong: rgba(255, 188, 0, 0.82);
  --gold: #ffc400;
  --gold-2: #f2a900;
  --white: #f8f8f8;
  --muted: #d8d8d8;
  --ink: #0b0b0b;
  --red: #ff3448;
  --pink: #f5389b;
  --purple: #a44dff;
  --cyan: #35d8e0;
  --green: #62d36f;
  --radius: 8px;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 196, 0, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 38%, rgba(255, 196, 0, 0.11), transparent 19rem),
    linear-gradient(180deg, #050505 0%, #101010 46%, #050505 100%);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  min-width: 320px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 196, 0, 0.08) 25px 26px, transparent 27px 52px);
  mask-image: linear-gradient(to bottom, transparent, black 18%, transparent 90%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  line-height: 0.85;
}

.brand-main {
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: 0;
  text-transform: none;
}

.brand-baby {
  position: relative;
  width: max-content;
  margin-left: 44px;
  margin-top: -1px;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-style: italic;
  transform: rotate(-7deg);
  text-shadow: 0 0 18px rgba(255, 196, 0, 0.36);
}

.brand-baby::after {
  position: absolute;
  right: -17px;
  top: 10px;
  content: "*";
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.58em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
}

.site-nav a,
.footer-links a {
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 5px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease;
}

.header-cta {
  gap: 10px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffd83b 0%, var(--gold) 48%, var(--gold-2) 100%);
  box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.2), 0 12px 24px rgba(255, 196, 0, 0.16);
}

.cart-icon {
  position: relative;
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: translateY(1px);
}

.cart-icon::before {
  position: absolute;
  left: -5px;
  top: -5px;
  width: 8px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: rotate(18deg);
}

.cart-icon::after {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: -7px;
  height: 4px;
  content: "";
  background:
    radial-gradient(circle at 2px 2px, currentColor 0 2px, transparent 2px),
    radial-gradient(circle at calc(100% - 2px) 2px, currentColor 0 2px, transparent 2px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(180deg, #ffe25c 0%, var(--gold) 50%, #eda400 100%);
  box-shadow: 0 16px 32px rgba(255, 196, 0, 0.24);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button-dark {
  color: var(--gold);
  background: #101010;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.button:active,
.header-cta:active,
.select-card:active,
.genre-button:active {
  transform: translateY(1px) scale(0.99);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.86fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  max-width: 1200px;
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 54px) 44px;
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 68%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.2) 56%, rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 66% 45%, rgba(255, 196, 0, 0.14), transparent 26rem);
  z-index: -1;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(4.1rem, 10vw, 8.1rem);
  line-height: 0.79;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: var(--gold);
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.26);
}

.hero h1 + .eyebrow {
  margin-top: 32px;
  margin-bottom: 10px;
}

.hero h1 + .eyebrow + .hero-subtitle {
  margin-top: 0;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  color: var(--white);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 0.66em;
  font-style: italic;
  font-weight: 700;
  line-height: 0.85;
  text-transform: none;
  transform: rotate(-4deg);
}

.hero h1 em::after {
  position: absolute;
  left: 6%;
  right: -5%;
  bottom: -12px;
  height: 8px;
  content: "";
  background: var(--gold);
  transform: rotate(-2deg);
  box-shadow: 46px 8px 0 -2px rgba(255, 196, 0, 0.74);
}

.hero-subtitle {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.26rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 25px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: visible;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 12px -16px -12px 12px;
  z-index: -1;
  border: 1px solid rgba(255, 196, 0, 0.22);
  background: rgba(255, 196, 0, 0.06);
  filter: blur(1px);
}

.hero-visual::after {
  left: -36px;
  bottom: 36px;
  width: 92%;
  height: 84px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 196, 0, 0.06) 0 8px, rgba(255, 196, 0, 0.42) 9px 11px, transparent 12px 19px);
  opacity: 0.6;
  transform: skewX(-10deg);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.price-burst {
  position: absolute;
  right: -14px;
  top: 43%;
  z-index: 3;
  width: min(210px, 44vw);
  padding: 18px 16px 20px;
  color: #090909;
  text-align: center;
  text-transform: uppercase;
  background: #fbfbfb;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  transform: rotate(9deg);
  clip-path: polygon(3% 0%, 96% 4%, 100% 93%, 8% 100%, 0% 17%);
}

.price-burst span,
.price-burst strong {
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
}

.price-burst strong {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 2.1rem;
  font-style: italic;
  line-height: 0.8;
  transform: rotate(-7deg);
}

.price-burst b {
  display: block;
  margin-top: 8px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 4.3rem;
  line-height: 0.9;
}

.price-burst b::after {
  display: block;
  width: 78%;
  height: 5px;
  margin: 8px auto 0;
  content: "";
  background: var(--gold);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 64px) clamp(18px, 4vw, 54px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.section-heading span {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-grid,
.example-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article,
.sample-card,
.form-panel,
.customer-panel,
.notice-panel,
.checkout-panel,
.faq-list details {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(11, 11, 11, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.process-grid article {
  padding: 22px;
}

.process-grid b {
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.4rem;
}

.process-grid h3,
.benefit-grid h3,
.sample-card h3,
.customer-panel h3,
.notice-panel h3,
.checkout-panel h3,
.faq-list summary {
  margin: 8px 0;
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-grid p,
.benefit-grid p,
.customer-panel p,
.notice-panel p,
.checkout-panel p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.example-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sample-card {
  position: relative;
  min-height: 210px;
  padding: 20px;
  overflow: hidden;
}

.sample-card::before {
  position: absolute;
  inset: -40% -10% auto;
  height: 70%;
  content: "";
  opacity: 0.18;
  background: currentColor;
  filter: blur(44px);
}

.sample-top {
  position: relative;
  display: grid;
  min-height: 112px;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.sample-card h3 {
  position: relative;
  z-index: 1;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-style: italic;
  line-height: 1;
  text-transform: none;
  transform: rotate(-5deg);
}

.genre-hiphop {
  color: var(--purple);
}

.genre-country {
  color: var(--green);
}

.genre-rock {
  color: var(--red);
}

.genre-pop {
  color: var(--cyan);
}

.sample-icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 44px;
}

.css-boombox {
  border: 4px solid currentColor;
  border-radius: 5px;
}

.css-boombox::before,
.css-boombox::after {
  position: absolute;
  bottom: 7px;
  width: 16px;
  height: 16px;
  content: "";
  border: 3px solid currentColor;
  border-radius: 50%;
}

.css-boombox::before {
  left: 7px;
}

.css-boombox::after {
  right: 7px;
}

.css-heart {
  width: 42px;
  height: 42px;
  margin-top: 4px;
  background: currentColor;
  transform: rotate(-45deg);
}

.css-heart::before,
.css-heart::after {
  position: absolute;
  width: 42px;
  height: 42px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.css-heart::before {
  top: -20px;
  left: 0;
}

.css-heart::after {
  top: 0;
  left: 20px;
}

.css-hat {
  width: 70px;
  height: 38px;
  margin-top: 9px;
  border-bottom: 10px solid currentColor;
  border-radius: 0 0 50% 50%;
}

.css-hat::before {
  position: absolute;
  left: 50%;
  bottom: 7px;
  width: 48px;
  height: 28px;
  content: "";
  border: 7px solid currentColor;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.css-hat::after {
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -10px;
  height: 9px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}

.css-guitar {
  width: 56px;
  height: 14px;
  margin-top: 24px;
  background: currentColor;
  border-radius: 99px;
  transform: rotate(-42deg);
}

.css-guitar::before {
  position: absolute;
  left: -16px;
  top: -13px;
  width: 32px;
  height: 32px;
  content: "";
  border: 7px solid currentColor;
  border-radius: 50%;
}

.css-guitar::after {
  position: absolute;
  right: -12px;
  top: 4px;
  width: 20px;
  height: 4px;
  content: "";
  background: currentColor;
}

.css-star {
  width: 0;
  height: 0;
  margin-top: 4px;
  border-right: 28px solid transparent;
  border-bottom: 20px solid currentColor;
  border-left: 28px solid transparent;
  transform: rotate(35deg);
}

.css-star::before,
.css-star::after {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  border-right: 28px solid transparent;
  border-bottom: 20px solid currentColor;
  border-left: 28px solid transparent;
}

.css-star::before {
  top: -13px;
  left: -18px;
  transform: rotate(-70deg);
}

.css-star::after {
  top: 1px;
  left: -30px;
  transform: rotate(-35deg);
}

audio {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 42px;
  margin-top: 10px;
  accent-color: var(--gold);
}

.jingle-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.84fr 1fr 1.34fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.74);
}

.form-panel {
  padding: clamp(18px, 3vw, 30px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form-panel + .form-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.form-panel legend {
  padding: 0;
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-panel legend span {
  color: var(--gold);
}

.form-panel p {
  margin: 12px 0 20px;
  color: var(--white);
}

.voice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.select-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  min-height: 156px;
  padding: 18px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.select-card strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.select-card.is-selected {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 196, 0, 0.08);
}

.select-card.is-selected::after {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  content: "OK";
  background: var(--gold);
  border-radius: 50%;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.68rem;
}

.mic-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 56px;
  border: 4px solid currentColor;
  border-radius: 99px 99px 70px 70px;
}

.mic-icon::before {
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 4px;
  height: 18px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
}

.mic-icon::after {
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 35px;
  height: 4px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
}

.label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.88rem;
}

select,
input,
textarea {
  width: 100%;
  min-height: 46px;
  color: #111111;
  background: linear-gradient(180deg, #ffffff, #ededed);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  outline: none;
}

select,
input {
  padding: 0 13px;
}

textarea {
  min-height: 82px;
  padding: 13px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.22);
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: #ff5264;
  box-shadow: 0 0 0 3px rgba(255, 82, 100, 0.18);
}

.genre-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.genre-button {
  min-height: 42px;
  padding: 0 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.genre-button:hover,
.genre-button:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

.genre-button.is-selected {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 196, 0, 0.1);
}

.genre-button.wide {
  grid-column: span 3;
}

.other-genre-wrap {
  margin-top: 14px;
}

.other-genre-wrap label,
.field-stack label,
.customer-fields label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.field-stack {
  display: grid;
  gap: 10px;
}

.large-textarea {
  min-height: 145px;
}

.character-count {
  justify-self: end;
  margin-top: -5px;
  color: var(--muted);
  font-size: 0.8rem;
}

.customer-panel,
.notice-panel,
.checkout-panel {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 30px);
}

.customer-panel {
  grid-template-columns: 0.8fr 1.2fr;
}

.customer-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.notice-panel {
  grid-template-columns: auto 1fr;
  border-color: rgba(255, 196, 0, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 12, 0.94);
}

.notice-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2rem;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  color: var(--white);
  line-height: 1.35;
}

.check-row input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  accent-color: var(--gold);
}

.checkout-panel {
  grid-template-columns: 1.05fr 0.95fr;
}

.checkout-summary dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.checkout-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-summary dt {
  color: var(--muted);
}

.checkout-summary dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  text-align: right;
}

.checkout-summary .summary-total {
  color: var(--gold);
  border-bottom: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.checkout-summary .summary-total dd {
  color: var(--gold);
}

.payment-box {
  display: grid;
  align-content: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.payment-box code {
  color: var(--gold);
}

.payment-button {
  width: 100%;
  min-height: 54px;
}

.form-error {
  min-height: 20px;
  color: #ff6475;
  font-weight: 700;
}

.success-message {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  text-align: center;
  background: linear-gradient(180deg, #ffe476, var(--gold));
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(255, 196, 0, 0.22);
}

.success-message h3 {
  margin: 0 0 12px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.success-message p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.45;
}

.benefit-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
}

.benefit-grid article {
  min-height: 164px;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 196, 0, 0.52);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  color: var(--gold);
  border: 4px solid var(--gold);
  border-radius: 50%;
}

.note-icon::before {
  width: 8px;
  height: 28px;
  content: "";
  background: currentColor;
  box-shadow: 15px -7px 0 currentColor;
  transform: rotate(4deg);
}

.note-icon::after {
  position: absolute;
  left: 20px;
  bottom: 15px;
  width: 15px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: currentColor;
  box-shadow: 16px -7px 0 currentColor;
}

.mail-icon::before {
  width: 31px;
  height: 22px;
  content: "";
  border: 3px solid currentColor;
}

.mail-icon::after {
  position: absolute;
  width: 22px;
  height: 22px;
  content: "";
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translate(-1px, -5px);
}

.clock-icon::before {
  width: 24px;
  height: 24px;
  content: "";
  border: 4px solid currentColor;
  border-radius: 50%;
}

.clock-icon::after {
  position: absolute;
  width: 14px;
  height: 14px;
  content: "";
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: translate(4px, -4px);
}

.tag-icon::before {
  width: 31px;
  height: 31px;
  content: "";
  border: 4px solid currentColor;
  border-radius: 5px;
  transform: rotate(45deg);
}

.tag-icon::after {
  position: absolute;
  top: 19px;
  right: 19px;
  width: 7px;
  height: 7px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.check-icon::before {
  width: 26px;
  height: 15px;
  content: "";
  border-left: 6px solid currentColor;
  border-bottom: 6px solid currentColor;
  transform: rotate(-45deg) translate(2px, -1px);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--gold);
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  float: right;
  color: var(--white);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 20px 20px;
}

.bottom-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.96), rgba(255, 196, 0, 0.92)),
    repeating-linear-gradient(-8deg, transparent 0 16px, rgba(0, 0, 0, 0.2) 17px 19px);
  clip-path: polygon(1% 0, 100% 8%, 99% 100%, 0 92%);
}

.bottom-cta h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.bottom-check {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: #121212;
  border-radius: 50%;
}

.bottom-check::before {
  width: 25px;
  height: 13px;
  content: "";
  border-left: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
  transform: rotate(-45deg) translate(2px, -1px);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 54px) 44px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  justify-content: center;
}

.contact-placeholders {
  display: grid;
  gap: 12px;
  justify-items: end;
  color: var(--muted);
}

.contact-placeholders p {
  margin: 0;
}

.contact-placeholders a {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 0.78rem;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open {
    align-items: start;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-cta {
    display: flex;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header.nav-open .site-nav a {
    padding: 13px 0;
  }

  .site-header.nav-open .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

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

  .hero-visual {
    min-height: 480px;
  }

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

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

  .form-panel + .form-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .customer-panel,
  .checkout-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-placeholders {
    justify-items: start;
  }

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

  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 196, 0, 0.32);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand-main {
    font-size: 1.34rem;
  }

  .brand-baby {
    margin-left: 36px;
    font-size: 1.34rem;
  }

  .hero {
    padding: 34px 16px 24px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.1rem);
  }

  .hero-subtitle {
    margin-top: 28px;
  }

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

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual::before {
    inset: 10px;
  }

  .price-burst {
    right: 8px;
    top: 49%;
    width: 168px;
  }

  .price-burst strong {
    font-size: 1.6rem;
  }

  .price-burst b {
    font-size: 3.2rem;
  }

  .section {
    padding: 36px 16px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading span {
    display: none;
  }

  .process-grid,
  .example-grid,
  .benefit-grid,
  .faq-list,
  .customer-fields {
    grid-template-columns: 1fr;
  }

  .voice-options {
    grid-template-columns: 1fr 1fr;
  }

  .select-card {
    min-height: 144px;
  }

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

  .genre-button.wide {
    grid-column: span 2;
  }

  .notice-panel {
    grid-template-columns: 1fr;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 12px 16px 0;
    text-align: center;
  }

  .bottom-cta .button {
    width: 100%;
  }

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

@media (max-width: 430px) {
  .hero-visual {
    min-height: 330px;
  }

  .price-burst {
    top: 45%;
    width: 145px;
    padding: 14px 12px;
  }

  .price-burst span {
    font-size: 0.82rem;
  }

  .price-burst strong {
    font-size: 1.36rem;
  }

  .price-burst b {
    font-size: 2.7rem;
  }

  .voice-options,
  .genre-buttons {
    grid-template-columns: 1fr;
  }

  .genre-button.wide {
    grid-column: auto;
  }
}

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