:root {
  --ink: #13233b;
  --ink-soft: #57657d;
  --ink-deep: #0c172a;
  --paper: #f6f0e7;
  --paper-strong: rgba(255, 251, 246, 0.86);
  --panel: rgba(255, 250, 244, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --midnight: #152741;
  --midnight-strong: #0f1b31;
  --gold: #c79d62;
  --gold-soft: rgba(199, 157, 98, 0.18);
  --rose: #cc8e9c;
  --rose-soft: rgba(204, 142, 156, 0.18);
  --shadow: 0 24px 60px rgba(16, 28, 47, 0.09);
  --shadow-soft: 0 16px 34px rgba(16, 28, 47, 0.07);
  --border: rgba(19, 35, 59, 0.12);
  --border-strong: rgba(19, 35, 59, 0.18);
  --ok: #0f7c5a;
  --ok-soft: rgba(15, 124, 90, 0.12);
  --danger: #b34135;
  --danger-soft: rgba(179, 65, 53, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(243, 215, 160, 0.24), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ede3 45%, #f9f5ee 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(19, 35, 59, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 35, 59, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.ambient-background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.ambient-orb,
.ambient-arc {
  position: absolute;
  opacity: 0.65;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(8px);
  animation: drift 18s ease-in-out infinite;
}

.ambient-orb-one {
  top: -5%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(207, 164, 102, 0.2), transparent 70%);
}

.ambient-orb-two {
  bottom: 6%;
  left: -6%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(204, 142, 156, 0.14), transparent 72%);
  animation-duration: 21s;
}

.ambient-arc {
  border: 1px solid rgba(199, 157, 98, 0.16);
  border-radius: 999px;
  animation: slowRotate 24s linear infinite;
}

.ambient-arc-one {
  top: 7%;
  left: 18%;
  width: 520px;
  height: 220px;
}

.ambient-arc-two {
  bottom: 9%;
  right: 8%;
  width: 360px;
  height: 180px;
  animation-direction: reverse;
}

.page-shell {
  width: min(calc(100% - 34px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header,
.trust-strip,
.editorial-card,
.occasion-card,
.demo-card,
.brief-form,
.preview-shell,
.pricing-card,
.faq-card,
.thank-you-shell,
.song-card {
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 34px;
  padding: 16px 20px;
  border: 1px solid rgba(199, 157, 98, 0.14);
  border-radius: 999px;
  background: rgba(250, 246, 239, 0.82);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  filter: drop-shadow(0 14px 22px rgba(16, 28, 47, 0.12));
}

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.site-nav a,
.button,
.pricing-tier,
.trust-label,
.mini-label,
.occasion-index {
  letter-spacing: 0.01em;
}

.brand-text strong {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.brand-text span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a,
.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a {
  font-size: 0.94rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d3556, #12223b);
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(16, 28, 47, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(16, 28, 47, 0.2);
}

.button:disabled {
  opacity: 0.75;
  cursor: wait;
}

.button-small {
  padding: 12px 16px;
  font-size: 0.92rem;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(19, 35, 59, 0.14);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  padding: 22px 0 12px;
}

.hero-copy {
  padding: 22px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.builder-intro h2,
.thank-you-copy h2,
.song-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.2vw, 5.8rem);
  line-height: 0.93;
}

.hero-text,
.section-intro,
.editorial-card p,
.occasion-card p,
.demo-card p,
.song-card-text,
.preview-story,
.faq-card p,
.form-footnote,
.thank-you-text,
.thank-you-reference,
.trust-strip p,
.process-list p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-text {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.hero-notes article,
.trust-strip > div,
.occasion-card,
.editorial-card,
.demo-card,
.pricing-card,
.faq-card,
.brief-form,
.preview-shell,
.thank-you-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.hero-notes article {
  padding: 18px 18px 16px;
}

.hero-notes strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hero-notes span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-stage {
  display: flex;
}

.song-card {
  width: 100%;
  padding: 30px;
  border: 1px solid rgba(199, 157, 98, 0.16);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(17, 30, 51, 0.98), rgba(13, 23, 42, 0.98)),
    radial-gradient(circle at top left, rgba(199, 157, 98, 0.18), transparent 42%);
  color: #f7f0e7;
  box-shadow: 0 28px 56px rgba(14, 23, 41, 0.2);
}

.song-card-header,
.song-card-footer,
.demo-card-header,
.hero-player-meta,
.preview-caption-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.song-tag,
.song-status,
.pricing-tier,
.trust-label,
.mini-label,
.occasion-index,
.demo-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.song-tag,
.song-status {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 249, 239, 0.92);
}

.song-card h2 {
  margin-top: 24px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.song-card-text {
  margin: 18px 0 24px;
  color: rgba(247, 240, 231, 0.76);
}

.hero-visual,
.preview-visual {
  --tone-primary: #c79d62;
  --tone-secondary: #f2d2a7;
  --tone-shadow: rgba(199, 157, 98, 0.22);
}

.hero-visual[data-tone="romantic"],
.preview-visual[data-tone="romantic"] {
  --tone-primary: #ca8f9d;
  --tone-secondary: #f1ced6;
  --tone-shadow: rgba(202, 143, 157, 0.2);
}

.hero-visual[data-tone="playful"],
.preview-visual[data-tone="playful"] {
  --tone-primary: #7bb8b0;
  --tone-secondary: #d4ede6;
  --tone-shadow: rgba(123, 184, 176, 0.2);
}

.hero-visual[data-tone="cinematic"],
.preview-visual[data-tone="cinematic"] {
  --tone-primary: #8faedc;
  --tone-secondary: #d9e5f8;
  --tone-shadow: rgba(143, 174, 220, 0.2);
}

.hero-visual {
  margin: 0 0 24px;
}

.hero-frame {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  min-height: 290px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top left, var(--tone-shadow), transparent 42%);
  overflow: hidden;
}

.hero-frame::before,
.preview-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
}

.hero-frame-glow {
  position: absolute;
  top: 14%;
  right: 10%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tone-shadow), transparent 72%);
  filter: blur(6px);
  animation: pulseGlow 5.6s ease-in-out infinite;
}

.hero-paper,
.hero-player {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-paper {
  align-self: start;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(252, 246, 238, 0.94), rgba(248, 240, 228, 0.9));
  color: var(--ink);
  transform: rotate(-4deg);
}

.mini-label {
  background: var(--gold-soft);
  color: var(--midnight);
}

.paper-line,
.paper-recipient {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}

.paper-line {
  font-size: 1.55rem;
  line-height: 1.08;
}

.paper-recipient {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.hero-player {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: end;
  min-height: 200px;
  padding: 20px 18px 18px;
  background:
    linear-gradient(180deg, rgba(24, 42, 67, 0.92), rgba(15, 27, 47, 0.94)),
    radial-gradient(circle at top right, var(--tone-shadow), transparent 42%);
}

.hero-wave,
.preview-bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 10px;
}

.hero-wave {
  height: 116px;
  margin: 18px 0 20px;
}

.hero-wave span,
.preview-bars span {
  flex: 1;
  min-width: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--tone-secondary), var(--tone-primary));
  box-shadow: 0 14px 22px var(--tone-shadow);
  transform-origin: bottom;
  animation: equalize 2.8s ease-in-out infinite;
  animation-delay: var(--delay);
}

.hero-wave span {
  height: calc(26px + (72px * var(--size)));
}

.hero-player-meta span {
  color: rgba(255, 249, 239, 0.74);
  font-size: 0.85rem;
}

.hero-seal {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(247, 238, 220, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.song-card-footer span {
  color: rgba(247, 240, 231, 0.7);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 42px;
}

.trust-strip > div {
  padding: 20px;
}

.trust-label,
.pricing-tier,
.occasion-index {
  background: rgba(19, 35, 59, 0.08);
  color: var(--ink);
}

.section {
  padding: 48px 0;
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 26px;
}

.section-heading h2,
.builder-intro h2,
.thank-you-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.editorial-grid,
.occasion-grid,
.demo-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.editorial-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

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

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

.editorial-card,
.occasion-card,
.demo-card,
.pricing-card,
.faq-card {
  padding: 24px;
}

.editorial-card-dark {
  background:
    linear-gradient(180deg, rgba(21, 39, 65, 0.96), rgba(15, 27, 47, 0.96)),
    radial-gradient(circle at top left, rgba(199, 157, 98, 0.15), transparent 42%);
  color: #f7f0e7;
  border-color: rgba(199, 157, 98, 0.16);
}

.editorial-card-dark p {
  color: rgba(247, 240, 231, 0.74);
}

.editorial-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
}

.editorial-card h3,
.occasion-card h3,
.demo-card h3,
.pricing-card h3,
.faq-card h3,
.preview-shell h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.06;
}

.demo-card,
.pricing-card,
.faq-card,
.occasion-card {
  display: flex;
  flex-direction: column;
}

.demo-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(248, 241, 232, 0.9)),
    radial-gradient(circle at top right, rgba(204, 142, 156, 0.12), transparent 42%);
}

.demo-card-featured {
  transform: translateY(-8px);
}

.demo-detail {
  background: rgba(199, 157, 98, 0.12);
  color: var(--gold);
}

.demo-story {
  margin: 0 0 18px;
}

.demo-card blockquote {
  margin: 0 0 20px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.34;
}

.demo-button,
.pricing-button {
  margin-top: auto;
}

.builder-shell {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(199, 157, 98, 0.16);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.7), rgba(248, 241, 232, 0.72)),
    radial-gradient(circle at top right, rgba(199, 157, 98, 0.1), transparent 40%);
  box-shadow: var(--shadow);
}

.builder-intro {
  padding: 14px 8px 14px 6px;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.process-list p {
  margin: 0;
}

.builder-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 20px;
}

.brief-form,
.preview-shell {
  padding: 24px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(19, 35, 59, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(199, 157, 98, 0.18);
  border-color: rgba(199, 157, 98, 0.62);
}

.field-large textarea {
  resize: vertical;
}

.field-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-actions,
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions {
  margin-top: 8px;
}

.form-footnote {
  margin: 14px 0 0;
  font-size: 0.9rem;
}

.submit-status {
  min-height: 24px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.submit-status.is-success {
  padding: 14px 16px;
  border: 1px solid rgba(15, 124, 90, 0.2);
  border-radius: 16px;
  background: var(--ok-soft);
  color: var(--ok);
}

.submit-status.is-error {
  padding: 14px 16px;
  border: 1px solid rgba(179, 65, 53, 0.2);
  border-radius: 16px;
  background: var(--danger-soft);
  color: var(--danger);
}

.submit-status.is-pending {
  color: var(--ink-soft);
}

.preview-shell {
  position: sticky;
  top: 104px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 30, 51, 0.98), rgba(15, 27, 47, 0.98)),
    radial-gradient(circle at top left, rgba(199, 157, 98, 0.14), transparent 42%);
  border-color: rgba(199, 157, 98, 0.16);
  color: #f7f0e7;
  box-shadow: 0 28px 56px rgba(14, 23, 41, 0.18);
}

.preview-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preview-meta {
  margin: 0 0 18px;
  color: rgba(247, 240, 231, 0.7);
}

.preview-visual {
  position: relative;
  margin: 0 0 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, var(--tone-shadow), transparent 42%);
  overflow: hidden;
}

.preview-bars {
  height: 82px;
  margin-bottom: 18px;
}

.preview-bars span {
  height: calc(20px + (46px * var(--size)));
}

.preview-caption-wrap {
  position: relative;
  z-index: 1;
}

.preview-caption {
  margin: 0;
  color: rgba(247, 240, 231, 0.78);
  font-size: 0.92rem;
}

.preview-seal {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.03);
}

.preview-shell blockquote {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.34;
}

.preview-story {
  color: rgba(247, 240, 231, 0.74);
}

.preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.preview-badges span,
.preview-footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 240, 231, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
}

.preview-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.thank-you-section {
  padding-top: 12px;
}

.thank-you-section.is-hidden {
  display: none;
}

.thank-you-shell {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(249, 242, 232, 0.94)),
    radial-gradient(circle at top right, rgba(199, 157, 98, 0.12), transparent 42%);
}

.thank-you-text,
.thank-you-reference {
  margin: 14px 0 0;
}

.thank-you-reference {
  font-weight: 700;
}

.thank-you-actions {
  margin: 24px 0 18px;
}

.thank-you-list,
.pricing-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.pricing-card-featured {
  border-color: rgba(199, 157, 98, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 240, 228, 0.92)),
    radial-gradient(circle at top left, rgba(199, 157, 98, 0.12), transparent 42%);
  transform: translateY(-6px);
}

.pricing-card ul {
  margin-top: 14px;
  margin-bottom: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 0 12px;
  color: var(--ink-soft);
}

@keyframes equalize {
  0%,
  100% {
    transform: scaleY(0.52);
    opacity: 0.78;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.76;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -16px, 0);
  }
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .hero,
  .builder-shell,
  .builder-layout,
  .editorial-grid,
  .occasion-grid,
  .demo-grid,
  .pricing-grid,
  .faq-grid,
  .hero-notes,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .preview-shell {
    position: static;
  }

  .demo-card-featured,
  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px;
    border-radius: 28px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    display: none;
  }

  .hero {
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .song-card,
  .brief-form,
  .preview-shell,
  .editorial-card,
  .occasion-card,
  .demo-card,
  .pricing-card,
  .faq-card,
  .thank-you-shell,
  .hero-notes article,
  .trust-strip > div,
  .process-list article {
    padding: 20px;
    border-radius: 22px;
  }

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

  .hero-paper {
    transform: none;
  }

  .hero-seal {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions,
  .thank-you-actions,
  .hero-actions {
    flex-direction: column;
  }

  .form-actions .button,
  .thank-you-actions .button,
  .hero-actions .button,
  .demo-button,
  .pricing-button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .ambient-arc-one,
  .ambient-arc-two {
    display: none;
  }
}
