:root {
  color-scheme: light;
  --paper: #f6f0e7;
  --surface: #fffcf7;
  --surface-subtle: #eee6da;
  --ink: #302922;
  --muted: #6c5e51;
  --line: #d9cbbb;
  --line-strong: #958170;
  --clay: #a54127;
  --clay-hover: #87351f;
  --clay-soft: #efdbcd;
  --ink-surface: #302923;
  --on-ink: #f6f0e7;
  --on-ink-muted: #d2c2b2;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, Consolas, monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
}
::selection {
  background: var(--clay-soft);
  color: var(--ink);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  overflow-wrap: break-word;
}
.container {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.narrow {
  max-width: 780px;
}
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand img {
  width: 36px;
  height: 36px;
}
.brand span {
  font-size: 1.4rem;
  letter-spacing: -0.065em;
  font-weight: 700;
}
.primary-nav,
.header-actions,
.footer-links,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.primary-nav a,
.footer-links a,
.footer-meta a {
  font-size: 0.875rem;
  color: var(--muted);
}
.primary-nav a:hover,
.footer-links a:hover,
.footer-meta a:hover {
  color: var(--clay);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 52px;
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
  transition:
    background 160ms ease,
    border-color 160ms ease;
}
.button--primary {
  color: var(--surface);
  background: var(--clay);
  border-color: var(--clay);
}
.button--primary:hover {
  background: var(--clay-hover);
  border-color: var(--clay-hover);
}
.button--small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
}
.button--ghost {
  background: transparent;
}
.button--ghost:hover {
  background: var(--surface-subtle);
}
.button span,
.text-link span {
  font-size: 1.15em;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--clay);
  font-size: 0.9375rem;
  font-weight: 500;
  text-underline-offset: 0.3em;
}
.text-link:hover {
  text-decoration: underline;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.release-label {
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}
.hero {
  overflow: clip;
}
.hero__content {
  min-width: 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-block: 6.5rem 5.5rem;
}
.hero h1 {
  margin: 0 0 1.6rem;
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 6.4vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.047em;
  font-weight: 400;
}
.hero h1 em {
  color: var(--clay);
  font-weight: 400;
}
.hero__lede {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2rem;
}
.hero__note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}
.hero__footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line);
}
.hero__footnote > span {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  color: var(--muted);
}
.hero__footnote a {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}
.publication {
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 20px 60px -30px #59433240;
}
.publication__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.publication__page {
  padding: 2rem 2.25rem 2.4rem;
}
.publication__mark {
  width: 42px;
  height: 42px;
  margin-bottom: 1.75rem;
}
.publication__page .eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
}
.publication__page h2 {
  margin-bottom: 1.1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.7vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.publication__page > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}
.publication__byline {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.75rem;
}
.publication__rule {
  width: 1.5rem;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}
.publication__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--surface-subtle);
  border-top: 1px solid var(--line);
  border-radius: 0 0 5px 5px;
  font-size: 0.8125rem;
}
.publication__caption code {
  font-family: var(--font-mono);
}
.publication__caption > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clay);
}
.section {
  padding-block: 6rem;
}
.section-heading {
  max-width: 740px;
  margin-bottom: 3rem;
}
.section-heading h2,
.cta h2 {
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.section-heading p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.0625rem;
}
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 5rem;
}
.section-heading--split h2 {
  margin-bottom: 0;
}
.section-heading--split > p {
  margin-bottom: 0.4rem;
}
.writing-section,
.why-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 6rem;
}
.writing-section .section-heading,
.why-section .section-heading {
  margin-bottom: 0;
}
.writing-section .section-heading .text-link {
  margin-top: 0.7rem;
}
.feature-list article {
  display: flex;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-top: 1px solid var(--line);
}
.feature-list article:first-child {
  padding-top: 1.5rem;
}
.feature-list article:last-child {
  padding-bottom: 0;
}
.feature-number {
  padding-top: 0.2rem;
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.feature-list h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.feature-list p {
  margin-bottom: 0;
  color: var(--muted);
}
.section--architecture {
  background: var(--surface-subtle);
  border-block: 1px solid var(--line);
}
.publishing-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}
.publishing-flow li {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.publishing-flow li + li {
  border-left: 1px solid var(--line);
}
.flow-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  color: var(--clay);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.flow-label > span:last-child {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  line-height: 1;
}
.publishing-flow h3 {
  margin-bottom: 1rem;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.publishing-flow p {
  margin-bottom: 1.75rem;
  color: var(--muted);
}
.flow-detail {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
}
.architecture-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.architecture-notes h3 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}
.architecture-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}
.benefit-list {
  margin: 0;
}
.benefit-list > div {
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
}
.benefit-list dt {
  margin-bottom: 0.6rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.benefit-list dd {
  margin: 0;
  color: var(--muted);
}
.manifesto {
  padding-block: 4.5rem;
  background: var(--ink-surface);
  color: var(--on-ink);
}
.manifesto__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.manifesto__inner > img {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.manifesto .eyebrow {
  color: var(--on-ink-muted);
}
.manifesto h2 {
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.3vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.manifesto h2 em {
  color: #eea280;
}
.manifesto p:last-child {
  margin: 0;
  color: var(--on-ink-muted);
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.path-grid article {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.path-grid article:first-child {
  background: var(--clay-soft);
}
.path-grid .eyebrow {
  margin-bottom: 1.5rem;
}
.path-grid h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.path-grid article > p:not(.eyebrow) {
  color: var(--muted);
}
.path-grid .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}
.cta {
  padding-block: 4.5rem;
  background: var(--clay-soft);
  border-top: 1px solid var(--line);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
}
.cta h2 {
  margin-bottom: 0;
}
.cta em,
.product-hero em {
  color: var(--clay);
}
.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  justify-self: end;
}
.cta__note {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
}
.product-hero {
  padding-block: 5.5rem 0;
}
.product-hero h1 {
  max-width: 1000px;
  margin-block: 1rem 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.product-hero__lede {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.125rem;
}
.product-selection {
  padding-top: 3.5rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 1rem;
}
.product-card h2 {
  margin-bottom: 1.1rem;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.product-card__summary {
  max-width: 35rem;
  font-size: 1.0625rem;
}
.product-card p:not(.eyebrow),
.product-card li {
  color: var(--muted);
}
.product-card ul {
  padding-left: 1.1rem;
  margin-block: 0.75rem 1.5rem;
}
.product-card li + li {
  margin-top: 0.7rem;
}
.product-card li::marker {
  color: var(--clay);
}
.product-card > .text-link {
  margin-top: auto;
}
.product-card code,
.package-name {
  font-family: var(--font-mono);
  font-size: 0.875em;
  overflow-wrap: anywhere;
}
.package-name {
  padding-block: 0.9rem;
  margin-bottom: 1.5rem;
  border-block: 1px solid var(--line);
}
.product-card--studio {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}
.product-card--studio h2 {
  font-size: 3.5rem;
}
.product-card__intro .button {
  margin-top: 0.75rem;
}
.product-card__details ul {
  margin-top: 0;
}
.product-note {
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
}
.edge-note {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0.3rem 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.edge-note .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}
.edge-note h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.2;
}
.edge-note > p:not(.eyebrow) {
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.edge-note .text-link {
  grid-column: 2;
}
.legal-page {
  padding-block: 5rem 7rem;
}
.prose {
  max-width: 760px;
  overflow-wrap: anywhere;
}
.prose h1 {
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.prose h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.3;
}
.prose h3 {
  margin-top: 1.75rem;
  font-size: 1.25rem;
}
.prose p,
.prose li {
  color: var(--muted);
}
.prose a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 3rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand > p {
  color: var(--muted);
  font-size: 0.8125rem;
  margin: 0.75rem 0 0;
}
.footer-links {
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.footer-meta {
  align-items: flex-end;
  flex-direction: column;
  gap: 0.65rem;
}
@media (max-width: 1000px) {
  .primary-nav {
    gap: 1.1rem;
  }
  .site-header__inner {
    gap: 1.5rem;
  }
  .hero__inner {
    gap: 2rem;
  }
  .hero h1 {
    font-size: clamp(3.5rem, 6.7vw, 5.5rem);
  }
  .hero__actions {
    gap: 1.2rem;
  }
  .publication__page {
    padding: 1.75rem;
  }
  .writing-section,
  .why-section {
    gap: 3rem;
  }
  .section-heading--split {
    gap: 3rem;
  }
  .publishing-flow li,
  .path-grid article {
    padding: 1.5rem;
  }
  .product-card--studio {
    gap: 2.5rem;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 9rem;
  }
  .container {
    width: calc(100% - 48px);
  }
  .site-header__inner {
    flex-wrap: wrap;
    min-height: auto;
    gap: 0;
    padding-top: 1rem;
  }
  .header-actions {
    margin-left: auto;
  }
  .primary-nav {
    order: 3;
    justify-content: space-between;
    width: 100%;
    gap: 0.65rem;
    margin-top: 0.8rem;
    padding-block: 0.6rem;
    border-top: 1px solid var(--line);
  }
  .primary-nav a {
    min-height: 32px;
    display: flex;
    align-items: center;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 3.5rem 3rem;
    gap: 3rem;
  }
  .hero h1 {
    font-size: clamp(3.75rem, 10vw, 5.75rem);
  }
  .hero__lede {
    max-width: 35rem;
  }
  .publication {
    max-width: 35rem;
  }
  .publication__page {
    padding: 2rem;
  }
  .publication__page h2 {
    font-size: 2.8rem;
  }
  .hero__footnote > span {
    max-width: 18rem;
  }
  .section {
    padding-block: 4rem;
  }
  .writing-section,
  .why-section,
  .section-heading--split,
  .publishing-flow,
  .architecture-notes,
  .path-grid,
  .product-grid,
  .product-card--studio,
  .cta__inner,
  .edge-note {
    grid-template-columns: 1fr;
  }
  .section-heading--split {
    gap: 1.5rem;
  }
  .writing-section,
  .why-section {
    gap: 2rem;
  }
  .publishing-flow li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .publishing-flow li {
    padding: 1.75rem;
  }
  .flow-label {
    margin-bottom: 1.5rem;
  }
  .architecture-notes {
    gap: 1.5rem;
  }
  .manifesto__inner {
    gap: 2.5rem;
  }
  .manifesto__inner > img {
    width: 64px;
    height: 64px;
  }
  .cta__inner {
    gap: 2rem;
  }
  .cta__actions {
    justify-self: start;
  }
  .product-grid {
    gap: 2.5rem;
  }
  .product-card--studio {
    gap: 2rem;
    padding: 2rem;
  }
  .edge-note {
    gap: 1rem;
  }
  .edge-note .text-link {
    grid-column: 1;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-row: span 2;
  }
  .footer-links {
    justify-content: flex-start;
  }
  .footer-meta {
    align-items: flex-start;
  }
  .product-hero {
    padding-top: 3.5rem;
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 40px);
  }
  .brand img {
    width: 30px;
    height: 30px;
  }
  .brand span {
    font-size: 1.25rem;
  }
  .button--small {
    padding: 0.6rem 0.8rem;
  }
  .header-actions .button span {
    display: none;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 12vw, 4.5rem);
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero__footnote {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero__footnote > span {
    max-width: none;
    font-size: 0.75rem;
  }
  .publication__page {
    padding: 1.5rem;
  }
  .publication__page h2 {
    font-size: 2.25rem;
  }
  .publication__bar,
  .publication__caption {
    padding-inline: 1rem;
  }
  .publication__byline {
    align-items: flex-start;
  }
  .publication__rule {
    margin-top: 0.6rem;
  }
  .manifesto__inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-card--studio {
    padding: 1.5rem;
  }
  .product-card--studio h2 {
    font-size: 2.75rem;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-row: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
