:root {
  color-scheme: dark;
  --p10k-bg-236: #303030;
  --p10k-dir-31: #0087af;
  --p10k-anchor-39: #00afff;
  --p10k-clean-76: #5fd700;
  --p10k-modified-178: #d7af00;
  --p10k-error-160: #d70000;
  --p10k-white-255: #eeeeee;
  --p10k-gray-248: #a8a8a8;
  --page: #181818;
  --surface: #242424;
  --surface-2: #2a2a2a;
  --line: #454545;
  --text: #eeeeee;
  --muted: #bcbcbc;
  --mono: "DejaVu Sans Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 70px rgb(0 0 0 / 35%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    var(--page);
  background-size: 42px 42px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--p10k-anchor-39);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--p10k-clean-76);
}

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

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--p10k-white-255);
  color: #111;
  font-family: var(--mono);
}

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

.scroll-meter {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 3px;
  background: transparent;
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--p10k-dir-31), var(--p10k-anchor-39), var(--p10k-clean-76));
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  background: rgb(24 24 24 / 88%);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.prompt-brand {
  display: inline-flex;
  align-items: stretch;
  color: #fff;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 34px;
  text-decoration: none;
}

.prompt-brand:hover {
  color: #fff;
}

.seg {
  display: inline-block;
  padding: 0 18px 0 16px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
}

.seg:first-child {
  padding-left: 11px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.seg + .seg {
  margin-left: -7px;
}

.seg-os {
  background: #005f87;
}

.seg-dir {
  background: var(--p10k-dir-31);
}

.seg-git {
  background: #3f7400;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.nav-links a {
  color: var(--p10k-gray-248);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--p10k-white-255);
}

.hero {
  position: relative;
  padding: 88px 0 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 8%, rgb(0 175 255 / 13%), transparent 34%),
    radial-gradient(circle at 12% 76%, rgb(95 215 0 / 8%), transparent 28%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, transparent 0 62%, rgb(255 255 255 / 2%) 62% 63%, transparent 63%);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(36px, 6vw, 84px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--p10k-anchor-39);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.terminal-mark {
  color: var(--p10k-clean-76);
}

.terminal-mark.amber,
.amber {
  color: var(--p10k-modified-178);
}

.green {
  color: var(--p10k-clean-76);
}

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

h1 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(2.65rem, 5.3vw, 5.25rem);
  line-height: 1.01;
  letter-spacing: -0.07em;
}

h1 span {
  color: var(--p10k-clean-76);
}

.intro {
  max-width: 700px;
  margin: 30px 0 0;
  color: #d2d2d2;
  font-size: 1.04rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--p10k-dir-31);
  background: var(--p10k-dir-31);
  color: #fff;
}

.button.primary:hover {
  border-color: var(--p10k-anchor-39);
  background: var(--p10k-anchor-39);
  color: #111;
}

.button.secondary {
  color: var(--p10k-white-255);
}

.button.secondary:hover {
  border-color: var(--p10k-clean-76);
  color: var(--p10k-clean-76);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status {
  padding: 5px 9px;
  border: 1px solid;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status.done {
  border-color: rgb(95 215 0 / 50%);
  background: rgb(95 215 0 / 8%);
  color: var(--p10k-clean-76);
}

.status.warn {
  border-color: rgb(215 175 0 / 50%);
  background: rgb(215 175 0 / 8%);
  color: var(--p10k-modified-178);
}

.status.stop {
  border-color: rgb(215 0 0 / 50%);
  background: rgb(215 0 0 / 8%);
  color: #ff5f5f;
}

.panel {
  border: 1px solid #505050;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visuals {
  display: grid;
  min-width: 0;
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.65fr);
  gap: 18px;
}

.hero-vision {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.hero-vision > a {
  display: block;
  overflow: hidden;
  background: #d9ded7;
}

.hero-vision img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 350ms ease;
}

.hero-vision:hover img {
  transform: scale(1.012);
}

.hero-art {
  margin: 0;
  overflow: hidden;
  transform: rotate(1.2deg);
}

.hero-art > a {
  display: block;
  overflow: hidden;
  background: #f7f4ec;
}

.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  transition: transform 350ms ease;
}

.hero-art:hover img {
  transform: scale(1.018);
}

.compact-art {
  width: min(100%, 420px);
  justify-self: center;
}

.hero-art figcaption,
.hero-vision figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.hero-art figcaption a,
.hero-vision figcaption a {
  flex: 0 0 auto;
}

.facts {
  position: relative;
  display: grid;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.facts div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.facts div:first-child {
  border-left: 1px solid var(--line);
}

.fact-label {
  display: block;
  margin-bottom: 4px;
  color: #858585;
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.facts strong {
  font-family: var(--mono);
  font-size: 0.95rem;
}

.section {
  padding-block: 110px;
}

.section-heading {
  display: grid;
  max-width: 840px;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child {
  max-width: 740px;
  margin: 22px 0 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 35px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--p10k-anchor-39), var(--p10k-clean-76), var(--p10k-modified-178));
  opacity: 0.5;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 30px;
  padding-bottom: 32px;
}

.step-number {
  position: sticky;
  top: 90px;
  display: grid;
  width: 72px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--p10k-dir-31);
  border-radius: 4px;
  background: var(--page);
  color: var(--p10k-anchor-39);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.step-body {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(36 36 36 / 92%);
  box-shadow: 0 12px 32px rgb(0 0 0 / 16%);
}

.step-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.step h3,
.gate h3 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.step p {
  color: #cecece;
}

.badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid;
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge.complete {
  border-color: rgb(95 215 0 / 45%);
  color: var(--p10k-clean-76);
}

.badge.decision,
.badge.pending {
  border-color: rgb(215 175 0 / 45%);
  color: var(--p10k-modified-178);
}

.badge.blocked {
  border-color: rgb(215 0 0 / 55%);
  color: #ff5f5f;
}

.exit {
  margin: 24px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--p10k-dir-31);
  background: rgb(0 135 175 / 8%);
  font-size: 0.9rem;
}

.exit strong {
  color: var(--p10k-anchor-39);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.artwork-card {
  display: grid;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  grid-template-columns: minmax(280px, 1.1fr) minmax(240px, 0.9fr);
}

.artwork-card > a {
  align-self: stretch;
  background: #f7f4ec;
}

.artwork-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artwork-card > div {
  padding: 25px;
}

.compact-card > a {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: 20px;
}

.compact-card img {
  width: auto;
  height: 480px;
  object-fit: contain;
}

.asset-title {
  margin: 0;
  color: var(--p10k-clean-76) !important;
  font-family: var(--mono);
  font-weight: 700;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.inline-links a {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-decoration: none;
}

.size-planner,
.mounting-planner,
.permit-path {
  margin-top: 28px;
  padding: clamp(20px, 3.5vw, 32px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #1d1d1d;
}

.planner-heading > p:last-child,
.mounting-planner > div:first-child > p:last-child {
  margin-bottom: 24px;
  color: #bcbcbc;
}

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

.size-option {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border: 1px solid #454545;
  border-radius: 5px;
  background: #262626;
}

.size-option.recommended {
  border-color: rgb(95 215 0 / 55%);
  box-shadow: inset 0 3px var(--p10k-clean-76);
}

.size-visual {
  display: grid;
  place-items: center;
  border: 3px solid var(--p10k-anchor-39);
  background:
    linear-gradient(145deg, rgb(95 215 0 / 18%), transparent 52%),
    #303030;
  color: var(--p10k-white-255);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  box-shadow: 5px 5px 0 #111;
}

.size-visual.compact {
  width: 76px;
  height: 114px;
}

.size-visual.balanced {
  width: 86px;
  height: 138px;
}

.size-visual.maximum {
  width: 156px;
  height: 94px;
}

.option-tag {
  color: var(--p10k-anchor-39);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.recommended .option-tag {
  color: var(--p10k-clean-76);
}

.size-option h4 {
  margin: 5px 0 8px;
  font-family: var(--mono);
  font-size: 0.92rem;
}

.size-option p {
  margin: 0;
  color: #adadad;
  font-size: 0.82rem;
  line-height: 1.55;
}

.benchmark-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #aaa !important;
  font-size: 0.79rem;
}

.benchmark-note strong {
  color: var(--p10k-modified-178);
  font-family: var(--mono);
}

.mounting-planner {
  background:
    linear-gradient(120deg, rgb(0 135 175 / 7%), transparent 40%),
    #1d1d1d;
}

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

.mount-demo {
  margin: 0;
  padding: 18px;
  border: 1px solid #494949;
  border-radius: 5px;
  background: #242424;
}

.assembly {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-bottom: 3px solid #777;
}

.assembly span {
  position: absolute;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 700;
}

.mini-board {
  width: 176px;
  height: 103px;
  border: 5px solid var(--p10k-dir-31);
  background: #d8ded9;
  color: #303030;
}

.mini-sign {
  border: 4px solid var(--p10k-clean-76);
  background: #f4f0e7;
  color: #17452a;
}

.mini-barrel {
  width: 58px;
  height: 76px;
  border: 4px solid #17452a;
  border-radius: 8px 8px 15px 15px;
  background: #237a45;
  color: #fff;
}

.assembly-above .mini-sign {
  top: 3px;
  left: 50%;
  width: 130px;
  height: 66px;
  transform: translateX(-50%);
}

.assembly-above .mini-board {
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
}

.assembly-above .mini-barrel {
  right: calc(50% - 29px);
  bottom: 0;
}

.assembly-side .mini-board {
  top: 22px;
  left: 9px;
}

.assembly-side .mini-sign {
  top: 20px;
  right: 8px;
  width: 78px;
  height: 117px;
}

.assembly-side .mini-barrel {
  bottom: 0;
  left: 70px;
}

.mount-demo figcaption {
  margin-top: 13px;
  color: #aaa;
  font-size: 0.77rem;
  line-height: 1.5;
}

.mount-demo figcaption strong {
  color: var(--p10k-anchor-39);
  font-family: var(--mono);
}

.real-board-card {
  margin: 22px 0 0;
  overflow: hidden;
  border: 1px solid rgb(95 215 0 / 42%);
  border-radius: 7px;
  background: #1d1d1d;
}

.real-board-card a {
  display: block;
}

.real-board-card img {
  display: block;
  width: 100%;
  height: auto;
}

.real-board-card figcaption {
  padding: 16px 18px;
  color: #bdbdbd;
  font-size: 0.82rem;
  line-height: 1.6;
}

.real-board-card figcaption strong {
  color: var(--p10k-clean-76);
  font-family: var(--mono);
}

.site-profile {
  display: grid;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #202020;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-profile div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-profile div:nth-child(2n) {
  border-right: 0;
}

.site-profile div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.site-profile span {
  display: block;
  margin-bottom: 4px;
  color: #858585;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-profile strong {
  color: var(--p10k-white-255);
  font-family: var(--mono);
  font-size: 0.84rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.source-links a {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.66rem;
  text-decoration: none;
}

.permit-path {
  border-color: rgb(95 215 0 / 42%);
  background:
    linear-gradient(120deg, rgb(95 215 0 / 6%), transparent 48%),
    #1d1d1d;
}

.path-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #454545;
}

.path-title span {
  color: var(--p10k-clean-76);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.path-title strong {
  font-family: var(--mono);
  font-size: 0.85rem;
}

.permit-path ol {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding-left: 24px;
}

.permit-path li {
  padding-left: 8px;
  color: #c8c8c8;
}

.permit-path li::marker {
  color: var(--p10k-clean-76);
  font-family: var(--mono);
  font-weight: 700;
}

.permit-path li strong {
  color: #fff;
}

.political-note {
  margin: 22px 0;
  border: 1px solid #535353;
  border-radius: 5px;
  background: #262626;
}

.political-note summary {
  padding: 14px 16px;
  color: var(--p10k-modified-178);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.political-note summary::marker {
  color: var(--p10k-anchor-39);
}

.political-note > div {
  padding: 2px 16px 17px;
  border-top: 1px solid #444;
}

.political-note p {
  color: #bdbdbd;
  font-size: 0.84rem;
}

.political-note a {
  font-family: var(--mono);
  font-size: 0.7rem;
}

.permit-path > p:last-child {
  margin: 0;
  padding: 15px;
  border-left: 3px solid var(--p10k-modified-178);
  background: rgb(215 175 0 / 7%);
  color: #d2d2d2;
  font-size: 0.86rem;
}

.measure-grid {
  display: grid;
  align-items: start;
  margin-top: 24px;
  grid-template-columns: minmax(240px, 0.8fr) minmax(340px, 1.2fr);
  gap: 26px;
}

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

.checklist li {
  position: relative;
  padding-left: 26px;
  color: #cecece;
}

.checklist li::before {
  position: absolute;
  left: 0;
  color: var(--p10k-modified-178);
  content: "□";
  font-family: var(--mono);
}

.diagram-link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  text-decoration: none;
}

.diagram-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.diagram-link span {
  display: block;
  padding: 9px 12px;
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: 0.69rem;
}

.dark-band {
  border-block: 1px solid #4a4a4a;
  background:
    linear-gradient(120deg, rgb(0 135 175 / 7%), transparent 38%),
    var(--p10k-bg-236);
}

.gate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.gate {
  padding: 30px;
  border: 1px solid #555;
  border-radius: 7px;
  background: rgb(24 24 24 / 50%);
}

.gate-id {
  display: block;
  margin-bottom: 18px;
  color: var(--p10k-modified-178);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.gate p {
  color: #c8c8c8;
}

.gate a {
  font-family: var(--mono);
  font-size: 0.73rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.download {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.download:hover {
  border-color: var(--p10k-anchor-39);
  color: var(--text);
  transform: translateY(-2px);
}

.download.selected-file {
  border-color: rgb(95 215 0 / 48%);
  background:
    linear-gradient(110deg, rgb(95 215 0 / 6%), transparent 50%),
    var(--surface);
}

.filetype {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 4px;
  background: var(--p10k-dir-31);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.filetype.pdf {
  background: var(--p10k-error-160);
}

.filetype.svg {
  background: #875f00;
}

.filetype.md {
  background: #5f5f87;
}

.download strong,
.download small {
  display: block;
}

.download strong {
  font-family: var(--mono);
  font-size: 0.88rem;
}

.download small {
  margin-top: 3px;
  color: #999;
  font-size: 0.75rem;
}

.download .arrow {
  color: var(--p10k-anchor-39);
  font-size: 1.3rem;
}

.site-footer {
  padding-block: 42px;
  border-top: 1px solid var(--line);
  background: #121212;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  margin: 0;
  font-family: var(--mono);
  font-weight: 700;
}

.footer-brand span {
  color: var(--p10k-clean-76);
}

.footer-home { display: inline-block; margin-top: 8px; color: var(--p10k-anchor-39); font: 0.7rem var(--mono); text-decoration: none; }

.site-footer p:not(.footer-brand) {
  margin: 6px 0 0;
  color: #858585;
  font-size: 0.8rem;
}

.build-state {
  color: var(--p10k-gray-248);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--p10k-modified-178);
  box-shadow: 0 0 14px rgb(215 175 0 / 55%);
}

.js .reveal {
  transform: translateY(14px);
  opacity: 0;
  transition: transform 500ms ease, opacity 500ms ease;
}

.js .reveal.visible {
  transform: none;
  opacity: 1;
}

@media (max-width: 960px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) {
    display: none;
  }

  .hero {
    padding-top: 64px;
  }

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

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

  .hero-visuals {
    width: 100%;
    max-width: 820px;
  }

  .hero-art {
    max-width: 820px;
    transform: none;
  }

  .facts {
    margin-top: 54px;
  }

  .facts div {
    padding: 16px;
  }

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

  .size-options {
    grid-template-columns: 1fr;
  }

  .size-option {
    display: grid;
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr);
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    min-height: 60px;
  }

  .seg-git {
    display: none;
  }

  .seg-dir {
    padding-right: 14px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.7rem;
  }

  .nav-links a:not(:first-child) {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-visuals {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-visuals .hero-vision {
    width: 100%;
  }

  .hero-visuals .compact-art {
    width: min(72%, 360px);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  .intro {
    font-size: 0.98rem;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-art figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

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

  .facts div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .timeline::before {
    left: 18px;
  }

  .step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 20px;
  }

  .step-number {
    top: 76px;
    width: 38px;
    height: 38px;
    font-size: 0.65rem;
  }

  .step-body {
    padding: 22px 18px;
  }

  .step-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .badge {
    align-self: flex-start;
  }

  .artwork-card {
    grid-template-columns: 1fr;
  }

  .compact-card > a {
    min-height: auto;
  }

  .compact-card img {
    width: 100%;
    height: auto;
    max-height: 520px;
  }

  .size-option {
    display: flex;
  }

  .mount-demo-grid {
    grid-template-columns: 1fr;
  }

  .site-profile {
    grid-template-columns: 1fr;
  }

  .site-profile div,
  .site-profile div:nth-child(2n),
  .site-profile div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-profile div:last-child {
    border-bottom: 0;
  }

  .path-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

  .gate {
    padding: 24px 20px;
  }

  .download {
    padding: 14px;
    gap: 12px;
  }

  .filetype {
    width: 42px;
    height: 42px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .scroll-meter,
  .actions,
  .status-row {
    display: none;
  }

  .section,
  .hero {
    padding-block: 32px;
  }

  .step-body,
  .gate {
    break-inside: avoid;
    background: #fff;
    color: #111;
  }
}
