/* ==========================================================================
   uncommittedrecruits.com
   Palette is derived from the logo. --brand is sampled exactly from
   assets/logo-source.png (#59B158, the flat fill of the RECRUITS block).
   That value is 2.5:1 on paper and 2.67:1 on white, so it is never used for
   text on a light ground; --green is the same hue and saturation darkened to
   an AA-passing tone (5.65:1 on paper) and carries all "act / worth it"
   meaning. --brick carries all "cost / don't spend here" meaning.
   Nothing else gets an accent colour.
   ========================================================================== */
@font-face{font-family:'Oswald';font-style:normal;font-weight:400 700;font-display:swap;src:url('/assets/fonts/oswald-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Source Sans 3';font-style:italic;font-weight:400 600;font-display:swap;src:url('/assets/fonts/sourcesans3-italic-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Source Sans 3';font-style:normal;font-weight:400 700;font-display:swap;src:url('/assets/fonts/sourcesans3-latin.woff2') format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}

/* --- tokens ------------------------------------------------------------- */
:root{
  --paper:#FAF7F1;      /* warm paper ground                                */
  --paper-2:#F3EEE5;    /* banded ground                                    */
  --ink:#1A2229;        /* deep ink-slate  15.05:1 on paper                 */
  --ink-2:#242E38;      /* raised surface on ink                            */
  --muted:#55606A;      /* secondary text   6.01:1 on paper                 */
  --rule:#E3DCCC;
  --field-border:#7E7869; /* 3.9:1 on white — AA for non-text UI borders */
  --rule-ink:#39434D;

  --brand:#59B158;      /* SAMPLED from logo. Fills + marks only, never text on paper */
  --green:#356F34;      /* act / worth it   5.65:1 on paper, white on it 6.04:1 */
  --green-dark:#2B5A2A;
  --green-tint:#EAF3E7;

  --brick:#9C3B2E;      /* cost / warning   6.38:1 on paper, white on it 6.82:1 */
  --brick-dark:#83301F;
  --brick-tint:#F7EAE6;

  --display:'Oswald',"Arial Narrow",'Helvetica Neue',Helvetica,sans-serif;
  --body:'Source Sans 3',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;

  /* vertical rhythm: one scale, applied by element relationship. Values are
     tuned to the 18px body so the existing page feel is preserved -- what
     changes is that they are now applied predictably instead of ad hoc. */
  --s-3xs:.35rem;   /*  6px  label -> hint                       */
  --s-2xs:.5rem;    /*  8px  form control gaps                   */
  --s-xs:.9rem;     /* 14px  eyebrow -> heading, h3 -> its body  */
  --s-sm:1.15rem;   /* 18px  paragraph -> paragraph (flow default)*/
  --s-md:1.6rem;    /* 26px  heading -> body, block -> block     */
  --s-lg:2.4rem;    /* 38px  field -> field, group -> group      */
  --s-xl:2.7rem;    /* 43px  prose -> h3 (new sub-topic)         */
  --s-3xl:3.2rem;   /* 51px  group -> group (service blocks)     */
  --s-2xl:7.4rem;   /* 119px prose -> h2 (new topic)             */

  --wrap:1120px;
  --measure:36rem;      /* ~66 characters of body text at 18px */
  --pad:clamp(1.15rem,4vw,2rem);
}

/* --- reset -------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:1.125rem;          /* 18px floor, brief asks for >=17px         */
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4{font-family:var(--display);font-weight:600;margin:0;line-height:1.08;letter-spacing:.002em}
p,ul,ol,dl,table{margin:0}
a{color:var(--green);text-decoration-thickness:.07em;text-underline-offset:.18em}
a:hover{color:var(--green-dark)}
:focus-visible{outline:3px solid var(--green);outline-offset:3px;border-radius:2px}
::selection{background:var(--brand);color:#fff}

.skip{position:absolute;left:-9999px;top:0;background:var(--ink);color:#fff;padding:.7rem 1rem;z-index:20}
.skip:focus{left:.5rem;top:.5rem}

/* --- layout ------------------------------------------------------------- */
.wrap{max-width:var(--wrap);margin-inline:auto;padding-inline:var(--pad)}
.narrow{max-width:var(--measure)}
.wrap.narrow{max-width:var(--wrap)}          /* keep the page's left edge */
.wrap.narrow>*,.prose>*{max-width:var(--measure)}
h1.narrow,h2.narrow,h3.narrow{max-width:34ch}   /* display type: ch is honest here */
.prose>h2{max-width:30ch}
.prose>h3{max-width:36ch}
.prose>.table-scroll{max-width:900px}           /* tables need more than a measure */
.prose>.money,.prose>.email-demo{max-width:40rem}
section{padding-block:clamp(3.2rem,7vw,5.4rem)}
.band{background:var(--paper-2);border-block:1px solid var(--rule)}
.band-ink{background:var(--ink);color:var(--paper);border-block:none}
.band-ink h2,.band-ink h3{color:#fff}
.band-ink a{color:var(--brand)}          /* brand green is 6.02:1 on ink    */
.band-ink a:hover{color:#8ACB89}

.eyebrow{
  font-family:var(--display);font-weight:500;font-size:.83rem;
  text-transform:uppercase;letter-spacing:.17em;color:var(--muted);
  margin:0 0 .9rem;display:flex;align-items:center;gap:.7rem;
}
.eyebrow::before{content:"";width:26px;height:3px;background:var(--brand);flex:none}
.band-ink .eyebrow{color:#B8C2CC}

h1{font-size:clamp(2.35rem,6.4vw,4.15rem);line-height:1.01;letter-spacing:-.012em}
h2{font-size:clamp(1.85rem,4.1vw,2.85rem);line-height:1.06}
h3{font-size:clamp(1.2rem,2.2vw,1.4rem);font-weight:500;line-height:1.2}
.lede{font-size:clamp(1.16rem,2.1vw,1.32rem);line-height:1.55;color:var(--muted);max-width:60ch}
.prose ul:not([class]),.prose ol:not([class]){padding-left:1.25em}
.prose ul:not([class])>li+li,.prose ol:not([class])>li+li{margin-top:.5em}

/* --- buttons ------------------------------------------------------------ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--display);font-weight:500;font-size:1.0625rem;
  text-transform:uppercase;letter-spacing:.06em;
  padding:.86rem 1.5rem;border:2px solid transparent;border-radius:2px;
  text-decoration:none;cursor:pointer;transition:background-color .15s,color .15s,border-color .15s;
}
.btn-primary{background:var(--green);color:#fff;border-color:var(--green)}
.btn-primary:hover{background:var(--green-dark);border-color:var(--green-dark);color:#fff}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--ink)}
.btn-ghost:hover{background:var(--ink);color:var(--paper)}
.band-ink .btn-primary,.band-ink .btn-primary:hover{color:#fff}
.band-ink .btn-ghost{color:#fff;border-color:#7C8894}
.band-ink .btn-ghost:hover{background:#fff;color:var(--ink);border-color:#fff}
.btn-row{display:flex;flex-wrap:wrap;gap:.85rem;margin-top:2rem}

/* --- header / footer ---------------------------------------------------- */
.site-header{border-bottom:1px solid var(--rule);background:var(--paper)}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;padding-block:1.1rem}
.brand-link{display:block;flex:none}
.brand-link img{width:196px}
.nav{display:flex;flex-wrap:wrap;align-items:center;gap:clamp(.85rem,2.2vw,1.6rem)}
.nav a{
  font-family:var(--display);font-weight:500;font-size:.94rem;
  text-transform:uppercase;letter-spacing:.075em;
  color:var(--ink);text-decoration:none;padding:.3rem 0;border-bottom:2px solid transparent;
}
.nav a:hover{border-bottom-color:var(--brand)}
.nav a[aria-current="page"]{border-bottom-color:var(--green);color:var(--green)}
.nav .btn{font-size:.88rem;padding:.55rem 1rem}

.site-footer{background:var(--ink);color:#C4CDD6;font-size:1.0625rem;padding-block:3.2rem 2.4rem}
.site-footer a{color:var(--brand);text-decoration:none}
.site-footer a:hover{text-decoration:underline;color:#8ACB89}
.footer-grid{display:grid;gap:2.4rem;grid-template-columns:1fr}
@media(min-width:760px){.footer-grid{grid-template-columns:1.3fr 1fr}}
.footer-contact p{margin:.35rem 0}
.footer-contact .tel{font-family:var(--display);font-size:1.5rem;font-weight:500;letter-spacing:.02em}
.footer-hours{color:#96A1AB;font-size:1.0625rem;max-width:38ch}
.footer-links{display:flex;flex-wrap:wrap;gap:1.1rem;margin-top:1.4rem;font-size:.95rem}
.disclaimer{
  margin-top:2.6rem;padding-top:1.6rem;border-top:1px solid var(--rule-ink);
  color:#96A1AB;font-size:1.0625rem;line-height:1.6;max-width:78ch;
}
.copyright{margin-top:1.2rem;color:#909BA6;font-size:.88rem}

/* --- hero --------------------------------------------------------------- */
.hero{padding-block:clamp(3.4rem,8vw,6rem) clamp(3rem,6vw,4.6rem)}
.hero h1{max-width:15ch}
.hero .lede{margin-top:1.5rem}

/* --- pledge ------------------------------------------------------------- */
.pledge-quote{
  font-family:var(--display);font-weight:400;
  font-size:clamp(1.3rem,2.9vw,1.85rem);line-height:1.35;
  color:#fff;max-width:34ch;margin:0;
}
.pledge-grid{display:grid;gap:2rem}
@media(min-width:820px){.pledge-grid{grid-template-columns:1.1fr 1fr;gap:3.4rem;align-items:start}}
.pledge-list{list-style:none;padding:0;margin:0;font-size:1.0625rem}
.pledge-list li{padding:.7rem 0 .7rem 1.9rem;border-bottom:1px solid var(--rule-ink);position:relative;color:#D5DDE4}
.pledge-list li:last-child{border-bottom:none}
.pledge-list li::before{content:"";position:absolute;left:0;top:1.32em;width:11px;height:2px;background:var(--brand)}

/* --- cost figures ------------------------------------------------------- */
.costs{list-style:none;padding:0;margin:2.4rem 0 0;display:grid;gap:0;border-top:1px solid var(--rule)}
.costs li{
  display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;
  gap:.4rem 1.5rem;padding:1rem 0;border-bottom:1px solid var(--rule);
}
.costs .item{font-weight:600;flex:1 1 16ch}
.costs .note{color:var(--muted);font-size:1.0625rem;flex:1 1 100%;order:3;line-height:1.45}
@media(min-width:640px){.costs .note{flex:2 1 26ch;order:0;text-align:left}}
.costs .fig{
  font-family:var(--display);font-weight:500;font-size:1.22rem;letter-spacing:.01em;
  color:var(--brick);white-space:nowrap;flex:none;font-variant-numeric:tabular-nums;
}
.costs .total{background:var(--brick-tint);border-bottom:none;padding-inline:1rem;margin-top:.2rem}
.costs .total .fig{font-size:1.5rem;color:var(--brick-dark)}
.costs-caveat{margin-top:1.1rem;font-size:1.0625rem;color:var(--muted);max-width:62ch}
.costs-punch{
  margin-top:2rem;padding-left:1.2rem;border-left:4px solid var(--brand);
  font-size:1.14rem;max-width:54ch;
}

/* --- four steps --------------------------------------------------------- */
.steps{list-style:none;padding:0;margin:2.6rem 0 0;display:grid;gap:1.6rem}
@media(min-width:700px){.steps{grid-template-columns:repeat(2,1fr);gap:2rem 2.6rem}}
@media(min-width:1000px){.steps{grid-template-columns:repeat(4,1fr)}}
.steps li{border-top:3px solid var(--brand);padding-top:1rem}
.steps .num{
  font-family:var(--display);font-weight:500;font-size:.83rem;letter-spacing:.17em;
  color:var(--muted);text-transform:uppercase;display:block;margin-bottom:.35rem;
}
.steps h3{margin-bottom:.45rem}
.steps p{font-size:1.0625rem;color:var(--muted)}

/* --- timeline (signature element) --------------------------------------- */
.timeline{list-style:none;margin:2.8rem 0 0;padding:0;position:relative}
.timeline::before{
  content:"";position:absolute;left:11px;top:.6rem;bottom:.6rem;width:2px;
  background:var(--rule);
}
@media(min-width:820px){.timeline::before{left:97px}}
.tl-item{position:relative;padding:0 0 2.6rem 2.6rem}
.tl-item:last-child{padding-bottom:0}
@media(min-width:820px){.tl-item{padding-left:9rem;display:block}}
.tl-item::before{        /* the node on the spine */
  content:"";position:absolute;left:3px;top:.62rem;width:18px;height:18px;
  background:var(--brand);border:3px solid var(--paper);border-radius:50%;
}
@media(min-width:820px){.tl-item::before{left:89px}}
.band .tl-item::before{border-color:var(--paper-2)}
.tl-year{
  font-family:var(--display);font-weight:600;line-height:1;
  font-size:1.05rem;letter-spacing:.05em;text-transform:uppercase;
  color:var(--green);margin-bottom:.45rem;
}
@media(min-width:820px){
  .tl-year{position:absolute;left:0;top:.1rem;width:74px;text-align:right;font-size:1.15rem;margin:0}
}
.tl-year .sub{display:block;font-size:.8rem;letter-spacing:.14em;color:var(--muted);font-weight:400;margin-top:.3rem}
.tl-item h3{margin-bottom:.4rem}
.tl-item>p{color:var(--muted);font-size:1.0625rem;max-width:58ch}
.tl-cols{display:grid;gap:1.1rem;margin-top:1.1rem}
@media(min-width:620px){.tl-cols{grid-template-columns:1fr 1fr;gap:1.6rem}}
.tl-cols h4{
  font-family:var(--display);font-weight:500;font-size:.8rem;letter-spacing:.15em;
  text-transform:uppercase;margin:0 0 .5rem;
}
.tl-do h4{color:var(--green)}
.tl-dont h4{color:var(--brick)}
.tl-cols ul{list-style:none;margin:0;padding:0;font-size:1.0625rem;line-height:1.5}
.tl-cols li{position:relative;padding-left:1.5rem;margin-bottom:.5rem}
.tl-cols li::before{position:absolute;left:0;top:0;font-weight:700;font-size:.95rem}
.tl-do li::before{content:"+";color:var(--green);font-size:1.15rem;line-height:1.35}
.tl-dont li::before{content:"\2013";color:var(--brick);font-size:1.15rem;line-height:1.35}

/* scroll reveal: CSS-only, no JS, and only where the browser supports it.
   Content is fully visible by default, so nothing depends on this. */
@media (prefers-reduced-motion:no-preference){
  @supports (animation-timeline:view()){
    .timeline .tl-item{
      animation:tl-reveal linear both;
      animation-timeline:view();
      animation-range:entry 5% cover 22%;
    }
    @keyframes tl-reveal{from{opacity:.25;transform:translateY(14px)}to{opacity:1;transform:none}}
  }
}

/* --- qualifier ---------------------------------------------------------- */
.qual{display:grid;gap:2rem;margin-top:2.4rem}
@media(min-width:860px){.qual{grid-template-columns:1.25fr 1fr;gap:3rem}}
.qual-list{list-style:none;margin:0;padding:0}
.qual-list li{padding:1rem 0;border-bottom:1px solid var(--rule)}
.qual-list li:first-child{padding-top:0}
.qual-list .grade{
  font-family:var(--display);font-weight:600;font-size:1.02rem;letter-spacing:.05em;
  text-transform:uppercase;color:var(--green);display:block;margin-bottom:.15rem;
}
.qual-not{background:var(--brick-tint);border-left:4px solid var(--brick);padding:1.5rem 1.5rem 1.6rem}
.qual-not h3{color:var(--brick-dark);margin-bottom:.7rem}
.qual-not ul{list-style:none;margin:0;padding:0;font-size:1.0625rem}
.qual-not li{position:relative;padding-left:1.4rem;margin-bottom:.65rem;line-height:1.5}
.qual-not li:last-child{margin-bottom:0}
.qual-not li::before{content:"\2013";position:absolute;left:0;color:var(--brick);font-weight:700}

/* --- founder ------------------------------------------------------------ */
.founder{display:grid;gap:1.6rem;max-width:calc(var(--measure) + 3.2rem)}
@media(min-width:820px){.founder{grid-template-columns:auto 1fr;gap:2.6rem;align-items:start}}
.founder-rule{display:none}
@media(min-width:820px){.founder-rule{display:block;width:4px;background:var(--brand);align-self:stretch;min-height:100%}}
.founder p+p{margin-top:1rem}

/* --- closing cta -------------------------------------------------------- */
.cta-final{text-align:left}
.cta-final .lede{color:#C4CDD6}
.cta-final h2{max-width:20ch}

/* --- process page extras ------------------------------------------------ */
.toc{background:var(--paper-2);border:1px solid var(--rule);border-left:4px solid var(--brand);padding:1.4rem 1.6rem}
:where(.toc){margin-top:var(--s-lg)}
.toc h2{font-size:.83rem;font-family:var(--display);font-weight:500;letter-spacing:.17em;text-transform:uppercase;color:var(--muted);margin:0 0 .8rem}
.toc ol{margin:0;padding-left:1.2rem;font-size:1.0625rem;columns:1}
@media(min-width:720px){.toc ol{columns:2;column-gap:2.4rem}}
.toc li{margin-bottom:.4rem;break-inside:avoid}

.callout{border-left:4px solid var(--brand);background:var(--green-tint);padding:1.3rem 1.5rem}
:where(.callout){margin-top:var(--s-md)}
.callout.warn{border-left-color:var(--brick);background:var(--brick-tint)}
.callout p{font-size:1.0625rem}
.callout p+p{margin-top:.8rem}
.callout strong{font-weight:700}

.compare{width:100%;border-collapse:collapse;font-size:1.0625rem}
:where(.compare){margin-top:var(--s-md)}
.compare caption{text-align:left;color:var(--muted);font-size:.97rem;margin-bottom:.7rem}
.compare th,.compare td{text-align:left;padding:.8rem .9rem;border-bottom:1px solid var(--rule);vertical-align:top}
.compare thead th{
  font-family:var(--display);font-weight:500;font-size:.83rem;letter-spacing:.13em;
  text-transform:uppercase;color:var(--muted);border-bottom:2px solid var(--ink);
}
.compare tbody th{font-weight:600;white-space:nowrap}
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}
:where(.table-scroll){margin-top:var(--s-md)}
/* without a min-width the table compresses columns to slivers instead of
   scrolling, which is worse on a phone than a horizontal swipe */
.table-scroll .compare{min-width:38rem}
.table-scroll .compare-wide{min-width:50rem}
.table-scroll:focus-visible{outline:3px solid var(--green);outline-offset:3px}

.money{border:1px solid var(--rule);background:#fff}
:where(.money){margin-top:var(--s-md)}
.money h3{padding:1rem 1.3rem;margin:0;border-bottom:1px solid var(--rule);font-size:1.1rem}
.money-rows{list-style:none;margin:0;padding:0}
.money-rows li{display:flex;justify-content:space-between;gap:1.5rem;padding:.75rem 1.3rem;border-bottom:1px solid var(--rule)}
.money-rows li:last-child{border-bottom:none}
.money-rows .v{font-family:var(--display);font-weight:500;font-variant-numeric:tabular-nums;white-space:nowrap}
.money-rows .out{color:var(--brick)}
.money-rows .net{color:var(--green)}
.money-rows .sum{background:var(--paper-2);font-weight:600}

.email-demo{
  border:1px solid var(--rule);background:#fff;padding:1.3rem 1.4rem;
  font-size:1.0625rem;line-height:1.6;
}
:where(.email-demo){margin-top:var(--s-md)}
.email-demo .hdr{font-family:var(--display);font-size:.82rem;letter-spacing:.13em;text-transform:uppercase;color:var(--muted);margin-bottom:.8rem}
.email-demo p+p{margin-top:.8rem}

.checklist{list-style:none;margin:0;padding:0}
:where(.checklist){margin-top:var(--s-md)}
.checklist li{position:relative;padding-left:1.6rem;margin-bottom:.6rem;line-height:1.55}
.checklist li::before{content:"+";position:absolute;left:0;top:-.05em;color:var(--green);font-weight:700;font-size:1.15rem}
.checklist.avoid li::before{content:"\2013";color:var(--brick)}

.key-legend{display:flex;flex-wrap:wrap;gap:1.4rem;font-size:.97rem;color:var(--muted)}
:where(.key-legend){margin-top:var(--s-md)}
.key-legend span{display:flex;align-items:center;gap:.5rem}
.key-legend i{width:14px;height:14px;border-radius:50%;flex:none;display:block}
.key-legend .k-do{background:var(--green)}  /* matches the +/- markers it explains; --brand is 2.5:1 and decorative-only */
.key-legend .k-dont{background:var(--brick)}

/* --- pricing ladder ----------------------------------------------------- */
.tiers{list-style:none;margin:2.6rem 0 0;padding:0;display:grid;gap:1.5rem}
@media(min-width:840px){.tiers{grid-template-columns:repeat(2,1fr);gap:1.7rem}}
.tier{
  border:1px solid var(--rule);background:#fff;padding:1.7rem 1.6rem 1.6rem;
  display:flex;flex-direction:column;position:relative;
}
.tier-rec{border:2px solid var(--green);padding-top:2.5rem}
.tier-flag{
  position:absolute;top:0;left:-1px;background:var(--green);color:#fff;
  font-family:var(--display);font-weight:500;font-size:.78rem;
  letter-spacing:.15em;text-transform:uppercase;padding:.35rem .8rem;
}
.tier h3{font-size:1.32rem;font-weight:600}
.tier .price{
  font-family:var(--display);font-weight:600;font-size:2.15rem;line-height:1;
  letter-spacing:-.01em;margin:.6rem 0 .1rem;font-variant-numeric:tabular-nums;
}
.tier .price .per{font-size:.95rem;font-weight:400;letter-spacing:.04em;color:var(--muted);text-transform:uppercase}
.tier .free{color:var(--green)}
.tier .who{color:var(--muted);font-size:1.0625rem;margin-top:.8rem}
.tier .checklist{margin-top:1.1rem;font-size:1.0625rem}
.tier .checklist li{margin-bottom:.5rem}
.tier .btn{margin-top:1.5rem;align-self:flex-start}
.tier .tier-foot{margin-top:auto;padding-top:.4rem}
.tier-note{font-size:1.0625rem;color:var(--muted);margin-top:1rem;padding-top:1rem;border-top:1px solid var(--rule)}

.addons{list-style:none;margin:0;padding:0;border-top:1px solid var(--rule)}
:where(.addons){margin-top:var(--s-md)}
.addons li{
  display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;
  gap:.3rem 1.5rem;padding:.95rem 0;border-bottom:1px solid var(--rule);
}
.addons .item{font-weight:600;flex:1 1 18ch}
.addons .note{color:var(--muted);font-size:1.0625rem;flex:1 1 100%;order:3;line-height:1.45}
@media(min-width:640px){.addons .note{flex:2 1 24ch;order:0}}
.addons .fig{
  font-family:var(--display);font-weight:500;font-size:1.22rem;letter-spacing:.01em;
  white-space:nowrap;flex:none;font-variant-numeric:tabular-nums;color:var(--ink);
}

/* --- services detail ---------------------------------------------------- */
.svc{border-top:3px solid var(--brand);padding-top:1.2rem}
:where(.svc){margin-top:var(--s-3xl)}
.svc:first-of-type{margin-top:var(--s-lg)}
.svc-head{display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;gap:.3rem 1.5rem}
.svc-head h3{font-size:clamp(1.35rem,2.6vw,1.7rem);font-weight:600}
.svc-head .price{
  font-family:var(--display);font-weight:500;font-size:1.35rem;white-space:nowrap;
  font-variant-numeric:tabular-nums;
}
.svc-head .free{color:var(--green)}
.svc>p{margin-top:.9rem}
.svc h4{
  font-family:var(--display);font-weight:500;font-size:.83rem;letter-spacing:.15em;
  text-transform:uppercase;color:var(--muted);margin:1.6rem 0 .6rem;
}

/* --- form ----------------------------------------------------------------
   Single column throughout. Each .field is a flex column, so label -> hint ->
   control stack in DOM order at a uniform gap and can never sit inline or
   drift out of alignment. Controls are width:100% on a border-box, with
   min-width:0 so a flex/grid parent can never force them wider than the
   field -- that combination is what stops an input escaping its container.
   -------------------------------------------------------------------------- */
.form-wrap{display:grid;gap:var(--s-lg)}
@media(min-width:900px){
  .form-wrap{grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);gap:3.4rem;align-items:start}
}
.form{max-width:34rem;width:100%}

.field{display:flex;flex-direction:column;gap:var(--s-2xs);margin-top:var(--s-lg)}
.field:first-of-type{margin-top:0}
.field label{
  margin:0;font-family:var(--display);font-weight:500;font-size:.9rem;
  letter-spacing:.09em;text-transform:uppercase;color:var(--ink);
}
.field .opt{color:var(--muted);letter-spacing:.06em}
.field .req{color:var(--brick);margin-left:.15rem}
/* hint sits between the label and the control, bound tight to the label */
.field .hint{margin:calc(var(--s-3xs) - var(--s-2xs)) 0 0;font-size:1.0625rem;color:var(--muted);line-height:1.45}

.field input,.field select,.field textarea{
  box-sizing:border-box;                 /* explicit: the control must never
                                            outgrow the field on any UA */
  display:block;width:100%;max-width:100%;min-width:0;
  font-family:var(--body);font-size:1.0625rem;line-height:1.5;
  color:var(--ink);background:#fff;border:1px solid var(--field-border);
  border-radius:2px;padding:.72rem .8rem;margin:0;
}
.field textarea{min-height:9rem;resize:vertical}
.field select{
  appearance:none;-webkit-appearance:none;padding-right:2.4rem;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2355606A' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right .85rem center;background-size:12px 8px;
}
.field input:hover,.field select:hover,.field textarea:hover{border-color:var(--ink)}
.form .btn{margin-top:var(--s-lg);align-self:flex-start}
.form-legal{font-size:1.0625rem;color:var(--muted);margin-top:var(--s-md);max-width:52ch}

/* Honeypot. Must be reachable by a bot parsing the DOM and unreachable by a
   person: clipped to nothing AND parked off-screen (belt and braces for UAs
   that skip clip-path), aria-hidden from assistive tech, and tabindex="-1" on
   the input so keyboard focus skips straight past it. */
.gotcha{
  position:absolute !important;
  left:-9999px;top:auto;
  width:1px;height:1px;
  margin:-1px;padding:0;border:0;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
}
.gotcha *{position:static}

.aside-card{background:var(--paper-2);border:1px solid var(--rule);border-left:4px solid var(--brand);padding:1.5rem 1.6rem}
.band .aside-card{background:#fff}
.aside-card h3{font-size:1.15rem;margin-bottom:.7rem}
.aside-card h3+p,.aside-card p+p{margin-top:.7rem}
.aside-card p,.aside-card ul{font-size:1.0625rem}
.aside-card .tel{font-family:var(--display);font-weight:500;font-size:1.5rem;letter-spacing:.02em;display:inline-block;margin-top:.2rem}
.aside-card+.aside-card{margin-top:var(--s-lg)}

/* --- legal pages -------------------------------------------------------- */
.legal-meta{font-size:1.0625rem;color:var(--muted)}
:where(.legal-meta){margin-top:var(--s-md)}
.prose dl{margin-top:1.2rem}
.prose dt{font-weight:700;margin-top:1.1rem}
.prose dd{margin:.25rem 0 0;padding:0}

/* --- 404 ---------------------------------------------------------------- */
.notfound{padding-block:clamp(3.6rem,9vw,7rem)}
.notfound .code{
  font-family:var(--display);font-weight:600;font-size:clamp(3.4rem,11vw,6rem);
  line-height:1;color:var(--brick);letter-spacing:-.02em;margin:0 0 .6rem;
}
.nf-links{list-style:none;margin:2.4rem 0 0;padding:0;display:grid;gap:0;border-top:1px solid var(--rule);max-width:38rem}
.nf-links li{border-bottom:1px solid var(--rule)}
.nf-links a{display:block;padding:.95rem 0;text-decoration:none;color:var(--ink)}
.nf-links a:hover{color:var(--green)}
.nf-links .t{font-family:var(--display);font-weight:500;font-size:1.15rem;letter-spacing:.01em}
.nf-links .d{display:block;color:var(--muted);font-size:1.0625rem;line-height:1.45;margin-top:.1rem}
@media(min-width:840px){.tier-wide{grid-column:1 / -1}}

/* ==========================================================================
   VERTICAL RHYTHM
   One scale (--s-*), applied by element RELATIONSHIP rather than per element.

   Why it is written this way: the previous rules keyed spacing to adjacency
   pairs (`p+p`) and to each element's own em size, so any mixed sibling --
   a callout, a table, a definition list -- broke the chain and produced a 0px
   gap. These rules give every child a default flow margin first, then override
   by relationship, so a gap can never be missed.

   Specificity is deliberate and uniform. Every rule below is (0,1,1) or
   (0,1,2), and the component defaults they override were moved into :where()
   (0,0,0) above, so nothing here depends on source order to win. The eyebrow
   rule zeroes the following margin because .eyebrow carries its own
   margin-bottom -- without that the two would stack and double.
   ========================================================================== */

/* default flow: paragraph rhythm */
.prose > * + *{margin-top:var(--s-sm)}

/* heading -> its own body: bind the heading down to what it introduces */
.prose > h2 + *{margin-top:var(--s-md)}
.prose > h3 + *{margin-top:var(--s-xs)}

/* prose -> a new sub-topic / new topic */
.prose > * + h3{margin-top:var(--s-xl)}
.prose > * + h2{margin-top:var(--s-2xl)}
/* a heading stack is one unit, so h2 immediately followed by h3 stays tight */
.prose > h2 + h3{margin-top:var(--s-md)}

/* block inserts (callout, table, money box, sample email, lists) sit off the
   surrounding prose by one step, whatever precedes them */
.prose > * + .callout,
.prose > * + .table-scroll,
.prose > * + .money,
.prose > * + .email-demo,
.prose > * + .checklist,
.prose > * + .addons,
.prose > * + .compare,
.prose > * + dl,
.prose > * + ul,
.prose > * + ol{margin-top:var(--s-md)}

/* ...and prose resumes off a block insert by the same step, which is the gap
   that was collapsing to 0 after callouts, tables and definition lists */
.prose > .callout + *,
.prose > .table-scroll + *,
.prose > .money + *,
.prose > .email-demo + *,
.prose > dl + *,
.prose > ul + *,
.prose > ol + *{margin-top:var(--s-md)}

/* A heading after a block insert must still read as a new topic. These are
   written out because `.prose > * + h2` (0,1,1) would otherwise lose to the
   block-exit rule above (0,2,0); the :is() list keeps them at (0,2,1) so the
   heading step wins on specificity rather than on source order. */
.prose > :is(.callout,.table-scroll,.money,.email-demo,.checklist,.addons,dl,ul,ol) + h2{margin-top:var(--s-2xl)}
.prose > :is(.callout,.table-scroll,.money,.email-demo,.checklist,.addons,dl,ul,ol) + h3{margin-top:var(--s-xl)}

/* a heading binds to its list as tightly as to its prose */
.prose > h3 + .checklist,
.prose > h3 + .addons,
.prose > h3 + ul,
.prose > h3 + ol,
.prose > h3 + dl{margin-top:var(--s-xs)}

/* service blocks are a group-level unit, not prose flow: they keep their own
   larger step between siblings (the :where() default above is deliberately
   zero-specificity, so it needs restating here to beat `.prose > * + *`) */
.prose > .svc + .svc{margin-top:var(--s-3xl)}

/* eyebrow already carries margin-bottom; zero the next top margin so the two
   do not stack */
.prose > .eyebrow + *{margin-top:0}
.prose > :first-child{margin-top:0}

/* headings no longer carry their own bottom margins -- the flow owns it */
.prose > h2,.prose > h3{margin-bottom:0}

/* spacing utilities for the non-prose .wrap sections, replacing the ad-hoc
   inline margin-top values that were scattered through the markup */
.mt-sm{margin-top:var(--s-sm)}
.mt-md{margin-top:var(--s-md)}
.mt-lg{margin-top:var(--s-lg)}
.mt-xl{margin-top:var(--s-xl)}
