@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-variable-latin.woff2") format("woff2");
}

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

:root {
  --td-ink: #090909;
  --td-paper: #ffffff;
  --td-muted: #5e5e59;
  --td-line: #d9d9d4;
  --td-soft: #f5f5f2;
  --td-blue: #065cff;
  --td-max: 1220px;
  --td-read: 760px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--td-ink);
  background: var(--td-paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid var(--td-blue);
  outline-offset: 4px;
}

.page-wrap,
.site-footer__inner {
  width: min(100%, var(--td-max));
  margin: 0 auto;
  padding-inline: 32px;
}

.page-hero {
  padding-block: clamp(72px, 9vw, 126px) clamp(64px, 8vw, 104px);
  border-bottom: 1px solid var(--td-line);
}

.page-label,
.section-label {
  margin: 0 0 20px;
  color: var(--td-muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.1rem, 7.4vw, 6.8rem);
  font-weight: 310;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.page-intro {
  max-width: var(--td-read);
  margin-top: 34px;
}

.page-intro p,
.prose p {
  margin: 0 0 20px;
  color: var(--td-muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.78;
}

.page-intro p:first-child,
.prose p:first-child {
  color: var(--td-ink);
}

.page-intro strong,
.prose strong {
  color: var(--td-ink);
  font-weight: 720;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--td-ink);
  background: var(--td-paper);
  color: var(--td-ink);
  font-size: 0.9rem;
  font-weight: 740;
  text-decoration: none;
}

.button.primary {
  background: var(--td-ink);
  color: var(--td-paper);
}

.button:hover {
  border-color: var(--td-blue);
  background: var(--td-blue);
  color: #fff;
}

.content-section {
  padding-block: clamp(68px, 8vw, 104px);
  border-bottom: 1px solid var(--td-line);
}

.content-section.soft {
  background: var(--td-soft);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 96px;
}

.section-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.25rem);
  font-weight: 330;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.prose {
  max-width: var(--td-read);
}

.prose h3 {
  margin: 38px 0 12px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.prose h3:first-child {
  margin-top: 0;
}

.path-list,
.resource-list {
  margin: 34px 0 0;
  border-top: 1px solid var(--td-ink);
}

.path-row,
.resource-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding-block: 24px;
  border-bottom: 1px solid var(--td-line);
}

.path-row__number {
  color: var(--td-blue);
  font: 720 0.72rem/1.5 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.path-row h3,
.resource-row h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.path-row p,
.resource-row p {
  max-width: 620px;
  margin: 0;
  color: var(--td-muted);
  font-size: 0.96rem;
  line-height: 1.68;
}

.path-row a,
.resource-row > a {
  align-self: center;
  font-size: 0.88rem;
  font-weight: 740;
  text-decoration: none;
  white-space: nowrap;
}

.path-row a:hover,
.resource-row > a:hover {
  color: var(--td-blue);
}

.status-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--td-blue);
  background: #edf3ff;
  color: #31312f;
  font-size: 0.94rem;
  line-height: 1.65;
}

.cta-band {
  padding-block: clamp(68px, 8vw, 96px);
  background: var(--td-ink);
  color: #fff;
}

.cta-band .section-grid {
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  color: #fff;
}

.cta-band .prose p {
  color: #c7c7c2;
}

.cta-band .prose p:first-child {
  color: #fff;
}

.cta-band .button {
  border-color: #fff;
  background: #fff;
  color: var(--td-ink);
}

.cta-band .button.secondary {
  background: transparent;
  color: #fff;
}

.hero-note {
  max-width: 820px;
  margin: 26px 0 0;
  padding: 17px 19px;
  border-left: 4px solid var(--td-blue);
  background: #edf3ff;
  color: var(--td-ink);
  font-size: 1rem;
  line-height: 1.6;
}

.simple-section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
  margin-bottom: 48px;
}

.simple-section-head h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 320;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-grid,
.offer-grid,
.focus-grid {
  display: grid;
  border-top: 1px solid var(--td-ink);
  border-left: 1px solid var(--td-ink);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-grid,
.focus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.offer-family-grid,
.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--td-ink);
  border-left: 1px solid var(--td-ink);
}

.offer-family {
  min-width: 0;
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid var(--td-ink);
  border-bottom: 1px solid var(--td-ink);
  background: var(--td-paper);
}

.offer-family h3 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.offer-family__intro {
  max-width: 32rem;
  margin: 0;
  color: var(--td-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.offer-options {
  margin-top: 30px;
  border-top: 1px solid var(--td-ink);
}

.offer-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding-block: 22px;
  border-bottom: 1px solid var(--td-line);
}

.offer-option h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.offer-option p {
  margin: 0;
  color: var(--td-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.offer-option a {
  font-size: 0.84rem;
  font-weight: 740;
  text-decoration: none;
  white-space: nowrap;
}

.offer-option a:hover {
  color: var(--td-blue);
}

.offer-family .status {
  margin-top: 24px;
}

.proof-heading {
  align-items: end;
}

.proof-heading > div > p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--td-muted);
  line-height: 1.7;
}

.proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  display: flex;
  min-width: 0;
  min-height: 240px;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--td-ink);
  border-bottom: 1px solid var(--td-ink);
  background: var(--td-paper);
}

.proof-card h3 {
  margin: 26px 0 10px;
  font-size: 1.18rem;
}

.proof-card p {
  margin: 0;
  color: var(--td-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.proof-card > a,
.proof-card__links {
  margin-top: auto;
  padding-top: 24px;
}

.proof-card a {
  font-size: 0.84rem;
  font-weight: 740;
  text-decoration: none;
}

.proof-card a:hover {
  color: var(--td-blue);
}

.proof-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.service-card,
.offer-card,
.focus-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--td-ink);
  border-bottom: 1px solid var(--td-ink);
  background: var(--td-paper);
}

.service-card {
  min-height: 300px;
}

.offer-card {
  min-height: 390px;
  padding: 34px;
}

.focus-card {
  min-height: 190px;
}

.card-number {
  margin: 0 0 42px;
  color: var(--td-blue);
  font: 720 0.72rem/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-card h3,
.offer-card h3,
.focus-card h3 {
  margin: 0 0 14px;
  font-size: 1.42rem;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.service-card p,
.offer-card p,
.focus-card p {
  margin: 0;
  color: var(--td-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.service-card a,
.offer-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  font-weight: 740;
  text-decoration: none;
}

.service-card a:hover,
.offer-card a:hover {
  color: var(--td-blue);
}

.offer-card ul {
  margin: 22px 0 0;
  padding: 20px 0 0 20px;
  border-top: 1px solid var(--td-line);
  color: var(--td-muted);
}

.offer-card li {
  margin-bottom: 9px;
}

.status {
  width: fit-content;
  margin-top: 20px;
  padding: 7px 10px;
  background: #edf3ff;
  color: #123d9f;
  font-size: 0.74rem;
  font-weight: 740;
}

.mission-strip,
.manifesto-band {
  background: var(--td-ink);
  color: #fff;
}

.mission-strip {
  padding-block: 30px;
  border-bottom: 1px solid #333;
}

.mission-strip .section-label {
  margin-bottom: 10px;
  color: #9db5ff;
}

.mission-strip__title {
  max-width: 24ch;
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 320;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.mission-strip__copy {
  max-width: 900px;
  margin: 0;
  color: #bdbdb8;
  font-size: 0.96rem;
}

.manifesto-band {
  padding-block: clamp(68px, 8vw, 96px);
}

.manifesto-band .section-grid {
  align-items: start;
}

.manifesto-band h2 {
  max-width: 13ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 320;
  letter-spacing: -0.055em;
  line-height: 1;
}

.manifesto-band .prose p {
  color: #bdbdb8;
}

.manifesto-band .prose p:first-child {
  color: #fff;
}

.compact-note {
  max-width: 860px;
  margin: 30px 0 0;
  color: var(--td-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.legal-note {
  padding: 20px 32px;
  background: var(--td-soft);
  color: var(--td-muted);
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid var(--td-line);
  background: var(--td-paper);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) repeat(3, minmax(140px, 1fr));
  gap: 32px;
  padding-block: 42px;
}

.site-footer__brand {
  font-size: 0.86rem;
  font-weight: 740;
}

.site-footer__group strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__group a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--td-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer__group a:hover {
  color: var(--td-ink);
}

@media (max-width: 820px) {
  .page-wrap,
  .site-footer__inner {
    padding-inline: 20px;
  }

  .page-hero {
    padding-block: 62px 64px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
    letter-spacing: -0.052em;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading {
    position: static;
  }

  .simple-section-head,
  .service-grid,
  .offer-grid,
  .offer-family-grid,
  .proof-strip,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .offer-card {
    min-height: 0;
  }

  .proof-card {
    min-height: 0;
  }

  .path-row,
  .resource-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .path-row a,
  .resource-row > a {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .offer-option {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-option a {
    white-space: normal;
  }

  .path-row,
  .resource-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .path-row a,
  .resource-row > a {
    grid-column: 1;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
