@font-face {
  font-display: swap;
  font-family: "TWK Everett";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/TWKEverett-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "TWK Everett Mono";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/TWKEverettMono-Regular.woff2") format("woff2");
}

:root {
  --blue: #0000ff;
  --blue-soft: #3434ff;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.92);
  --panel: rgba(255, 255, 255, 0.2);
  --mono: "TWK Everett Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "TWK Everett", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--blue);
  color: var(--white);
  font-family: var(--sans);
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--blue);
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

html.mobile-menu-open,
html.mobile-menu-open body {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.skip-link {
  background: var(--white);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  left: 12px;
  padding: 12px;
  position: fixed;
  text-transform: uppercase;
  top: 12px;
  transform: translateY(-150%);
  z-index: 10;
}

.skip-link:focus {
  transform: translateY(0);
}

p,
h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: break-word;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  min-height: 100vh;
  padding: 8px;
}

.sidebar {
  padding-right: 8px;
}

.mobile-nav-bar,
.mobile-footer,
.mobile-blog-label {
  display: none;
}

.sidebar-inner,
.site-main {
  border: 1px solid var(--line);
  min-height: calc(100vh - 16px);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 921px) {
  .site-shell {
    align-items: start;
  }

  .sidebar {
    align-self: start;
    height: calc(100vh - 16px);
    left: 8px;
    position: fixed;
    top: 8px;
    width: 192px;
  }

  .sidebar-inner {
    height: 100%;
    min-height: 100%;
  }

  .site-main {
    grid-column: 2;
    height: calc(100vh - 16px);
    min-height: 0;
  }

  .home-panel {
    height: 100%;
    overflow: hidden;
  }

  .home-copy {
    min-height: calc(100vh - 111px);
  }
}

.brand {
  border-bottom: 1px solid var(--line);
  display: block;
  padding: 18px 12px;
}

.logo-image {
  display: block;
  height: 21px;
  width: 74px;
}

.primary-nav,
.secondary-nav {
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav a,
.secondary-nav a {
  padding: 12px;
}

.secondary-nav a {
  align-items: center;
  display: flex;
  gap: 6px;
}

.external-arrow {
  display: inline-block;
  flex: 0 0 12px;
  height: 12px;
  position: relative;
  width: 12px;
}

.external-arrow::before {
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  content: "";
  height: 7px;
  position: absolute;
  right: 1px;
  top: 1px;
  width: 7px;
}

.external-arrow::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 2px;
  position: absolute;
  top: 9px;
  transform: rotate(-45deg);
  transform-origin: left center;
  width: 12px;
}

.primary-nav a:hover,
.secondary-nav a:hover,
.primary-nav a.is-active,
.secondary-nav a.is-active {
  background: var(--white);
  color: var(--blue);
}

.secondary-nav p {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  padding: 8px 12px 12px;
  text-transform: uppercase;
}

.site-main {
  display: grid;
  grid-template-rows: 57px minmax(0, 1fr);
  min-width: 0;
}

.topbar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-family: var(--mono);
  font-size: 12px;
  justify-content: space-between;
  line-height: 1.25;
  min-width: 0;
  padding: 0 24px;
  text-transform: uppercase;
}

.crumbs {
  display: flex;
  gap: 0.45em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crumbs a:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.social-links {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.social-links a:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
}

.main-panel {
  min-height: 0;
  overflow: auto;
  position: relative;
}

.home-panel {
  min-height: 0;
  overflow: hidden;
  padding: 12px 24px 24px;
}

.home-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 109px);
  position: relative;
  z-index: 1;
}

.home-copy h1 {
  font-size: 104px;
  font-weight: 400;
  line-height: 1.1;
  max-width: 960px;
}

.home-copy h1 span {
  display: block;
}

.home-copy p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

.home-visual {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.halftone {
  height: auto;
  max-width: none;
  pointer-events: none;
  position: absolute;
  width: 879px;
}

.halftone-one {
  top: 26px;
  right: -294px;
}

.halftone-two {
  right: -66px;
  top: 343px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(320px, 32.6%) minmax(0, 1fr);
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: auto;
  padding: 24px;
}

.list-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.list-card img,
.image-placeholder {
  aspect-ratio: 350 / 140;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  object-fit: cover;
  width: 100%;
}

.list-card.is-current img {
  border-color: var(--white);
}

.meta,
.section-kicker,
.rail-section h2 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.list-card .meta {
  font-size: 10px;
}

.list-title {
  font-size: 20px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.article-pane {
  border-left: 1px solid var(--line);
  min-width: 0;
  overflow: auto;
  padding: 40px 48px;
}

.article-pane.solo {
  border-left: 0;
  margin: 0 auto;
  max-width: 697px;
}

.article-header,
.article-content {
  margin: 0 auto;
  max-width: 600px;
}

.article-header {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.article-header h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
}

.article-content {
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.article-content p,
.article-content ul {
  margin: 0 0 24px;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  margin: 40px 0 24px;
}

.article-content strong {
  font-weight: 700;
}

.article-content ul {
  padding-left: 24px;
}

.article-content a {
  font-family: var(--mono);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.journey-pane,
.projects-pane {
  min-width: 0;
  overflow: auto;
  padding: 24px;
}

.community-panel {
  grid-template-columns: minmax(0, 1fr) 398px;
}

.journey-pane {
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: space-between;
}

.journey-pane h1 {
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
}

.journey-heading {
  display: grid;
  gap: 24px;
}

.journey-heading p {
  font-size: 22px;
  line-height: 1.45;
  max-width: 920px;
}

.journey-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journey-grid a {
  aspect-ratio: 766 / 500;
  background: var(--panel);
  display: flex;
  font-family: var(--mono);
  font-size: 14px;
  height: auto;
  overflow: hidden;
  padding: 12px;
  position: relative;
  text-transform: uppercase;
}

.journey-label {
  position: relative;
  z-index: 1;
}

.journey-illustration {
  display: block;
  inset: 0;
  position: absolute;
  z-index: 0;
}

.journey-illustration img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.community-faq-panel {
  grid-template-columns: minmax(0, 1fr) 398px;
}

.community-faq-main {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
}

.faq-pane {
  min-height: 0;
  overflow: auto;
  padding: 24px;
}

.faq-content,
.quick-links-inner {
  display: grid;
  gap: 32px;
  min-width: 0;
}

.community-hero {
  display: grid;
  gap: 24px;
  max-width: 720px;
}

.community-hero h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
}

.community-hero-intro {
  display: grid;
  font-size: 18px;
  gap: 16px;
  line-height: 1.45;
  max-width: 620px;
}

.community-hero-intro p {
  margin: 0;
}

.community-section-list {
  display: grid;
  gap: 8px;
}

.community-content-section {
  background: var(--panel);
  display: grid;
  gap: 24px;
  padding: 12px;
}

.community-content-section h2 {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.community-content-section p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  background: var(--panel);
  min-width: 0;
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--mono);
  font-size: 14px;
  justify-content: space-between;
  line-height: 1.2;
  list-style: none;
  min-height: 41px;
  padding: 12px;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-arrow {
  display: inline-block;
  flex: 0 0 12px;
  height: 12px;
  margin-left: 16px;
  position: relative;
  width: 12px;
}

.faq-arrow::before {
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  height: 6px;
  left: 3px;
  position: absolute;
  top: 1px;
  transform: rotate(45deg);
  width: 6px;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 12px 12px;
}

.quick-links-section {
  border-top: 1px solid var(--line);
  padding: 24px;
}

.quick-link-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-link-card {
  background: var(--panel);
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 14px;
  gap: 24px;
  justify-content: space-between;
  line-height: 1.2;
  min-height: 77px;
  padding: 12px;
  text-transform: uppercase;
}

.quick-link-card .external-arrow {
  align-self: flex-end;
}

.side-rail {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
}

.rail-section {
  min-height: 0;
  overflow: auto;
  padding: 24px;
}

.rail-section h2 {
  margin: 0;
}

.rail-section + .rail-section {
  border-top: 1px solid var(--line);
}

.rail-section h2 + .rail-list {
  margin-top: 24px;
}

.events-section {
  display: grid;
  align-content: start;
  gap: 32px;
}

.event-card {
  display: grid;
  gap: 20px;
  grid-template-columns: 71px minmax(0, 1fr);
  min-width: 0;
}

.event-thumb {
  aspect-ratio: 1;
  background: #4444ff;
  object-fit: cover;
  width: 100%;
}

.event-card span:last-child {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.event-card small {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-meta {
  align-items: flex-start;
  display: inline-flex;
  gap: 4px;
}

.event-meta::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  content: "";
  flex: 0 0 12px;
  height: 12px;
  width: 12px;
}

.event-location::before {
  background-image: url("../images/icons/figma-location.svg");
}

.event-date::before {
  background-image: url("../images/icons/figma-calendar.svg");
}

.event-card strong {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.channel-section {
  display: grid;
  gap: 32px;
}

.channel-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.channel-grid a {
  align-items: center;
  background: var(--panel);
  display: flex;
  font-family: var(--mono);
  height: 48px;
  justify-content: center;
  min-width: 44px;
}

.social-icon {
  display: block;
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.ecosystem-panel {
  grid-template-columns: minmax(0, 1fr) 398px;
}

.projects-pane {
  display: grid;
  align-content: start;
  gap: 32px;
}

.project-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  background: var(--panel);
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: space-between;
  min-width: 0;
  padding: 12px;
}

.project-card:first-child:not(.has-logo) {
  border: 1px solid var(--line);
}

.project-card.is-featured {
  border: 1px solid var(--line);
}

.project-card.has-logo,
.submit-card {
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
}

.project-card.has-logo {
  padding: 0;
}

.project-card.has-logo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-card strong {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.project-card span:last-child {
  font-size: 13px;
  line-height: 1.4;
}

.submit-card {
  align-items: stretch;
  background: var(--white);
  color: var(--blue);
  font-family: var(--mono);
  text-transform: uppercase;
}

.submit-card span {
  align-self: flex-end;
}

.submit-card em {
  font-style: normal;
}

.rail-empty {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.rail-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rail-list a {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 14px;
  gap: 8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.rail-list a > span:first-child {
  min-width: 0;
}

.rail-arrow {
  display: block;
  flex: 0 0 12px;
  height: 12px;
  width: 12px;
}

.ecosystem-rail {
  grid-template-rows: 1fr 1fr;
}

.legal-panel {
  padding: 24px;
}

.legal-list {
  display: grid;
  gap: 12px;
  max-width: 350px;
}

.legal-list a {
  background: var(--white);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.2;
  min-height: 44px;
  padding: 12px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .home-copy h1 {
    font-size: 88px;
  }

  .journey-pane h1 {
    font-size: 68px;
  }

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

@media (max-width: 920px) {
  .site-shell {
    display: block;
    max-width: 100vw;
    overflow-x: clip;
    padding: 8px;
    width: 100%;
  }

  .sidebar {
    padding: 0;
  }

  .sidebar-inner,
  .site-main {
    min-height: auto;
  }

  .sidebar-inner {
    border-bottom: 0;
  }

  .primary-nav,
  .secondary-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .secondary-nav p {
    grid-column: 1 / -1;
  }

  .site-main {
    border-top: 0;
    grid-template-rows: auto minmax(70vh, 1fr);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .home-panel {
    min-height: calc(100svh - 236px);
    padding: 16px;
  }

  .home-copy {
    gap: 120px;
    min-height: calc(100svh - 268px);
  }

  .home-copy h1 {
    font-size: 64px;
    max-width: 680px;
  }

  .halftone {
    width: 760px;
  }

  .halftone-one {
    right: -500px;
    top: 120px;
  }

  .halftone-two {
    bottom: -420px;
    right: -270px;
  }

  .split-panel,
  .community-panel,
  .ecosystem-panel {
    display: block;
  }

  .content-list {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .article-pane,
  .side-rail {
    border-left: 0;
  }

  .article-pane {
    padding: 32px 24px;
  }

  .article-pane.solo {
    max-width: none;
  }

  .journey-pane {
    gap: 96px;
    overflow: visible;
  }

  .journey-pane h1 {
    font-size: 64px;
  }

  .side-rail,
  .ecosystem-rail {
    border-top: 1px solid var(--line);
    display: block;
  }

  .rail-section {
    overflow: visible;
  }

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

  .events-section h2,
  .channel-section h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .content-list,
  .journey-grid,
  .project-grid,
  .events-section {
    grid-template-columns: 1fr;
  }

  .primary-nav,
  .secondary-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .primary-nav a:nth-child(3),
  .secondary-nav a:nth-child(3) {
    grid-column: 1 / -1;
  }

  .brand {
    font-size: 20px;
  }

  .primary-nav,
  .secondary-nav,
  .legal-list a {
    font-size: 13px;
  }

  .topbar {
    padding: 12px;
  }

  .social-links {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    white-space: normal;
    width: 100%;
  }

  .social-links a {
    background: var(--panel);
    min-height: 44px;
    padding: 14px 12px;
    text-align: center;
  }

  .social-links a:last-child {
    grid-column: 1 / -1;
  }

  .home-panel,
  .journey-pane,
  .projects-pane,
  .content-list,
  .legal-panel,
  .rail-section {
    padding: 12px;
  }

  .home-copy h1 {
    font-size: 42px;
    max-width: 100%;
  }

  .home-copy p {
    max-width: none;
  }

  .halftone {
    width: 620px;
  }

  .halftone-one {
    right: -430px;
    top: 180px;
  }

  .halftone-two {
    bottom: -310px;
    right: -310px;
  }

  .article-pane {
    padding: 28px 16px;
  }

  .article-header h1 {
    font-size: 32px;
  }

  .journey-pane h1 {
    font-size: 44px;
  }

  .journey-grid a {
    height: auto;
  }

  .event-card {
    gap: 16px;
  }

  .project-card {
    height: auto;
    min-height: 220px;
  }

  .project-card.has-logo,
  .submit-card {
    min-height: 0;
  }

  .legal-list {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .site-shell {
    padding: 0;
  }

  .sidebar-inner,
  .site-main {
    border-left: 0;
    border-right: 0;
  }

  .primary-nav,
  .secondary-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-copy {
    gap: 96px;
  }

  .home-copy h1 {
    font-size: 34px;
  }

  .article-header h1 {
    font-size: 28px;
  }

  .journey-pane h1 {
    font-size: 38px;
  }
}

/* Final Figma mobile overrides: keep this block last. */
@media (max-width: 920px) {
  body::before {
    background: var(--blue);
    content: "";
    height: 8px;
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
  }

  .site-shell {
    border: 0;
    display: block;
    margin: 8px;
    max-width: calc(100vw - 16px);
    min-height: calc(100svh - 16px);
    overflow-x: clip;
    padding: 0;
    width: auto;
  }

  .sidebar {
    background: var(--blue);
    max-width: none;
    padding: 0;
    position: sticky;
    top: 0;
    width: auto;
    z-index: 20;
  }

  .mobile-nav-bar {
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    height: 57px;
    justify-content: space-between;
    max-width: none;
    min-height: 57px;
    overflow: hidden;
    padding: 18px 12px;
    width: 100%;
  }

  .mobile-brand {
    display: block;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0;
  }

  .mobile-menu-toggle {
    align-items: center;
    align-self: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    display: flex;
    flex: 0 0 24px;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    padding: 0;
    width: 24px;
  }

  .mobile-menu-toggle span {
    background: currentColor;
    display: block;
    height: 1px;
    width: 20px;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    display: none;
  }

  .sidebar-inner {
    background: var(--blue);
    border: 0;
    display: flex;
    height: calc(100svh - 75px);
    justify-content: space-between;
    max-height: none;
    min-height: 0;
    overflow: auto;
    padding: 0;
  }

  .js-ready:not(.mobile-menu-open) .sidebar-inner {
    display: none;
  }

  .brand,
  .sidebar-inner .secondary-nav p {
    display: none;
  }

  .primary-nav,
  .secondary-nav {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 8px;
    width: 100%;
  }

  .primary-nav a,
  .secondary-nav a {
    align-items: center;
    display: flex;
    min-height: 48px;
    padding: 15px 12px;
  }

  .secondary-nav {
    margin-top: auto;
  }

  .site-main {
    border: 0;
    display: grid;
    grid-template-rows: 38px minmax(0, 1fr) auto;
    max-width: none;
    min-height: auto;
    overflow: visible;
    width: auto;
  }

  .mobile-menu-open .site-main {
    display: none;
  }

  .topbar {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    font-size: 10px;
    gap: 0;
    min-height: 38px;
    padding: 0 16px;
  }

  .topbar .social-links {
    display: none;
  }

  .main-panel {
    border-bottom: 1px solid var(--line);
    max-width: none;
    min-height: 0;
    overflow: visible;
    width: auto;
  }

  .home-panel {
    min-height: 0;
    padding: 24px 16px 0;
  }

  .home-copy {
    gap: 24px;
    justify-content: flex-start;
    min-height: auto;
  }

  .home-copy h1 {
    font-size: 42px;
    line-height: 1.1;
    max-width: 342px;
  }

  .home-copy p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 342px;
  }

  .home-visual {
    height: 300px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
  }

  .halftone {
    width: 475px;
    z-index: 0;
  }

  .halftone-one {
    left: 23px;
    right: auto;
    top: 0;
  }

  .halftone-two {
    display: block;
    left: -100px;
    right: auto;
    top: 172px;
  }

  .mobile-footer {
    display: grid;
    gap: 16px;
    padding: 16px;
  }

  .mobile-footer-social {
    display: flex;
    font-family: var(--mono);
    font-size: 10px;
    gap: 16px;
    line-height: 1.35;
    overflow: hidden;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-footer p {
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .content-list,
  .journey-pane,
  .projects-pane,
  .legal-panel,
  .rail-section {
    padding: 24px 16px;
  }
}

@media (max-width: 520px) {
  .site-shell {
    margin: 8px auto;
    max-width: 374px;
    width: calc(100vw - 16px);
  }

  .home-copy h1 {
    font-size: 42px;
  }
}

@media (max-width: 920px) {
  .site-shell {
    border: 1px solid var(--line);
    display: block;
    margin: 8px;
    max-width: calc(100vw - 16px);
    min-height: calc(100svh - 16px);
    overflow-x: clip;
    padding: 0;
    width: auto;
  }

  .sidebar {
    background: var(--blue);
    max-width: none;
    padding: 0;
    position: sticky;
    top: 0;
    width: auto;
    z-index: 20;
  }

  .mobile-nav-bar {
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    height: 57px;
    justify-content: space-between;
    max-width: none;
    min-height: 57px;
    overflow: hidden;
    padding: 18px 12px;
    width: 100%;
  }

  .mobile-brand {
    display: block;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0;
  }

  .mobile-menu-toggle {
    align-items: center;
    align-self: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    display: flex;
    flex: 0 0 24px;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    padding: 0;
    width: 24px;
  }

  .mobile-menu-toggle span {
    background: currentColor;
    display: block;
    height: 1px;
    width: 20px;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    display: none;
  }

  .sidebar-inner {
    background: var(--blue);
    border: 0;
    display: flex;
    height: calc(100svh - 75px);
    justify-content: space-between;
    max-height: none;
    min-height: 0;
    overflow: auto;
    padding: 0;
  }

  .js-ready:not(.mobile-menu-open) .sidebar-inner {
    display: none;
  }

  .brand,
  .sidebar-inner .secondary-nav p {
    display: none;
  }

  .primary-nav,
  .secondary-nav {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 8px;
    width: 100%;
  }

  .primary-nav a,
  .secondary-nav a {
    align-items: center;
    display: flex;
    min-height: 48px;
    padding: 15px 12px;
  }

  .secondary-nav {
    margin-top: auto;
  }

  .site-main {
    border: 0;
    display: grid;
    grid-template-rows: 38px minmax(0, 1fr) auto;
    max-width: none;
    min-height: auto;
    overflow: visible;
    width: auto;
  }

  .mobile-menu-open .site-main {
    display: none;
  }

  .topbar {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    font-size: 10px;
    gap: 0;
    min-height: 38px;
    padding: 0 16px;
  }

  .topbar .social-links {
    display: none;
  }

  .main-panel {
    border-bottom: 1px solid var(--line);
    max-width: none;
    min-height: 0;
    overflow: visible;
    width: auto;
  }

  .home-panel {
    min-height: 0;
    padding: 24px 16px 0;
  }

  .home-copy {
    gap: 24px;
    justify-content: flex-start;
    min-height: auto;
  }

  .home-copy h1 {
    font-size: 42px;
    line-height: 1.1;
    max-width: 342px;
  }

  .home-copy p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 342px;
  }

  .home-visual {
    height: 300px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
  }

  .halftone {
    width: 475px;
    z-index: 0;
  }

  .halftone-one {
    left: 23px;
    right: auto;
    top: 0;
  }

  .halftone-two {
    display: block;
    left: -100px;
    right: auto;
    top: 172px;
  }

  .mobile-footer {
    display: grid;
    gap: 16px;
    padding: 16px;
  }

  .mobile-footer-social {
    display: flex;
    font-family: var(--mono);
    font-size: 10px;
    gap: 16px;
    line-height: 1.35;
    overflow: hidden;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-footer p {
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .content-list,
  .journey-pane,
  .projects-pane,
  .legal-panel,
  .rail-section {
    padding: 24px 16px;
  }
}

@media (max-width: 680px) {
  .site-shell {
    margin: 8px;
    max-width: none;
    width: calc(100vw - 16px);
  }

  .halftone-one {
    left: 23px;
  }

  .halftone-two {
    left: -100px;
  }
}

@media (max-width: 920px) {
  html.mobile-menu-open,
  html.mobile-menu-open body {
    overflow: hidden;
  }

  .site-shell {
    border: 1px solid var(--line);
    display: block;
    margin: 8px;
    max-width: calc(100vw - 16px);
    min-height: calc(100svh - 16px);
    overflow-x: clip;
    padding: 0;
    width: auto;
  }

  .sidebar {
    background: var(--blue);
    max-width: none;
    padding: 0;
    position: sticky;
    top: 0;
    width: auto;
    z-index: 20;
  }

  .mobile-nav-bar {
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    height: 57px;
    justify-content: space-between;
    max-width: none;
    min-height: 57px;
    overflow: hidden;
    padding: 18px 12px;
    width: 100%;
  }

  .mobile-brand {
    display: block;
    flex: 0 0 auto;
    min-width: 0;
    padding: 0;
  }

  .mobile-menu-toggle {
    align-items: center;
    align-self: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    display: flex;
    flex: 0 0 24px;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    padding: 0;
    width: 24px;
  }

  .mobile-menu-toggle span {
    background: currentColor;
    display: block;
    height: 1px;
    width: 20px;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    display: none;
  }

  .mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
  }

  .sidebar-inner {
    background: var(--blue);
    border: 0;
    display: flex;
    height: calc(100svh - 75px);
    justify-content: space-between;
    max-height: none;
    min-height: 0;
    overflow: auto;
    padding: 0;
  }

  .js-ready:not(.mobile-menu-open) .sidebar-inner {
    display: none;
  }

  .brand,
  .sidebar-inner .secondary-nav p {
    display: none;
  }

  .primary-nav,
  .secondary-nav {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 8px;
    width: 100%;
  }

  .primary-nav a,
  .secondary-nav a {
    align-items: center;
    display: flex;
    min-height: 48px;
    padding: 15px 12px;
  }

  .secondary-nav {
    margin-top: auto;
  }

  .site-main {
    border: 0;
    display: grid;
    grid-template-rows: 38px minmax(0, 1fr) auto;
    max-width: none;
    min-height: auto;
    overflow: visible;
    width: auto;
  }

  .mobile-menu-open .site-main {
    display: none;
  }

  .topbar {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    font-size: 10px;
    min-height: 38px;
    padding: 0 16px;
  }

  .topbar .social-links {
    display: none;
  }

  .main-panel {
    border-bottom: 1px solid var(--line);
    max-width: none;
    min-height: 0;
    overflow: visible;
    width: auto;
  }

  .home-panel {
    min-height: 0;
    padding: 24px 16px 0;
  }

  .home-copy {
    gap: 24px;
    justify-content: flex-start;
    min-height: auto;
  }

  .home-copy h1 {
    font-size: 42px;
    line-height: 1.1;
    max-width: 342px;
  }

  .home-copy p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 342px;
  }

  .home-visual {
    height: 300px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
  }

  .halftone {
    width: 475px;
    z-index: 0;
  }

  .halftone-one {
    left: 123px;
    right: auto;
    top: 0;
  }

  .halftone-two {
    display: block;
    left: 0;
    right: auto;
    top: 172px;
  }

  .mobile-footer {
    display: grid;
    gap: 16px;
    padding: 16px;
  }

  .mobile-footer-social {
    display: flex;
    font-family: var(--mono);
    font-size: 10px;
    gap: 16px;
    line-height: 1.35;
    overflow: hidden;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-footer p {
    font-family: var(--mono);
    font-size: 10px;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .content-list,
  .journey-pane,
  .projects-pane,
  .legal-panel,
  .rail-section {
    padding: 24px 16px;
  }
}

@media (max-width: 420px) {
  .site-shell {
    margin: 8px;
    padding: 0;
  }

  .sidebar-inner,
  .site-main {
    border-left: 0;
    border-right: 0;
  }

  .home-copy h1 {
    font-size: 42px;
  }
}

@media (max-width: 920px) {
  .site-shell {
    display: block;
    max-width: 100vw;
    overflow-x: clip;
    padding: 0;
    width: 100%;
  }

  .sidebar {
    background: var(--blue);
    max-width: 100vw;
    padding: 0;
    position: sticky;
    top: 0;
    width: 100vw;
    z-index: 20;
  }

  .mobile-nav-bar {
    align-items: center;
    border: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    display: flex;
    justify-content: space-between;
    max-width: 100vw;
    min-height: 57px;
    overflow: hidden;
    width: 100vw;
  }

  .mobile-brand {
    display: block;
    flex: 1 1 auto;
    font-family: var(--sans);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    min-width: 0;
    padding: 17px 12px 18px;
  }

  .mobile-menu-toggle {
    align-self: stretch;
    appearance: none;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--line);
    color: var(--white);
    cursor: pointer;
    flex: 0 0 96px;
    font-family: var(--mono);
    font-size: 14px;
    line-height: 1;
    min-width: 96px;
    padding: 0 12px;
    text-transform: uppercase;
  }

  .mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: -4px;
  }

  .sidebar-inner {
    background: var(--blue);
    border-top: 0;
    display: flex;
    justify-content: flex-start;
    max-height: calc(100svh - 57px);
    min-height: 0;
    overflow: auto;
  }

  .js-ready:not(.mobile-menu-open) .sidebar-inner {
    display: none;
  }

  .brand {
    display: none;
  }

  .primary-nav,
  .secondary-nav {
    display: flex;
    flex-direction: column;
    font-size: 14px;
  }

  .primary-nav a,
  .secondary-nav a {
    min-height: 48px;
    padding: 15px 12px;
  }

  .secondary-nav p {
    border-top: 1px solid var(--line);
    padding: 12px;
  }

  .site-main {
    border-top: 0;
    grid-template-rows: minmax(0, 1fr);
    max-width: 100vw;
    overflow-x: hidden;
    width: 100vw;
  }

  .topbar {
    display: none;
  }

  .main-panel,
  .article-pane,
  .journey-pane,
  .projects-pane,
  .rail-section {
    overflow: visible;
  }

  .main-panel {
    max-width: 100vw;
    min-height: calc(100svh - 65px);
    width: 100vw;
  }

  .home-panel {
    min-height: calc(100svh - 65px);
    padding: 16px;
  }

  .home-copy {
    gap: 32px;
    justify-content: flex-start;
    min-height: auto;
  }

  .home-copy h1 {
    font-size: 64px;
    max-width: 680px;
  }

  .home-copy p {
    max-width: 500px;
  }

  .halftone {
    width: 620px;
    z-index: 0;
  }

  .halftone-one {
    bottom: auto;
    right: -360px;
    top: 720px;
  }

  .halftone-two {
    display: none;
  }

  .split-panel,
  .community-panel,
  .ecosystem-panel,
  .blog-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-x: hidden;
  }

  .blog-index-list {
    order: 1;
  }

  .blog-index-article {
    order: 2;
  }

  .post-article {
    border-left: 0;
    order: 1;
  }

  .post-list {
    border-bottom: 0;
    border-top: 1px solid var(--line);
    order: 2;
  }

  .content-list {
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    overflow: visible;
    width: 100%;
  }

  .article-pane,
  .side-rail {
    border-left: 0;
  }

  .article-pane {
    padding: 32px 24px;
  }

  .article-pane.solo {
    max-width: none;
  }

  .journey-pane {
    gap: 48px;
  }

  .journey-pane h1 {
    font-size: 64px;
  }

  .side-rail,
  .ecosystem-rail {
    border-top: 1px solid var(--line);
    display: block;
  }

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

  .events-section h2,
  .channel-section h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .home-panel,
  .journey-pane,
  .projects-pane,
  .content-list,
  .legal-panel,
  .rail-section {
    padding: 12px;
  }

  .content-list,
  .journey-grid,
  .project-grid,
  .events-section {
    grid-template-columns: 1fr;
  }

  .sidebar {
    margin: 0;
  }

  .home-copy {
    gap: 28px;
  }

  .home-copy h1 {
    font-size: 42px;
  }

  .home-copy p {
    max-width: none;
  }

  .halftone {
    width: 520px;
  }

  .halftone-one {
    right: -330px;
    top: 760px;
  }

  .article-pane {
    padding: 28px 16px;
  }

  .article-header h1 {
    font-size: 32px;
  }

  .journey-pane {
    gap: 32px;
  }

  .journey-pane h1 {
    font-size: 44px;
  }

  .journey-grid a {
    height: auto;
  }

  .project-card {
    height: auto;
    min-height: 220px;
  }

  .project-card.has-logo,
  .submit-card {
    min-height: 0;
  }

  .legal-list {
    max-width: none;
  }
}

@media (max-width: 420px) {
  .site-shell {
    padding: 0;
  }

  .sidebar {
    margin: 0;
  }

  .sidebar-inner,
  .site-main {
    border-left: 0;
    border-right: 0;
  }

  .home-copy h1 {
    font-size: 36px;
  }

  .article-header h1 {
    font-size: 28px;
  }

  .journey-pane h1 {
    font-size: 38px;
  }
}

/* Last-mile Figma mobile corrections. */
@media (max-width: 920px) {
  body::before {
    height: 8px;
  }

  .site-shell {
    border: 0;
    display: block;
    margin: 8px 16px;
    max-width: none;
    min-height: calc(100svh - 16px);
    padding: 57px 0 0;
    width: auto;
  }

  .sidebar {
    background: var(--blue);
    border: 1px solid var(--line);
    border-bottom: 0;
    left: 16px;
    max-height: calc(100svh - 16px);
    position: fixed;
    right: 16px;
    top: 8px;
    width: auto;
    z-index: 100;
  }

  .mobile-nav-bar {
    border: 0;
    border-bottom: 1px solid var(--line);
    height: 57px;
    min-height: 57px;
    overflow: visible;
    padding: 18px 76px 18px 24px;
    position: relative;
    width: 100%;
  }

  .mobile-brand {
    flex: 0 0 auto;
    padding: 0;
  }

  .mobile-menu-toggle {
    align-items: center;
    align-self: center;
    border: 0;
    display: flex;
    flex: 0 0 24px;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    padding: 0;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
  }

  .mobile-menu-toggle span {
    background: currentColor;
    display: block;
    height: 1px;
    width: 20px;
  }

  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    display: none;
  }

  .sidebar-inner {
    height: calc(100svh - 74px);
  }

  .site-main {
    border: 1px solid var(--line);
    border-top: 0;
    display: grid;
    grid-template-rows: 38px minmax(0, 1fr) auto;
    max-width: none;
    overflow: visible;
    width: 100%;
  }

  .mobile-menu-open .site-main {
    display: none;
  }

  .topbar {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    font-size: 10px;
    min-height: 38px;
    padding: 0 16px;
  }

  .topbar .social-links {
    display: none;
  }

  .main-panel {
    max-width: none;
    min-height: 0;
    width: 100%;
  }

  .content-list,
  .article-pane,
  .journey-pane,
  .projects-pane,
  .legal-panel,
  .rail-section,
  .mobile-footer {
    max-width: 100%;
    width: 100%;
  }

  .home-panel {
    min-height: 0;
    padding: 24px 16px 0;
  }

  .home-copy {
    gap: 24px;
    min-height: auto;
  }

  .home-copy h1 {
    font-size: 42px;
    line-height: 1.1;
    max-width: 342px;
  }

  .home-copy p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 342px;
  }

  .home-visual {
    height: 300px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
  }

  .halftone {
    width: 475px;
  }

  .halftone-one {
    left: 123px;
    right: auto;
    top: 0;
  }

  .halftone-two {
    display: block;
    left: 0;
    right: auto;
    top: 172px;
  }

  .mobile-footer {
    display: grid;
  }
}

@media (max-width: 680px) {
  .site-shell {
    margin: 8px 16px;
    max-width: none;
    width: auto;
  }

  .halftone-one {
    left: 23px;
  }

  .halftone-two {
    left: -100px;
  }
}

@media (max-width: 920px) and (min-height: 760px) {
  body.home-page {
    min-height: 100svh;
    overflow: hidden;
  }

  .home-page .site-shell {
    height: calc(100svh - 16px);
    min-height: 0;
    overflow: hidden;
  }

  .home-page .site-main {
    height: calc(100svh - 73px);
    min-height: 0;
    overflow: hidden;
  }

  .home-page .main-panel,
  .home-page .home-panel {
    height: auto;
    min-height: 0;
    overflow: hidden;
  }

  .home-page .mobile-footer {
    display: grid;
  }
}

@media (max-width: 920px) {
  .home-panel {
    display: flex;
    flex-direction: column;
  }

  .home-visual {
    flex: 0 0 300px;
    height: 300px;
    margin-top: auto;
  }

  .halftone {
    height: auto;
    width: 475px;
  }

  .halftone-one {
    left: -13px;
    top: 0;
  }

  .halftone-two {
    left: -136px;
    top: 172px;
  }
}

@media (max-width: 680px) {
  .halftone-one {
    left: -13px;
  }

  .halftone-two {
    left: -136px;
  }
}

@media (max-width: 920px) {
  .site-shell {
    margin: 8px;
    max-width: calc(100vw - 16px);
  }

  .sidebar {
    left: 8px;
    right: 8px;
  }

  .mobile-nav-bar {
    padding: 18px 12px;
  }

  .mobile-menu-toggle {
    right: 12px;
  }

  .blog-panel {
    display: flex;
    flex-direction: column;
  }

  .blog-index-article {
    display: none;
  }

  .mobile-blog-label {
    display: block;
    font-family: var(--mono);
    font-size: 14px;
    line-height: normal;
    text-transform: uppercase;
  }

  .content-list.blog-index-list {
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 1;
    overflow: visible;
    padding: 24px 16px;
    width: 100%;
  }

  .blog-index-list .list-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .blog-index-list .list-card img,
  .blog-index-list .image-placeholder {
    aspect-ratio: auto;
    height: 140px;
    object-fit: cover;
    width: 100%;
  }

  .blog-index-list .list-card .meta {
    font-size: 12px;
    line-height: 1.35;
  }

  .blog-index-list .list-title {
    font-size: 20px;
    line-height: 1.3;
  }

  .post-article {
    border-left: 0;
    order: 1;
  }

  .post-list {
    display: none;
  }

  .article-pane.post-article {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    padding: 24px 16px;
    width: 100%;
  }

  .post-article .article-header,
  .post-article .article-content {
    margin: 0;
    max-width: none;
    min-width: 0;
    overflow-wrap: anywhere;
    width: 100%;
  }

  .post-article .article-header *,
  .post-article .article-content * {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .post-article .article-header {
    gap: 24px;
    margin-bottom: 24px;
  }

  .post-article .article-header .meta {
    font-size: 12px;
    line-height: 1.35;
  }

  .post-article .article-header h1 {
    font-size: 26px;
    line-height: 1.25;
  }

  .post-article .article-content {
    font-size: 15px;
    line-height: 1.6;
  }

  .post-article .article-content p,
  .post-article .article-content ul {
    margin-bottom: 24px;
  }

  .post-article .article-content h2 {
    font-size: 22px;
    line-height: 1.25;
    margin: 40px 0 24px;
  }

  .post-article .article-content ul {
    font-size: 14px;
    padding-left: 21px;
  }

  .community-faq-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow-x: hidden;
  }

  .community-faq-main {
    display: block;
    overflow: visible;
  }

  .faq-pane,
  .quick-links-section {
    overflow: visible;
    padding: 24px 16px;
  }

  .faq-content,
  .quick-links-inner {
    gap: 24px;
  }

  .community-hero {
    gap: 18px;
  }

  .community-hero h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .community-hero-intro {
    font-size: 15px;
    line-height: 1.55;
  }

  .community-content-section {
    gap: 18px;
  }

  .community-content-section p {
    font-size: 15px;
  }

  .quick-link-grid {
    grid-template-columns: 1fr;
  }

  .faq-item p {
    font-size: 15px;
  }

  .quick-link-card {
    min-height: 68px;
  }

  .mobile-footer-social {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
    width: 100%;
  }

  .mobile-footer-social a {
    align-items: center;
    background: var(--panel);
    display: flex;
    justify-content: center;
    min-height: 48px;
  }
}

.home-visual .nil-ascii-canvas {
  aspect-ratio: 1500 / 2200;
  background: transparent;
  display: block;
  height: auto;
  opacity: 0;
  pointer-events: auto;
  touch-action: none;
  transition: opacity 160ms ease;
  width: clamp(520px, 45vw, 640px);
}

.home-visual[data-nil-ascii-scene] {
  overflow: visible;
  pointer-events: auto;
  z-index: 0;
}

.home-panel:has(.home-visual[data-nil-ascii-scene]) .home-copy {
  pointer-events: none;
}

.home-visual.is-loaded .nil-ascii-canvas {
  opacity: 0.78;
}

.home-visual.has-ascii-error .nil-ascii-canvas {
  display: none;
}

.halftone-towers.nil-ascii-canvas {
  bottom: clamp(-300px, -21.5vw, -160px);
  left: auto;
  right: 16px;
  top: auto;
}

@media (min-width: 921px) and (max-width: 1180px) {
  .home-copy p {
    max-width: 340px;
  }

  .home-visual .nil-ascii-canvas {
    width: clamp(440px, 48vw, 520px);
  }

  .halftone-towers.nil-ascii-canvas {
    bottom: -260px;
  }
}

@media (max-width: 920px) {
  .home-visual[data-nil-ascii-scene] {
    overflow: visible;
  }

  .home-visual .nil-ascii-canvas {
    width: 360px;
  }

  .halftone-towers.nil-ascii-canvas {
    bottom: -155px;
    left: auto;
    right: clamp(-76px, calc(-136px + 20vw), -36px);
    top: auto;
  }

  .home-page .mobile-footer {
    background: var(--blue);
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 920px) and (max-height: 820px) {
  .home-copy p,
  .mobile-footer p,
  .mobile-footer-social {
    max-width: 320px;
  }

  .mobile-footer-social {
    width: min(100%, 320px);
  }
}

@media (max-width: 920px) and (max-height: 759px) {
  .home-visual {
    flex-basis: 350px;
    height: 350px;
  }

  .home-visual[data-nil-ascii-scene] {
    overflow: hidden;
  }

  .halftone-towers.nil-ascii-canvas {
    bottom: -165px;
  }
}

@media (max-width: 380px) {
  .home-copy h1,
  .home-copy p {
    max-width: calc(100vw - 48px);
  }

  .home-copy h1 {
    font-size: 40px;
  }
}

/* Roadmap */
.roadmap-panel {
  display: grid;
  grid-template-rows: 68px minmax(0, 1fr);
  overflow: hidden;
}

.roadmap-tabs {
  border-bottom: 1px solid var(--line);
  counter-reset: roadmap-tab;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-width: 0;
  position: relative;
}

.roadmap-tab {
  align-items: flex-start;
  border-right: 1px solid var(--line);
  counter-increment: roadmap-tab;
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 12px;
  gap: 8px;
  justify-content: flex-start;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  padding: 17px 14px 12px 24px;
  position: relative;
  text-transform: uppercase;
}

.roadmap-tab:last-child {
  border-right: 0;
}

.roadmap-tab-name {
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roadmap-tab-name::before {
  content: counter(roadmap-tab, decimal-leading-zero) "\00a0";
}

.roadmap-tab-sub {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roadmap-tab small {
  align-items: center;
  background: var(--blue);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--white);
  display: inline-flex;
  font-size: 7px;
  left: 0;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 3px 5px 2px 5px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  white-space: nowrap;
}

.roadmap-tab:hover,
.roadmap-tab.is-active {
  background: var(--white);
  color: var(--blue);
}

.roadmap-tab:focus-visible {
  outline-color: currentColor;
  outline-offset: -4px;
}

.roadmap-stage {
  display: grid;
  grid-template-columns: 450px minmax(0, 1fr);
  min-height: 0;
}

.roadmap-stage[hidden] {
  display: none;
}

.roadmap-overview {
  border-right: 1px solid var(--line);
  display: grid;
  grid-template-rows: 196px 150px minmax(0, 1fr);
  min-height: 0;
}

.roadmap-heading {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 20px;
}

.roadmap-heading h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: auto;
}

.roadmap-heading p {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.roadmap-heading time {
  align-items: center;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 12px;
  gap: 8px;
  line-height: 1.4;
  margin-top: 18px;
  text-transform: uppercase;
}

.roadmap-heading time::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='1.3'%3E%3Crect x='2.2' y='3.4' width='11.6' height='10.4' rx='1'/%3E%3Cpath d='M2.2 6.5h11.6'/%3E%3Cpath d='M5.2 1.9v2.7M10.8 1.9v2.7'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

.roadmap-summary,
.roadmap-detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.roadmap-summary {
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  padding: 20px 24px;
}

.roadmap-summary li,
.roadmap-detail li {
  padding-left: 22px;
  position: relative;
}

.roadmap-summary li::before,
.roadmap-detail li::before {
  background: currentColor;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.5em;
  width: 6px;
}

.roadmap-summary li {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.roadmap-mask {
  container-type: size;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.roadmap-ascii-canvas {
  bottom: auto;
  height: auto;
  left: -15%;
  max-width: none;
  opacity: 0;
  pointer-events: auto;
  position: absolute;
  top: max(100cqh - 130cqw, 50cqh - 65cqw);
  touch-action: none;
  transition: opacity 160ms ease;
  width: 130%;
}

.roadmap-mask.is-loaded .roadmap-ascii-canvas {
  opacity: 0.82;
}

.roadmap-mask.has-ascii-error .roadmap-ascii-canvas {
  display: none;
}

.roadmap-detail {
  min-height: 0;
  overflow: auto;
  padding: 40px 62px 80px;
  scrollbar-color: var(--white) transparent;
  scrollbar-width: thin;
}

.roadmap-detail-section {
  max-width: 650px;
}

.roadmap-detail-section + .roadmap-detail-section {
  margin-top: 48px;
}

.roadmap-detail h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.roadmap-detail ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roadmap-detail li {
  font-size: 16px;
  line-height: 1.6;
}

.roadmap-detail strong {
  display: block;
  font-weight: 700;
}

@media (min-width: 921px) and (max-width: 1180px) {
  .roadmap-stage {
    grid-template-columns: 38% minmax(0, 1fr);
  }

  .roadmap-tab {
    padding: 15px 10px 10px 16px;
  }

  .roadmap-tab-sub {
    font-size: 10px;
  }

  .roadmap-heading {
    padding-left: 24px;
    padding-right: 24px;
  }

  .roadmap-heading h1 {
    font-size: 48px;
  }

  .roadmap-summary {
    padding-left: 24px;
    padding-right: 24px;
  }

  .roadmap-detail {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 920px) {
  .roadmap-panel {
    display: block;
    overflow: visible;
  }

  .roadmap-tabs {
    background: var(--blue);
    display: flex;
    height: 66px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    position: sticky;
    scrollbar-width: none;
    top: 65px;
    z-index: 5;
  }

  .roadmap-tabs::-webkit-scrollbar {
    display: none;
  }

  .roadmap-tab {
    flex: 0 0 152px;
    gap: 4px;
    padding: 13px 12px 9px 16px;
  }

  .roadmap-tab-sub {
    font-size: 10px;
  }

  .roadmap-stage {
    display: block;
  }

  .roadmap-overview {
    border-right: 0;
    display: grid;
    grid-template-rows: auto auto 320px;
  }

  .roadmap-heading {
    gap: 6px;
    min-height: 188px;
    padding: 28px 16px 22px;
  }

  .roadmap-heading h1 {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: auto;
    max-width: 390px;
  }

  .roadmap-summary {
    min-height: 142px;
    padding: 22px 16px;
  }

  .roadmap-detail {
    border-top: 1px solid var(--line);
    overflow: visible;
    padding: 32px 16px 64px;
  }

  .roadmap-detail-section {
    max-width: 620px;
  }

  .roadmap-detail-section + .roadmap-detail-section {
    margin-top: 44px;
  }

  .roadmap-detail h2 {
    font-size: 22px;
  }

  .roadmap-detail li {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .roadmap-tab {
    flex-basis: 108px;
    font-size: 11px;
  }

  .roadmap-heading h1 {
    font-size: 40px;
  }

  .roadmap-overview {
    grid-template-rows: auto auto 280px;
  }
}
