/* ============================================================================
   tool-shell.css — self-contained dark chrome for ProduceHits free browser
   tools (e.g. /tools/chop-a-song/). No dependency on main.css. Mobile-first.
   Accent defaults to SongChop blue; override --accent per tool if needed.
   ========================================================================== */

:root {
  --bg: #070b12;
  --bg-2: #0b111b;
  --surface: #101826;
  --surface-2: #16202f;
  --surface-3: #1d293b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eaf0f8;
  --text-muted: rgba(234, 240, 248, 0.62);
  --text-faint: rgba(234, 240, 248, 0.4);
  --accent: #5b9cff;
  --accent-dim: #3f7ae0;
  --accent-glow: rgba(91, 156, 255, 0.35);
  --accent-contrast: #04101f;
  --green: #34d97c;
  --danger: #ff6b6b;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1120px;
  --font: "Inter Tight", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 50% -8%, rgba(91, 156, 255, 0.10), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #8fbcff; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(1.75rem, 5vw, 2.6rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 3.4vw, 1.75rem); font-weight: 650; }
h3 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--text-muted); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---- header ---- */
.tool-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px clamp(14px, 4vw, 28px);
  background: rgba(8, 12, 20, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.tool-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tool-brand:hover { color: var(--text); }
.tool-brand .dot {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, #5b9cff, #8b5cf6, #d946ef);
  box-shadow: 0 4px 16px var(--accent-glow);
  flex: none;
}
.tool-brand small {
  color: var(--text-faint);
  font-weight: 500;
  font-size: 0.72rem;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 12px 30px -8px var(--accent-glow); color: #fff; }
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--border-strong); color: var(--text); }
.btn-sm { padding: 8px 13px; font-size: 0.86rem; min-height: 38px; }
.btn-icon {
  padding: 0;
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 11px;
}

/* ---- layout ---- */
.tool-main {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(20px, 5vw, 44px) clamp(14px, 4vw, 28px) 64px;
}
.tool-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.lede { font-size: 1.06rem; max-width: 62ch; }

/* ---- panel / cards ---- */
.panel {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 4vw, 26px);
}
.panel + .panel { margin-top: 20px; }

/* ---- dropzone ---- */
.dropzone {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: clamp(28px, 8vw, 56px) 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.12s ease;
}
.dropzone:hover { border-color: var(--accent); background: var(--surface-3); }
.dropzone.is-drag {
  border-color: var(--accent);
  background: rgba(91, 156, 255, 0.08);
  box-shadow: 0 0 0 4px var(--accent-glow) inset;
}
.dropzone .dz-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  color: var(--accent);
}
.dropzone .dz-title { font-weight: 650; font-size: 1.06rem; color: var(--text); }
.dropzone .dz-sub { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* ---- workspace ---- */
.stage { margin-top: 22px; }
.stage[hidden] { display: none; }
.stage-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 14px;
}
.file-name {
  font-weight: 600;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.file-meta { color: var(--text-faint); font-size: 0.85rem; }

.wave-wrap {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
canvas.wave {
  display: block;
  width: 100%;
  height: 132px;
}

.controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 18px;
}
.slice-control { display: flex; align-items: center; gap: 12px; flex: 1 1 260px; }
.slice-control label { font-weight: 600; font-size: 0.9rem; color: var(--text); white-space: nowrap; }
.slice-control output {
  min-width: 2.4em;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--accent);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--surface-3) 0%);
  outline-offset: 6px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 2px 8px var(--accent-glow);
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
}

.status {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 1.2em;
}
.status.err { color: var(--danger); }
.status.ok { color: var(--green); }

/* ---- slice grid ---- */
.slice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.slice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.18s ease, transform 0.12s ease;
}
.slice-card:hover { border-color: var(--border-strong); }
.slice-card.playing {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset, 0 8px 24px -12px var(--accent-glow);
}
.slice-card .sc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 6px; }
.slice-card .sc-idx { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.slice-card .sc-dur { font-size: 0.78rem; color: var(--text-faint); font-variant-numeric: tabular-nums; }
.slice-card .sc-mini { height: 34px; width: 100%; display: block; opacity: 0.85; }
.slice-card .sc-actions { display: flex; gap: 8px; }
.slice-card .sc-actions .btn { flex: 1; }

.actions-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ---- SEO content ---- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.2rem; }
.prose p { color: var(--text-muted); }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.faq-item h3 { margin-bottom: 6px; color: var(--text); }
.faq-item p { margin: 0; }

/* ---- upsell CTA card ---- */
.upsell {
  margin-top: 30px;
  background:
    radial-gradient(600px 240px at 100% 0%, rgba(139, 92, 246, 0.16), transparent 65%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 5vw, 34px);
}
.upsell h2 { font-size: clamp(1.25rem, 3.4vw, 1.7rem); }
.upsell p { color: var(--text); opacity: 0.86; max-width: 60ch; }
.upsell .free-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(52, 217, 124, 0.12);
  border: 1px solid rgba(52, 217, 124, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ---- footer ---- */
.tool-footer {
  flex: none;
  border-top: 1px solid var(--border);
  padding: 22px clamp(14px, 4vw, 28px);
  text-align: center;
  color: var(--text-faint);
  font-size: 0.84rem;
}
.tool-footer a { color: var(--text-muted); }

/* ---- utility ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.spin { animation: ct-spin 0.8s linear infinite; }
@keyframes ct-spin { to { transform: rotate(360deg); } }

@media (max-width: 460px) {
  .stage-head { gap: 6px 12px; }
  .slice-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .actions-row .btn { flex: 1 1 100%; }
}

/* ============================================================================
   Shell v2 additions (free-tools program) — ADDITIVE ONLY below this line.
   Existing selectors above are frozen; chop-a-song v1 depends on them.
   ========================================================================== */

/* ---- header nav (Home · Free tools · Pricing) ---- */
.tool-nav { display: flex; align-items: center; gap: 4px clamp(8px, 2vw, 18px); }
.tool-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}
.tool-nav a:hover { color: var(--text); background: var(--surface-2); }
.tool-nav a[aria-current="page"] { color: var(--text); }
@media (max-width: 560px) {
  .tool-nav a.nav-optional { display: none; }
}

/* ---- form fields ---- */
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field > label { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.field .sub { font-size: 0.78rem; color: var(--text-faint); }
.tool-input,
.field input[type="text"], .field input[type="number"], .field input[type="date"],
.field input[type="email"], .field select, .field textarea {
  font: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  min-height: 44px;
  width: 100%;
}
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.field input:focus, .field select:focus, .field textarea:focus, .tool-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}
.field-row { display: flex; flex-wrap: wrap; gap: 14px 18px; }
.field-row > .field { flex: 1 1 180px; }

/* ---- big numeral readout (tap tempo, counters, tuner) ---- */
.big-num {
  font-size: clamp(3.4rem, 16vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.big-num small { font-size: 0.22em; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; }
.big-num.accent { color: var(--accent); }
.sub-readouts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 14px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.sub-readouts b { color: var(--text); }

/* ---- meters ---- */
.meter {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.meter-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
  transition: width 0.12s linear;
}
.meter-fill.warn { background: linear-gradient(90deg, #d99a34, #f0b13e); }
.meter-fill.hot { background: linear-gradient(90deg, #e0533f, var(--danger)); }
.meter-scale { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-faint); margin-top: 4px; font-variant-numeric: tabular-nums; }

/* ---- verdict card (LUFS check, MP3 quality, mashup verdict) ---- */
.verdict {
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--surface-2);
  margin-top: 18px;
}
.verdict .v-icon { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; }
.verdict.ok .v-icon { background: rgba(52, 217, 124, 0.15); color: var(--green); }
.verdict.warn .v-icon { background: rgba(240, 177, 62, 0.15); color: #f0b13e; }
.verdict.err .v-icon { background: rgba(255, 107, 107, 0.15); color: var(--danger); }
.verdict h3 { margin: 0 0 2px; }
.verdict p { margin: 0; font-size: 0.92rem; }

/* ---- chips ---- */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: inherit; font-size: 0.86rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  min-height: 38px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.chip:hover { border-color: var(--border-strong); color: var(--text); }
.chip[aria-pressed="true"], .chip.on {
  color: var(--accent-contrast);
  background: var(--accent);
  border-color: var(--accent);
}
.chip-note {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
}
.chip-note .conf { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.chip-note .conf.mid { background: #f0b13e; }
.chip-note .conf.low { background: var(--danger); }

/* ---- data table (delay times, batch results) ---- */
.data-table-wrap { overflow-x: auto; margin-top: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; font-variant-numeric: tabular-nums; }
.data-table th {
  text-align: left; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-faint); font-weight: 700;
  padding: 10px 14px; border-bottom: 1px solid var(--border-strong);
  background: var(--surface-2);
  white-space: nowrap;
}
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); white-space: nowrap; }
.data-table tr:last-child td { border-bottom: 0; }
.data-table td b, .data-table td strong { color: var(--text); }
.data-table .cell-copy { cursor: pointer; }
.data-table .cell-copy:hover { color: var(--accent); }

/* ---- tools index grid ---- */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 24px; }
.tool-card {
  display: flex; flex-direction: column; gap: 8px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--text);
  transition: border-color 0.18s ease, transform 0.12s ease, box-shadow 0.2s ease;
}
.tool-card:hover { border-color: var(--accent); color: var(--text); transform: translateY(-2px); box-shadow: 0 14px 32px -18px var(--accent-glow); }
.tool-card h3 { margin: 0; font-size: 1.02rem; }
.tool-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }
.tool-card .tc-go { margin-top: auto; font-size: 0.84rem; font-weight: 700; color: var(--accent); }
.tool-card .tc-badge { align-self: flex-start; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--accent); background: var(--surface-2); border: 1px solid var(--border); padding: 3px 9px; border-radius: 999px; }

/* ---- pads (chopper / pad player) ---- */
.pads-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
@media (max-width: 560px) { .pads-grid { gap: 8px; } }
.pad {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  color: var(--text);
  font: inherit; font-weight: 700;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  padding: 10px;
  transition: transform 0.05s ease, border-color 0.12s ease, box-shadow 0.15s ease;
  touch-action: manipulation;
  -webkit-user-select: none; user-select: none;
}
.pad:hover { border-color: var(--border-strong); }
.pad.hit, .pad:active { transform: scale(0.97); border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset, 0 10px 26px -14px var(--accent-glow); }
.pad.empty { opacity: 0.35; cursor: default; }
.pad .pad-key {
  font-size: 0.7rem; font-weight: 700; color: var(--text-faint);
  border: 1px solid var(--border); border-radius: 6px; padding: 1px 6px;
}
.pad .pad-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---- segmented control ---- */
.seg { display: inline-flex; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 3px; gap: 2px; }
.seg button {
  font: inherit; font-size: 0.86rem; font-weight: 600;
  color: var(--text-muted); background: transparent; border: 0; border-radius: 999px;
  padding: 8px 14px; min-height: 36px; cursor: pointer;
}
.seg button[aria-pressed="true"] { background: var(--accent); color: var(--accent-contrast); }

/* ---- misc utilities ---- */
.kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--surface-2); border: 1px solid var(--border-strong);
  border-bottom-width: 2px; border-radius: 6px; padding: 2px 7px;
}
.hint { font-size: 0.84rem; color: var(--text-faint); margin-top: 10px; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.grow { flex: 1 1 auto; }
.privacy-line { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--text-faint); margin-top: 14px; }
.privacy-line .lock { color: var(--green); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; margin-top: 6px; }

/* ---- engine loading state ---- */
.engine-note { font-size: 0.82rem; color: var(--text-faint); }
.progress-slim { height: 6px; border-radius: 999px; background: var(--surface-3); overflow: hidden; margin-top: 10px; }
.progress-slim > div { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent-dim), var(--accent)); transition: width 0.2s ease; }

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

/* ---- full-screen count display (choreo counter) ---- */
.count-stage {
  display: grid;
  place-items: center;
  min-height: min(52vh, 420px);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--border);
  user-select: none;
}
.count-num {
  font-size: clamp(6rem, 34vh, 17rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.count-num.accent-1 { color: var(--accent); }
.count-num.accent-5 { color: var(--green); }
.count-stage.mirrored .count-num { transform: scaleX(-1); }
.count-dots { display: flex; gap: 10px; margin-top: 8px; }
.count-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); }
.count-dots span.on { background: var(--accent); }
.count-stage.mirrored .count-dots { flex-direction: row-reverse; }

/* ---- print sheets (cue sheets, planners, license cards) ---- */
@media print {
  body { background: #fff !important; color: #000 !important; display: block; }
  .tool-header, .tool-footer, .upsell, .prose, .dropzone, .controls, .actions-row,
  .hint, .privacy-line, .tool-eyebrow, .lede, .status, .wave-wrap, .no-print { display: none !important; }
  .tool-main { max-width: none; padding: 0; }
  .panel { border: 0; background: none; padding: 0; }
  .print-sheet { display: block !important; color: #000; }
  .print-sheet h2, .print-sheet h3, .print-sheet p, .print-sheet td, .print-sheet th { color: #000 !important; }
  .print-sheet table { width: 100%; border-collapse: collapse; }
  .print-sheet th, .print-sheet td { border-bottom: 1px solid #999; padding: 8px 10px; text-align: left; }
  .print-sheet tr { page-break-inside: avoid; }
}
