@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/inter-0.woff2?v=972117e42f9a") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/inter-1.woff2?v=50405af6d094") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/inter-2.woff2?v=f9f1ce69223f") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/plex-0.woff2?v=4ed6049603ce") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/plex-1.woff2?v=4e9c17d3e3e7") format("woff2");
}
@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/caveat-1.woff2?v=b069176f4554") format("woff2");
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  --page: #fff;
  --ink: #151715;
  --muted: #626660;
  --line: #d9ddd7;
  --surface: #f3f4f1;
  --accent: #244bcc;
  --sans: Inter, Arial, sans-serif;
  --serif: Newsreader, Georgia, serif;
  --mono: "IBM Plex Mono", monospace;
  font-family: var(--sans);
  background: var(--page);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.05em;
}
h1 {
  font-size: clamp(60px, 7.5vw, 112px);
}
h2 {
  font-size: clamp(38px, 4vw, 60px);
}
h3 {
  font-size: 30px;
}
p {
  max-width: 68ch;
}
img {
  max-width: 100%;
  display: block;
}
section {
  scroll-margin-top: 60px;
}
.meta {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.035em;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 100;
  background: var(--page);
  padding: 12px;
}
.skip:focus {
  top: 60px;
}
.site-header {
  max-width: 1536px;
  margin: auto;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.wordmark span {
  border-left: 1px solid var(--ink);
  padding-left: 13px;
  font: 500 12px/1.2 var(--mono);
  letter-spacing: 0.02em;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 12px 18px;
}
.nav-directions {
  position: relative;
}
.nav-directions summary {
  list-style: none;
}
.nav-directions summary:after {
  content: " +";
  font-family: var(--mono);
}
.nav-directions[open] summary:after {
  content: " −";
}
.nav-directions > div {
  position: absolute;
  z-index: 30;
  top: 36px;
  left: -18px;
  min-width: 190px;
  border: 1px solid var(--line);
  background: var(--page);
  padding: 8px;
}
.nav-directions > div > a {
  display: block;
  padding: 10px;
}
.menu-button {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 15px;
}
main {
  max-width: 1536px;
  margin: auto;
}
.hero {
  padding: 40px 48px 0;
  position: relative;
}
.hero-place {
  display: block;
  margin-bottom: 28px;
}
.hero h1 {
  max-width: 1100px;
}
.hero-text {
  position: relative;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin: 36px 0;
}
.hero-description {
  font-size: 17px;
  max-width: 585px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  max-width: 450px;
}
.button {
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  min-height: 50px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border-radius: 3px;
  text-decoration: none;
}
.button:hover {
  background: var(--surface);
  text-decoration: none;
}
.button.primary {
  background: var(--ink);
  color: var(--page);
}
.button.primary:hover {
  opacity: 0.85;
}
.agent-link {
  font-size: 13px;
  width: 100%;
  text-align: right;
  padding: 6px 0;
}
.hero-media {
  height: 350px;
  position: relative;
  overflow: hidden;
}
.hero-media picture,
.team-portrait picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 58%;
}
.hero-media figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  padding: 10px 16px;
  font: 12px/1.4 var(--mono);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.handnote {
  font-family: Caveat, cursive;
  color: var(--accent);
  font-size: 32px;
  display: inline-block;
  line-height: 1.1;
  transform: rotate(-5deg);
  font-weight: 600;
  letter-spacing: 0;
}
.hero > .hero-text > .handnote {
  position: absolute;
  right: 4%;
  top: 140px;
}
.hero h1 span {
  position: relative;
}
.hero h1 span:after {
  content: "";
  position: absolute;
  left: 0;
  right: 2%;
  height: 6px;
  border-bottom: 3px solid var(--accent);
  bottom: -5px;
  transform: rotate(-1.4deg);
}
.section {
  padding: 80px 48px;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: 22% 1fr;
  gap: 20px;
  margin-bottom: 44px;
}
.section-head .meta {
  padding-top: 7px;
}
.section-head p {
  grid-column: 2;
  color: var(--muted);
  font-size: 18px;
}
.direction-list {
  display: flex;
  flex-direction: column;
}
.direction {
  display: grid;
  grid-template-columns: 22% 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  align-items: start;
}
.direction h3 {
  font-size: 34px;
}
.direction p {
  font-size: 17px;
  max-width: 40ch;
}
.direction-cta {
  grid-column: 3;
  font-size: 13px;
}
.direction:hover {
  text-decoration: none;
}
.direction:hover h3 {
  color: var(--accent);
}
.manifesto-excerpt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.manifesto-excerpt .section-head {
  display: block;
}
.manifesto-excerpt h2 {
  margin-top: 35px;
}
.excerpt > p {
  margin-bottom: 25px;
}
.excerpt .handnote {
  margin-bottom: 30px;
}
.signature {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}
.text-link {
  display: inline-flex;
  gap: 30px;
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
.product {
  border-top: 1px solid var(--line);
  padding: 26px 0 38px;
}
.product-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.product-top > .meta:first-child {
  margin-right: auto;
}
.stage {
  display: inline-block;
  border: 1px solid #8b9384;
  border-radius: 3px;
  padding: 3px 7px;
  font: 12px/1.4 var(--mono);
}
.stage.pilot {
  color: #755c18;
  border-color: #aa925b;
}
.stage.released {
  color: #386046;
  border-color: #7e9e89;
}
.stage.prototype {
  color: #626660;
}
.product h3 {
  font-size: 44px;
  margin-bottom: 18px;
}
.product p {
  margin-bottom: 16px;
  max-width: 53ch;
}
.product-limit {
  font-size: 14px;
  color: var(--muted);
}
.source-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 14px 0 25px;
  max-width: 85ch;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
  margin-top: 25px;
}
.portrait {
  height: 270px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.initials {
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 400;
  align-self: center;
  color: #b9bdb4;
}
.portrait-label {
  font: 12px/1.4 var(--mono);
  color: var(--muted);
}
.person h3 {
  font-size: 24px;
  margin-top: 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.role {
  font-size: 15px;
  margin: 8px 0 15px;
  color: var(--accent);
}
.bio {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.agent-person {
  border: 1px solid var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.agent-title h3 {
  font-size: 64px;
  line-height: 0.95;
}
.agent-person p {
  margin: 24px 0;
  font-size: 16px;
}
.log-entry {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 45px;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}
.log-entry h3 {
  font-size: 28px;
  margin-bottom: 18px;
}
.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-links .section-head {
  display: block;
  margin: 0;
}
.contact-links h2 {
  margin-top: 30px;
}
.contact-links > div:last-child > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  gap: 12px;
  line-height: 1.2;
}
.contact-links a span {
  font: 12px var(--mono);
  color: var(--muted);
  margin-left: auto;
}
.form-section {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
}
.form-intro h2 {
  font-size: 44px;
  margin: 28px 0;
}
.form-intro > p {
  margin-bottom: 26px;
}
.form-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}
.form-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px 17px;
  font-size: 14px;
}
.form-tabs button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--page);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.field {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 9px;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  padding: 12px;
  background: var(--page);
  color: var(--ink);
  border-radius: 2px;
  min-width: 0;
  width: 100%;
  font-size: 16px;
}
.field textarea {
  resize: vertical;
}
.field.full {
  grid-column: 1/-1;
}
.field-note {
  font-size: 12px;
  color: var(--muted);
}
.agent-note {
  margin: 24px 0;
  font-size: 14px;
}
.agent-note .field {
  margin-top: 20px;
}
.check {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  margin: 18px 0;
}
.check input {
  height: 18px;
  width: 18px;
  flex: 0 0 18px;
  accent-color: var(--accent);
}
.form-result {
  font-size: 14px;
  margin-top: 18px;
  color: var(--accent);
}
.idea-form {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 30px;
}
.idea-form button {
  margin-top: 15px;
}
.footer {
  max-width: 1536px;
  margin: 0 auto;
  padding: 50px 48px 28px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}
.footer-meta {
  width: 100%;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font: 12px/1.5 var(--mono);
  color: var(--muted);
}
.interior-hero {
  padding: 68px 48px 75px;
  border-bottom: 1px solid var(--line);
}
.interior-hero h1 {
  margin: 30px 0;
  font-size: clamp(70px, 8vw, 116px);
}
.interior-lead {
  font-size: 32px;
  line-height: 1.23;
  letter-spacing: -0.035em;
  max-width: 760px;
}
.interior-lead.compact {
  font-size: 27px;
  line-height: 1.4;
  max-width: 820px;
}
.interior-summary {
  margin: 24px 0 28px;
  max-width: 720px;
  font-size: 18px;
}
.interior-hero .handnote {
  margin-top: 28px;
}
.interior-hero .button {
  margin-top: 15px;
}
.process {
  margin: 60px 48px;
  position: relative;
}
.process > figcaption {
  margin-bottom: 30px;
}
.process ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
}
.process li {
  border-right: 1px solid var(--line);
  padding: 25px 16px;
}
.process li:last-child {
  border: 0;
}
.process li:nth-child(3) {
  background: var(--surface);
  border-top: 3px solid var(--accent);
  padding-top: 22px;
}
.process li > span {
  font: 12px var(--mono);
  color: var(--muted);
}
.process strong {
  display: block;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.035em;
  margin: 26px 0 12px;
}
.process li p {
  font-size: 14px;
  color: var(--muted);
}
.process > .handnote {
  margin: 18px 0 0 41%;
}
.why {
  display: grid;
  grid-template-columns: 22% 1fr;
  gap: 20px;
}
.why > p {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.large-statement {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 26px;
}
.city-photo {
  margin: 48px;
}
.city-photo picture {
  display: block;
}
.city-photo img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}
.city-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 12px/1.4 var(--mono);
  margin-top: 10px;
  color: var(--muted);
}
.article-layout {
  padding: 75px 48px;
  display: grid;
  grid-template-columns: 25% minmax(0, 720px);
  gap: 50px;
}
.article-layout aside {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
  font-size: 14px;
}
.article-layout aside .handnote {
  margin-top: 25px;
}
.prose h2 {
  font-size: 40px;
  line-height: 1.12;
  margin-bottom: 25px;
  scroll-margin-top: 30px;
}
.prose p {
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.prose h2:not(:first-child) {
  margin-top: 58px;
}
.prose blockquote {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 45px 0;
  padding: 30px 0;
  border-block: 1px solid var(--line);
  color: var(--accent);
}
.prose .signature {
  font-size: 15px;
  margin-top: 50px;
}
.prose .source-note {
  font-size: 12px;
}
.join-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.join-info h2 {
  margin: 25px 0;
}
.portrait.wide {
  height: 310px;
}
.portrait.wide strong {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ways-grid > article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.ways-grid h2 {
  font-size: 38px;
  margin: 24px 0;
}
.ways-grid p {
  margin-bottom: 22px;
}
.ways-grid code {
  font-size: 14px;
  font-family: var(--mono);
}
.partner-offer {
  display: grid;
  grid-template-columns: 22% 1fr;
  gap: 20px;
}
.partner-offer > p:last-child {
  grid-column: 2;
  max-width: 600px;
}
.copy-panel {
  margin-top: 65px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.copy-panel h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.copy-panel p {
  margin-bottom: 24px;
}
.copy-panel pre {
  background: var(--surface);
  white-space: pre-wrap;
  word-break: break-word;
  padding: 25px;
  font: 14px/1.65 var(--mono);
  margin: 24px 0;
}

@media (min-width: 1500px) {
  .hero > .hero-text > .handnote {
    right: 5%;
    top: 155px;
  }
}
@media (max-width: 1000px) {
  .site-header {
    padding: 24px;
  }
  .site-header nav {
    gap: 16px;
    font-size: 13px;
  }
  .hero {
    padding: 35px 24px 0;
  }
  .hero > .hero-text > .handnote {
    right: 3%;
    top: 130px;
    font-size: 27px;
  }
  .hero-bottom {
    gap: 30px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 430px;
  }
  .section {
    padding: 64px 24px;
  }
  .form-section {
    gap: 45px;
  }
  .people-grid {
    gap: 30px 20px;
  }
  .portrait {
    height: 230px;
  }
  .interior-hero {
    padding: 55px 24px;
  }
  .article-layout {
    padding: 60px 24px;
    gap: 28px;
  }
  .footer {
    padding: 40px 24px;
  }
  .process {
    margin: 50px 24px;
  }
  .process li {
    padding: 18px 12px;
  }
  .process strong {
    font-size: 20px;
  }
  .city-photo {
    margin: 24px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .site-header {
    padding: 22px 20px;
    position: relative;
  }
  .wordmark {
    font-size: 29px;
  }
  .menu-button {
    display: block;
    min-height: 44px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 85px;
    z-index: 40;
    background: var(--page);
    border: 1px solid var(--line);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-header nav.open {
    display: flex;
  }
  .site-header nav > a,
  .nav-directions > summary {
    padding: 14px 0;
  }
  .nav-directions > div {
    position: static;
    border: 0;
    padding: 0 15px;
  }
  .nav-cta {
    padding: 14px !important;
    text-align: center;
    margin-top: 10px;
  }
  .hero {
    padding: 24px 20px 0;
  }
  .hero h1 {
    font-size: clamp(43px, 11.7vw, 70px);
    letter-spacing: -0.05em;
    line-height: 1.02;
  }
  .hero-place {
    margin-bottom: 24px;
    font-size: 11px;
  }
  .hero > .hero-text > .handnote {
    position: static;
    font-size: 27px;
    margin: 20px 0 0 8px;
  }
  .hero-bottom {
    display: block;
    margin: 25px 0;
  }
  .hero-description {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: start;
    margin-top: 25px;
    gap: 10px;
    max-width: none;
  }
  .button {
    padding: 13px 16px;
    min-height: 48px;
    font-size: 13px;
  }
  .agent-link {
    text-align: left;
    margin-top: 4px;
  }
  .hero-media {
    height: 275px;
  }
  .hero-media figcaption {
    font-size: 10px;
    display: block;
    padding: 9px 12px;
  }
  .hero-media figcaption span {
    display: block;
    margin-top: 4px;
  }
  .section {
    padding: 52px 20px;
  }
  .section-head {
    display: block;
    margin-bottom: 32px;
  }
  .section-head h2 {
    font-size: 39px;
    margin-top: 20px;
  }
  .section-head p {
    font-size: 17px;
    margin-top: 20px;
  }
  .direction {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 24px 0;
  }
  .direction h3 {
    font-size: 31px;
  }
  .direction-cta {
    grid-column: 1;
  }
  .direction p {
    font-size: 16px;
  }
  .manifesto-excerpt {
    display: block;
  }
  .manifesto-excerpt .section-head {
    margin-bottom: 32px;
  }
  .manifesto-excerpt h2 {
    margin-top: 20px;
  }
  .excerpt {
    font-size: 17px;
  }
  .handnote {
    font-size: 27px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product h3 {
    font-size: 40px;
  }
  .product p {
    font-size: 16px;
  }
  .product-top {
    margin-bottom: 20px;
  }
  .people-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .portrait {
    height: 200px;
    padding: 13px;
  }
  .initials {
    font-size: 52px;
  }
  .portrait-label {
    font-size: 10px;
  }
  .person h3 {
    font-size: 21px;
    line-height: 1.15;
  }
  .role {
    font-size: 13px;
  }
  .bio {
    font-size: 13px;
  }
  .agent-person {
    grid-column: 1/-1;
    padding: 22px;
  }
  .agent-title h3 {
    font-size: 48px;
  }
  .log-entry {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .log-entry h3 {
    font-size: 26px;
  }
  .contact-links {
    display: block;
  }
  .contact-links > div:last-child {
    margin-top: 35px;
  }
  .contact-links > div:last-child > a {
    font-size: 22px;
  }
  .contact-links a span {
    font-size: 11px;
  }
  .form-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .form-intro h2 {
    font-size: 38px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: 1;
  }
  .footer {
    padding: 40px 20px 25px;
    gap: 30px;
  }
  .footer-links {
    gap: 18px;
    font-size: 13px;
  }
  .footer-meta {
    flex-direction: column;
    gap: 12px;
  }
  .interior-hero {
    padding: 40px 20px 50px;
  }
  .interior-hero h1 {
    font-size: 58px;
    line-height: 1.02;
    overflow-wrap: normal;
  }
  .interior-lead {
    font-size: 26px;
    max-width: 100%;
  }
  .interior-lead.compact {
    font-size: 23px;
  }
  .interior-summary {
    font-size: 17px;
  }
  .process {
    margin: 40px 20px;
  }
  .process ol {
    grid-template-columns: 1fr;
  }
  .process li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 20px;
  }
  .process strong {
    margin: 0;
    font-size: 23px;
  }
  .process li p {
    grid-column: 2;
  }
  .process li:nth-child(3) {
    padding-top: 17px;
  }
  .process > .handnote {
    margin: 20px 0;
  }
  .why {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .why > p {
    font-size: 22px;
  }
  .city-photo {
    margin: 20px;
  }
  .city-photo img {
    min-height: 320px;
  }
  .city-photo figcaption {
    display: block;
    font-size: 11px;
  }
  .city-photo figcaption span {
    display: block;
    margin-top: 5px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    padding: 45px 20px;
    gap: 38px;
  }
  .article-layout aside {
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
    flex-flow: row wrap;
    gap: 16px;
  }
  .article-layout aside .meta {
    width: 100%;
  }
  .article-layout aside .handnote {
    display: none;
  }
  .prose h2 {
    font-size: 34px;
  }
  .prose p {
    font-size: 18px;
    line-height: 1.65;
  }
  .prose blockquote {
    font-size: 38px;
  }
  .join-info {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ways-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .ways-grid h2 {
    font-size: 35px;
  }
  .partner-offer {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .partner-offer > p:last-child {
    grid-column: 1;
  }
  .copy-panel h2 {
    font-size: 31px;
  }
  .copy-panel pre {
    padding: 18px;
    font-size: 12px;
  }
  .copy-panel .button {
    width: 100%;
  }
  .source-note {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Standalone site interactions and accessibility. */
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.footer-copy {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  text-align: left;
}
.footer-copy:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-copy-status {
  width: 100%;
  font-size: 13px;
}
.footer-copy-status:empty {
  display: none;
}
.copy-fallback {
  white-space: pre-wrap;
  user-select: all;
  overflow-wrap: anywhere;
}
.form-result.error {
  color: #a02222;
}
.check a {
  text-decoration: underline;
}
.log-empty {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}
.log-empty p:first-child {
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}
.log-empty p:last-child {
  color: var(--muted);
}
.portrait {
  justify-content: center;
}
.portrait.wide {
  justify-content: space-between;
}
.portrait.team-portrait {
  padding: 0;
  overflow: hidden;
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.prose a {
  text-decoration: underline;
}
#site-nav [aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.footer-links a,
.footer-copy {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 720px) {
  .check {
    line-height: 1.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
