/* ============================================================
   Joy Howdy · Merchant sign-up landing page
   Lawrence-local, neighborly, hand-touched.
   ============================================================ */
@import url("assets/colors_and_type.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg1);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* ---------- Shared atoms ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 48px; }

.eyebrow {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg3);
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.eyebrow.light { color: rgba(255,253,247,0.55); }
.eyebrow-num { color: var(--jh-coral); }
.eyebrow.light .eyebrow-num { color: var(--jh-gold); }

.h-italic {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 52px; line-height: 1.04; letter-spacing: -0.01em;
  color: var(--fg1); margin: 0;
  text-wrap: balance;
}
.h-italic.lg { font-size: 64px; }
.h-italic.xl { font-size: clamp(72px, 8vw, 124px); }
.display {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.94; letter-spacing: -0.01em;
  color: var(--fg1); margin: 0;
}
.display-accent { color: var(--jh-coral); }
.gold-accent   { color: var(--jh-gold); font-style: italic; }
.teal-accent   { color: var(--jh-teal); font-style: italic; }
.lede {
  font-size: 20px; line-height: 1.5; color: var(--fg2);
  max-width: 56ch; margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-heading); font-weight: 800; font-size: 16px; line-height: 1;
  padding: 16px 24px;
  border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: all 140ms var(--ease-out);
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary    { background: var(--jh-coral); color: var(--jh-cream); box-shadow: 0 2px 0 var(--jh-coral-700); }
.btn-primary:hover { background: var(--jh-coral-700); box-shadow: 0 1px 0 var(--jh-coral-700); transform: translateY(1px); }
.btn-navy       { background: var(--jh-navy); color: var(--jh-cream); }
.btn-navy:hover { background: var(--jh-navy-900); }
.btn-ghost      { background: transparent; color: var(--fg1); border-color: rgba(27,43,75,0.2); }
.btn-ghost:hover { border-color: var(--jh-navy); }
.btn-arrow { font-family: var(--font-mono); }
.btn-lg { padding: 20px 32px; font-size: 17px; }

/* ---------- Header ---------- */
.m-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 32px;
  padding: 16px 48px;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
}
.m-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.m-brand img { height: 36px; }
.m-brand-tag {
  font-family: var(--font-heading); font-weight: 800; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg3);
  border-left: 1px solid var(--divider); padding-left: 14px;
}
.m-actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.m-link {
  font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  color: var(--fg1); text-decoration: none;
}
.m-link:hover { color: var(--jh-coral); }

/* ---------- HERO — interactive opener ---------- */
.hero {
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
}
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.eyebrow-pill {
  background: rgba(27,43,75,0.06);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-family: var(--font-heading); font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg1);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--jh-coral);
  display: inline-block;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-question {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.02; letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--fg1);
  text-wrap: balance;
  max-width: 22ch;
}
.hero-question .scribble {
  position: relative; display: inline-block;
  color: var(--jh-coral);
}
.hero-question .scribble svg {
  position: absolute; left: -3%; right: -3%; bottom: -8px;
  width: 106%; height: 18px; pointer-events: none;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 19px; line-height: 1.5; color: var(--fg2);
  margin: 0 0 36px;
  max-width: 52ch;
}

/* Calculator widget */
.calc {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--jh-cream-200);
  border: 1.5px solid var(--jh-navy);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.calc::after {
  /* Hand-drawn corner mark */
  content: "";
  position: absolute; top: -14px; right: -14px;
  width: 80px; height: 80px;
  background: var(--jh-coral);
  border-radius: 50%;
  transform: rotate(-8deg);
  z-index: 0;
  display: none; /* enabled selectively */
}

.calc-left {
  padding: 36px 38px;
  border-right: 1.5px dashed rgba(27,43,75,0.15);
}
.calc-label {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg3);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.calc-label::before {
  content: "01"; color: var(--jh-coral);
}
.calc-question {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 22px; line-height: 1.25;
  color: var(--fg1); margin: 0 0 22px;
  text-wrap: pretty;
}
.calc-input-wrap {
  position: relative;
  display: flex; align-items: baseline;
  background: var(--jh-cream);
  border: 1.5px solid rgba(27,43,75,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 140ms var(--ease-out);
}
.calc-input-wrap:focus-within {
  border-color: var(--jh-coral);
  box-shadow: 0 0 0 3px rgba(242,109,81,0.18);
}
.calc-currency {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 36px; color: var(--fg3);
  margin-right: 4px;
}
.calc-input {
  flex: 1;
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 40px; line-height: 1;
  color: var(--fg1);
  background: transparent; border: 0; outline: 0;
  width: 100%;
  min-width: 0;
  -moz-appearance: textfield;
}
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.calc-unit {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg3);
  margin-left: 8px; white-space: nowrap;
}

.calc-chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.calc-chip {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 13px;
  background: transparent;
  color: var(--fg2);
  border: 1px solid rgba(27,43,75,0.15);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  cursor: pointer;
  transition: all 140ms var(--ease-out);
}
.calc-chip:hover { border-color: var(--jh-navy); color: var(--fg1); }
.calc-chip.active {
  background: var(--jh-navy); color: var(--jh-cream); border-color: var(--jh-navy);
}

.calc-right {
  padding: 36px 38px;
  background: var(--jh-navy);
  color: var(--jh-cream);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.calc-right::before {
  content: "→";
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--jh-coral);
  position: absolute;
  left: -22px; top: 50%; transform: translateY(-50%);
  background: var(--jh-cream-200);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--jh-navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.calc-right .calc-label { color: rgba(255,253,247,0.55); }
.calc-right .calc-label::before { content: "02"; color: var(--jh-gold); }

.calc-result-headline {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 19px; line-height: 1.3;
  color: rgba(255,253,247,0.75);
  margin: 0 0 14px;
}

/* Swing compare layout inside the calc panel */
.calc-swing-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  margin: 14px 0 18px;
}
.calc-swing-cell { display: flex; flex-direction: column; gap: 4px; }
.calc-swing-cell-label {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,253,247,0.5);
}
.calc-swing-cell.new .calc-swing-cell-label { color: var(--jh-gold); }
.calc-swing-cell-num {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.calc-swing-cell.old .calc-swing-cell-num {
  color: rgba(255,253,247,0.45);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255,253,247,0.4);
}
.calc-swing-cell.new .calc-swing-cell-num { color: var(--jh-cream); }
.calc-swing-cell-foot {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,253,247,0.5);
  margin-top: 4px;
}

.calc-swing-divider {
  height: 1.5px;
  background: repeating-linear-gradient(to right, rgba(255,253,247,0.2) 0 6px, transparent 6px 12px);
  margin: 4px 0 14px;
}
.calc-swing-head {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,253,247,0.55);
  margin-bottom: 6px;
}
.calc-result-number {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(56px, 6.2vw, 88px);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--jh-coral);
  margin: 0;
  font-variant-numeric: tabular-nums;
  transition: color 220ms var(--ease-out);
}
.calc-result-sub {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.5;
  color: rgba(255,253,247,0.65);
  margin: 12px 0 0;
  max-width: 38ch;
}
.calc-result-sub strong { color: var(--jh-cream); font-weight: 800; }

.hero-foot {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
  font-family: var(--font-heading); font-weight: 800; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg3);
}
.hero-foot .arr { color: var(--jh-coral); }

/* Hero watermark */
.hero-watermark {
  position: absolute; right: -120px; bottom: -60px;
  width: 480px; opacity: 0.05; pointer-events: none; z-index: 0;
}
.hero-watermark img { width: 100%; }
.hero > .container { position: relative; z-index: 1; }

/* ---------- The big honest objection ---------- */
.section { padding: 110px 0; position: relative; }
.section.tight { padding: 70px 0; }
.section-cream { background: var(--jh-cream); }
.section-cream-warm { background: var(--jh-cream-200); }
.section-navy { background: var(--jh-navy); color: var(--jh-cream); }
.section-navy .h-italic { color: var(--jh-cream); }

.objection {
  position: relative;
}
.objection-head {
  text-align: left;
  margin-bottom: 56px;
  max-width: 920px;
}
.objection-head .display {
  margin-bottom: 24px;
}
.objection-head .display .strike {
  position: relative; display: inline-block;
}
.objection-head .display .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; top: 55%;
  height: 6px;
  background: var(--jh-coral);
  border-radius: 4px;
  transform: rotate(-2deg);
}
.objection-head .lede {
  font-size: 22px;
  color: var(--fg1);
  max-width: 60ch;
}
.objection-head .lede em { color: var(--jh-gold); font-style: italic; font-weight: 800; }

/* Two-column compare */
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid var(--jh-navy);
  background: var(--jh-cream);
}
.compare-col { padding: 40px 44px; }
.compare-col.old { background: var(--jh-cream); border-right: 1.5px dashed rgba(27,43,75,0.15); }
.compare-col.new {
  background: var(--jh-navy); color: var(--jh-cream);
}
.compare-tag {
  font-family: var(--font-heading); font-weight: 800; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 14px;
}
.compare-col.old .compare-tag { color: var(--fg3); }
.compare-col.new .compare-tag { color: var(--jh-gold); }

.compare-title {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 32px; line-height: 1.1; margin: 0 0 22px;
  color: inherit;
}
.compare-col.old .compare-title { color: var(--fg1); }
.compare-col.new .compare-title { color: var(--jh-cream); }

.compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  font-size: 16px; line-height: 1.45;
  align-items: start;
}
.compare-col.old .compare-list li { color: var(--fg2); }
.compare-col.new .compare-list li { color: rgba(255,253,247,0.85); }

.compare-mark { font-family: var(--font-mono); font-size: 18px; line-height: 1.4; font-weight: 800; }
.compare-col.old .compare-mark { color: var(--jh-coral); }
.compare-col.new .compare-mark { color: var(--jh-teal); }

/* ---------- How it works ---------- */
.how-head { margin-bottom: 64px; max-width: 720px; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.step {
  background: var(--jh-cream);
  border-radius: 20px;
  padding: 28px 26px 32px;
  box-shadow: var(--shadow-sm), var(--shadow-inset-hair);
  position: relative;
  transition: transform 220ms var(--ease-out);
}
.step:nth-child(odd) { transform: rotate(-0.4deg); }
.step:nth-child(even) { transform: rotate(0.4deg); }
.step:hover { transform: rotate(0) translateY(-3px); }
.step-num {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--jh-coral);
  margin-bottom: 18px;
}
.step-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step-icon-mask {
  width: 44px; height: 44px;
  background: var(--jh-navy);
  mask-size: contain; -webkit-mask-size: contain;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-position: center; -webkit-mask-position: center;
}
.step.coral .step-icon-mask { background: var(--jh-coral); }
.step.teal .step-icon-mask { background: var(--jh-teal); }
.step.gold .step-icon-mask { background: var(--jh-navy); }

.step-title {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 22px; line-height: 1.15; margin: 0 0 10px;
  color: var(--fg1);
  text-wrap: balance;
}
.step-body { font-size: 15px; line-height: 1.5; color: var(--fg2); margin: 0; }

/* ---------- The math ---------- */
.math {
  background: var(--jh-cream-200);
  border-radius: 28px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.math-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: 48px; }
.math-head .lede { margin-top: 14px; }

.math-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--jh-cream);
  border: 1.5px solid var(--jh-navy);
}
.math-card {
  padding: 36px 32px;
  border-right: 1.5px dashed rgba(27,43,75,0.15);
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
}
.math-card:last-child { border-right: 0; }
.math-card-label {
  font-family: var(--font-heading); font-weight: 800; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg3);
  display: flex; align-items: center; gap: 8px;
}
.math-card-label::before {
  content: attr(data-step);
  color: var(--jh-coral);
}
.math-card-figure {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(56px, 5.5vw, 82px);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--jh-navy);
  margin: 8px 0 4px;
  font-variant-numeric: tabular-nums;
}
.math-card.you .math-card-figure { color: var(--jh-coral); }
.math-card-sub {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 19px; line-height: 1.25;
  color: var(--fg1);
}
.math-card-foot {
  margin-top: auto; padding-top: 14px;
  font-size: 14px; color: var(--fg2); line-height: 1.5;
}
.math-card-foot strong { color: var(--fg1); font-weight: 800; }

.math-arrow {
  position: absolute;
  right: -14px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--jh-cream-200);
  border: 1.5px solid var(--jh-navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; color: var(--jh-coral);
  z-index: 2;
}
.math-card:last-child .math-arrow { display: none; }

.math-foot {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.math-foot-note {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 19px; color: var(--fg1); margin: 0;
  max-width: 60ch;
}
.math-foot-note em { color: var(--jh-gold); }

.math-cite {
  margin-top: 28px;
  font-size: 12px; line-height: 1.5;
  color: var(--fg3);
  max-width: 70ch;
  font-style: italic;
}
.math-cite a { color: var(--fg2); text-decoration: underline; }
.math-cite a:hover { color: var(--jh-coral); }

/* Swing compare strip below the 3-card math flow */
.math-swing {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 0;
  background: var(--jh-navy);
  color: var(--jh-cream);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.math-swing-cell {
  padding: 28px 32px;
  border-right: 1.5px dashed rgba(255,253,247,0.15);
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.math-swing-cell:last-child { border-right: 0; }
.math-swing-cell-label {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,253,247,0.5);
}
.math-swing-cell.swing .math-swing-cell-label { color: var(--jh-gold); }
.math-swing-cell-num {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(42px, 4.5vw, 60px);
  line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin: 6px 0 2px;
}
.math-swing-cell.old .math-swing-cell-num {
  color: rgba(255,253,247,0.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,253,247,0.35);
}
.math-swing-cell.new .math-swing-cell-num { color: var(--jh-cream); }
.math-swing-cell.swing .math-swing-cell-num { color: var(--jh-coral); }
.math-swing-cell-foot {
  font-family: var(--font-body); font-size: 13px; line-height: 1.4;
  color: rgba(255,253,247,0.6);
}
.math-swing-cell.swing {
  background: rgba(242,109,81,0.06);
}
.math-swing-cell.swing::before {
  content: "=";
  position: absolute;
  left: -16px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--jh-coral); color: var(--jh-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 18px;
  z-index: 2;
}

body.accent-teal .math-swing-cell.swing .math-swing-cell-num { color: var(--jh-teal); }
body.accent-teal .math-swing-cell.swing { background: rgba(42,191,191,0.08); }
body.accent-teal .math-swing-cell.swing::before { background: var(--jh-teal); }

/* ---------- Anchor merchants strip ---------- */
.anchors {
  text-align: center;
}
.anchors-head .h-italic { font-size: 36px; margin-bottom: 8px; max-width: 30ch; margin-left: auto; margin-right: auto; }
.anchors-line {
  font-family: var(--font-body); font-size: 16px; color: var(--fg2); margin: 0 0 36px;
}
.anchors-logo-row {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.anchor-logo-item {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85;
  transition: opacity 180ms var(--ease-out);
}
.anchor-logo-item:hover { opacity: 1; }
.anchor-more {
  background: rgba(242,109,81,0.12);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: var(--font-heading); font-weight: 800; font-size: 14px;
  color: var(--jh-coral-700);
  white-space: nowrap;
  align-self: center;
}

/* ---------- FAQ-style objections quick-hits ---------- */
.faq {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.faq-card {
  background: var(--jh-cream);
  border-radius: 18px;
  padding: 30px 32px;
  box-shadow: var(--shadow-sm), var(--shadow-inset-hair);
  display: flex; flex-direction: column; gap: 12px;
}
.faq-q {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 20px; line-height: 1.25;
  color: var(--fg1); margin: 0;
  display: flex; align-items: start; gap: 10px;
}
.faq-q::before {
  content: "Q";
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  color: var(--jh-coral); flex-shrink: 0;
}
.faq-a {
  font-size: 15px; line-height: 1.55; color: var(--fg2);
  margin: 0; padding-left: 22px;
}
.faq-a strong { color: var(--fg1); font-weight: 800; }

/* ---------- Sign-up form ---------- */
.signup {
  background: var(--jh-navy);
  color: var(--jh-cream);
  position: relative;
  overflow: hidden;
}
.signup::before {
  content: "";
  position: absolute;
  left: -160px; bottom: -160px;
  width: 480px; height: 480px;
  background: var(--jh-coral);
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
}
.signup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.signup-eyebrow { color: rgba(255,253,247,0.55) !important; margin-bottom: 22px; }
.signup-eyebrow .eyebrow-num { color: var(--jh-gold); }
.signup-head .display {
  color: var(--jh-cream);
  font-size: clamp(60px, 7vw, 108px);
  line-height: 0.95;
}
.signup-sub {
  font-size: 19px; line-height: 1.55; color: rgba(255,253,247,0.75);
  margin: 22px 0 0;
  max-width: 44ch;
}
.signup-sub em { color: var(--jh-gold); font-style: italic; }

.signup-card {
  background: var(--jh-cream);
  color: var(--fg1);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.signup-card::before {
  /* Hand-stamped corner badge */
  content: "Lawrence, KS · 2026";
  position: absolute;
  top: -16px; right: 22px;
  background: var(--jh-coral); color: var(--jh-cream);
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transform: rotate(-3deg);
  box-shadow: 0 2px 0 var(--jh-coral-700);
}

.signup-card-head {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 28px; line-height: 1.1; color: var(--fg1);
  margin: 0 0 6px;
}
.signup-card-lede {
  font-size: 15px; color: var(--fg2); margin: 0 0 28px; line-height: 1.5;
}

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field-label {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg3);
}
.field-input {
  font-family: var(--font-body); font-size: 16px; color: var(--fg1);
  background: var(--jh-cream-100);
  border: 1.5px solid rgba(27,43,75,0.18);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: all 140ms var(--ease-out);
  width: 100%;
}
.field-input::placeholder { color: var(--fg3); }
.field-input:focus { border-color: var(--jh-coral); box-shadow: 0 0 0 3px rgba(242,109,81,0.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.signup-submit {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}
.signup-fineprint {
  margin: 16px 0 0;
  font-size: 12px; color: var(--fg3); line-height: 1.5;
  text-align: center;
}
.signup-fineprint a { color: var(--fg2); text-decoration: underline; }

/* SMS opt-in checkbox */
.sms-opt-in {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; margin-bottom: 4px;
}
.sms-opt-in input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--jh-coral);
  margin-top: 2px; cursor: pointer;
}
.sms-opt-in span {
  font-size: 13px; line-height: 1.5; color: var(--fg2);
}

/* Submitted state */
.signup-thanks {
  text-align: center; padding: 16px 0;
}
.signup-thanks-mark {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--jh-teal-200);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 1.5px solid var(--jh-teal);
}
.signup-thanks-mark img { width: 32px; height: 32px; }
.signup-thanks-h {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 28px; color: var(--fg1); margin: 0 0 8px;
}
.signup-thanks-p { font-size: 16px; color: var(--fg2); margin: 0 0 18px; line-height: 1.5; }

/* ---------- Founder note ---------- */
.founder {
  display: grid; grid-template-columns: auto 1fr; gap: 36px;
  align-items: center;
  background: var(--jh-cream);
  border-radius: 24px;
  padding: 44px 48px;
  border: 1.5px solid var(--divider);
}
.founder-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--jh-cream-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 40px; color: var(--jh-navy);
  flex-shrink: 0;
  position: relative;
}
.founder-avatar::after {
  content: "Founder";
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  background: var(--jh-navy); color: var(--jh-cream);
  font-family: var(--font-heading); font-weight: 800;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.founder-quote {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 22px; line-height: 1.35;
  color: var(--fg1); margin: 0 0 14px;
  text-wrap: pretty;
}
.founder-quote .accent { color: var(--jh-coral); }
.founder-sig {
  font-family: var(--font-heading); font-weight: 800;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg3);
}
.founder-sig strong { color: var(--fg1); font-weight: 800; letter-spacing: 0.18em; font-size: 13px; display: block; margin-bottom: 2px; }

/* ---------- Footer ---------- */
.m-footer {
  background: var(--jh-navy);
  color: rgba(255,253,247,0.6);
  padding: 36px 48px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,253,247,0.08);
  font-family: var(--font-heading); font-weight: 800;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.m-footer img { height: 32px; opacity: 0.92; }
.m-footer .sp { margin-left: auto; }
.m-footer a { color: rgba(255,253,247,0.6); text-decoration: none; }
.m-footer a:hover { color: var(--jh-cream); }
.m-footer .dot-sep { opacity: 0.5; }

/* ---------- Subtle hand-touched dotted divider ---------- */
.hr-stamp {
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 24px;
}
.hr-stamp::before, .hr-stamp::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: repeating-linear-gradient(to right, rgba(27,43,75,0.2) 0 6px, transparent 6px 12px);
}
.hr-stamp-text {
  font-family: var(--font-heading); font-weight: 800; font-style: italic;
  font-size: 14px; color: var(--fg3);
}

/* ---------- Tweak fine-grained density ---------- */
body.density-tight .section { padding: 80px 0; }
body.density-tight .hero { padding: 60px 0 80px; }
body.density-airy .section { padding: 140px 0; }
body.density-airy .hero { padding: 100px 0 140px; }

/* Accent override hook (Tweaks) */
body.accent-teal .display-accent,
body.accent-teal .hero-question .scribble,
body.accent-teal .anchor-logo em { color: var(--jh-teal); }
body.accent-teal .btn-primary { background: var(--jh-teal); box-shadow: 0 2px 0 var(--jh-teal-700); }
body.accent-teal .btn-primary:hover { background: var(--jh-teal-700); }
body.accent-teal .calc-result-number { color: var(--jh-teal); }
body.accent-teal .math-card.you .math-card-figure { color: var(--jh-teal); }
body.accent-teal .objection-head .display .strike::after { background: var(--jh-teal); }
body.accent-teal .anchor-more { background: rgba(42,191,191,0.15); color: var(--jh-teal-700); }
body.accent-teal .eyebrow-num { color: var(--jh-teal); }
body.accent-teal .signup-card::before { background: var(--jh-teal); box-shadow: 0 2px 0 var(--jh-teal-700); }
body.accent-teal .step-num { color: var(--jh-teal); }
body.accent-teal .step.coral .step-icon-mask { background: var(--jh-teal); }
body.accent-teal .field-input:focus { border-color: var(--jh-teal); box-shadow: 0 0 0 3px rgba(42,191,191,0.18); }
body.accent-teal .calc-input-wrap:focus-within { border-color: var(--jh-teal); box-shadow: 0 0 0 3px rgba(42,191,191,0.18); }
body.accent-teal .faq-q::before { color: var(--jh-teal); }
body.accent-teal .math-arrow { color: var(--jh-teal); }
body.accent-teal .calc-right::before { color: var(--jh-teal); }
body.accent-teal .founder-quote .accent { color: var(--jh-teal); }
body.accent-teal .hero-foot .arr { color: var(--jh-teal); }
body.accent-teal .compare-col.old .compare-mark { color: var(--jh-teal); }

/* Responsive — just enough */
@media (max-width: 980px) {
  .container, .container-narrow { padding: 0 28px; }
  .calc { grid-template-columns: 1fr; }
  .calc-left { border-right: 0; border-bottom: 1.5px dashed rgba(27,43,75,0.15); }
  .calc-right::before { left: 50%; top: -22px; transform: translateX(-50%) rotate(90deg); }
  .compare { grid-template-columns: 1fr; }
  .compare-col.old { border-right: 0; border-bottom: 1.5px dashed rgba(27,43,75,0.15); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .math { padding: 40px 28px; }
  .math-grid { grid-template-columns: 1fr; }
  .math-card { border-right: 0; border-bottom: 1.5px dashed rgba(27,43,75,0.15); }
  .math-card:last-child { border-bottom: 0; }
  .math-arrow { display: none; }
  .math-swing { grid-template-columns: 1fr; }
  .math-swing-cell { border-right: 0; border-bottom: 1.5px dashed rgba(255,253,247,0.15); }
  .math-swing-cell:last-child { border-bottom: 0; }
  .math-swing-cell.swing::before { display: none; }
  .faq { grid-template-columns: 1fr; }
  .signup-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder-avatar { margin: 0 auto; }
  .h-italic, .h-italic.lg { font-size: 40px; }
  .m-header { padding: 14px 24px; }
  .m-footer { padding: 24px 28px; flex-direction: column; align-items: flex-start; gap: 12px; }
}
