:root {
  color-scheme: light;
  --paper: #f4ead6;
  --paper-soft: #fbf6e8;
  --paper-deep: #ead8b8;
  --ink: #181410;
  --ink-soft: #322b23;
  --muted: #746b5d;
  --line: rgba(24, 20, 16, 0.18);
  --line-strong: rgba(24, 20, 16, 0.38);
  --oxide: #d24a2f;
  --teal: #0f6c78;
  --green: #3f704f;
  --gold: #b98727;
  --night: #11100e;
  --white: #fffaf0;
  --shell: 1180px;
  --radius: 28px;
  --shadow: 0 28px 70px rgba(52, 36, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 9%, rgba(210, 74, 47, 0.12), transparent 26rem),
    radial-gradient(circle at 92% 4%, rgba(15, 108, 120, 0.14), transparent 24rem),
    linear-gradient(rgba(24, 20, 16, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 20, 16, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  background-image:
    radial-gradient(rgba(24, 20, 16, 0.18) 0.7px, transparent 0.7px),
    radial-gradient(rgba(24, 20, 16, 0.1) 0.6px, transparent 0.6px);
  background-position: 0 0, 13px 17px;
  background-size: 29px 29px, 41px 41px;
  content: "";
  pointer-events: none;
}

::selection {
  color: var(--white);
  background: var(--oxide);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper-soft);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  border-bottom: 2px solid var(--ink);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand:focus-visible,
.site-nav a:focus-visible,
.button:focus-visible,
.return-link:focus-visible {
  outline: 3px solid var(--oxide);
  outline-offset: 5px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--paper-soft);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--oxide);
  font-size: 1.05rem;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1rem;
  letter-spacing: 0.13em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
}

.site-nav a {
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--oxide);
}

.access-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  padding: 10px 13px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(24, 20, 16, 0.16);
}

.access-dot,
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(63, 112, 79, 0.15);
}

.pulse {
  display: inline-block;
  flex: 0 0 auto;
  animation: pulse 2.4s ease-in-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.8fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  padding-block: clamp(66px, 8vw, 118px) 72px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-label,
.terminal-label,
.route-meta,
.role,
.board-header,
.board-caption {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--teal);
  font-size: clamp(0.68rem, 1.3vw, 0.79rem);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 9vw, 8.3rem);
  font-weight: 450;
  letter-spacing: -0.085em;
  line-height: 0.86;
}

h1::after {
  display: inline-block;
  width: 0.42em;
  height: 0.09em;
  margin-left: 0.08em;
  background: var(--oxide);
  content: "";
  vertical-align: baseline;
}

.title-line {
  display: inline;
}

.lede {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.72;
}

.lede strong {
  color: var(--ink);
  font-weight: 850;
}

.lede-tight {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button-primary {
  color: var(--paper-soft);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--oxide);
}

.button-primary:hover {
  box-shadow: 7px 7px 0 var(--oxide);
}

.button-ghost {
  background: rgba(251, 246, 232, 0.55);
  box-shadow: 5px 5px 0 rgba(24, 20, 16, 0.13);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin: 42px 0 0;
}

.identity-grid div {
  min-width: 0;
  padding: 15px 16px;
  border: 2px solid var(--line-strong);
  background: rgba(251, 246, 232, 0.48);
}

.identity-grid dt {
  margin: 0 0 9px;
  color: var(--oxide);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-grid dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.35;
}

.route-board {
  position: relative;
  min-width: 0;
  padding: 20px;
  border: 3px solid var(--ink);
  border-radius: 34px;
  color: var(--paper-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 20px),
    var(--night);
  box-shadow: 12px 12px 0 var(--oxide), var(--shadow);
  transform: rotate(1.2deg);
}

.route-board::before {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(244, 234, 214, 0.24);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.board-header {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 4px 4px 18px;
  color: rgba(251, 246, 232, 0.76);
  font-size: 0.62rem;
}

.route-diagram {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 430px;
  align-content: center;
  padding: 32px 12px;
}

.route-diagram::before,
.route-diagram::after {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 234, 214, 0.5), transparent);
  content: "";
}

.route-diagram::after {
  top: 20%;
  bottom: 20%;
  left: 50%;
  right: auto;
  width: 2px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(244, 234, 214, 0.45), transparent);
}

.hub {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 2px solid var(--paper-soft);
  border-radius: 50%;
  background: var(--oxide);
  box-shadow: 0 0 0 12px rgba(210, 74, 47, 0.2), 0 22px 50px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) rotate(-1.2deg);
}

.hub span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.hub small {
  margin-top: -26px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lane {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(244, 234, 214, 0.34);
  border-radius: 20px;
  background: rgba(17, 16, 14, 0.8);
  backdrop-filter: blur(8px);
}

.lane::before,
.lane::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--night);
  content: "";
  transform: translateY(-50%);
}

.lane::before {
  left: -6px;
}

.lane::after {
  right: -6px;
}

.lane p {
  margin: 0;
  color: currentColor;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.lane strong {
  display: block;
  color: var(--paper-soft);
  font-size: clamp(1.28rem, 2.5vw, 1.68rem);
  letter-spacing: -0.04em;
}

.lane small {
  display: block;
  margin-top: 6px;
  color: rgba(251, 246, 232, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.lane-world {
  color: #f2c14e;
  margin-right: 12%;
}

.lane-gated {
  color: #59c5d1;
  margin-left: 12%;
}

.lane-gated div {
  padding-left: 118px;
}

.lane-private {
  color: #90c695;
  margin-right: 7%;
  margin-left: 5%;
}

.board-caption {
  margin: 0;
  padding: 18px 4px 5px;
  color: rgba(251, 246, 232, 0.72);
  font-size: 0.64rem;
  text-align: center;
}

.about-band,
.routes,
.team,
.intention {
  margin-top: clamp(52px, 7vw, 92px);
}

.about-band {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 6vw, 78px);
  padding-block: clamp(54px, 8vw, 94px);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(210, 74, 47, 0.15) 0 2px, transparent 2px 100%),
    rgba(251, 246, 232, 0.35);
  background-size: 100% 100%;
}

.section-label {
  margin: 0;
  color: var(--oxide);
  font-size: 0.72rem;
}

.about-copy h2,
.section-heading h2,
.intention-card h2 {
  max-width: 940px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.2vw, 5.1rem);
  font-weight: 450;
  letter-spacing: -0.066em;
  line-height: 0.96;
}

.about-copy p,
.intention-card p {
  max-width: 820px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.7vw, 1.17rem);
  line-height: 1.78;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.fact-grid div {
  min-height: 108px;
  padding: 17px;
  border: 2px solid var(--line-strong);
  background: var(--paper-soft);
  box-shadow: 5px 5px 0 rgba(24, 20, 16, 0.11);
}

.fact-grid span {
  display: block;
  margin-bottom: 17px;
  color: var(--teal);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.fact-grid strong {
  font-size: 1rem;
  line-height: 1.34;
}

.section-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  margin-bottom: 30px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.route-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper-soft);
  box-shadow: 7px 7px 0 rgba(24, 20, 16, 0.13);
}

.route-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 128px;
  height: 128px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  content: "";
}

.route-card:nth-child(2)::after {
  border-radius: 20px;
  transform: rotate(18deg);
}

.route-card:nth-child(3)::after {
  border-color: rgba(15, 108, 120, 0.38);
}

.route-card:nth-child(4) {
  color: var(--paper-soft);
  background: var(--night);
}

.route-card:nth-child(4) .route-meta,
.route-card:nth-child(4) p {
  color: rgba(251, 246, 232, 0.7);
}

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.63rem;
}

.route-meta span {
  color: var(--oxide);
}

.route-card h3 {
  margin: 76px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 450;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.route-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 10px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: var(--paper-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tag-open {
  color: var(--green);
}

.tag-gated {
  color: var(--teal);
}

.tag-private {
  color: var(--oxide);
}

.tag-locked {
  color: var(--paper-soft);
  background: var(--night);
}

.team-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 14px;
}

.team-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border: 2px solid var(--ink);
  background: rgba(251, 246, 232, 0.62);
}

.team-card::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.team-card.human {
  color: var(--oxide);
  box-shadow: 7px 7px 0 rgba(210, 74, 47, 0.2);
}

.team-card.alex {
  color: var(--teal);
  box-shadow: 7px 7px 0 rgba(15, 108, 120, 0.18);
}

.team-card.ada {
  color: var(--green);
  box-shadow: 7px 7px 0 rgba(63, 112, 79, 0.18);
}

.role {
  display: block;
  color: currentColor;
  font-size: 0.64rem;
}

.team-card h3 {
  margin: 70px 0 13px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 450;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.team-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.66;
}

.intention {
  padding-bottom: clamp(62px, 9vw, 112px);
}

.intention-card {
  position: relative;
  padding: clamp(30px, 6vw, 64px);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  color: var(--paper-soft);
  background:
    linear-gradient(90deg, rgba(251, 246, 232, 0.045) 50%, transparent 50%),
    var(--night);
  background-size: 18px 18px, auto;
  box-shadow: 12px 12px 0 var(--teal), var(--shadow);
}

.terminal-label {
  margin: 0 0 24px;
  color: #f2c14e;
  font-size: 0.66rem;
}

.intention-card h2,
.intention-card p {
  color: var(--paper-soft);
}

.intention-card p {
  color: rgba(251, 246, 232, 0.78);
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: principles;
}

.principles li {
  position: relative;
  min-height: 126px;
  padding: 46px 18px 18px;
  border: 1px solid rgba(251, 246, 232, 0.22);
  color: rgba(251, 246, 232, 0.72);
  font-size: 0.96rem;
  line-height: 1.58;
  counter-increment: principles;
}

.principles li::before {
  position: absolute;
  top: 16px;
  left: 18px;
  color: #f2c14e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  content: "0" counter(principles);
}

.principles strong {
  color: var(--paper-soft);
}

.closing-line {
  margin-top: 34px !important;
  color: var(--paper-soft) !important;
  font-weight: 850;
}

.closing-line span {
  color: #f2c14e;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 100px;
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer span:nth-child(2) {
  text-align: center;
}

.site-footer span:last-child {
  text-align: right;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.error-shell {
  width: min(calc(100% - 42px), 760px);
  padding-block: 80px;
}

.error-code {
  margin: 90px 0 22px;
  color: var(--oxide);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.error-shell h1 {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.9;
}

.error-copy {
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.return-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 38px;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--paper-soft);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--oxide);
}

@keyframes pulse {
  0%, 100% { transform: scale(0.88); }
  50% { transform: scale(1.2); }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .route-board {
    max-width: 680px;
    margin-inline: auto;
    transform: none;
  }

  .hub {
    transform: translate(-50%, -50%);
  }

  .route-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .hero-copy {
    max-width: 360px;
  }

  .title-line {
    display: block;
  }

  .site-header {
    min-height: 82px;
  }

  .access-pill {
    font-size: 0;
    padding: 12px;
  }

  .access-dot {
    width: 9px;
    height: 9px;
  }

  h1 {
    font-size: clamp(3.05rem, 14.4vw, 4.45rem);
    letter-spacing: -0.072em;
    line-height: 0.92;
  }

  .hero-actions,
  .identity-grid,
  .fact-grid,
  .principles,
  .team-grid,
  .route-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .about-band,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 280px;
  }

  .route-card h3 {
    margin-top: 54px;
  }

  .team-card {
    min-height: 220px;
  }

  .team-card h3 {
    margin-top: 48px;
  }

  .route-diagram {
    min-height: 390px;
    padding-inline: 0;
  }

  .hub {
    width: 94px;
    height: 94px;
  }

  .hub span {
    font-size: 1.75rem;
  }

  .hub small {
    margin-top: -20px;
  }

  .lane {
    grid-template-columns: 64px 1fr;
    padding: 16px 14px;
  }

  .lane-world,
  .lane-gated,
  .lane-private {
    margin-right: 0;
    margin-left: 0;
  }

  .lane-gated div {
    padding-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 24px;
    text-align: left;
  }

  .site-footer span:nth-child(2),
  .site-footer span:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 30px), 360px);
    margin-right: auto;
    margin-left: 15px;
  }
}

@media (max-width: 440px) {
  .brand-mark {
    width: 36px;
    height: 36px;
    box-shadow: 4px 4px 0 var(--oxide);
  }

  .brand-text small {
    display: none;
  }

  .eyebrow {
    align-items: flex-start;
    line-height: 1.45;
  }

  .button {
    width: 100%;
  }

  .route-board {
    padding: 14px;
    border-radius: 24px;
    box-shadow: 7px 7px 0 var(--oxide), var(--shadow);
  }

  .board-header {
    display: grid;
  }

  .lane strong {
    font-size: 1.16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
