/* ============================================================
   We Build Any Software  -  v2 styles
   "Quote ticket" editorial. Cream paper, ink type, signal orange.
   ============================================================ */

* { box-sizing: border-box; }
a, a:hover, a:visited, button { text-decoration: none; }

:root {
  --paper: #F5EFE2;
  --paper-2: #EDE5D2;
  --ink: #11140F;
  --ink-2: #3A4036;
  --ink-3: #6E7468;
  --rule: #1114140F;
  --orange: #E24E1B;
  --orange-deep: #B23B12;
  --orange-soft: #F8DCC8;
  --stamp: #C03A0E;
  --on-ink: #F5EFE2;
}

html, body { background: var(--paper); color: var(--ink); overflow-x: hidden; }
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;

  /* paper grain */
  background-image:
    radial-gradient(rgba(17,20,15,0.025) 1px, transparent 1px),
    radial-gradient(rgba(17,20,15,0.018) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}

/* ---------- Type ---------- */
.serif { font-family: 'Source Serif 4', 'Iowan Old Style', Georgia, serif; }
.mono  { font-family: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace; }
.eyebrow {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: 'S'; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border: 1.5px solid currentColor; font-family: 'Inter Tight', system-ui, sans-serif; font-weight: 800; font-size: 11px; line-height: 1; flex-shrink: 0; }

/* ---------- Page shell ---------- */
.shell { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .shell { padding: 0 32px; } }

/* ---------- Top bar ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17,20,15,0.12);
}
@media (min-width: 768px) { .topbar { padding: 22px 32px; } }
.topbar-meta {
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3);
  display: none;
}
@media (min-width: 768px) { .topbar-meta { display: flex; gap: 22px; } }
.topbar-meta span::before { content: "·"; margin-right: 6px; }

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.brand-name {
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
}
.brand-sub {
  font-family: ui-monospace, monospace;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.brand-no {
  font-family: ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.1em; color: var(--ink-3);
  font-weight: 500;
}
.brand-mark {
  width: 28px; height: 28px; border: 1.5px solid var(--ink); color: var(--ink);
  display: inline-grid; place-items: center;
  font-family: 'Inter Tight', system-ui, sans-serif; font-weight: 800; font-size: 13px;
  letter-spacing: -0.03em; flex-shrink: 0;
}

.cta-link {
  font-family: ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
}
.cta-link:hover { color: var(--orange-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 22px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--ink);
  background: var(--ink); color: var(--on-ink);
  border-radius: 0;
  cursor: pointer;
  transition: transform 80ms ease, background 160ms ease, color 160ms ease;
}
.btn:hover { background: var(--orange); border-color: var(--orange); color: white; }
.btn:active { transform: translate(1px, 1px); }
.btn-orange { background: var(--orange); border-color: var(--orange); color: white; }
.btn-orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { padding-top: 40px; padding-bottom: 24px; position: relative; }
@media (min-width: 1000px) { .hero { padding-top: 72px; padding-bottom: 40px; } }
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 48px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-deep);
  border-top: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  padding: 6px 0;
  margin-bottom: 22px;
}
.hero-eyebrow strong { font-weight: 700; }

.eyebrow--promo { color: var(--orange-deep); border-top: 1.5px solid var(--orange); border-bottom: 1.5px solid var(--orange); padding: 5px 0; }
.hero-h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(42px, 7.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
  text-wrap: nowrap;
}
.hero-h1 em {
  font-style: italic; font-weight: 500;
  color: var(--orange);
  position: relative;
}
.hero-h1 em::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -2px;
  height: 6px; background: var(--orange-soft); z-index: -1;
}

.hero-lede {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  font-size: 19px; line-height: 1.45; color: var(--ink-2);
  max-width: 540px; margin: 0 0 32px;
  text-wrap: pretty;
}
@media (min-width: 768px) { .hero-lede { font-size: 22px; } }

.hero-cta-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding-bottom: 28px;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 24px;
}
@media (min-width: 600px) { .hero-cta-row { flex-direction: row; align-items: center; gap: 24px; } }
.hero-cta-meta {
  font-family: ui-monospace, monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-3);
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  list-style: none; padding: 0; margin: 0;
}
.hero-trust li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-2);
}
.hero-trust .num {
  font-family: 'Source Serif 4', Georgia, serif; font-weight: 600;
  font-size: 26px; line-height: 1; color: var(--orange);
  letter-spacing: -0.02em;
}
.hero-trust .lbl { font-size: 12px; line-height: 1.2; color: var(--ink-2); max-width: 110px; }

/* ---------- Hero ticket (the faux quote document) ---------- */
.ticket-wrap { position: relative; perspective: 1400px; }
.ticket {
  background: #FFFAF0;
  border: 1.5px solid var(--ink);
  padding: 28px;
  position: relative;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(-1.6deg);
  transition: transform 400ms cubic-bezier(.2,.6,.2,1);
}
.ticket:hover { transform: rotate(-0.4deg) translateY(-2px); }

/* perforated edges */
.ticket::before, .ticket::after {
  content: ""; position: absolute; left: 0; right: 0; height: 14px;
  background-image: radial-gradient(circle, var(--paper) 4px, transparent 4.5px);
  background-size: 14px 14px;
  background-position: center;
}
.ticket::before { top: -7px; }
.ticket::after { bottom: -7px; }

.ticket-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 14px; margin-bottom: 16px;
}
.ticket-head-l .label {
  font-family: ui-monospace, monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-3);
}
.ticket-head-l .title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600; font-size: 18px; letter-spacing: -0.02em;
  margin-top: 4px;
}
.ticket-head-r {
  text-align: right;
  font-family: ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); line-height: 1.7;
}

.ticket-quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 16px; line-height: 1.4;
  color: var(--ink-2);
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 1px dashed rgba(17,20,15,0.35);
}

.ticket-rows { font-family: ui-monospace, monospace; font-size: 13px; }
.ticket-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px dashed rgba(17,20,15,0.2);
}
.ticket-row:last-of-type { border-bottom: 0; }
.ticket-row .k { color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }
.ticket-row .v { color: var(--ink); font-weight: 600; font-size: 15px; }
.ticket-row.total { border-top: 1.5px solid var(--ink); margin-top: 6px; padding-top: 12px; }
.ticket-row.total .k {
  font-family: 'Source Serif 4', Georgia, serif; font-style: normal;
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.ticket-row.total .v {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 26px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--ink);
}
.ticket-row.strike .v { text-decoration: line-through; color: var(--ink-3); font-weight: 500; }

.ticket-foot {
  margin-top: 16px; padding-top: 14px; border-top: 1.5px solid var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  font-family: ui-monospace, monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3);
}

/* the stamp */
.stamp {
  position: absolute;
  top: 18%; right: -28px;
  border: 4px double var(--stamp);
  color: var(--stamp);
  padding: 14px 20px;
  font-family: ui-monospace, monospace;
  font-weight: 800; font-size: 18px; letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-12deg);
  background: rgba(255, 250, 240, 0.85);
  opacity: 1;
  text-shadow: 0 0 2px rgba(192, 58, 14, 0.3);
  box-shadow: inset 0 0 0 2px rgba(192,58,14,0.3), 0 2px 12px rgba(192,58,14,0.15);
}
}
.stamp small, .stamp-sub {
  display: block; font-size: 7px !important; font-weight: 600; letter-spacing: 0.16em;
  margin-top: 4px; opacity: 1; text-transform: uppercase;
}
.stamp-main { display: block; font-size: 26px; font-weight: 900; letter-spacing: 0.06em; line-height: 1; }
}
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; border-top: 1.5px solid var(--ink); }
@media (min-width: 1000px) { .section { padding: 96px 0; } }
.section.dark { background: var(--ink); color: var(--on-ink); }
.section.dark .ink-3 { color: rgba(245, 239, 226, 0.55); }
.section.dark .eyebrow { color: rgba(245, 239, 226, 0.55); }
.section.dark h2 { color: var(--on-ink); }
.section.dark p { color: rgba(245, 239, 226, 0.75); }

.section-head {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: end; }
}
.section-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1; letter-spacing: -0.03em;
  margin: 16px 0 0;
  text-wrap: nowrap;
}
.section-lede {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px; line-height: 1.45; color: var(--ink-2);
  margin: 0; max-width: 540px;
}
.section.dark .section-lede { color: rgba(245, 239, 226, 0.7); }

/* ---------- "What we build"  -  editorial list ---------- */
.build-list { list-style: none; padding: 0; margin: 0; border-top: 1.5px solid var(--ink); }
.build-list li {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 16px;
  align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid rgba(17,20,15,0.15);
  cursor: default;
  transition: padding 200ms ease;
}
.build-list li:hover { padding-left: 12px; }
.build-list .num {
  font-family: ui-monospace, monospace; font-size: 12px;
  color: var(--ink-3); letter-spacing: 0.1em;
}
.build-list .name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500; font-size: 24px; letter-spacing: -0.02em;
  color: var(--ink);
}
@media (min-width: 768px) { .build-list .name { font-size: 32px; } }
.build-list .arrow {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: grid; place-items: center;
  transition: background 160ms, color 160ms, transform 200ms;
}
.build-list li:hover .arrow { background: var(--orange); border-color: var(--orange); color: white; transform: translateX(4px); }
.build-list li a { display: contents; text-decoration: none; color: inherit; }

/* ---------- Time killers ---------- */
.tk-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 700px) { .tk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tk-grid { grid-template-columns: repeat(3, 1fr); } }

.tk {
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  min-height: 280px;
}
.section.dark .tk { background: rgba(255,255,255,0.04); border-color: rgba(245,239,226,0.4); color: var(--on-ink); }
.tk-quote {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 18px; line-height: 1.4;
  margin: 0;
  flex: 1;
}
.tk-quote::before { content: open-quote; color: var(--orange); font-size: 32px; line-height: 0; vertical-align: -8px; margin-right: 4px; }
.tk-quote::after { content: close-quote; color: var(--orange); }
.section.dark .tk-quote { color: var(--on-ink); }
.tk-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(245,239,226,0.2); }
.section:not(.dark) .tk-meta { border-top-color: rgba(17,20,15,0.2); }
.tk-fix { font-size: 13px; color: var(--ink-2); margin: 0; max-width: 60%; line-height: 1.4; }
.section.dark .tk-fix { color: rgba(245,239,226,0.7); }
.tk-stat { text-align: right; flex-shrink: 0; }
.tk-num {
  font-family: 'Source Serif 4', Georgia, serif; font-weight: 600;
  font-size: 56px; line-height: 0.9; letter-spacing: -0.03em;
  color: var(--orange);
}
.tk-unit {
  font-family: ui-monospace, monospace; font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3);
}
.section.dark .tk-unit { color: rgba(245,239,226,0.6); }

/* ---------- Steps (How it works) ---------- */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1.5px solid var(--ink);
}
@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); border-top: 0; }
}
.step {
  padding: 28px 0;
  border-bottom: 1px solid rgba(17,20,15,0.2);
  display: flex; flex-direction: column; gap: 14px;
}
@media (min-width: 900px) {
  .step { padding: 0 24px 0 24px; border-bottom: 0; border-right: 1px solid rgba(17,20,15,0.2); border-top: 1.5px solid var(--ink); padding-top: 24px; }
  .step:last-child { border-right: 0; }
  .step:first-child { padding-left: 0; }
}
.step-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500; font-size: 64px; line-height: 1;
  letter-spacing: -0.04em; color: var(--orange);
}
.step-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500; font-size: 22px; letter-spacing: -0.02em;
  color: var(--ink); margin: 0;
}
.step-body { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; max-width: 30ch; }

/* ---------- FAQ ---------- */
.faq-list { list-style: none; padding: 0; margin: 0; border-top: 1.5px solid var(--ink); }
.faq { border-bottom: 1.5px solid rgba(17,20,15,0.2); }
.faq-q {
  width: 100%; background: transparent; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500; font-size: 20px; letter-spacing: -0.02em;
  color: var(--ink); text-align: left; cursor: pointer;
}
.faq-q:hover { color: var(--orange-deep); }
.faq-toggle {
  width: 28px; height: 28px; border: 1.5px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  font-family: ui-monospace, monospace; font-size: 16px; font-weight: 400;
}
.faq.open .faq-toggle { background: var(--orange); border-color: var(--orange); color: white; }
.faq-a { padding: 0 0 22px; max-width: 60ch; color: var(--ink-2); font-size: 16px; line-height: 1.55; }

/* ---------- CTA strip ---------- */
.cta-strip {
  padding: 80px 0;
  text-align: left;
  border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  background: var(--orange);
  color: var(--ink);
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ""; position: absolute; top: 0; bottom: 0; right: -10%;
  width: 60%; opacity: 0.08;
  background: repeating-linear-gradient(45deg, var(--ink), var(--ink) 14px, transparent 14px, transparent 28px);
  pointer-events: none;
}
.cta-h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500; font-size: clamp(36px, 6vw, 64px);
  line-height: 1; letter-spacing: -0.03em;
  margin: 0 0 24px; max-width: 14ch;
}
.cta-strip .btn { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }
.cta-strip .btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--on-ink); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 { font-family: 'Inter Tight', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,239,226,0.5); margin: 0 0 14px; font-weight: 600; }
.footer-tag { font-family: 'Source Serif 4', Georgia, serif; font-size: 22px; line-height: 1.3; max-width: 18ch; margin: 0 0 24px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer a { color: rgba(245,239,226,0.85); text-decoration: none; font-size: 14px; }
.footer a:hover { color: var(--orange); }
.footer-meta {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(245,239,226,0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.06em;
  color: rgba(245,239,226,0.45);
}


/* ============================================================
   QUOTE PAGE  -  separate route, mobile-first
   ============================================================ */
.qp { min-height: 100vh; display: flex; flex-direction: column; background: var(--paper); }
.qp-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px;
  border-bottom: 1.5px solid var(--ink);
}
.qp-back, .qp-close {
  background: transparent; border: 0; padding: 6px 8px;
  font-family: ui-monospace, monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.qp-back:hover, .qp-close:hover { color: var(--orange-deep); }
.qp-step-counter {
  font-family: ui-monospace, monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
}
.qp-progress {
  height: 3px; background: rgba(17,20,15,0.1);
  position: relative;
}
.qp-progress-fill { position: absolute; top: 0; left: 0; bottom: 0; background: var(--orange); transition: width 320ms cubic-bezier(.2,.6,.2,1); }

.qp-main {
  flex: 1; padding: 32px 20px 32px;
  max-width: 640px; margin: 0 auto; width: 100%;
}
@media (min-width: 768px) { .qp-main { padding: 56px 32px; } }

.qp-eyebrow {
  font-family: ui-monospace, monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange-deep);
  margin-bottom: 14px;
}
.qp-h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 14px; color: var(--ink);
  text-wrap: nowrap;
}
.qp-lede {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; line-height: 1.45; color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 38ch;
}

.qp-textarea {
  width: 100%; box-sizing: border-box;
  background: #FFFAF0; border: 1.5px solid var(--ink);
  padding: 18px 18px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; line-height: 1.4;
  color: var(--ink); resize: vertical;
  min-height: 200px; border-radius: 0;
  transition: box-shadow 160ms;
}
.qp-textarea::placeholder { color: var(--ink-3); font-style: italic; }
.qp-textarea:focus { outline: none; box-shadow: 6px 6px 0 var(--orange); }

.qp-hint {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
  font-family: ui-monospace, monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3);
}

.qp-q { margin-bottom: 32px; }
.qp-q-label {
  display: block; margin-bottom: 14px;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 20px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink);
}
.qp-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.qp-chip {
  background: transparent; border: 1.5px solid var(--ink);
  padding: 12px 16px;
  font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--ink); cursor: pointer;
  transition: all 160ms;
  min-height: 44px;
}
.qp-chip:hover { background: var(--ink); color: var(--on-ink); }
.qp-chip[data-on="true"] { background: var(--orange); border-color: var(--orange); color: white; }

.qp-est {
  background: #FFFAF0; border: 1.5px solid var(--ink);
  padding: 24px; box-shadow: 8px 8px 0 var(--ink);
  margin-bottom: 24px;
}
.qp-est-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(17,20,15,0.2);
  font-family: ui-monospace, monospace; font-size: 13px;
}
.qp-est-row:last-of-type { border-bottom: 0; }
.qp-est-row .k { text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2); font-size: 11px; }
.qp-est-row .v { font-size: 18px; font-weight: 600; color: var(--ink); }
.qp-est-row.total { border-top: 1.5px solid var(--ink); padding-top: 14px; margin-top: 6px; }
.qp-est-row.total .k { font-family: 'Source Serif 4', Georgia, serif; font-size: 13px; font-weight: 600; color: var(--ink); }
.qp-est-row.total .v {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em;
}
.qp-est-row.strike .v { text-decoration: line-through; color: var(--ink-3); font-weight: 500; }
.qp-est-row.qp-est-list .v { font-size: 16px; font-weight: 500; color: var(--ink-2); }
.qp-est-row.qp-est-youpay .v { font-size: 20px; font-weight: 700; color: var(--ink); }
.qp-est-note {
  font-size: 13px; color: var(--ink-3); margin: 0 0 16px;
  font-family: 'Inter Tight', sans-serif; line-height: 1.45;
}
.qp-est-discount {
  margin-top: 14px; padding: 10px 14px;
  background: var(--orange); color: white;
  font-family: ui-monospace, monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  display: flex; align-items: center; gap: 10px;
}

.qp-incl { list-style: none; padding: 0; margin: 0; }
.qp-incl li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 15px; color: var(--ink-2);
  border-bottom: 1px solid rgba(17,20,15,0.08);
}
.qp-incl li:last-child { border-bottom: 0; }
.qp-incl li::before {
  content: "✓"; color: var(--orange); font-weight: 700;
  width: 20px; flex-shrink: 0;
}

.qp-form { display: flex; flex-direction: column; gap: 20px; }
.qp-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-family: ui-monospace, monospace; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-2);
}
.qp-input {
  background: #FFFAF0; border: 1.5px solid var(--ink);
  padding: 14px 16px;
  font-family: 'Inter Tight', sans-serif; font-size: 17px;
  color: var(--ink); border-radius: 0;
  transition: box-shadow 160ms;
}
.qp-input:focus { outline: none; box-shadow: 4px 4px 0 var(--orange); }
.qp-check {
  flex-direction: row !important; align-items: flex-start;
  text-transform: none !important; letter-spacing: 0 !important;
  font-family: 'Inter Tight', sans-serif !important; font-size: 13px !important;
  gap: 12px !important; color: var(--ink-3) !important;
  line-height: 1.45;
}
.qp-check input { margin-top: 2px; }

.qp-foot {
  position: sticky; bottom: 0;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  background: var(--paper);
  border-top: 1.5px solid var(--ink);
  display: flex; gap: 12px; justify-content: space-between; align-items: center;
}
.qp-foot .btn { flex: 1; }

.qp-page-foot {
  padding: 24px 20px;
  border-top: 1px solid rgba(17,20,15,0.15);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-family: ui-monospace, monospace; font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink-3);
}
.qp-page-foot a { color: var(--ink-3); }
.qp-page-foot a:hover { color: var(--ink); }
.qp-thanks-icon {
  width: 64px; height: 64px;
  border: 2px solid var(--orange); color: var(--orange);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-size: 32px; font-weight: 700;
  border-radius: 50%;
}
.qp-thanks { text-align: center; padding-top: 32px; }
