/* DigiGrammers Project Configurator — handwritten CSS, no build step.
   Edit this file directly on the server; changes are live on the next reload. */

:root {
  --brand-50:  #eaf6f5;
  --brand-100: #cbe9e6;
  --brand-300: #63bcb6;
  --brand-600: #0f6664;
  --brand-700: #0f3d3e;
  --brand-900: #071d1e;
  --accent:    #2dd4bf;
  --accent-400:#5eead4;
  --ink:       #0b1220;
  --muted:     #64748b;
  --line:      #e2e8f0;
  --surface:   #ffffff;
  --bg:        #f8fafc;
  --rose:      #be123c;
  --amber:     #b45309;
  --emerald:   #047857;
  --radius:    12px;
  --shadow:    0 1px 2px rgba(16,24,40,.04), 0 8px 24px -12px rgba(16,24,40,.14);
  --shadow-lg: 0 8px 32px -8px rgba(15,61,62,.22);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: var(--brand-600); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1500px; margin: 0 auto; padding: 0 20px; }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.logo .mark {
  width: 32px; height: 32px; border-radius: 8px; background: var(--brand-700);
  color: var(--accent); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.logo .name { font-weight: 700; font-size: 15px; letter-spacing: -0.02em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 6px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; }
.nav a:hover { background: #f1f5f9; color: var(--ink); }
.nav a.active { background: var(--brand-50); color: var(--brand-700); }

.site-footer { border-top: 1px solid var(--line); background: #fff; margin-top: 56px; }
.site-footer .inner { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding: 28px 0; font-size: 12.5px; color: var(--muted); }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px; border: 0;
  font: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: background .14s, box-shadow .14s, transform .06s;
}
.btn:active { transform: scale(.99); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }
.btn-primary { background: var(--brand-700); color: #fff; }
.btn-primary:hover:not(:disabled) { background: var(--brand-600); }
.btn-accent { background: var(--accent); color: var(--brand-900); }
.btn-accent:hover:not(:disabled) { background: var(--accent-400); }
.btn-ghost { background: #fff; color: #334155; box-shadow: inset 0 0 0 1px var(--line); }
.btn-ghost:hover:not(:disabled) { background: #f8fafc; }
.btn-danger { background: transparent; color: var(--rose); }
.btn-danger:hover { background: #fff1f2; }
.btn-sm { padding: 6px 12px; font-size: 12.5px; border-radius: 8px; }
.btn-block { width: 100%; }

/* ----------------------------------------------------------------- cards */

.card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.card-pad { padding: 20px; }

.section-title { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.section-sub { margin-top: 8px; max-width: 62ch; color: #475569; font-size: 14px; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }

/* ------------------------------------------------------------ selectables */

.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }

/* A whole card is the click target; the real input stays keyboard-reachable. */
.opt { position: relative; display: block; cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt .box {
  height: 100%; padding: 15px 16px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  transition: border-color .14s, box-shadow .14s, background .14s;
}
.opt:hover .box { border-color: var(--brand-300); box-shadow: var(--shadow-lg); }
.opt input:focus-visible ~ .box { outline: 2px solid var(--brand-600); outline-offset: 2px; }
.opt input:checked ~ .box { border-color: var(--brand-700); box-shadow: 0 0 0 1px var(--brand-700); background: #f6fbfa; }
.opt input:checked ~ .box::after {
  content: "✓"; position: absolute; top: 10px; right: 10px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-700); color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
/* The cards are built from spans (a label may not contain block-level flow
   content in older parsers), so every stacked part needs display:block. */
.opt .box { display: block; }
.opt .title { display: block; font-weight: 650; font-size: 14.5px; padding-right: 26px; }
.opt .desc { display: block; margin-top: 5px; font-size: 12.5px; line-height: 1.5; color: var(--muted); }
.opt .chips { display: flex; }

/* Compact row style used by the feature and integration pickers. */
.pick { position: relative; display: block; cursor: pointer; }
.pick input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pick .box {
  display: flex; gap: 10px; padding: 11px 12px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line); height: 100%;
  transition: border-color .12s, background .12s;
}
.pick:hover .box { border-color: var(--brand-300); }
.pick input:focus-visible ~ .box { outline: 2px solid var(--brand-600); outline-offset: 2px; }
.pick input:checked ~ .box { border-color: var(--brand-700); box-shadow: 0 0 0 1px var(--brand-700); background: #f6fbfa; }
.pick .tick {
  flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; border-radius: 4px;
  border: 1px solid #cbd5e1; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: transparent;
}
.pick input:checked ~ .box .tick { background: var(--brand-700); border-color: var(--brand-700); color: #fff; }
.pick .name { font-weight: 640; font-size: 13.5px; }
.pick .desc { display: block; margin-top: 3px; font-size: 12px; line-height: 1.45; color: var(--muted); }
.pick .meta { display: block; margin-top: 6px; font-size: 11.5px; color: #94a3b8; }
.pick .chips { display: flex; }

/* ----------------------------------------------------------------- chips */

.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 600; white-space: nowrap;
  background: #f1f5f9; color: #475569;
  /* Seed copy can be long ("Marketing sites with dynamic sections") — clip
     rather than letting a chip push past the edge of its card. */
  max-width: 100%; overflow: hidden; text-overflow: ellipsis;
}
.chip-brand   { background: var(--brand-50); color: var(--brand-700); }
.chip-accent  { background: rgba(45,212,191,.18); color: #0f5f5c; }
.chip-amber   { background: #fffbeb; color: var(--amber); }
.chip-rose    { background: #fff1f2; color: var(--rose); }
.chip-emerald { background: #ecfdf5; color: var(--emerald); }
.chips { display: flex; flex-wrap: wrap; gap: 5px; min-width: 0; }

/* A technology card carries a Compare toggle pinned to its bottom-right, so
   the card itself has to leave room for it. */
.tech-card { position: relative; }
.tech-card .opt .box { padding-bottom: 42px; }
.tech-card .compare-toggle {
  position: absolute; right: 10px; bottom: 10px; z-index: 1;
  background: #fff; padding: 3px 9px; border-radius: 7px;
  border: 1px solid var(--line); font-size: 11.5px; font-weight: 600;
}
.tech-card .compare-toggle:hover { border-color: var(--brand-300); }

/* ----------------------------------------------------------------- forms */

.field { display: block; margin-bottom: 14px; }
.label { display: block; margin-bottom: 5px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.input, select.input, textarea.input {
  width: 100%; padding: 9px 11px; border-radius: 9px;
  border: 1px solid #cbd5e1; background: #fff;
  font: inherit; font-size: 14px; color: var(--ink);
}
.input:focus { outline: 2px solid var(--brand-600); outline-offset: -1px; border-color: var(--brand-600); }
textarea.input { min-height: 84px; resize: vertical; }
.hint { margin-top: 4px; font-size: 12px; color: var(--muted); }
.error-text { margin-top: 4px; font-size: 12px; color: var(--rose); }
.input-error { border-color: var(--rose); }
.inline-check { display: inline-flex; align-items: flex-start; gap: 8px; font-size: 13px; color: #475569; cursor: pointer; }
.inline-check input { margin-top: 3px; accent-color: var(--brand-700); }

.alert { padding: 11px 14px; border-radius: 10px; font-size: 13.5px; margin-bottom: 18px; }
.alert-error { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; }
.alert-ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }

/* --------------------------------------------------------------- stepper */

.stepper { overflow-x: auto; padding-bottom: 4px; margin-bottom: 24px; }
.stepper ol { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; min-width: max-content; }
.stepper a, .stepper span.step-item {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 11px; border-radius: 9px;
  font-size: 12.5px; font-weight: 650; text-decoration: none; color: #94a3b8;
}
.stepper a:hover { background: #f1f5f9; }
.stepper .done { color: var(--brand-700); }
.stepper .current { background: var(--brand-700); color: #fff; }
.stepper .bullet {
  width: 20px; height: 20px; border-radius: 50%; background: #e2e8f0; color: #64748b;
  font-size: 10px; display: flex; align-items: center; justify-content: center;
}
.stepper .done .bullet { background: var(--brand-100); color: var(--brand-700); }
.stepper .current .bullet { background: var(--accent); color: var(--brand-900); }
.stepper .sep { color: #cbd5e1; padding: 0 2px; }

/* --------------------------------------------------------------- sidebar */

.configure-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; }
@media (min-width: 1024px) { .configure-grid { grid-template-columns: minmax(0,1fr) 330px; } }

.sidebar { position: sticky; top: 84px; }
.sidebar .panel { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.sidebar .head { background: var(--brand-700); color: #fff; padding: 16px 18px; }
.sidebar .head .eyebrow { color: var(--accent); }
.sidebar .price { margin-top: 6px; font-size: 23px; font-weight: 800; letter-spacing: -0.02em; }
.sidebar .price .dash { color: rgba(255,255,255,.4); margin: 0 5px; }
.sidebar .price-exact { margin-top: 3px; font-size: 12px; color: rgba(255,255,255,.68); }
.sidebar .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.sidebar .stats div { background: #fff; padding: 11px 8px; text-align: center; }
.sidebar .stats dt { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #94a3b8; }
.sidebar .stats dd { margin: 2px 0 0; font-size: 13.5px; font-weight: 700; }
.sidebar .body { padding: 15px 18px; display: grid; gap: 12px; }
.sidebar .fine { font-size: 11.5px; line-height: 1.5; color: #94a3b8; }
.breakdown { background: #f8fafc; border-radius: 9px; padding: 11px 12px; font-size: 12.5px; display: grid; gap: 5px; }
.breakdown .row { display: flex; justify-content: space-between; gap: 10px; color: #475569; }
.breakdown .row span:last-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.breakdown .total { border-top: 1px solid var(--line); padding-top: 6px; font-weight: 700; color: var(--ink); }
.currency-row { display: flex; align-items: center; gap: 10px; }
.currency-row select { max-width: 96px; padding: 6px 8px; font-size: 12.5px; }

.is-busy { opacity: .55; transition: opacity .15s; }

/* ------------------------------------------------------------------ hero */

.hero { background: var(--brand-700); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .22;
  background:
    radial-gradient(circle at 18% 18%, #2dd4bf 0, transparent 45%),
    radial-gradient(circle at 82% 0%, #17807c 0, transparent 42%);
}
.hero .inner { position: relative; padding: 76px 0 68px; }
.hero h1 { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; max-width: 18ch; }
.hero h1 .alt { display: block; color: var(--accent); }
.hero p.lede { margin-top: 18px; max-width: 60ch; color: rgba(255,255,255,.72); font-size: 16px; }
.hero .actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.hero .btn-outline { background: rgba(255,255,255,.12); color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.2); }
.hero .stats { margin-top: 46px; display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 22px; max-width: 640px; }
.hero .stats dt { font-size: 24px; font-weight: 800; }
.hero .stats dd { margin: 2px 0 0; font-size: 12px; color: rgba(255,255,255,.55); }
@media (max-width: 640px) { .hero h1 { font-size: 32px; } }

.budget-hero { background: var(--brand-700); color: #fff; border-radius: 16px; padding: 26px 28px; }
.budget-hero .amount { margin-top: 6px; font-size: 33px; font-weight: 800; letter-spacing: -0.025em; }
.budget-hero .amount .dash { color: rgba(255,255,255,.35); margin: 0 8px; font-weight: 400; }
.budget-hero .facts { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 26px; }
.budget-hero .facts dt { font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.budget-hero .facts dd { margin: 2px 0 0; font-size: 14px; font-weight: 700; }
@media (max-width: 640px) { .budget-hero .amount { font-size: 24px; } }

/* --------------------------------------------------------------- tables */

.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: 13px; }
table.data th {
  text-align: left; padding: 9px 12px; background: #f8fafc;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #64748b;
  white-space: nowrap; border-bottom: 1px solid var(--line);
}
table.data td { padding: 9px 12px; border-top: 1px solid #f1f5f9; vertical-align: top; }
table.data tbody tr:hover { background: #f8fafc; }
table.data td.num { text-align: right; white-space: nowrap; }
table.data .truncate { display: block; max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.kv { display: grid; gap: 7px; font-size: 13.5px; }
.kv .row { display: flex; justify-content: space-between; gap: 16px; }
.kv .row dt { color: var(--muted); }
.kv .row dd { margin: 0; font-weight: 600; text-align: right; }

/* ------------------------------------------------------- comparison table */

.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.compare-table th { text-align: left; padding: 0 12px 12px 0; vertical-align: bottom; }
.compare-table th .tech-name { font-size: 16px; font-weight: 750; }
.compare-table th .tech-layer { font-size: 11px; font-weight: 500; color: var(--muted); text-transform: capitalize; }
.compare-table td { padding: 11px 12px 11px 0; border-top: 1px solid #f1f5f9; vertical-align: top; }
.compare-table td.criteria { font-size: 12px; font-weight: 600; color: var(--muted); width: 160px; }
.compare-table ul { margin: 0; padding-left: 15px; }
.compare-table li { font-size: 12px; line-height: 1.5; color: #475569; margin-bottom: 3px; }
.compare-table li.neg::marker { color: #fda4af; }
.compare-table li.pos::marker { color: var(--accent); }

.score-grid { display: grid; gap: 4px; margin-top: 10px; }
.score-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.score { display: inline-flex; gap: 3px; align-items: center; flex: 0 0 auto; }
.score i { display: block; width: 15px; height: 5px; border-radius: 3px; background: #e2e8f0; }
.score i.on { background: var(--accent); }
.score .na { font-size: 11px; color: #94a3b8; }

/* --------------------------------------------------------------- feature */

.feature-layout { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .feature-layout { grid-template-columns: 210px minmax(0,1fr); } }
.cat-rail { display: grid; gap: 2px; align-content: start; max-height: 560px; overflow-y: auto; }
.cat-rail button {
  display: flex; justify-content: space-between; gap: 8px; align-items: center;
  width: 100%; padding: 7px 10px; border: 0; border-radius: 8px; background: transparent;
  font: inherit; font-size: 12.5px; font-weight: 600; color: #475569; cursor: pointer; text-align: left;
}
.cat-rail button:hover { background: #f1f5f9; }
.cat-rail button[aria-pressed="true"] { background: var(--brand-700); color: #fff; }
.cat-rail .count { font-size: 11px; opacity: .7; }
.cat-rail .picked { background: var(--accent); color: var(--brand-900); border-radius: 999px; padding: 0 6px; font-size: 10px; font-weight: 800; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.filter-bar .input { max-width: 260px; }
.cat-group { margin-bottom: 22px; }
.cat-group h3 { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #94a3b8; margin-bottom: 8px; }

/* ---------------------------------------------------------------- modal */

.modal-backdrop {
  position: fixed; inset: 0; z-index: 60; padding: 18px;
  background: rgba(11,18,32,.55); backdrop-filter: blur(3px);
  overflow-y: auto; display: flex; align-items: flex-start; justify-content: center;
}
.modal {
  background: #fff; border-radius: 16px; width: 100%; max-width: 980px;
  margin: 32px 0; box-shadow: 0 24px 64px -12px rgba(0,0,0,.4);
}
.modal .modal-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.modal .modal-body { padding: 22px; max-height: 70vh; overflow: auto; }
.modal-narrow { max-width: 560px; }

/* -------------------------------------------------------- recommendations */

.rec { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; }
.rec .rec-main { flex: 1 1 380px; min-width: 0; }
.rec .rec-side { text-align: right; flex: 0 0 auto; }
.rec h3 { font-size: 14px; font-weight: 700; display: inline; margin-right: 8px; }
.rec .reason { margin-top: 6px; font-size: 12.5px; line-height: 1.55; color: #475569; }
.rec .cost { font-size: 15px; font-weight: 750; }
.rec .cost-sub { font-size: 11px; color: #94a3b8; }

.phase-row { margin-bottom: 12px; }
.phase-row .top { display: flex; justify-content: space-between; font-size: 13px; }
.phase-row .bar { margin-top: 4px; height: 6px; border-radius: 999px; background: #f1f5f9; overflow: hidden; }
.phase-row .bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

.team-list { display: grid; gap: 9px; }
.team-list li { display: flex; gap: 11px; align-items: flex-start; list-style: none; }
.team-list .n {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 7px;
  background: var(--brand-50); color: var(--brand-700);
  font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.team-list .role { font-weight: 650; font-size: 13.5px; }
.team-list .note { font-size: 12px; color: var(--muted); }

.step-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.step-actions .right { display: flex; gap: 8px; flex-wrap: wrap; }

.stack { display: grid; gap: 18px; }
.stack-lg { display: grid; gap: 36px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.tiny { font-size: 11.5px; }
.right { text-align: right; }
.nowrap { white-space: nowrap; }

/* ----------------------------------------------------------------- admin */

.admin-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; padding: 24px 0; }
@media (min-width: 1000px) { .admin-grid { grid-template-columns: 220px minmax(0,1fr); } }
.admin-nav { position: sticky; top: 84px; }
.admin-nav .who { background: var(--brand-700); color: #fff; border-radius: 9px; padding: 9px 11px; margin-bottom: 14px; }
.admin-nav .who .eyebrow { color: var(--accent); }
.admin-nav .who .email { font-size: 12.5px; font-weight: 650; overflow: hidden; text-overflow: ellipsis; }
.admin-nav a {
  display: block; padding: 6px 10px; border-radius: 8px;
  font-size: 12.5px; font-weight: 600; color: #475569; text-decoration: none;
}
.admin-nav a:hover { background: #f1f5f9; }
.admin-nav a.active { background: var(--brand-50); color: var(--brand-700); }
.admin-nav .group { margin: 12px 0 4px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #94a3b8; padding: 0 10px; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 15px; }
.tile .v { font-size: 25px; font-weight: 800; margin-top: 3px; }
.tile .s { font-size: 11.5px; color: var(--muted); }
.tile-brand { background: var(--brand-700); color: #fff; border-color: var(--brand-700); }
.tile-brand .eyebrow { color: var(--accent); }
.tile-brand .s { color: rgba(255,255,255,.62); }

.login-shell { min-height: 74vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card { width: 100%; max-width: 400px; }

@media print {
  .site-header, .site-footer, .step-actions, .sidebar, .no-print { display: none !important; }
  body { background: #fff; }
}
