:root {
  --ink: #14343a;
  --muted: #547078;
  --paper: #f7f8f7;
  --surface: #ffffff;
  --soft: #e9f7f5;
  --line: rgba(20, 52, 58, 0.14);
  --accent: #0d6b72;
  --accent-dark: #084f55;
  --whatsapp: #25d366;
  --blue: #a9dce5;
  --gold: #f9d38a;
  --rose: #f27b64;
  --plum: #14343a;
  --shadow: 0 28px 80px rgba(20, 52, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 48%, #e9f7f5 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6.2vw, 6rem);
  line-height: 0.94;
}

h2 {
  max-width: 780px;
  font-size: clamp(1.85rem, 4.1vw, 4.15rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.45rem, 2.45vw, 2.35rem);
  line-height: 1.04;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 850;
}

.brand-logo {
  display: block;
  width: clamp(190px, 22vw, 260px);
  height: auto;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.brand-name span:last-child {
  color: var(--accent-dark);
}

.brand-note {
  width: 0.72em;
  height: 1em;
  margin-left: 0.1em;
  color: var(--accent);
  transform: translateY(0.14em);
}

.brand-note-stem {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.brand-note-head {
  fill: currentColor;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-action,
.header-link {
  font-weight: 800;
}

.header-action {
  padding: 10px 15px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.header-link {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.86fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px) clamp(18px, 5vw, 80px);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 247, 253, 0.2)),
    repeating-linear-gradient(90deg, rgba(17, 17, 17, 0.035) 0 1px, transparent 1px 72px);
  content: "";
}

.hero-story p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero-reel {
  position: relative;
  width: min(100%, 640px);
  aspect-ratio: 1.82;
  margin-bottom: clamp(22px, 4vw, 34px);
  overflow: hidden;
  background: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.reel-frame {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: reel-fade 9s ease-in-out infinite;
}

.reel-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.22), transparent 52%),
    radial-gradient(circle at 78% 18%, rgba(53, 185, 231, 0.45), transparent 28%);
  content: "";
}

.reel-frame-one {
  background-image: none;
}

.reel-frame-two {
  background-image: none;
  animation-delay: 3s;
}

.reel-frame-three {
  background-image: none;
  animation-delay: 6s;
}

.reel-audio {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
  max-width: min(72%, 260px);
  padding: 8px 10px;
  color: #fff;
  background: rgba(38, 28, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(12px);
}

.reel-play,
.sample-action-play {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: #f07167;
  border-radius: 50%;
  font-size: 0.78rem;
}

.reel-audio strong,
.reel-audio small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reel-audio strong {
  font-size: 0.84rem;
}

.reel-audio small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

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

.wizard-actions [hidden] {
  display: none;
}

.wizard-actions[hidden] {
  display: none;
}

.hero-actions {
  align-items: stretch;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 850;
}

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
}

.sample-action {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  justify-content: start;
  color: #fff;
  background: #2b201c;
  text-align: left;
}

.sample-action span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sample-action strong {
  font-size: 0.88rem;
  line-height: 1;
}

.sample-action small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.1;
}

.button.primary:hover {
  color: var(--ink);
  background: var(--accent);
}

[data-play-sample].is-playing {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.button.quiet {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button.quiet:hover {
  border-color: var(--accent);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  width: min(100%, 620px);
  margin-top: 24px;
}

.hero-metrics span {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 9px;
  align-items: center;
  width: min(100%, 188px);
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.1;
}

.hero-metrics small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.25;
}

.hero-metrics i {
  grid-row: 1 / 3;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--accent-dark);
  background: var(--soft);
  border-radius: 50%;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-visual::before {
  position: absolute;
  top: 34px;
  right: 26px;
  width: 290px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(255, 255, 255, 0.94) 18% 23%, transparent 23% 100%),
    repeating-radial-gradient(circle, rgba(17, 17, 17, 0.22) 0 2px, rgba(17, 17, 17, 0.035) 2px 7px);
  border-radius: 50%;
  content: "";
  opacity: 0.5;
  animation: slow-spin 18s linear infinite;
}

.studio-pulse {
  position: absolute;
  top: 72px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.studio-pulse span {
  display: block;
  width: 6px;
  height: 18px;
  background: var(--accent);
  border-radius: 999px;
  animation: pulse-bar 1.15s ease-in-out infinite;
}

.studio-pulse span:nth-child(2) {
  height: 32px;
  animation-delay: 0.16s;
}

.studio-pulse span:nth-child(3) {
  height: 24px;
  animation-delay: 0.32s;
}

.reaction-photo {
  position: absolute;
  inset: 0 auto 44px 0;
  width: min(66%, 420px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.22)),
    none;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: float-soft 8s ease-in-out infinite;
}

.phone-mockup {
  position: absolute;
  top: 42px;
  right: 0;
  width: min(74%, 390px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 248, 247, 0.98)),
    none;
  background-position: center;
  background-size: cover;
  border: 10px solid var(--ink);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(32, 26, 24, 0.26);
  animation: float-soft 7s ease-in-out 0.6s infinite;
}

.phone-top {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  column-gap: 10px;
  padding: 15px 16px;
  color: #fff;
  background: var(--ink);
}

.phone-top span {
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
    none;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.phone-top strong,
.phone-top small {
  min-width: 0;
}

.phone-top small {
  color: rgba(255, 255, 255, 0.74);
}

.chat-thread {
  display: grid;
  gap: 12px;
  padding: 20px 14px 24px;
}

.chat-bubble,
.audio-message {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  border: 1px solid rgba(32, 26, 24, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(32, 26, 24, 0.1);
}

.chat-bubble {
  padding: 11px 13px;
  font-weight: 650;
}

.sent {
  justify-self: end;
  background: var(--soft);
}

.received {
  justify-self: start;
  background: #fff;
}

.audio-message {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  min-width: min(100%, 308px);
  padding: 12px;
}

.audio-message button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
}

.audio-message div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.audio-message strong {
  font-size: 0.96rem;
}

.audio-message small {
  align-self: end;
  color: var(--muted);
  font-size: 0.78rem;
}

.preview-ticket {
  position: absolute;
  right: 42px;
  bottom: 0;
  width: min(68%, 320px);
  display: grid;
  gap: 3px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-ticket span,
.song-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-ticket strong {
  font-size: 1.22rem;
}

.preview-ticket p {
  margin: 0;
  color: var(--muted);
}

.play-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.play-line > span:first-child,
.round-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.wave {
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent) 0 4%, transparent 4% 7%, var(--ink) 7% 13%, transparent 13% 18%, var(--blue) 18% 25%, transparent 25% 30%, var(--accent) 30% 42%, transparent 42% 48%, var(--ink) 48% 58%, transparent 58% 62%, var(--accent) 62% 80%, transparent 80% 86%, var(--blue) 86% 100%);
  background-size: 180% 100%;
  opacity: 0.68;
  animation: wave-shift 2.4s linear infinite;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 22px clamp(18px, 5vw, 80px);
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.proof-row span {
  padding: 8px 12px;
  color: var(--muted);
  background: var(--paper);
  border-radius: 999px;
  font-weight: 750;
}

section {
  padding: clamp(58px, 9vw, 118px) clamp(18px, 5vw, 80px);
}

.section-heading.compact {
  display: grid;
  gap: 4px;
  margin-bottom: 30px;
}

.listen-section,
.how-section,
.final-cta {
  background: var(--surface);
}

.minimal-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 16px;
}

.sample-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 38px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(27, 27, 27, 0.82) 48%, rgba(53, 185, 231, 0.5)),
    none;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.sample-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.sample-card .song-label {
  color: #8adfff;
}

.sample-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.song-picker {
  display: grid;
  align-content: start;
  gap: 10px;
}

.song-picker p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.song-tabs {
  display: grid;
  gap: 9px;
}

.song-tab {
  min-height: 56px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
}

.song-tab span {
  color: var(--accent);
}

.song-tab.active {
  color: #fff;
  background: var(--ink);
}

.emotion-section,
.process-section {
  background: var(--paper);
}

.moment-grid,
.process-grid,
.trust-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.moment-grid article,
.process-grid article,
.trust-section blockquote,
.aside-card,
.wizard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.moment-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.process-grid article {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 4vw, 30px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.process-grid strong {
  font-size: 1.18rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.process-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  margin-top: 14px;
}

.process-proof blockquote {
  display: grid;
  align-content: center;
  gap: 14px;
  margin: 0;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1.16;
  font-weight: 780;
}

.process-proof cite {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 750;
}

.moment-grid article::before {
  width: 100%;
  height: 78px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.66), rgba(53, 185, 231, 0.28)),
    none;
  background-position: center;
  background-size: cover;
  border-radius: 6px;
  content: "";
}

.moment-grid article:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.58), rgba(53, 185, 231, 0.34)),
    none;
  background-position: center;
  background-size: cover;
}

.moment-grid article:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.58), rgba(53, 185, 231, 0.34)),
    none;
  background-position: center;
  background-size: cover;
}

.moment-grid span {
  color: var(--accent);
  font-weight: 900;
}

.moment-grid strong {
  font-size: 1.25rem;
}

.moment-grid p,
.how-list p,
.trust-section cite,
.create-aside p,
.wizard-step > p,
.summary-row span {
  color: var(--muted);
}

.how-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 6vw, 72px);
}

.how-visual {
  min-height: 210px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 28px;
  padding: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.76), rgba(53, 185, 231, 0.16)),
    none;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.how-visual span {
  display: block;
  width: 13%;
  height: 34%;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px 999px 6px 6px;
  animation: pulse-bar 1.4s ease-in-out infinite;
}

.how-visual span:nth-child(2) {
  height: 78%;
  background: var(--accent);
  animation-delay: 0.12s;
}

.how-visual span:nth-child(3) {
  height: 55%;
  animation-delay: 0.24s;
}

.how-visual span:nth-child(4) {
  height: 88%;
  background: var(--accent);
  animation-delay: 0.36s;
}

.how-list {
  display: grid;
  gap: 2px;
}

.how-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.how-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 900;
}

.how-list p {
  margin: 0;
  font-size: 1.08rem;
}

.trust-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
}

.trust-section blockquote {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: clamp(22px, 4vw, 34px);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.12;
  font-weight: 780;
}

.trust-section cite {
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 750;
}

.final-cta {
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 26px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 5vw, 80px);
  color: #fff;
  background: var(--ink);
}

.footer p {
  max-width: 560px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer a {
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.legal-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-note a,
.revision-request a {
  color: var(--accent);
  font-weight: 850;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-shell {
  padding: clamp(34px, 7vw, 92px) clamp(18px, 5vw, 80px);
}

.legal-document {
  width: min(100%, 820px);
  display: grid;
  gap: 18px;
}

.legal-document h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.legal-document h2 {
  margin-top: 18px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-document p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.editorial-legal {
  color: var(--ink);
  background:
    linear-gradient(rgba(133, 91, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 91, 54, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  font-family: "Instrument Sans", system-ui, sans-serif;
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 236, 0.9);
  backdrop-filter: blur(16px);
}

.legal-header .nav-links a[aria-current="page"] {
  color: var(--accent);
}

.editorial-legal .legal-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 92px) clamp(22px, 5vw, 56px);
}

.legal-hero {
  max-width: 820px;
  padding-bottom: clamp(28px, 5vw, 52px);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 14px 0 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(3.35rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.legal-hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.editorial-legal .legal-document {
  width: min(100%, 820px);
  gap: 0;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 28px 70px -42px rgba(58, 37, 22, 0.35);
}

.editorial-legal .legal-document h1 {
  font-family: Newsreader, Georgia, serif;
}

.editorial-legal .legal-document h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
}

.editorial-legal .legal-document p {
  margin: 0;
  color: #5a4e3e;
  font-size: clamp(1rem, 2vw, 1.08rem);
  line-height: 1.78;
}

.legal-next {
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.legal-next a {
  min-height: 116px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.66);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.legal-next a:hover {
  border-color: rgba(163, 75, 50, 0.35);
  background: #fffdf8;
  transform: translateY(-2px);
}

.legal-next span {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-footer {
  border-top: 1px solid var(--line);
}

.create-page {
  min-height: 100vh;
  background: var(--paper);
}

.create-shell {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1fr;
}

.create-aside {
  position: sticky;
  top: 74px;
  height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
}

.create-aside .eyebrow {
  color: #f4c979;
}

.create-aside h1 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.create-aside p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.create-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.35), rgba(53, 185, 231, 0.12)),
    none;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.create-vinyl {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 210px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(53, 185, 231, 0.88) 0 8%, rgba(255, 255, 255, 0.92) 8% 13%, transparent 13% 100%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 2px, rgba(255, 255, 255, 0.08) 2px 8px);
  border-radius: 50%;
  opacity: 0.9;
  animation: slow-spin 24s linear infinite;
}

.create-wave {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.create-wave span {
  width: 7px;
  height: 34px;
  background: var(--accent);
  border-radius: 999px;
  animation: pulse-bar 1.1s ease-in-out infinite;
}

.create-wave span:nth-child(2) {
  height: 58px;
  animation-delay: 0.1s;
}

.create-wave span:nth-child(3) {
  height: 42px;
  animation-delay: 0.2s;
}

.create-wave span:nth-child(4) {
  height: 72px;
  background: #fff;
  animation-delay: 0.3s;
}

.create-wave span:nth-child(5) {
  height: 48px;
  animation-delay: 0.4s;
}

.create-wave span:nth-child(6) {
  height: 28px;
  animation-delay: 0.5s;
}

.aside-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.aside-card span {
  color: rgba(255, 255, 255, 0.7);
}

.creator-flow {
  display: grid;
  align-items: start;
  padding: clamp(18px, 5vw, 56px);
}

.wizard {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.progress {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 850;
}

.progress-track {
  height: 8px;
  background: var(--soft);
  border-radius: 999px;
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 16%;
  height: 100%;
  background: var(--accent);
  transition: width 0.25s ease;
}

.wizard-step {
  display: grid;
  gap: 18px;
}

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

.option-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 13px 14px;
  text-align: left;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 820;
}

.option-icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--accent-dark);
  background: #e9f8fd;
  border: 1px solid rgba(53, 185, 231, 0.28);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
}

.option-cloud .option {
  min-height: 46px;
  width: auto;
  border-radius: 999px;
  padding: 11px 15px;
}

.option-cloud.compact .option {
  min-height: 42px;
  padding: 9px 14px;
}

.extra-choice-field {
  padding-top: 6px;
}

.story-starters {
  display: grid;
  gap: 9px;
}

.story-starters > span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.option.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.option.active .option-icon {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.wizard-legal {
  margin-top: 18px;
  padding-top: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  line-height: 1.5;
}

.wizard-legal a {
  color: var(--accent-dark);
  font-weight: 850;
}

.field-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field span {
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.conditional-field {
  margin-top: 2px;
}

.summary {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--paper);
  border-radius: 7px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.song-preview {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(27, 27, 27, 0.8) 48%, rgba(53, 185, 231, 0.5)),
    none;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.song-preview span {
  color: #f4c979;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.song-preview h4 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.song-preview p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.song-preview blockquote {
  margin: 0;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 760;
}

.preview-step {
  margin-top: 4px;
}

.delivery-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.delivery-trust > div,
.delivery-trust blockquote {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.delivery-trust strong {
  color: var(--ink);
}

.delivery-trust span,
.delivery-trust cite {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
}

.delivery-trust blockquote {
  grid-column: 1 / -1;
  color: var(--ink);
  font-weight: 760;
}

.consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.consent-check input {
  margin-top: 4px;
}

.consent-check a {
  color: var(--accent);
  font-weight: 850;
}

.order-confirmation > span {
  width: fit-content;
  padding: 7px 10px;
  color: #fff;
  background: var(--whatsapp);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-page {
  background: var(--paper);
}

.admin-refresh {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 850;
}

.admin-shell {
  padding: clamp(32px, 6vw, 76px) clamp(18px, 5vw, 80px);
}

.admin-hero {
  max-width: 900px;
  padding: 0 0 34px;
}

.admin-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.admin-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.readiness-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.readiness-panel header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.readiness-panel h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.readiness-panel header p {
  color: var(--muted);
}

.readiness-panel header strong {
  align-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.readiness-grid article {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--muted);
  border-radius: 8px;
  background: var(--paper);
}

.readiness-grid article.ready {
  border-left-color: var(--whatsapp);
}

.readiness-grid article.warning {
  border-left-color: #b8860b;
}

.readiness-grid article.blocked {
  border-left-color: var(--accent);
}

.readiness-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.readiness-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.admin-metrics article {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-metrics strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.admin-metrics small {
  color: var(--muted);
}

.admin-empty {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pipeline-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pipeline-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
}

.pipeline-tabs button.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.pipeline-tabs strong {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.82rem;
}

.pipeline-tabs button.active strong {
  background: rgba(255, 255, 255, 0.88);
}

.admin-orders {
  display: grid;
  gap: 14px;
}

.admin-order {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(32, 24, 20, 0.08);
}

.admin-order header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.admin-order header span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.admin-order header h2 {
  margin: 4px 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.admin-order header p,
.admin-order dd,
.admin-order section p {
  color: var(--muted);
}

.admin-order header strong {
  align-self: start;
  white-space: nowrap;
  padding: 7px 10px;
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.82rem;
}

.admin-order dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.admin-order dl div {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: var(--paper);
  border-radius: 7px;
}

.admin-order dt {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-order dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.admin-order section {
  display: grid;
  gap: 6px;
}

.admin-order section h3 {
  font-size: 1rem;
}

.admin-order section p {
  margin: 0;
}

.admin-workbench {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-two-col > div,
.admin-audio,
.qc-panel,
.delivery-panel,
.revision-panel,
.audit-panel,
.notification-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-field {
  display: grid;
  gap: 6px;
}

.admin-field span {
  font-weight: 850;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 11px;
  background: #fff;
  color: var(--ink);
}

.admin-field input[type="file"] {
  background: var(--surface);
}

.admin-field textarea {
  min-height: 150px;
  resize: vertical;
}

.provider-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.provider-list div {
  display: grid;
  gap: 4px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.provider-list div.active {
  border-color: var(--accent);
  box-shadow: inset 3px 0 0 var(--accent);
}

.provider-list div.disabled {
  color: var(--muted);
  background: var(--surface);
}

.provider-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.provider-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.candidate-list {
  display: grid;
  gap: 8px;
}

.candidate {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.candidate.selected {
  border-color: var(--accent);
  background: #fff8f4;
}

.candidate span,
.candidate small {
  overflow-wrap: anywhere;
}

.candidate small {
  grid-column: 2;
  color: var(--muted);
}

.candidate audio {
  grid-column: 2;
  width: 100%;
}

.copy-link {
  min-height: 30px;
  margin-left: 8px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

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

.qc-panel h3,
.qc-panel button {
  grid-column: 1 / -1;
}

.qc-item {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 760;
}

.delivery-link {
  color: var(--muted);
}

.delivery-link a {
  color: var(--accent);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.audit-panel {
  background: var(--surface);
}

.audit-panel,
.notification-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audit-panel summary,
.notification-panel summary {
  padding: 14px 16px;
  font-weight: 900;
  cursor: pointer;
}

.audit-panel[open],
.notification-panel[open] {
  padding: 0 16px 14px;
}

.audit-event {
  display: grid;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.audit-event:last-child {
  border-bottom: 0;
}

.audit-event span {
  color: var(--muted);
  font-size: 0.88rem;
}

.notification-panel {
  background: var(--surface);
}

.notification-event {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.notification-event strong {
  text-transform: capitalize;
}

.notification-event span,
.notification-event p {
  color: var(--muted);
}

.notification-event p {
  margin: 0;
  white-space: pre-wrap;
}

.revision-event {
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.revision-event strong {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: capitalize;
}

.revision-event p,
.revision-event small {
  margin: 0;
  white-space: pre-wrap;
}

.revision-event small {
  color: var(--muted);
}

.delivery-page {
  min-height: 100vh;
  background: var(--paper);
}

.delivery-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 76px);
}

.delivery-card {
  width: min(100%, 820px);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.delivery-card h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.delivery-card audio {
  width: 100%;
}

.delivery-message {
  color: var(--muted);
  font-size: 1.08rem;
}

.revision-request {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
}

.revision-request h2 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.revision-request p,
.revision-status {
  color: var(--muted);
  line-height: 1.6;
}

.revision-request label {
  display: grid;
  gap: 8px;
  margin: 18px 0 14px;
}

.revision-request span {
  font-weight: 800;
}

.revision-request textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}

.delivery-card pre {
  white-space: pre-wrap;
  color: var(--muted);
  font-family: inherit;
}

.admin-login-page {
  min-height: 100vh;
  background: var(--paper);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 76px);
}

.admin-login .wizard h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.admin-login code {
  padding: 2px 5px;
  background: var(--paper);
  border-radius: 5px;
}

.admin-app-page {
  min-height: 100vh;
  background: #f8f7f5;
  font-size: 14px;
  line-height: 1.4;
}

.admin-app-page h1,
.admin-app-page h2,
.admin-app-page h3 {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.15;
  font-weight: 850;
}

.admin-app {
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  z-index: 10;
  min-height: 42px;
  height: auto;
  padding: 0 18px;
  background: #171312;
  color: #fff;
}

.admin-brand {
  color: #fff;
}

.admin-topnav .brand-logo {
  width: 104px;
  max-width: 14vw;
  filter: brightness(0) invert(1);
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-nav button,
.admin-nav a,
.admin-sidebar-actions a {
  width: auto;
  min-height: 28px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
}

.admin-nav button.active,
.admin-nav a.active,
.admin-nav button:hover,
.admin-nav a:hover,
.admin-sidebar-actions a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.admin-sidebar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 0;
  border-top: 0;
}

.admin-sidebar-actions a {
  font-size: 0.84rem;
}

.admin-console {
  display: grid;
  align-content: start;
  gap: 12px;
  width: 100%;
  padding: 16px 24px 44px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.admin-topbar h1 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.admin-tools {
  display: flex;
  align-items: end;
  gap: 12px;
}

.dashboard-filters {
  display: flex;
  gap: 10px;
}

.dashboard-filters[hidden] {
  display: none;
}

.dashboard-filters label {
  display: grid;
  gap: 5px;
}

.dashboard-filters span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-filters input {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-search {
  display: grid;
  gap: 3px;
  min-width: min(360px, 42vw);
}

.admin-search span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-search input {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.orders-filterbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.orders-filterbar[hidden] {
  display: none;
}

.orders-filterbar label {
  display: grid;
  gap: 5px;
}

.orders-filterbar span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.orders-filterbar input,
.orders-filterbar select {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-app-page .admin-refresh {
  min-height: 34px;
  padding: 7px 12px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.admin-app-page .admin-metrics {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
}

.admin-app-page .admin-metrics[hidden] {
  display: none;
}

.admin-app-page .admin-metrics article {
  cursor: pointer;
}

.admin-app-page .admin-metrics article.active {
  border-color: var(--accent);
  box-shadow: inset 0 -3px 0 var(--accent);
}

.trend-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trend-panel[hidden] {
  display: none;
}

.trend-panel header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.trend-panel h2 {
  font-size: clamp(1.35rem, 3vw, 2.4rem);
}

.trend-panel header span,
.trend-scale {
  color: var(--muted);
  font-weight: 850;
}

.trend-panel svg {
  width: 100%;
  height: 260px;
  overflow: visible;
}

.trend-panel line {
  stroke: var(--line);
  stroke-width: 2;
}

.trend-panel polyline {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.trend-scale {
  display: flex;
  justify-content: space-between;
}

.admin-module-panel[hidden],
.pipeline-tabs[hidden] {
  display: none;
}

.admin-workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.admin-workspace[hidden] {
  display: none;
}

.admin-app-page[data-admin-view="whatsapp"] .admin-console {
  gap: 6px;
}

.admin-app-page[data-admin-view="whatsapp"] .admin-topbar {
  padding-bottom: 0;
}

.admin-app-page[data-admin-view="whatsapp"] .admin-workspace {
  margin-top: -96px;
}

.admin-list-panel,
.admin-detail-panel {
  min-height: 560px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.admin-list-panel {
  overflow: hidden;
}

.admin-list-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.admin-list-head h2 {
  font-size: 1.05rem;
}

.admin-list-head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.admin-list-head strong {
  display: grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
}

.admin-app-page .admin-orders {
  width: 100%;
  max-height: none;
  overflow: auto;
  gap: 0;
}

.admin-row {
  display: grid;
  grid-template-columns:
    minmax(150px, 1.05fr)
    minmax(120px, 0.9fr)
    minmax(180px, 1.2fr)
    minmax(128px, 0.9fr)
    minmax(118px, 0.85fr)
    minmax(118px, 0.85fr)
    minmax(96px, 0.7fr)
    minmax(128px, 0.9fr)
    minmax(116px, 0.85fr)
    minmax(58px, 0.35fr);
  width: 100%;
  min-width: 1280px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  text-align: left;
}

.admin-row-head {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--muted);
  background: var(--surface);
  cursor: default;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-row-head:hover {
  background: var(--surface);
}

.admin-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-row span:not(:first-child) {
  white-space: nowrap;
}

.admin-row strong,
.admin-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-row:hover,
.admin-row.active {
  background: #f8eee8;
}

.row-view {
  display: inline-grid;
  align-items: center;
  min-height: 30px;
  padding: 6px 8px;
  color: #1f5eff;
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.row-view:hover {
  background: #eef3ff;
}

.whatsapp-thread {
  display: grid;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.whatsapp-thread.pending {
  background: #fff7f4;
  box-shadow: inset 4px 0 0 var(--accent);
}

.whatsapp-thread.open {
  background: #fff;
}

.whatsapp-thread-row {
  display: grid;
  grid-template-columns:
    minmax(136px, 0.9fr)
    minmax(128px, 0.9fr)
    minmax(156px, 1fr)
    minmax(92px, 0.55fr)
    minmax(180px, 1.3fr);
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.whatsapp-thread-row:hover {
  background: #f8eee8;
}

.whatsapp-thread-row span {
  min-width: 0;
}

.whatsapp-thread-row strong,
.whatsapp-thread-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-thread-row strong {
  font-size: 0.94rem;
}

.whatsapp-thread-row small,
.whatsapp-bubble small,
.whatsapp-reply-form p {
  color: var(--muted);
}

.whatsapp-status {
  display: inline-grid;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.whatsapp-status.pending {
  color: #fff;
  background: #a93b32;
}

.whatsapp-status.answered {
  background: #dcf7e5;
}

.whatsapp-last-message {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-thread-detail {
  display: grid;
  gap: 14px;
  padding: 0 18px 16px 18px;
}

.whatsapp-thread-detail[hidden] {
  display: none;
}

.whatsapp-thread-messages {
  display: grid;
  gap: 8px;
}

.whatsapp-bubble {
  display: grid;
  gap: 5px;
  max-width: min(720px, 88%);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.whatsapp-bubble.outbound {
  justify-self: end;
  background: #dcf7e5;
}

.whatsapp-bubble p {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.whatsapp-reply-form {
  display: grid;
  gap: 10px;
}

.whatsapp-reply-form textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 11px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}

.whatsapp-reply-form div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.whatsapp-reply-form button {
  min-height: 34px;
  padding: 8px 12px;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.whatsapp-reply-form button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.admin-row-main,
.admin-row-meta {
  display: grid;
  gap: 5px;
}

.admin-row-main {
  min-width: 0;
}

.admin-row-main strong,
.admin-row-main small,
.admin-row-meta small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-row-main strong {
  white-space: nowrap;
}

.admin-row-main small,
.admin-row-meta small {
  color: var(--muted);
}

.admin-row-meta {
  justify-items: end;
  flex: 0 0 auto;
}

.admin-row-meta em,
.status-pill {
  padding: 4px 8px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.sla-chip {
  display: inline-grid;
  min-height: 24px;
  align-items: center;
  padding: 4px 8px;
  color: #1d1718;
  background: #e7f5ec;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.sla-chip.warn {
  background: #fff1c7;
}

.sla-chip.late {
  color: #fff;
  background: #a93b32;
}

.status-pill.production,
.status-pill.qc {
  background: #fff4d8;
}

.status-pill.ready,
.status-pill.delivered {
  background: #dcf7e5;
}

.status-pill.revision,
.status-pill.pending_payment {
  background: #ffe6e0;
}

.admin-detail-panel {
  overflow: visible;
  scroll-margin-top: 20px;
}

.admin-detail-empty,
.admin-note {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.admin-detail-empty {
  min-height: 520px;
  place-content: center;
  text-align: center;
}

.admin-detail-empty p,
.admin-note p {
  color: var(--muted);
}

.admin-order-detail {
  min-height: 560px;
  border: 0;
  box-shadow: none;
}

.operator-console {
  display: grid;
  gap: 14px;
}

.operator-header {
  align-items: start;
}

.operator-status {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.operator-status small {
  color: var(--muted);
  font-weight: 850;
}

.operator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 16px;
  align-items: start;
}

.production-desk,
.order-reference {
  display: grid;
  gap: 14px;
}

.desk-section,
.order-reference section {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.desk-section h3,
.order-reference h3 {
  font-size: 1.05rem;
}

.section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.section-head p {
  margin: 4px 0 0;
  color: var(--muted);
}

.admin-inline-warning,
.manual-approval-panel p,
.checkout-recovery-panel p,
.checkout-recovery-panel small {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.recovery-audio {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf7;
}

.recovery-audio audio {
  width: 100%;
}

.desk-section .admin-field textarea {
  min-height: 180px;
}

.brief-strip {
  display: grid;
  gap: 5px;
  padding: 10px;
  background: #fff8f4;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brief-strip span,
.brief-strip small {
  color: var(--muted);
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.admin-detail-grid section {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-order-detail .admin-detail-grid dl {
  grid-template-columns: 1fr;
}

.checkout-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(53, 185, 231, 0.16), transparent 34%),
    var(--paper);
}

.checkout-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 76px);
}

.checkout-card {
  width: min(100%, 720px);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.checkout-success-card {
  width: min(100%, 820px);
  gap: 20px;
}

.checkout-success-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-secure-note {
  flex: 0 0 auto;
  padding: 7px 11px;
  color: var(--accent-dark);
  background: var(--soft);
  border: 1px solid rgba(53, 185, 231, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-logo {
  width: min(330px, 74vw);
  height: auto;
}

.checkout-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 88px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(53, 185, 231, 0.28)),
    none;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
}

.checkout-visual span {
  width: 8px;
  height: 30px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  animation: pulse-bar 1.2s ease-in-out infinite;
}

.checkout-visual span:nth-child(2),
.checkout-visual span:nth-child(5) {
  height: 54px;
  background: var(--accent);
  animation-delay: 0.16s;
}

.checkout-visual span:nth-child(3) {
  height: 72px;
  animation-delay: 0.32s;
}

.checkout-visual span:nth-child(4) {
  height: 42px;
  animation-delay: 0.48s;
}

.checkout-visual span:nth-child(6) {
  height: 24px;
  animation-delay: 0.64s;
}

.checkout-visual.success {
  justify-content: space-between;
  gap: clamp(18px, 5vw, 42px);
  min-height: 150px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(53, 185, 231, 0.48)),
    none;
  background-position: center;
  background-size: cover;
}

.success-record {
  position: relative;
  width: clamp(86px, 20vw, 132px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #111 0 28%, transparent 29%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0 52%, transparent 53%),
    #f7f8f7;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.18);
}

.success-record-ring {
  position: absolute;
  inset: 17%;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
}

.success-check {
  position: relative;
  width: 34%;
  height: 20%;
  border-bottom: 4px solid var(--accent);
  border-left: 4px solid var(--accent);
  transform: translateY(-8%) rotate(-45deg);
}

.success-waveform {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.checkout-card h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 7.4vw, 5.45rem);
}

.checkout-card p,
.checkout-status {
  color: var(--muted);
}

.checkout-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: var(--paper);
  border-radius: 8px;
}

.checkout-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.success-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.success-timeline div {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 15px;
  background: var(--surface);
}

.success-timeline div::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid var(--line);
  border-radius: 999px;
}

.success-timeline .is-complete::before,
.success-timeline .is-current::before {
  border-color: var(--accent);
  background: var(--accent);
}

.success-timeline strong {
  font-size: 0.9rem;
}

.success-timeline span {
  color: var(--muted);
  font-size: 0.86rem;
}

.success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout-card .button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.checkout-card .button.secondary:hover {
  border-color: var(--accent);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

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

.mobile-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.mobile-sticky-cta.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-cta button,
.mobile-sticky-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
}

.mobile-sticky-cta button {
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(53, 185, 231, 0.38);
}

.mobile-sticky-cta a {
  color: #fff;
  background: var(--ink);
}

@keyframes pulse-bar {
  0%,
  100% {
    transform: scaleY(0.58);
  }

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

@keyframes wave-shift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 180% 0;
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes reel-fade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.05);
  }

  8%,
  31% {
    opacity: 1;
  }

  42% {
    opacity: 0;
    transform: scale(1.12);
  }
}

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

@media (max-width: 980px) {
  .admin-app-page[data-admin-view="whatsapp"] .admin-workspace {
    margin-top: 0;
  }

  .admin-sidebar {
    position: sticky;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 12px 16px;
  }

  .admin-nav,
  .admin-sidebar-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .admin-nav button,
  .admin-nav a,
  .admin-sidebar-actions a {
    width: auto;
  }

  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .admin-row {
    grid-template-columns:
      minmax(150px, 1.05fr)
      minmax(120px, 0.9fr)
      minmax(180px, 1.2fr)
      minmax(128px, 0.9fr)
      minmax(118px, 0.85fr)
      minmax(118px, 0.85fr)
      minmax(96px, 0.7fr)
      minmax(128px, 0.9fr)
      minmax(116px, 0.85fr)
      minmax(58px, 0.35fr);
  }

  .admin-list-panel {
    position: static;
  }

  .admin-app-page .admin-orders {
    max-height: none;
  }

  .admin-app-page .admin-metrics,
  .admin-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operator-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .home-hero,
  .how-section,
  .process-proof,
  .create-shell {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    align-items: start;
    padding-top: 34px;
  }

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

  .moment-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .create-aside {
    position: static;
    height: auto;
  }
}

@media (max-width: 720px) {
  .admin-console {
    padding: 12px;
  }

  .admin-topbar,
  .admin-tools {
    display: grid;
    align-items: stretch;
  }

  .admin-search {
    min-width: 0;
  }

  .admin-app-page .admin-metrics,
  .admin-detail-grid,
  .operator-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .admin-row-head {
    display: none;
  }

  .admin-row-meta {
    justify-items: start;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand span:last-child {
    max-width: 160px;
  }

  .brand-logo {
    width: min(188px, 56vw);
  }

  .header-action {
    display: none;
  }

  h1 {
    font-size: clamp(2.25rem, 10.2vw, 3.2rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.55rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.3rem, 6vw, 1.85rem);
  }

  .home-hero {
    gap: 24px;
    padding: 28px 18px 44px;
  }

  .hero-story p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-reel {
    aspect-ratio: 1.55;
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .reel-audio {
    right: 10px;
    bottom: 10px;
    max-width: min(82%, 250px);
  }

  .hero-actions,
  .wizard-actions {
    margin-top: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 64px;
    padding-inline: 12px;
    text-align: center;
    font-size: 0.92rem;
  }

  .sample-action {
    grid-template-columns: 34px 1fr;
    gap: 8px;
  }

  .sample-action small {
    font-size: 0.68rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  section {
    padding: 46px 18px;
  }

  .admin-app-page h1 {
    font-size: 1.8rem;
  }

  .admin-app-page h2 {
    font-size: 1.45rem;
  }

  .admin-app-page h3 {
    font-size: 1.05rem;
  }

  .minimal-showcase,
  .trust-section,
  .process-proof,
  .delivery-trust,
  .readiness-grid,
  .admin-order dl,
  .admin-two-col,
  .admin-metrics,
  .qc-panel,
  .provider-list,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: grid;
    gap: 12px;
  }

  .hero-metrics span {
    width: 100%;
  }

  .song-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .song-tab {
    min-width: max-content;
    min-height: 46px;
    scroll-snap-align: start;
  }

  .process-proof .how-visual {
    min-height: 150px;
  }

  body {
    padding-bottom: 72px;
  }

  .admin-order header {
    display: grid;
  }

  .operator-status {
    justify-items: start;
    text-align: left;
  }

  .admin-order header strong {
    white-space: normal;
  }

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

  .reaction-photo {
    width: 72%;
    height: 280px;
  }

  .phone-mockup {
    top: 100px;
    width: 86%;
    border-width: 8px;
    border-radius: 28px;
  }

  .preview-ticket {
    right: 8px;
    width: 74%;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    display: grid;
    gap: 10px;
  }
}


/* Editorial home redesign */

body.editorial-home {
  --ink: #221c14;
  --muted: #6f625b;
  --paper: #f3ece0;
  --surface: #fbf6ec;
  --line: rgba(55, 43, 36, 0.13);
  --accent: #b55335;
  --accent-dark: #8f3d27;
  --soft: #f4e8df;
  color: var(--ink);
  background: var(--paper);
  font-family: "Instrument Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

.editorial-home h1,
.editorial-home h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.editorial-home h1 em,
.editorial-home h2 em,
.editorial-trust em {
  display: inline;
  color: var(--accent);
  font-family: Newsreader, Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.editorial-home h1 {
  max-width: 880px;
  font-size: clamp(4rem, 8.1vw, 8rem);
  line-height: 0.98;
}

.editorial-home h2 {
  max-width: 900px;
  font-size: clamp(2.75rem, 5.4vw, 5.8rem);
  line-height: 1;
}

.editorial-header {
  min-height: 84px;
  padding: 16px clamp(20px, 4.8vw, 72px);
  background: rgba(243, 236, 224, 0.94);
}

.editorial-header .brand-logo,
.editorial-footer .brand-logo {
  width: clamp(142px, 13vw, 188px);
}

.editorial-header .nav-links {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-header .header-action {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--surface);
  background: var(--ink);
  font-weight: 850;
}

.editorial-hero {
  width: min(100%, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 88px);
  padding: clamp(54px, 8vw, 118px) clamp(20px, 4.8vw, 72px) clamp(62px, 8vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(181, 83, 53, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf6ec 0%, #f3ece0 100%);
  border-bottom: 1px solid var(--line);
}

.editorial-hero::before {
  display: none;
}

.editorial-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: 0;
}

.editorial-kicker,
.editorial-home .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-kicker::before,
.editorial-home .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero-lede {
  max-width: 720px;
  margin: 28px 0 0;
  color: #554941;
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.55;
}

.hero-lede strong {
  color: var(--ink);
}

.editorial-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.editorial-home .button {
  min-height: 54px;
  border-radius: 0;
  padding: 15px 22px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-weight: 500;
}

.editorial-home .button.primary {
  color: #fffdfb;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 18px 38px rgba(130, 54, 33, 0.18);
}

.editorial-home .button.primary:hover {
  color: #fffdfb;
  background: var(--accent-dark);
}

.editorial-sample {
  min-width: 246px;
  color: var(--ink);
  background: #fff;
  border-color: rgba(163, 75, 50, 0.28);
  box-shadow: none;
}

.editorial-sample small {
  color: var(--muted);
}

.editorial-sample [class$="-play"],
.cover-audio .reel-play {
  color: #fff;
  background: var(--accent);
}

.editorial-metrics {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.editorial-metrics span {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: rgba(255, 254, 253, 0.82);
  border: 0;
}

.editorial-metrics strong {
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 0.95;
}

.editorial-metrics small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.25;
}

.editorial-cover {
  align-self: start;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cover-polaroid {
  width: min(100%, 308px);
  padding: 0;
  color: var(--ink);
  background: #fbf6ec;
  box-shadow: 0 24px 50px -20px rgba(60, 40, 20, 0.18);
  transform: rotate(-1deg);
}

.cover-tag {
  display: block;
  padding: 0 0 18px;
  color: rgba(0, 0, 0, 0.4);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  opacity: 0.6;
}

.cover-tag::first-letter {
  color: rgba(0, 0, 0, 0.4);
}

.cover-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 8px, rgba(0, 0, 0, 0.02) 8px 16px),
    #e6dccb;
  background-position: center;
  background-size: cover;
  aspect-ratio: 4 / 5;
}

.cover-audio {
  position: static;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  backdrop-filter: none;
}

.cover-audio .reel-play {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.cover-audio strong,
.cover-audio small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cover-audio small {
  color: #5a4e3e;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cover-audio strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.cover-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.72rem;
}

.cover-progress i {
  height: 2px;
  background:
    linear-gradient(90deg, var(--accent) 0 33%, rgba(23, 19, 16, 0.16) 33% 100%);
}

.editorial-cover blockquote {
  width: min(100%, 318px);
  margin: -2px 0 0;
  padding: 18px 22px;
  color: #5a4a2a;
  background: #fef4a8;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  font-family: Caveat, cursive;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.2;
  transform: rotate(-2deg);
}

.editorial-cover cite {
  display: block;
  margin-top: 8px;
  color: #7a6a40;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 400;
}

.cover-brand {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cover-brand span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

.reaction-section,
.editorial-process,
.editorial-examples,
.whatsapp-section,
.editorial-trust,
.guarantee-section,
.faq-section,
.editorial-final {
  padding: clamp(58px, 8vw, 120px) clamp(20px, 4.8vw, 72px);
  border-bottom: 1px solid var(--line);
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 32px;
  align-items: end;
  max-width: 1360px;
  margin: 0 auto clamp(32px, 5vw, 72px);
}

.editorial-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.editorial-heading h2 {
  margin: 0;
}

.editorial-heading > a,
.section-stat {
  align-self: end;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reaction-strip {
  max-width: 1460px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.reaction-strip article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: 16px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(23, 19, 16, 0.02) 25%, rgba(23, 19, 16, 0.74) 100%),
    none;
  background-position: center;
  background-size: cover;
}

.reaction-strip article:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(23, 19, 16, 0.02) 25%, rgba(23, 19, 16, 0.74) 100%),
    none;
}

.reaction-strip article:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(23, 19, 16, 0.02) 25%, rgba(23, 19, 16, 0.74) 100%),
    none;
}

.reaction-strip article:nth-child(4) {
  background-image:
    linear-gradient(180deg, rgba(23, 19, 16, 0.02) 25%, rgba(23, 19, 16, 0.74) 100%),
    none;
}

.reaction-strip article:nth-child(5) {
  background-image:
    linear-gradient(180deg, rgba(23, 19, 16, 0.02) 25%, rgba(23, 19, 16, 0.74) 100%),
    none;
}

.reaction-strip article:nth-child(6) {
  background-image:
    linear-gradient(180deg, rgba(23, 19, 16, 0.02) 25%, rgba(23, 19, 16, 0.74) 100%),
    none;
}

.reaction-strip span,
.reaction-strip small,
.sample-meta,
.song-label {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reaction-strip strong {
  font-family: Newsreader, Georgia, serif;
  font-size: 2.2rem;
  line-height: 0.95;
}

.reaction-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.editorial-steps {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.editorial-steps article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 38px);
  background: #fffefd;
}

.editorial-steps span,
.guarantee-grid span,
.faq-list summary span {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.editorial-steps h3,
.guarantee-grid h3,
.example-grid h3 {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.92;
}

.editorial-steps p,
.example-grid p,
.guarantee-grid p,
.faq-section p,
.editorial-final p {
  color: var(--muted);
  font-size: 1.02rem;
}

.example-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.example-grid .sample-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  background: #fffefd;
  border: 0;
  box-shadow: none;
}

.sample-meta {
  display: flex;
  justify-content: space-between;
  color: var(--accent);
}

.example-grid .song-label {
  margin: 0;
  color: var(--accent);
}

.example-grid p {
  margin: 0;
}

.whatsapp-section {
  background: #fffdf8;
}

.whatsapp-story {
  width: min(100% - 56px, 1120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  margin: 0 auto;
}

.phone-preview {
  position: relative;
  display: grid;
  gap: 0;
  width: min(100%, 410px);
  justify-self: center;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 46px;
  background:
    linear-gradient(145deg, #222 0%, #050505 42%, #171717 100%);
  box-shadow:
    0 30px 70px -34px rgba(34, 28, 20, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-preview::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 6;
  width: 118px;
  height: 32px;
  border-radius: 999px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateX(-50%);
}

.phone-preview::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 39px;
}

.wa-status {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 16px 22px 8px;
  border-radius: 32px 32px 0 0;
  background: #075e54;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.wa-status small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
}

.wa-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 22px 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 14px 12px;
  background: #075e54;
  color: #fff;
}

.wa-back {
  font-size: 34px;
  line-height: 1;
  opacity: 0.86;
}

.wa-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #d9c9af;
  color: #075e54;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 800;
}

.wa-header strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.wa-header small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.wa-chat {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  min-height: 500px;
  padding: 14px 12px 18px;
  border-radius: 0 0 32px 32px;
  background:
    linear-gradient(rgba(239, 231, 217, 0.88), rgba(239, 231, 217, 0.88)),
    repeating-linear-gradient(45deg, rgba(7, 94, 84, 0.08) 0 1px, transparent 1px 18px);
}

.wa-date {
  justify-self: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: #5c625b;
  font-size: 11px;
}

.chat-bubble small,
.chat-bubble span {
  color: var(--muted);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  padding: 8px 10px 6px;
  border: 0;
  border-radius: 8px 8px 8px 2px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 1px rgba(34, 28, 20, 0.12);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: normal;
}

.chat-bubble.sent {
  justify-self: end;
  border-radius: 8px 8px 2px 8px;
  background: #dcf8c6;
}

.chat-bubble time {
  display: block;
  margin-top: 4px;
  color: rgba(34, 28, 20, 0.48);
  font-size: 10px;
  text-align: right;
}

.audio-message {
  display: grid;
  grid-template-columns: 38px minmax(132px, 1fr) auto;
  gap: 9px;
  align-items: center;
  width: min(86vw, 292px);
  min-width: 0;
}

.audio-message strong {
  grid-column: 1 / -1;
  color: var(--accent);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.28rem;
  font-weight: 400;
}

.audio-play {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
}

.audio-play b {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.wa-audio-body {
  min-width: 0;
  display: grid;
  gap: 2px;
  overflow: hidden;
}

.wa-audio-body small {
  font-size: 10px;
}

.audio-lines {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 30px;
  align-items: center;
  gap: 2px;
  color: #8b8f89;
  overflow: hidden;
  flex-wrap: nowrap;
}

.audio-lines i {
  display: block;
  flex: 0 0 4px;
  min-width: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.35;
}

.audio-lines i:nth-child(4n + 1) { height: 10px; }
.audio-lines i:nth-child(4n + 2) { height: 24px; opacity: 0.72; }
.audio-lines i:nth-child(4n + 3) { height: 30px; opacity: 0.9; }
.audio-lines i:nth-child(4n + 4) { height: 16px; opacity: 0.52; }

.link-message {
  display: grid;
  gap: 3px;
  max-width: 82%;
  border-left: 4px solid #25d366;
}

.link-message strong {
  overflow-wrap: anywhere;
  font-size: 0.95rem;
}

.link-message > span {
  text-transform: none;
  letter-spacing: 0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 12px;
}

.whatsapp-points {
  display: grid;
  gap: 12px;
}

.whatsapp-points article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num copy";
  gap: 4px 14px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.whatsapp-points span {
  grid-area: num;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(161, 74, 44, 0.24);
  border-radius: 50%;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.76rem;
}

.whatsapp-points h3 {
  grid-area: title;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 0.98;
}

.whatsapp-points p {
  grid-area: copy;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .whatsapp-section {
    padding: 40px 22px;
  }

  .whatsapp-section .editorial-heading {
    margin-bottom: 24px;
  }

  .whatsapp-story {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .phone-preview {
    width: 100%;
    max-width: 390px;
  }

  .whatsapp-points article {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 18px;
  }

  .whatsapp-points span {
    width: 42px;
    height: 42px;
  }

  .whatsapp-points h3 {
    font-size: 27px;
  }

  .whatsapp-points p {
    font-size: 14px;
  }
}

.example-grid .sample-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.example-grid .sample-footer strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.editorial-home .round-button {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--accent);
  border: 0;
}

.editorial-trust {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  background: #fffefd;
}

.editorial-trust blockquote {
  margin: 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(2.7rem, 5.6vw, 6.2rem);
  line-height: 0.9;
}

.editorial-trust blockquote strong {
  color: var(--accent);
  font-weight: 700;
}

.editorial-trust cite,
.quote-stack cite {
  display: block;
  margin-top: 18px;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-stack {
  display: grid;
  align-content: center;
  gap: 18px;
}

.quote-stack p {
  margin: 0;
  color: #534942;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.4;
}

.guarantee-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
}

.guarantee-section .editorial-heading {
  grid-column: 1 / -1;
  width: 100%;
}

.guarantee-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.guarantee-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: #fffefd;
}

.guarantee-grid h3 {
  display: grid;
  gap: 12px;
}

.promise-card {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px);
  color: #fffdfb;
  background: var(--ink);
}

.promise-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: #fffdfb;
  border-radius: 50%;
}

.promise-card small,
.promise-card strong {
  color: #dcb6a8;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promise-card h3 {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.86;
}

.promise-card p {
  color: rgba(255, 253, 251, 0.78);
  font-size: 1.08rem;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  background: #fffefd;
}

.faq-section .editorial-heading {
  display: block;
  margin: 0;
}

.faq-section .editorial-heading p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 24px;
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: "Bricolage Grotesque", sans-serif;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -8px 0 22px 48px;
}

.editorial-final {
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--paper);
}

.editorial-final h2 {
  max-width: 980px;
}

.editorial-final .button {
  margin-top: 34px;
}

.editorial-final > p:last-child {
  margin-top: 20px;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.editorial-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(20px, 4.8vw, 72px);
  background: #fffefd;
}

.editorial-footer .footer-links {
  justify-content: center;
  color: var(--muted);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.editorial-home [data-play-sample].is-playing {
  color: #fffdfb;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.editorial-home [data-play-sample].is-playing .reel-play,
.editorial-home [data-play-sample].is-playing .sample-action-play {
  color: var(--accent-dark);
  background: #fffdfb;
}

@media (max-width: 1080px) {
  .editorial-header .nav-links {
    display: none;
  }

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

  .editorial-cover {
    max-width: 640px;
  }

  .reaction-strip {
    grid-template-columns: repeat(6, minmax(220px, 260px));
  }

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

  .editorial-trust,
  .guarantee-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .editorial-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

/* Carta funnel system: create + checkout */
.create-page,
.checkout-page {
  --ink: #221c14;
  --muted: #5a4e3e;
  --paper: #fbf6ec;
  --bg: #f3ece0;
  --line: rgba(34, 28, 20, 0.14);
  --accent: #a14a2c;
  --accent-dark: #873d25;
  --accent2: #1f4a3a;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
}

.create-page .site-header.minimal {
  position: static;
  min-height: 0;
  padding: 14px 22px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.create-page .site-header.minimal .brand-logo {
  width: 128px;
  height: auto;
}

.create-page .header-link {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.create-shell {
  width: min(100%, 1280px);
  min-height: calc(100vh - 81px);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
}

.create-intro {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.create-intro .eyebrow,
.checkout-card .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.create-intro .eyebrow::before,
.checkout-card .eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
}

.create-intro h1,
.wizard-step h3,
.checkout-card h1,
.order-confirmation h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.create-intro h1 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
}

.create-intro p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.create-letter-card {
  width: min(100%, 320px);
  margin-top: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 24px 50px -20px rgba(60, 40, 20, 0.18);
  transform: rotate(-1.5deg);
}

.create-cover-slot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: end;
  padding: 14px;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 8px, rgba(0, 0, 0, 0.02) 8px 16px),
    #e6dccb;
  color: rgba(0, 0, 0, 0.4);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.create-cover-slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.create-cover-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 28, 20, 0.02) 48%, rgba(34, 28, 20, 0.32));
}

.create-cover-slot span {
  position: relative;
  z-index: 1;
  padding: 4px 7px;
  border-radius: 2px;
  background: rgba(251, 246, 236, 0.72);
  backdrop-filter: blur(4px);
}

.create-audio-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.create-audio-row > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.create-audio-row strong {
  display: block;
  font-family: Newsreader, Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}

.create-audio-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 26px;
  margin-top: 12px;
  color: var(--accent);
}

.mini-wave i {
  width: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.35;
}

.mini-wave i:nth-child(-n + 6) { opacity: 0.95; }
.mini-wave i:nth-child(4n + 1) { height: 10px; }
.mini-wave i:nth-child(4n + 2) { height: 19px; }
.mini-wave i:nth-child(4n + 3) { height: 24px; }
.mini-wave i:nth-child(4n + 4) { height: 14px; }

.create-sticky-note {
  width: min(100%, 330px);
  padding: 12px 14px;
  border-radius: 2px;
  background: #fef4a8;
  color: #5a4a2a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  font-family: Caveat, cursive;
  font-size: 21px;
  line-height: 1.2;
  transform: rotate(-2deg);
}

.creator-flow {
  display: grid;
  align-items: start;
  padding: 0;
}

.wizard {
  width: min(100%, 720px);
  margin: 0;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 24px 50px -20px rgba(60, 40, 20, 0.18);
}

.progress {
  gap: 10px;
  margin-bottom: 28px;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.progress-track {
  height: 3px;
  border-radius: 0;
  background: rgba(34, 28, 20, 0.12);
}

.progress-track span {
  background: var(--accent);
}

.wizard-step {
  gap: 18px;
}

.wizard-step h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}

.wizard-step > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

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

.option-cloud {
  gap: 10px;
}

.option {
  min-height: 62px;
  padding: 13px 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.option:hover {
  border-color: rgba(161, 74, 44, 0.45);
}

.option.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.option-icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  background: rgba(161, 74, 44, 0.08);
  border: 1px solid rgba(161, 74, 44, 0.22);
}

.option.active .option-icon {
  color: var(--accent);
  background: #fff;
  border-color: #fff;
}

.option-cloud .option,
.option-cloud.compact .option {
  min-height: 42px;
  border-radius: 999px;
}

.field {
  gap: 7px;
}

.field label,
.field span,
.story-starters > span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.extra-choice-field {
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.extra-choice-field > span {
  font-size: clamp(24px, 4vw, 34px);
  font-family: Newsreader, Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
}

.extra-choice-field .option-cloud.compact .option {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 15.5px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  background: #fffaf2;
  color: var(--ink);
  font: 400 16px/1.4 "Instrument Sans", system-ui, sans-serif;
}

.field textarea {
  min-height: 180px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(161, 74, 44, 0.22);
  border-color: var(--accent);
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.wizard-actions .button,
.checkout-card .button,
.order-confirmation .button {
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 500;
}

.button.primary,
.wizard-actions .button.primary,
.checkout-card .button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.button.quiet,
.wizard-actions .button.quiet {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.wizard-legal,
.legal-note {
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.5;
}

.wizard-legal a,
.legal-note a {
  color: var(--accent);
  font-weight: 600;
}

.summary {
  background: #fffaf2;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.summary-row {
  align-items: baseline;
}

.summary-row span {
  color: var(--muted);
  text-align: right;
}

.checkout-step {
  gap: 16px;
}

.checkout-step h3 {
  max-width: 520px;
}

.checkout-step-lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.checkout-trust-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.checkout-sample-player {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(161, 74, 44, 0.22);
  border-radius: 8px;
  background: #fffdf8;
}

.checkout-sample-label {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-sample-player h4 {
  margin: 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 0.98;
}

.checkout-sample-player p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.checkout-sample-wave {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 3px;
  color: var(--accent);
}

.checkout-sample-wave i {
  flex: 1 1 0;
  max-width: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.34;
}

.checkout-sample-wave i:nth-child(4n + 1) { height: 12px; }
.checkout-sample-wave i:nth-child(4n + 2) { height: 30px; opacity: 0.72; }
.checkout-sample-wave i:nth-child(4n + 3) { height: 40px; opacity: 0.92; }
.checkout-sample-wave i:nth-child(4n + 4) { height: 20px; opacity: 0.52; }

.checkout-sample-controls {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.checkout-sample-controls button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.checkout-sample-controls [data-play-sample] {
  display: grid;
  width: 58px;
  height: 58px;
  min-height: 58px;
  place-items: center;
  border: 0;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(161, 74, 44, 0.22);
}

.checkout-sample-controls [data-play-sample].is-playing {
  background: var(--accent-dark);
}

.offer-page {
  min-height: 100vh;
}

.offer-shell {
  width: min(100%, 1120px);
  display: grid;
  gap: 24px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 58px);
}

.offer-hero {
  display: grid;
  gap: 14px;
}

.offer-hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.offer-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 18px;
  align-items: start;
}

.offer-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(161, 74, 44, 0.24);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 24px 50px -30px rgba(60, 40, 20, 0.24);
}

.offer-card .button {
  min-height: 54px;
  border-radius: 999px;
}

.offer-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.offer-proof {
  display: grid;
}

@media (max-width: 820px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-shell {
    padding: 24px 18px 40px;
  }
}

.mini-whatsapp-preview {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(239, 231, 217, 0.9), rgba(239, 231, 217, 0.9)),
    repeating-linear-gradient(45deg, rgba(31, 74, 58, 0.08) 0 1px, transparent 1px 18px);
}

.mini-wa-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: -14px -14px 2px;
  padding: 10px 12px;
  border-radius: 8px 8px 0 0;
  background: #075e54;
  color: #fff;
}

.mini-wa-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #d9c9af;
  color: #075e54;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
}

.mini-wa-head strong,
.mini-wa-head small {
  display: block;
  line-height: 1.2;
}

.mini-wa-head small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.mini-wa-bubble,
.mini-wa-audio {
  width: fit-content;
  max-width: 94%;
  padding: 9px 10px;
  border-radius: 8px 8px 8px 2px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(34, 28, 20, 0.1);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.mini-wa-audio {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 230px;
}

.mini-wa-audio > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 11px;
}

.mini-wa-audio small {
  color: rgba(34, 28, 20, 0.58);
  font-size: 11px;
}

.mini-wa-wave {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 2px;
  color: #8b8f89;
}

.mini-wa-wave i {
  flex: 1 1 0;
  max-width: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.38;
}

.mini-wa-wave i:nth-child(4n + 1) { height: 9px; }
.mini-wa-wave i:nth-child(4n + 2) { height: 20px; opacity: 0.72; }
.mini-wa-wave i:nth-child(4n + 3) { height: 26px; opacity: 0.88; }
.mini-wa-wave i:nth-child(4n + 4) { height: 14px; opacity: 0.52; }

.credibility-stack {
  display: grid;
  gap: 8px;
}

.credibility-stack article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
}

.credibility-stack span {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(161, 74, 44, 0.08);
  color: var(--accent);
  font-family: Newsreader, Georgia, serif;
  font-size: 17px;
}

.credibility-stack strong {
  color: var(--ink);
  font-size: 14px;
}

.credibility-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}

.checkout-step .summary {
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.56);
}

.checkout-step .summary-row {
  gap: 14px;
  padding-bottom: 8px;
}

.checkout-step .summary-row strong,
.checkout-step .summary-row span {
  font-size: 13px;
}

.checkout-proof {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(161, 74, 44, 0.2);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background: rgba(161, 74, 44, 0.06);
}

.checkout-proof > span {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-proof p {
  margin: 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(22px, 3.3vw, 31px);
  line-height: 1.12;
}

.song-preview {
  position: relative;
  overflow: visible;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 34px -24px rgba(60, 40, 20, 0.35);
}

.song-preview span {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.song-preview h4 {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  line-height: 1.05;
}

.song-preview p {
  color: var(--muted);
}

.preview-example {
  display: grid;
  gap: 8px;
}

.preview-example span {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preview-audio-player {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) 54px minmax(48px, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
}

.preview-audio-player button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.preview-audio-player .preview-play {
  width: 54px;
  height: 54px;
  min-height: 54px;
  justify-self: center;
  border: 0;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(161, 74, 44, 0.2);
  font-size: 16px;
}

.preview-audio-player .sample-action-play {
  width: auto;
  height: auto;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: 15px;
}

.preview-audio-player [data-play-sample].is-playing {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.song-preview blockquote {
  color: #5a4a2a;
  border-top: 0;
  background: #fef4a8;
  padding: 12px 14px;
  border-radius: 2px;
  font-family: Caveat, cursive;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  transform: rotate(-1.2deg);
}

.checkout-offer {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(161, 74, 44, 0.24);
  border-radius: 6px;
  background: #fffdf8;
}

.checkout-price {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 14px;
  align-items: end;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-price span,
.checkout-includes h4 {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-price strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 0.9;
}

.checkout-price small {
  color: var(--muted);
  font-size: 13px;
}

.checkout-includes {
  display: grid;
  gap: 10px;
}

.checkout-includes h4 {
  margin: 0;
}

.checkout-includes ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-includes li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.checkout-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.checkout-guarantee {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 5px;
  background: rgba(161, 74, 44, 0.07);
}

.checkout-guarantee span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
}

.checkout-guarantee p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.delivery-trust {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  gap: 12px;
}

.delivery-trust > div,
.delivery-trust blockquote {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffaf2;
}

.lead-whatsapp-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-content: start;
  background:
    linear-gradient(rgba(239, 231, 217, 0.88), rgba(239, 231, 217, 0.88)),
    repeating-linear-gradient(45deg, rgba(31, 74, 58, 0.08) 0 1px, transparent 1px 18px) !important;
}

.lead-wa-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #075e54;
  color: #fff !important;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px !important;
  font-weight: 800;
}

.lead-whatsapp-card strong,
.lead-whatsapp-card small {
  display: block;
}

.lead-whatsapp-card small {
  color: var(--muted);
  font-size: 12px;
}

.lead-whatsapp-card p {
  grid-column: 1 / -1;
  width: fit-content;
  max-width: 96%;
  margin: 4px 0 0;
  padding: 9px 10px;
  border-radius: 8px 8px 8px 2px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 1px rgba(34, 28, 20, 0.1);
  font-size: 13px;
  line-height: 1.35;
}

.lead-wa-audio {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 32px minmax(128px, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: fit-content;
  min-width: min(100%, 270px);
  padding: 8px 10px;
  border-radius: 8px 8px 8px 2px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(34, 28, 20, 0.1);
}

.lead-wa-play {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  font-size: 10px !important;
}

.lead-wa-play b {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.lead-wa-wave {
  display: flex;
  height: 30px;
  align-items: center;
  gap: 3px;
  color: #8b8f89;
}

.lead-wa-wave i {
  flex: 0 0 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.45;
}

.lead-wa-wave i:nth-child(4n + 1) { height: 9px; }
.lead-wa-wave i:nth-child(4n + 2) { height: 23px; opacity: 0.76; }
.lead-wa-wave i:nth-child(4n + 3) { height: 18px; }
.lead-wa-wave i:nth-child(4n + 4) { height: 29px; opacity: 0.9; }

.lead-wa-audio small {
  color: var(--muted);
  font-size: 11px;
}

.transport-button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffaf2;
  color: var(--burgundy);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.transport-button:hover {
  transform: translateY(-1px);
  border-color: rgba(128, 49, 73, 0.32);
  background: #fff4df;
}

.transport-icon {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 18px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: currentColor;
}

.transport-icon i {
  display: block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.transport-icon.fast-forward i {
  border-left: 9px solid currentColor;
}

.transport-icon.rewind i {
  border-right: 9px solid currentColor;
}

.transport-icon b {
  display: block;
  width: 2px;
  height: 15px;
  border-radius: 99px;
  background: currentColor;
}

.lead-song-player {
  display: grid;
  gap: 12px;
  align-content: start;
  background:
    linear-gradient(rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.92)),
    repeating-linear-gradient(45deg, rgba(128, 49, 73, 0.07) 0 1px, transparent 1px 18px) !important;
}

.lead-song-copy {
  display: grid;
  gap: 2px;
}

.lead-song-copy span {
  color: var(--burgundy) !important;
  font-family: "DM Mono", ui-monospace, monospace !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-song-copy strong {
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.02;
}

.lead-song-copy small {
  color: var(--muted);
  font-size: 13px;
}

.lead-song-player p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}

.lead-song-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead-song-play {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(34, 28, 20, 0.16);
}

.lead-song-play.is-playing {
  background: var(--burgundy);
}

.lead-song-wave {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 5px;
  color: var(--burgundy);
}

.lead-song-wave i {
  flex: 0 0 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
  transform-origin: center;
}

.lead-song-wave i:nth-child(4n + 1) { height: 12px; }
.lead-song-wave i:nth-child(4n + 2) { height: 26px; color: var(--gold); opacity: 0.76; }
.lead-song-wave i:nth-child(4n + 3) { height: 34px; opacity: 0.9; }
.lead-song-wave i:nth-child(4n + 4) { height: 18px; opacity: 0.52; }

.lead-song-player:has([data-play-sample].is-playing) .lead-song-wave i {
  animation: song-wave-live 0.72s ease-in-out infinite alternate;
}

.lead-song-player:has([data-play-sample].is-playing) .lead-song-wave i:nth-child(2n) {
  animation-duration: 0.54s;
}

.lead-song-player blockquote {
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid var(--gold);
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.14;
}

.lead-trust-list {
  display: grid;
  gap: 8px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.lead-trust-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf8;
}

.lead-claim-icon {
  grid-row: 1 / 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(161, 74, 44, 0.08);
  color: var(--accent) !important;
  font-family: Newsreader, Georgia, serif !important;
  font-size: 17px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.lead-trust-list strong {
  color: var(--ink);
  font-size: 14px;
}

.lead-trust-list span {
  color: var(--muted);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 12.5px;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.delivery-trust blockquote {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(21px, 3vw, 30px);
  line-height: 1.14;
}

.delivery-trust .lead-song-player blockquote {
  display: block;
  padding: 0 0 0 12px;
  border: 0;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(20px, 2.6vw, 28px);
}

.testimonial-person {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.testimonial-avatar {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid #fffdf8;
  border-radius: 50%;
  background-image: url("assets/reactions/mario-cumpleanos.jpg");
  background-position: 52% 22%;
  background-size: 190px auto;
  box-shadow: 0 6px 16px rgba(34, 28, 20, 0.16);
  color: transparent !important;
  overflow: hidden;
}

.testimonial-person strong {
  display: block;
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.15;
}

.delivery-trust cite,
.testimonial-person cite {
  display: block;
  margin-top: 2px;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-stars {
  color: var(--accent) !important;
  font-family: "Instrument Sans", system-ui, sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
}

.lead-testimonial p {
  margin: 0;
}

.order-confirmation {
  text-align: left;
}

.order-confirmation h3 {
  color: var(--ink);
}

.checkout-page {
  background: var(--bg);
}

.checkout-shell {
  min-height: 100vh;
  padding: clamp(22px, 5vw, 64px);
}

.checkout-card {
  width: min(100%, 720px);
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 24px 50px -20px rgba(60, 40, 20, 0.18);
}

.checkout-logo {
  width: 122px;
  height: 66px;
  display: block;
}

.checkout-visual {
  min-height: 150px;
  padding: 18px;
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 8px, rgba(0, 0, 0, 0.02) 8px 16px),
    #e6dccb;
}

.checkout-visual span {
  width: 4px;
  background: var(--accent);
}

.checkout-card h1 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(42px, 8vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.checkout-card p,
.checkout-status {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.checkout-summary {
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.checkout-summary div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-summary strong {
  font-weight: 600;
}

.checkout-summary span {
  color: var(--muted);
  text-align: right;
}

.checkout-success-card {
  width: min(100%, 820px);
  gap: 20px;
}

.checkout-success-card .checkout-logo {
  width: min(210px, 56vw);
  height: auto;
}

.checkout-success-card .checkout-visual.success {
  align-items: center;
  min-height: 168px;
}

.checkout-success-card .success-record span {
  background: transparent;
  animation: none;
}

.checkout-success-card .success-record-ring {
  width: auto;
  height: auto;
}

.checkout-success-card .success-check {
  width: 34%;
  height: 20%;
  background: transparent;
}

.checkout-success-card .success-waveform span {
  width: 5px;
}

@media (max-width: 900px) {
  .create-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 22px 36px;
  }

  .create-intro {
    position: static;
  }

  .create-letter-card,
  .create-sticky-note {
    display: none;
  }

  .create-intro h1 {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.06;
  }

  .creator-flow,
  .wizard {
    width: 100%;
  }

  .wizard {
    padding: 20px;
  }

  .wizard-step h3 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .option-grid,
  .delivery-trust {
    grid-template-columns: 1fr;
  }

  .wizard-actions {
    position: sticky;
    bottom: 0;
    z-index: 3;
    margin: 24px -20px -20px;
    padding: 12px 20px 16px;
    background: rgba(251, 246, 236, 0.94);
    border-top: 1px solid var(--line);
  }

  .wizard-actions .button {
    flex: 1;
    min-height: 46px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.15;
  }

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

  .checkout-card {
    padding: 22px;
  }

  .checkout-success-header,
  .success-actions {
    grid-template-columns: 1fr;
  }

  .checkout-success-header {
    display: grid;
    justify-items: start;
  }

  .success-timeline {
    grid-template-columns: 1fr;
  }

  .checkout-summary div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .checkout-summary span {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .create-page .site-header.minimal {
    padding: 12px 18px;
  }

  .create-shell,
  .checkout-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .wizard,
  .checkout-card {
    padding: 18px;
  }

  .checkout-visual.success {
    min-height: 138px;
  }

  .success-record {
    width: 78px;
  }

  .field textarea {
    min-height: 200px;
  }
}

@media (max-width: 760px) {
  body.editorial-home {
    background: #f3ece0;
  }

  .editorial-header {
    position: relative;
    min-height: 72px;
    padding: 12px 18px;
  }

  .editorial-header .brand-logo,
  .editorial-footer .brand-logo {
    width: 144px;
  }

  .editorial-header .header-action {
    display: none;
  }

  .editorial-header::after {
    content: "";
    width: 24px;
    height: 16px;
    background:
      linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
      linear-gradient(var(--ink), var(--ink)) 0 7px / 100% 2px no-repeat,
      linear-gradient(var(--ink), var(--ink)) 0 14px / 100% 2px no-repeat;
  }

  .editorial-hero {
    padding: 34px 18px 56px;
    gap: 34px;
  }

  .editorial-hero-copy {
    display: contents;
  }

  .editorial-kicker {
    order: 1;
  }

  .editorial-hero h1 {
    order: 2;
  }

  .hero-lede {
    order: 3;
  }

  .editorial-cover {
    order: 4;
  }

  .editorial-actions {
    order: 5;
  }

  .editorial-metrics {
    order: 6;
  }

  .editorial-home h1 {
    font-size: 44px;
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

  .editorial-home h2 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 1;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .editorial-actions {
    display: grid;
    gap: 10px;
    margin-top: 0;
  }

  .editorial-actions .editorial-sample {
    display: none;
  }

  .editorial-home .button,
  .editorial-sample {
    width: 100%;
  }

  .editorial-metrics {
    grid-template-columns: 1fr;
    margin-top: 0;
    border: 0;
    border-top: 1px solid rgba(34, 28, 20, 0.14);
    background: transparent;
  }

  .editorial-metrics span {
    grid-template-columns: 76px 1fr;
    align-items: baseline;
    padding: 14px 0;
    background: transparent;
    border-bottom: 1px solid rgba(34, 28, 20, 0.14);
  }

  .editorial-metrics strong {
    font-size: 22px;
  }

  .editorial-cover {
    padding: 0;
  }

  .cover-photo {
    min-height: 0;
  }

  .cover-audio {
    width: 100%;
    margin: 0;
  }

  .reaction-section,
  .editorial-process,
  .editorial-examples,
  .editorial-trust,
  .guarantee-section,
  .faq-section,
  .editorial-final {
    padding: 54px 18px;
  }

  .editorial-heading {
    display: block;
    margin-bottom: 28px;
  }

  .section-stat,
  .editorial-heading > a {
    display: inline-block;
    margin-top: 18px;
  }

  .reaction-strip {
    margin-right: -18px;
    grid-template-columns: repeat(6, minmax(210px, 74vw));
    scroll-snap-type: x proximity;
  }

  .reaction-strip article {
    min-height: 300px;
    scroll-snap-align: start;
  }

  .editorial-steps,
  .example-grid {
    grid-template-columns: 1fr;
  }

  .editorial-steps article,
  .example-grid .sample-card {
    min-height: 250px;
  }

  .editorial-trust blockquote {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }

  .promise-card {
    min-height: 430px;
  }

  .faq-list summary {
    min-height: 68px;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
  }

  .faq-list details p {
    margin-left: 44px;
  }

  .editorial-final {
    padding-bottom: 92px;
  }

  .editorial-footer {
    padding-bottom: 94px;
  }
}

/* Carta direction: full-section fidelity pass from the provided ZIP */
.gift-value-section {
  padding: clamp(56px, 7vw, 96px) var(--page-pad);
  background: #171310;
  color: var(--paper);
  border-top: 1px solid rgba(46, 40, 34, 0.1);
  border-bottom: 1px solid rgba(46, 40, 34, 0.1);
}

.variant-discount .editorial-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1;
}

.variant-discount .editorial-hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 5.7vw, 76px);
  line-height: 0.98;
}

.gift-value-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  width: min(100%, 1120px);
  margin: 0 auto;
}

.gift-value-copy {
  display: grid;
  gap: 18px;
  max-width: 700px;
}

.gift-value-copy .eyebrow {
  margin: 0 0 4px;
  color: #f5d8a8;
}

.gift-value-copy .eyebrow::before {
  background: #f5d8a8;
}

.gift-value-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.gift-value-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.gift-price-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: #f5d8a8;
  box-shadow: 18px 18px 0 rgba(255, 255, 255, 0.08);
}

.gift-price-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(23, 19, 16, 0.18);
  pointer-events: none;
}

.gift-price-card span {
  position: relative;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gift-price-card strong {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: 0.86;
}

.gift-price-card s {
  color: rgba(23, 19, 16, 0.48);
  font-size: 0.38em;
  text-decoration-thickness: 2px;
}

.gift-price-card p {
  position: relative;
  margin: 0;
  color: rgba(23, 19, 16, 0.72);
  font-size: 1rem;
  line-height: 1.45;
}

.gift-price-card .button {
  position: relative;
  width: 100%;
  margin-top: 4px;
  background: var(--ink);
  border-color: var(--ink);
}

.gift-value-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(6px, 2vw, 18px);
  background: rgba(255, 250, 240, 0.16);
  border: 1px solid rgba(255, 250, 240, 0.16);
}

.gift-value-grid article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 18px 20px;
  background: rgba(255, 250, 240, 0.06);
}

.gift-value-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #171310;
  background: #f5d8a8;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
}

.gift-value-grid h3 {
  margin: 0;
  color: var(--paper);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.gift-value-grid p {
  margin: 3px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
  line-height: 1.35;
}

.gift-value-grid strong {
  justify-self: end;
  color: #f5d8a8;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .gift-value-wrap {
    grid-template-columns: 1fr;
  }

  .gift-value-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .variant-discount .editorial-hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .variant-discount .editorial-heading h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .gift-value-section {
    padding: 58px var(--page-pad);
  }

  .gift-value-copy h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .gift-price-card {
    padding: 24px;
  }

  .gift-value-grid article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .gift-value-grid strong {
    grid-column: 2;
    justify-self: start;
    font-size: 1.35rem;
  }
}

.reaction-section {
  background: var(--ink);
  color: var(--paper);
}

.reaction-section .editorial-heading {
  color: var(--paper);
}

.reaction-section .eyebrow,
.reaction-section .section-stat,
.reaction-section .editorial-home .eyebrow {
  color: #f5d8a8;
}

.reaction-section .eyebrow::before {
  background: #f5d8a8;
}

.reaction-section h2 {
  color: var(--paper);
}

.reaction-section h2 em {
  color: #f5d8a8;
}

.reaction-strip {
  gap: 20px;
}

.reaction-strip article {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: auto;
  overflow: hidden;
  padding: 14px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(214, 161, 122, 0.42), #0a0907),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0 6px, transparent 6px 14px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.reaction-strip article:nth-child(2) { background: linear-gradient(135deg, rgba(176, 122, 106, 0.42), #0a0907); }
.reaction-strip article:nth-child(3) { background: linear-gradient(135deg, rgba(138, 122, 90, 0.42), #0a0907); }
.reaction-strip article:nth-child(4) { background: linear-gradient(135deg, rgba(196, 122, 106, 0.42), #0a0907); }
.reaction-strip article:nth-child(5) { background: linear-gradient(135deg, rgba(122, 138, 140, 0.42), #0a0907); }
.reaction-strip article:nth-child(6) { background: linear-gradient(135deg, rgba(192, 147, 90, 0.42), #0a0907); }

.reaction-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0 6px, transparent 6px 14px);
  mix-blend-mode: multiply;
}

.reaction-strip article::after {
  content: "▶";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  font-size: 18px;
  z-index: 1;
}

.reaction-strip article > * {
  position: relative;
  z-index: 2;
}

.reaction-strip article span {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.reaction-strip article small {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
}

.reaction-strip article strong {
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

.reaction-strip article p {
  font-size: 11.5px;
}

.editorial-process {
  background: var(--paper);
}

.editorial-steps {
  gap: 36px;
  background: transparent;
  border: 0;
}

.editorial-steps article {
  min-height: 0;
  align-content: start;
  gap: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}

.editorial-steps h3 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.1;
}

.editorial-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.editorial-examples {
  background: #f3ece0;
}

.example-grid {
  gap: 28px;
  background: transparent;
  border: 0;
}

.example-grid .sample-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.example-grid .sample-card h3,
.example-grid .sample-card p,
.example-grid .sample-card strong {
  color: var(--ink);
}

.example-grid .sample-card > p:not(.song-label),
.example-grid .sample-footer strong {
  color: var(--muted);
}

.sample-card::before {
  content: "";
  display: block;
  aspect-ratio: 5 / 4;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 8px, rgba(0, 0, 0, 0.02) 8px 16px),
    rgba(214, 161, 122, 0.34);
}

.sample-card:nth-child(2)::before { background-color: rgba(176, 122, 106, 0.34); }
.sample-card:nth-child(3)::before { background-color: rgba(122, 138, 140, 0.34); }
.sample-card:nth-child(4)::before { background-color: rgba(196, 122, 106, 0.34); }
.sample-card:nth-child(5)::before { background-color: rgba(138, 122, 90, 0.34); }
.sample-card:nth-child(6)::before { background-color: rgba(192, 147, 90, 0.34); }

.example-grid .sample-card > * {
  margin-left: 18px;
  margin-right: 18px;
}

.example-grid .sample-card > :first-child {
  margin-top: 18px;
}

.example-grid .sample-card > :last-child {
  margin-bottom: 18px;
}

.sample-meta {
  color: rgba(0, 0, 0, 0.5);
}

.example-grid h3 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.example-grid .sample-footer {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 0;
}

.editorial-trust {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-trust blockquote {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trust-eyebrow {
  grid-column: 1 / -1;
}

.editorial-trust blockquote strong,
.quote-stack p strong {
  background: #fce58a;
  color: var(--ink);
  font-weight: 400;
}

.quote-stack p {
  padding-left: 24px;
  border-left: 1px solid var(--line);
  font-family: Newsreader, Georgia, serif;
  color: var(--ink);
}

.guarantee-section {
  text-align: left;
}

.guarantee-seal {
  display: none;
}

.guarantee-grid {
  background: transparent;
  border: 0;
  gap: 36px;
}

.guarantee-grid article {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.promise-card {
  border: 1px dashed var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
}

.promise-card small,
.promise-card strong,
.promise-card p {
  color: var(--muted);
}

.promise-card h3 {
  color: var(--accent);
  font-family: Caveat, cursive;
}

@media (max-width: 760px) {
  .reaction-section {
    padding: 36px 22px;
  }

  .reaction-section .editorial-heading {
    margin-bottom: 20px;
  }

  .reaction-section .eyebrow {
    margin-bottom: 12px;
    color: #f5d8a8;
    letter-spacing: 0.16em;
  }

  .reaction-section h2 {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .reaction-section h2::after {
    content: "";
  }

  .reaction-section .section-stat {
    display: none;
  }

  .reaction-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-right: 0;
    overflow: visible;
    padding: 0;
  }

  .reaction-strip article {
    min-width: 0;
    min-height: 0;
    scroll-snap-align: none;
  }

  .reaction-strip article:nth-child(n + 5) {
    display: none;
  }

  .reaction-strip article::after {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .reaction-strip article span,
  .reaction-strip article small {
    font-size: 8px;
  }

  .reaction-strip article strong {
    font-size: 13px;
  }

  .reaction-strip article p {
    font-size: 10.5px;
  }

  .editorial-process,
  .editorial-examples,
  .editorial-trust,
  .guarantee-section,
  .faq-section {
    padding: 36px 22px;
  }

  .editorial-process .editorial-heading,
  .editorial-examples .editorial-heading,
  .faq-section .editorial-heading {
    margin-bottom: 24px;
  }

  .editorial-process .editorial-heading h2,
  .editorial-examples .editorial-heading h2,
  .faq-section .editorial-heading h2 {
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .editorial-process .editorial-heading h2 em,
  .editorial-examples .editorial-heading h2 em {
    display: inline;
  }

  .editorial-steps {
    display: block;
  }

  .editorial-steps article {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .editorial-steps h3 {
    margin: 6px 0;
    font-size: 20px;
    font-weight: 500;
  }

  .editorial-steps p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .editorial-examples .editorial-heading > a {
    display: none;
  }

  .example-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .example-grid .sample-card {
    display: grid;
    grid-template-columns: 64px 1fr 30px;
    grid-template-areas:
      "thumb label play"
      "thumb title play"
      "thumb sub play";
    gap: 2px 12px;
    align-items: center;
    min-height: 0;
    padding: 14px;
  }

  .sample-card::before {
    grid-area: thumb;
    width: 64px;
    height: 64px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .example-grid .sample-card > * {
    margin: 0;
  }

  .sample-meta,
  .example-grid .sample-card > p:not(.song-label) {
    display: none;
  }

  .song-label {
    grid-area: label;
    color: var(--accent);
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .example-grid h3 {
    grid-area: title;
    font-size: 18px;
    line-height: 1.15;
  }

  .example-grid .sample-footer {
    grid-area: sub / sub / sub / play;
    display: contents;
  }

  .example-grid .sample-footer strong {
    grid-area: sub;
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
  }

  .example-grid .round-button {
    grid-area: play;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 10px;
  }

  .editorial-trust {
    display: block;
  }

  .trust-eyebrow {
    margin-bottom: 14px;
  }

  .editorial-trust blockquote {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }

  .editorial-trust blockquote strong {
    padding: 1px 4px;
    border-radius: 2px;
  }

  .editorial-trust cite {
    font-size: 10.5px;
  }

  .quote-stack {
    margin-top: 18px;
    gap: 0;
  }

  .quote-stack p {
    margin-top: 18px;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    font-size: 16px;
  }

  .quote-stack p:nth-of-type(1)::after {
    content: " agachó la cabeza y se le fue.";
    background: #fce58a;
  }

  .guarantee-section {
    text-align: center;
  }

  .guarantee-section .editorial-heading {
    margin-bottom: 18px;
  }

  .guarantee-section h2 {
    font-size: 34px;
    line-height: 1;
  }

  .guarantee-seal {
    position: relative;
    width: 120px;
    height: 120px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1.2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    outline: 1px dashed rgba(161, 74, 44, 0.55);
    outline-offset: -8px;
  }

  .guarantee-seal span {
    font-family: Newsreader, Georgia, serif;
    font-size: 22px;
    font-style: italic;
  }

  .guarantee-seal strong {
    margin-top: 4px;
    font-family: Newsreader, Georgia, serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .guarantee-seal small {
    margin-top: 4px;
    font-family: "DM Mono", ui-monospace, monospace;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .guarantee-grid,
  .promise-card {
    display: none;
  }

  .guarantee-section::after {
    content: "Included revision. Clear refunds. Digital delivery by private link.";
    display: block;
    max-width: 310px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
  }

  .faq-list summary {
    min-height: auto;
    padding: 14px 0;
    font-size: 17px;
    line-height: 1.2;
  }

  .faq-list details {
    padding: 0;
  }

  .faq-list details p {
    margin: 0 0 14px 26px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.55;
  }

  .editorial-final {
    padding: 48px 22px;
  }

  .editorial-final .eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-family: Caveat, cursive;
    font-size: 22px;
    letter-spacing: 0;
    text-transform: none;
    transform: rotate(-2deg);
  }

  .editorial-final .eyebrow::before {
    display: none;
  }

  .editorial-final h2 {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -0.025em;
  }

  .editorial-final .button {
    margin-top: 20px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14px;
  }

  .editorial-final > p:last-child {
    margin-top: 12px;
    color: var(--muted);
    font-size: 10.5px;
    letter-spacing: 0.08em;
  }

  .editorial-footer {
    gap: 16px;
    justify-items: center;
    padding: 22px 22px 18px;
    font-size: 11px;
  }

  .editorial-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    font-family: "Instrument Sans", system-ui, sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
  }

  .editorial-footer p {
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-family: "DM Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 1080px) {
  body.editorial-home {
    overflow-x: hidden;
  }

  .editorial-header {
    position: static;
    min-height: 0;
    padding: 14px 22px;
    background: #f3ece0;
  }

  .editorial-header .nav-links,
  .editorial-header .header-action {
    display: none;
  }

  .editorial-header::after {
    content: none;
  }

  .editorial-header .menu-toggle {
    display: flex;
  }

  .editorial-header.is-menu-open {
    position: relative;
  }

  .editorial-header.is-menu-open .nav-links {
    position: absolute;
    top: calc(100% - 1px);
    right: 22px;
    left: 22px;
    z-index: 20;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fbf6ec;
    box-shadow: 0 18px 42px rgba(34, 28, 20, 0.14);
  }

  .editorial-header.is-menu-open .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }

  .editorial-header.is-menu-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .editorial-header .brand-logo,
  .editorial-footer .brand-logo {
    width: 98px;
    height: 52px;
  }

  .editorial-hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 22px 36px;
    background: #f3ece0;
  }

  .editorial-hero-copy {
    display: block;
    max-width: 720px;
  }

  .editorial-kicker,
  .editorial-home .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    line-height: 1.5;
  }

  .editorial-kicker::before,
  .editorial-home .eyebrow::before {
    width: 16px;
    flex: 0 0 auto;
  }

  .editorial-home h1 {
    max-width: 720px;
    font-size: clamp(44px, 9vw, 60px);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

  .title-emphasis {
    margin-left: 0;
  }

  .title-emphasis::after {
    display: none;
  }

  .hero-lede {
    max-width: 660px;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .editorial-cover {
    min-height: 0;
    max-width: 440px;
    margin-top: 24px;
    justify-items: stretch;
  }

  .cover-polaroid {
    width: 100%;
    max-width: none;
    padding: 18px;
    transform: rotate(-1deg);
  }

  .cover-audio {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 14px;
  }

  .cover-audio .reel-play {
    width: 42px;
    height: 42px;
  }

  .cover-audio strong {
    font-size: 17px;
  }

  .cover-audio small {
    font-size: 10.5px;
  }

  .cover-progress {
    margin-top: 12px;
    font-size: 10.5px;
  }

  .editorial-cover blockquote {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 18px;
    padding: 12px 14px;
    font-size: 19px;
    transform: rotate(-2deg);
  }

  .cover-stamp {
    display: none;
  }

  .editorial-actions {
    display: grid;
    margin-top: 28px;
    gap: 10px;
  }

  .editorial-actions .button.primary {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
  }

  .hero-sample-controls,
  .editorial-sample-link {
    display: none;
  }

  .editorial-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .editorial-metrics span {
    display: block;
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .editorial-metrics strong {
    display: block;
    font-size: 22px;
  }

  .editorial-metrics small {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .reaction-section,
  .editorial-process,
  .editorial-examples,
  .editorial-trust,
  .guarantee-section,
  .faq-section,
  .editorial-final {
    padding: 36px 22px;
  }

  .editorial-heading {
    display: block;
    margin-bottom: 24px;
  }

  .editorial-heading h2,
  .guarantee-section h2,
  .faq-section .editorial-heading h2 {
    max-width: 760px;
    font-size: clamp(30px, 7vw, 44px);
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .section-stat,
  .editorial-heading > a {
    display: inline-block;
    margin-top: 14px;
  }

  .reaction-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-right: 0;
    overflow: visible;
    padding: 0;
  }

  .reaction-strip article {
    min-width: 0;
    min-height: 0;
  }

  .reaction-strip article:nth-child(n + 5) {
    display: none;
  }

  .reaction-strip article::after {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .reaction-strip article span,
  .reaction-strip article small {
    max-width: calc(100% - 20px);
    font-size: 8px;
    white-space: nowrap;
  }

  .reaction-strip article small {
    top: auto;
    right: auto;
    left: 10px;
    bottom: 56px;
  }

  .editorial-steps,
  .guarantee-grid {
    display: block;
  }

  .editorial-steps article,
  .guarantee-grid article {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .example-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .example-grid .sample-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 30px;
    grid-template-areas:
      "thumb label play"
      "thumb title play"
      "thumb sub play";
    gap: 2px 12px;
    align-items: center;
    padding: 14px;
  }

  .sample-card::before {
    grid-area: thumb;
    width: 64px;
    height: 64px;
    aspect-ratio: auto;
    border-radius: 4px;
  }

  .example-grid .sample-card > * {
    min-width: 0;
    margin: 0;
  }

  .sample-meta,
  .example-grid .sample-card > p:not(.song-label) {
    display: none;
  }

  .song-label {
    grid-area: label;
  }

  .example-grid h3 {
    grid-area: title;
    overflow-wrap: anywhere;
  }

  .example-grid .sample-footer {
    display: contents;
  }

  .example-grid .sample-footer strong {
    grid-area: sub;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .example-grid .round-button {
    grid-area: play;
    width: 30px;
    height: 30px;
  }

  .editorial-trust {
    display: block;
  }

  .editorial-trust blockquote {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.2;
  }

  .quote-stack {
    margin-top: 18px;
  }

  .quote-stack p {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .guarantee-section {
    grid-template-columns: 1fr;
  }

  .promise-card {
    margin-top: 18px;
    min-height: 0;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: auto;
    padding: 14px 0;
  }

  .faq-list details p {
    margin-left: 26px;
  }

  .editorial-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px;
  }

  .editorial-footer .footer-links {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .editorial-header .header-action {
    display: none;
  }

  .editorial-home h1 {
    font-size: 44px;
  }

  .cover-photo {
    min-height: 0;
  }
}

/* Exact Carta direction overrides from the provided design folder */
body.editorial-home {
  --ink: #221c14;
  --muted: #5a4e3e;
  --paper: #fbf6ec;
  --surface: #fbf6ec;
  --line: rgba(34, 28, 20, 0.14);
  --accent: #a14a2c;
  --accent-dark: #873d25;
  --accent2: #1f4a3a;
  background: #f3ece0;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.editorial-home h1,
.editorial-home h2,
.editorial-steps h3,
.guarantee-grid h3,
.example-grid h3,
.editorial-trust blockquote,
.promise-card h3,
.faq-list summary,
.editorial-metrics strong,
.cover-audio strong {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.editorial-header {
  position: static;
  top: auto;
  min-height: 0;
  padding: 22px 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.editorial-header .brand-logo,
.editorial-footer .brand-logo {
  width: 96px;
  height: 52px;
  display: block;
}

.nm-logo-mask {
  background-color: var(--ink);
  -webkit-mask-image: url("assets/sensory-kiddos-music-mark.svg");
  mask-image: url("assets/sensory-kiddos-music-mark.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.nm-brand-image {
  object-fit: contain;
}

.site-header .nm-brand-image,
.editorial-header .nm-brand-image,
.editorial-footer .nm-brand-image,
.editorial-legal .legal-header .nm-brand-image,
.editorial-legal .legal-footer .nm-brand-image {
  width: 104px;
  height: 58px;
}

.create-page .site-header.minimal .nm-brand-image {
  width: 128px;
  height: auto;
}

.checkout-logo.nm-brand-image {
  width: 132px;
  height: auto;
  margin: 0 auto;
}

.editorial-header .nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.editorial-header .header-action {
  min-height: 0;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.editorial-hero {
  width: 100%;
  max-width: none;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 15px 56px 56px;
  background: #fff;
  border-bottom: 0;
}

.editorial-hero-copy {
  max-width: none;
}

.editorial-kicker,
.editorial-home .eyebrow {
  gap: 8px;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.editorial-kicker::before,
.editorial-home .eyebrow::before {
  width: 22px;
}

.editorial-home h1 {
  max-width: 650px;
  font-size: clamp(64px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.title-emphasis {
  position: relative;
  display: inline-block;
  margin-left: 12px;
}

.title-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 12px;
  border-bottom: 2.5px solid rgba(161, 74, 44, 0.6);
  border-radius: 55%;
  transform: rotate(-1.5deg);
}

.hero-lede {
  max-width: 520px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.editorial-actions {
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.editorial-home .button.primary {
  min-height: 0;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.editorial-sample-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 400 14px/1.2 "Instrument Sans", system-ui, sans-serif;
}

.hero-sample-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

.editorial-sample-link .sample-action-play {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 10px;
}

.hero-skip-button {
  width: 28px;
  height: 28px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 15px/1 "Instrument Sans", system-ui, sans-serif;
}

.hero-skip-button:hover,
.editorial-sample-link:hover {
  color: var(--accent);
}

.hero-skip-button:hover {
  color: #fffdfb;
  background: var(--accent);
  border-color: var(--accent);
}

.skip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  width: 14px;
  height: 14px;
  color: currentColor;
}

.skip-icon i {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.skip-forward i {
  border-left: 6px solid currentColor;
}

.skip-back i {
  border-right: 6px solid currentColor;
}

.skip-icon b {
  width: 2px;
  height: 11px;
  background: currentColor;
  border-radius: 999px;
}

.hero-sample-controls .editorial-sample-link.is-playing,
.editorial-home .hero-sample-controls [data-play-sample].is-playing {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
}

.editorial-home .hero-sample-controls [data-play-sample].is-playing .sample-action-play {
  color: #fffdfb;
  background: var(--accent);
  border-color: var(--accent);
}

.editorial-metrics {
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 20px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.editorial-metrics span {
  padding: 0 16px 0 0;
  background: transparent;
}

.editorial-metrics strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.editorial-metrics small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.editorial-cover {
  min-height: 540px;
  justify-items: start;
  align-content: center;
}

.cover-polaroid {
  position: relative;
  width: min(100%, 420px);
  max-width: 420px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 30px 60px -20px rgba(60, 40, 20, 0.18), 0 2px 0 rgba(0, 0, 0, 0.02);
  transform: rotate(-1.5deg);
  box-sizing: border-box;
}

.cover-photo {
  box-sizing: border-box;
  padding: 14px;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 8px, rgba(0, 0, 0, 0.02) 8px 16px),
    #e6dccb;
}

.hero-cover-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e6dccb;
}

.cover-photo .cover-tag {
  position: relative;
  z-index: 1;
  padding: 4px 8px;
  background: rgba(251, 246, 236, 0.72);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.cover-tag {
  padding: 0;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.cover-audio {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  min-height: 48px;
  margin-top: 20px;
}

.cover-audio .reel-play {
  width: 48px;
  height: 48px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}

.cover-audio strong {
  font-size: 20px;
  line-height: 1.1;
}

.cover-audio small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.cover-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
}

.cover-progress .nm-wave {
  grid-column: 1 / -1;
}

.cover-progress > span:nth-of-type(1) {
  justify-self: start;
}

.cover-progress > span:nth-of-type(2) {
  justify-self: end;
}

.nm-wave {
  display: flex;
  height: 32px;
  align-items: center;
  gap: 2px;
  color: var(--accent);
}

.nm-wave i {
  width: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.35;
}

.nm-wave i:nth-child(-n + 11) {
  opacity: 0.95;
}

.nm-wave i:nth-child(4n + 1) { height: 12px; }
.nm-wave i:nth-child(4n + 2) { height: 22px; }
.nm-wave i:nth-child(4n + 3) { height: 30px; }
.nm-wave i:nth-child(4n + 4) { height: 17px; }

.editorial-cover blockquote {
  position: absolute;
  left: -32px;
  top: 40px;
  z-index: 6;
  width: 220px;
  max-width: 220px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 2px;
  background: #fef4a8;
  color: #5a4a2a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  font-family: Caveat, "Bradley Hand", cursive;
  font-size: 22px;
  line-height: 1.15;
  transform: rotate(-4deg);
}

.editorial-cover cite {
  margin-top: 8px;
  color: #7a6a40;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 11px;
}

.cover-stamp {
  position: absolute;
  top: 120px;
  right: -8px;
  width: 64px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  text-align: center;
  transform: rotate(6deg);
}

.cover-stamp span {
  font-family: Newsreader, Georgia, serif;
  font-size: 22px;
  line-height: 1;
}

.cover-stamp small {
  margin-top: 6px;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .editorial-header {
    padding: 14px 22px;
    background: #f3ece0;
  }

  .editorial-header .brand-logo,
  .editorial-footer .brand-logo {
    width: 98px;
  }

  .editorial-hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 22px 36px;
    background: #f3ece0;
  }

  .editorial-kicker,
  .editorial-home .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .editorial-kicker::before,
  .editorial-home .eyebrow::before {
    width: 16px;
  }

  .editorial-home h1 {
    max-width: 346px;
    font-size: 44px;
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

  .title-emphasis {
    margin-left: 0;
  }

  .title-emphasis::after {
    display: none;
  }

  .hero-lede {
    max-width: 346px;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .editorial-cover {
    min-height: 0;
    margin-top: 24px;
    justify-items: stretch;
  }

  .cover-polaroid {
    width: 100%;
    max-width: none;
    padding: 18px;
    transform: rotate(-1deg);
  }

  .cover-audio {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    margin-top: 14px;
  }

  .cover-audio .reel-play {
    width: 42px;
    height: 42px;
  }

  .cover-audio strong {
    font-size: 17px;
  }

  .cover-audio small {
    font-size: 10.5px;
  }

  .cover-progress {
    margin-top: 12px;
    font-size: 10.5px;
  }

  .editorial-cover blockquote {
    position: static;
    width: auto;
    max-width: none;
    margin-top: 18px;
    padding: 12px 14px;
    font-size: 19px;
    transform: rotate(-2deg);
  }

  .cover-stamp {
    display: none;
  }

  .editorial-actions {
    margin-top: 28px;
  }

  .editorial-actions .button.primary {
    justify-content: center;
    border-radius: 999px;
  }

  .hero-sample-controls,
  .editorial-sample-link {
    display: none;
  }

  .editorial-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .editorial-metrics span {
    display: block;
    padding: 0;
    border: 0;
  }

  .editorial-metrics strong {
    font-size: 22px;
  }

  .editorial-metrics small {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .editorial-actions {
    width: 100%;
    max-width: 100%;
  }

  .editorial-home .editorial-hero .editorial-actions > .button.primary.hero-cta-main {
    box-sizing: border-box;
    width: calc(100vw - 44px);
    min-width: calc(100vw - 44px);
    max-width: 100%;
    min-height: 70px;
    padding-right: 28px;
    padding-left: 28px;
    display: flex;
    flex: 0 0 auto;
    align-self: stretch;
    justify-content: center;
    text-align: center;
  }

  .hero-cover-video {
    background-image: url("assets/mama-video-poster.jpg");
    background-position: center;
    background-size: cover;
  }

  .legal-header {
    gap: 14px;
    align-items: center;
  }

  .legal-header .nav-links {
    display: none;
  }

  .legal-header .header-action {
    padding: 10px 12px;
    font-size: 12px;
  }

  .editorial-legal .legal-shell {
    padding: 34px 18px 46px;
  }

  .legal-hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
    line-height: 0.94;
  }

  .legal-hero p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .editorial-legal .legal-document {
    padding: 22px;
  }

  .editorial-legal .legal-document h2 {
    margin-top: 30px;
  }

  .legal-next {
    grid-template-columns: 1fr;
  }

  .legal-next a {
    min-height: 96px;
  }
}

/* Final legal pages alignment with the Carta visual system */
body.editorial-home.editorial-legal {
  --ink: #221c14;
  --muted: #5a4e3e;
  --paper: #fbf6ec;
  --surface: #fbf6ec;
  --line: rgba(34, 28, 20, 0.14);
  --accent: #a14a2c;
  --accent-dark: #873d25;
  --accent2: #1f4a3a;
  min-height: 100vh;
  color: var(--ink);
  background: #f3ece0;
  font-family: "Instrument Sans", system-ui, sans-serif;
}

.editorial-legal .legal-header {
  position: static;
  min-height: 0;
  padding: 22px 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.editorial-legal .legal-header .brand-logo,
.editorial-legal .legal-footer .brand-logo {
  width: 96px;
  height: 52px;
}

.editorial-legal .legal-header .nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.editorial-legal .legal-header .nav-links a[aria-current="page"] {
  color: var(--accent);
}

.editorial-legal .legal-header .header-action {
  min-height: 0;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.editorial-legal .legal-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.editorial-legal .legal-hero {
  max-width: none;
  padding: 64px 56px 52px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.editorial-legal .legal-hero .eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-legal .legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}

.editorial-legal .legal-hero p {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--muted);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.editorial-legal .legal-document {
  width: min(100% - 112px, 840px);
  margin: 56px 0 0 56px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.editorial-legal .legal-document p {
  margin: 0;
  color: var(--muted);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.72;
}

.editorial-legal .legal-document h2 {
  margin: 44px 0 12px;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}

.editorial-legal .legal-next {
  width: min(100% - 112px, 840px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 42px 0 72px 56px;
}

.editorial-legal .legal-next a {
  min-height: 132px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.56);
  font-family: Newsreader, Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.editorial-legal .legal-next a:hover {
  border-color: rgba(161, 74, 44, 0.42);
  background: #fff;
  transform: translateY(-2px);
}

.editorial-legal .legal-next span {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-legal .legal-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

@media (max-width: 900px) {
  .editorial-legal .legal-header {
    padding: 16px 22px;
  }

  .editorial-legal .legal-header .nav-links {
    display: none;
  }

  .editorial-legal .legal-hero {
    padding: 42px 22px 38px;
  }

  .editorial-legal .legal-hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .editorial-legal .legal-hero p {
    margin-top: 22px;
    font-size: 16px;
  }

  .editorial-legal .legal-document {
    width: auto;
    margin: 34px 22px 0;
  }

  .editorial-legal .legal-document p {
    font-size: 16px;
    line-height: 1.68;
  }

  .editorial-legal .legal-document h2 {
    margin-top: 36px;
    font-size: 34px;
  }

  .editorial-legal .legal-next {
    width: auto;
    grid-template-columns: 1fr;
    margin: 34px 22px 52px;
  }
}

@media (max-width: 420px) {
  .editorial-legal .legal-header .header-action {
    display: none;
  }
}

/* Final hero metrics layout guard */
.editorial-home .editorial-metrics {
  align-items: stretch;
}

.editorial-home .editorial-metrics span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 10px;
  min-width: 0;
}

.editorial-home .editorial-metrics strong {
  white-space: nowrap;
}

.editorial-home .editorial-metrics small {
  min-width: 0;
  margin-top: 2px;
  line-height: 1.2;
}

@media (max-width: 760px) {
  .editorial-home .editorial-metrics span {
    display: block;
  }

  .editorial-home .editorial-metrics small {
    display: block;
    margin-top: 4px;
  }
}

/* Hero reaction reel copy */
.editorial-cover .cover-audio strong,
.editorial-cover .cover-audio small {
  white-space: normal;
}

.editorial-cover .cover-audio strong {
  line-height: 1.08;
}

.editorial-cover .cover-audio small {
  line-height: 1.25;
}

.editorial-cover .cover-progress {
  grid-template-columns: 1fr;
}

/* Real reaction videos */
.reaction-strip .reaction-card {
  background: #0a0907;
}

.reaction-strip .reaction-card video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reaction-strip .reaction-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0 6px, transparent 6px 14px);
  mix-blend-mode: normal;
}

.reaction-strip .reaction-card::after {
  content: none;
}

.reaction-strip .reaction-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.reaction-strip .reaction-card.is-playing .reaction-play {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 760px) {
  .reaction-strip .reaction-card:nth-child(n + 5) {
    display: block;
  }
}

/* Compact song browser */
.editorial-examples .song-browser {
  width: min(100% - 56px, 1160px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 18px;
  margin: 0 auto;
}

.song-list {
  display: grid;
  gap: 10px;
}

.song-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(251, 246, 236, 0.76);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.song-row:hover,
.song-row.is-active {
  border-color: rgba(161, 74, 44, 0.38);
  background: #fffdf8;
}

.song-row.is-active {
  transform: translateX(3px);
}

.song-art {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 8px, rgba(0, 0, 0, 0.02) 8px 16px),
    rgba(214, 161, 122, 0.34);
}

.song-row:nth-child(2) .song-art { background-color: rgba(176, 122, 106, 0.34); }
.song-row:nth-child(3) .song-art { background-color: rgba(192, 147, 90, 0.28); }
.song-row:nth-child(4) .song-art { background-color: rgba(196, 122, 106, 0.28); }
.song-row:nth-child(5) .song-art { background-color: rgba(138, 122, 90, 0.28); }
.song-row:nth-child(6) .song-art { background-color: rgba(122, 138, 140, 0.28); }

.song-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.song-copy small {
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.song-copy strong {
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-copy em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.song-row .round-button {
  width: 42px;
  height: 42px;
}

.song-row-detail {
  display: none;
}

.song-player {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 24px 64px -44px rgba(34, 28, 20, 0.55);
}

.song-player .song-label {
  margin: 0;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.song-player h3 {
  margin: 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.song-player p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.song-player blockquote {
  margin: 0;
  padding: 16px;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  background: rgba(161, 74, 44, 0.06);
  font-family: Newsreader, Georgia, serif;
  font-size: 22px;
  line-height: 1.18;
}

.player-wave {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 3px;
  color: var(--accent);
}

.player-wave i {
  width: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.28;
}

.player-wave i:nth-child(4n + 1) { height: 18px; }
.player-wave i:nth-child(4n + 2) { height: 36px; opacity: 0.72; }
.player-wave i:nth-child(4n + 3) { height: 48px; opacity: 0.92; }
.player-wave i:nth-child(4n + 4) { height: 26px; opacity: 0.52; }

.player-timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 12px;
}

.player-timeline input {
  width: 100%;
  accent-color: var(--accent);
}

.player-controls {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 10px;
  align-items: center;
}

.player-controls button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.player-controls .player-main {
  width: 60px;
  height: 60px;
  min-height: 60px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(161, 74, 44, 0.22);
}

.song-player > strong {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .editorial-examples .song-browser {
    width: min(100% - 36px, 680px);
    grid-template-columns: 1fr;
  }

  .song-player {
    position: static;
    order: -1;
  }
}

@media (max-width: 560px) {
  .song-player {
    padding: 20px;
  }

  .song-player h3 {
    font-size: 34px;
  }

  .song-row {
    grid-template-columns: 56px minmax(0, 1fr) 34px;
    min-height: 76px;
    padding: 10px;
  }

  .song-art {
    width: 56px;
    height: 56px;
  }

  .song-copy strong {
    font-size: 21px;
  }

  .song-row .round-button {
    width: 34px;
    height: 34px;
  }
}

/* Trust and guarantee refinements */
.editorial-trust {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(18px, 4vw, 46px);
  background: var(--paper);
}

.trust-feature {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 360px;
  padding: clamp(28px, 4.5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.88), rgba(251, 246, 236, 0.94)),
    repeating-linear-gradient(135deg, rgba(161, 74, 44, 0.04) 0 10px, transparent 10px 20px);
}

.trust-mark {
  position: absolute;
  top: 18px;
  left: 22px;
  color: rgba(161, 74, 44, 0.28);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(70px, 9vw, 132px);
  line-height: 0.7;
}

.trust-feature blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.96;
}

.trust-feature blockquote strong {
  display: inline;
  padding: 0 0.12em;
  border-radius: 2px;
  background: #fce58a;
  color: var(--ink);
  font-weight: 400;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.trust-feature blockquote em {
  color: var(--accent);
  font-style: italic;
}

.trust-feature cite,
.quote-stack article cite {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--accent);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-stack {
  display: grid;
  align-content: stretch;
  gap: 14px;
  margin: 0;
}

.quote-stack article {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
}

.quote-stack article span {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.quote-stack article p {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
}

.quote-stack p:nth-of-type(1)::after {
  content: none;
}

.guarantee-section {
  align-items: start;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 360px);
  background: #fffdf8;
}

.guarantee-seal {
  display: none;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.guarantee-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.guarantee-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(161, 74, 44, 0.28);
  border-radius: 50%;
  background: rgba(161, 74, 44, 0.08);
  color: var(--accent);
  font-family: Newsreader, Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.guarantee-grid h3 {
  display: block;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.96;
}

.guarantee-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.promise-card {
  border-radius: 6px;
}

@media (max-width: 980px) {
  .editorial-trust,
  .guarantee-section {
    grid-template-columns: 1fr;
  }

  .trust-feature {
    min-height: 0;
  }

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

  .guarantee-grid article {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon copy";
    gap: 6px 14px;
    min-height: 0;
    align-items: start;
  }

  .guarantee-icon {
    grid-area: icon;
  }

  .guarantee-grid h3 {
    grid-area: title;
  }

  .guarantee-grid p {
    grid-area: copy;
  }
}

@media (max-width: 760px) {
  .editorial-trust,
  .guarantee-section {
    display: grid;
    padding: 36px 22px;
    text-align: left;
  }

  .trust-eyebrow {
    margin-bottom: 0;
  }

  .trust-feature {
    padding: 24px 20px 22px;
  }

  .trust-feature blockquote {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.03;
  }

  .trust-mark {
    top: 14px;
    left: 16px;
    font-size: 76px;
  }

  .quote-stack {
    margin-top: 0;
  }

  .quote-stack article {
    padding: 18px;
  }

  .quote-stack article p {
    font-size: 22px;
  }

  .guarantee-section .editorial-heading {
    margin-bottom: 4px;
  }

  .guarantee-section h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1;
  }

  .guarantee-grid,
  .promise-card {
    display: grid;
  }

  .guarantee-section::after {
    content: none;
  }

  .guarantee-grid article {
    padding: 18px;
  }

  .guarantee-grid h3 {
    font-size: 25px;
  }

  .guarantee-grid p {
    font-size: 14px;
  }

  .promise-card {
    margin-top: 0;
    padding: 22px;
  }
}

/* Mobile polish for the compact song player and trust cards */
@media (max-width: 560px) {
  .editorial-examples .song-browser {
    width: 100%;
    gap: 14px;
  }

  .song-player {
    display: none;
  }

  .song-row {
    grid-template-columns: 52px minmax(0, 1fr) 34px;
    align-items: center;
  }

  .song-art {
    width: 52px;
    height: 52px;
  }

  .song-row.is-active {
    transform: none;
  }

  .song-row-detail {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .song-row-detail p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
  }

  .song-row-detail blockquote {
    margin: 0;
    padding: 12px 14px;
    border-left: 2px solid var(--accent);
    background: rgba(161, 74, 44, 0.06);
    color: var(--ink);
    font-family: Newsreader, Georgia, serif;
    font-size: 21px;
    line-height: 1.15;
  }

  .song-row-wave {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 3px;
    color: var(--accent);
  }

  .song-row-wave i {
    flex: 1 1 0;
    max-width: 5px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.32;
  }

  .song-row-wave i:nth-child(4n + 1) { height: 12px; }
  .song-row-wave i:nth-child(4n + 2) { height: 26px; opacity: 0.72; }
  .song-row-wave i:nth-child(4n + 3) { height: 34px; opacity: 0.9; }
  .song-row-wave i:nth-child(4n + 4) { height: 18px; opacity: 0.52; }

  .song-row.is-audio-playing .song-row-wave i {
    animation: song-wave-live 0.9s ease-in-out infinite;
  }

  .song-row.is-audio-playing .song-row-wave i:nth-child(2n) {
    animation-delay: 0.12s;
  }

  .song-row.is-audio-playing .song-row-wave i:nth-child(3n) {
    animation-delay: 0.24s;
  }

  .song-row-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .song-row-controls button {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
  }

  .song-skip-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .song-skip-button span {
    font-size: 17px;
    line-height: 1;
  }

  .song-skip-button small {
    font-size: 11px;
  }

  .song-row.is-audio-playing .song-row-controls button {
    border-color: rgba(161, 74, 44, 0.28);
  }
}

@keyframes song-wave-live {
  0%, 100% {
    transform: scaleY(0.72);
    opacity: 0.38;
  }

  50% {
    transform: scaleY(1.18);
    opacity: 0.95;
  }
}

/* Desktop refinement pass */
.editorial-home .hero-visual::before,
.editorial-home .cover-stamp {
  display: none;
}

.reaction-section .editorial-heading h2,
.editorial-process .editorial-heading h2,
.editorial-examples .editorial-heading h2,
.guarantee-section .editorial-heading h2,
.faq-section .editorial-heading h2 {
  max-width: 860px;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 0.98;
}

.reaction-section .editorial-heading {
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.55fr);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.reaction-strip {
  width: min(100% - 64px, 1500px);
  max-width: none;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 18px;
}

.reaction-strip article {
  min-height: 360px;
}

.reaction-strip .reaction-play {
  width: 42px;
  height: 42px;
  font-size: 13px;
}

.editorial-examples .song-browser {
  width: min(100% - 56px, 1040px);
  grid-template-columns: 1fr;
}

.song-player {
  display: none;
}

.song-list {
  gap: 12px;
}

.song-row {
  grid-template-columns: 64px minmax(0, 1fr) 44px;
}

.song-row.is-active {
  transform: none;
}

.song-row-detail {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.song-row-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.song-row-detail blockquote {
  margin: 0;
  padding: 14px 16px;
  border-left: 2px solid var(--accent);
  background: rgba(161, 74, 44, 0.06);
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.14;
}

.song-row-wave {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 3px;
  color: var(--accent);
}

.song-row-wave i {
  width: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.32;
}

.song-row-wave i:nth-child(4n + 1) { height: 13px; }
.song-row-wave i:nth-child(4n + 2) { height: 28px; opacity: 0.72; }
.song-row-wave i:nth-child(4n + 3) { height: 36px; opacity: 0.9; }
.song-row-wave i:nth-child(4n + 4) { height: 20px; opacity: 0.52; }

.song-row.is-audio-playing .song-row-wave i {
  animation: song-wave-live 0.9s ease-in-out infinite;
}

.song-row.is-audio-playing .song-row-wave i:nth-child(2n) {
  animation-delay: 0.12s;
}

.song-row.is-audio-playing .song-row-wave i:nth-child(3n) {
  animation-delay: 0.24s;
}

.song-row-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.song-row-controls button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.song-skip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.guarantee-section {
  grid-template-columns: 1fr;
}

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

.promise-card {
  width: min(100%, 760px);
  min-height: 0;
  align-content: start;
  justify-self: start;
  margin-top: 20px;
}

.promise-card h3 {
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.9;
  overflow-wrap: normal;
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .editorial-home main,
  .editorial-home section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .reaction-section .editorial-heading h2,
  .editorial-process .editorial-heading h2,
  .editorial-examples .editorial-heading h2,
  .guarantee-section .editorial-heading h2,
  .faq-section .editorial-heading h2 {
    font-size: clamp(30px, 8.5vw, 42px);
  }

  .reaction-strip {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    margin-right: 0;
    padding: 0;
  }

  .reaction-strip article {
    min-width: 0;
    min-height: 250px;
  }

  .reaction-strip .reaction-play {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .editorial-examples .song-browser {
    width: 100%;
  }

  .promise-card {
    width: 100%;
  }

  .guarantee-section .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .guarantee-section .guarantee-grid article {
    grid-template-columns: 50px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon copy";
    min-height: 0;
    padding: 18px;
  }

  .guarantee-section .guarantee-icon {
    grid-area: icon;
    width: 44px;
    height: 44px;
  }

  .guarantee-section .guarantee-grid h3 {
    grid-area: title;
    font-size: 27px;
    line-height: 1;
    overflow-wrap: normal;
    word-break: normal;
  }

  .guarantee-section .guarantee-grid p {
    grid-area: copy;
    font-size: 14px;
    line-height: 1.45;
  }
}

.trust-feature {
  min-height: 0;
  align-content: center;
  border-radius: 6px;
  background: #fffdf8;
}

.trust-mark {
  position: static;
  color: rgba(161, 74, 44, 0.28);
  font-size: clamp(42px, 6vw, 62px);
  line-height: 0.6;
}

.trust-feature blockquote {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

@media (max-width: 760px) {
  .trust-feature {
    gap: 14px;
    padding: 18px;
  }

  .trust-feature blockquote {
    font-size: 28px;
    line-height: 1.08;
    text-wrap: pretty;
  }

  .trust-feature cite,
  .quote-stack article cite {
    font-size: 10px;
    line-height: 1.35;
  }
}

/* Version B: direct $19 offer polish */
.variant-discount .editorial-hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: clamp(28px, 4.8vw, 64px);
  padding: clamp(34px, 5.6vw, 76px) clamp(22px, 5vw, 70px) clamp(46px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(251, 246, 236, 0.98), rgba(243, 236, 224, 0.98)),
    var(--paper);
}

.variant-discount .editorial-hero-copy {
  display: grid;
  gap: 0;
  max-width: 720px;
}

.variant-discount .editorial-hero .editorial-kicker {
  display: inline-flex !important;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(161, 74, 44, 0.18);
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.62);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.variant-discount .editorial-hero .editorial-kicker::before {
  display: none;
}

.variant-discount .editorial-hero h1 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(48px, 5.4vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.variant-discount .title-emphasis {
  display: block;
  margin: 2px 0 0;
}

.variant-discount .title-emphasis em {
  color: var(--accent-dark);
}

.variant-discount .hero-lede {
  max-width: 560px;
  margin-top: 22px;
  color: #51463e;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
}

.variant-discount .editorial-actions {
  margin-top: 28px;
}

.variant-discount .editorial-metrics {
  width: min(100%, 620px);
  margin-top: 28px;
}

.variant-discount .editorial-cover {
  justify-self: center;
  max-width: 360px;
}

.variant-discount .gift-value-section {
  padding: clamp(48px, 6.5vw, 88px) clamp(18px, 5vw, 70px);
}

.variant-discount .gift-value-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 4vw, 52px);
}

.variant-discount .gift-value-copy h2 {
  max-width: 680px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
}

.variant-discount .gift-price-card {
  align-self: stretch;
  min-height: 280px;
  align-content: center;
}

.variant-discount .gift-value-grid {
  border-radius: 0;
}

.variant-discount .gift-value-grid article {
  min-height: 96px;
}

@media (max-width: 1080px) {
  .variant-discount .editorial-hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 26px 22px 44px;
  }

  .variant-discount .editorial-cover {
    width: min(100%, 420px);
    justify-self: start;
    margin-top: 26px;
  }

  .variant-discount .gift-value-wrap {
    grid-template-columns: 1fr;
  }

  .variant-discount .gift-price-card {
    width: min(100%, 420px);
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .variant-discount .editorial-hero {
    padding: 24px 22px 34px;
  }

  .variant-discount .editorial-hero h1 {
    max-width: 100%;
    width: auto;
    font-size: clamp(41px, 11.4vw, 54px);
    line-height: 0.98;
  }

  .variant-discount .editorial-hero .editorial-kicker {
    margin-bottom: 16px;
    font-size: 9.5px;
    white-space: normal;
  }

  .variant-discount .hero-lede {
    margin-top: 18px;
    font-size: 15.5px;
  }

  .variant-discount .editorial-actions {
    margin-top: 24px;
  }

  .variant-discount .editorial-cover {
    display: grid;
    width: 100%;
    max-width: 360px;
    justify-self: center;
    margin: 24px auto 0;
  }

  .variant-discount .editorial-cover .cover-polaroid {
    padding: 12px;
    transform: rotate(-0.8deg);
  }

  .variant-discount .editorial-cover .cover-photo {
    aspect-ratio: 16 / 10;
  }

  .variant-discount .editorial-cover .cover-audio {
    grid-template-columns: 38px minmax(0, 1fr);
    margin-top: 10px;
  }

  .variant-discount .editorial-cover .cover-audio .reel-play {
    width: 38px;
    height: 38px;
  }

  .variant-discount .editorial-cover .cover-audio strong {
    font-size: 16px;
  }

  .variant-discount .editorial-cover .cover-audio small,
  .variant-discount .editorial-cover .cover-tag,
  .variant-discount .editorial-cover .cover-progress {
    display: none;
  }

  .variant-discount .editorial-cover blockquote {
    position: static;
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
    padding: 11px 13px;
    font-size: 18px;
    transform: rotate(-1.5deg);
  }

  .variant-discount .editorial-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 22px;
    padding-top: 0;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(17, 17, 17, 0.12);
  }

  .variant-discount .editorial-metrics span {
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.62);
  }

  .variant-discount .editorial-metrics strong {
    font-size: 24px;
    line-height: 1;
  }

  .variant-discount .editorial-metrics small {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .variant-discount .gift-value-section {
    padding: 42px 18px 78px;
  }

  .variant-discount .reaction-section,
  .variant-discount .editorial-process,
  .variant-discount .editorial-examples,
  .variant-discount .whatsapp-section,
  .variant-discount .editorial-trust,
  .variant-discount .guarantee-section,
  .variant-discount .faq-section,
  .variant-discount .editorial-final {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .variant-discount .reaction-section .editorial-heading h2,
  .variant-discount .editorial-process .editorial-heading h2,
  .variant-discount .editorial-examples .editorial-heading h2,
  .variant-discount .whatsapp-section .editorial-heading h2,
  .variant-discount .guarantee-section .editorial-heading h2,
  .variant-discount .faq-section .editorial-heading h2 {
    font-size: clamp(30px, 8.4vw, 39px);
    line-height: 1.03;
  }

  .variant-discount .reaction-section .editorial-heading,
  .variant-discount .editorial-process .editorial-heading,
  .variant-discount .editorial-examples .editorial-heading,
  .variant-discount .whatsapp-section .editorial-heading,
  .variant-discount .guarantee-section .editorial-heading,
  .variant-discount .faq-section .editorial-heading {
    margin-bottom: 22px;
  }

  .variant-discount .gift-value-copy {
    gap: 14px;
  }

  .variant-discount .gift-value-copy h2 {
    font-size: clamp(31px, 8.6vw, 42px);
    line-height: 1.04;
  }

  .variant-discount .gift-value-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.55;
  }

  .variant-discount .gift-price-card {
    width: 100%;
    padding: 22px;
    box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.08);
  }

  .variant-discount .gift-price-card strong {
    font-size: clamp(54px, 17vw, 78px);
  }

  .variant-discount .gift-value-grid article {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    min-height: 86px;
    padding: 14px;
  }

  .variant-discount .gift-value-grid strong {
    grid-column: auto;
    justify-self: end;
    font-size: 1.2rem;
  }
}

/* Keep the hero sticky note over the video on mobile */
@media (max-width: 760px) {
  .editorial-cover {
    position: relative;
    padding-top: 34px;
  }

  .editorial-cover blockquote {
    position: absolute;
    top: 10px;
    left: 6px;
    z-index: 8;
    width: min(70vw, 250px);
    max-width: 250px;
    margin: 0;
    padding: 12px 14px;
    font-size: 19px;
    line-height: 1.12;
    transform: rotate(-3deg);
  }

  .editorial-cover cite {
    margin-top: 6px;
    font-size: 10px;
  }
}

@media (max-width: 380px) {
  .editorial-cover blockquote {
    width: min(72vw, 230px);
    font-size: 18px;
  }
}

/* Hero sample controls should remain visible on mobile */
@media (max-width: 760px) {
  .editorial-home .editorial-hero .editorial-kicker {
    display: none;
  }

  .editorial-home .editorial-hero .editorial-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .editorial-home .editorial-hero .editorial-actions > .button.primary.hero-cta-main {
    min-height: 52px;
    padding: 13px 22px;
    font-size: 14px;
  }

  .editorial-home .editorial-hero .hero-sample-controls {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-height: 42px;
    padding: 5px 7px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.72);
  }

  .editorial-home .editorial-hero .editorial-sample-link {
    display: inline-flex !important;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
  }

  .editorial-home .editorial-hero .hero-skip-button {
    display: inline-flex !important;
    width: 28px;
    height: 28px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }

  .editorial-home {
    padding-bottom: 86px;
  }

  .editorial-home .mobile-sticky-cta {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 80;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    backdrop-filter: none;
  }

  .editorial-home .mobile-sticky-cta.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  .editorial-home .mobile-sticky-cta a {
    width: 100%;
    min-height: 54px;
    color: #fffdf8;
    background: #a94a2c !important;
    border: 1px solid rgba(122, 50, 26, 0.22);
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(122, 50, 26, 0.28);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }
}

@media (min-width: 761px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

.policy-shell {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.policy-hero {
  margin-bottom: 24px;
}

.policy-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.policy-hero h1 {
  margin: 14px 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.policy-hero p,
.policy-card p {
  color: var(--muted);
}

.policy-card {
  padding: clamp(22px, 5vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin: 26px 0 8px;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.sensory-cover-slot {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e9f7f5, #fff8ed);
}

.sensory-cover-slot img {
  width: min(54%, 180px);
  margin: 0 auto;
}

/* Sensory Kiddos Music production design alignment */
:root {
  --ink: #28303c;
  --muted: #6b7585;
  --paper: #eef1f6;
  --bg: #eef1f6;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --soft: #e4eaf2;
  --line: #dde3ec;
  --line-soft: #e7ecf3;
  --accent: #8d76c6;
  --accent-dark: #7058a4;
  --primary: #6d89a8;
  --primary-deep: #4f6884;
  --primary-tint: #e4eaf2;
  --accent-tint: #ece6f3;
  --gold: #d8b46a;
  --gold-tint: #f3e9cf;
  --shadow: 0 30px 70px -42px rgba(40, 48, 60, 0.48);
}

body,
.create-page,
.checkout-page,
.delivery-page,
.offer-page {
  --ink: #28303c;
  --muted: #6b7585;
  --paper: #eef1f6;
  --bg: #eef1f6;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --soft: #e4eaf2;
  --line: #dde3ec;
  --line-soft: #e7ecf3;
  --accent: #8d76c6;
  --accent-dark: #7058a4;
  --primary: #6d89a8;
  --primary-deep: #4f6884;
  --primary-tint: #e4eaf2;
  --accent-tint: #ece6f3;
  --gold: #d8b46a;
  --gold-tint: #f3e9cf;
  --shadow: 0 30px 70px -42px rgba(40, 48, 60, 0.48);
  color: var(--ink);
  background:
    radial-gradient(120% 90% at 78% 8%, #e6ecf4 0%, transparent 55%),
    radial-gradient(80% 70% at 8% 95%, var(--gold-tint) 0%, transparent 60%),
    var(--bg);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
.create-intro h1,
.wizard-step h3,
.checkout-card h1,
.checkout-sample-player h4,
.offer-hero h1,
.create-audio-row strong,
.policy-hero h1,
.policy-card h2 {
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.site-header.minimal,
.create-page .site-header.minimal {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 42px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(12px);
}

.brand-logo,
.site-header .nm-brand-image,
.create-page .site-header.minimal .brand-logo,
.create-page .site-header.minimal .nm-brand-image,
.checkout-logo,
.checkout-success-card .checkout-logo,
.create-page .site-header.minimal .brand-logo {
  width: clamp(210px, 28vw, 280px) !important;
  height: auto;
}

.header-link,
.create-page .header-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--surface);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

.eyebrow,
.create-intro .eyebrow,
.checkout-card .eyebrow,
.offer-hero .eyebrow,
.policy-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--primary-deep);
  background: transparent;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before,
.create-intro .eyebrow::before,
.checkout-card .eyebrow::before,
.offer-hero .eyebrow::before,
.policy-hero .eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--gold);
}

.button,
.wizard-actions .button,
.checkout-card .button,
.offer-card .button,
.order-confirmation .button {
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 24px;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button.primary,
.wizard-actions .button.primary,
.checkout-card .button.primary,
.offer-card .button.primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 18px 38px -22px color-mix(in srgb, var(--accent) 82%, transparent);
}

.button.primary:hover,
.wizard-actions .button.primary:hover,
.checkout-card .button.primary:hover,
.offer-card .button.primary:hover {
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.button.quiet,
.wizard-actions .button.quiet,
.button.secondary,
.checkout-card .button.secondary {
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1.5px solid var(--line);
  box-shadow: none;
}

.button.quiet:hover,
.button.secondary:hover,
.checkout-card .button.secondary:hover {
  color: var(--primary-deep);
  border-color: var(--primary);
}

.create-shell {
  width: min(100%, 1240px);
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 5vw, 58px);
}

.create-intro {
  top: 98px;
  gap: 22px;
}

.create-intro h1 {
  max-width: 490px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.06;
}

.create-intro p,
.offer-hero p,
.checkout-card p,
.delivery-message,
.revision-request p,
.revision-status,
.policy-hero p,
.policy-card p {
  color: var(--ink-soft, var(--muted));
}

.create-letter-card,
.wizard,
.checkout-card,
.offer-card,
.delivery-card,
.policy-card {
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: var(--shadow);
}

.create-letter-card {
  transform: rotate(-1.2deg);
}

.create-cover-slot,
.sensory-cover-slot,
.checkout-visual {
  border-radius: 18px;
  background:
    radial-gradient(circle at 45% 34%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 26%),
    radial-gradient(circle at 70% 58%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 28%),
    linear-gradient(135deg, var(--surface-2), var(--accent-tint));
}

.sensory-cover-slot img {
  width: min(46%, 150px);
  filter: drop-shadow(0 16px 28px rgba(79, 104, 132, 0.18));
}

.create-cover-slot span {
  border-radius: 999px;
  color: var(--primary-deep);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.create-audio-row > span,
.checkout-sample-controls [data-play-sample],
.reel-play,
.sample-action-play {
  background: var(--primary);
}

.create-audio-row strong {
  font-size: 18px;
}

.create-audio-row small {
  color: var(--muted);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.mini-wave i,
.checkout-sample-wave i {
  color: var(--accent);
  animation: skm-wave 1.4s ease-in-out infinite;
}

.mini-wave i:nth-child(2n),
.checkout-sample-wave i:nth-child(2n) {
  animation-delay: 0.12s;
}

.mini-wave i:nth-child(3n),
.checkout-sample-wave i:nth-child(3n) {
  animation-delay: 0.24s;
}

@keyframes skm-wave {
  0%, 100% { transform: scaleY(0.72); opacity: 0.42; }
  50% { transform: scaleY(1.08); opacity: 0.95; }
}

.create-sticky-note {
  border-radius: 16px;
  background: var(--gold-tint);
  color: var(--primary-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  box-shadow: 0 18px 34px -22px rgba(40, 48, 60, 0.38);
}

.wizard {
  width: min(100%, 740px);
  padding: clamp(22px, 4vw, 38px);
}

.progress {
  color: var(--primary-deep);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.progress-track {
  height: 5px;
  border-radius: 999px;
  background: var(--line-soft);
}

.progress-track span {
  border-radius: inherit;
  background: var(--accent);
}

.wizard-step h3 {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
}

.option,
.field input,
.field textarea,
.field select,
.summary,
.checkout-summary,
.checkout-sample-player,
.revision-request textarea,
.delivery-card pre {
  border-color: var(--line-soft);
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--ink);
}

.option {
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 700;
}

.option:hover {
  border-color: var(--primary);
  background: #fff;
}

.option.active {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: #fff;
}

.option-icon {
  color: var(--primary-deep);
  background: var(--primary-tint);
  border-color: var(--line-soft);
}

.option.active .option-icon {
  color: var(--primary-deep);
  background: #fff;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.revision-request textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-color: var(--accent);
}

.wizard-legal,
.legal-note {
  color: var(--muted);
  border-top-color: var(--line-soft);
}

.wizard-legal a,
.legal-note a,
.revision-request a {
  color: var(--accent-dark);
}

.checkout-shell,
.delivery-shell {
  min-height: 100vh;
  padding: clamp(24px, 5vw, 76px);
}

.checkout-card {
  width: min(100%, 760px);
}

.checkout-success-card {
  width: min(100%, 880px);
}

.checkout-card h1 {
  font-size: clamp(40px, 7vw, 66px);
  line-height: 1.04;
}

.checkout-logo {
  width: clamp(230px, 34vw, 290px) !important;
  height: auto;
}

.checkout-visual {
  min-height: 150px;
  align-items: flex-end;
  border: 1px solid var(--line-soft);
}

.checkout-visual span {
  width: 5px;
  background: var(--accent);
}

.checkout-visual.success {
  background:
    radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 24%),
    linear-gradient(135deg, var(--primary-deep), var(--accent-dark));
}

.checkout-secure-note {
  color: var(--primary-deep);
  background: var(--primary-tint);
  border-color: var(--line-soft);
}

.checkout-summary {
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface-2);
}

.checkout-summary div {
  border-bottom-color: var(--line-soft);
}

.success-timeline {
  border-color: var(--line-soft);
  border-radius: 18px;
  background: var(--line-soft);
}

.success-timeline .is-complete::before,
.success-timeline .is-current::before {
  background: var(--accent);
  border-color: var(--accent);
}

.offer-shell {
  width: min(100%, 1140px);
}

.offer-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
}

.offer-card {
  border-radius: 22px;
  background: var(--surface);
}

.checkout-price strong {
  color: var(--accent-dark);
}

.checkout-sample-player {
  border-color: var(--line-soft);
  border-radius: 22px;
  background: var(--surface);
}

.checkout-sample-player h4 {
  font-size: clamp(30px, 4vw, 46px);
}

.checkout-sample-label {
  color: var(--primary-deep);
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-weight: 800;
}

.delivery-page {
  min-height: 100vh;
}

.delivery-card {
  width: min(100%, 900px);
  padding: clamp(24px, 4vw, 44px);
}

.delivery-card h1 {
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.02;
}

.delivery-card audio {
  border-radius: 999px;
}

.delivery-card details {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface-2);
  overflow: hidden;
}

.delivery-card summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
}

.delivery-card pre {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ink-soft, var(--muted));
}

.revision-request {
  border-top-color: var(--line-soft);
}

.revision-request h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
}

.policy-shell {
  width: min(960px, calc(100% - 36px));
  padding: 64px 0 86px;
}

.policy-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
}

.policy-card {
  border-radius: 22px;
}

.policy-card h2 {
  color: var(--primary-deep);
  font-size: clamp(23px, 3vw, 30px);
}

@media (max-width: 900px) {
  .create-shell {
    grid-template-columns: 1fr;
    padding: 24px 20px 40px;
  }

  .create-intro {
    position: static;
  }

  .wizard-actions {
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    border-top-color: var(--line-soft);
    backdrop-filter: blur(14px);
  }

  .checkout-trust-panel,
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header.minimal,
  .create-page .site-header.minimal {
    padding: 12px 16px;
  }

  .brand-logo,
  .create-page .site-header.minimal .brand-logo,
  .create-page .site-header.minimal .nm-brand-image,
  .checkout-logo,
  .checkout-success-card .checkout-logo {
    width: 210px;
  }

  .header-link {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .option-grid,
  .success-actions,
  .success-timeline {
    grid-template-columns: 1fr;
  }
}
