:root {
  --bg: #fff8f3;
  --bg-strong: #fff1e7;
  --bg-soft: rgba(255, 255, 255, 0.7);
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #271514;
  --muted: #6f5a56;
  --muted-strong: #553f3c;
  --line: rgba(82, 44, 37, 0.12);
  --accent: #c15a41;
  --accent-strong: #8f3928;
  --accent-soft: rgba(193, 90, 65, 0.12);
  --berry: #7d365f;
  --gold: #bf8e48;
  --success: #1a6b53;
  --danger: #a33324;
  --shadow: 0 24px 70px rgba(78, 38, 28, 0.14);
  --shadow-soft: 0 12px 34px rgba(78, 38, 28, 0.08);
  --radius: 30px;
  --radius-sm: 18px;
  --max: 1180px;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(193, 90, 65, 0.16), transparent 22rem),
    radial-gradient(circle at 82% 10%, rgba(125, 54, 95, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 245, 239, 0.9), rgba(255, 248, 243, 0.98)),
    var(--bg);
  line-height: 1.55;
}

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

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

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

.announcement {
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 20px;
  background: #261412;
  color: #fff5f1;
  text-align: center;
  font-size: 14px;
}

.announcement span:first-child {
  display: inline-flex;
  align-self: center;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffd8c8;
}

.site-header {
  width: min(var(--max), calc(100% - 22px));
  margin: 10px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: sticky;
  top: 8px;
  z-index: 40;
  background: rgba(255, 249, 244, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(82, 44, 37, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--berry));
  color: #fff;
  box-shadow: 0 12px 24px rgba(125, 54, 95, 0.22);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.header-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(39, 21, 20, 0.16);
}

.section-pad {
  width: min(var(--max), calc(100% - 22px));
  margin: 0 auto;
  padding: 56px 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(193, 90, 65, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero,
.proof-card,
.guarantee-card,
.checkout-shell {
  display: grid;
  gap: 20px;
}

.hero {
  align-items: center;
  padding-top: 42px;
}

.hero h1,
.section-heading h2,
.proof-card h2,
.guarantee-card h2,
legend,
.legal-shell h1,
.status-card h1 {
  margin: 18px 0 0;
  font-family: var(--display);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.8rem, 10vw, 4.8rem);
}

.hero-lead,
.section-heading p,
.proof-card p,
.guarantee-card p,
.status-card p {
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.15rem);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--berry));
  color: #fff;
  box-shadow: 0 16px 36px rgba(125, 54, 95, 0.22);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.hidden {
  display: none;
}

.trust-row,
.proof-list,
.guarantee-points,
.story-guide,
.checkout-note-stack {
  display: grid;
  gap: 12px;
}

.trust-row {
  margin-top: 26px;
}

.trust-row div,
.proof-list div,
.guarantee-points span,
.story-guide div,
.checkout-note {
  padding: 15px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-row strong,
.proof-list strong,
.story-guide strong,
.checkout-note strong {
  display: block;
  font-size: 14px;
}

.trust-row span,
.proof-list span,
.story-guide span,
.checkout-note span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(390px, 100%);
  padding: 13px;
  border-radius: 40px;
  background: linear-gradient(160deg, #301614, #7d365f);
  box-shadow: var(--shadow);
}

.phone-top {
  width: 82px;
  height: 7px;
  margin: 8px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.reaction-card {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.9), transparent 8rem),
    linear-gradient(160deg, #fffaf8, #ffe7df 52%, #f3d3dd);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reaction-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(193, 90, 65, 0.14);
}

.mini-label {
  font-size: 13px;
  color: var(--accent-strong);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reaction-card h2 {
  margin: 16px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.waveform,
.mini-wave {
  display: flex;
  align-items: center;
  gap: 8px;
}

.waveform {
  height: 76px;
  margin: 10px 0 12px;
}

.waveform span,
.mini-wave span {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--berry), var(--accent));
  animation: pulse 1.5s ease-in-out infinite;
}

.waveform span {
  width: 12px;
}

.mini-wave span {
  width: 8px;
}

.waveform span:nth-child(1),
.mini-wave span:nth-child(1) { height: 24px; }
.waveform span:nth-child(2),
.mini-wave span:nth-child(2) { height: 42px; animation-delay: 0.08s; }
.waveform span:nth-child(3),
.mini-wave span:nth-child(3) { height: 56px; animation-delay: 0.16s; }
.waveform span:nth-child(4),
.mini-wave span:nth-child(4) { height: 30px; animation-delay: 0.24s; }
.waveform span:nth-child(5),
.mini-wave span:nth-child(5) { height: 62px; animation-delay: 0.32s; }
.waveform span:nth-child(6) { height: 34px; animation-delay: 0.4s; }
.waveform span:nth-child(7) { height: 52px; animation-delay: 0.48s; }
.waveform span:nth-child(8) { height: 26px; animation-delay: 0.56s; }
.waveform span:nth-child(9) { height: 46px; animation-delay: 0.64s; }

@keyframes pulse {
  50% {
    transform: scaleY(0.55);
    opacity: 0.58;
  }
}

.message-bubble {
  width: fit-content;
  max-width: 270px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 20px 20px 20px 6px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(82, 44, 37, 0.12);
  font-weight: 800;
}

.floating-note {
  position: absolute;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 800;
}

.note-one {
  top: 8px;
  left: 8px;
  transform: rotate(-6deg);
}

.note-two {
  right: 0;
  bottom: 18px;
  transform: rotate(5deg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 800px;
}

.section-heading h2,
.proof-card h2,
.guarantee-card h2,
legend {
  font-size: clamp(2.15rem, 9vw, 3.6rem);
}

.comparison-grid,
.sample-grid,
.steps-grid,
.trust-stack {
  display: grid;
  gap: 16px;
}

.compare-card,
.sample-card,
.steps-grid article,
.proof-card,
.guarantee-card,
.trust-card,
.progress-block,
.summary-card,
.order-form,
.review-card,
.review-fallback {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.compare-card,
.steps-grid article,
.trust-card,
.review-card,
.review-fallback {
  padding: 28px;
}

.compare-card.featured {
  background: linear-gradient(150deg, #fff, #fff0e8);
  border-color: rgba(193, 90, 65, 0.22);
}

.compare-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-strong);
  color: var(--accent-strong);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}

.compare-card h3,
.sample-card h3,
.steps-grid h3,
.trust-card h3,
.summary-card h3,
.review-panel h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.compare-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.compare-card li + li {
  margin-top: 8px;
}

.sample-card {
  overflow: hidden;
  padding: 16px;
}

.sample-art {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sample-art::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.piano-art {
  background: linear-gradient(140deg, #4f2a47, #d16e56);
}

.acoustic-art {
  background: linear-gradient(140deg, #7b481d, #f0a36e);
}

.rnb-art {
  background: linear-gradient(140deg, #28194c, #984a7d);
}

.player-badge,
.tag,
.player-proof,
.review-context,
.review-source {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.player-badge {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.tag {
  padding: 5px 10px;
  background: var(--bg-strong);
  color: var(--accent-strong);
}

.player-proof,
.review-context,
.review-source {
  padding: 5px 9px;
  background: rgba(193, 90, 65, 0.09);
  color: var(--muted-strong);
}

.sample-orb {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), transparent 45%),
    rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 10px 30px rgba(255, 255, 255, 0.12);
}

.mini-wave {
  gap: 6px;
}

.player-body {
  display: grid;
  gap: 12px;
}

.player-meta-row,
.review-meta,
.trust-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.player-card.is-playing {
  border-color: rgba(193, 90, 65, 0.28);
  box-shadow: 0 18px 42px rgba(125, 54, 95, 0.14);
}

.player-card.is-playing .sample-art {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.player-note {
  color: var(--muted);
  font-size: 14px;
}

.audio-shell {
  margin-top: 6px;
}

.custom-player {
  --player-accent: var(--accent);
  --player-accent-soft: rgba(193, 90, 65, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(82, 44, 37, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.82), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 240, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.custom-player[data-player-theme="piano"] {
  --player-accent: #b85764;
  --player-accent-soft: rgba(184, 87, 100, 0.18);
}

.custom-player[data-player-theme="acoustic"] {
  --player-accent: #bf7a3d;
  --player-accent-soft: rgba(191, 122, 61, 0.18);
}

.custom-player[data-player-theme="rnb"] {
  --player-accent: #8c54c9;
  --player-accent-soft: rgba(140, 84, 201, 0.18);
}

.sample-audio {
  display: none;
}

.player-control {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32), transparent 38%),
    linear-gradient(145deg, var(--player-accent), color-mix(in srgb, var(--player-accent) 52%, white));
  box-shadow:
    0 18px 28px color-mix(in srgb, var(--player-accent) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.player-control:hover,
.player-control:focus-visible {
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 22px 34px color-mix(in srgb, var(--player-accent) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.player-control-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.player-control-icon::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.player-card.is-playing .player-control-icon::before {
  width: 18px;
  height: 20px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, #fff 0 6px, transparent 6px 12px, #fff 12px 18px);
  border-radius: 2px;
}

.player-console {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.player-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.player-console-top strong,
.player-console-top span {
  display: block;
}

.player-console-top strong {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.player-console-top span {
  color: var(--muted);
  font-size: 0.9rem;
}

.player-status {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--player-accent-soft);
  color: var(--player-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.player-visualizer {
  height: 42px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 5px;
  align-items: end;
  padding: 0 2px;
}

.player-visualizer span {
  height: 100%;
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--player-accent) 72%, white), var(--player-accent));
  opacity: 0.36;
  transform-origin: center bottom;
  animation: playerBars 1.6s ease-in-out infinite;
  animation-play-state: paused;
}

.player-visualizer span:nth-child(1) { height: 22px; }
.player-visualizer span:nth-child(2) { height: 34px; animation-delay: 0.08s; }
.player-visualizer span:nth-child(3) { height: 18px; animation-delay: 0.16s; }
.player-visualizer span:nth-child(4) { height: 30px; animation-delay: 0.24s; }
.player-visualizer span:nth-child(5) { height: 38px; animation-delay: 0.32s; }
.player-visualizer span:nth-child(6) { height: 26px; animation-delay: 0.40s; }
.player-visualizer span:nth-child(7) { height: 40px; animation-delay: 0.48s; }
.player-visualizer span:nth-child(8) { height: 24px; animation-delay: 0.56s; }
.player-visualizer span:nth-child(9) { height: 32px; animation-delay: 0.64s; }
.player-visualizer span:nth-child(10) { height: 19px; animation-delay: 0.72s; }
.player-visualizer span:nth-child(11) { height: 36px; animation-delay: 0.80s; }
.player-visualizer span:nth-child(12) { height: 27px; animation-delay: 0.88s; }

.player-card.is-playing .player-visualizer span {
  opacity: 0.95;
  animation-play-state: running;
}

.player-progress-wrap {
  display: grid;
  gap: 8px;
}

.player-seek {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 6px;
  border: 0;
  border-radius: 999px;
  outline: none;
  background:
    linear-gradient(90deg, var(--player-accent) 0%, var(--player-accent) var(--seek-progress, 0%), rgba(82, 44, 37, 0.12) var(--seek-progress, 0%), rgba(82, 44, 37, 0.12) 100%);
  box-shadow: none;
  cursor: pointer;
}

.player-seek:focus,
.player-seek:focus-visible {
  box-shadow: none;
}

.player-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--player-accent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--player-accent) 32%, transparent);
}

.player-seek::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--player-accent);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--player-accent) 32%, transparent);
}

.player-seek::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(82, 44, 37, 0.12);
}

.player-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.player-time {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

@keyframes playerBars {
  50% {
    transform: scaleY(0.42);
    opacity: 0.52;
  }
}

@media (max-width: 520px) {
  .custom-player {
    grid-template-columns: 1fr;
  }

  .player-control {
    width: 58px;
    height: 58px;
  }

  .player-console-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

.steps-grid span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
}

.steps-grid p,
.trust-card p,
.reviews-disclosure,
.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.proof-card,
.guarantee-card {
  padding: clamp(26px, 5vw, 48px);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(255, 236, 228, 0.84));
}

.guarantee-points span {
  font-weight: 850;
  color: var(--ink);
}

/* ── Proof bar ───────────────────────────────────── */
.proof-bar-section {
  background: var(--ink);
  padding: 20px 0;
}

.proof-bar-inner {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.proof-stat:last-child {
  border-right: none;
}

.proof-stat strong {
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
}

.proof-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Featured reviews grid (top 3) ──────────────── */
.featured-reviews-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 680px) {
  .featured-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Reviews shell ───────────────────────────────── */
.reviews-shell {
  display: grid;
  gap: 16px;
}

.reviews-toggle-row {
  display: flex;
  justify-content: center;
}

.reviews-toggle-button {
  min-width: 220px;
}

.reviews-track {
  display: grid;
  gap: 14px;
}

.review-card,
.review-fallback {
  position: relative;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 14px;
  font-weight: 900;
}

.review-card p,
.review-fallback p {
  font-size: 1.02rem;
  color: var(--muted-strong);
}

.review-name {
  font-size: 15px;
  font-weight: 850;
}

.review-date {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}

.review-fallback {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 233, 0.92));
}

.reviews-action {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.process-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.process-list li + li {
  margin-top: 10px;
}

.trust-chip-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.checkout-note-stack {
  margin-bottom: 18px;
}

.checkout-shell {
  align-items: start;
}

.checkout-sidebar {
  display: grid;
  gap: 14px;
}

.progress-block,
.summary-card,
.order-form {
  background: rgba(255, 255, 255, 0.78);
}

.progress-block {
  padding: 18px;
}

.progress-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.progress-top strong {
  color: var(--ink);
}

.progress-bar {
  height: 9px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--bg-strong);
}

.progress-bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--berry));
  transition: width 0.25s ease;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  display: grid;
  gap: 8px;
}

.step-list li {
  margin: 0;
}

.step-jump {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 780;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.step-jump:hover,
.step-jump:focus-visible {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.step-jump.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(82, 44, 37, 0.08);
}

.step-jump.completed {
  color: var(--ink);
}

.step-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(193, 90, 65, 0.12);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.step-jump.completed .step-index {
  background: linear-gradient(135deg, rgba(193, 90, 65, 0.18), rgba(125, 54, 95, 0.18));
  font-size: 0;
}

.step-jump.completed .step-index::before {
  content: "✓";
  font-size: 13px;
}

.step-copy {
  display: grid;
  gap: 2px;
}

.step-title {
  font-size: 0.98rem;
  line-height: 1.1;
}

.step-state {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.step-jump.active .step-state,
.step-jump.completed .step-state {
  color: var(--accent-strong);
}

.summary-card {
  padding: 20px;
}

.summary-items {
  display: grid;
  gap: 10px;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.summary-line strong {
  color: var(--ink);
}

.summary-line.total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
}

.summary-line.total strong {
  font-size: 24px;
}

.summary-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.order-form {
  padding: clamp(22px, 5vw, 34px);
  padding-bottom: 30px;
  border-radius: 32px;
  border: 1px solid rgba(82, 44, 37, 0.08);
  box-shadow: 0 18px 44px rgba(82, 44, 37, 0.07);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step {
  display: none;
  scroll-margin-top: 110px;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.22s ease;
}

.form-step-intro {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  margin-bottom: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(193, 90, 65, 0.12), transparent 32%),
    linear-gradient(140deg, rgba(255, 252, 249, 0.98), rgba(255, 241, 233, 0.9));
  border: 1px solid rgba(193, 90, 65, 0.12);
}

.form-step-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  letter-spacing: -0.04em;
}

.form-step-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(193, 90, 65, 0.16);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#activeStepDescription {
  margin: 0;
  color: var(--muted);
}

.step-health {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(255, 246, 240, 0.92);
  border: 1px solid rgba(193, 90, 65, 0.14);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 720;
}

.step-health::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--berry));
  box-shadow: 0 0 0 6px rgba(193, 90, 65, 0.12);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-subtitle {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 62ch;
}

.field-label {
  display: block;
  margin: 22px 0 10px;
  font-weight: 850;
}

.field-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

label {
  display: block;
  font-weight: 780;
  color: var(--ink);
}

legend {
  font-size: clamp(1.85rem, 7vw, 2.6rem);
  margin-bottom: 10px;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  outline: none;
  transition: border 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  scroll-margin-top: 130px;
}

input::placeholder,
textarea::placeholder {
  color: #9c8b87;
  opacity: 1;
}

textarea {
  min-height: 94px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(193, 90, 65, 0.5);
  box-shadow: 0 0 0 4px rgba(193, 90, 65, 0.1);
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: rgba(163, 51, 36, 0.72);
  box-shadow: 0 0 0 4px rgba(163, 51, 36, 0.12);
  background: rgba(255, 247, 245, 0.98);
}

.option-grid,
.package-grid,
.addon-grid {
  display: grid;
  gap: 12px;
}

.option-card,
.package-card,
.addon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 116px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  transition: border 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.option-card::after,
.package-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(82, 44, 37, 0.18);
  background: rgba(255, 255, 255, 0.84);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.option-card:hover,
.package-card:hover,
.addon-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(82, 44, 37, 0.08);
}

.option-card input,
.package-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card.selected,
.package-card.selected,
.addon-card.selected {
  border-color: rgba(193, 90, 65, 0.52);
  background: #fff;
  box-shadow: 0 14px 30px rgba(193, 90, 65, 0.12);
}

.option-card.selected::after,
.package-card.selected::after {
  background: linear-gradient(135deg, var(--accent), var(--berry));
  border-color: transparent;
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(125, 54, 95, 0.18);
}

.option-card span,
.package-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding-right: 26px;
}

.option-card small,
.package-card small,
.addon-card small {
  color: var(--muted);
  line-height: 1.35;
  font-weight: 550;
}

.package-card {
  min-height: 208px;
  justify-content: flex-start;
  padding: 20px;
}

.package-card strong {
  font-size: 34px;
  letter-spacing: -0.06em;
}

.package-card.popular {
  border-width: 2px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.addon-card {
  min-height: 0;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.addon-card input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent);
}

.addon-card span {
  flex: 1;
}

.addon-card strong {
  display: block;
}

.addon-card em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent-strong);
}

.addon-card.disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.addon-card.disabled input {
  pointer-events: none;
}

.conditional-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(193, 90, 65, 0.34);
  background: rgba(255, 241, 233, 0.68);
}

.conditional-box h3 {
  margin: 0 0 14px;
}

.quick-pick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-pick {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(193, 90, 65, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
  cursor: pointer;
  font-weight: 780;
}

.quick-pick:hover,
.quick-pick:focus-visible {
  background: rgba(255, 241, 233, 0.92);
}

.quick-pick.active {
  background: linear-gradient(135deg, rgba(193, 90, 65, 0.14), rgba(125, 54, 95, 0.14));
  border-color: rgba(193, 90, 65, 0.34);
  color: var(--ink);
}

.hidden {
  display: none !important;
}

.draft-controls {
  display: grid;
  gap: 10px;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 250, 246, 0.9), rgba(255, 240, 232, 0.88));
  border: 1px solid rgba(193, 90, 65, 0.14);
}

.draft-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
}

.draft-toggle input {
  width: 18px;
  flex: 0 0 auto;
  margin: 3px 0 0;
  accent-color: var(--accent);
}

.draft-link {
  justify-self: start;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-weight: 800;
}

.draft-note,
.draft-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.draft-status.is-active {
  color: var(--success);
  font-weight: 700;
}

.review-panel {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background: #281514;
  color: #fff8f5;
}

.review-panel pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.5;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 650;
}

.consent-line input {
  width: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

.consent-line a {
  color: var(--accent);
  text-decoration: underline;
}

.form-errors {
  min-height: 24px;
  margin-top: 18px;
  color: var(--danger);
  font-weight: 780;
}

.form-actions {
  position: sticky;
  bottom: 10px;
  z-index: 20;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(82, 44, 37, 0.08);
  border-radius: 24px;
  background: rgba(255, 249, 245, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(82, 44, 37, 0.12);
}

.form-action-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.form-action-meta strong {
  color: var(--ink);
  font-size: 1rem;
}

.form-action-assist {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-action-buttons {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.form-action-buttons .button {
  width: 100%;
}

.form-action-buttons .button.hidden {
  display: none;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}

details {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(82, 44, 37, 0.05);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  width: min(var(--max), calc(100% - 22px));
  margin: 14px auto 0;
  padding: 32px 0 44px;
  display: grid;
  gap: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand .brand {
  color: var(--ink);
}

.footer-brand p {
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-weight: 800;
  color: var(--ink);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(39, 21, 20, 0.48);
}

.modal-card,
.status-card,
.legal-shell {
  width: min(760px, 100%);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.modal-card {
  position: relative;
  padding: 34px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 22px;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--berry));
  color: #fff;
  font-weight: 900;
  font-size: 28px;
}

.modal-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.modal-card p {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-page,
.status-body {
  min-height: 100vh;
}

.legal-page .site-header,
.status-body .site-header {
  position: static;
}

.legal-main,
.status-page {
  width: min(var(--max), calc(100% - 22px));
  margin: 0 auto;
  padding: 42px 0 56px;
}

.status-page {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}

.status-card,
.legal-shell {
  padding: clamp(28px, 6vw, 52px);
}

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

.status-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}

.legal-shell header p {
  margin: 14px 0 0;
}

.legal-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.legal-list {
  padding-left: 20px;
}

.legal-shell section + section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-shell h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 6vw, 2.2rem);
  letter-spacing: -0.04em;
}

.legal-shell a {
  color: var(--accent-strong);
}

@media (min-width: 720px) {
  .announcement {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .section-pad,
  .site-footer,
  .legal-main,
  .status-page {
    width: min(var(--max), calc(100% - 36px));
  }

  .hero-actions,
  .modal-actions,
  .status-actions {
    flex-direction: row;
  }

  .hero-actions .button,
  .modal-actions .button,
  .status-actions .button {
    width: auto;
  }

  .trust-row,
  .story-guide,
  .checkout-note-stack,
  .trust-stack,
  .comparison-grid,
  .sample-grid,
  .steps-grid,
  .proof-list,
  .guarantee-points,
  .field-grid.two,
  .option-grid.two,
  .option-grid.three,
  .addon-grid,
  .package-grid,
  .reviews-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-card,
  .guarantee-card,
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .step-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .step-jump {
    flex-direction: column;
    align-items: flex-start;
    min-height: 88px;
  }

  .step-copy {
    width: 100%;
  }

  .form-action-buttons {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }

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

@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }

  .section-pad {
    padding: 86px 0;
  }

  .hero {
    grid-template-columns: 1.04fr 0.96fr;
    gap: 48px;
    padding-top: 70px;
  }

  .hero-card {
    min-height: 560px;
  }

  .phone-shell {
    transform: rotate(2deg);
  }

  .trust-row,
  .proof-list,
  .guarantee-points,
  .checkout-note-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-grid,
  .trust-stack,
  .sample-grid,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .field-grid.two,
  .option-grid.two,
  .addon-grid,
  .reviews-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-card,
  .guarantee-card {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
  }

  .checkout-shell {
    grid-template-columns: 320px 1fr;
    gap: 22px;
  }

  .checkout-sidebar {
    position: sticky;
    top: 96px;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .step-jump {
    flex-direction: row;
    min-height: 0;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .form-actions {
    position: static;
    padding: 16px 0 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .form-action-buttons {
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  }

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

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

@media (max-width: 719px) {
  .header-cta {
    display: none;
  }

  .floating-note {
    display: none;
  }

  .reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .review-card,
  .review-fallback {
    min-width: min(320px, calc(100vw - 44px));
    scroll-snap-align: start;
  }
}
