/* Truth Equipment. Black and white only, square corners, no shadows. Tokens from the design handoff. */
@font-face {
  font-family: "Public Sans";
  src: url("/fonts/public-sans-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  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: "Public Sans";
  src: url("/fonts/public-sans-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #111110;
  --ink-2: #22221e;
  --ink-3: #33332e;
  --gray-700: #45453f;
  --gray-600: #55554e;
  --gray-500: #6b6b66;
  --gray-400: #8a8a82;
  --gray-300: #9a9a92;
  --gray-250: #b0b0a8;
  --line-strong: #c9c9c2;
  --line: #e4e4df;
  --line-soft: #edede8;
  --surface: #fafaf8;
  --highlight: #f4f4f0;
  --max: 1060px;
  --pad-x: clamp(18px, 4vw, 48px);
  --mono: ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink);
  font-family: "Public Sans", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--gray-500); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
h1, h2, p { margin: 0; }
h1, h2 { text-wrap: pretty; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-x); }
.narrow { max-width: 760px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding: 16px 24px;
  min-height: 52px;
  border: 1.5px solid var(--ink);
}
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-3); border-color: var(--ink-3); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); }
.btn-outline:hover { background: var(--highlight); color: var(--ink); }
.btn-sm { font-size: 14px; padding: 11px 16px; min-height: 44px; flex: none; }
.btn-xl { font-weight: 800; font-size: clamp(17px, 2vw, 20px); padding: 18px 32px; min-height: 56px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 56px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); min-height: 44px; }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 30px;
  height: 30px;
  flex: none;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: -0.02em;
}
.brand-word { font-weight: 900; font-size: 15px; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 420px) {
  .brand-word { font-size: 13px; }
  .site-header .btn-sm { font-size: 13px; padding: 10px 12px; }
  .hide-sm { display: none; }
}
/* Very small phones: keep the full button label, drop the wordmark (the TE mark still links home). */
@media (max-width: 359px) { .brand-word { display: none; } }

/* Hero */
.hero { padding-top: clamp(48px, 8vw, 104px); }
.hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  max-width: 15em;
}
.lede {
  margin-top: 20px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 34em;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; max-width: 520px; }
.hero-actions .btn { flex: 1 1 220px; }
.hero-actions .btn-grow-sm { flex: 1 1 140px; }
.hero-actions .btn:only-child { flex: 0 1 300px; }
@media (max-width: 560px) { .hero-actions .btn, .hero-actions .btn:only-child { flex: 1 1 100%; } }

/* Trust bar */
.trust { margin-top: clamp(36px, 5vw, 60px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-grid {
  list-style: none;
  margin-block: 0;
  padding-block: clamp(18px, 2.6vw, 26px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 16px 32px;
}
.trust-grid li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; font-weight: 600; line-height: 1.45; }
.trust-grid li::before { content: ""; width: 8px; height: 8px; margin-top: 7px; flex: none; background: var(--ink); }

/* Sections */
.section { padding-top: clamp(48px, 7vw, 92px); }
.section h2 { font-weight: 800; font-size: clamp(26px, 3.4vw, 38px); line-height: 1.12; letter-spacing: -0.02em; }
.h2-tight { margin-bottom: 20px; }
.pain { margin-top: 22px; max-width: 34em; display: flex; flex-direction: column; gap: 18px; }
.pain p { font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; color: var(--ink-3); }
.pain .pain-close { color: var(--ink); font-weight: 600; }

/* Comparison table */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); }
.compare { border-collapse: collapse; min-width: 760px; width: 100%; font-size: 15px; }
.compare thead th {
  text-align: left;
  vertical-align: bottom;
  padding: 16px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
  background: #fff;
  border-bottom: 1px solid var(--ink);
}
.compare thead th:first-child { width: 130px; }
.compare thead th.te { font-weight: 800; color: var(--ink); background: var(--highlight); border: 1px solid var(--ink); }
.compare tbody th { text-align: left; padding: 15px 14px; font-weight: 700; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.compare tbody td { padding: 15px 14px; color: var(--gray-700); border-bottom: 1px solid var(--line-soft); vertical-align: top; line-height: 1.45; }
.compare tbody td.te {
  font-weight: 600;
  color: var(--ink);
  background: var(--highlight);
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid #deded8;
}
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody td.te-last { border-bottom: 1px solid var(--ink); }
.scroll-hint { margin-top: 10px; font-size: 13px; color: var(--gray-400); }
@media (min-width: 880px) { .scroll-hint { display: none; } }

/* What we sell / How it works */
.two-col { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 72px); }
.two-col > div { flex: 1 1 320px; min-width: min(280px, 100%); }
.section .h2-sub { margin: 0 0 16px; font-weight: 800; font-size: clamp(24px, 3vw, 32px); line-height: 1.12; letter-spacing: -0.02em; }
.rows { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.rows li { padding: 13px 0; border-top: 1px solid var(--line); font-size: 17px; line-height: 1.5; }
.rows li:last-child { border-bottom: 1px solid var(--line); }
.steps li { display: flex; gap: 14px; }
.step { font-family: var(--mono); font-size: 12px; color: var(--gray-300); padding-top: 4px; flex: none; }

/* Buyer callout */
.callout-wrap { margin-top: clamp(44px, 6vw, 76px); }
.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: space-between;
}
.callout p { font-size: clamp(16px, 1.8vw, 19px); line-height: 1.55; max-width: 40em; }
.callout-link { font-weight: 700; font-size: 16px; min-height: 44px; display: flex; align-items: center; flex: none; }

/* Founder note */
.founder-wrap { margin-top: clamp(48px, 7vw, 88px); }
.founder { max-width: 44em; display: flex; flex-direction: column; gap: 12px; }
.founder-h { font-weight: 800; font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -0.02em; margin-bottom: 4px; }
.founder p { font-size: clamp(16px, 1.7vw, 19px); line-height: 1.6; color: var(--ink-2); }
.founder-sig { display: flex; flex-direction: column; gap: 2px; }
.founder-name { font-weight: 700; font-size: 16px; }
.founder-title { font-size: 14px; color: var(--gray-600); }

/* Closing */
.closing { margin-top: clamp(56px, 8vw, 110px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.closing h2 { font-weight: 800; font-size: clamp(28px, 4.2vw, 48px); line-height: 1.12; letter-spacing: -0.025em; max-width: 16em; }
.closing-alt { font-weight: 600; font-size: 16px; min-height: 44px; display: inline-flex; align-items: center; }

/* Footer: full-width black band */
main { flex: 1 0 auto; }
main.wrap { width: 100%; }
.site-footer { margin-top: clamp(56px, 8vw, 104px); background: var(--ink); color: var(--gray-250); }
.footer-row {
  padding-block: 32px clamp(40px, 6vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-info { display: flex; flex-direction: column; gap: 6px; font-size: 14px; line-height: 1.6; }
.footer-brand { display: inline-flex; align-self: flex-start; align-items: center; gap: 10px; color: #fff; font-weight: 900; font-size: 15px; letter-spacing: -0.01em; margin-bottom: 4px; text-decoration: none; }
.footer-mark { width: 26px; height: 26px; background: #fff; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; letter-spacing: -0.02em; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--gray-250); }
.footer-side { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; }
.copyright { font-size: 13px; color: var(--gray-400); }
@media (max-width: 640px) { .footer-side { align-items: flex-start; } }

/* /sell application page (closers.io layout: no header, 2-line headline, 1-line highlighted sub, then the form) */
.sell { padding-top: clamp(20px, 3.5vw, 40px); display: flex; flex-direction: column; align-items: center; text-align: center; }
.sell-h1 { font-weight: 800; font-size: clamp(28px, 3.1vw, 40px); line-height: 1.22; letter-spacing: -0.02em; max-width: 26em; text-wrap: balance; }
.sell-h1 u { text-decoration-thickness: 3px; text-underline-offset: 6px; }
.sell-sub {
  margin-top: 18px;
  background: var(--line-soft);
  padding: 8px 18px;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.checks { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; }
.checks li { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 600; }
.checks li::before {
  content: "\2713";
  width: 20px;
  height: 20px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.sell-instruct { margin-top: 28px; font-size: 16px; color: var(--gray-700); }
.form-frame { width: 100%; max-width: 820px; margin-top: 12px; border: 1px solid var(--line); background: #fff; }
.tf-embed { width: 100%; height: 620px; }
@media (max-width: 560px) {
  .checks { width: fit-content; margin-inline: auto; flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Thanks, 404 */
.thanks { padding-top: clamp(40px, 7vw, 88px); }
.thanks h1 { font-weight: 800; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.1; letter-spacing: -0.025em; text-wrap: balance; }
.thanks h2 { font-weight: 800; font-size: 22px; letter-spacing: -0.01em; margin: 34px 0 12px; }
.thanks .lede { margin-top: 16px; }
.thanks-contact { margin-top: 28px; font-size: 17px; line-height: 1.6; }

/* Legal pages */
.legal { padding-top: clamp(40px, 6vw, 72px); }
.legal h1 { font-weight: 800; font-size: clamp(30px, 4vw, 42px); letter-spacing: -0.02em; line-height: 1.1; }
.legal h1 + p:not(.effective) { margin-top: 22px; }
.effective { margin: 8px 0 26px; color: var(--gray-500); font-size: 14px; }
.legal .reviewed { margin: 44px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--gray-500); font-size: 14px; }
.legal h2 { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; margin: 32px 0 10px; }
.legal p { font-size: 16.5px; line-height: 1.65; color: var(--ink-3); margin-bottom: 12px; }
.legal ul { margin: 0 0 12px; padding-left: 20px; display: grid; gap: 10px; }
.legal li { font-size: 16.5px; line-height: 1.65; color: var(--ink-3); }
.legal strong { color: var(--ink); }
