/* PrintBoss Costing site. Dark theme to match printboss.pro. No JavaScript, no external fonts or requests. */
:root {
  --bg: #18181b; /* zinc-900 */
  --bg-deep: #0f0f11;
  --card: rgba(39, 39, 42, 0.5);
  --card-solid: #27272a; /* zinc-800 */
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f4f5; /* zinc-100 */
  --muted: #a1a1aa; /* zinc-400: 6:1 on the cards */
  --orange: #f97316; /* accents, glows, large text */
  --orange-soft: #fb923c; /* orange text on dark */
  --cta: #cf4409; /* white text on this passes AA (4.7:1) */
  --cta-hover: #b93b07;
  --green: #34d399;
  --red: #fb7185;
  --blue: #60a5fa;
  --radius: 24px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-soft); text-underline-offset: 3px; }
a:hover { color: #fdba74; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 8px; }
::selection { background: rgba(249, 115, 22, 0.35); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.skip { position: absolute; left: -9999px; top: 8px; background: #fff; color: #111; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

.container { width: min(1120px, 100% - 40px); margin-inline: auto; }
.narrow { width: min(760px, 100% - 40px); margin-inline: auto; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(24, 24, 27, 0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: 24px; height: 72px; position: relative; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 20px; color: #fff; text-decoration: none; letter-spacing: -0.02em; }
.brand:hover { color: #fff; }
.brand img { width: 40px; height: 40px; border-radius: 12px; box-shadow: 0 0 24px rgba(249, 115, 22, 0.35); }
.brand small { color: var(--orange-soft); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 10px; display: block; line-height: 1; margin-top: 3px; }
.nav { display: flex; gap: 26px; margin-left: auto; align-items: center; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 700; font-size: 14px; }
.nav a:hover { color: #fff; }
.nav a.btn-primary, .nav a.btn-primary:hover { color: #fff; }
.nav-phone { color: #fff !important; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* mobile menu: a <details>, so it works without JavaScript */
.menu { display: none; }
.menu summary { list-style: none; cursor: pointer; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: #fff; border: 1px solid var(--line); }
.menu summary::-webkit-details-marker { display: none; }
.menu summary .ic { width: 22px; height: 22px; }
.menu[open] summary { background: var(--card-solid); }
.menu-panel { position: absolute; right: 0; top: 64px; width: min(300px, 100vw - 40px); background: var(--card-solid); border: 1px solid var(--line); border-radius: 20px; padding: 10px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55); }
.menu-panel a { display: block; padding: 12px 14px; border-radius: 12px; color: var(--text); text-decoration: none; font-weight: 700; }
.menu-panel a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 16px; font-weight: 800; font-size: 16px;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; line-height: 1.2;
  transition: transform 0.15s var(--ease), background 0.15s, border-color 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--cta); color: #fff; box-shadow: 0 8px 30px rgba(249, 115, 22, 0.28); }
.btn-primary:hover { background: var(--cta-hover); color: #fff; }
.btn-ghost { background: rgba(39, 39, 42, 0.8); color: #fff; border-color: var(--line); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.28); color: #fff; }
.btn-small { padding: 10px 18px; font-size: 14px; border-radius: 12px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.mid { justify-content: center; }

/* ---- hero ---- */
.hero {
  position: relative; overflow: hidden; text-align: center; padding: 88px 0 64px;
  background:
    radial-gradient(900px 420px at 15% -5%, rgba(249, 115, 22, 0.14), transparent 60%),
    radial-gradient(900px 480px at 92% 105%, rgba(59, 130, 246, 0.1), transparent 60%),
    var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 75%);
}
.hero .container { position: relative; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.25); color: var(--orange-soft); font-weight: 800; font-size: 12px; padding: 8px 16px; border-radius: 999px; letter-spacing: 0.02em; }
h1 {
  font-size: clamp(38px, 6.4vw, 78px); line-height: 1.04; letter-spacing: -0.035em; margin: 26px auto 22px; font-weight: 900; max-width: 15em;
  color: var(--text);
  background: linear-gradient(to bottom right, #fff, #e4e4e7 45%, #71717a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (forced-colors: active) { h1 { background: none; -webkit-text-fill-color: currentColor; } }
.lead { font-size: clamp(17px, 1.8vw, 21px); color: var(--muted); max-width: 40em; margin: 0 auto 32px; }
.fine { color: var(--muted); font-size: 14px; margin: 22px 0 0; }
.fine span + span::before { content: "·"; margin: 0 8px; color: #52525b; }
.hero-contact { margin: 12px 0 0; color: var(--muted); font-size: 15px; }
.hero-contact strong { color: var(--text); }
.hero-contact a { font-weight: 800; white-space: nowrap; }

.frame { border-radius: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); background: #0f0f11; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 80px rgba(249, 115, 22, 0.12); }
.frame::before { content: ""; display: block; height: 30px; background: #18181b radial-gradient(circle at 18px 15px, #f87171 4.5px, transparent 5.5px), radial-gradient(circle at 36px 15px, #fbbf24 4.5px, transparent 5.5px), radial-gradient(circle at 54px 15px, #34d399 4.5px, transparent 5.5px); background-repeat: no-repeat; border-bottom: 1px solid var(--line); }
.hero-frame { margin: 56px auto 0; max-width: 1000px; text-align: left; }

/* ---- trust strip ---- */
.strip { border-block: 1px solid var(--line); background: rgba(39, 39, 42, 0.25); }
.strip ul { list-style: none; margin: 0; padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: center; font-weight: 700; color: var(--muted); font-size: 15px; }
.strip li { display: flex; align-items: center; gap: 10px; }
.strip .ic { color: var(--orange); }

/* ---- sections ---- */
section { padding: 96px 0; }
.section-title { font-size: clamp(28px, 3.8vw, 46px); line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 14px; font-weight: 900; color: #fff; }
.section-sub { color: var(--muted); font-size: 18px; max-width: 40em; margin: 0 0 48px; }
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }
.tint { background: rgba(39, 39, 42, 0.22); }

/* ---- pain cards ---- */
.pain { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; max-width: 1000px; margin-inline: auto; }
.pain div { background: rgba(31, 31, 34, 0.9); border: 1px solid var(--line); border-radius: 24px; padding: 30px 20px; text-align: center; font-weight: 800; font-size: 15px; }
.pain .ic { width: 38px; height: 38px; color: #71717a; display: block; margin: 0 auto 14px; stroke-width: 1.6; }

/* ---- feature cards ---- */
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.card h3 { margin: 22px 0 8px; font-size: 20px; letter-spacing: -0.01em; color: #fff; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.icon { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; }
.icon .ic { width: 24px; height: 24px; }
.i-orange { background: rgba(249, 115, 22, 0.14); color: var(--orange); }
.i-green { background: rgba(16, 185, 129, 0.14); color: var(--green); }
.i-blue { background: rgba(59, 130, 246, 0.14); color: var(--blue); }
.i-violet { background: rgba(139, 92, 246, 0.16); color: #a78bfa; }
.i-pink { background: rgba(236, 72, 153, 0.14); color: #f472b6; }
.i-slate { background: rgba(148, 163, 184, 0.14); color: #cbd5e1; }

.minis { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 24px; }
.mini { display: flex; gap: 16px; background: rgba(31, 31, 34, 0.9); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.mini .icon { width: 42px; height: 42px; border-radius: 12px; }
.mini .icon .ic { width: 20px; height: 20px; }
.mini h3 { margin: 0 0 4px; font-size: 16px; color: #fff; }
.mini p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---- feature rows with screenshots ---- */
.row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.row + .row { margin-top: 88px; }
.row.flip { grid-template-columns: 1.2fr 1fr; }
.row.flip .text { order: 2; }
.row h3 { font-size: clamp(24px, 2.8vw, 34px); line-height: 1.15; letter-spacing: -0.025em; margin: 0 0 14px; color: #fff; font-weight: 900; }
.row p { color: var(--muted); font-size: 17px; margin: 0 0 12px; }
.ticks { list-style: none; padding: 0; margin: 18px 0 0; }
.ticks li { padding-left: 32px; position: relative; margin: 10px 0; color: var(--text); }
.ticks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--orange); background: radial-gradient(circle, var(--orange) 0 3px, transparent 3.5px); }

/* ---- compare ---- */
.vs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 980px; margin-inline: auto; }
.vs-card { border-radius: 32px; padding: 36px; border: 1px solid; }
.vs-card h3 { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; font-size: 24px; letter-spacing: -0.01em; }
.vs-card ul { list-style: none; margin: 0; padding: 0; }
.vs-card li { display: flex; gap: 12px; margin: 16px 0; color: #d4d4d8; font-size: 15px; }
.vs-card li strong { color: #fff; }
.vs-card li .ic { margin-top: 3px; }
.vs-old { background: rgba(244, 63, 94, 0.07); border-color: rgba(244, 63, 94, 0.25); }
.vs-old h3, .vs-old li .ic { color: var(--red); }
.vs-new { background: rgba(16, 185, 129, 0.07); border-color: rgba(16, 185, 129, 0.3); border-top: 3px solid var(--green); }
.vs-new h3, .vs-new li .ic { color: var(--green); }

/* ---- steps ---- */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; list-style: none; padding: 0; margin: 0; }
.steps li { counter-increment: s; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.steps li::before { content: counter(s); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(249, 115, 22, 0.14); color: var(--orange); font-weight: 900; margin-bottom: 16px; }
.steps strong { display: block; font-size: 18px; margin-bottom: 4px; color: #fff; }
.steps span { color: var(--muted); }

/* ---- pricing ---- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; max-width: 900px; margin-inline: auto; }
.plan { position: relative; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: 32px; padding: 40px; display: flex; flex-direction: column; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25); }
.plan.featured { background: var(--card-solid); border: 1px solid rgba(249, 115, 22, 0.35); box-shadow: 0 0 60px rgba(249, 115, 22, 0.16); }
.plan .tag { position: absolute; top: 0; right: 0; background: var(--cta); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 16px; border-radius: 0 0 0 16px; }
.plan h3 { margin: 0; font-size: 22px; color: #fff; }
.price { font-size: 52px; font-weight: 900; letter-spacing: -0.03em; margin: 10px 0 2px; line-height: 1.1; color: #fff; }
.plan.featured .price { color: var(--orange); }
.price small { display: block; font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; margin-top: 6px; }
.plan .ticks { margin: 24px 0 30px; flex: 1; }
.plan .ticks li { font-size: 15px; }
.plan .btn-row { margin-top: auto; }
.plan .btn { width: 100%; }

/* ---- buying: payment + contact ---- */
.buy-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 24px; max-width: 940px; margin-inline: auto; align-items: stretch; }
.pay-card, .contact-card { background: var(--card); border: 1px solid var(--line); border-radius: 32px; padding: 36px; }
.pay-card { border: 1px solid rgba(96, 165, 250, 0.4); box-shadow: 0 0 60px rgba(59, 130, 246, 0.12); text-align: center; display: flex; flex-direction: column; align-items: center; background: var(--card-solid); }
.label { margin: 0 0 14px; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.pay-card .label { color: var(--blue); }
/* QR codes need a light quiet zone around them to scan reliably, so the image sits on white. */
.qr { width: min(320px, 100%); height: auto; border-radius: 16px; padding: 10px; margin: 0 auto 8px; background: #fff; }
.qr-save { font-size: 14px; font-weight: 800; margin-bottom: 16px; }
.who { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.phone { display: block; font-size: clamp(28px, 4vw, 38px); font-weight: 900; letter-spacing: 0.01em; text-decoration: none; margin: 4px 0 14px; font-variant-numeric: tabular-nums; color: var(--orange); }
.phone:hover { color: #fdba74; }
.pay-card .phone { color: var(--blue); }
.pay-card .phone:hover { color: #93c5fd; }
.pay-card .note { margin: 0; }
.contact-card .btn-row { margin-bottom: 24px; }
.contact-card .btn { padding: 12px 20px; font-size: 15px; border-radius: 14px; }
.buy-steps { padding-left: 22px; margin: 0 0 14px; color: #d4d4d8; }
.buy-steps li { margin: 8px 0; }

/* ---- download + windows help ---- */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.help { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.help h3 { margin: 0 0 10px; font-size: 20px; color: #fff; }
.help ol { padding-left: 22px; margin: 0; color: #d4d4d8; }
.help li { margin: 8px 0; }
.mono { font-family: "Cascadia Mono", Consolas, monospace; font-size: 13px; background: #0f0f11; color: #e4e4e7; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; display: block; overflow-wrap: anywhere; user-select: all; }
.kbd { font-weight: 800; color: #fff; background: rgba(249, 115, 22, 0.14); border: 1px solid rgba(249, 115, 22, 0.3); border-radius: 8px; padding: 1px 8px; white-space: nowrap; }
.note { color: var(--muted); font-size: 14px; }

.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.label-gap { margin: 12px 0 6px; }

/* ---- made by ---- */
.maker { max-width: 820px; margin-inline: auto; background: linear-gradient(135deg, rgba(39, 39, 42, 0.9), rgba(24, 24, 27, 0.9)); border: 1px solid var(--line); border-left: 5px solid var(--orange); border-radius: 28px; padding: 40px; }
.maker h2 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.025em; color: #fff; font-weight: 900; }
.maker h2 em { font-style: normal; color: var(--orange); }
.maker p { color: #d4d4d8; margin: 0 0 12px; font-size: 17px; }
.maker .who { margin-top: 20px; font-size: 16px; }
.maker .sub { color: var(--muted); font-size: 14px; }

/* ---- FAQ ---- */
.faq { display: grid; gap: 14px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 0 24px; }
.faq details[open] { background: rgba(39, 39, 42, 0.7); }
.faq summary { cursor: pointer; font-weight: 800; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform 0.2s var(--ease); flex: none; margin: -4px 4px 0 0; }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq details p { margin: 0 0 22px; color: var(--muted); }

/* ---- call to action + footer ---- */
.cta { padding: 40px 0 96px; }
.cta-card { text-align: center; border-radius: 40px; padding: 72px 24px; border: 1px solid rgba(249, 115, 22, 0.3); background: radial-gradient(700px 300px at 50% 0%, rgba(249, 115, 22, 0.22), transparent 70%), var(--card-solid); box-shadow: 0 0 80px rgba(249, 115, 22, 0.12); }
.cta h2 { font-size: clamp(28px, 4vw, 46px); margin: 0 0 12px; letter-spacing: -0.03em; font-weight: 900; color: #fff; }
.cta p { margin: 0 auto 30px; max-width: 34em; color: var(--muted); font-size: 18px; }
.cta .btn-row { justify-content: center; }

.site-footer { border-top: 1px solid var(--line); background: var(--bg-deep); color: var(--muted); padding: 48px 0; font-size: 15px; }
.site-footer strong { color: #fff; }
.site-footer a { color: #d4d4d8; }
.site-footer a:hover { color: var(--orange-soft); }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px 24px; flex-wrap: wrap; align-content: flex-start; }
.site-footer small { display: block; margin-top: 10px; color: #71717a; }

/* ---- legal pages ---- */
.legal { padding: 64px 0 96px; }
.legal h1 { font-size: clamp(32px, 4vw, 44px); margin: 0 0 6px; max-width: none; background: none; -webkit-text-fill-color: currentColor; color: #fff; letter-spacing: -0.03em; }
.legal h2 { font-size: 22px; margin: 36px 0 8px; letter-spacing: -0.01em; color: #fff; }
.legal p, .legal li { color: #d4d4d8; }
.legal .meta { color: var(--muted); margin: 0 0 8px; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .row, .row.flip, .two, .plans, .buy-grid, .vs, .site-footer .container { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 40px; }
  .row.flip .text { order: 0; }
  .row { gap: 32px; }
  .nav a:not(.btn):not(.nav-phone) { display: none; }
  .menu { display: block; }
  .nav { margin-left: auto; gap: 14px; }
  section { padding: 64px 0; }
  .plan, .pay-card, .contact-card, .vs-card { padding: 28px; }
}
@media (max-width: 520px) {
  .nav-phone { font-size: 14px; }
  .pay-card, .contact-card { padding: 24px 20px; }
  .brand small { display: none; }
}
@media (max-width: 420px) {
  .nav-phone { display: none; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav .btn { width: auto; }
  .site-header .container { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn, .faq summary::after { transition: none; } }
@media print { .site-header, .cta, .site-footer, .hero::before { display: none; } body, html { background: #fff; color: #000; } }
