/* ============================================================
   TidySites — "The Job Sheet"
   A carbon-copy quote pad turned into a website.
   Layers: PRINTED (Archivo) · TYPED (Courier Prime) · PEN (Caveat, Bic blue)
   ============================================================ */

:root {
  --paper: #F6F2E9;
  --sheet: #FFFDF7;
  --ink: #1F2A37;
  --pen: #2148C0;
  --red: #C2382B;
  --red-dark: #A92E23;
  --canary: #F7E3A4;
  --pink: #F4D5CC;
  --bp: #1E3D5C;
  --bp-line: #2F5577;
  --graphite: #5C6470;
  --grid: #C9D6E4;
  --green: #2E7D4F;
  --amber: #E59500;
  --cardboard: #C8B898;
  --shadow-sheet: 0 1px 2px rgba(31, 42, 55, .08), 0 10px 28px rgba(31, 42, 55, .10);
  --shadow-sheet-lift: 0 2px 4px rgba(31, 42, 55, .10), 0 16px 38px rgba(31, 42, 55, .14);
  --f-disp: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --f-body: 'IBM Plex Sans', system-ui, sans-serif;
  --f-mono: 'Courier Prime', 'Courier New', monospace;
  --f-hand: 'Caveat', cursive;
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
  --ease-sheet: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(201, 214, 228, .55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 214, 228, .55) 1px, transparent 1px),
    linear-gradient(rgba(220, 229, 238, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 229, 238, .38) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 8px 8px, 8px 8px;
  overflow-x: hidden;
}

img, svg { display: inline-block; vertical-align: middle; }
[hidden] { display: none !important; }
a { color: var(--pen); }
:focus-visible { outline: 2.5px solid var(--pen); outline-offset: 3px; border-radius: 2px; }

.sr-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--sheet); color: var(--ink); padding: .6em 1em;
  font-family: var(--f-mono); box-shadow: var(--shadow-sheet);
}
.skip-link:focus { left: 8px; }

.wrap { max-width: 1240px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.wrap--narrow { max-width: 920px; }

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }

.courier { font-family: var(--f-mono); }
.caveat { font-family: var(--f-hand); font-weight: 600; }
.pen-ink { color: var(--pen); }
.svg-courier { font-family: 'Courier Prime', 'Courier New', monospace; letter-spacing: .04em; }

/* ---------- Typography ---------- */
.hero-h1 {
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: clamp(2.35rem, 5.2vw, 4.3rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin: .4em 0 .35em;
}
.h2 {
  font-family: var(--f-disp);
  font-weight: 900;
  font-size: clamp(1.75rem, 3.6vw, 2.7rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: .5em 0 .4em;
  max-width: 26ch;
}
.h2--bp { color: var(--sheet); }
.prose p { max-width: 62ch; margin: 0 0 1.1em; }
.prose--bp { color: var(--sheet); }
.prose--bp p { color: #E7EEF5; }

/* ---------- Pen layer (Bic blue, drawn) ---------- */
.pen path {
  fill: none;
  stroke: var(--pen);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset .8s cubic-bezier(.4, 0, .2, 1) .25s;
}
.pen-arrow--amber path { stroke: var(--amber); }
.in-view .pen path,
body.loaded .hero .pen path { stroke-dashoffset: 0; }

.u-pen { position: relative; display: inline-block; }
.pen-underline { position: absolute; left: -1%; right: -1%; bottom: -.1em; width: 102%; height: .32em; }
.pen-circle { position: absolute; inset: -55% -14%; width: 128%; height: 210%; pointer-events: none; }

.pen-note { font-size: 1.45rem; color: var(--pen); line-height: 1.25; }
.pen-note--big { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-top: 1rem; display: block; }
.pen-note--chalk { color: #EAF2F9; text-align: center; display: block; margin-top: 2.2rem; }
.pen-note--between { align-self: center; text-align: center; }
.pen-note--board { text-align: center; margin-top: 1.6rem; }

.link-pen {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  background-image: linear-gradient(var(--pen), var(--pen));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 100%;
  padding-bottom: 2px;
}
.link-pen:hover { color: var(--pen); background-size: 100% 3px; }

/* ---------- Sheets (paper) ---------- */
.sheet {
  background: var(--sheet);
  border-radius: 2px;
  box-shadow: var(--shadow-sheet);
  position: relative;
}
.holes { padding-left: 44px !important; }
.holes::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 20px;
  background-image: radial-gradient(circle 6px at 10px 28px, var(--paper) 5px, rgba(31, 42, 55, .14) 6px, transparent 7px);
  background-size: 20px 56px;
  background-repeat: repeat-y;
  pointer-events: none;
}

/* ---------- Leaders & checkboxes ---------- */
.leader {
  flex: 1 1 24px;
  min-width: 16px;
  border-bottom: 2px dotted rgba(92, 100, 112, .5);
  align-self: flex-end;
  margin: 0 .6em .35em;
}
.cb { width: 20px; height: 20px; flex: 0 0 20px; }
.cb-box { fill: var(--sheet); stroke: var(--graphite); stroke-width: 1.5; }
.cb-tick {
  fill: none;
  stroke: var(--pen);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset .24s ease-out;
}
.tick-list li.in-view .cb-tick,
.spec-row.in-view .cb-tick,
.register.in-view .cb-tick,
.register-blank.in-view .cb-tick,
.faq-row.open .cb-tick { stroke-dashoffset: 0; }
.register.in-view .reg-row .cb-tick { transition-delay: calc(var(--i, 0) * 90ms); }

.icon { width: 24px; height: 24px; flex: 0 0 24px; color: var(--ink); }
.icon use { stroke: currentColor; }
.icon { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Tape ---------- */
.tape {
  display: inline-block;
  background: rgba(239, 233, 218, .85);
  box-shadow: 0 1px 3px rgba(31, 42, 55, .14);
  clip-path: polygon(0 10%, 3% 0, 97% 4%, 100% 16%, 99% 86%, 96% 100%, 4% 96%, 1% 86%);
  transform: rotate(-1.2deg);
}
.tape--eyebrow {
  padding: .4em 1.1em;
  font-size: .8rem;
  letter-spacing: .14em;
  color: var(--ink);
  margin-bottom: .4rem;
}
.tape--label {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  padding: .25em .8em;
  font-size: .62rem;
  letter-spacing: .1em;
  z-index: 2;
  white-space: nowrap;
}
.tape--tl, .tape--br { position: absolute; width: 70px; height: 22px; z-index: 3; }
.tape--tl { top: -10px; left: -18px; transform: rotate(-38deg); }
.tape--br { bottom: -8px; right: -16px; transform: rotate(-35deg); }

/* ---------- Stamps ---------- */
.stamp {
  display: inline-block;
  position: relative;
  font-family: var(--f-disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  border: 2.5px solid currentColor;
  border-radius: 7px;
  padding: .28em .65em;
  font-size: 1.25rem;
  line-height: 1.15;
  transform: rotate(-2deg);
  background: transparent;
}
.stamp::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  opacity: .85;
  pointer-events: none;
}
.stamp--mini { font-size: .78rem; padding: .3em .7em; border-width: 2px; }
.stamp--mini::after { inset: 2.5px; border-width: 1px; }
.stamp--verdict { transform: rotate(-8deg); position: absolute; right: 18px; bottom: 16px; }
.stamp--angle { transform: rotate(3deg); margin-top: 1rem; }
.stamp--received { color: var(--green); transform: rotate(-3deg); }

.stamp-approved {
  position: absolute;
  right: -16px; bottom: -22px;
  width: clamp(96px, 11vw, 132px);
  height: auto;
  color: var(--red);
  transform: rotate(-4deg);
}
.stamp-approved text {
  font-family: var(--f-disp);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 2.5px;
  fill: currentColor;
}

/* stamp slam (driven by .stamped from JS) */
html.js .stamp-slam {
  opacity: 0;
  transform: scale(1.6) rotate(-9deg);
}
html.js .stamp-slam.stamped {
  opacity: 1;
  transform: scale(1) rotate(-2deg);
  transition: transform .32s var(--ease-pop) var(--d, 0s), opacity .18s linear var(--d, 0s);
}
html.js .stamp--verdict.stamp-slam.stamped { transform: scale(1) rotate(-8deg); }
html.js .stamp--angle.stamp-slam.stamped { transform: scale(1) rotate(3deg); }
html.js .stamp-approved.stamp-slam.stamped { transform: scale(1) rotate(-4deg); }

/* ---------- Stamp buttons (primary CTAs) ---------- */
.stamp-btn {
  display: inline-block;
  position: relative;
  font-family: var(--f-disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.05rem;
  color: var(--red);
  text-decoration: none;
  border: 2.5px solid currentColor;
  border-radius: 8px;
  padding: .62em 1.15em;
  background: var(--sheet);
  transform: rotate(-2deg);
  box-shadow: 0 4px 0 rgba(169, 46, 35, .35);
  cursor: pointer;
  transition: color .15s, transform .15s, box-shadow .15s;
}
.stamp-btn::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid currentColor;
  border-radius: 5px;
  pointer-events: none;
}
.stamp-btn:hover { color: var(--red-dark); transform: rotate(-2deg) translateY(-1px); }
.stamp-btn:active { transform: rotate(-2deg) translateY(2px) scale(.985); box-shadow: 0 1px 0 rgba(169, 46, 35, .35); }
.stamp-btn--small { font-size: .9rem; padding: .5em .9em; }
.stamp-btn--big { font-size: 1.3rem; padding: .7em 1.4em; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(28px, 4vw, 40px); }

/* ---------- Frozen-pane quick header ---------- */
/* Mobile: one 40px graph square, logo only (the dash carries the quote CTA).
   Desktop: two squares (80px) with the Quote now stamp button. */
.freeze-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 40px; /* one graph square */
  z-index: 88;
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(201, 214, 228, .55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 214, 228, .55) 1px, transparent 1px),
    linear-gradient(rgba(220, 229, 238, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 229, 238, .38) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px, 8px 8px, 8px 8px;
  border-bottom: 2px solid rgba(31, 42, 55, .25);
  box-shadow: 0 6px 18px rgba(31, 42, 55, .08);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s;
}
.freeze-bar.on { transform: translateY(0); visibility: visible; }
.freeze-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
  height: 100%;
}
.freeze-brand img { height: 26px; width: auto; display: block; }
.freeze-bar .stamp-btn--small { display: none; }
html { scroll-padding-top: 52px; }
@media (min-width: 900px) {
  .freeze-bar { height: 80px; /* two graph squares */ }
  .freeze-brand img { height: 44px; }
  .freeze-bar .stamp-btn--small { display: inline-block; }
  html { scroll-padding-top: 96px; }
}
.hero-grid {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 78vh;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 55fr 45fr; }
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .4em 1.5em;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--graphite);
  border-bottom: 1.5px solid rgba(31, 42, 55, .25);
  padding-bottom: .55em;
  margin: 0;
}
.form-row .caveat { font-size: 1.15rem; }
.brand-logo { height: 64px; width: auto; display: block; }
.form-row-right { margin-left: auto; align-self: flex-end; }
@media (max-width: 720px) {
  .brand-logo { height: 48px; }
}
.hero-sub { font-size: 1.125rem; color: var(--graphite); max-width: 54ch; margin: 0 0 1.4em; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2em 1.6em; margin-bottom: 1.4em; }
.hero-support { font-size: .82rem; color: var(--graphite); letter-spacing: .04em; margin: 0 0 1.4em; }
.badge-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .7em;
  padding: 0;
  margin: 0;
}

/* hero art */
.hero-art { position: relative; }
.pad-stack { position: relative; max-width: 440px; margin-inline: auto; }
.pad-ghost {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  box-shadow: var(--shadow-sheet);
}
.pad-ghost--canary { background: var(--canary); transform: rotate(-1.4deg) translate(-7px, 6px); }
.pad-ghost--pink { background: var(--pink); transform: rotate(2deg) translate(9px, 12px); }
.pad-main {
  transform: rotate(1.5deg);
  padding: 56px 26px 30px;
}
.pad-clip {
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 64px;
}
.pad-head {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .5em;
  margin: 0 0 .9em;
}
.pad-lines { list-style: none; margin: 0; padding: 0; }
.pad-lines li {
  display: flex;
  align-items: baseline;
  font-size: .94rem;
  padding: .42em 0;
  border-bottom: 1px solid rgba(31, 42, 55, .08);
}
.pad-lines .val { font-weight: 700; }
.pad-lines .val--inc { color: var(--green); }
.typing .pad-lines .val { opacity: 0; }
.typing .pad-lines li.done .val { opacity: 1; transition: opacity .25s; }
.type.cursor::after {
  content: '';
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--ink);
  margin-left: 2px;
  vertical-align: -2px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.pad-total {
  border-top: 2px solid var(--ink);
  margin-top: .9em;
  padding-top: .7em;
  font-size: 1.02rem;
}

.phone-wrap {
  position: absolute;
  right: -10px; bottom: -56px;
  width: 150px;
  margin: 0;
  filter: drop-shadow(0 10px 22px rgba(31, 42, 55, .22));
}
.phone { width: 100%; height: auto; }

/* phone screen loop + ringing (runs only with .anim from JS) */
.phone-screen { transform: translateY(0); }
.phone.anim .phone-screen { animation: phoneScroll 14s ease-in-out infinite; }
@keyframes phoneScroll {
  0%, 12% { transform: translateY(0); }
  44%, 62% { transform: translateY(-180px); }
  94%, 100% { transform: translateY(0); }
}
.ring { opacity: 0; transform-box: fill-box; transform-origin: center; }
.phone.anim .ring--1 { animation: ringPulse 4s ease-out infinite; }
.phone.anim .ring--2 { animation: ringPulse 4s ease-out 2s infinite; }
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .8; }
  70%, 100% { transform: scale(2.1); opacity: 0; }
}

/* ---------- 02 · Compare ---------- */
.compare {
  display: grid;
  gap: 22px;
  margin-block: 2.2rem;
  align-items: start;
}
@media (min-width: 860px) {
  .compare { grid-template-columns: 1fr auto 1fr; }
}
.compare-sheet { padding: 26px 28px 30px; transform: rotate(-1.2deg); }
.compare-sheet + .compare-sheet,
.compare-sheet:last-child { transform: rotate(1deg); }
.compare-head {
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .85rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .5em;
  margin: 0 0 .8em;
}
.strike-list, .tick-list { list-style: none; margin: 0; padding: 0; }
.strike-list li, .tick-list li {
  padding: .5em 0;
  border-bottom: 1px solid rgba(31, 42, 55, .08);
  display: flex;
  align-items: center;
  gap: .65em;
  font-family: var(--f-mono);
  font-size: .98rem;
}
.strike span { position: relative; }
.strike span::after {
  content: '';
  position: absolute;
  left: -2%; top: 54%;
  width: 104%; height: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0) rotate(-1.2deg);
  transform-origin: left center;
}
.compare-sheet.in-view .strike span::after {
  transform: scaleX(1) rotate(-1.2deg);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1) calc(.35s + var(--i, 0) * .22s);
}
.compare-sheet--agency { padding-bottom: 64px; }

/* ---------- 03 · Spec sheet ---------- */
.spec-layout {
  display: grid;
  gap: 36px;
  margin-top: 2.2rem;
  align-items: start;
}
@media (min-width: 1000px) {
  .spec-layout { grid-template-columns: 1fr 230px; }
}
.spec-sheet { padding: 30px 32px 0; max-width: 880px; }
.spec-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .3em 1em;
  font-weight: 700;
  letter-spacing: .1em;
  font-size: .85rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .55em;
  margin: 0 0 .4em;
}
.spec-list { list-style: none; margin: 0; padding: 0; counter-reset: spec; }
.spec-row {
  display: flex;
  align-items: center;
  gap: .8em;
  padding: .7em 0;
  border-bottom: 1px solid rgba(31, 42, 55, .1);
}
.spec-num { color: var(--graphite); font-size: .85rem; flex: 0 0 auto; }
.spec-item { display: flex; flex-direction: column; min-width: 0; max-width: 46ch; }
.spec-item strong { font-weight: 600; font-size: 1rem; }
.spec-item small { color: var(--graphite); font-size: .84rem; line-height: 1.45; }
.incl { color: var(--green); font-weight: 700; font-size: .8rem; letter-spacing: .08em; flex: 0 0 auto; }
.spec-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  flex-wrap: wrap;
  border-top: 2.5px solid var(--ink);
  margin-top: .4em;
  padding: 1em 0 .4em;
}
.spec-total p { margin: 0; font-size: 1.15rem; }
.spec-sheet .pen-note { display: block; margin: .4em 0 1.2em; }

.tearoff { margin-inline: -32px; margin-left: -44px; position: relative; }
.perf-line {
  display: block;
  border-top: 3px dashed rgba(92, 100, 112, .55);
  position: relative;
  margin: 0 0 0;
}
.scissors {
  position: absolute;
  left: 26px; top: -13px;
  width: 22px; height: 22px;
  color: var(--graphite);
  background: var(--sheet);
  transition: transform .25s;
}
.tearoff:hover .scissors { transform: translateX(10px); }
.tear-stub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 1em;
  font-family: var(--f-disp);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--red);
  text-decoration: none;
  transform-origin: top left;
  transition: transform .25s var(--ease-sheet);
}
.tear-stub:hover, .tear-stub:focus-visible { transform: rotate(1.4deg) translateY(-2px); }

.phone-side { position: relative; margin: 24px auto 0; width: 200px; }
.phone-caption { display: block; text-align: center; font-size: .78rem; color: var(--graphite); letter-spacing: .08em; margin-top: .6em; }

/* ---------- 04 · Survey ---------- */
.finding-list {
  list-style: none;
  margin: 1.6rem 0 2.4rem;
  padding: 0;
  display: grid;
  gap: .55em;
  max-width: 62ch;
}
.finding-list li { display: flex; gap: .7em; align-items: baseline; }
.finding-mark { color: var(--red); font-weight: 700; flex: 0 0 auto; }

.survey {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 940px) {
  .survey { grid-template-columns: 1fr 1fr; }
}
.serp { padding: 22px 24px; transform: rotate(-.8deg); }
.serp-bar {
  display: flex;
  align-items: center;
  gap: .6em;
  border: 2px solid rgba(31, 42, 55, .25);
  border-radius: 999px;
  padding: .5em 1em;
  margin-bottom: 1.1em;
}
.serp-bar .icon { width: 18px; height: 18px; flex-basis: 18px; color: var(--graphite); }
.serp-q { font-family: var(--f-mono); font-size: .95rem; }
.serp-caret {
  width: 2px; height: 1.05em;
  background: var(--ink);
  animation: blink 1s steps(1) infinite;
}
.serp-caret.off { display: none; }
.serp-row {
  display: flex;
  gap: .8em;
  padding: .8em .2em;
  border-bottom: 1px solid rgba(31, 42, 55, .08);
}
.serp-fav { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; background: #D8DDE3; }
.serp-bars { display: grid; gap: 5px; flex: 1; align-content: start; padding-top: 3px; }
.bar { display: block; height: 8px; border-radius: 3px; background: #9AA3AD; }
.bar.thin { height: 5px; background: #C2C9D1; }
.w38 { width: 38%; } .w40 { width: 40%; } .w45 { width: 45%; } .w46 { width: 46%; } .w48 { width: 48%; } .w50 { width: 50%; }
.w52 { width: 52%; } .w55 { width: 55%; } .w58 { width: 58%; } .w60 { width: 60%; } .w62 { width: 62%; } .w64 { width: 64%; }
.w65 { width: 65%; } .w66 { width: 66%; } .w68 { width: 68%; } .w70 { width: 70%; } .w72 { width: 72%; } .w74 { width: 74%; }
.w75 { width: 75%; } .w76 { width: 76%; } .w78 { width: 78%; } .w80 { width: 80%; } .w85 { width: 85%; } .w88 { width: 88%; } .w90 { width: 90%; }

.serp-slot {
  position: relative;
  margin-top: 1em;
  min-height: 64px;
  border: 2.5px dashed var(--pen);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
}
.in-view .serp-slot { animation: dashCrawl 3s linear infinite; }
@keyframes dashCrawl { to { background-position: 24px 0; } }
.serp-slot .pen-note { font-size: 1.35rem; }
.serp-slot .pen-arrow { width: 64px; height: 30px; }

/* before / after slider */
.ba { --pos: 50%; }
.ba-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sheet);
  aspect-ratio: 7 / 5;
  background: var(--sheet);
}
.ba-before, .ba-after { position: absolute; inset: 0; }
.ba-after { clip-path: inset(0 0 0 var(--pos)); }

.old-site { height: 100%; background: #DCD6C4; padding: 8px; font-size: 10px; overflow: hidden; }
.old-head { background: #8A8A8A; padding: 8px; margin-bottom: 6px; }
.old-head .bar { background: #C9C9C9; }
.old-body { display: grid; gap: 5px; padding: 4px; background: #E8E3D2; height: 100%; position: relative; }
.old-body .bar { background: #A8A294; }
.old-imgs { display: flex; gap: 5px; margin-block: 4px; }
.old-imgs i { width: 30%; aspect-ratio: 4/3; background: #B5AE9C; display: block; }
.old-copy { color: #6E6856; font-size: .68rem; margin: 0; }
.old-date {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: .7rem;
  color: #6E6856;
  border: 2px solid var(--pen);
  border-radius: 50%;
  padding: .3em .5em;
  transform: rotate(-6deg);
}

.new-site { height: 100%; background: var(--sheet); display: flex; flex-direction: column; font-size: 10px; }
.new-head { background: #16324F; color: var(--sheet); padding: 10px 12px; font-size: .66rem; letter-spacing: .08em; }
.new-hero { padding: 12px; display: grid; gap: 6px; }
.new-hero .bar { background: var(--graphite); }
.new-call {
  margin: 0 12px;
  background: var(--green);
  color: var(--sheet);
  text-align: center;
  border-radius: 6px;
  padding: 7px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.new-serp { margin: 10px 12px 12px; background: #EDF1F5; border-radius: 6px; padding: 9px; }
.new-serp-q { margin: 0 0 6px; font-size: .62rem; color: var(--graphite); border: 1px solid #C5CFD9; border-radius: 999px; padding: 3px 8px; display: inline-block; background: #FFF; }
.new-serp-hit { background: #FFF; border-radius: 4px; padding: 6px 8px; border-left: 3px solid var(--green); }
.new-serp-stars { color: var(--amber); font-size: .62rem; letter-spacing: .1em; }
.new-serp-title { margin: 2px 0 4px; font-size: .64rem; font-weight: 700; color: #16324F; }
.new-serp-row { padding: 6px 8px 0; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  width: 4px;
  background: var(--ink);
  pointer-events: none;
}
.level {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 120px;
  filter: drop-shadow(0 2px 6px rgba(31, 42, 55, .35));
}
.level-bubble { transform: translateX(var(--bub, 0px)); transition: transform .2s ease-out; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  touch-action: none;
}
.ba-range:focus-visible ~ .ba-tag--a { outline: 2.5px solid var(--pen); }
.ba-tag {
  position: absolute;
  top: 10px;
  font-size: .62rem;
  letter-spacing: .12em;
  background: rgba(31, 42, 55, .82);
  color: var(--sheet);
  padding: .3em .6em;
  border-radius: 3px;
  pointer-events: none;
}
.ba-tag--b { left: 10px; }
.ba-tag--a { right: 10px; }
.ba-caption { font-size: .95rem; color: var(--graphite); max-width: 48ch; margin-top: .9em; }

.cta-line { margin-top: 2.6rem; }

/* ---------- 05 · Why me ---------- */
.why-layout {
  display: grid;
  gap: 40px;
  align-items: start;
  margin-top: 1.4rem;
}
@media (min-width: 940px) {
  .why-layout { grid-template-columns: 1fr 380px; }
}
.id-sheet { padding: 26px 28px 70px; transform: rotate(1deg); }
.id-head {
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .85rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .5em;
  margin: 0 0 1em;
}
.id-fields { margin: 0; }
.id-field { padding: .55em 0; border-bottom: 1px solid rgba(31, 42, 55, .12); }
.id-field dt {
  font-family: var(--f-disp);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .14em;
  color: var(--graphite);
}
.id-field dd { margin: .15em 0 0; font-size: .95rem; }
.id-field dd.caveat { font-size: 1.35rem; color: var(--pen); }
.ledger { margin-top: 1.3em; background: rgba(220, 229, 238, .25); border-radius: 4px; padding: .8em 1em; }
.ledger-row { display: flex; align-items: baseline; margin: 0; padding: .25em 0; font-size: .82rem; }
.ledger-row--total { border-top: 1.5px solid var(--ink); margin-top: .3em; padding-top: .5em; }
.ledger-tick { color: var(--green); font-weight: 700; }

/* ---------- 06 · Blueprint ---------- */
.section--blueprint {
  background-color: var(--bp);
  background-image:
    linear-gradient(rgba(47, 85, 119, .8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 85, 119, .8) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--sheet);
}
.torn { display: block; width: 100%; height: 12px; }
.torn--top { position: absolute; top: -11px; left: 0; }
.torn--bottom { position: absolute; bottom: -11px; left: 0; }
.bp-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4em 1.5em;
  font-size: .8rem;
  letter-spacing: .12em;
  color: #9FB4C8;
  border-bottom: 1.5px solid rgba(255, 253, 247, .3);
  padding-bottom: .5em;
  margin: 0 0 1em;
}
.bp-layout {
  display: grid;
  gap: 30px;
  margin-top: 2.4rem;
  align-items: center;
}
@media (min-width: 1020px) {
  .bp-layout { grid-template-columns: 1fr 280px 1fr; }
}
.bp-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.3em; }
.bp-item { display: flex; gap: .9em; align-items: flex-start; }
.bp-item .icon { color: var(--sheet); margin-top: 2px; }
.bp-num { color: #9FB4C8; font-size: .85rem; padding-top: 3px; }
.bp-item h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .05em;
  margin: 0 0 .2em;
}
.bp-item p { margin: 0; font-size: .9rem; color: #C9D7E4; max-width: 36ch; border-bottom: 1px dashed rgba(255, 253, 247, .25); padding-bottom: .8em; }
.bp-wireframe { margin: 0; text-align: center; }
.bp-wireframe svg { width: min(260px, 70vw); height: auto; }
.bp-wireframe figcaption { font-size: .7rem; letter-spacing: .12em; color: #9FB4C8; margin-top: .8em; }

/* ---------- 07 · Register ---------- */
.section--canary { background: rgba(247, 227, 164, .35); }
.register {
  display: grid;
  gap: 0 56px;
  margin-top: 1.6rem;
}
@media (min-width: 760px) {
  .register { grid-template-columns: 1fr 1fr; }
}
.register-col { list-style: none; margin: 0; padding: 0; }
.reg-row {
  display: flex;
  align-items: center;
  gap: .8em;
  padding: .65em .2em;
  border-bottom: 1.5px solid rgba(31, 42, 55, .16);
  font-weight: 500;
}
.register-sub {
  margin: 2rem 0 0;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--graphite);
}
.register--also { margin-top: .4rem; }
.register-blank { margin-top: 2.2rem; max-width: 560px; }
.reg-row--blank {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--f-hand);
  font-weight: 600;
  font-size: 1.5rem;
  border-bottom: 1.5px solid rgba(31, 42, 55, .3);
}
.reg-row--blank .u-pen { color: var(--pen); }
.register-blank .pen-note { margin: .5em 0 0; }

/* ---------- 08 · Pricing ---------- */
.pricing-fan {
  display: grid;
  gap: 26px;
  margin-top: 2.4rem;
  align-items: stretch;
}
@media (min-width: 960px) {
  .pricing-fan { grid-template-columns: 1fr 1.05fr 1fr; }
  html.js .pricing-fan .price-sheet--starter { transform: translateX(calc(100% + 26px)) rotate(0); }
  html.js .pricing-fan .price-sheet--seo { transform: translateX(calc(-100% - 26px)) rotate(0); }
  html.js .pricing-fan.in-view .price-sheet--starter { transform: translateX(0) rotate(-1.5deg); }
  html.js .pricing-fan.in-view .price-sheet--growth { transform: rotate(0); }
  html.js .pricing-fan.in-view .price-sheet--seo { transform: translateX(0) rotate(1.5deg); }
  .pricing-fan .price-sheet { transition: transform .65s var(--ease-sheet), box-shadow .25s; }
}
.price-sheet {
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: .4em;
}
.price-sheet:hover { box-shadow: var(--shadow-sheet-lift); transform: rotate(0) translateY(-4px) !important; }
.price-sheet--growth { background: var(--canary); z-index: 2; }
.price-sheet--seo { background: var(--pink); }
.copy-tab {
  position: absolute;
  top: -10px; right: 14px;
  background: var(--ink);
  color: var(--sheet);
  font-size: .6rem;
  letter-spacing: .12em;
  padding: .35em .7em;
  border-radius: 3px 3px 0 0;
  transform: rotate(1deg);
}
.price-name {
  font-family: var(--f-disp);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin: 0;
}
.price-tag { margin: 0; color: var(--graphite); font-size: .92rem; }
.price-sheet .stamp { align-self: flex-start; margin-block: .5em; }
.price-list { list-style: none; margin: .2em 0 .8em; padding: 0; font-size: .85rem; }
.price-list li {
  padding: .42em 0 .42em 1.5em;
  border-bottom: 1px dotted rgba(31, 42, 55, .22);
  position: relative;
}
.price-list li::before {
  content: '✓';
  position: absolute;
  left: .2em;
  color: var(--green);
  font-weight: 700;
}
.price-note { font-size: .82rem; color: var(--graphite); margin: auto 0 1em; }
.pen-note--pick { position: absolute; top: -34px; left: 14px; display: flex; align-items: center; gap: .3em; }
.pen-note--pick .pen-arrow { width: 56px; height: 26px; transform: rotate(24deg); }
.price-footnote {
  margin-top: 2.2rem;
  font-size: 1.5rem;
  color: var(--pen);
  text-align: center;
}

/* ---------- 09 · Sample board ---------- */
.board { margin-top: 3rem; position: relative; }
.board-hint { display: none; font-size: .78rem; letter-spacing: .1em; color: var(--graphite); margin: 0 0 .6em; }
.board-track {
  list-style: none;
  margin: 0;
  padding: 14px 4px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
  gap: 26px;
}
.concept-card {
  background: var(--sheet);
  box-shadow: var(--shadow-sheet);
  border-radius: 2px;
  padding: 18px 16px 16px;
  position: relative;
  transform: rotate(var(--rot, 0deg));
  transition: transform .25s var(--ease-sheet), box-shadow .25s;
}
.concept-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: var(--shadow-sheet-lift); }
.concept-card h3 { font-family: var(--f-disp); font-size: .98rem; font-weight: 800; margin: .8em 0 .25em; }
.concept-card p { font-size: .82rem; color: var(--graphite); margin: 0; line-height: 1.5; }
.concept-card--live h3 a { color: inherit; text-decoration: none; }
.concept-card--live h3 a::after { content: ""; position: absolute; inset: 0; }
.concept-card--live h3 a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.concept-card--live:focus-within { outline: 2.5px solid var(--pen); outline-offset: 4px; }
.concept-card--live .tape--label { color: var(--green); font-weight: 700; }
.mini-browser { border: 1.5px solid rgba(31, 42, 55, .25); border-radius: 6px; overflow: hidden; }
.mb-bar { display: flex; gap: 4px; padding: 5px 7px; background: #E5E1D5; }
.mb-bar i { width: 7px; height: 7px; border-radius: 50%; background: #B5AF9F; }
.mb-site { font-size: 9px; }
.mb-head { background: var(--mc-head, #16324F); padding: 8px; }
.mb-head--stripes {
  background: repeating-linear-gradient(135deg, #F2C400 0 10px, #1F2A37 10px 20px);
}
.mb-head--stripes .mb-name { background: rgba(31, 42, 55, .85); padding: 2px 5px; border-radius: 2px; }
.mb-name { color: #FFFDF7; font-size: .58rem; letter-spacing: .06em; }
.mb-hero { padding: 9px 8px 7px; display: grid; gap: 5px; justify-items: start; }
.mb-hero .bar { background: var(--graphite); }
.mb-cta { width: 42%; height: 11px; border-radius: 5px; background: var(--mc-cta, var(--red)); }
.mb-stars { color: var(--amber); font-size: .6rem; letter-spacing: .14em; padding: 0 8px; }
.mb-rows { padding: 6px 8px; display: grid; gap: 4px; }
.mb-call {
  background: var(--mc-acc, var(--green));
  color: #FFFDF7;
  font-size: .56rem;
  letter-spacing: .08em;
  text-align: center;
  padding: 6px;
}

/* ---------- 10 · FAQ ---------- */
.faq-sheet { padding: 26px 30px; margin-top: 1.8rem; }
.faq-row { border-bottom: 2px dashed rgba(92, 100, 112, .4); }
.faq-row:last-child { border-bottom: 0; }
.faq-h { margin: 0; }
.faq-h button {
  display: flex;
  align-items: center;
  gap: .8em;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1em .2em;
  cursor: pointer;
  color: var(--ink);
  font: inherit;
}
.faq-num { color: var(--graphite); font-size: .85rem; flex: 0 0 auto; }
.faq-q {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .01em;
  flex: 1;
}
.faq-x { position: relative; width: 16px; height: 16px; flex: 0 0 16px; }
.faq-x::before, .faq-x::after {
  content: '';
  position: absolute;
  background: var(--graphite);
  border-radius: 2px;
  transition: transform .25s;
}
.faq-x::before { left: 0; right: 0; top: 7px; height: 2.5px; }
.faq-x::after { top: 0; bottom: 0; left: 7px; width: 2.5px; }
.faq-row.open .faq-x::after { transform: scaleY(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden; /* keep collapsed answers out of the accessibility tree and tab order */
  transition: grid-template-rows .28s ease, visibility .28s;
}
.faq-row.open .faq-a { grid-template-rows: 1fr; visibility: visible; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  margin: 0 0 1.2em;
  padding: .9em 1.1em;
  background: rgba(247, 227, 164, .35);
  border-radius: 4px;
  font-size: .96rem;
  max-width: 70ch;
}

/* ---------- 11 · Sign-off / quote form ---------- */
.quote-sheet { padding: 30px 34px 34px; margin-top: 2rem; }
.quote-head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .3em 1em;
  font-weight: 700;
  letter-spacing: .1em;
  font-size: .85rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .55em;
  margin: 0 0 1.4em;
}
.hp-field { position: absolute; left: -9999px; }
.form-grid { display: grid; gap: 1.3em; }
@media (min-width: 700px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field--wide { grid-column: 1 / -1; }
}
.field { margin: 0; display: flex; flex-direction: column; gap: .3em; }
.field label {
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--graphite);
}
.field input, .field textarea {
  font-family: var(--f-mono);
  font-size: 1.02rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(31, 42, 55, .35);
  padding: .35em .1em;
  border-radius: 0;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--pen);
  box-shadow: 0 2px 0 0 rgba(33, 72, 192, .25);
}
.field ::placeholder { color: #9AA3AD; opacity: 1; }
.quote-sign {
  display: flex;
  align-items: flex-end;
  gap: 1em;
  flex-wrap: wrap;
  margin-top: 1.8em;
  border-bottom: 1.5px solid rgba(31, 42, 55, .25);
  padding-bottom: .4em;
  font-size: .8rem;
  letter-spacing: .1em;
  color: var(--graphite);
}
.pen-signature { width: 170px; height: 54px; }
.quote-date .caveat { font-size: 1.15rem; }
.quote-actions { display: flex; align-items: center; gap: 1.4em; flex-wrap: wrap; margin-top: 1.6em; }
.stamp--received { font-size: 1.1rem; }
.form-status { min-height: 1.4em; margin: .8em 0 0; font-size: .92rem; color: var(--red-dark); }
.form-status.ok { color: var(--green); }
.form-small { font-size: .85rem; color: var(--graphite); margin: .4em 0 0; }
form.sent .stamp-btn--big { opacity: .35; pointer-events: none; }

.contact-chips { display: flex; flex-wrap: wrap; gap: 1em; margin-top: 1.8rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--sheet);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: .6em 1.2em;
  box-shadow: 0 3px 0 rgba(31, 42, 55, .25);
  transition: transform .15s, box-shadow .15s;
}
.chip:hover { transform: translateY(-2px); box-shadow: 0 5px 0 rgba(31, 42, 55, .25); }
.chip .icon { width: 19px; height: 19px; flex-basis: 19px; }
.chip--wa { border-color: var(--green); color: var(--green); }

/* ---------- Footer ---------- */
.footer {
  background: var(--cardboard);
  padding: 44px 0 110px;
  margin-top: 40px;
}
.footer-inner { position: relative; text-align: center; }
.footer-staple { position: absolute; width: 30px; height: 12px; top: -28px; }
.footer-staple--l { left: 18%; transform: rotate(-4deg); }
.footer-staple--r { right: 18%; transform: rotate(3deg); }
.badge-row--footer { justify-content: center; margin-bottom: 1.6em; }
.badge-row--footer .stamp--mini { color: rgba(169, 46, 35, .85); }
.footer-logo { height: 44px; width: auto; display: block; margin: 0 auto 1em; }
.footer-line { font-size: .85rem; max-width: 60ch; margin: 0 auto .8em; color: var(--ink); }
.footer-small { font-size: .78rem; color: rgba(31, 42, 55, .75); margin: 0; }
.footer-small a { color: inherit; }

/* ---------- Job-sheet navigation ---------- */
.js-nav { position: relative; z-index: 90; }
.nav-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 92;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 58px;
  padding: 0 0 14px;
  background: var(--sheet);
  border: 1px solid rgba(31, 42, 55, .15);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: var(--shadow-sheet);
  cursor: pointer;
}
.nav-clip { width: 54px; height: 32px; margin-top: -8px; }
.nav-tab-label {
  writing-mode: vertical-rl;
  font-family: var(--f-disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: var(--ink);
  padding-block: .4em;
}
.nav-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
}
.nav-dot.pulse { animation: dotPulse .9s ease-out 1; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(194, 56, 43, .55); } 100% { box-shadow: 0 0 0 12px rgba(194, 56, 43, 0); } }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 91;
  background: rgba(31, 42, 55, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.js-nav.open .nav-backdrop { opacity: 1; pointer-events: auto; }

.nav-sheet {
  position: fixed;
  z-index: 95;
  right: 72px;
  top: 50%;
  width: min(320px, 86vw);
  padding: 22px 22px 16px 40px;
  transform: translateY(-50%) translateX(130%) rotate(-1.5deg);
  transition: transform .42s var(--ease-sheet);
  visibility: hidden;
}
.nav-sheet::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 18px;
  background-image: radial-gradient(circle 5px at 9px 24px, var(--paper) 4.2px, rgba(31, 42, 55, .14) 5.2px, transparent 6.2px);
  background-size: 18px 48px;
  background-repeat: repeat-y;
}
.js-nav.open .nav-sheet {
  transform: translateY(-50%) translateX(0) rotate(0);
  visibility: visible;
}
.nav-head {
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .5em;
  margin: 0 0 .5em;
}
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .7em;
  padding: .55em .15em;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid rgba(31, 42, 55, .08);
  min-height: 44px;
}
.nav-num { color: var(--graphite); font-size: .8rem; }
.nav-label { font-family: var(--f-disp); font-weight: 600; font-size: .95rem; }
.nav-link:hover .cb-tick, .nav-link:focus-visible .cb-tick { stroke-dashoffset: 0; }
.nav-row.done .cb-tick { stroke-dashoffset: 0; stroke: var(--graphite); }
.nav-row.current .cb-tick { stroke-dashoffset: 0; stroke: var(--pen); }
.nav-row.current .nav-label { color: var(--pen); }
.nav-row [aria-current="true"] { font-weight: 700; }
.nav-row--quote { margin-top: .6em; }
.nav-link--quote {
  border: 2.5px solid var(--red);
  border-radius: 7px;
  color: var(--red);
  justify-content: center;
  transform: rotate(-2deg);
  font-family: var(--f-disp);
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
}
.nav-link--quote::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1.5px solid var(--red);
  border-radius: 4px;
}
.nav-link--quote .nav-label { font-weight: 800; }
.icon-wa { color: var(--green); }
.nav-foot {
  margin: .9em 0 0;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--graphite);
}
.nav-foot .caveat { font-size: 1.2rem; color: var(--pen); }
.nav-sign-mark { height: 20px; width: 20px; display: inline-block; vertical-align: -5px; margin-left: .45em; }

/* ---------- Mobile dashboard bar ---------- */
.dash {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 94;
  grid-template-columns: 1.1fr .9fr 1.3fr;
  gap: 1px;
  background: linear-gradient(#C7CDD4, #7E868F);
  border-top: 2px solid var(--sheet);
  padding: 1px 1px calc(1px + env(safe-area-inset-bottom));
}
.dash-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  min-height: 54px;
  font-family: var(--f-disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .82rem;
  text-decoration: none;
  background: var(--sheet);
  color: var(--ink);
  border: 0;
  cursor: pointer;
}
.dash-seg .icon { width: 18px; height: 18px; flex-basis: 18px; }
.dash-quote { background: var(--red); color: var(--sheet); font-weight: 800; }
.dash-quote:hover { background: var(--red-dark); }

@media (max-width: 899px) {
  body { padding-bottom: 64px; }
  .nav-tab { display: none; }
  .dash { display: grid; }
  .nav-sheet {
    right: 12px; left: 12px;
    top: auto;
    bottom: calc(72px + env(safe-area-inset-bottom));
    width: auto;
    max-height: 72vh;
    overflow-y: auto;
    transform: translateY(calc(100% + 90px));
  }
  .js-nav.open .nav-sheet { transform: translateY(0) rotate(0); }
  html.nav-lock, html.nav-lock body { overflow: hidden; }
}

/* ---------- Desk lamp (cursor spotlight, desktop only) ---------- */
.desk-lamp {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 35%), rgba(31, 42, 55, .055), transparent 70%);
  mix-blend-mode: multiply;
}
@media (hover: hover) and (pointer: fine) {
  .desk-lamp.on { display: block; }
}

/* ---------- Reveal on scroll ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}
html.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .5s ease calc(var(--d, 0s) + var(--i, 0) * 70ms),
    transform .5s var(--ease-sheet) calc(var(--d, 0s) + var(--i, 0) * 70ms);
}
/* sheets keep their resting rotation after reveal */
html.js .compare-sheet.reveal.in-view { transform: none; }
html.js .serp.reveal { transform: translateY(18px) rotate(-.8deg); }
html.js .serp.reveal.in-view { transform: rotate(-.8deg); }

/* ---------- Mobile / layout tweaks ---------- */
@media (max-width: 979px) {
  .hero-grid { min-height: 0; }
  .hero-art { margin-top: 26px; }
  .phone-wrap { right: 4px; bottom: -40px; width: 116px; }
  .pad-main { transform: rotate(.75deg); }
}
@media (max-width: 959px) {
  .board-hint { display: block; }
  .board-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 22px;
    mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 14px), transparent 100%);
  }
  .concept-card { flex: 0 0 min(82vw, 320px); scroll-snap-align: center; }
}
@media (max-width: 720px) {
  .spec-sheet { padding-inline: 22px 18px; }
  .spec-row { flex-wrap: wrap; row-gap: .2em; }
  .spec-item { max-width: none; flex: 1 1 100%; order: 5; padding-left: 2px; }
  .spec-row .leader { display: none; }
  .tearoff { margin-inline: -44px -18px; }
  .compare-sheet--agency { padding-bottom: 72px; }
  .quote-sheet { padding: 24px 20px 26px; }
  .faq-sheet { padding: 18px 18px 18px 14px; }
  .pen-note--pick { top: -30px; }
  .footer { padding-bottom: 130px; }
}

/* ============================================================
   REDUCED MOTION — everything renders complete and static
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .stamp-slam { opacity: 1; transform: rotate(-2deg) scale(1); }
  html.js .stamp--verdict.stamp-slam { transform: rotate(-8deg); }
  html.js .stamp--angle.stamp-slam { transform: rotate(3deg); }
  html.js .stamp-approved.stamp-slam { transform: rotate(-4deg); }
  .pen path, .cb-tick { stroke-dashoffset: 0 !important; }
  .compare-sheet .strike span::after { transform: scaleX(1) rotate(-1.2deg); }
  html.js .pricing-fan .price-sheet--starter,
  html.js .pricing-fan .price-sheet--seo { transform: none; }
  .phone .phone-screen { animation: none !important; transform: translateY(0); }
  .ring { display: none; }
  .serp-caret { display: none; }
  .typing .pad-lines .val { opacity: 1; }
  .desk-lamp { display: none !important; }
  .nav-dot.pulse { animation: none; }
}
