/* Visual language from paqshot.com: Inter + Instrument Serif, ink, brand indigo, pills. */

:root {
  --ink: #191c1f;
  --body: #3d4349;
  --muted: #6b7280;
  --stone: #9ca3af;
  --border: #e8e8ec;
  --subtle: #f7f7f8;
  --sand: #e8e3d9;
  --canvas: #fff;
  --brand: #494fdf;
  --brand-hover: #3a40c4;
  --accent: #2d6a4f;
}

body {
  background: var(--subtle);
  color: var(--ink);
}

body.bg-white {
  background: var(--subtle);
}

h1,
h2 {
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-weight: 400 !important;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h1 em,
h2 em {
  font-style: italic;
}

.hero-display {
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-display {
  font-size: clamp(2.15rem, 5.5vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

input[type="search"] {
  border-radius: 9999px;
  border-color: var(--border);
  background: var(--canvas);
}

#header-q:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgb(73 79 223 / 0.14);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.site-header-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 3.75rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .site-header-bar {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header-bar {
    padding: 0 2rem;
  }
}

.site-header-logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.site-header-logo span:first-child {
  display: flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-header-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.site-header-nav > a,
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.7rem;
  border: 0;
  background: transparent;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.site-header-nav > a:hover,
.mega-trigger:hover,
.site-header-nav > a.is-on,
.mega.is-open .mega-trigger {
  color: var(--ink);
  background: var(--subtle);
}

.nav-count {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--stone);
  font-variant-numeric: tabular-nums;
}

.mega-chevron {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.15s ease;
}

.mega.is-open .mega-chevron {
  transform: rotate(180deg);
}

.mega {
  position: static;
}

.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 60;
  padding: 1.5rem 0 1.75rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgb(25 28 31 / 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.mega-inner {
  display: grid;
  gap: 1.75rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .mega-inner {
    padding: 0 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .mega-inner {
    padding: 0 2rem;
    grid-template-columns: 1.1fr 0.9fr 0.9fr 1.15fr;
    gap: 2rem;
  }
}

.mega-kicker {
  margin: 0 0 0.65rem;
  padding: 0 0.65rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.mega-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.65rem;
  border-radius: 0.75rem;
}

.mega-item:hover {
  background: var(--subtle);
}

.mega-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.mega-item em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

.mega-ico {
  display: flex;
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  background: var(--canvas);
}

.mega-ico:not(:has(img)) {
  background: var(--sand);
}

.mega-ico img {
  width: 1.05rem;
  height: 1.05rem;
  object-fit: contain;
}

.mega-feature {
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--subtle);
}

.mega-photo {
  display: block;
  width: 100%;
  height: 7.5rem;
  margin-bottom: 0.85rem;
  object-fit: cover;
  border-radius: 0;
  background: #111;
}

.mega-feature .mega-kicker {
  padding: 0;
}

.mega-feature .mega-item:hover {
  background: var(--canvas);
}

.site-header-search {
  display: none;
  min-width: 0;
  margin-left: auto;
}

.site-header-search input {
  width: 12.5rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: #fff;
  padding: 0 0.9rem;
  font-size: 0.8125rem;
}

.site-header-cta {
  display: none;
  flex-shrink: 0;
  align-items: center;
  height: 2.25rem;
  padding: 0 0.95rem;
  border-radius: 9999px;
  background: var(--ink);
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
}

.site-header-cta:hover {
  background: #2a2e32;
}

.site-header-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: #fff;
  cursor: pointer;
}

.site-header-burger span {
  display: block;
  width: 0.9rem;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
}

@media (min-width: 1024px) {
  .site-header-nav {
    display: flex;
    flex: 1;
  }

  .site-header-search {
    display: block;
  }

  .site-header-cta {
    display: inline-flex;
  }

  .site-header-burger {
    display: none;
  }

  .mega-panel {
    left: 50%;
    right: auto;
    width: min(72rem, calc(100vw - 2rem));
    margin-left: 0;
    transform: translate(-50%, -8px);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    box-shadow: 0 18px 50px rgb(25 28 31 / 0.12);
  }

  .mega.is-open .mega-panel {
    transform: translate(-50%, 0.55rem);
  }

  .site-header {
    overflow: visible;
  }
}

@media (max-width: 1023px) {
  .site-header.is-nav-open .site-header-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem 1rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 40px rgb(25 28 31 / 0.08);
  }

  .site-header.is-nav-open .mega-panel {
    position: static;
    padding: 0.25rem 0 0.5rem;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-nav-open .mega-inner {
    padding: 0;
  }

  .site-header.is-nav-open .site-header-search {
    display: block;
    width: 100%;
    margin: 0.5rem 0 0;
  }

  .site-header.is-nav-open .site-header-search input {
    width: 100%;
  }
}

.hero-wash {
  background: var(--canvas);
}

.lp main > section:not(.hero-wash) {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

@media (min-width: 1024px) {
  .lp main > section:not(.hero-wash) {
    padding-top: 9.5rem;
    padding-bottom: 9.5rem;
  }
}

section:not(.wash-dark) .rounded-lg.border {
  background: var(--canvas);
}

.wash {
  background: var(--subtle);
}

.wash-sand {
  background: var(--sand);
}

.wash-dark {
  background: var(--ink);
  color: #fff;
}

.wash-dark h2,
.wash-dark h3 {
  color: #fff;
}

a.inline-flex.min-h-12 {
  border-radius: 9999px;
}

a.inline-flex.min-h-12.bg-zinc-950:hover,
a.inline-flex.min-h-12.bg-black:hover {
  background: #2a2e32;
}

a.inline-flex.min-h-12.border:hover {
  border-color: var(--ink);
  background: var(--subtle);
}

.tile,
.skill-card {
  background: var(--canvas);
  border-color: var(--border);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.tile:hover,
.skill-card:hover {
  border-color: var(--ink);
  background-color: var(--canvas);
}

.jumbo-photo {
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--border);
  background: #111;
}

.jumbo-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whom-card {
  overflow: hidden;
}

.whom-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.photo-face {
  object-position: center 18%;
}

.whom-card-body {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .whom-card-body {
    padding: 2rem;
  }
}

.logo-marquee {
  border-top: 1px solid var(--border);
  padding: 1.35rem 0 1.5rem;
}

.logo-marquee-viewport {
  overflow: hidden;
  margin-top: 0.85rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3.25rem;
  padding-inline: 1.5rem;
  animation: logo-marquee 36s linear infinite;
}

.logo-marquee-viewport:hover .logo-marquee-track {
  animation-play-state: paused;
}

html.js-gsap .logo-marquee-track {
  animation: none;
}

.logo-marquee-item {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-marquee-item img {
  display: block;
  height: 1.85rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
}

.logo-marquee-mark {
  height: 1.85rem !important;
  width: 1.85rem !important;
  max-width: none;
  border-radius: 0.4rem;
  object-fit: cover;
}

@keyframes logo-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    row-gap: 1rem;
  }

  .logo-marquee-item[aria-hidden="true"] {
    display: none;
  }
}

.code-win {
  overflow: hidden;
  border-radius: 0.75rem;
  background: #09090b;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08), 0 10px 24px rgb(0 0 0 / 0.14);
}

.code-win-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  padding: 0.65rem 1rem;
}

.code-win-dots {
  display: flex;
  flex-shrink: 0;
  gap: 0.375rem;
}

.code-win-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
}

.code-win-dots span:nth-child(1) {
  background: #ff5f57;
}

.code-win-dots span:nth-child(2) {
  background: #febc2e;
}

.code-win-dots span:nth-child(3) {
  background: #28c840;
}

.code-win-title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  color: #a1a1aa;
}

.code-win pre,
.code-win code {
  display: block;
  overflow-x: auto;
  padding: 1rem 1.1rem 1.15rem;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #f4f4f5;
}

.mcp-run {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.mcp-run-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.25rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mcp-run-kicker svg {
  width: 0.7rem;
  height: 0.7rem;
  color: #16a34a;
}

.mcp-run-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.15rem;
  padding: 0 0.8rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.mcp-run-btn img {
  width: 0.85rem;
  height: 0.85rem;
  object-fit: contain;
}

.mcp-run-btn img.host-logo-figma {
  width: 0.7rem;
}

.mcp-run-btn:hover {
  border-color: var(--brand);
  background-color: rgb(73 79 223 / 0.06);
}

.mcp-run-btn.is-on {
  border-color: var(--brand);
  background-color: rgb(73 79 223 / 0.1);
  color: var(--brand-hover);
}

.host-logo {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.host-logo-figma {
  width: 1.15rem;
}

.client-btn {
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.client-btn:hover {
  border-color: var(--brand);
  background-color: rgb(73 79 223 / 0.06);
}

.client-btn.is-on {
  border-color: var(--brand);
  background-color: rgb(73 79 223 / 0.1);
  color: var(--brand-hover);
}

.shelf-chip {
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.shelf-chip:hover {
  border-color: var(--ink);
  background-color: var(--subtle);
}

.shelf-chip.is-on {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.control-ico svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

.skill-star {
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.skill-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.skill-badge-github {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
}

.skill-badge-figma {
  border: 1px solid #d0d0d0;
  background: #1e1e1e;
  color: #fff;
}

.skill-badge-npm {
  border: 1px solid #cb3837;
  background: #fff;
  color: #cb3837;
}

.skill-badge-listed {
  border: 1px solid var(--border);
  background: #f4f4f5;
  color: var(--ink);
}

.skill-stars {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.skill-block {
  position: relative;
}

.skill-corner-logo {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 1.05rem;
  height: 1.05rem;
  object-fit: contain;
  pointer-events: none;
}

.skill-corner-logo.brand-mark-figma {
  width: 0.72rem;
  height: 1.05rem;
}

.skill-corner-logo.brand-mark-reislo {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 0.22rem;
}

.author-name {
  font-weight: 600;
  color: var(--ink);
}

.rounded-lg {
  border-radius: 0.75rem;
}

.border-zinc-200 {
  border-color: var(--border);
}

.how-nav {
  display: none;
}

@media (min-width: 1024px) {
  .how-nav {
    position: sticky;
    top: 6rem;
    display: flex;
    height: max-content;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-top: 2.5rem;
  }
}

.how-nav button {
  display: block;
  width: 100%;
  border-left: 2px solid var(--border);
  padding: 0.55rem 0 0.55rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--stone);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.how-nav button:hover {
  color: var(--ink);
}

.how-nav button.is-on {
  border-left-color: var(--ink);
  color: var(--ink);
  font-weight: 500;
}

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

.how-step {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: start;
  padding: 4.5rem 0;
  opacity: 0.28;
  transform: translateY(1.25rem);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.how-step.is-in {
  opacity: 1;
  transform: none;
}

.how-step-index {
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  padding-top: 0.2rem;
}

.how-step-body {
  min-width: 0;
}

.how-browser {
  margin-top: 1.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--canvas);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.04), 0 18px 40px rgb(0 0 0 / 0.07);
}

.how-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--subtle);
  padding: 0.6rem 0.9rem;
}

.how-browser-url {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  border-radius: 9999px;
  background: var(--canvas);
  padding: 0.28rem 0.85rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  color: var(--muted);
}

.how-browser-stage {
  position: relative;
  min-height: 14rem;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #f7f7f8 0%, #fff 42%);
}

.how-viz {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hv-piece {
  opacity: 0;
  transform: translateY(10px) scale(0.86);
}

.how-step.is-in .hv-piece {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), width 0.7s ease;
}

.how-step.is-in .hv-piece:nth-child(1) { transition-delay: 0.08s; }
.how-step.is-in .hv-piece:nth-child(2) { transition-delay: 0.22s; }
.how-step.is-in .hv-piece:nth-child(3) { transition-delay: 0.36s; }

.hv-circle {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: var(--ink);
}

.hv-square {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 0.85rem;
  background: var(--brand);
}

.hv-you {
  background: var(--ink);
}

.hv-mcp {
  background: var(--brand);
}

.hv-wire {
  width: 0;
  height: 2px;
  margin: 0 0.35rem;
  background: var(--ink);
  transform: none;
  transform-origin: left center;
}

.how-step.is-in .hv-wire {
  width: 4.5rem;
  opacity: 1;
  transform: none;
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s, opacity 0.4s ease 0.2s;
}

.how-viz-pick {
  gap: 0.55rem;
  padding: 0 1.1rem;
}

.hv-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 5.5rem;
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  background: var(--subtle);
}

.hv-tile.is-pick {
  width: 4.6rem;
  height: 6.5rem;
  border-color: var(--ink);
  background: var(--ink);
}

.hv-in-tile {
  width: 1.55rem;
  height: 1.55rem;
  background: var(--brand);
}

.how-step.is-in .hv-tile.is-pick {
  transform: translateY(-6px);
}

.how-viz-quote .hv-square.is-pick {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
}

.hv-ring {
  position: absolute;
  width: 7.6rem;
  height: 7.6rem;
  color: var(--brand);
}

.hv-ring circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transform: rotate(-90deg);
  transform-origin: 60px 60px;
}

.how-step.is-in .hv-ring circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.hv-chip {
  position: absolute;
  right: 1.15rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  height: 1.55rem;
  padding: 0 0.45rem;
  border-radius: 9999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.how-step.is-in .hv-chip {
  transform: translateY(0) scale(1);
}

.how-viz-out {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 1.2fr 0.8fr;
  gap: 0.7rem;
  width: min(28rem, 72%);
  height: 70%;
  margin: auto;
  padding: 0;
}

.hv-art {
  display: block;
  border-radius: 0.55rem;
}

.hv-art-hero {
  position: relative;
  display: flex;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}

.hv-in-art {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--brand);
}

.hv-art-sq {
  background: var(--brand);
}

.hv-art-bar {
  background: var(--sand);
}

.how-step.is-in .hv-art-hero { transition-delay: 0.08s; }
.how-step.is-in .hv-art-sq { transition-delay: 0.24s; }
.how-step.is-in .hv-art-bar { transition-delay: 0.4s; }

@media (min-width: 640px) {
  .how-step {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 2rem;
  }

  .how-step-index {
    font-size: 3.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how-step {
    min-height: 0;
    padding: 2rem 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hv-piece,
  .how-step.is-in .hv-piece,
  .how-step.is-in .hv-wire,
  .hv-ring circle {
    opacity: 1;
    transform: none;
    width: auto;
    transition: none;
  }

  .how-step.is-in .hv-wire {
    width: 4.5rem;
  }

  .hv-ring circle {
    stroke-dashoffset: 0;
  }
}

.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.75rem;
}

@media (min-width: 1024px) {
  .site-footer {
    padding-top: 5.5rem;
  }
}

.site-footer-inner {
  margin: 0 auto;
  max-width: 80rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .site-footer-inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-footer-inner {
    padding: 0 2rem;
  }
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 1.5rem;
}

@media (min-width: 640px) {
  .site-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: 1.2fr repeat(5, 1fr);
    gap: 2.5rem 1.75rem;
  }
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.site-footer-logo span:first-child {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.site-footer-brand p {
  margin-top: 0.85rem;
  max-width: 14rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li a {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
}

.site-footer li a:hover {
  color: var(--ink);
}

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-top: 3.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.site-footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.site-footer-status i,
.site-footer-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #17c964;
  box-shadow: 0 0 0 3px rgb(23 201 100 / 0.16);
}

.blog-card {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
}

.blog-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.blog-card-body {
  padding: 1.5rem 1.25rem;
}

.blog-card:hover {
  border-color: var(--ink);
}

.blog-cover {
  overflow: hidden;
  border-radius: 0;
  border: 1px solid var(--border);
  background: #111;
}

.blog-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.airtable-embed {
  display: block;
  width: 100%;
  min-height: 82rem;
  border: 0;
  background: transparent;
}

.blog-card time {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--stone);
}

.blog-card h2,
.blog-card h3 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.blog-card p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
}

.blog-prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--body);
}

.blog-prose h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  line-height: 1.2;
}

.blog-prose p + p {
  margin-top: 1.1rem;
}

.blog-prose ul,
.blog-prose ol {
  margin-top: 1rem;
  padding-left: 1.25rem;
}

.blog-prose ul {
  list-style: disc;
}

.blog-prose ol {
  list-style: decimal;
}

.blog-prose li + li {
  margin-top: 0.4rem;
}

.blog-prose a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-prose a:hover {
  color: var(--brand);
}

.blog-prose code {
  font-size: 0.875em;
}

.blog-more {
  display: grid;
  gap: 0.5rem;
}

.blog-more a {
  font-size: 0.9375rem;
  font-weight: 500;
}

.blog-more a:hover {
  text-decoration: underline;
}
