/* Cantelo — Swiss International Style
   Two colours, a hard grid, large type, hairline rules. Nothing else. */

:root {
  --ink: #12211C;
  --paper: #EDEFE9;
  --ink-rgb: 18, 33, 28;
  --paper-rgb: 237, 239, 233;

  --rule: rgba(var(--ink-rgb), 0.16);
  --rule-strong: rgba(var(--ink-rgb), 0.32);
  /* 0.62 measured 4.48:1 against the paper background — just under the
     4.5:1 WCAG AA floor for text below 18px. 0.66 gives 5.07:1. */
  --muted: rgba(var(--ink-rgb), 0.66);
  --faint: rgba(var(--ink-rgb), 0.06);

  --on-ink-rule: rgba(var(--paper-rgb), 0.18);
  --on-ink-muted: rgba(var(--paper-rgb), 0.66);

  --font: "Helvetica Neue", Helvetica, Inter, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --gut: 24px;
  --max: 1320px;
  --bar: 64px;

  --step-0: 1rem;
  --step-1: clamp(1.0625rem, 0.98rem + 0.42vw, 1.25rem);
  --step-2: clamp(1.375rem, 1.22rem + 0.75vw, 1.75rem);
  --step-3: clamp(1.75rem, 1.42rem + 1.6vw, 2.75rem);
  --step-4: clamp(2.25rem, 1.55rem + 3.4vw, 4.5rem);
  --step-5: clamp(2.75rem, 1.3rem + 6.6vw, 7rem);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--step-1);
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 14px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- layout primitives ---------- */

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

.section { padding-block: clamp(72px, 9vw, 148px); }
.section--tight { padding-block: clamp(52px, 6vw, 96px); }
.section + .section { border-top: 1px solid var(--rule); }

.section--ink { background: var(--ink); color: var(--paper); border-top-color: transparent; }
.section--ink .kicker { color: var(--on-ink-muted); }
.section--ink .lead { color: var(--on-ink-muted); }

.kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.h-sec { font-size: var(--step-4); max-width: 20ch; }
.lead { font-size: var(--step-2); line-height: 1.32; letter-spacing: -0.02em; color: var(--muted); max-width: 46ch; margin-top: 28px; }

.head-split { display: grid; gap: 32px; }
@media (min-width: 900px) {
  .head-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: start; }
  .head-split .lead { margin-top: 8px; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 30px;
  font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none; border: 1px solid var(--ink); background: var(--ink); color: var(--paper);
  cursor: pointer; transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

.section--ink .btn, .hero .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.section--ink .btn:hover, .hero .btn:hover { background: transparent; color: var(--paper); }
.section--ink .btn--ghost, .hero .btn--ghost { background: transparent; color: var(--paper); }
.section--ink .btn--ghost:hover, .hero .btn--ghost:hover { background: var(--paper); color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.arrow { width: 0.7em; height: 0.7em; flex: none; }

/* ---------- header ---------- */

.hdr {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--bar); }
.hdr__logo { display: flex; align-items: center; text-decoration: none; }
.hdr__logo svg { height: 19px; width: auto; }
.hdr__nav { display: none; }
@media (min-width: 940px) {
  .hdr__nav { display: flex; align-items: center; gap: 34px; }
}
.hdr__link { text-decoration: none; font-size: 0.9375rem; font-weight: 500; color: var(--muted); transition: color 120ms ease; }
.hdr__link:hover, .hdr__link[aria-current="page"] { color: var(--ink); }
.hdr__right { display: flex; align-items: center; gap: 18px; }
.hdr__cta { display: none; }
@media (min-width: 940px) { .hdr__cta { display: inline-flex; padding: 11px 20px; font-size: 0.9375rem; } }

.lang { display: flex; align-items: center; gap: 2px; font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }
.lang a { text-decoration: none; padding: 6px 5px; color: rgba(var(--ink-rgb), 0.45); transition: color 120ms ease; }
.lang a:hover { color: var(--ink); }
.lang a[aria-current="true"] { color: var(--ink); font-weight: 600; }

.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0 8px; background: none; border: 0; cursor: pointer; }
.burger span { display: block; height: 1.5px; background: var(--ink); transition: transform 180ms ease, opacity 140ms ease; }
@media (min-width: 940px) { .burger { display: none; } }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mnav { display: none; border-top: 1px solid var(--rule); background: var(--paper); }
.mnav[data-open="true"] { display: block; }
@media (min-width: 940px) { .mnav { display: none !important; } }
.mnav a { display: block; padding: 18px 0; font-size: var(--step-2); font-weight: 600; letter-spacing: -0.025em; text-decoration: none; border-bottom: 1px solid var(--rule); }
.mnav a:last-of-type { border-bottom: 0; }
.mnav .btn { width: 100%; margin: 22px 0 28px; }

/* ---------- hero ---------- */

.hero { background: var(--ink); color: var(--paper); padding-block: clamp(72px, 11vw, 150px) clamp(60px, 8vw, 110px); }
.hero h1 { font-size: var(--step-5); letter-spacing: -0.045em; max-width: 15ch; }
.hero__lead { margin-top: clamp(28px, 3.5vw, 44px); font-size: var(--step-2); line-height: 1.34; letter-spacing: -0.02em; color: var(--on-ink-muted); max-width: 48ch; }
.hero .btn-row { margin-top: clamp(36px, 4.5vw, 56px); }

.hero__mark { margin-bottom: clamp(40px, 6vw, 72px); }
.hero__mark svg { width: clamp(150px, 20vw, 240px); height: auto; }

.trust { border-top: 1px solid var(--on-ink-rule); margin-top: clamp(56px, 7vw, 96px); padding-top: 0; }
.trust ul { display: grid; grid-template-columns: 1fr; }
@media (min-width: 620px) { .trust ul { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .trust ul { grid-template-columns: repeat(4, 1fr); } }
.trust li {
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--on-ink-rule);
  font-size: 0.9375rem; font-weight: 500; line-height: 1.35;
  display: flex; align-items: flex-start; gap: 12px;
}
@media (min-width: 620px) {
  .trust li { border-bottom: 0; border-right: 1px solid var(--on-ink-rule); padding-left: 22px; }
  .trust li:first-child { padding-left: 0; }
}
@media (min-width: 620px) and (max-width: 1019px) {
  .trust li:nth-child(2n) { border-right: 0; }
  .trust li:nth-child(-n+2) { border-bottom: 1px solid var(--on-ink-rule); }
  .trust li:nth-child(3) { padding-left: 0; }
}
@media (min-width: 1020px) { .trust li:last-child { border-right: 0; } }
.trust svg { width: 15px; height: 15px; flex: none; margin-top: 4px; }

/* ---------- included grid ---------- */

.grid-items { display: grid; grid-template-columns: 1fr; margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--rule); }
@media (min-width: 700px) { .grid-items { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .grid-items { grid-template-columns: repeat(4, 1fr); } }
.grid-items li { padding: 28px 24px 34px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 700px) { .grid-items li { padding-left: 24px; border-right: 1px solid var(--rule); } .grid-items li:nth-child(2n) { border-right: 0; } }
@media (min-width: 700px) and (max-width: 1079px) { .grid-items li:nth-child(2n+1) { padding-left: 0; } }
@media (min-width: 1080px) {
  .grid-items li { border-right: 1px solid var(--rule); }
  .grid-items li:nth-child(2n) { border-right: 1px solid var(--rule); }
  .grid-items li:nth-child(4n) { border-right: 0; }
  .grid-items li:nth-child(4n+1) { padding-left: 0; }
}
.grid-items h3 { font-size: 1.0625rem; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px; }
.grid-items p { font-size: 0.9375rem; line-height: 1.5; color: var(--muted); }

.footnote { margin-top: 34px; font-size: 0.9375rem; color: var(--muted); }

/* ---------- process ---------- */

.steps { margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--rule); }
.step { display: grid; gap: 8px 32px; padding: 32px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 860px) { .step { grid-template-columns: 90px minmax(0, 300px) minmax(0, 1fr); align-items: baseline; gap: 40px; } }
.step__n { font-family: var(--mono); font-size: 0.8125rem; letter-spacing: 0.1em; color: var(--muted); }
.step__t { font-size: var(--step-2); letter-spacing: -0.025em; }
.step__d { color: var(--muted); font-size: 1rem; line-height: 1.55; max-width: 60ch; }

/* ---------- price blocks ---------- */

.price-main {
  margin-top: clamp(44px, 5vw, 72px);
  border: 1px solid var(--on-ink-rule);
  display: grid; gap: 0;
}
@media (min-width: 880px) { .price-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); } }
.price-main__l { padding: clamp(32px, 4vw, 56px); border-bottom: 1px solid var(--on-ink-rule); }
@media (min-width: 880px) { .price-main__l { border-bottom: 0; border-right: 1px solid var(--on-ink-rule); } }
.price-main__r { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.price-fig { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-fig b { font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; font-variant-numeric: tabular-nums; }
.price-cur { font-size: var(--step-2); font-weight: 600; letter-spacing: -0.02em; align-self: flex-start; padding-top: .35em; }
.price-fig em { font-style: normal; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--on-ink-muted); flex-basis: 100%; padding-top: 14px; }
.price-main h3 { font-size: var(--step-3); margin-top: 26px; }
.price-main p { color: var(--on-ink-muted); margin-top: 16px; max-width: 40ch; }

/* ---------- tables ---------- */

.tbl { width: 100%; border-collapse: collapse; margin-top: 28px; }
.tbl caption { text-align: left; font-size: var(--step-2); letter-spacing: -0.025em; font-weight: 700; padding-bottom: 6px; }
.tbl th, .tbl td { text-align: left; padding: 17px 12px 17px 0; border-bottom: 1px solid var(--rule); vertical-align: baseline; font-size: 1rem; }
.tbl tr:first-child th, .tbl tr:first-child td { border-top: 1px solid var(--rule); }
.tbl td:last-child, .tbl th:last-child { text-align: right; padding-right: 0; white-space: nowrap; font-variant-numeric: tabular-nums; font-weight: 600; }
.tbl .unit { font-size: 0.8125rem; font-weight: 500; color: var(--muted); margin-left: 5px; }
.section--ink .tbl th, .section--ink .tbl td { border-color: var(--on-ink-rule); }
.section--ink .tbl .unit { color: var(--on-ink-muted); }

.cols { display: grid; gap: clamp(40px, 5vw, 72px); margin-top: clamp(44px, 5vw, 72px); }
@media (min-width: 940px) { .cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- maintenance tiers ---------- */

.tiers { display: grid; gap: 0; margin-top: clamp(44px, 5vw, 72px); border: 1px solid var(--rule); }
@media (min-width: 880px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { padding: clamp(28px, 3vw, 42px); border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; }
.tier:last-child { border-bottom: 0; }
@media (min-width: 880px) {
  .tier { border-bottom: 0; border-right: 1px solid var(--rule); }
  .tier:last-child { border-right: 0; }
}
.tier--featured { background: var(--ink); color: var(--paper); }
.tier--featured .tier__desc, .tier--featured .tier__note, .tier--featured .tier__period { color: var(--on-ink-muted); }
.tier--featured .tier__items li { border-color: var(--on-ink-rule); }
.tier__name { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; }
.tier__fig { display: flex; align-items: baseline; gap: 9px; margin-top: 22px; }
.tier__fig b { font-size: clamp(2.75rem, 5vw, 3.75rem); font-weight: 700; letter-spacing: -0.045em; line-height: 0.95; font-variant-numeric: tabular-nums; }
.tier__fig span { font-size: 1.125rem; font-weight: 600; }
.tier__period { font-size: 0.875rem; color: var(--muted); margin-top: 8px; }
.tier__desc { margin-top: 18px; font-size: 0.9375rem; color: var(--muted); line-height: 1.5; }
.tier__items { margin-top: 26px; flex: 1; }
.tier__items li { padding: 13px 0; border-top: 1px solid var(--rule); font-size: 0.9375rem; display: flex; gap: 10px; align-items: flex-start; }
.tier__items svg { width: 14px; height: 14px; flex: none; margin-top: 4px; }
.tier__note { margin-top: 20px; font-size: 0.8125rem; color: var(--muted); line-height: 1.45; }

.notebar { margin-top: 26px; padding: 18px 22px; background: var(--faint); font-size: 0.9375rem; font-weight: 500; }

.deflists { display: grid; gap: 28px; margin-top: 34px; }
@media (min-width: 720px) { .deflists { grid-template-columns: repeat(2, 1fr); gap: 44px; } }
.deflist h4 { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.deflist li { padding: 11px 0; border-top: 1px solid var(--rule); font-size: 0.9375rem; }

/* ---------- examples ---------- */

.cards { display: grid; gap: 1px; margin-top: clamp(44px, 5vw, 72px); background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 860px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--paper); padding: clamp(18px, 1.8vw, 24px); display: flex; flex-direction: column; text-decoration: none; transition: background 150ms ease; }
.card:hover { background: #E6E9E1; }
.card__thumb {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: #fff; border: 1px solid var(--rule); margin-bottom: 22px;
}
/* The shot is the top of a long page, so it always ends mid-content.
   Fading the last strip makes that read as "continues" rather than "broken". */
.card__thumb::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 34%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.92) 78%, #fff 100%);
  pointer-events: none;
}
.card__tag {
  position: absolute; left: 10px; top: 10px; z-index: 1;
  background: var(--ink); color: var(--paper);
  font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.13em;
  text-transform: uppercase; padding: 5px 8px;
}
.card h3 { font-size: var(--step-2); letter-spacing: -0.028em; }
.card__branch { font-size: 0.875rem; color: var(--muted); margin-top: 6px; }
.card__desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.5; margin-top: 14px; flex: 1; }
.card__go { margin-top: 20px; font-size: 0.9375rem; font-weight: 600; display: inline-flex; align-items: center; gap: 9px; }
.card:hover .card__go .arrow { transform: translateX(4px); }
.card__go .arrow { transition: transform 160ms ease; }

.empty { margin-top: 32px; padding: clamp(32px, 4vw, 52px); border: 1px dashed var(--rule-strong); color: var(--muted); font-size: 1rem; max-width: 62ch; }

/* ---------- faq ---------- */

.faq { margin-top: clamp(44px, 5vw, 72px); border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 27px 44px 27px 0; position: relative;
  font-size: var(--step-2); font-weight: 600; letter-spacing: -0.028em; line-height: 1.22;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 13px; height: 1.5px; background: var(--ink);
  transition: transform 180ms ease;
}
.faq summary::before {
  content: ""; position: absolute; right: 10px; top: 50%; width: 1.5px; height: 13px; background: var(--ink);
  transform: translateY(-50%); transition: transform 180ms ease, opacity 140ms ease;
}
.faq details[open] summary::before { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.faq p { padding-bottom: 30px; max-width: 68ch; color: var(--muted); font-size: 1.0625rem; line-height: 1.58; }

/* ---------- contact ---------- */

.contact-grid { display: grid; gap: clamp(44px, 5vw, 80px); margin-top: clamp(44px, 5vw, 68px); }
@media (min-width: 940px) { .contact-grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr); } }

.field { margin-bottom: 26px; }
.field label { display: block; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted); margin-bottom: 11px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--on-ink-rule);
  color: inherit; font: inherit; font-size: 1.0625rem; padding: 12px 0; border-radius: 0;
  transition: border-color 140ms ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(var(--paper-rgb), 0.34); }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--paper); }
.field textarea { resize: vertical; min-height: 108px; }
.form__privacy { font-size: 0.8125rem; color: var(--on-ink-muted); line-height: 1.5; margin-top: 20px; max-width: 52ch; }
.form__privacy a { text-decoration: underline; text-underline-offset: 3px; }
.form__status { margin-top: 20px; font-size: 0.9375rem; font-weight: 500; }
.form__status:empty { margin-top: 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.direct { border-top: 1px solid var(--on-ink-rule); }
.direct h3 { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted); font-weight: 500; padding-top: 26px; }
.direct ul { margin-top: 10px; }
.direct li { border-bottom: 1px solid var(--on-ink-rule); }
.direct a { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 20px 0; text-decoration: none; font-size: var(--step-2); font-weight: 600; letter-spacing: -0.025em; transition: opacity 140ms ease; }
.direct a:hover { opacity: 0.62; }
.direct .k { font-family: var(--mono); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted); }

/* ---------- footer ---------- */

.ftr { background: var(--ink); color: var(--paper); padding-block: clamp(52px, 6vw, 84px) 40px; }
.ftr__top { display: grid; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--on-ink-rule); }
@media (min-width: 800px) { .ftr__top { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr); gap: 48px; } }
.ftr__logo svg { height: 22px; width: auto; margin-bottom: 20px; }
.ftr__tag { color: var(--on-ink-muted); max-width: 30ch; font-size: 1rem; }
.ftr h4 { font-family: var(--mono); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-ink-muted); margin-bottom: 16px; }
.ftr li { margin-bottom: 11px; }
.ftr a { text-decoration: none; font-size: 0.9375rem; color: var(--paper); transition: opacity 140ms ease; }
.ftr a:hover { opacity: 0.62; }
.ftr__bot { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; padding-top: 26px; font-size: 0.8125rem; color: var(--on-ink-muted); }

/* ---------- legal pages ---------- */

.doc { max-width: 74ch; }
.doc h1 { font-size: var(--step-4); margin-bottom: 34px; }
.doc__intro { font-size: var(--step-1); color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.doc section { padding-top: 34px; margin-top: 34px; border-top: 1px solid var(--rule); }
.doc h2 { font-size: var(--step-2); letter-spacing: -0.025em; margin-bottom: 16px; }
.doc p { line-height: 1.65; color: var(--muted); font-size: 1rem; }
.doc p + p { margin-top: 14px; }
.doc .ph { font-family: var(--mono); font-size: 0.875rem; color: var(--ink); background: var(--faint); padding: 2px 6px; }
.notice { padding: 20px 24px; border-left: 3px solid var(--ink); background: var(--faint); font-size: 0.9375rem; line-height: 1.55; margin-bottom: 40px; }

/* ---------- misc ---------- */

.centered { text-align: center; display: flex; flex-direction: column; align-items: center; min-height: 62vh; justify-content: center; }
.centered .lead { max-width: 40ch; }

/* ---------- guarantee ---------- */

.guarantee__h { font-size: var(--step-5); letter-spacing: -0.042em; max-width: 13ch; }
.gpoints { display: grid; margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--on-ink-rule); }
@media (min-width: 820px) { .gpoints { grid-template-columns: repeat(3, 1fr); } }
.gpoints li { padding: 28px 24px 32px 0; border-bottom: 1px solid var(--on-ink-rule); }
@media (min-width: 820px) {
  .gpoints li { border-bottom: 0; border-right: 1px solid var(--on-ink-rule); padding-left: 24px; }
  .gpoints li:first-child { padding-left: 0; }
  .gpoints li:last-child { border-right: 0; }
}
.gpoints h3 { font-size: 1.125rem; letter-spacing: -0.022em; margin-bottom: 10px; }
.gpoints p { font-size: 0.9375rem; line-height: 1.5; color: var(--on-ink-muted); }

/* ---------- proof numbers ---------- */

.stats { display: grid; margin-top: clamp(48px, 6vw, 80px); border-top: 1px solid var(--rule); }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats li { padding: 30px 24px 36px 0; border-bottom: 1px solid var(--rule); }
@media (min-width: 700px) { .stats li { padding-left: 24px; border-right: 1px solid var(--rule); } .stats li:nth-child(2n) { border-right: 0; } }
@media (min-width: 700px) and (max-width: 1079px) { .stats li:nth-child(2n+1) { padding-left: 0; } }
@media (min-width: 1080px) {
  .stats li { border-right: 1px solid var(--rule); }
  .stats li:nth-child(2n) { border-right: 1px solid var(--rule); }
  .stats li:last-child { border-right: 0; }
  .stats li:first-child { padding-left: 0; }
}
.stats__n { display: block; font-size: clamp(2.75rem, 5.5vw, 4.25rem); font-weight: 700; letter-spacing: -0.05em;
  line-height: 0.92; font-variant-numeric: tabular-nums; margin-bottom: 16px; }
.stats__n em { font-style: normal; font-size: 0.34em; font-weight: 600; letter-spacing: -0.01em; margin-left: 4px; }
.stats h3 { font-size: 1rem; letter-spacing: -0.02em; margin-bottom: 9px; }
.stats p { font-size: 0.9375rem; line-height: 1.5; color: var(--muted); }

/* ---------- price anchor ---------- */

.anchor { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--on-ink-rule); }
.anchor h4 { font-family: var(--mono); font-size: 0.6875rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--on-ink-muted); margin-bottom: 16px; }
.anchor li { padding: 10px 0 10px 22px; position: relative; font-size: 0.9375rem; line-height: 1.45; }
.anchor li::before { content: "×"; position: absolute; left: 0; top: 9px; color: var(--on-ink-muted); font-size: 1rem; }
.anchor__note { margin-top: 18px; font-size: 0.9375rem; font-weight: 600; line-height: 1.5; max-width: 40ch; }

/* ---------- example screenshots ---------- */

.card__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ---------- sticky mobile action bar ---------- */

.mbar { display: none; }
@media (max-width: 939px) {
  .mbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: 1fr 1fr 1.15fr;
    background: var(--ink); border-top: 1px solid rgba(var(--paper-rgb), 0.22);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mbar a {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 8px; text-decoration: none; color: var(--paper);
    font-size: 0.875rem; font-weight: 600; letter-spacing: -0.01em;
    border-right: 1px solid rgba(var(--paper-rgb), 0.22);
  }
  .mbar a:last-child { border-right: 0; }
  .mbar svg { width: 16px; height: 16px; flex: none; }
  .mbar__cta { background: var(--paper); color: var(--ink) !important; }
  body { padding-bottom: 54px; }
}

/* ---------- industry entry tiles ---------- */

.branches { padding-block: clamp(40px, 4.5vw, 64px); }
.tiles { display: grid; margin-top: 24px; border-top: 1px solid var(--rule); }
@media (min-width: 620px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
.tiles li { border-bottom: 1px solid var(--rule); }
@media (min-width: 620px) { .tiles li { border-right: 1px solid var(--rule); } .tiles li:nth-child(2n) { border-right: 0; } }
@media (min-width: 1000px) {
  .tiles li { border-right: 1px solid var(--rule); }
  .tiles li:nth-child(2n) { border-right: 1px solid var(--rule); }
  .tiles li:last-child { border-right: 0; }
}
.tiles a {
  display: flex; flex-direction: column; gap: 7px;
  padding: 22px 22px 26px 0; text-decoration: none; height: 100%;
  transition: background 140ms ease, padding-left 140ms ease;
}
@media (min-width: 620px) { .tiles a { padding-left: 22px; } .tiles li:nth-child(2n+1) a { padding-left: 0; } }
@media (min-width: 1000px) { .tiles li:nth-child(2n+1) a { padding-left: 22px; } .tiles li:first-child a { padding-left: 0; } }
.tiles h3 { font-size: 1.1875rem; letter-spacing: -0.026em; }
.tiles p { font-size: 0.875rem; line-height: 1.45; color: var(--muted); }
.tiles__go { margin-top: auto; padding-top: 14px; display: block; color: var(--muted); }
.tiles__go .arrow { width: 15px; height: 15px; transition: transform 160ms ease; }
.tiles a:hover { background: var(--faint); }
.tiles a:hover h3 { text-decoration: underline; text-underline-offset: 4px; }
.tiles a:hover .arrow { transform: translateX(4px); color: var(--ink); }
