/* SiteSmith — "the service counter".
   White page, awning-green bands, a manila claim ticket, rubber-stamp red.
   Display: Alfa Slab One (headline + price only). Titles: Archivo 900.
   Body: Public Sans. Ticket labels/eyebrows: IBM Plex Mono. */

:root {
  --ink: #17241d;
  --paper: #fcfbf7;
  --green: #1d5c3d;
  --green-deep: #14432c;
  --green-tint: #e8efe7;
  --manila: #f3e3b4;
  --manila-edge: #d9c084;
  --stamp: #c03a2b;
  --line: #e2ddcc;
  --muted: #5c675f;
  --radius: 10px;
  --pad: clamp(1.1rem, 4vw, 2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Public Sans", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.6em; }
h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
a { color: var(--green); }

main > section { padding: clamp(3rem, 7vw, 5rem) var(--pad); }

/* ---------- top bar ---------- */
.topbar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  border-bottom: 3px solid var(--green);
  background: var(--paper);
}
.wordmark {
  font-family: "Alfa Slab One", serif;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
}
.wordmark span { color: var(--green); }
.topbar-tag {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar-tag strong { color: var(--stamp); }
.topbar-signin {
  margin-left: auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  color: var(--green);
  text-decoration: none;
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
}
.topbar-signin:hover { background: var(--green); color: #fff; }
@media (max-width: 560px) { .topbar-tag { display: none; } }

/* ---------- hero ---------- */
.hero {
  background: var(--green);
  color: #f5f8f3;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #bcd6c3;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: "Alfa Slab One", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  letter-spacing: 0.005em;
}
.hero-sub { font-size: 1.1rem; max-width: 34em; color: #e4ede2; }
.hero-sub strong { color: #fff; }
.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  color: #d5e4d5;
}
.hero-points li { padding-left: 1.4em; position: relative; margin-bottom: 0.45em; }
.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--manila);
  font-weight: 700;
}

/* ---------- the claim ticket (signature element) ---------- */
.ticket {
  position: relative;
  background: var(--manila);
  color: var(--ink);
  border: 1px solid var(--manila-edge);
  border-radius: 6px;
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 14px 30px rgba(10, 30, 18, 0.35);
}
/* perforated tear-off edge */
.ticket::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 1.1rem;
  right: 1.1rem;
  border-top: 2px dashed rgba(23, 36, 29, 0.35);
}
.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 1.1rem 0 0.4rem;
}
.ticket-brand, .ticket-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  color: rgba(23, 36, 29, 0.75);
}
.ticket-stamp {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--stamp);
  border: 2px solid var(--stamp);
  border-radius: 4px;
  padding: 0.2em 0.55em;
  transform: rotate(-3deg);
  margin: 0.2rem 0 1rem;
}
.ticket-field { display: block; margin-bottom: 0.9rem; }
.ticket-field span {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
  color: rgba(23, 36, 29, 0.8);
}
.ticket-field em { text-transform: none; font-style: normal; opacity: 0.7; }
/* Hint under a field (not inside the label's span), e.g. the business
   description — kept quiet so it reads as help, not as another question. */
.ticket-hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  line-height: 1.4;
  opacity: 0.65;
}
.ticket-field input,
.ticket-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fffdf6;
  border: 1px solid var(--manila-edge);
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
}
.ticket-field input:focus,
.ticket-field textarea:focus {
  outline: 3px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}
.ticket-field textarea { resize: vertical; }
.cf-turnstile { margin: 0.4rem 0 0.9rem; }
.ticket-submit {
  display: block;
  width: 100%;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  color: #fff;
  background: var(--stamp);
  border: 0;
  border-radius: 8px;
  padding: 0.95rem 1rem;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.ticket-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(120, 30, 20, 0.35); }
.ticket-submit:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.ticket-note {
  font-size: 0.86rem;
  color: rgba(23, 36, 29, 0.75);
  margin: 0.7rem 0 0;
  text-align: center;
}
.form-note { font-size: 0.9rem; margin: 0.6rem 0 0; color: var(--stamp); text-align: center; }

/* honeypot: visually gone, present for bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* success state: the ticket gets stamped */
.ticket.is-received .ticket-stamp,
.ticket.is-received .ticket-field,
.ticket.is-received .cf-turnstile,
.ticket.is-received .ticket-submit,
.ticket.is-received .ticket-note,
.ticket.is-received .form-note { display: none; }
.ticket-received { text-align: center; padding: 1.2rem 0 0.6rem; }
.received-stamp {
  display: inline-block;
  font-family: "Alfa Slab One", serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--stamp);
  border: 4px solid var(--stamp);
  border-radius: 8px;
  padding: 0.05em 0.4em;
  transform: rotate(-7deg);
  animation: stamp-in 260ms cubic-bezier(0.2, 1.4, 0.4, 1) both;
}
@keyframes stamp-in {
  from { transform: rotate(-7deg) scale(2.2); opacity: 0; }
  to   { transform: rotate(-7deg) scale(1); opacity: 1; }
}

/* ---------- steps ---------- */
.steps { max-width: 1080px; margin: 0 auto; }
.steps-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }
.stub {
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.3rem 1.3rem 0.6rem;
  background: #fff;
}
.stub-no {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.stub h3 { font-size: 1.1rem; font-family: "Archivo", system-ui, sans-serif; font-weight: 900; }
.stub p { color: var(--muted); font-size: 0.98rem; }

/* ---------- workbench: before/after ---------- */
.bench { background: var(--green-tint); }
.bench h2, .bench .section-sub { max-width: 1080px; margin-left: auto; margin-right: auto; }
.section-sub { color: var(--muted); margin-bottom: 1.6rem; }
.compare {
  --pos: 50%;
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 1800 / 1241; /* the exact shape of the screenshots: nothing cropped */
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 40px rgba(23, 36, 29, 0.14);
  user-select: none;
  touch-action: pan-y;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
/* the "before" sits on top, full size, and is simply clipped at --pos */
.compare-before-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.compare-handle { position: absolute; inset: 0; }
.compare-handle input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}
.compare-grip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 0;
  pointer-events: none;
}
.compare-grip::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  width: 4px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(23, 36, 29, 0.18), 0 0 12px rgba(0, 0, 0, 0.25);
}
.compare-knob {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--stamp);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding-left: 0.12em; /* optical centering of the two arrows */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #fff, 0 8px 20px rgba(0, 0, 0, 0.35);
}
.compare-handle input[type="range"]:focus-visible + .compare-grip .compare-knob {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.compare-labels {
  max-width: 1080px;
  margin: 0.8rem auto 0;
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-labels span {
  background: var(--ink);
  color: #fff;
  padding: 0.3em 0.7em;
  border-radius: 4px;
}
.compare-labels .tag-a::before { content: "\25C0\00A0\00A0"; }
.compare-labels .tag-b { background: var(--green); }
.compare-labels .tag-b::after { content: "\00A0\00A0\25B6"; }

/* ---------- spec ---------- */
.spec { max-width: 1080px; margin: 0 auto; }
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem 2rem;
  grid-template-columns: 1fr;
  color: var(--muted);
}
@media (min-width: 760px) { .spec-list { grid-template-columns: 1fr 1fr; } }
.spec-list li { padding-left: 1.5em; position: relative; }
.spec-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.spec-list strong { color: var(--ink); }

/* ---------- price ---------- */
.price {
  background: var(--green-deep);
  color: #eef3ec;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
}
@media (min-width: 760px) {
  .price {
    grid-template-columns: auto 1fr;
    justify-items: start;
    padding-left: max(var(--pad), calc((100vw - 1080px) / 2));
    padding-right: max(var(--pad), calc((100vw - 1080px) / 2));
  }
}
.pricetag {
  background: var(--manila);
  color: var(--ink);
  border-radius: 8px;
  padding: 1.6rem 2rem 1.2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}
/* the price tag's string hole */
.pricetag::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}
.pricetag-amount {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(3.4rem, 9vw, 5rem);
  line-height: 1;
  margin: 0.4rem 0 0.2rem;
}
.pricetag-terms {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.price-copy { max-width: 34em; }
.price-copy h2 { color: #fff; }
.price-copy p { color: #d7e2d4; }
.btn-jump {
  display: inline-block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  color: var(--ink);
  background: var(--manila);
  text-decoration: none;
  border-radius: 8px;
  padding: 0.8rem 1.4rem;
  transition: transform 120ms ease;
}
.btn-jump:hover { transform: translateY(-2px); }
.btn-jump:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq summary {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.02rem;
  padding: 0.7rem 0;
  cursor: pointer;
}
.faq summary:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.faq p { color: var(--muted); margin: 0.2rem 0 0.9rem; }

/* ---------- add-on: own domain + email ---------- */
.addon { background: var(--green-tint); }
.addon-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.8rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 820px) {
  .addon-inner { grid-template-columns: 1fr auto; }
}
.addon .eyebrow { color: var(--green); margin-bottom: 0.7rem; }
.addon h2 { margin-bottom: 0.5rem; }
.addon-lead { color: var(--muted); margin: 0 0 1.2rem; max-width: 36em; }
.addon .mono { font-family: "IBM Plex Mono", monospace; font-size: 0.92em; color: var(--ink); }
.addon-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; max-width: 36em; }
.addon-list li { padding-left: 1.5em; position: relative; color: var(--muted); line-height: 1.55; }
.addon-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.addon-list strong { color: var(--ink); }
/* a second, smaller tag from the same drawer as the $49 one */
.addon-tag {
  background: var(--manila);
  color: var(--ink);
  border-radius: 8px;
  padding: 1.7rem 2.2rem 1.3rem;
  text-align: center;
  position: relative;
  min-width: 16rem;
  justify-self: center;
  box-shadow: 0 12px 26px rgba(23, 36, 29, 0.18);
  transform: rotate(2deg);
}
.addon-tag::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green-tint);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}
.addon-tag p { margin: 0; }
.addon-tag-label,
.addon-tag-terms {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.addon-tag-amount {
  font-family: "Alfa Slab One", serif;
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  line-height: 1;
  margin: 0.45rem 0 0.35rem !important;
}
.addon-tag-note {
  margin-top: 0.7rem !important;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--manila-edge);
  font-size: 0.86rem;
  color: var(--muted);
}

/* ---------- footer ---------- */
.footer {
  border-top: 3px solid var(--green);
  padding: 1.6rem var(--pad) 2.2rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}
.footer p { margin: 0.2em 0; }
