/* ==========================================================================
   DirecSites interior pages: pricing, questions, contact, privacy, terms.

   This file is a continuation of styles.css, not a second design. Every
   token, typeface and rule weight is inherited from the homepage. Nothing
   here introduces a colour, a radius or a shadow the homepage does not use.

   The one new mechanic is the plan ledger on pricing.html: the same three
   column anatomy as the homepage's arrangement rows (mono tag, sentence,
   tabular price), made switchable, with a tape beside it that adds up.
   ========================================================================== */

/* ------------------------------------------------------------- page nav -- */
/* the homepage nav is absolute and flies in after the rebuild finishes.
   Interior pages have no sequence to wait for, so it simply sits there. */

.nav.standing {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  border-bottom: 1px solid var(--rule);
}
.js .nav.standing { pointer-events: auto; }
.nav.standing .nav-links a[aria-current="page"] {
  color: var(--ink);
  background-size: 100% 1px;
}

/* interior pages need their own navigation on a phone, so the homepage rule
   that collapses the list down to the address is lifted here */
@media (max-width: 620px) {
  .nav.standing { padding-top: 16px; padding-bottom: 14px; }
  .nav.standing .nav-links a:not(:last-child) { display: inline; }
  .nav.standing .nav-links { gap: 12px 16px; width: 100%; }
  .nav.standing .nav-links a { font-size: 11.5px; }
}

/* ------------------------------------------------------------- masthead -- */

.pg-head {
  padding-top: clamp(46px, 7vw, 104px);
  padding-bottom: clamp(40px, 5.4vw, 74px);
}
.pg-title {
  margin-top: clamp(14px, 1.8vw, 24px);
  max-width: 18ch;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 86px);
  line-height: .95;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 72, "wdth" 94;
  text-wrap: balance;
}
.pg-title .soft { color: var(--slate); }
.pg-lede {
  margin-top: clamp(18px, 2.2vw, 30px);
  max-width: 54ch;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.62;
  color: var(--slate);
}
.pg-lede + .pg-lede { margin-top: 1em; }

/* the four standing facts, set as a hairline strip like the demo colophon */
.pg-facts {
  margin-top: clamp(34px, 4.4vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.pg-facts li {
  padding: 16px 0 15px;
  font: 400 12px/1.5 var(--mono);
  letter-spacing: .04em;
  color: var(--ink-2);
}
.pg-facts li + li {
  border-left: 1px solid var(--rule);
  padding-left: clamp(14px, 2.2vw, 30px);
}

/* ------------------------------------------------------------- sections -- */

.sec { padding-block: clamp(66px, 8.4vw, 128px); }
.sec.tight { padding-block: clamp(48px, 6vw, 88px); }
.sec.deep {
  background: var(--deep);
  color: #fff;
  position: relative;
}
.sec.deep::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(88% 60% at 8% 0%, rgba(255,90,31,.12) 0%, rgba(255,90,31,0) 60%);
  pointer-events: none;
}
.sec.deep .wrap { position: relative; }

.sec-title {
  margin-top: clamp(12px, 1.6vw, 22px);
  max-width: 20ch;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 62px);
  line-height: .98;
  letter-spacing: -.038em;
  font-variation-settings: "opsz" 60, "wdth" 96;
}
.sec-lede {
  margin-top: clamp(14px, 1.8vw, 24px);
  max-width: 52ch;
  font-size: clamp(15px, 1.1vw, 17.5px);
  line-height: 1.62;
  color: var(--slate);
}
.sec.deep .sec-lede { color: var(--dusk); }

/* =========================================================== plan ledger == */

.bld-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: clamp(28px, 4vw, 68px);
  align-items: start;
  margin-top: clamp(34px, 4.4vw, 62px);
}

/* the base plan, stated once, above the switches */
.base {
  border-top: 1px solid var(--ink);
  padding: clamp(20px, 2.4vw, 30px) 0 clamp(22px, 2.6vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px clamp(18px, 3vw, 40px);
  align-items: start;
}
.base-tag {
  font: 500 11px/1 var(--mono);
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--slate);
}
.base-name {
  grid-column: 1;
  margin-top: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.06;
  letter-spacing: -.03em;
}
.base-price {
  grid-column: 2; grid-row: 1 / span 2;
  text-align: right;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .86;
  letter-spacing: -.045em;
  font-variation-settings: "opsz" 60, "wdth" 92;
  font-variant-numeric: tabular-nums;
}
.per {
  display: inline-block;
  margin-left: .5em;
  font: 400 10.5px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  vertical-align: .5em;
}
.base-list {
  grid-column: 1 / -1;
  margin-top: clamp(14px, 1.8vw, 22px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 6px clamp(18px, 3vw, 40px);
}
.base-list li {
  font: 400 12.5px/1.7 var(--mono);
  letter-spacing: .02em;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
}
.base-list li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 6px; height: 1px; background: var(--slate-lo);
}

/* a labelled band introduces each group of switches */
.band {
  display: flex; align-items: baseline; gap: 14px;
  padding: clamp(26px, 3vw, 38px) 0 10px;
}
.band span {
  font: 500 11px/1 var(--mono);
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
}
.band::after {
  content: ""; flex: 1 1 auto; height: 1px; background: var(--rule);
}

/* the switchable row. Anatomy matches the homepage arrangement rows. */
.row {
  position: relative;
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr) auto;
  gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
  padding: clamp(15px, 1.7vw, 21px) 0;
  border-top: 1px solid var(--rule);
  cursor: pointer;
  transition: background-color .28s var(--ease-out);
}
.row.last { border-bottom: 1px solid var(--rule); }
.row:hover { background-color: rgba(255, 255, 255, .55); }
.row-in {
  position: absolute;
  width: 1px; height: 1px; margin: 0;
  padding: 0; border: 0; clip: rect(0 0 0 0);
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.box {
  width: 15px; height: 15px;
  margin-top: 4px;
  border: 1px solid var(--slate-lo);
  background: transparent;
  transition: background-color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.row-in:checked ~ .box { background: var(--ink); border-color: var(--ink); }
.row-in:focus-visible ~ .box::before {
  content: ""; position: absolute; inset: 3px -6px;
  outline: 2px solid var(--signal);
  outline-offset: 0;
}
.row-t b {
  display: block;
  font-size: clamp(15.5px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: -.012em;
  line-height: 1.3;
}
.row-t span {
  display: block;
  margin-top: 3px;
  max-width: 46ch;
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
}
.row-p {
  text-align: right;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
  color: var(--slate);
  transition: color .2s var(--ease-out);
}
.row-p .per {
  display: block;
  margin: 4px 0 0;
  font-size: 9.5px;
  letter-spacing: .16em;
  color: var(--slate-lo);
  vertical-align: baseline;
}
.row.is-on { background-color: rgba(255, 255, 255, .66); }
.row.is-on .row-p { color: var(--ink); }

/* the receptionist is one choice out of three, so it gets a segment strip
   instead of a square */
.row.choice { grid-template-columns: 15px minmax(0, 1fr); cursor: default; }
.row.choice.is-on .box { background: var(--ink); border-color: var(--ink); }
.seg {
  grid-column: 2;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.seg-opt { position: relative; cursor: pointer; }
.seg-opt input {
  position: absolute;
  width: 1px; height: 1px; margin: 0; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden;
}
.seg-opt i {
  display: inline-block;
  font: 400 12px/1 var(--mono);
  font-style: normal;
  letter-spacing: .06em;
  padding: 9px 14px;
  border: 1px solid var(--rule);
  color: var(--slate);
  transition: color .22s var(--ease-out), border-color .22s var(--ease-out),
              background-color .22s var(--ease-out);
}
.seg-opt:hover i { border-color: var(--slate-lo); color: var(--ink-2); }
.seg-opt input:checked + i {
  background: var(--ink); border-color: var(--ink); color: var(--paper);
}
.seg-opt.off input:checked + i {
  background: transparent; border-color: var(--ink); color: var(--ink);
}
.seg-opt input:focus-visible + i { outline: 2px solid var(--signal); outline-offset: 2px; }

.bld-acts {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: clamp(24px, 3vw, 36px);
}

/* the homepage pill button, minus the replay glyph */
.replay.plain { padding: 12px 22px; }
.quiet-btn.on-paper { color: var(--slate); border-bottom-color: var(--rule); }
.quiet-btn.on-paper:hover { color: var(--ink); border-bottom-color: currentColor; }

/* ------------------------------------------------------------- the tape -- */

.tape {
  position: sticky;
  top: clamp(18px, 3vw, 34px);
  /* on a short window the whole tape scrolls rather than losing its foot */
  max-height: calc(100vh - clamp(36px, 6vw, 68px));
  overflow-y: auto;
  border: 1px solid var(--ink);
  background: var(--paper-hi);
}
.tape-hd {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  padding: 14px clamp(16px, 1.7vw, 22px);
  border-bottom: 1px solid var(--rule);
  font: 500 10.5px/1 var(--mono);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--slate);
}
.tape-hd em { font-style: normal; color: var(--signal); opacity: 0; transition: opacity .3s var(--ease-out); }
.tape.is-cap .tape-hd em { opacity: 1; }

.tape-fig {
  padding: clamp(18px, 2.2vw, 26px) clamp(16px, 1.7vw, 22px) clamp(14px, 1.6vw, 18px);
}
.tape-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .82;
  letter-spacing: -.05em;
  font-variation-settings: "opsz" 76, "wdth" 92;
  font-variant-numeric: tabular-nums;
  transition: color .18s var(--ease-out);
}
.tape.is-cap .tape-num { color: var(--signal); }
.tape-cad {
  display: block;
  margin-top: 12px;
  font: 400 10.5px/1 var(--mono);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate);
}

/* the meter. The tick is the ceiling; anything past it is hatched, because
   it is picked but not billed. */
.mtr { padding: 0 clamp(16px, 1.7vw, 22px) 30px; }
.mtr-track {
  position: relative;
  height: 3px;
  background: var(--rule);
}
.mtr-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--ink);
  transition: width .4s var(--ease-out);
}
.mtr-over {
  position: absolute; top: 0; bottom: 0;
  background: repeating-linear-gradient(135deg,
    rgba(255, 90, 31, .55) 0 2px, rgba(255, 90, 31, 0) 2px 5px);
  transition: left .4s var(--ease-out), width .4s var(--ease-out);
}
.mtr-over[hidden] { display: none; }
.mtr-tick {
  position: absolute; top: -6px; bottom: -6px;
  width: 2px; background: var(--signal);
}
.mtr-tick b {
  position: absolute; left: 50%; top: calc(100% + 7px);
  transform: translateX(-50%);
  white-space: nowrap;
  font: 500 9.5px/1 var(--mono);
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--signal);
}
.mtr-legend {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 34px;
  font: 400 9.5px/1.4 var(--mono);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate-lo);
}

.tape-save {
  margin: 0 clamp(16px, 1.7vw, 22px) 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 90, 31, .38);
  font: 400 12.5px/1.62 var(--mono);
  letter-spacing: .01em;
  color: var(--signal);
}
.tape-save[hidden] { display: none; }

.tape-lead {
  border-top: 1px solid var(--rule);
  padding: 13px clamp(16px, 1.7vw, 22px) 0;
  font: 500 9.5px/1 var(--mono);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--slate-lo);
}
.tape-lines {
  padding: 11px clamp(16px, 1.7vw, 22px) 16px;
  display: grid; gap: 7px;
}
.tape-lines li {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.tape-lines li span {
  margin-left: auto;
  font: 400 12.5px/1.45 var(--mono);
  font-variant-numeric: tabular-nums;
  color: var(--slate);
  white-space: nowrap;
}
.tape-lines li.is-base { font-weight: 600; color: var(--ink); }
.tape-lines li.is-cut {
  border-top: 1px solid var(--rule);
  margin-top: 5px; padding-top: 10px;
  color: var(--signal);
}
.tape-lines li.is-cut span { color: var(--signal); }

.tape-foot {
  border-top: 1px solid var(--rule);
  padding: 16px clamp(16px, 1.7vw, 22px) 18px;
}
.tape-foot .replay { width: 100%; justify-content: center; }
.tape-note {
  margin-top: 12px;
  font: 400 11px/1.6 var(--mono);
  letter-spacing: .04em;
  color: var(--slate);
}

/* the phone bar: the tape head, one line, pinned */
.tape-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px var(--gut);
  background: var(--paper-hi);
  border-top: 1px solid var(--ink);
}
.tape-bar b {
  font: 500 10.5px/1 var(--mono);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}
.tape-bar .per { margin-left: .55em; vertical-align: .18em; }
.tape-bar strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.tape-bar.is-cap strong { color: var(--signal); }

/* ------------------------------------------------- the no script ledger -- */

.no-js .replay.plain { display: inline-flex; }
.no-js .row { cursor: default; }
.no-js .box, .no-js .seg-opt.off, .no-js .bld-acts, .no-js .tape-bar { display: none; }
.no-js .row { grid-template-columns: minmax(0, 1fr) auto; }
.no-js .row.choice { grid-template-columns: minmax(0, 1fr); }
.no-js .seg { grid-column: 1; }
.no-js .seg-opt i { border-color: var(--rule); color: var(--ink-2); }
.no-js .row-p { color: var(--ink); }
.no-js .tape-fig, .no-js .mtr, .no-js .tape-lines,
.no-js .tape-lead, .no-js .tape-save { display: none; }
.js .tape-static { display: none; }
.tape-static { padding: clamp(16px, 1.7vw, 22px); }
.tape-static p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
.tape-static p + p { margin-top: 10px; }

/* ----------------------------------------------------- ownership strip -- */

.own {
  margin-top: clamp(30px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0 clamp(20px, 3vw, 48px);
}
.own li {
  padding: 20px 0 19px;
  border-top: 1px solid var(--deep-rule);
  font: 400 12.5px/1.65 var(--mono);
  letter-spacing: .015em;
  color: var(--slate-lo);
}
.own li b {
  display: block; margin-bottom: 7px;
  color: #fff; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  font-size: 10.5px;
}

/* ================================================================== FAQ === */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 56px);
  align-items: start;
  padding-top: clamp(30px, 3.6vw, 50px);
}
.faq-grid:first-child { padding-top: 0; }
.faq-grid + .faq-grid { padding-top: clamp(44px, 5vw, 76px); }
.faq-label {
  position: sticky; top: clamp(18px, 3vw, 34px);
  font: 500 11px/1.5 var(--mono);
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--slate);
}
.faq-set { max-width: 74ch; border-top: 1px solid var(--ink); }

.faq-set details { border-bottom: 1px solid var(--rule); }
.faq-set summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: start;
  padding: clamp(16px, 1.9vw, 24px) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17.5px, 1.55vw, 24px);
  line-height: 1.22;
  letter-spacing: -.028em;
  transition: color .25s var(--ease-out);
}
.faq-set summary::-webkit-details-marker { display: none; }
.faq-set summary:hover { color: var(--slate); }
.faq-set summary:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
.pm {
  position: relative;
  width: 15px; height: 15px;
  margin-top: .34em;
  justify-self: end;
}
.pm::before, .pm::after {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 15px; height: 1.5px;
  background: var(--ink);
  transition: transform .32s var(--ease-out), background-color .32s var(--ease-out);
}
.pm::after { transform: rotate(90deg); }
details[open] .pm::before, details[open] .pm::after { background: var(--signal); }
details[open] .pm::after { transform: rotate(0deg); }

.faq-a {
  padding: 0 42px clamp(20px, 2.2vw, 28px) 0;
  max-width: 62ch;
}
.faq-a p {
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.68;
  color: var(--slate);
}
.faq-a p + p { margin-top: .9em; }
.faq-a b { color: var(--ink-2); font-weight: 500; }
.faq-a a { color: var(--ink-2); border-bottom: 1px solid var(--rule); transition: border-color .3s var(--ease-out); }
.faq-a a:hover { border-bottom-color: var(--ink); }
.faq-a ul { margin-top: .7em; display: grid; gap: 4px; }
.faq-a li {
  font: 400 12.5px/1.7 var(--mono);
  letter-spacing: .02em;
  color: var(--ink-2);
  padding-left: 16px; position: relative;
}
.faq-a li::before {
  content: ""; position: absolute; left: 0; top: .78em;
  width: 6px; height: 1px; background: var(--slate-lo);
}

/* ============================================================== contact == */

.ct-h { margin-top: clamp(16px, 2.2vw, 30px); }
.ct-mail {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(27px, 4.6vw, 74px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-variation-settings: "opsz" 72, "wdth" 92;
  word-break: break-word;
  border-bottom: 2px solid var(--rule);
  padding-bottom: .06em;
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.ct-mail:hover { color: var(--signal); border-bottom-color: var(--signal); }

.ct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3.4vw, 56px);
  margin-top: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--ink);
  padding-top: clamp(24px, 3vw, 38px);
}
.ct-block h2 {
  font: 500 11px/1 var(--mono);
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--slate);
}
.ct-block address, .ct-block p {
  margin-top: 14px;
  font: 400 13.5px/1.9 var(--mono);
  font-style: normal;
  letter-spacing: .015em;
  color: var(--ink-2);
}
.ct-block a { border-bottom: 1px solid var(--rule); transition: border-color .3s var(--ease-out); }
.ct-block a:hover { border-color: var(--ink); }

/* ============================================================= documents == */

.doc { max-width: 68ch; }
.doc-meta {
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font: 400 11px/1.7 var(--mono);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--slate-lo);
}
.doc section { padding-top: clamp(34px, 4vw, 58px); }
.doc section:first-child { padding-top: 0; }
.doc section > p,
.doc section > ul,
.doc section > h3 { padding-left: 46px; }
.doc h2 {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 4px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.14;
  letter-spacing: -.03em;
}
.doc h2 i {
  font-style: normal;
  font: 500 11px/1.9 var(--mono);
  letter-spacing: .1em;
  color: var(--signal);
}
.doc h3 {
  margin-top: 1.5em;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.doc p, .doc li {
  font-size: clamp(14.5px, 1.05vw, 16.5px);
  line-height: 1.72;
  color: var(--slate);
}
.doc h2 + p, .doc h3 + p { margin-top: .8em; }
.doc p + p { margin-top: .9em; }
.doc ul { margin-top: .9em; display: grid; gap: 7px; }
.doc ul + p { margin-top: 1.1em; }
.doc li { padding-left: 18px; position: relative; }
.doc li::before {
  content: ""; position: absolute; left: 0; top: .82em;
  width: 8px; height: 1px; background: var(--slate-lo);
}
.doc b, .doc strong { color: var(--ink-2); font-weight: 600; }
.doc a { border-bottom: 1px solid var(--rule); }
.doc a:hover { border-bottom-color: var(--ink); }

/* ================================================================= close == */

.close-line {
  max-width: 17ch;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 74px);
  line-height: 1.0;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 76, "wdth" 96;
  text-wrap: balance;
}
.close-acts {
  margin-top: clamp(26px, 3.2vw, 44px);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}

/* ============================================================ responsive == */

@media (max-width: 1000px) {
  .bld-grid { grid-template-columns: 1fr; }
  .tape { position: static; max-height: none; overflow: visible; }
  .faq-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-label { position: static; }
  .pg-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pg-facts li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .pg-facts li:nth-child(n + 3) { border-top: 1px solid var(--rule); }
}

@media (max-width: 900px) {
  .js .pg-pricing { padding-bottom: 62px; }
  .js .pg-pricing .tape-bar { display: flex; }
}

@media (max-width: 620px) {
  .pg-facts { grid-template-columns: 1fr; }
  .pg-facts li + li { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); }
  .row { grid-template-columns: 15px minmax(0, 1fr); row-gap: 10px; }
  .row-p { grid-column: 2; text-align: left; }
  .no-js .row, .no-js .row.choice { grid-template-columns: minmax(0, 1fr); }
  .base { grid-template-columns: 1fr; }
  .base-price { grid-column: 1; grid-row: auto; text-align: left; margin-top: 10px; }
  .base-name { margin-top: 8px; }
  .faq-a { padding-right: 0; }
  .doc h2 { grid-template-columns: 1fr; gap: 2px; }
  .doc section > p, .doc section > ul, .doc section > h3 { padding-left: 0; }
}

/* ======================================================== reduced motion == */

@media (prefers-reduced-motion: reduce) {
  .mtr-fill, .mtr-over { transition: none; }
}
