/*
 * Cohere-informed public composition layer.
 * Owns page rhythm and evidence hierarchy without replacing Alderson's palette.
 */

.public-site {
  --wire-canvas: #ffffff;
  --wire-ink: #171717;
  --wire-muted: #66665f;
  --wire-line: rgba(23, 23, 23, 0.16);
  --wire-dark: #121310;
  --wire-max: 1280px;
  --wire-gutter: clamp(20px, 3.2vw, 44px);
  --wire-section: clamp(92px, 10vw, 152px);
}

.public-site main :is(h1, h2) {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0;
}

/* Quiet media scaffolding while final product films are prepared. */
.public-site main figure {
  background: #f4f4f1;
  box-shadow: inset 0 0 0 1px #e8e8e4;
}

.public-site main figure img {
  visibility: hidden;
}

.public-site main .wire-media-pair figcaption {
  visibility: hidden;
}

.public-site main .workspace-product-stage figcaption {
  visibility: hidden;
}

.public-site main .roadmap-workbase-figure figcaption {
  visibility: hidden;
}

.public-site main .wire-feature-designer figure {
  background: #1b1c19;
  box-shadow: inset 0 0 0 1px #252622;
}

.home-hero-workspace {
  display: none;
}

/* Account Gateway pages share the public Alderson shell. */
.gateway-page {
  background: #ffffff;
}

.gateway-page .gateway-main {
  min-height: 62vh;
  background: #ffffff;
}

.gateway-page .gateway-container {
  box-sizing: border-box;
  width: min(100%, var(--wire-max));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 116px) var(--wire-gutter) clamp(96px, 10vw, 144px);
}

.gateway-page .gateway-container h1,
.gateway-page .gateway-container h2,
.gateway-page .gateway-container p,
.gateway-page .gateway-container figure {
  margin-top: 0;
}

.gateway-page .gateway-container h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.gateway-page .gateway-container h2 {
  font-weight: 400;
  letter-spacing: 0;
}

.gateway-page .eyebrow {
  margin-bottom: 18px;
  color: var(--wire-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gateway-page .lede {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--wire-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.gateway-page .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gateway-page .button,
.gateway-page button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid var(--wire-ink);
  border-radius: 999px;
  background: #ffffff;
  color: var(--wire-ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.gateway-page .button:hover,
.gateway-page .button:focus-visible,
.gateway-page button:hover,
.gateway-page button:focus-visible {
  background: #f1f1ed;
  transform: translateY(-1px);
}

.gateway-page .button.primary,
.gateway-page button.primary {
  background: var(--wire-ink);
  color: #ffffff;
}

.gateway-page .button.primary:hover,
.gateway-page .button.primary:focus-visible,
.gateway-page button.primary:hover,
.gateway-page button.primary:focus-visible {
  background: #333333;
}

.gateway-page .button.quiet {
  padding-inline: 12px;
  border-color: transparent;
}

.gateway-page .status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 11px;
  border: 1px solid var(--wire-line);
  border-radius: 999px;
  background: #f6f6f3;
  color: var(--wire-ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gateway-page .agent-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.gateway-page .agent-artwork {
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: #f1f1ed;
  box-shadow: none;
}

.gateway-page .agent-artwork img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gateway-page .page-section {
  margin-top: clamp(72px, 9vw, 124px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--wire-line);
}

.gateway-page .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: end;
}

.gateway-page .section-heading h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.gateway-page .section-heading p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--wire-muted);
  font-size: 17px;
  line-height: 1.55;
}

.gateway-page .capability-list,
.gateway-page .workflow-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--wire-line);
  list-style: none;
}

.gateway-page .capability-list li,
.gateway-page .workflow-list li {
  min-height: 154px;
  padding: 24px;
  border-right: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  font-size: 17px;
}

.gateway-page .capability-list li:last-child,
.gateway-page .workflow-list li:last-child {
  border-right: 0;
}

.gateway-page .workflow-list li {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.gateway-page .workflow-list span {
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
}

.gateway-page .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid var(--wire-line);
  border-left: 1px solid var(--wire-line);
}

.gateway-page .card {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  background: #ffffff;
}

.gateway-page .card small {
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gateway-page .card h2 {
  margin: 36px 0 12px;
  font-size: 28px;
}

.gateway-page .card p,
.gateway-page .fine,
.gateway-page .notice span {
  color: var(--wire-muted);
}

.gateway-page .card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--wire-ink);
  font-weight: 600;
  text-underline-offset: 4px;
}

.gateway-page .notice {
  display: grid;
  gap: 5px;
  max-width: 720px;
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid var(--wire-line);
  background: #f6f6f3;
}

.gateway-page .compact {
  max-width: 900px;
}

.gateway-page .compact h1 {
  font-size: clamp(48px, 6vw, 72px);
}

.gateway-page form.stack {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-top: 32px;
}

.gateway-page form.stack label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--wire-line);
  background: #ffffff;
}

.gateway-page .policy-review {
  max-width: 720px;
}

.gateway-page .policy-review > ul {
  display: grid;
  gap: 10px;
  margin: 38px 0 0;
  padding-left: 20px;
  color: var(--wire-muted);
  line-height: 1.5;
}

.gateway-page form.stack.policy-form {
  justify-items: start;
  padding-top: 28px;
  border-top: 1px solid var(--wire-line);
}

.gateway-page form.stack.policy-form label {
  align-items: center;
  padding: 0;
  border: 0;
}

.gateway-page form.stack.policy-form label a {
  color: var(--wire-ink);
}

.gateway-page form.stack.policy-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--wire-ink);
}

.gateway-page .contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.gateway-page .contact-intro {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 42px;
}

.gateway-page .contact-intro h1 {
  font-size: clamp(48px, 5.5vw, 72px);
}

.gateway-page .contact-details {
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--wire-line);
}

.gateway-page .contact-details div {
  display: grid;
  gap: 3px;
}

.gateway-page .contact-details small {
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gateway-page .contact-form {
  display: grid;
  gap: 17px;
}

.gateway-page .contact-form h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 48px);
}

.gateway-page .contact-form label {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wire-ink);
  font-size: 13px;
  font-weight: 600;
}

.gateway-page .contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gateway-page .contact-form input,
.gateway-page .contact-form select,
.gateway-page .contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--wire-line);
  border-radius: 0;
  background: #ffffff;
  color: var(--wire-ink);
  font: inherit;
}

.gateway-page .contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.gateway-page .contact-form :is(input, select, textarea):focus {
  border-color: var(--wire-ink);
  outline: 2px solid rgba(23, 23, 23, 0.12);
  outline-offset: 2px;
}

.gateway-page .contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.gateway-page .form-help,
.gateway-page .form-status {
  color: var(--wire-muted);
  font-size: 12px;
}

.gateway-page .form-status {
  padding: 13px 14px;
  border: 1px solid #aa493d;
  background: #fff5f3;
  color: #74392f;
}

.gateway-page .contact-success {
  display: grid;
  min-height: 380px;
  align-content: center;
  gap: 16px;
}

.gateway-page .contact-success h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 6vw, 76px);
}

.gateway-page .contact-success p {
  max-width: 540px;
  color: var(--wire-muted);
  font-size: 18px;
}

.gateway-page .account-entry {
  display: block;
  max-width: 720px;
  min-height: 380px;
  padding-top: clamp(36px, 6vw, 76px);
}

.gateway-page .account-auth {
  display: grid;
  width: min(100% - 48px, 920px);
  max-width: none;
  min-height: calc(100vh - 64px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  grid-template-rows: auto auto;
  column-gap: clamp(56px, 9vw, 112px);
  align-content: center;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) 0;
}

.account-auth-intro h1 {
  margin: 0;
  font-family: var(--font-sans) !important;
  font-size: clamp(36px, 4.2vw, 50px);
  font-weight: 650 !important;
  letter-spacing: -0.035em !important;
  line-height: 1;
}

.account-auth-intro p {
  max-width: 460px;
  margin: 18px 0 0;
  color: var(--wire-muted);
  font-size: 17px;
  line-height: 1.5;
}

.account-auth-actions {
  display: grid;
  gap: 12px;
  align-self: center;
}

.account-auth-actions .button {
  width: 100%;
  min-height: 50px;
  justify-content: center;
}

.account-auth-details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(56px, 7vw, 80px) 0 0;
  border-top: 1px solid var(--wire-line);
}

.account-auth-details > div {
  display: grid;
  gap: 7px;
  padding: 24px clamp(22px, 3.5vw, 46px) 0 0;
}

.account-auth-details > div + div {
  padding-left: clamp(22px, 3.5vw, 46px);
  border-left: 1px solid var(--wire-line);
}

.account-auth-details dt {
  font-size: 15px;
  font-weight: 650;
}

.account-auth-details dd {
  margin: 0;
  color: var(--wire-muted);
  font-size: 14px;
}

.models-page .gateway-container,
.pricing-page .gateway-container {
  max-width: 1120px;
}

.account-page .public-topbar {
  position: sticky;
  top: 0;
  min-height: 64px;
  padding-inline: 24px;
  border-bottom: 1px solid var(--wire-line);
  background: var(--wire-canvas);
}

.account-page .public-topbar > :not(.wordmark) {
  display: none;
}

.account-page .public-topbar .wordmark strong {
  font-size: 22px;
}

.account-page .gateway-main {
  min-height: calc(100vh - 64px);
}

.account-page .gateway-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.account-page .site-footer {
  display: none;
}

.model-catalog-hero,
.model-detail-hero,
.plan-catalog-hero,
.account-overview {
  padding-bottom: clamp(54px, 7vw, 88px);
}

.account-email {
  margin: 0;
  color: var(--wire-muted);
  font-size: 17px;
}

.account-status {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
  padding: 14px 0;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  color: var(--wire-muted);
  font-size: 15px;
}

.account-status strong {
  color: var(--wire-ink);
}

.account-status a {
  color: var(--wire-ink);
  font-weight: 650;
}

.pricing-hero {
  display: grid;
  min-height: clamp(440px, 47vw, 590px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
  padding: clamp(58px, 7vw, 92px) 0;
  border-bottom: 1px solid var(--wire-line);
}

.pricing-identity h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(72px, 8.2vw, 116px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.pricing-identity > p {
  max-width: 560px;
  margin: 32px 0 0;
  color: var(--wire-muted);
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.45;
}

.pricing-purchase {
  padding-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin: 0 0 32px;
}

.pricing-price strong {
  font-family: "Figtree", sans-serif;
  font-size: clamp(72px, 7vw, 94px);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.pricing-price span {
  padding-bottom: 5px;
  color: var(--wire-muted);
  font-size: 14px;
  line-height: 1.25;
}

.pricing-purchase .button {
  min-width: 176px;
  justify-content: center;
}

.pricing-terms,
.pricing-status {
  max-width: 300px;
  margin: 16px 0 0;
  color: var(--wire-muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-status {
  margin: 0 0 18px;
  color: var(--wire-ink);
}

.pricing-included {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 128px);
  padding: clamp(86px, 10vw, 136px) 0;
  border-bottom: 1px solid var(--wire-line);
}

.pricing-included > h2,
.pricing-questions h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(42px, 4.7vw, 66px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.pricing-benefit-list {
  border-top: 1px solid var(--wire-line);
}

.pricing-benefit-list article {
  display: grid;
  grid-template-columns: minmax(132px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(24px, 4vw, 54px);
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--wire-line);
}

.pricing-benefit-list h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
}

.pricing-benefit-list p {
  max-width: 620px;
  margin: 0;
  color: var(--wire-muted);
  font-size: 16px;
  line-height: 1.52;
}

.pricing-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 42px 0;
  border-bottom: 1px solid var(--wire-line);
}

.pricing-assurance > div {
  display: grid;
  gap: 8px;
  padding-right: clamp(24px, 4vw, 52px);
}

.pricing-assurance > div + div {
  padding-left: clamp(24px, 4vw, 52px);
  border-left: 1px solid var(--wire-line);
}

.pricing-assurance strong {
  font-size: 16px;
}

.pricing-assurance span {
  color: var(--wire-muted);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-questions {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 128px);
  padding: clamp(86px, 10vw, 136px) 0 0;
}

.pricing-questions dl {
  margin: 0;
  border-top: 1px solid var(--wire-line);
}

.pricing-questions dl > div {
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--wire-line);
}

.pricing-questions dt {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 650;
}

.pricing-questions dd {
  max-width: 680px;
  margin: 0;
  color: var(--wire-muted);
  line-height: 1.55;
}

.plan-catalog {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--wire-line);
}

.plan-catalog article {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  column-gap: clamp(48px, 9vw, 128px);
  min-height: 0;
  padding: clamp(32px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--wire-line);
}

.plan-catalog h2 {
  grid-row: 1 / span 2;
  max-width: 560px;
}

.plan-catalog ul {
  margin-top: 0;
}

.plan-catalog article > a {
  align-self: end;
  justify-self: start;
}

.model-catalog {
  border-top: 1px solid var(--wire-line);
}

.model-catalog article {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(48px, 9vw, 128px);
  min-height: 300px;
  padding: clamp(32px, 5vw, 60px) 0;
  border-bottom: 1px solid var(--wire-line);
}

.model-catalog article > div:last-child {
  align-self: end;
}

.model-catalog h2,
.plan-catalog h2,
.account-access h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3vw, 40px);
}

.model-catalog p,
.plan-catalog p,
.account-access p,
.account-access-state p {
  color: var(--wire-muted);
  line-height: 1.55;
}

.model-catalog ul,
.plan-catalog ul,
.account-facts ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.model-catalog li,
.plan-catalog li,
.account-facts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--wire-line);
}

.model-catalog a,
.plan-catalog a,
.account-model-list a {
  color: var(--wire-ink);
  font-weight: 650;
}

.model-detail-hero {
  max-width: 900px;
}

.model-media-slot {
  width: 100%;
  margin: 0;
  border: 1px solid var(--wire-line);
  background: #deddd7;
}

.model-media-slot-primary {
  aspect-ratio: 16 / 8.5;
}

.model-media-slot-secondary {
  width: min(78%, 860px);
  aspect-ratio: 16 / 9;
  margin-left: auto;
}

.model-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(48px, 9vw, 132px);
  padding: clamp(72px, 10vw, 138px) 0;
  border-bottom: 1px solid var(--wire-line);
}

.model-story h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.model-story p {
  max-width: 620px;
  margin: 0 0 34px;
  color: var(--wire-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.model-story ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--wire-line);
}

.model-story li {
  padding: 14px 0;
  border-bottom: 1px solid var(--wire-line);
}

.model-story a {
  color: var(--wire-ink);
  font-weight: 650;
}

.account-access {
  overflow: hidden;
  padding: 0;
  border-radius: 12px;
  background: #f6f6f4;
  scroll-margin-top: 84px;
}

.account-access-state {
  min-height: 220px;
  padding: 36px 0 46px;
  border-top: 1px solid var(--wire-line);
}

.account-access-state h2 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.account-access-state .button {
  margin-top: 18px;
}

.account-access-state.error {
  color: #711f1f;
}

.account-settings-shell {
  display: block;
  width: 100%;
  min-height: calc(100vh - 64px);
  box-sizing: border-box;
  padding-left: 240px;
}

.account-settings-sidebar {
  position: fixed;
  z-index: 10;
  top: 64px;
  bottom: 0;
  left: 0;
  display: flex;
  width: 240px;
  box-sizing: border-box;
  flex-direction: column;
  padding: 34px 22px 24px;
  border-right: 1px solid var(--wire-line);
  background: #f0f0ed;
}

.account-settings-sidebar > strong {
  padding: 0 10px 18px;
  font-size: 17px;
  font-weight: 650;
}

.account-settings-sidebar nav {
  display: grid;
  gap: 4px;
}

.account-settings-sidebar nav a {
  display: flex;
  min-height: 40px;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--wire-muted);
  font-size: 14px;
  font-weight: 540;
  text-decoration: none;
}

.account-settings-sidebar nav a:hover,
.account-settings-sidebar nav a:focus-visible {
  background: rgba(23, 23, 23, 0.065);
  color: var(--wire-ink);
}

.account-settings-sidebar nav a[aria-current="page"] {
  background: rgba(23, 23, 23, 0.1);
  color: var(--wire-ink);
  font-weight: 650;
}

.account-sidebar-identity {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 18px 10px 0;
  border-top: 1px solid var(--wire-line);
}

.account-sidebar-identity > span {
  overflow: hidden;
  color: var(--wire-muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-sidebar-utilities {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.public-site .account-theme-switcher {
  min-height: 34px;
}

.public-site .account-theme-switcher .theme-mode-button {
  width: 27px;
  height: 27px;
  min-height: 27px;
}

.public-site .account-theme-switcher .theme-mode-icon {
  width: 15px;
  height: 15px;
}

.account-settings-content {
  width: min(100% - 80px, 920px);
  min-width: 0;
  margin: 0 auto;
  padding: 42px 0 88px;
}

.account-overview {
  display: block;
  min-height: 0;
  padding: 0 0 34px;
}

.account-overview h1 {
  margin: 0 0 8px !important;
  font-family: var(--font-sans) !important;
  font-size: 32px !important;
  font-weight: 650 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.1 !important;
}

.account-overview > p {
  margin: 0;
  color: var(--wire-muted);
  font-size: 14px;
}

.account-access-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 24px 26px;
  scroll-margin-top: 84px;
}

.account-access-heading h2 {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.account-page .account-settings-content :is(h1, h2, h3) {
  font-family: var(--font-sans) !important;
}

.account-plan-status {
  margin: 0;
  color: var(--wire-muted);
  font-size: 15px;
  line-height: 1.45;
}

.account-plan-controls {
  display: flex;
  min-width: 0;
  gap: 24px;
  align-items: center;
  justify-items: end;
}

.account-plan-price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 0;
  color: var(--wire-ink) !important;
}

.account-plan-price strong {
  font-family: "Figtree", sans-serif;
  font-size: 27px;
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1;
}

.account-plan-price span {
  color: var(--wire-muted);
  font-size: 13px;
}

.account-plan-controls form,
.account-plan-controls .button {
  margin: 0;
}

.account-plan-controls button,
.account-plan-controls .button {
  min-width: 158px;
  min-height: 42px;
  justify-content: center;
}

.account-access-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
  padding: 0 26px 22px;
}

.account-access-body article {
  min-height: 154px;
  padding: 22px 0 6px;
  border: 0;
  scroll-margin-top: 84px;
}

.account-access-body h3 {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 650;
}

.usage-summary p {
  margin: 0 0 5px;
  color: var(--wire-ink);
}

.usage-summary .usage-value {
  margin-bottom: 9px;
  font-size: clamp(34px, 3.2vw, 42px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1;
}

.usage-summary > span {
  display: block;
  max-width: 390px;
  color: var(--wire-muted);
  font-size: 14px;
  line-height: 1.5;
}

.usage-meter {
  height: 10px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e5e0;
}

.usage-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--wire-ink);
  transition: width 220ms ease;
}

.usage-summary[data-usage-level="watch"] .usage-meter i {
  background: #8a6228;
}

.usage-summary[data-usage-level="near-limit"] .usage-meter i,
.usage-summary[data-usage-state="exhausted"] .usage-meter i {
  background: #8f382f;
}

.account-sign-out {
  padding: 0;
}

.account-sign-out button {
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--wire-muted);
}

.account-sign-out button:hover,
.account-sign-out button:focus-visible {
  background: transparent;
  color: var(--wire-ink);
  transform: none;
}

.account-actions {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 48px;
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 12px;
  background: #f6f6f4;
  scroll-margin-top: 84px;
}

.account-actions > h2 {
  max-width: none;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.account-actions > div {
  display: grid;
  gap: 3px;
}

.account-actions a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 0;
  border-radius: 8px;
  color: var(--wire-ink);
  text-decoration: none;
}

.account-actions a:hover,
.account-actions a:focus-visible {
  background: rgba(23, 23, 23, 0.055);
}

.account-access[data-plan-state="grace"] .account-plan-status,
.account-access[data-plan-state="past_due"] .account-plan-status,
.account-access[data-plan-state="canceled"] .account-plan-status {
  color: #711f1f;
}

.account-actions a span {
  display: grid;
  gap: 6px;
}

.account-actions a strong {
  font-size: 15px;
  font-weight: 650;
}

.account-actions a small {
  color: var(--wire-muted);
  font-size: 14px;
}

.account-actions .account-destructive-action {
  margin-top: 6px;
}

.account-actions .account-destructive-action strong {
  color: #711f1f;
}

.account-actions a i {
  opacity: 0;
  font-style: normal;
  transform: translateX(-8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.account-actions a:hover i,
.account-actions a:focus-visible i {
  opacity: 1;
  transform: translateX(0);
}

.billing-error {
  max-width: 760px;
  min-height: 360px;
  padding-top: clamp(32px, 5vw, 64px);
}

@media (max-width: 900px) {
  .gateway-page .agent-hero,
  .gateway-page .contact-layout,
  .gateway-page .account-entry,
  .gateway-page .section-heading {
    grid-template-columns: 1fr;
  }

  .gateway-page .account-auth {
    row-gap: 42px;
  }

  .account-auth-details {
    grid-column: 1;
    margin-top: 32px;
  }

  .gateway-page .contact-intro {
    position: static;
  }

  .gateway-page .agent-artwork {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  .gateway-page .gateway-container {
    padding-top: 58px;
  }

  .account-page .gateway-container {
    padding-top: 0;
  }

  .account-settings-shell {
    padding-left: 0;
  }

  .account-settings-sidebar {
    position: static;
    width: auto;
    height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--wire-line);
  }

  .account-settings-sidebar > strong {
    padding: 0 4px 13px;
    font-size: 15px;
  }

  .account-settings-sidebar nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
  }

  .account-settings-sidebar nav a {
    flex: 0 0 auto;
    padding-inline: 11px;
  }

  .account-sidebar-identity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 14px;
    padding: 14px 4px 0;
  }

  .account-sidebar-utilities {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .account-settings-content {
    width: calc(100% - 36px);
    padding: 30px 0 68px;
  }

  .gateway-page .capability-list,
  .gateway-page .workflow-list,
  .gateway-page .grid {
    grid-template-columns: 1fr;
  }

  .gateway-page .capability-list li,
  .gateway-page .workflow-list li {
    min-height: 0;
    border-right: 0;
  }

  .gateway-page .contact-field-row {
    grid-template-columns: 1fr;
  }

  .plan-catalog {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .model-catalog article,
  .plan-catalog article {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .model-catalog article,
  .plan-catalog article,
  .model-story {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .plan-catalog h2 {
    grid-row: auto;
  }

  .model-catalog article > div:last-child {
    align-self: auto;
  }

  .model-story {
    padding: 62px 0;
  }

  .model-media-slot-secondary {
    width: 100%;
  }

  .account-access-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .account-plan-controls {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: start;
  }

  .account-plan-controls form,
  .account-plan-controls .button {
    justify-self: end;
  }

  .account-access-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .account-access-body article {
    min-height: 0;
    padding: 28px 0;
  }

  .pricing-hero,
  .pricing-included,
  .pricing-questions {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .pricing-hero {
    min-height: 0;
    align-items: start;
    padding: 46px 0 70px;
  }

  .pricing-identity h1 {
    font-size: clamp(60px, 18vw, 88px);
  }

  .pricing-purchase {
    padding-bottom: 0;
  }

  .pricing-included,
  .pricing-questions {
    padding: 72px 0;
  }

  .pricing-benefit-list article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .pricing-assurance {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .pricing-assurance > div,
  .pricing-assurance > div + div {
    padding: 22px 0;
    border-top: 1px solid var(--wire-line);
    border-left: 0;
  }

  .pricing-assurance > div:first-child {
    border-top: 0;
  }

  .account-overview {
    padding-bottom: 28px;
  }

  .account-actions {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 18px;
  }
}

@media (max-width: 520px) {
  .gateway-page .account-auth {
    width: calc(100% - 36px);
    min-height: 0;
    padding: 54px 0 70px;
  }

  .account-auth-details {
    grid-template-columns: 1fr;
  }

  .account-auth-details > div,
  .account-auth-details > div + div {
    padding: 18px 0;
    border-top: 1px solid var(--wire-line);
    border-left: 0;
  }

  .account-auth-details > div:first-child {
    border-top: 0;
  }

  .account-overview {
    min-height: 0;
    padding-top: 0;
  }

  .account-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .account-plan-controls {
    grid-template-columns: 1fr;
  }

  .account-plan-controls form,
  .account-plan-controls .button {
    width: 100%;
    justify-self: stretch;
  }

  .account-plan-controls button,
  .account-plan-controls .button {
    width: 100%;
  }
}

/* Download stays inside the public shell while giving the product preview room to work. */
.download-page .gateway-main,
.download-page .gateway-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.download-page .download-hero,
.download-page .version-history {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.download-page .download-hero {
  padding: clamp(88px, 9vw, 132px) 0 0;
}

.download-page .download-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
}

.download-page .download-intro h1 {
  min-width: 0;
  max-width: 980px;
  margin: 0;
  font-size: clamp(62px, 7.4vw, 106px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-wrap: balance;
}

.download-page .download-action {
  display: flex;
  min-width: 0;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.download-page .download-action > .button {
  min-width: 260px;
  justify-content: space-between;
  gap: 24px;
}

.download-page .download-arrow {
  font-size: 17px;
  font-weight: 400;
}

.download-page .download-action details {
  position: relative;
}

.download-page .download-action summary {
  width: max-content;
  margin-left: auto;
  color: var(--wire-muted);
  cursor: pointer;
  font-size: 13px;
  list-style-position: inside;
}

.download-page .download-action details .actions {
  position: absolute;
  z-index: 5;
  top: calc(100% + 10px);
  right: 0;
  width: 310px;
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--wire-line);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
}

.download-page .download-action details .button {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
  border-color: var(--wire-line);
  text-align: left;
}

.download-page .product-preview {
  width: 100%;
  min-width: 0;
  height: clamp(500px, 56vw, 720px);
  margin-top: clamp(54px, 6vw, 84px);
  overflow: hidden;
  padding: 14px;
  border: 1px solid #292923;
  border-radius: 10px;
  background: #171713;
}

.download-page .preview-window {
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid #393932;
  border-radius: 7px;
  background: #11110e;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.download-page .preview-titlebar {
  height: 44px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid #2b2b25;
  background: #191916;
  color: #8d8c84;
  font-size: 11px;
}

.download-page .preview-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #eae9e3;
  font-size: 12px;
  font-weight: 650;
}

.download-page .preview-brand img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 4px;
  visibility: visible;
}

.download-page .preview-dots {
  justify-self: end;
  display: flex;
  gap: 5px;
}

.download-page .preview-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d3d36;
}

.download-page .preview-workspace {
  height: calc(100% - 44px);
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(245px, 31%);
}

.download-page .preview-rail {
  min-width: 0;
  padding: 13px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #2b2b25;
  background: #151512;
}

.download-page .preview-agent-icon {
  width: 32px;
  height: 32px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #6f6e67;
  font-size: 10px;
  font-weight: 750;
}

.download-page .preview-agent-icon.active {
  border-color: #45453d;
  background: #25251f;
  color: #f3f2ed;
}

.download-page .preview-canvas {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.15), rgba(11, 11, 9, 0.82)),
    url("/static/assets/alderson-hero-workshop.webp") center 42% / cover no-repeat;
}

.download-page .preview-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, black);
}

.download-page .preview-canvas-label {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 22px;
}

.download-page .preview-canvas-label strong {
  font-size: 13px;
  font-weight: 620;
}

.download-page .preview-model-card {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 50%;
  width: min(310px, calc(100% - 36px));
  min-width: 0;
  padding: 20px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(18, 18, 14, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.download-page .preview-model-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.download-page .preview-model-card span {
  color: #aaa99f;
  font-size: 11px;
}

.download-page .preview-agent {
  min-width: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #2b2b25;
  background: #181815;
}

.download-page .preview-agent h2 {
  max-width: 230px;
  margin: 0 0 12px;
  color: #efeee8;
  font-size: 23px;
  font-weight: 540;
  line-height: 1.05;
}

.download-page .preview-agent p {
  margin: 0;
  color: #8e8d85;
  font-size: 12px;
}

.download-page .preview-prompt {
  margin-top: auto;
  padding: 13px 14px;
  border: 1px solid #34342e;
  border-radius: 7px;
  background: #121210;
  color: #77766f;
  font-size: 11px;
}

.download-page .version-history {
  padding: clamp(58px, 7vw, 92px) 0 clamp(88px, 10vw, 144px);
}

.download-page .version-history h2 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.download-page .version-row {
  min-height: 62px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  color: var(--wire-muted);
  font-size: 13px;
}

.download-page .version-row strong {
  color: var(--wire-ink);
  font-weight: 560;
}

@media (max-width: 960px) {
  .download-page .download-intro {
    grid-template-columns: 1fr;
  }

  .download-page .download-action {
    width: min(100%, 320px);
  }

  .download-page .download-action > .button {
    min-width: 0;
  }

  .download-page .preview-workspace {
    grid-template-columns: 52px minmax(0, 1fr) 245px;
  }
}

@media (max-width: 700px) {
  .download-page .download-hero {
    padding-top: 68px;
  }

  .download-page .download-intro {
    gap: 32px;
  }

  .download-page .download-intro h1 {
    max-width: 100%;
    font-size: clamp(48px, 14vw, 62px);
    line-height: 0.94;
    text-wrap: wrap;
  }

  .download-page .download-action,
  .download-page .download-action > .button,
  .download-page .download-action details {
    width: 100%;
    max-width: 100%;
  }

  .download-page .download-action > .button {
    white-space: normal;
  }

  .download-page .download-action summary {
    margin-left: 0;
  }

  .download-page .download-action details .actions {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
  }

  .download-page .product-preview {
    height: 390px;
    margin-top: 44px;
    padding: 7px;
    border-radius: 8px;
  }

  .download-page .preview-titlebar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .download-page .preview-titlebar > span {
    display: none;
  }

  .download-page .preview-workspace {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .download-page .preview-agent {
    display: none;
  }

  .download-page .preview-rail {
    padding-right: 5px;
    padding-left: 5px;
  }

  .download-page .preview-agent-icon {
    width: 30px;
    height: 30px;
  }

  .download-page .preview-model-card {
    padding: 16px;
  }

  .download-page .preview-model-card strong {
    font-size: 17px;
  }

  .download-page .version-history {
    padding-top: 52px;
  }

  .download-page .version-row {
    display: grid;
    gap: 6px;
  }
}

/* Download stays inside the public shell while giving the product preview room to work. */
.download-page .gateway-main,
.download-page .gateway-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.download-page .download-hero,
.download-page .version-history {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.download-page .download-hero {
  padding: clamp(88px, 9vw, 132px) 0 0;
}

.download-page .download-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
}

.download-page .download-intro h1 {
  min-width: 0;
  max-width: 980px;
  margin: 0;
  font-size: clamp(62px, 7.4vw, 106px);
  font-weight: 400;
  letter-spacing: -0.062em;
  line-height: 0.92;
  text-wrap: balance;
}

.download-page .download-action {
  display: flex;
  min-width: 0;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.download-page .download-action > .button {
  min-width: 260px;
  justify-content: space-between;
  gap: 24px;
}

.download-page .download-arrow {
  font-size: 17px;
  font-weight: 400;
}

.download-page .download-action details {
  position: relative;
}

.download-page .download-action summary {
  width: max-content;
  margin-left: auto;
  color: var(--wire-muted);
  cursor: pointer;
  font-size: 13px;
  list-style-position: inside;
}

.download-page .download-action details .actions {
  position: absolute;
  z-index: 5;
  top: calc(100% + 10px);
  right: 0;
  width: 310px;
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--wire-line);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
}

.download-page .download-action details .button {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
  border-color: var(--wire-line);
  text-align: left;
}

.download-page .product-preview {
  width: 100%;
  min-width: 0;
  height: clamp(500px, 56vw, 720px);
  margin-top: clamp(54px, 6vw, 84px);
  overflow: hidden;
  padding: 14px;
  border: 1px solid #292923;
  border-radius: 10px;
  background: #171713;
}

.download-page .preview-window {
  width: 100%;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid #393932;
  border-radius: 7px;
  background: #11110e;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.download-page .preview-titlebar {
  height: 44px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid #2b2b25;
  background: #191916;
  color: #8d8c84;
  font-size: 11px;
}

.download-page .preview-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: #eae9e3;
  font-size: 12px;
  font-weight: 650;
}

.download-page .preview-brand img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 4px;
  visibility: visible;
}

.download-page .preview-dots {
  justify-self: end;
  display: flex;
  gap: 5px;
}

.download-page .preview-dots i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d3d36;
}

.download-page .preview-workspace {
  height: calc(100% - 44px);
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(245px, 31%);
}

.download-page .preview-rail {
  min-width: 0;
  padding: 13px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #2b2b25;
  background: #151512;
}

.download-page .preview-agent-icon {
  width: 32px;
  height: 32px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #6f6e67;
  font-size: 10px;
  font-weight: 750;
}

.download-page .preview-agent-icon.active {
  border-color: #45453d;
  background: #25251f;
  color: #f3f2ed;
}

.download-page .preview-canvas {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 11, 9, 0.15), rgba(11, 11, 9, 0.82)),
    url("/static/assets/alderson-hero-workshop.webp") center 42% / cover no-repeat;
}

.download-page .preview-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent, black);
}

.download-page .preview-canvas-label {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 22px;
}

.download-page .preview-canvas-label strong {
  font-size: 13px;
  font-weight: 620;
}

.download-page .preview-model-card {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 50%;
  width: min(310px, calc(100% - 36px));
  min-width: 0;
  padding: 20px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(18, 18, 14, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.download-page .preview-model-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 19px;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.download-page .preview-model-card span {
  color: #aaa99f;
  font-size: 11px;
}

.download-page .preview-agent {
  min-width: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #2b2b25;
  background: #181815;
}

.download-page .preview-agent h2 {
  max-width: 230px;
  margin: 0 0 12px;
  color: #efeee8;
  font-size: 23px;
  font-weight: 540;
  line-height: 1.05;
}

.download-page .preview-agent p {
  margin: 0;
  color: #8e8d85;
  font-size: 12px;
}

.download-page .preview-prompt {
  margin-top: auto;
  padding: 13px 14px;
  border: 1px solid #34342e;
  border-radius: 7px;
  background: #121210;
  color: #8e8d85;
  font-size: 11px;
}

.download-page .version-history {
  padding: clamp(58px, 7vw, 92px) 0 clamp(88px, 10vw, 144px);
}

.download-page .version-history h2 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 450;
  letter-spacing: -0.035em;
}

.download-page .version-row {
  min-height: 62px;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  color: var(--wire-muted);
  font-size: 13px;
}

.download-page .version-row strong {
  color: var(--wire-ink);
  font-weight: 560;
}

@media (max-width: 960px) {
  .download-page .download-intro {
    grid-template-columns: 1fr;
  }

  .download-page .download-action {
    width: min(100%, 320px);
  }

  .download-page .download-action > .button {
    min-width: 0;
  }

  .download-page .preview-workspace {
    grid-template-columns: 52px minmax(0, 1fr) 245px;
  }
}

@media (max-width: 700px) {
  .download-page .download-hero {
    padding-top: 68px;
  }

  .download-page .download-intro {
    gap: 32px;
  }

  .download-page .download-intro h1 {
    max-width: 100%;
    font-size: clamp(48px, 14vw, 62px);
    line-height: 0.94;
    text-wrap: wrap;
  }

  .download-page .download-action,
  .download-page .download-action > .button,
  .download-page .download-action details {
    width: 100%;
    max-width: 100%;
  }

  .download-page .download-action > .button {
    white-space: normal;
  }

  .download-page .download-action summary {
    margin-left: 0;
  }

  .download-page .download-action details .actions {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
  }

  .download-page .product-preview {
    height: 390px;
    margin-top: 44px;
    padding: 7px;
    border-radius: 8px;
  }

  .download-page .preview-titlebar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .download-page .preview-titlebar > span {
    display: none;
  }

  .download-page .preview-workspace {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .download-page .preview-agent {
    display: none;
  }

  .download-page .preview-rail {
    padding-right: 5px;
    padding-left: 5px;
  }

  .download-page .preview-agent-icon {
    width: 30px;
    height: 30px;
  }

  .download-page .preview-model-card {
    padding: 16px;
  }

  .download-page .preview-model-card strong {
    font-size: 17px;
  }

  .download-page .version-history {
    padding-top: 52px;
  }

  .download-page .version-row {
    display: grid;
    gap: 6px;
  }
}

/* Compact, grouped public navigation. */
.public-topbar {
  gap: 2px;
}

.public-topbar .primary-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  align-self: stretch;
  gap: 2px;
  margin-left: 0;
  transform: translate(-50%, -50%);
}

.public-topbar .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.public-topbar .nav-dropdown summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--wire-ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 540;
  list-style: none;
  white-space: nowrap;
}

.public-topbar .nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.public-topbar .nav-dropdown summary::after {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  opacity: 0;
  transform: translateY(-2px) rotate(45deg);
  transition: opacity 150ms ease, transform 150ms ease;
}

.public-topbar .nav-dropdown summary:hover::after,
.public-topbar .nav-dropdown summary:focus-visible::after,
.public-topbar .nav-dropdown[open] summary::after {
  opacity: 1;
}

.public-topbar .nav-dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.public-topbar .nav-dropdown[data-current] summary,
.public-topbar .nav-dropdown[open] summary,
.public-topbar .nav-dropdown summary:hover {
  color: #1f5a4f;
}

.public-topbar .nav-dropdown-panel {
  position: absolute;
  z-index: 60;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 146px;
  max-width: calc(100vw - 24px);
  padding: 8px;
  border-top: 0;
  border-bottom: 1px solid var(--wire-line);
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(23, 23, 23, 0.1);
  transform: translateX(-50%);
}

.public-topbar .nav-dropdown-panel-right {
  right: auto;
  left: 50%;
}

.public-topbar .nav-dropdown-panel a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  color: var(--wire-ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.public-topbar .nav-dropdown-panel a::after {
  content: none;
}

.public-topbar .nav-dropdown-panel a:hover,
.public-topbar .nav-dropdown-panel a:focus-visible,
.public-topbar .nav-dropdown-panel a[aria-current="page"] {
  background: #f2f2ee;
  color: #1f5a4f;
}

.public-topbar .nav-login,
.public-topbar .nav-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  color: var(--wire-ink);
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.public-topbar .nav-login {
  margin-left: auto;
}

.public-topbar .nav-login:hover,
.public-topbar .nav-login:focus-visible,
.public-topbar .nav-contact:hover,
.public-topbar .nav-contact:focus-visible {
  text-decoration: underline;
}

.public-topbar .nav-cta {
  min-width: 96px;
  margin-left: 0;
  padding-inline: 19px;
}

@media (min-width: 769px) and (max-width: 1040px) {
  .public-topbar .nav-login {
    display: inline-flex;
  }

  .public-topbar .nav-dropdown summary {
    padding-inline: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .public-topbar .nav-contact {
    display: none;
  }

  .public-topbar .primary-nav {
    left: 48%;
  }
}

.home-wireframe {
  overflow: hidden;
  background: var(--wire-canvas);
  color: var(--wire-ink);
}

.home-wireframe h1,
.home-wireframe h2,
.home-wireframe h3,
.home-wireframe p,
.home-wireframe figure {
  margin: 0;
}

.wire-hero {
  display: grid;
  min-height: clamp(380px, 34vw, 470px);
  place-content: center start;
  padding: clamp(64px, 7vw, 96px) var(--wire-gutter);
  text-align: left;
}

.home-wireframe .wire-hero h1 {
  max-width: 980px;
  font-size: clamp(48px, 4.4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.wire-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 42px;
}

.wire-hero .wire-actions {
  align-items: center;
  justify-content: flex-start;
  margin-top: 32px;
}

.wire-arrow-link,
.wire-github-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--wire-ink);
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
}

.wire-arrow-link {
  border-bottom: 1px solid currentColor;
}

.wire-arrow-link span,
.wire-github-link span {
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.wire-arrow-link:hover span,
.wire-arrow-link:focus-visible span,
.wire-github-link:hover span,
.wire-github-link:focus-visible span {
  opacity: 1;
  transform: translateX(2px);
}

.wire-github-link {
  min-height: 34px;
  margin-top: 12px;
  color: var(--wire-muted);
  font-size: 13px;
}

.wire-media-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.53fr) minmax(260px, 0.75fr);
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  gap: 20px;
  margin: 0 auto;
  padding-bottom: clamp(78px, 8vw, 118px);
}

.wire-media-pair figure {
  position: relative;
  height: clamp(430px, 43vw, 560px);
  overflow: hidden;
  border-radius: 10px;
  background: #e8e8e4;
}

.wire-media-pair picture,
.wire-media-pair img {
  display: block;
  width: 100%;
  height: 100%;
}

.wire-media-pair img {
  object-fit: cover;
}

.wire-media-primary img {
  object-position: 50% 12%;
}

.wire-media-secondary img {
  object-position: center;
}

.wire-media-primary figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.wire-media-primary figcaption strong {
  font-weight: 560;
}

.wire-agent-strip {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding: 0 0 clamp(86px, 8vw, 122px);
  text-align: center;
}

.wire-agent-strip > p {
  margin-bottom: 44px;
  color: var(--wire-muted);
  font-size: 16px;
}

.wire-agent-strip > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
}

.wire-agent-strip a {
  display: grid;
  min-height: 88px;
  place-items: center;
  border-right: 1px solid var(--wire-line);
  color: var(--wire-ink);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 540;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.wire-agent-strip a:hover,
.wire-agent-strip a:focus-visible {
  background: #f3f3ef;
}

.wire-agent-strip a:last-child {
  border-right: 0;
}

.wire-principles,
.wire-solution,
.wire-projects {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding: var(--wire-section) 0;
}

.wire-heading {
  display: grid;
  max-width: 880px;
  gap: 14px;
}

.wire-heading-centered {
  margin: 0 auto;
  text-align: center;
}

.home-wireframe .wire-heading h2,
.home-wireframe .wire-feature h2,
.home-wireframe .wire-github-band h2,
.home-wireframe .wire-conversion h2 {
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 420;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-wrap: balance;
}

.wire-principle-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(64px, 7vw, 94px);
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
}

.wire-principle-row article {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  gap: 40px;
  padding: 28px clamp(26px, 3vw, 42px) 34px;
  border-right: 1px solid var(--wire-line);
}

.wire-principle-row article:last-child {
  border-right: 0;
}

.wire-principle-row article > span,
.wire-project-list > a > span,
.wire-usecase-list > li > a > span {
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.wire-principle-row h3 {
  max-width: 320px;
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wire-principle-row p {
  max-width: 330px;
  color: var(--wire-muted);
  font-size: 15px;
  line-height: 1.55;
}

.wire-feature {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  min-height: clamp(680px, 66vw, 860px);
  overflow: hidden;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  background: #ffffff;
  color: var(--wire-ink);
}

.wire-feature-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0;
  padding: clamp(58px, 7vw, 108px) clamp(38px, 6vw, 88px);
}

.wire-feature-copy .label,
.wire-github-band .label {
  color: var(--wire-muted);
}

.wire-feature-copy .label {
  margin-bottom: 18px;
}

.home-wireframe .wire-feature h2 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--wire-ink);
  font-size: clamp(48px, 5.1vw, 76px);
}

.wire-feature-copy > p:not(.label) {
  max-width: 540px;
  margin-bottom: 30px;
  color: var(--wire-muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.48;
}

.wire-page-hero .wire-actions {
  margin-top: 18px;
}

.wire-arrow-link-light {
  color: var(--wire-ink);
}

.wire-feature-media {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #20221e;
}

.wire-feature-media picture,
.wire-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.wire-feature-media img {
  object-fit: cover;
  object-position: 38% center;
}

.wire-solution > .wire-arrow-link {
  margin-top: 46px;
}

.wire-solution-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(54px, 8vw, 112px);
  margin-top: clamp(60px, 7vw, 92px);
}

.wire-solution-layout > figure {
  height: clamp(520px, 54vw, 700px);
  overflow: hidden;
  border-radius: 10px;
}

.wire-solution-layout picture,
.wire-solution-layout img {
  display: block;
  width: 100%;
  height: 100%;
}

.wire-solution-layout img {
  object-fit: cover;
}

.wire-usecase-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--wire-line);
  list-style: none;
}

.wire-usecase-list li {
  border-bottom: 1px solid var(--wire-line);
}

.wire-usecase-list li > a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 20px;
  padding: 28px 0 34px;
  color: var(--wire-ink);
  text-decoration: none;
  transition: padding 150ms ease, background 150ms ease;
}

.wire-usecase-list li > a:hover,
.wire-usecase-list li > a:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  background: #f5f5f2;
}

.wire-usecase-list li i {
  justify-self: end;
  font-size: 20px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.wire-usecase-list li > a:hover i,
.wire-usecase-list li > a:focus-visible i {
  opacity: 1;
  transform: translateX(0);
}

.wire-usecase-list h3 {
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 460;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.wire-usecase-list p {
  max-width: 470px;
  margin-top: 13px;
  color: var(--wire-muted);
  font-size: 15px;
  line-height: 1.55;
}

.wire-projects {
  padding-top: clamp(80px, 8vw, 116px);
  border-top: 1px solid var(--wire-line);
}

.wire-heading-split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.wire-heading-split h2 {
  max-width: 840px;
}

.wire-project-list {
  margin-top: clamp(58px, 7vw, 88px);
  border-top: 1px solid var(--wire-ink);
}

.wire-project-list > a {
  display: grid;
  grid-template-columns: 50px minmax(300px, 1.4fr) minmax(180px, 0.6fr) 28px;
  min-height: 104px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--wire-line);
  color: var(--wire-ink);
  text-decoration: none;
  transition: padding 150ms ease, background 150ms ease;
}

.wire-project-list > a:hover,
.wire-project-list > a:focus-visible {
  padding-right: 12px;
  padding-left: 12px;
  background: #f5f5f2;
}

.wire-project-list h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 440;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.wire-project-list p {
  color: var(--wire-muted);
  font-size: 13px;
}

.wire-project-list i {
  justify-self: end;
  font-size: 20px;
  font-style: normal;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.wire-project-list > a:hover i,
.wire-project-list > a:focus-visible i {
  opacity: 1;
  transform: translateX(0);
}

.wire-github-band {
  display: grid;
  min-height: clamp(480px, 52vw, 680px);
  align-content: center;
  justify-items: start;
  gap: 24px;
  margin-top: clamp(30px, 4vw, 60px);
  padding: var(--wire-section) max(var(--wire-gutter), calc((100vw - var(--wire-max)) / 2));
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  background: #ffffff;
  color: var(--wire-ink);
}

.home-wireframe .wire-github-band h2 {
  max-width: 960px;
  color: var(--wire-ink);
}

.wire-github-band .wire-arrow-link {
  margin-top: 16px;
}

.wire-conversion {
  display: grid;
  min-height: clamp(440px, 48vw, 620px);
  place-content: center;
  justify-items: center;
  padding: var(--wire-section) var(--wire-gutter);
  border-top: 1px solid var(--wire-line);
  background: #ffffff;
  text-align: center;
}

.home-wireframe .wire-conversion h2 {
  max-width: 1040px;
}

/* Alderson Workspace product page. */
.workspace-wireframe .workspace-hero {
  min-height: clamp(440px, 44vw, 600px);
}

.workspace-wireframe .workspace-hero h1 {
  max-width: 1080px;
}

.workspace-product-stage {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding-bottom: clamp(112px, 11vw, 160px);
}

.workspace-product-stage figure {
  height: clamp(500px, 56vw, 740px);
  overflow: hidden;
  border-radius: 10px;
  background: #e8e8e4;
}

.workspace-product-stage picture,
.workspace-product-stage img {
  display: block;
  width: 100%;
  height: 100%;
}

.workspace-product-stage img {
  object-fit: cover;
  object-position: center top;
}

.workspace-principles {
  padding-top: var(--wire-section);
}

.workspace-principles .wire-heading {
  max-width: 800px;
  margin: 0;
}

.workspace-agents {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding-bottom: var(--wire-section);
}

.workspace-agents .wire-heading h2 {
  max-width: 900px;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.workspace-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 72px) 16px;
  margin-top: clamp(54px, 7vw, 88px);
}

.workspace-agent-grid > a {
  display: block;
  color: var(--wire-ink);
  text-decoration: none;
}

.workspace-agent-grid figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f1ed;
}

.public-site .workspace-agent-grid figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.workspace-agent-grid > a:hover img,
.workspace-agent-grid > a:focus-visible img {
  transform: scale(1.015);
}

.workspace-agent-grid > a > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 2px 0;
}

.workspace-agent-grid h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 440;
  letter-spacing: -0.04em;
  line-height: 1;
}

.workspace-agent-grid span {
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.workspace-designer-feature .wire-feature-copy {
  align-content: center;
}

.workspace-designer-feature .wire-arrow-link {
  margin-top: 32px;
}

.workspace-designer-feature {
  margin-top: 0;
}

.workspace-github {
  margin-top: 0;
  min-height: clamp(320px, 34vw, 440px);
}

/* Experiential Marketing solution page. */
.solution-wireframe {
  overflow: hidden;
  background: var(--wire-canvas);
  color: var(--wire-ink);
}

.solution-wireframe h1,
.solution-wireframe h2,
.solution-wireframe h3,
.solution-wireframe p,
.solution-wireframe figure {
  margin: 0;
}

.wire-page-hero {
  display: grid;
  min-height: clamp(520px, 58vw, 740px);
  align-content: center;
  justify-items: start;
  gap: 24px;
  padding: 86px var(--wire-gutter);
}

.wire-page-hero-centered {
  justify-items: center;
  text-align: center;
}

.wire-page-hero h1 {
  max-width: 1160px;
  font-size: clamp(66px, 8.5vw, 124px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-wrap: balance;
}

.wire-page-hero > p:not(.label) {
  max-width: 760px;
  color: var(--wire-muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
}

.solutions-page .solutions-hero {
  min-height: clamp(440px, 44vw, 600px);
}

.solutions-page .solutions-hero h1 {
  max-width: 1080px;
}

.solutions-journey-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
}

.solutions-journey-index a {
  display: grid;
  min-height: 126px;
  align-content: space-between;
  gap: 28px;
  padding: 24px 30px 28px;
  border-right: 1px solid var(--wire-line);
  color: var(--wire-ink);
  text-decoration: none;
  transition: background-color 160ms ease;
}

.solutions-journey-index a:last-child {
  border-right: 0;
}

.solutions-journey-index a:hover,
.solutions-journey-index a:focus-visible {
  background: #f3f3ef;
}

.solutions-journey-index span,
.solutions-chapter-head > div:first-child > span,
.solutions-chapter-panel > span {
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
}

.solutions-journey-index strong {
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1;
}

.solutions-chapter {
  scroll-margin-top: 84px;
}

.solutions-chapter-design,
.solutions-chapter-field {
  padding: var(--wire-section) var(--wire-gutter);
  border-top: 1px solid var(--wire-line);
  background: #ffffff;
  color: var(--wire-ink);
}

.solutions-chapter-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  width: min(var(--wire-max), 100%);
  gap: clamp(48px, 8vw, 112px);
  margin: 0 auto clamp(52px, 7vw, 88px);
}

.solutions-chapter-head > div:first-child > span {
  display: block;
  margin-bottom: 24px;
  color: var(--wire-muted);
}

.solutions-chapter-head h2,
.solutions-chapter-panel h2 {
  max-width: 720px;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.solutions-chapter-copy > p,
.solutions-chapter-panel > p {
  max-width: 540px;
  font-size: clamp(19px, 1.7vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.42;
}

.solutions-chapter-head .solutions-chapter-copy > p {
  color: var(--wire-muted);
}

.solutions-chapter-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(42px, 6vw, 72px);
  padding-top: 18px;
  border-top: 1px solid var(--wire-line);
}

.solutions-chapter-design .solutions-chapter-meta,
.solutions-chapter-field .solutions-chapter-meta {
  border-color: var(--wire-line);
}

.solutions-chapter-meta > span {
  margin: 0;
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solutions-chapter-design .solutions-chapter-meta > span,
.solutions-chapter-field .solutions-chapter-meta > span {
  color: var(--wire-muted);
}

.solutions-chapter-design > figure,
.solutions-chapter-field > figure {
  width: min(var(--wire-max), 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background: #e8e8e4;
}

.solutions-chapter-design > figure {
  aspect-ratio: 1295 / 817;
}

.solutions-chapter-field > figure {
  aspect-ratio: 16 / 7;
}

.solutions-chapter-design picture,
.public-site .solutions-chapter-design figure img,
.public-site .solutions-chapter-field figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.solutions-chapter-design figure img,
.solutions-chapter-field figure img {
  object-fit: cover;
}

.solutions-chapter-design figure img {
  object-position: 48% top;
}

.solutions-chapter-production {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: clamp(680px, 68vw, 880px);
  border-top: 1px solid var(--wire-line);
  background: #ffffff;
  color: var(--wire-ink);
}

.solutions-chapter-production > figure {
  min-height: 100%;
  overflow: hidden;
  background: #deded8;
}

.public-site .solutions-chapter-production > figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.solutions-chapter-panel {
  display: grid;
  align-content: center;
  padding: clamp(68px, 8vw, 112px) max(var(--wire-gutter), calc((100vw - var(--wire-max)) / 2));
}

.solutions-chapter-panel > span {
  margin-bottom: 28px;
}

.solutions-chapter-panel > p {
  margin-top: 30px;
}

.solutions-projects {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding-top: var(--wire-section);
  padding-bottom: var(--wire-section);
}

.solutions-projects .wire-heading {
  margin: 0;
}

.solutions-projects .wire-heading h2,
.solution-wireframe .wire-conversion h2 {
  max-width: 940px;
  font-size: clamp(48px, 5.6vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.article-index-list .article-index-number {
  padding-top: 5px;
  color: var(--wire-muted);
  font-size: 12px;
  font-weight: 680;
  line-height: 1.35;
}

.article-index-list .article-index-copy small {
  display: block;
  margin-top: 16px;
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Core public routes share the same flat editorial frame. */
.projects-page,
.research-page,
.about-page,
.faq-page,
.careers-page {
  background: var(--wire-canvas);
}

.projects-page .archive-hub,
.research-page .archive-hub {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(88px, 9vw, 132px) 0 var(--wire-section);
  background: transparent;
}

.projects-page .archive-hub-header,
.research-page .archive-hub-header {
  display: grid;
  max-width: 1060px;
  gap: 20px;
  margin: 0 0 clamp(64px, 8vw, 104px);
  padding: 0;
}

.projects-page .archive-hub-header h1,
.research-page .archive-hub-header h1 {
  max-width: 1120px;
  font-size: clamp(66px, 8.5vw, 124px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.projects-page .archive-hub-header > p:not(.label) {
  max-width: 720px;
  color: var(--wire-muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.45;
}

.projects-page .project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: clamp(72px, 8vw, 112px) 20px;
  margin: 0;
}

.projects-page .project-list > a,
.projects-page .project-list > a:first-child {
  display: grid;
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  align-content: start;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--wire-ink);
}

.projects-page .project-card-image {
  width: 100%;
  height: clamp(340px, 38vw, 500px);
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 10px;
}

.projects-page .project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-page .project-list h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 440;
  letter-spacing: -0.045em;
  line-height: 1;
}

.projects-page .project-list p {
  display: block;
  max-width: 570px;
  margin: 14px 0 0;
  color: var(--wire-muted);
  font-size: 15px;
  line-height: 1.55;
}

.projects-page .project-list strong {
  display: block;
  margin-top: 18px;
  color: var(--wire-muted);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.research-page .research-publication-heading,
.research-page .research-publication-list {
  border-color: var(--wire-line);
}

.research-page .research-publication-heading {
  margin-top: 0;
}

.about-page .page-hero,
.faq-page .page-hero {
  display: block;
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  min-height: 0;
  margin: 0 auto;
  padding: clamp(88px, 9vw, 132px) 0 var(--wire-section);
  border: 0;
  border-bottom: 1px solid var(--wire-line);
  background: transparent;
}

.about-page .page-hero-copy,
.faq-page .page-hero-copy {
  max-width: 1050px;
}

.about-page .page-hero h1,
.faq-page .page-hero h1 {
  max-width: 1120px;
  font-size: clamp(62px, 8vw, 116px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.about-page .page-hero-copy > p:not(.label),
.faq-page .page-hero-copy > p:not(.label):not(.page-note) {
  max-width: 790px;
  color: var(--wire-muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
}

.about-page .field-note,
.faq-page .field-note {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  min-height: 0;
  gap: clamp(54px, 8vw, 112px);
  margin: 0 auto;
  padding: var(--wire-section) 0;
  border: 0;
  border-bottom: 1px solid var(--wire-line);
  border-radius: 0;
  background: transparent;
}

.about-page .field-note-copy,
.faq-page .field-note-copy {
  align-self: center;
}

.about-page .field-note h2,
.faq-page .field-note h2 {
  font-size: clamp(46px, 5.6vw, 76px);
  font-weight: 420;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.wire-editorial-image {
  min-height: 590px;
  overflow: hidden;
  border-radius: 10px;
}

.wire-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  gap: 0;
  margin: 0 auto;
  padding: var(--wire-section) 0;
  border: 0;
}

.about-page .service-grid + .service-grid {
  padding-top: 0;
}

.about-page .service-grid article {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  gap: 36px;
  padding: 28px clamp(24px, 3vw, 40px) 34px;
  border: 0;
  border-top: 1px solid var(--wire-line);
  border-right: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-page .service-grid article:nth-child(3n) {
  border-right: 0;
}

.about-page .service-grid article h2 {
  font-size: clamp(28px, 2.8vw, 39px);
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-page .service-grid article p {
  color: var(--wire-muted);
  font-size: 14px;
  line-height: 1.55;
}

.about-page .proof-review .review-panel {
  align-self: stretch;
  padding: 32px 0;
  border: 0;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-page .faq-list {
  width: min(900px, calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding: var(--wire-section) 0;
}

.faq-page .faq-item {
  margin: 0;
  border: 0;
  border-top: 1px solid var(--wire-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-page .faq-item:last-child {
  border-bottom: 1px solid var(--wire-line);
}

.faq-page .faq-item summary {
  min-height: 82px;
  padding: 20px 0;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 520;
}

.faq-page .faq-item > p {
  max-width: 760px;
  padding: 0 0 30px;
  color: var(--wire-muted);
  font-size: 16px;
  line-height: 1.6;
}

.wire-brief-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--wire-line);
  list-style: none;
}

.wire-brief-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--wire-line);
}

.wire-brief-list li > span {
  color: var(--wire-muted);
  font-size: 11px;
}

.wire-brief-list p {
  color: var(--wire-muted);
  font-size: 15px;
}

.wire-brief-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--wire-ink);
  font-weight: 580;
}

.public-site .final-cta.page-cta {
  display: grid;
  width: 100%;
  min-height: clamp(440px, 48vw, 620px);
  place-content: center;
  justify-items: center;
  gap: 34px;
  margin: 0;
  padding: var(--wire-section) var(--wire-gutter);
  border: 0;
  border-top: 1px solid var(--wire-line);
  border-radius: 0;
  background: #ffffff;
  color: var(--wire-ink);
  text-align: center;
}

.public-site .final-cta.page-cta h2 {
  max-width: 1000px;
  color: var(--wire-ink);
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 420;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.careers-page .careers-hero,
.careers-page .careers-status,
.careers-page .career-lanes,
.careers-page .careers-process {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.careers-page .careers-hero {
  min-height: 690px;
  gap: clamp(48px, 7vw, 96px);
  padding: clamp(82px, 9vw, 128px) 0;
}

.careers-page .careers-hero.careers-hero-minimal {
  grid-template-columns: 1fr;
  min-height: clamp(560px, 62vw, 760px);
}

.careers-page .careers-hero-minimal .careers-hero-copy {
  max-width: 1120px;
}

.careers-page .careers-hero-minimal .careers-hero-copy h1 {
  max-width: 1120px;
}

.careers-page .careers-hero-copy h1 {
  font-size: clamp(58px, 7.4vw, 104px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.careers-page .careers-hero-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 10px;
}

.careers-page .careers-status {
  padding: var(--wire-section) 0;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  background: transparent;
  color: var(--wire-ink);
}

.careers-page .careers-status-panel {
  padding: 28px 0;
  border: 0;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.careers-page .careers-status-copy p:not(.label),
.careers-page .careers-status .label,
.careers-page .careers-status-panel span,
.careers-page .careers-status-panel p {
  color: var(--wire-muted);
}

.careers-page .careers-status-panel strong,
.careers-page .careers-status-panel a {
  color: var(--wire-ink);
}

.careers-page .career-lane-grid {
  gap: 0;
  border-top: 1px solid var(--wire-line);
}

.careers-page .career-lane-grid article {
  min-height: 300px;
  border: 0;
  border-right: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.careers-page .career-lane-grid article:last-child {
  border-right: 0;
}

.careers-page .careers-process {
  gap: clamp(52px, 8vw, 112px);
  padding: var(--wire-section) 0;
  border: 0;
  background: transparent;
}

.careers-page .careers-process-image {
  overflow: hidden;
  border-radius: 10px;
}

.careers-page .careers-process-list article {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.careers-page .careers-cta {
  display: grid;
  width: 100%;
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: var(--wire-section) max(var(--wire-gutter), calc((100vw - var(--wire-max)) / 2));
  border: 0;
  border-top: 1px solid var(--wire-line);
  border-radius: 0;
  background: #ffffff;
  color: var(--wire-ink);
}

.careers-page .careers-cta h2 {
  color: var(--wire-ink);
}

.careers-page .careers-cta .label,
.careers-page .careers-cta p {
  color: var(--wire-muted);
}

@media (max-width: 960px) {
  .wire-agent-strip > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wire-agent-strip a:nth-child(3n) {
    border-right: 0;
  }

  .wire-agent-strip a:nth-child(-n + 3) {
    border-bottom: 1px solid var(--wire-line);
  }

  .wire-feature {
    grid-template-columns: 1fr;
  }

  .wire-feature-media {
    height: 560px;
  }

  .wire-solution-layout {
    grid-template-columns: 1fr;
  }

  .wire-usecase-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wire-usecase-list li {
    border-right: 1px solid var(--wire-line);
  }

  .wire-usecase-list li > a {
    grid-template-columns: 1fr 28px;
    align-content: start;
    padding-right: 24px;
  }

  .wire-usecase-list li + li > a {
    padding-left: 24px;
  }

  .wire-usecase-list li > a > span {
    grid-column: 1 / -1;
  }

  .wire-usecase-list li:last-child {
    border-right: 0;
  }

  .solutions-chapter-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

  .solutions-chapter-production {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .solutions-chapter-production .solutions-chapter-panel {
    grid-row: 1;
  }

  .solutions-chapter-production > figure {
    grid-row: 2;
    min-height: 600px;
  }

  .about-page .field-note,
  .faq-page .field-note,
  .careers-page .careers-hero,
  .careers-page .careers-process {
    grid-template-columns: 1fr;
  }

  .about-page .service-grid,
  .careers-page .career-lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .wire-hero {
    min-height: 420px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-wireframe .wire-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 7vw, 60px);
    line-height: 0.98;
  }

  .wire-principle-row,
  .wire-usecase-list {
    grid-template-columns: 1fr;
  }

  .wire-usecase-list li,
  .wire-usecase-list li + li {
    grid-template-columns: 56px 1fr;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .public-site {
    --wire-gutter: 18px;
    --wire-section: 84px;
  }

  .wire-hero {
    min-height: 420px;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-wireframe .wire-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 0.98;
  }

  .wire-actions {
    flex-direction: column;
    gap: 7px;
    margin-top: 34px;
  }

  .wire-hero .wire-actions {
    align-items: flex-start;
  }

  .wire-media-pair {
    grid-template-columns: minmax(0, 1.52fr) minmax(104px, 0.72fr);
    gap: 8px;
    padding-bottom: 82px;
  }

  .wire-media-pair figure {
    height: 262px;
    border-radius: 8px;
  }

  .wire-agent-strip {
    padding-bottom: 88px;
  }

  .wire-agent-strip > p {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .wire-agent-strip > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wire-agent-strip a,
  .wire-agent-strip a:nth-child(3n) {
    min-height: 68px;
    border-right: 1px solid var(--wire-line);
    border-bottom: 1px solid var(--wire-line);
  }

  .wire-agent-strip a:nth-child(even) {
    border-right: 0;
  }

  .wire-agent-strip a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .wire-media-primary figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    display: grid;
    gap: 3px;
    padding: 10px 11px;
    font-size: 10px;
  }

  .home-wireframe .wire-heading h2,
  .home-wireframe .wire-feature h2,
  .home-wireframe .wire-github-band h2,
  .home-wireframe .wire-conversion h2 {
    font-size: clamp(43px, 12vw, 56px);
    line-height: 0.98;
  }

  .wire-principle-row {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .wire-principle-row article {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--wire-line);
  }

  .wire-principle-row article:last-child {
    border-bottom: 0;
  }

  .wire-feature {
    min-height: 0;
  }

  .wire-feature-copy {
    padding: 72px 22px 66px;
  }

  .wire-feature-media {
    height: 390px;
  }

  .wire-feature-media img {
    object-position: 42% center;
  }

  .wire-solution-layout {
    gap: 48px;
    margin-top: 52px;
  }

  .wire-solution-layout > figure {
    height: 430px;
    border-radius: 8px;
  }

  .wire-usecase-list {
    display: block;
  }

  .wire-usecase-list li,
  .wire-usecase-list li:last-child {
    border-right: 0;
  }

  .wire-usecase-list li > a,
  .wire-usecase-list li + li > a {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    padding: 25px 0 30px;
  }

  .wire-usecase-list li > a > span {
    grid-column: auto;
  }

  .wire-heading-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wire-heading-split .wire-arrow-link {
    justify-self: start;
  }

  .wire-project-list {
    margin-top: 50px;
  }

  .wire-project-list > a {
    grid-template-columns: 32px minmax(0, 1fr) 24px;
    min-height: 96px;
    gap: 14px;
  }

  .wire-project-list p {
    display: none;
  }

  .wire-project-list h3 {
    font-size: 24px;
  }

  .wire-github-band {
    min-height: 470px;
  }

  .wire-conversion {
    min-height: 480px;
  }

  .wire-page-hero {
    min-height: 520px;
    padding-top: 62px;
    padding-bottom: 54px;
  }

  .wire-page-hero h1 {
    font-size: clamp(54px, 15vw, 68px);
    line-height: 0.94;
  }

  .wire-page-hero > p:not(.label) {
    font-size: 17px;
  }

  .workspace-wireframe .workspace-hero {
    min-height: 430px;
  }

  .workspace-product-stage {
    width: calc(100% - (var(--wire-gutter) * 2));
    padding-bottom: 84px;
  }

  .workspace-product-stage figure {
    height: 360px;
    border-radius: 7px;
  }

  .workspace-product-stage img {
    object-position: 46% top;
  }

  .workspace-agent-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .workspace-agent-grid > a > div {
    padding-top: 14px;
  }

  .workspace-agent-grid h3 {
    font-size: 30px;
  }

  .workspace-designer-feature {
    margin-top: 0;
  }

  .workspace-github {
    min-height: 320px;
  }

  .solutions-page .solutions-hero {
    min-height: 430px;
  }

  .solutions-journey-index a {
    min-height: 96px;
    gap: 20px;
    padding: 18px 16px 20px;
  }

  .solutions-journey-index strong {
    font-size: 18px;
  }

  .solutions-chapter-design,
  .solutions-chapter-field {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .solutions-chapter-head {
    gap: 34px;
    margin-bottom: 44px;
  }

  .solutions-chapter-head > div:first-child > span {
    margin-bottom: 18px;
  }

  .solutions-chapter-head h2,
  .solutions-chapter-panel h2,
  .solutions-projects .wire-heading h2,
  .solution-wireframe .wire-conversion h2 {
    font-size: clamp(43px, 12vw, 56px);
    line-height: 0.98;
  }

  .solutions-chapter-copy > p,
  .solutions-chapter-panel > p {
    font-size: 19px;
  }

  .solutions-chapter-meta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }

  .solutions-chapter-design > figure,
  .solutions-chapter-field > figure {
    border-radius: 8px;
  }

  .solutions-chapter-production > figure {
    min-height: 440px;
  }

  .solutions-chapter-panel {
    padding: 78px var(--wire-gutter);
  }

  .solutions-chapter-field > figure {
    height: 300px;
    aspect-ratio: auto;
  }

  .projects-page .project-list {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .projects-page .archive-hub-header h1,
  .research-page .archive-hub-header h1,
  .about-page .page-hero h1,
  .faq-page .page-hero h1,
  .careers-page .careers-hero-copy h1 {
    font-size: clamp(52px, 14vw, 66px);
    line-height: 0.95;
  }

  .about-page .field-note,
  .faq-page .field-note {
    grid-template-columns: 1fr;
  }

  .wire-editorial-image {
    min-height: 420px;
  }

  .about-page .service-grid,
  .careers-page .career-lane-grid {
    grid-template-columns: 1fr;
  }

  .about-page .service-grid article,
  .about-page .service-grid article:nth-child(3n),
  .careers-page .career-lane-grid article {
    min-height: 240px;
    border-right: 0;
  }

  .careers-page .careers-cta {
    min-height: 500px;
    grid-template-columns: 1fr;
  }

  .careers-page .careers-hero.careers-hero-minimal {
    min-height: 540px;
  }
}

/* Editorial article system: wide lead, readable spine, and quiet article tools. */
.public-site .article-page {
  background: #fff;
}

.public-site .article-page .substack-article {
  width: min(1180px, calc(100% - (var(--wire-gutter) * 2)));
  padding: clamp(58px, 7vw, 96px) 0 clamp(88px, 10vw, 140px);
}

.public-site .article-header-copy {
  width: min(920px, 100%);
  margin: 0 auto;
}

.public-site .article-page .article-back-link {
  margin-bottom: clamp(58px, 7vw, 92px);
  color: var(--wire-muted);
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
}

.public-site .article-page .article-back-link::before {
  margin-right: 8px;
  content: "\2190";
}

.public-site .article-page .article-header h1,
.public-site #researchArticleMain .article-header h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(58px, 6.4vw, 92px);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.public-site .article-page .article-subtitle,
.public-site #researchArticleMain .article-subtitle {
  max-width: 780px;
  margin-top: 28px;
  color: #4f4f4a;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.4;
}

.public-site .article-project-status {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 12px 0;
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  color: var(--wire-muted);
  font-size: 13px;
  line-height: 1.4;
}

.public-site .article-page .article-meta {
  gap: 10px 22px;
  margin-top: 36px;
  padding-top: 17px;
  border-color: var(--wire-ink);
  color: #62625c;
  font-size: 12px;
  font-weight: 620;
}

.public-site .article-page .article-meta span,
.public-site .article-page .article-meta time {
  position: relative;
}

.public-site .article-page .article-meta > * + *::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.public-site .article-page .article-header .article-cover,
.public-site #researchArticleMain .article-header .article-cover {
  width: 100%;
  margin: clamp(48px, 6vw, 76px) 0 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f4f4f1;
  box-shadow: inset 0 0 0 1px #e8e8e4;
}

.public-site .article-page .article-cover img {
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.public-site .article-page .article-cover figcaption,
.public-site .article-page .article-image figcaption {
  padding: 12px 0 0;
  background: transparent;
  color: #70706a;
  font-size: 12px;
  line-height: 1.45;
}

.public-site .article-reading-shell {
  display: grid;
  grid-template-columns: 190px minmax(0, 720px);
  justify-content: center;
  gap: clamp(54px, 7vw, 96px);
  width: min(100%, 1010px);
  margin: clamp(72px, 8vw, 108px) auto 0;
}

.public-site .article-sidecar {
  min-width: 0;
}

.public-site .article-sidecar > * {
  position: relative;
}

.public-site .article-share {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--wire-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--wire-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 620;
}

.public-site .article-share:hover,
.public-site .article-share:focus-visible {
  border-color: var(--wire-ink);
  background: transparent;
  color: var(--wire-ink);
  transform: none;
}

.public-site .article-share i {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.public-site .article-share:hover i,
.public-site .article-share:focus-visible i {
  opacity: 1;
  transform: translateX(0);
}

.public-site .article-share-status {
  display: block;
  min-height: 18px;
  margin-top: 8px;
  color: var(--wire-muted);
  font-size: 11px;
  line-height: 1.4;
}

.public-site .article-toc {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 11px;
  margin-top: 34px;
}

.public-site .article-toc p {
  margin-bottom: 4px;
  color: #777771;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-site .article-toc a {
  color: #5e5e58;
  font-size: 12px;
  line-height: 1.38;
  text-decoration: none;
}

.public-site .article-toc a[data-depth="2"] {
  padding-left: 12px;
}

.public-site .article-toc a:hover,
.public-site .article-toc a:focus-visible {
  color: var(--wire-ink);
}

.public-site .article-mobile-toc {
  display: none;
}

.public-site .article-reading-column {
  min-width: 0;
}

.public-site .article-page .article-body,
.public-site #researchArticleMain .article-body {
  width: 100%;
  margin: 0;
}

.public-site .article-body > p:first-child {
  color: var(--wire-ink);
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.018em;
  line-height: 1.52;
}

.public-site .article-body > * + * {
  margin-top: 25px;
}

.public-site .article-body p,
.public-site .article-body li,
.public-site #researchArticleMain .article-body p,
.public-site #researchArticleMain .article-body li {
  color: #2f2f2c;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.74;
}

.public-site .article-body h2 {
  scroll-margin-top: 28px;
  margin-top: 70px;
  font-size: clamp(31px, 3vw, 40px);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.public-site .article-body h3 {
  scroll-margin-top: 28px;
  margin-top: 52px;
  font-size: clamp(25px, 2.4vw, 31px);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.public-site .article-body blockquote {
  margin: 42px 0;
  padding: 0 0 0 24px;
  border-left-color: var(--wire-ink);
}

.public-site .article-body blockquote p {
  color: var(--wire-ink);
  font-size: clamp(23px, 2.2vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.public-site .article-body .article-image {
  margin-top: 44px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.public-site .article-body ol {
  display: grid;
  gap: 11px;
  margin: 25px 0 0;
  padding-left: 1.35em;
}

.public-site .article-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 15px;
}

.public-site .article-body th,
.public-site .article-body td {
  min-width: 150px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--wire-line);
  text-align: left;
  vertical-align: top;
}

.public-site .article-author {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
  margin-top: clamp(72px, 9vw, 112px);
  padding: 24px 0 28px;
  border-top: 1px solid var(--wire-ink);
  border-bottom: 1px solid var(--wire-line);
}

.public-site .article-author strong {
  display: block;
  font-size: 18px;
  font-weight: 620;
}

.public-site .article-author div p {
  max-width: 480px;
  margin-top: 8px;
  color: var(--wire-muted);
  font-size: 14px;
  line-height: 1.5;
}

.public-site .foundation-next {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--wire-line);
}

.public-site .foundation-next a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  color: var(--wire-ink);
  text-decoration: none;
}

.public-site .foundation-next strong {
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.public-site .foundation-next a span {
  font-size: 22px;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.public-site .foundation-next a:hover span,
.public-site .foundation-next a:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.public-site .article-keep-reading {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(84px, 9vw, 128px) 0;
  border: 0;
}

.public-site .article-keep-reading .case-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--wire-ink);
}

.public-site .article-keep-reading .case-section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 460;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.public-site .article-keep-reading .related-project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  margin-top: 34px;
}

.public-site .article-keep-reading .related-project-list a {
  display: grid;
  min-height: 0;
  align-content: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.public-site .article-keep-reading .related-project-image {
  margin: 0 0 18px;
  border: 0;
  aspect-ratio: 4 / 3;
}

.public-site .article-keep-reading .related-project-list strong {
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.public-site .article-keep-reading .related-project-list span {
  margin: 14px 0 0;
  color: var(--wire-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .public-site .article-reading-shell {
    grid-template-columns: minmax(0, 720px);
    margin-top: 54px;
  }

  .public-site .article-sidecar {
    display: none;
  }

  .public-site .article-mobile-toc {
    display: block;
    margin-bottom: 52px;
    border-top: 1px solid var(--wire-ink);
    border-bottom: 1px solid var(--wire-line);
  }

  .public-site .article-mobile-toc summary {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
    list-style: none;
  }

  .public-site .article-mobile-toc summary::-webkit-details-marker {
    display: none;
  }

  .public-site .article-mobile-toc summary::after {
    content: "+";
    font-size: 18px;
    font-weight: 400;
  }

  .public-site .article-mobile-toc[open] summary::after {
    content: "\2212";
  }

  .public-site .article-mobile-toc nav {
    display: grid;
    gap: 0;
    padding-bottom: 12px;
  }

  .public-site .article-mobile-toc a {
    padding: 9px 0;
    color: var(--wire-muted);
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
  }
}

@media (max-width: 700px) {
  .article-index-list > a > .article-index-number {
    grid-row: 1;
    grid-column: 1;
    padding-top: 0;
  }

  .article-index-list > a > strong {
    grid-row: 1;
    grid-column: 2;
  }

  .article-index-list > a > .article-index-copy {
    grid-column: 1 / -1;
  }

  .public-site .article-page .substack-article {
    width: calc(100% - 40px);
    padding-top: 42px;
    padding-bottom: 84px;
  }

  .public-site .article-page .article-back-link {
    margin-bottom: 62px;
  }

  .public-site .article-page .article-header h1,
  .public-site #researchArticleMain .article-header h1 {
    font-size: clamp(43px, 13vw, 56px);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .public-site .article-page .article-subtitle,
  .public-site #researchArticleMain .article-subtitle {
    margin-top: 24px;
    font-size: 20px;
    line-height: 1.45;
  }

  .public-site .article-page .article-meta {
    display: grid;
    gap: 7px;
    margin-top: 32px;
    padding-top: 14px;
  }

  .public-site .article-page .article-meta > * + *::before {
    display: none;
  }

  .public-site .article-page .article-header .article-cover,
  .public-site #researchArticleMain .article-header .article-cover {
    margin-top: 42px;
  }

  .public-site .article-page .article-cover img {
    aspect-ratio: 4 / 3;
  }

  .public-site .article-reading-shell {
    margin-top: 46px;
  }

  .public-site .article-mobile-toc {
    margin-bottom: 42px;
  }

  .public-site .article-body > p:first-child {
    font-size: 21px;
    line-height: 1.55;
  }

  .public-site .article-body p,
  .public-site .article-body li,
  .public-site #researchArticleMain .article-body p,
  .public-site #researchArticleMain .article-body li {
    font-size: 18px;
    line-height: 1.68;
  }

  .public-site .article-body h2 {
    margin-top: 58px;
    font-size: 31px;
  }

  .public-site .article-body h3 {
    margin-top: 46px;
    font-size: 25px;
  }

  .public-site .article-author {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .public-site .article-keep-reading {
    padding-top: 76px;
    padding-bottom: 92px;
  }

  .public-site .article-keep-reading .case-section-heading {
    display: grid;
    gap: 12px;
  }

  .public-site .article-keep-reading .case-section-heading h2 {
    font-size: 48px;
  }

  .public-site .article-keep-reading .related-project-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 8px;
  }

  .public-site .article-keep-reading .related-project-list a {
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 7px 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--wire-line);
  }

  .public-site .article-keep-reading .related-project-image {
    grid-row: 1 / 3;
    margin: 0;
  }

  .public-site .article-keep-reading .related-project-list strong,
  .public-site .article-keep-reading .related-project-list span {
    grid-column: 2;
  }

  .public-site .article-keep-reading .related-project-list strong {
    font-size: 20px;
  }

  .public-site .article-keep-reading .related-project-list span {
    margin-top: 0;
  }
}

/* Chisel 1.0 uses the product-release sequence without leaving Alderson's white system. */
.chisel-launch-page .gateway-main,
.chisel-launch-page .gateway-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.chisel-launch-page :is(
  .chisel-launch-hero,
  .chisel-photo-slot,
  .chisel-outcome,
  .chisel-evaluation,
  .chisel-model-card,
  .chisel-boundary,
  .chisel-limits,
  .chisel-closing
) {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.chisel-launch-hero {
  display: grid;
  min-height: clamp(620px, 72vh, 820px);
  place-items: center;
  padding: clamp(112px, 12vw, 172px) 0 clamp(88px, 9vw, 132px);
  text-align: center;
}

.chisel-launch-hero > div {
  display: grid;
  width: 100%;
  justify-items: center;
  max-width: 920px;
}

.chisel-launch-page .chisel-launch-hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(78px, 10.4vw, 142px);
  line-height: 0.86;
}

.chisel-launch-hero > div > p {
  width: 100%;
  max-width: 660px;
  margin: 36px 0 0;
  color: var(--wire-muted);
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.48;
}

.chisel-launch-action {
  display: grid;
  justify-items: center;
  gap: 13px;
  margin-top: 34px;
}

.chisel-launch-action > span {
  color: var(--wire-muted);
  font-size: 13px;
}

.chisel-launch-page .chisel-photo-slot {
  border: 0;
  background: #efefeb;
  box-shadow: none;
}

.chisel-photo-slot-primary {
  aspect-ratio: 16 / 9;
}

.chisel-photo-slot-secondary {
  width: min(940px, calc(100% - (var(--wire-gutter) * 2))) !important;
  aspect-ratio: 8 / 5;
  margin-top: clamp(86px, 10vw, 144px) !important;
}

.chisel-outcome,
.chisel-evaluation,
.chisel-boundary,
.chisel-limits {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 128px);
  padding: clamp(96px, 11vw, 156px) 0;
  border-bottom: 1px solid var(--wire-line);
}

.chisel-launch-page :is(
  .chisel-outcome,
  .chisel-evaluation,
  .chisel-model-card,
  .chisel-boundary,
  .chisel-limits,
  .chisel-closing
) h2 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 0.96;
}

.chisel-outcome ol,
.chisel-evaluation ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--wire-line);
}

.chisel-outcome li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--wire-line);
}

.chisel-outcome li > span {
  color: var(--wire-muted);
  font-size: 13px;
}

.chisel-outcome h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 650;
}

.chisel-outcome p,
.chisel-evaluation p,
.chisel-boundary p {
  max-width: 650px;
  margin: 0;
  color: var(--wire-muted);
  font-size: 16px;
  line-height: 1.58;
}

.chisel-evaluation > div > p {
  max-width: 470px;
  margin-top: 22px;
}

.chisel-evaluation li {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--wire-line);
  font-size: 15px;
}

.chisel-evaluation li strong {
  font-size: 13px;
  font-weight: 650;
}

.chisel-model-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 128px);
  margin-top: clamp(96px, 11vw, 156px) !important;
  padding: clamp(58px, 7vw, 92px);
  background: #efefeb;
}

.chisel-model-card > div > p {
  max-width: 330px;
  margin: 22px 0 0;
  color: var(--wire-muted);
  line-height: 1.52;
}

.chisel-model-card dl,
.chisel-limits dl {
  margin: 0;
  border-top: 1px solid var(--wire-line);
}

.chisel-model-card dl > div,
.chisel-limits dl > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.62fr) minmax(0, 1.38fr);
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--wire-line);
}

.chisel-model-card :is(dt, dd),
.chisel-limits :is(dt, dd) {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.chisel-model-card dd,
.chisel-limits dd {
  color: var(--wire-muted);
}

.chisel-boundary > div {
  display: grid;
  gap: 22px;
}

.chisel-limits {
  padding-top: 0;
}

.chisel-closing {
  display: flex;
  min-height: clamp(360px, 42vw, 540px);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(86px, 10vw, 136px) 0;
}

.chisel-launch-page .chisel-closing h2 {
  font-size: clamp(58px, 7vw, 96px);
}

@media (max-width: 780px) {
  .chisel-launch-hero {
    min-height: 560px;
    padding-top: 92px;
  }

  .chisel-launch-page .chisel-launch-hero h1 {
    font-size: clamp(58px, 16vw, 82px);
  }

  .chisel-outcome,
  .chisel-evaluation,
  .chisel-model-card,
  .chisel-boundary,
  .chisel-limits {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chisel-model-card {
    padding: 46px 28px;
  }

  .chisel-model-card dl > div,
  .chisel-limits dl > div {
    grid-template-columns: minmax(118px, 0.62fr) minmax(0, 1.38fr);
  }

  .chisel-closing {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .chisel-launch-hero {
    min-height: 500px;
  }

  .chisel-launch-page .chisel-launch-hero h1 {
    font-size: clamp(52px, 15vw, 64px);
  }

  .chisel-model-card {
    width: 100% !important;
    padding-right: var(--wire-gutter);
    padding-left: var(--wire-gutter);
  }

  .chisel-model-card dl > div,
  .chisel-limits dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Designer is an outcome-led product page with one visible working loop. */
.designer-page .gateway-main,
.designer-page .gateway-container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.designer-hero,
.designer-stage,
.designer-loop,
.designer-review {
  width: min(var(--wire-max), calc(100% - (var(--wire-gutter) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.designer-hero {
  display: grid;
  min-height: clamp(470px, 52vw, 700px);
  align-content: center;
  justify-items: start;
  padding: clamp(84px, 9vw, 132px) 0;
}

.designer-page .designer-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(66px, 8.2vw, 116px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.designer-hero .dark-pill {
  margin-top: 42px;
}

.designer-stage {
  height: clamp(500px, 57vw, 740px);
  overflow: hidden;
  border-radius: 10px;
}

.designer-stage picture,
.designer-stage img {
  display: block;
  width: 100%;
  height: 100%;
}

.designer-stage img {
  object-fit: cover;
  object-position: center top;
}

.designer-proof {
  margin-top: var(--wire-section);
  padding: var(--wire-section) max(var(--wire-gutter), calc((100vw - var(--wire-max)) / 2));
  border-top: 1px solid var(--wire-line);
  border-bottom: 1px solid var(--wire-line);
  background: #ffffff;
  color: var(--wire-ink);
}

.designer-proof > div {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: end;
}

.designer-page .designer-proof h2,
.designer-page .designer-loop h2,
.designer-page .designer-review h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.designer-proof ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--wire-line);
  list-style: none;
}

.designer-proof li {
  padding: 17px 0;
  border-bottom: 1px solid var(--wire-line);
  color: var(--wire-muted);
  font-size: 15px;
}

.designer-loop {
  padding: var(--wire-section) 0;
}

.designer-loop > ol {
  margin: clamp(62px, 8vw, 100px) 0 0;
  padding: 0;
  border-top: 1px solid var(--wire-line);
  list-style: none;
}

.designer-loop li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0 34px;
  border-bottom: 1px solid var(--wire-line);
}

.designer-loop li > span {
  padding-top: 7px;
  color: var(--wire-muted);
  font-size: 12px;
  font-weight: 650;
}

.designer-page .designer-loop h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 440;
  letter-spacing: -0.045em;
  line-height: 1;
}

.designer-loop li p {
  max-width: 600px;
  margin: 13px 0 0;
  color: var(--wire-muted);
  font-size: 16px;
  line-height: 1.55;
}

.designer-review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
  padding: var(--wire-section) 0;
  border-top: 1px solid var(--wire-line);
}

.designer-review p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--wire-muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

/* Roadmap is Alderson's long-view master plan, not a release calendar. */
.roadmap-page {
  --roadmap-ink: #171717;
  --roadmap-muted: #66665f;
  --roadmap-line: rgba(23, 23, 23, 0.16);
  background: #ffffff;
  color: var(--roadmap-ink);
}

.roadmap-manifesto-hero {
  display: grid;
  min-height: clamp(640px, calc(100svh - 88px), 900px);
  align-items: end;
  padding: clamp(104px, 12vw, 176px) var(--wire-gutter) clamp(92px, 10vw, 144px);
  border-bottom: 1px solid var(--roadmap-line);
}

.roadmap-manifesto-hero > div,
.roadmap-manifesto {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.roadmap-manifesto-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(68px, 8.2vw, 122px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.89;
  text-wrap: balance;
}

.roadmap-manifesto-intro {
  display: grid;
  max-width: 760px;
  gap: 17px;
  margin-top: clamp(54px, 7vw, 84px);
  color: var(--roadmap-muted);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.48;
}

.roadmap-manifesto-intro p,
.roadmap-manifesto-copy p {
  margin: 0;
}

.roadmap-manifesto-link,
.roadmap-manifesto-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 38px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--roadmap-ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 620;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.roadmap-manifesto-link:hover,
.roadmap-manifesto-link:focus-visible,
.roadmap-manifesto-cta:hover,
.roadmap-manifesto-cta:focus-visible {
  background: #333333;
  transform: translateY(-1px);
}

.roadmap-manifesto-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(52px, 8vw, 112px);
  padding: clamp(92px, 10vw, 140px) 0;
  border-bottom: 1px solid var(--roadmap-line);
}

.roadmap-manifesto-section > header {
  display: grid;
  align-content: start;
  gap: 12px;
}

.roadmap-manifesto-section > header span {
  color: var(--roadmap-muted);
  font-size: 12px;
  font-weight: 620;
}

.roadmap-manifesto-section > header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 560;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.roadmap-manifesto-copy {
  display: grid;
  max-width: 790px;
  gap: 27px;
  color: var(--roadmap-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.roadmap-manifesto-copy .roadmap-manifesto-lead {
  margin-bottom: 12px;
  color: var(--roadmap-ink);
  font-size: clamp(37px, 4.4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.99;
  text-wrap: balance;
}

.roadmap-manifesto-disconnects {
  margin: 28px 0;
  border-top: 1px solid var(--roadmap-line);
}

.roadmap-manifesto-disconnects p {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 30px;
  padding: 19px 0;
  border-bottom: 1px solid var(--roadmap-line);
}

.roadmap-manifesto-disconnects span {
  color: var(--roadmap-muted);
  font-size: 14px;
}

.roadmap-manifesto-disconnects strong {
  color: var(--roadmap-ink);
  font-weight: 500;
}

.roadmap-manifesto-model {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--roadmap-line);
  list-style: none;
}

.roadmap-manifesto-model li {
  padding: 20px 22px 20px 0;
  border-right: 1px solid var(--roadmap-line);
  border-bottom: 1px solid var(--roadmap-line);
  color: var(--roadmap-ink);
  font-size: 16px;
}

.roadmap-manifesto-model li:nth-child(even) {
  padding-right: 0;
  padding-left: 22px;
  border-right: 0;
}

.roadmap-continuum {
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--roadmap-line);
  list-style: none;
}

.roadmap-continuum li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--roadmap-line);
}

.roadmap-continuum span,
.roadmap-plan > article > span {
  color: var(--roadmap-muted);
  font-size: 12px;
  font-weight: 620;
}

.roadmap-continuum strong {
  color: var(--roadmap-ink);
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.roadmap-plan {
  margin-top: 28px;
  border-top: 1px solid var(--roadmap-line);
}

.roadmap-plan article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  padding: 33px 0 37px;
  border-bottom: 1px solid var(--roadmap-line);
}

.roadmap-plan h3 {
  margin: 0;
  color: var(--roadmap-ink);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 430;
  letter-spacing: -0.042em;
  line-height: 1;
}

.roadmap-plan p {
  max-width: 620px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.58;
}

.roadmap-manifesto-conclusion {
  border-bottom: 0;
}

.roadmap-manifesto-cta {
  justify-self: start;
  margin-top: 18px;
}

/* Light mode keeps one white page canvas. The theme layer below replaces these
   values coherently when the visitor selects dark mode. */
.public-site,
.public-site > main,
.public-site .home-wireframe,
.public-site .solution-wireframe,
.public-site .designer-page,
.public-site .roadmap-page,
.public-site .article-page,
.public-site .legal-page {
  background: #ffffff;
  color: var(--wire-ink);
}

.public-site .site-footer {
  border-top: 1px solid var(--wire-line);
  background: #ffffff;
  color: var(--wire-ink);
}

.public-site .footer-brand .wordmark strong,
.public-site .footer-inner .footer-heading {
  color: var(--wire-ink);
}

.public-site .footer-brand > p,
.public-site .footer-inner .footer-column,
.public-site .footer-meta,
.public-site .footer-meta a {
  color: var(--wire-muted);
}

.public-site .footer-inner .footer-column a:hover,
.public-site .footer-inner .footer-column a:focus-visible,
.public-site .footer-meta a:hover,
.public-site .footer-meta a:focus-visible {
  color: var(--wire-ink);
}

.public-site .footer-meta {
  border-color: var(--wire-line);
}

.public-site .footer-meta-primary {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.public-site .footer-meta-primary a span,
.gateway-page .footer-meta-primary a span {
  opacity: 0;
  transform: translate(-3px, 0);
  transition: opacity 150ms ease, transform 150ms ease;
}

.public-site .footer-meta-primary a:hover span,
.public-site .footer-meta-primary a:focus-visible span,
.gateway-page .footer-meta-primary a:hover span,
.gateway-page .footer-meta-primary a:focus-visible span {
  opacity: 1;
  transform: translate(2px, -2px);
}

.public-site .footer-theme-switcher {
  margin-left: auto;
}

@media (max-width: 420px) {
  .public-site .footer-meta {
    align-items: flex-end;
  }

  .public-site .footer-meta-primary {
    display: grid;
    gap: 5px;
  }
}

@media (max-width: 760px) {
  .designer-hero {
    min-height: 430px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .designer-page .designer-hero h1 {
    font-size: clamp(51px, 15vw, 68px);
    line-height: 0.92;
  }

  .designer-stage {
    height: 360px;
    border-radius: 7px;
  }

  .designer-proof > div {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .designer-page .designer-proof h2,
  .designer-page .designer-loop h2,
  .designer-page .designer-review h2 {
    font-size: clamp(43px, 12vw, 56px);
  }

  .designer-loop li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
  }

  .designer-review {
    grid-template-columns: 1fr;
  }

  .designer-review {
    align-items: start;
  }

  .designer-review .dark-pill {
    justify-self: start;
  }

  .roadmap-manifesto-hero {
    min-height: auto;
    padding: 96px var(--wire-gutter) 86px;
  }

  .roadmap-manifesto-hero h1 {
    font-size: clamp(52px, 15vw, 70px);
    line-height: 0.92;
  }

  .roadmap-manifesto-intro {
    margin-top: 44px;
    font-size: 18px;
  }

  .roadmap-manifesto {
    width: calc(100% - (var(--wire-gutter) * 2));
  }

  .roadmap-manifesto-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 78px 0;
  }

  .roadmap-manifesto-section > header {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .roadmap-manifesto-copy {
    gap: 24px;
    font-size: 17px;
  }

  .roadmap-manifesto-copy .roadmap-manifesto-lead {
    font-size: clamp(36px, 11vw, 48px);
  }

  .roadmap-manifesto-disconnects p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .roadmap-manifesto-model {
    grid-template-columns: 1fr;
  }

  .roadmap-manifesto-model li,
  .roadmap-manifesto-model li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .roadmap-continuum li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .roadmap-plan article {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wire-arrow-link span,
  .wire-github-link span,
  .wire-project-list > a {
    transition: none;
  }
}

/* Theme control and the dark Alderson palette. */
.public-site .theme-switcher {
  display: inline-flex;
  min-height: 40px;
  flex: 0 0 auto;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--wire-line);
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
}

.public-site .theme-mode-button {
  display: inline-grid;
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: var(--wire-muted);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.public-site .theme-mode-button:hover {
  background: rgba(23, 23, 23, 0.06);
  color: var(--wire-ink);
  box-shadow: none;
  transform: none;
}

.public-site .theme-mode-button:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 1px;
  box-shadow: none;
  transform: none;
}

.public-site .theme-mode-button[aria-pressed="true"] {
  background: var(--wire-ink);
  color: #ffffff;
}

.public-site .theme-mode-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

html[data-theme="dark"] {
  background: #11120f;
  color-scheme: dark;
}

html[data-theme="dark"] .public-site {
  --bg: #11120f;
  --surface: #181916;
  --surface-elevated: #20211d;
  --ink: #f0efe9;
  --soft: #b0afa7;
  --faint: #8d8c84;
  --line: rgba(240, 239, 233, 0.18);
  --line-soft: rgba(240, 239, 233, 0.1);
  --cream: #f0efe9;
  --public-border: rgba(240, 239, 233, 0.16);
  --teal-dark: #9ac5b6;
  --focus-ring: #f0efe9;
  --wire-canvas: #11120f;
  --wire-ink: #f0efe9;
  --wire-muted: #aaa9a1;
  --wire-line: rgba(240, 239, 233, 0.16);
  --wire-dark: #090a08;
  --wire-surface: #181916;
  --wire-surface-elevated: #20211d;
  background: var(--wire-canvas);
  color: var(--wire-ink);
}

html[data-theme="dark"] .public-site,
html[data-theme="dark"] .public-site > main,
html[data-theme="dark"] .public-site .home-wireframe,
html[data-theme="dark"] .public-site .solution-wireframe,
html[data-theme="dark"] .public-site .designer-page,
html[data-theme="dark"] .public-site .roadmap-page,
html[data-theme="dark"] .public-site .article-page,
html[data-theme="dark"] .public-site .legal-page,
html[data-theme="dark"] .gateway-page,
html[data-theme="dark"] .gateway-page .gateway-main,
html[data-theme="dark"] .wire-feature,
html[data-theme="dark"] .wire-github-band,
html[data-theme="dark"] .wire-conversion,
html[data-theme="dark"] .solutions-chapter-design,
html[data-theme="dark"] .solutions-chapter-field,
html[data-theme="dark"] .solutions-chapter-production,
html[data-theme="dark"] .public-site .final-cta.page-cta,
html[data-theme="dark"] .careers-page .careers-cta,
html[data-theme="dark"] .designer-proof,
html[data-theme="dark"] .roadmap-page {
  background: var(--wire-canvas);
  color: var(--wire-ink);
}

html[data-theme="dark"] .public-topbar {
  background: rgba(17, 18, 15, 0.94);
  color: var(--wire-ink);
}

html[data-theme="dark"] .public-topbar .nav-dropdown-panel,
html[data-theme="dark"] .public-site .mobile-menu nav,
html[data-theme="dark"] .download-page .download-action details .actions {
  border-color: var(--wire-line);
  background: var(--wire-surface);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .public-topbar .nav-dropdown[data-current] summary,
html[data-theme="dark"] .public-topbar .nav-dropdown[open] summary,
html[data-theme="dark"] .public-topbar .nav-dropdown summary:hover,
html[data-theme="dark"] .public-topbar .nav-dropdown-panel a:hover,
html[data-theme="dark"] .public-topbar .nav-dropdown-panel a:focus-visible,
html[data-theme="dark"] .public-topbar .nav-dropdown-panel a[aria-current="page"] {
  color: #9ac5b6;
}

html[data-theme="dark"] .public-topbar .nav-dropdown-panel a:hover,
html[data-theme="dark"] .public-topbar .nav-dropdown-panel a:focus-visible,
html[data-theme="dark"] .public-topbar .nav-dropdown-panel a[aria-current="page"] {
  background: var(--wire-surface-elevated);
}

html[data-theme="dark"] .public-site .mobile-menu-links > a:hover,
html[data-theme="dark"] .public-site .mobile-menu-links > a:focus-visible,
html[data-theme="dark"] .public-site .mobile-menu-links > a[aria-current="page"],
html[data-theme="dark"] .public-site .mobile-menu nav .mobile-menu-utilities a:hover,
html[data-theme="dark"] .public-site .mobile-menu nav .mobile-menu-utilities a:focus-visible {
  background: var(--wire-surface-elevated);
  color: var(--wire-ink);
}

html[data-theme="dark"] .public-site .theme-mode-button:hover {
  background: rgba(240, 239, 233, 0.08);
  color: var(--wire-ink);
}

html[data-theme="dark"] .public-site .theme-mode-button[aria-pressed="true"] {
  background: var(--wire-ink);
  color: #11120f;
}

html[data-theme="dark"] .public-site main figure,
html[data-theme="dark"] .gateway-page .agent-artwork,
html[data-theme="dark"] .workspace-agent-grid figure,
html[data-theme="dark"] .public-site .article-page .article-header .article-cover,
html[data-theme="dark"] .public-site #researchArticleMain .article-header .article-cover {
  background: var(--wire-surface);
  box-shadow: inset 0 0 0 1px var(--wire-line);
}

html[data-theme="dark"] .chisel-model-card {
  background: var(--wire-surface);
}

html[data-theme="dark"] .account-access-state.error {
  color: #efb8b0;
}

html[data-theme="dark"] .account-settings-sidebar {
  background: var(--wire-surface);
}

html[data-theme="dark"] .account-access {
  background: var(--wire-surface);
}

html[data-theme="dark"] .account-actions {
  background: var(--wire-surface);
}

html[data-theme="dark"] .account-settings-sidebar nav a:hover,
html[data-theme="dark"] .account-settings-sidebar nav a:focus-visible,
html[data-theme="dark"] .account-actions a:hover,
html[data-theme="dark"] .account-actions a:focus-visible {
  background: rgba(240, 239, 233, 0.06);
}

html[data-theme="dark"] .account-settings-sidebar nav a[aria-current="page"] {
  background: rgba(240, 239, 233, 0.1);
}

html[data-theme="dark"] .account-actions .account-destructive-action strong {
  color: #efb8b0;
}

html[data-theme="dark"] .account-access[data-plan-state="grace"] .account-plan-status,
html[data-theme="dark"] .account-access[data-plan-state="past_due"] .account-plan-status,
html[data-theme="dark"] .account-access[data-plan-state="canceled"] .account-plan-status {
  color: #efb8b0;
}

html[data-theme="dark"] .usage-meter {
  background: var(--wire-surface-elevated);
}

html[data-theme="dark"] .usage-meter i {
  background: var(--wire-ink);
}

html[data-theme="dark"] .gateway-page .button,
html[data-theme="dark"] .gateway-page button,
html[data-theme="dark"] .gateway-page .card,
html[data-theme="dark"] .gateway-page form.stack label,
html[data-theme="dark"] .gateway-page .contact-form input,
html[data-theme="dark"] .gateway-page .contact-form select,
html[data-theme="dark"] .gateway-page .contact-form textarea {
  border-color: var(--wire-line);
  background: var(--wire-surface);
  color: var(--wire-ink);
}

html[data-theme="dark"] .gateway-page .button:hover,
html[data-theme="dark"] .gateway-page .button:focus-visible,
html[data-theme="dark"] .gateway-page button:hover,
html[data-theme="dark"] .gateway-page button:focus-visible,
html[data-theme="dark"] .gateway-page .status-pill,
html[data-theme="dark"] .gateway-page .notice,
html[data-theme="dark"] .gateway-page .account-entry aside,
html[data-theme="dark"] .wire-agent-strip a:hover,
html[data-theme="dark"] .wire-agent-strip a:focus-visible,
html[data-theme="dark"] .wire-usecase-list li > a:hover,
html[data-theme="dark"] .wire-usecase-list li > a:focus-visible,
html[data-theme="dark"] .wire-project-list > a:hover,
html[data-theme="dark"] .wire-project-list > a:focus-visible,
html[data-theme="dark"] .solutions-journey-index a:hover,
html[data-theme="dark"] .solutions-journey-index a:focus-visible {
  background: var(--wire-surface-elevated);
}

html[data-theme="dark"] .gateway-page .form-status {
  border-color: #8f5149;
  background: #2a1917;
  color: #efb8b0;
}

html[data-theme="dark"] .public-topbar .nav-cta,
html[data-theme="dark"] .gateway-page .button.primary,
html[data-theme="dark"] .gateway-page button.primary,
html[data-theme="dark"] .public-site .dark-pill,
html[data-theme="dark"] .public-site .wire-dark-pill,
html[data-theme="dark"] .roadmap-manifesto-link,
html[data-theme="dark"] .roadmap-manifesto-cta,
html[data-theme="dark"] .public-site .mobile-menu nav .mobile-menu-cta {
  border-color: var(--wire-ink);
  background: var(--wire-ink);
  color: #11120f;
}

html[data-theme="dark"] .public-topbar .nav-cta:hover,
html[data-theme="dark"] .public-topbar .nav-cta:focus-visible,
html[data-theme="dark"] .gateway-page .button.primary:hover,
html[data-theme="dark"] .gateway-page .button.primary:focus-visible,
html[data-theme="dark"] .gateway-page button.primary:hover,
html[data-theme="dark"] .gateway-page button.primary:focus-visible,
html[data-theme="dark"] .public-site .dark-pill:hover,
html[data-theme="dark"] .public-site .dark-pill:focus-visible,
html[data-theme="dark"] .public-site .wire-dark-pill:hover,
html[data-theme="dark"] .public-site .wire-dark-pill:focus-visible,
html[data-theme="dark"] .roadmap-manifesto-link:hover,
html[data-theme="dark"] .roadmap-manifesto-link:focus-visible,
html[data-theme="dark"] .roadmap-manifesto-cta:hover,
html[data-theme="dark"] .roadmap-manifesto-cta:focus-visible {
  border-color: #d5d4cd;
  background: #d5d4cd;
  color: #11120f;
}

html[data-theme="dark"] .roadmap-page {
  --roadmap-ink: var(--wire-ink);
  --roadmap-muted: var(--wire-muted);
  --roadmap-line: var(--wire-line);
}

html[data-theme="dark"] .roadmap-manifesto-section > header span,
html[data-theme="dark"] .roadmap-continuum span,
html[data-theme="dark"] .roadmap-plan > article > span {
  color: var(--wire-muted);
}

html[data-theme="dark"] .roadmap-manifesto-disconnects span {
  color: var(--wire-muted);
}

html[data-theme="dark"] .public-site .article-page .article-subtitle,
html[data-theme="dark"] .public-site #researchArticleMain .article-subtitle {
  color: #c9c8c1;
}

html[data-theme="dark"] .public-site .article-page .article-meta,
html[data-theme="dark"] .public-site .article-page .article-cover figcaption,
html[data-theme="dark"] .public-site .article-page .article-image figcaption,
html[data-theme="dark"] .public-site .article-toc p,
html[data-theme="dark"] .public-site .article-toc a {
  color: var(--wire-muted);
}

html[data-theme="dark"] .public-site .article-body p,
html[data-theme="dark"] .public-site .article-body li,
html[data-theme="dark"] .public-site #researchArticleMain .article-body p,
html[data-theme="dark"] .public-site #researchArticleMain .article-body li {
  color: #d7d6cf;
}

html[data-theme="dark"] .public-site .article-body code {
  background: var(--wire-surface-elevated);
  color: #e3ad9e;
}

html[data-theme="dark"] .public-site .site-footer {
  border-color: var(--wire-line);
  background: #0b0c0a;
  color: var(--wire-ink);
}

html[data-theme="dark"] .public-site .footer-brand .wordmark strong,
html[data-theme="dark"] .public-site .footer-inner .footer-heading {
  color: var(--wire-ink);
}

html[data-theme="dark"] .public-site .footer-brand > p,
html[data-theme="dark"] .public-site .footer-inner .footer-column,
html[data-theme="dark"] .public-site .footer-meta,
html[data-theme="dark"] .public-site .footer-meta a {
  color: var(--wire-muted);
}
