:root {
  color-scheme: light;
  --label-1: rgba(0, 0, 0, 1);
  --label-2: rgba(54, 54, 48, 0.62);
  --label-3: rgba(54, 54, 48, 0.28);
  --line: rgba(54, 54, 48, 0.12);
  --background-1: rgb(251, 250, 244);
  --background-elevated: #efede7;
  --selection-bg: #c0fe04;
  --sky: #bdddf1;
  --accent-blue: #2d82df;
  --accent-orange: #ff3d0a;
  --accent-soft: #ece6df;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-tight: cubic-bezier(0.66, 0, 0.01, 1);
  font-family: "Arial", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.theme-dark {
  color-scheme: dark;
  --label-1: rgba(255, 255, 255, 1);
  --label-2: rgba(230, 232, 232, 0.64);
  --label-3: rgba(230, 232, 232, 0.26);
  --line: rgba(230, 232, 232, 0.09);
  --background-1: rgb(15, 17, 17);
  --background-elevated: #191b1b;
  --sky: #0b202f;
  --accent-blue: #65a9ff;
  --accent-orange: #ff6841;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--background-1);
  color: var(--label-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--selection-bg);
  color: #000;
}

#scene-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#app {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

#route-wipe {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--wipe-x, 50%) var(--wipe-y, 50%), transparent 0 13%, var(--background-elevated) 14% 100%),
    radial-gradient(circle at var(--wipe-x, 50%) var(--wipe-y, 50%), transparent 0 9%, var(--label-3) 10% 11%, transparent 12% 100%);
  background-size: 22px 22px, 18px 18px;
  transition: opacity 420ms var(--ease-tight);
}

#route-wipe.active {
  opacity: 1;
}

#entry-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: var(--background-1);
  transition: opacity 260ms var(--ease-out), visibility 260ms var(--ease-out);
}

#entry-loader.done {
  visibility: hidden;
  opacity: 0;
}

.loader-track {
  width: 140px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--label-3);
}

.loader-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--label-1);
  transition: width 520ms var(--ease-out);
}

.page-shell {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.scroll-root {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.scroll-root::-webkit-scrollbar {
  display: none;
}

.site-header,
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  padding: 28px 56px;
  color: var(--label-1);
  pointer-events: none;
  transition: color 300ms var(--ease-out);
}

.site-header {
  top: 0;
  align-items: flex-start;
}

.site-footer {
  bottom: 0;
  align-items: flex-end;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 16px;
  line-height: 1;
}

.brand,
.nav,
.footer-link,
.mobile-toggle {
  pointer-events: auto;
}

.brand {
  display: inline-block;
  padding: 10px 8px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(438px, 42vw);
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}

.nav button,
.nav a,
.footer-link,
.brand,
.mobile-menu a,
.mobile-menu button {
  position: relative;
}

.nav button,
.nav a,
.footer-link,
.brand,
.mobile-menu a,
.mobile-menu button {
  padding: 9px 8px;
}

.nav button::before,
.nav a::before,
.footer-link::before,
.brand::before,
.mobile-menu a::before,
.mobile-menu button::before {
  position: absolute;
  inset: 0;
  border: 2px dotted transparent;
  content: "";
  transition: border-color 180ms var(--ease-out);
  pointer-events: none;
}

.nav button:hover::before,
.nav a:hover::before,
.footer-link:hover::before,
.brand:hover::before,
.mobile-menu a:hover::before,
.mobile-menu button:hover::before,
.nav .active::before {
  border-color: var(--label-1);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 28px;
  margin-top: 4px;
}

.mobile-toggle span {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--label-1);
  transition: transform 260ms var(--ease-out), opacity 260ms var(--ease-out);
}

.mobile-toggle span + span {
  margin-top: 14px;
}

.mobile-open .mobile-toggle span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.mobile-open .mobile-toggle span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 28;
  display: none;
  align-content: center;
  padding: 96px 40px;
  background: var(--background-1);
  color: var(--label-1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-out);
}

.mobile-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-inner {
  display: grid;
  gap: 20px;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-center {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  padding: 9px 8px;
  cursor: crosshair;
  pointer-events: auto;
}

.globe {
  width: 48px;
  height: 26px;
  color: var(--label-1);
}

.scroll-indicator {
  position: fixed;
  right: 24px;
  top: 39%;
  z-index: 26;
  width: 5px;
  height: 194px;
  border-radius: 999px;
  background: var(--label-3);
  opacity: 0;
  transition: opacity 220ms var(--ease-out);
  pointer-events: none;
}

.scroll-indicator.visible {
  opacity: 1;
}

.scroll-thumb {
  width: 5px;
  height: 48px;
  border-radius: inherit;
  background: var(--label-1);
  transform: translateY(0);
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  padding: 96px 56px 112px;
}

.hero {
  min-height: 100vh;
  grid-template-rows: auto 1fr;
}

.hero-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 16px;
  line-height: 1.5;
}

.hero-kicker {
  grid-column: 1 / span 3;
  padding: 8px;
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
}

.hero-thought {
  grid-column: 5 / span 3;
  padding: 8px;
  text-wrap: balance;
}

.hero-bio {
  grid-column: 9 / span 4;
  padding: 8px;
}

.protected {
  display: inline-flex;
  gap: 0.12em;
  margin: 0 0.06em;
  vertical-align: baseline;
}

.protected span {
  display: inline-block;
  min-width: 0.62em;
  text-align: center;
  color: var(--label-1);
}

.hero-title {
  align-self: end;
  grid-column: 1 / span 8;
  padding: 8px;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  max-width: 980px;
}

.intro {
  min-height: 96vh;
  padding-top: 80px;
  padding-bottom: 96px;
}

.signature-wrap {
  position: relative;
  grid-column: 1 / span 3;
  min-height: 220px;
}

.signature {
  position: absolute;
  top: 0;
  left: -8%;
  width: 78%;
  fill: none;
  stroke: var(--selection-bg);
  stroke-width: 4;
  stroke-linecap: butt;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
}

.signature.in {
  animation: draw 1.6s var(--ease-tight) forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.intro-copy {
  grid-column: 5 / span 8;
  display: grid;
  gap: 28px;
  align-content: start;
  padding-top: 28px;
  font-size: 54px;
  line-height: 1.03;
}

.intro-copy p {
  margin: 0;
}

.muted {
  color: var(--label-2);
}

.text-link {
  color: var(--label-1);
  text-decoration: underline;
  text-decoration-color: var(--label-3);
  text-underline-offset: 0.08em;
  transition: text-decoration-color 150ms var(--ease-out);
}

.text-link:hover {
  text-decoration-color: var(--label-1);
}

.work-section {
  padding-top: 72px;
  padding-bottom: 112px;
}

.work-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: 80px;
}

.work-card {
  display: block;
  padding: 8px;
}

.work-card.big {
  grid-column: 5 / span 8;
}

.work-card.left {
  grid-column: 1 / span 5;
}

.work-card.right {
  grid-column: 7 / span 5;
}

.work-card.small-left {
  grid-column: 5 / span 3;
}

.work-card.small-right {
  grid-column: 9 / span 3;
}

.work-card.tiny-left {
  grid-column: 1 / span 3;
}

.thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: var(--background-elevated);
  isolation: isolate;
  transition: transform 500ms var(--ease-out), filter 500ms var(--ease-out);
}

.work-card:hover .thumb {
  transform: translateY(-4px);
  filter: contrast(1.04);
}

.tag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  padding: 2px 4px;
  background: var(--selection-bg);
  color: #000;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.work-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-year {
  white-space: nowrap;
}

.thumb-asterisk {
  background: #d6d1ca;
}

.asterisk {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 178px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(18deg);
}

.thumb-pricing {
  background: #050505;
}

.thumb-pricing::before {
  position: absolute;
  left: 11%;
  right: 15%;
  top: 22%;
  height: 34%;
  border-radius: 999px;
  background: var(--accent-orange);
  content: "";
}

.thumb-pricing::after {
  position: absolute;
  right: 7%;
  top: 25%;
  width: 31%;
  height: 31%;
  border-radius: 50%;
  background: #c7c7c7;
  box-shadow: -142px 78px 0 -24px #c7c7c7;
  content: "";
}

.thumb-pricing strong {
  position: absolute;
  left: 16%;
  bottom: 17%;
  color: #000;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 48px;
}

.thumb-cards {
  background: #050505;
}

.mini-card {
  position: absolute;
  width: 30%;
  height: 30%;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6d79d, #49b8ff, #f9f6e7);
  box-shadow: 0 0 0 16px #d5c6a9;
}

.mini-card.one {
  left: 18%;
  bottom: 16%;
}

.mini-card.two {
  right: 12%;
  bottom: 16%;
  background: linear-gradient(180deg, #292929, #111);
  box-shadow: none;
}

.node-outline {
  position: absolute;
  left: 8%;
  bottom: 16%;
  width: 28%;
  height: 28%;
  border: 2px solid #4cc4ff;
  border-radius: 26px;
}

.thumb-token {
  background:
    linear-gradient(90deg, transparent 49.6%, var(--line) 50%, transparent 50.4%),
    linear-gradient(0deg, transparent 49.6%, var(--line) 50%, transparent 50.4%),
    #e4dfd7;
}

.token-chip {
  position: absolute;
  left: 13%;
  top: 34%;
  width: 74%;
  padding: 20px 22px;
  background: #000;
  color: var(--selection-bg);
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 18px;
  line-height: 1.5;
}

.thumb-clear {
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 22px;
  text-transform: uppercase;
}

.thumb-audit {
  background: #111;
}

.thumb-audit svg {
  position: absolute;
  inset: 12%;
  width: 76%;
  height: 76%;
}

.thumb-docs {
  background: #ece7df;
}

.thumb-docs::before {
  position: absolute;
  inset: 18%;
  border-top: 10px solid #000;
  border-bottom: 10px solid #000;
  box-shadow: 0 56px 0 -22px #000, 0 112px 0 -22px #000;
  content: "";
}

.purpose {
  height: 100vh;
}

.purpose-inner {
  position: sticky;
  top: 0;
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  min-height: 100vh;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.contact {
  position: relative;
  min-height: 100vh;
  align-content: center;
  padding-bottom: 96px;
  pointer-events: none;
}

.contact-lines {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.contact-row span {
  pointer-events: auto;
}

.contact-row.one span:first-child {
  grid-column: 2 / span 4;
}

.contact-row.one span:last-child {
  grid-column: 7 / span 4;
  text-align: right;
}

.contact-row.two span {
  grid-column: 2 / span 8;
}

.contact-row.three span {
  grid-column: 4 / span 8;
  text-align: right;
}

.contact-links {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 96px;
  display: flex;
  justify-content: space-between;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 16px;
  text-transform: uppercase;
  pointer-events: auto;
}

.contact-social {
  display: flex;
  gap: 16px;
}

.detail-page {
  min-height: 100%;
  padding: 174px 56px 100px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.article {
  grid-column: 3 / span 7;
  max-width: 880px;
}

.article h1 {
  margin: 0 0 8px;
  font-size: 48px;
  line-height: 1;
}

.date {
  margin: 0 0 12px;
  color: var(--label-2);
  font-size: 16px;
}

.article hr {
  height: 1px;
  margin: 12px 0 16px;
  border: 0;
  background: var(--line);
}

.article .year {
  margin: 0 0 22px;
  color: var(--label-2);
}

.article p,
.article li {
  color: var(--label-2);
  font-size: 17px;
  line-height: 1.55;
}

.article p {
  margin: 0 0 14px;
}

.article h2 {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 34px 0 16px;
  font-size: 28px;
  line-height: 1.1;
}

.article h2::before {
  color: var(--label-1);
  content: "#";
}

.article a {
  color: var(--label-1);
  text-decoration: underline;
  text-decoration-color: var(--label-3);
  text-underline-offset: 4px;
}

.article code:not(pre code) {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(54, 54, 48, 0.08);
  color: var(--label-1);
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 0.9em;
}

.code-block {
  margin: 18px 0 22px;
  border: 1px solid var(--line);
  background: rgba(54, 54, 48, 0.035);
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
}

.code-head {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--label-2);
  font-size: 13px;
  text-transform: uppercase;
}

.copy-btn {
  color: var(--label-1);
  text-transform: uppercase;
}

.code-block pre {
  margin: 0;
  padding: 14px 16px;
  overflow-x: auto;
  color: var(--label-1);
  font-size: 14px;
  line-height: 1.55;
}

.media-card {
  position: relative;
  min-height: 300px;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--background-elevated);
  cursor: zoom-in;
}

.media-card.large {
  min-height: 420px;
}

.media-art {
  position: absolute;
  inset: 0;
}

.media-art.surface {
  background:
    linear-gradient(90deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    linear-gradient(0deg, transparent 49.9%, var(--line) 50%, transparent 50.1%),
    linear-gradient(140deg, #c4e4f8, #fcf7e8 54%, #dfeef5);
}

.media-art.surface::before {
  position: absolute;
  left: 14%;
  top: 22%;
  width: 48%;
  height: 44%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 380px 90px 0 -30px rgba(45, 130, 223, 0.8);
  content: "";
}

.media-art.matrix {
  background:
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.08) 24.4%, transparent 24.8%),
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.08) 24.4%, transparent 24.8%),
    #050505;
}

.media-art.matrix::before {
  position: absolute;
  inset: 14% 10%;
  background: repeating-linear-gradient(0deg, transparent 0 36px, var(--selection-bg) 37px 39px);
  content: "";
}

.media-art.studio {
  background: radial-gradient(circle at 30% 45%, #f9d17c, transparent 18%), radial-gradient(circle at 62% 44%, #43b8ff, transparent 22%), #080808;
}

.media-art.studio::before {
  position: absolute;
  left: 12%;
  bottom: 15%;
  width: 76%;
  height: 36%;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  content: "";
}

.media-art.doc {
  background: #f5f2ec;
}

.media-art.doc::before {
  position: absolute;
  inset: 13% 20%;
  background: repeating-linear-gradient(0deg, #111 0 8px, transparent 8px 36px);
  content: "";
}

.meta-panel {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  color: var(--label-2);
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 13px;
  text-transform: uppercase;
}

.meta-panel b {
  display: block;
  margin-bottom: 8px;
  color: var(--label-1);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 14px;
  text-transform: none;
}

.back-row {
  margin-top: 36px;
}

.zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 4vw;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease-out);
}

.zoom-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.zoom-modal .media-card {
  width: min(920px, 92vw);
  min-height: min(620px, 78vh);
  margin: 0;
  cursor: zoom-out;
}

.reveal {
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 660ms var(--ease-out), transform 660ms var(--ease-out);
}

.reveal.in {
  transform: translateY(0);
  opacity: 1;
}

.split span {
  display: block;
}

@media (max-width: 1023px) {
  .site-header,
  .site-footer {
    padding: 50px 48px 28px;
  }

  .site-footer {
    bottom: 12px;
    padding-top: 0;
    font-size: 16px;
  }

  .nav {
    display: none;
  }

  .mobile-toggle,
  .mobile-menu {
    display: block;
  }

  .brand {
    font-size: 32px;
  }

  .footer-center {
    display: none;
  }

  .globe {
    width: 28px;
  }

  .scroll-indicator {
    display: none;
  }

  .home-grid {
    padding: 116px 48px 96px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 88px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-kicker,
  .hero-thought {
    display: none;
  }

  .hero-bio {
    grid-column: 1 / -1;
    order: 3;
    padding: 0;
    font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-title {
    grid-column: 1 / -1;
    order: 1;
    align-self: stretch;
    width: 100%;
    padding: 28px 0 0;
    font-size: 41px;
    max-width: none;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .intro {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .signature-wrap {
    display: none;
  }

  .intro-copy {
    grid-column: 1 / -1;
    font-size: 34px;
    line-height: 1.15;
  }

  .work-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 38px;
  }

  .work-card.big,
  .work-card.left,
  .work-card.right {
    grid-column: 1 / -1;
  }

  .work-card.small-left,
  .work-card.small-right,
  .work-card.tiny-left {
    grid-column: span 2;
  }

  .work-meta {
    font-size: 12px;
  }

  .purpose-inner {
    font-size: 58px;
  }

  .contact-lines {
    font-size: 54px;
  }

  .contact-row.one span:first-child,
  .contact-row.one span:last-child,
  .contact-row.two span,
  .contact-row.three span {
    grid-column: 1 / -1;
    text-align: left;
  }

  .contact-links {
    left: 40px;
    right: 40px;
    bottom: 72px;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
  }

  .detail-page {
    padding: 136px 28px 100px;
  }

  .detail-grid {
    display: block;
  }

  .article {
    max-width: none;
  }

  .article h1 {
    font-size: 42px;
  }

  .meta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 54px 48px 20px;
  }

  .site-footer {
    padding: 0 48px 28px;
    font-size: 16px;
  }

  .brand {
    font-size: 30px;
  }

  .mobile-toggle {
    width: 48px;
  }

  .home-grid {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-title {
    font-size: 41px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
