:root {
  --bg: #0f0f10;
  --panel: #151516;
  --panel-soft: #1b1b1d;
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.11);
  --text: #f4f4f0;
  --muted: #a5a5a0;
  --quiet: #6f706d;
  --green: #8bff83;
  --pink: #f05273;
  --yellow: #e9d66b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --rail: 48px;
  --top: 48px;
  --bottom: 40px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--muted);
  background: var(--bg);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

.scroll-progress {
  position: fixed;
  top: calc(var(--top) + 8px);
  right: 10px;
  z-index: 45;
  width: 6px;
  height: calc((100vh - var(--top) - var(--bottom) - 16px) * var(--progress, 0));
  max-height: calc(100vh - var(--top) - var(--bottom) - 16px);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(139, 255, 131, 0.56);
}

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

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

button {
  font: inherit;
}

.app-frame {
  min-height: 100vh;
  background:
    linear-gradient(130deg, rgba(31, 73, 39, 0.34), transparent 34%),
    linear-gradient(35deg, rgba(89, 28, 42, 0.28), transparent 38%),
    var(--bg);
}

.window-bar,
.side-rail,
.status-bar {
  position: fixed;
  z-index: 20;
  background: rgba(15, 15, 16, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.window-bar {
  top: 0;
  left: 0;
  right: 0;
  height: var(--top);
  display: grid;
  grid-template-columns: var(--rail) 1fr 140px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mark {
  display: grid;
  place-items: center;
  height: var(--top);
  color: var(--text);
  border-right: 1px solid var(--line);
  font-weight: 900;
}

.window-title {
  justify-self: center;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.window-title span {
  color: var(--green);
}

.window-controls {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  padding-right: 18px;
}

.window-controls span {
  width: 12px;
  height: 12px;
  border: 1px solid var(--quiet);
}

.window-controls span:first-child {
  width: 12px;
  height: 2px;
  margin-top: 9px;
  border: 0;
  background: var(--quiet);
}

.side-rail {
  top: var(--top);
  bottom: var(--bottom);
  left: 0;
  width: var(--rail);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.side-rail nav {
  display: grid;
  gap: 2px;
}

.side-rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 38px;
  color: var(--muted);
  font-size: 1.05rem;
  transition: color 160ms ease, background 160ms ease;
}

.side-rail a:hover,
.side-rail a:focus-visible {
  color: var(--green);
  background: rgba(139, 255, 131, 0.08);
  outline: 0;
}

.side-rail a::after {
  content: attr(data-tip);
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: #101011;
  font-size: 0.78rem;
  white-space: nowrap;
}

.side-rail a:hover::after {
  display: block;
}

.rail-pdf {
  position: absolute;
  bottom: 0;
  left: 0;
  height: var(--bottom);
  border-top: 1px solid var(--line);
  background: rgba(139, 255, 131, 0.5);
  color: #071008 !important;
  font-size: 0.72rem !important;
  font-weight: 900;
}

.workspace {
  padding-left: var(--rail);
  padding-top: var(--top);
  padding-bottom: var(--bottom);
}

.scene {
  position: relative;
  min-height: calc(100vh - var(--top) - var(--bottom));
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.38;
  filter: saturate(0.9) contrast(1.08);
  scale: 1.04;
  will-change: transform;
}

.scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 15, 16, 0.95), rgba(15, 15, 16, 0.6) 48%, rgba(15, 15, 16, 0.88)),
    linear-gradient(155deg, rgba(139, 255, 131, 0.2), transparent 42%),
    linear-gradient(20deg, rgba(240, 82, 115, 0.18), transparent 36%);
}

.pointer-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      circle at calc(var(--mx, 0.5) * 100%) calc(var(--my, 0.5) * 100%),
      rgba(139, 255, 131, 0.24),
      rgba(139, 255, 131, 0.08) 16%,
      transparent 38%
    );
  mix-blend-mode: screen;
  opacity: 0.74;
  transition: opacity 180ms ease;
}

.watermark {
  position: absolute;
  z-index: 2;
  left: 9%;
  bottom: 19%;
  color: rgba(255, 255, 255, 0.035);
  font-size: 16rem;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.float-code {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #0b0b0c;
  background: linear-gradient(145deg, #202023, #080809);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 18px 18px 30px rgba(0, 0, 0, 0.45), inset 8px 8px 18px rgba(255, 255, 255, 0.08);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.18);
  font-weight: 900;
  transform: rotate(-14deg);
  animation: drift 8s ease-in-out infinite alternate;
}

.float-one {
  top: 22%;
  left: 11%;
  width: 84px;
  height: 84px;
  font-size: 1.4rem;
}

.float-two {
  right: 11%;
  bottom: 22%;
  width: 96px;
  height: 96px;
  color: #0d0d0e;
  transform: rotate(18deg);
  animation-delay: 1.4s;
}

.float-three {
  left: 32%;
  bottom: 18%;
  width: 70px;
  height: 70px;
  font-size: 2rem;
  transform: rotate(12deg);
  animation-delay: 0.8s;
}

.float-four {
  top: 21%;
  right: 24%;
  width: 78px;
  height: 78px;
  color: #0d0d0e;
  transform: rotate(11deg);
  animation-delay: 2s;
}

@keyframes drift {
  from {
    translate: 0 0;
  }
  to {
    translate: 0 -18px;
  }
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(960px, calc(100% - 64px));
  margin: 0 auto;
  text-align: center;
}

.route-label,
.section-title p,
.contact-panel > p,
.info-card span,
.terminal-card span {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 22px 0 24px;
  color: var(--text);
  font-size: 6.1rem;
  font-weight: 400;
  line-height: 1;
}

.hero-scatter-word.accent {
  color: var(--green);
}

.scatter-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.22em;
  perspective: 900px;
}

.hero-scatter-word {
  display: inline-flex;
  white-space: nowrap;
}

.hero-scatter-char {
  display: inline-block;
  color: inherit;
  will-change: transform, opacity, filter;
}

.hero-copy.is-scattering .route-label,
.hero-copy.is-scattering p:not(.route-label),
.hero-copy.is-scattering .command-row {
  will-change: transform, opacity;
}

.hero-copy,
.watermark,
.float-code {
  will-change: transform;
}

.hero-copy p:not(.route-label) {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.command-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cmd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.cmd-button.primary {
  color: #081008;
  border-color: var(--green);
  background: var(--green);
}

.cmd-button:hover {
  transform: translateY(-1px);
  border-color: var(--green);
  color: var(--green);
}

.cmd-button.primary:hover {
  color: #081008;
}

.section {
  width: min(var(--max), calc(100% - 72px));
  margin: 0 auto;
  padding: 112px 0;
}

.about-stage {
  position: relative;
  min-height: calc(100vh - var(--top) - var(--bottom));
  padding: 78px max(36px, calc((100vw - 1280px) / 2)) 90px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(130deg, rgba(139, 255, 131, 0.16), transparent 38%),
    linear-gradient(35deg, rgba(139, 255, 131, 0.12), transparent 42%),
    #101112;
}

.about-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 74%, rgba(139, 255, 131, 0.2), transparent 30%),
    radial-gradient(circle at calc(var(--mx, 0.62) * 100%) calc(var(--my, 0.28) * 100%), rgba(139, 255, 131, 0.14), transparent 34%);
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-bg span {
  position: absolute;
  left: 4%;
  bottom: 7%;
  color: rgba(255, 255, 255, 0.035);
  font-size: 22rem;
  line-height: 1;
  font-weight: 900;
  will-change: transform;
}

.about-headline {
  position: relative;
  z-index: 2;
  margin: 0 auto 86px;
  max-width: 940px;
  color: var(--text);
  text-align: center;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.08;
}

.about-headline span {
  color: var(--green);
}

.desktop-window {
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  background: rgba(13, 14, 14, 0.82);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
  overflow: hidden;
  will-change: transform;
}

.desktop-window.draggable {
  cursor: grab;
}

.desktop-window.is-dragging {
  cursor: grabbing;
  user-select: none;
  z-index: 8;
}

.window-head {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(13, 13, 14, 0.9);
}

.window-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.window-head div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.window-head span {
  width: 11px;
  height: 11px;
  border: 1px solid var(--quiet);
}

.window-head span:first-child {
  width: 11px;
  height: 2px;
  border: 0;
  background: var(--quiet);
}

.about-window {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.place-window {
  width: min(430px, calc(100% - 40px));
  margin-top: 92px;
  margin-left: min(13vw, 190px);
}

.portrait-window {
  position: absolute;
  right: max(54px, calc((100vw - 1280px) / 2 + 64px));
  bottom: 34px;
  width: min(320px, 24vw);
  margin: 0;
}

.portrait-window img {
  width: 100%;
  height: 248px;
  object-fit: cover;
  object-position: center top;
  background: var(--green);
  filter: grayscale(0.16) contrast(1.04);
}

.code-lines {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px 22px 24px;
  list-style: none;
}

.code-lines li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.65;
}

.code-lines.compact li {
  font-size: 1rem;
}

.line-number {
  color: var(--quiet);
  text-align: right;
}

.line-text {
  display: block;
  min-width: 0;
}

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

.pink {
  color: var(--pink);
}

.blue {
  color: #78a7ff;
}

.yellow {
  color: var(--yellow);
}

.section-title {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-title p {
  color: var(--pink);
}

.section-title h2,
.contact-panel h2 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.08;
}

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

.info-card,
.terminal-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.info-card.large {
  grid-column: span 2;
}

.info-card.image-card {
  grid-column: span 2;
  padding: 0;
  overflow: hidden;
  background: #090909;
}

.info-card.image-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.info-card h3,
.terminal-card h3 {
  margin: 10px 0 10px;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.35;
}

.info-card p,
.terminal-card p {
  margin: 0;
  color: var(--muted);
}

.work-section {
  width: 100%;
  max-width: none;
  padding-left: max(36px, calc((100vw - var(--max)) / 2));
  padding-right: max(36px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1.3fr) minmax(170px, 0.75fr) 190px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-row:hover,
.project-row:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 255, 131, 0.58);
  background: rgba(139, 255, 131, 0.055);
  outline: 0;
}

.project-index {
  color: var(--pink);
  font-weight: 900;
}

.project-copy {
  display: grid;
  gap: 5px;
}

.project-copy strong {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
}

.project-copy small {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.project-tags {
  color: var(--quiet);
  font-size: 0.86rem;
  font-weight: 900;
}

.project-row img {
  width: 190px;
  height: 132px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

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

.terminal-card {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #111112;
}

.terminal-card span::before {
  content: "> ";
  color: var(--green);
}

.contact-section {
  padding: 118px 36px 128px;
  border-top: 1px solid var(--line-soft);
}

.contact-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 255, 131, 0.12), transparent 45%),
    linear-gradient(35deg, rgba(240, 82, 115, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.contact-panel > p {
  color: var(--pink);
}

.contact-panel h2 {
  max-width: 720px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.contact-links a,
.contact-links span {
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.16);
  font-weight: 800;
}

.status-bar {
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--bottom);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 18px;
  padding-left: var(--rail);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.breadcrumb,
.status-center {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb {
  padding-left: 16px;
}

.breadcrumb span:first-child {
  color: var(--green);
}

.status-center {
  color: var(--muted);
}

.status-bar a {
  justify-self: end;
  margin-right: 16px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-weight: 900;
}

.status-bar a:hover {
  color: var(--green);
  border-color: var(--green);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-panel {
  position: relative;
  width: min(1020px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101011;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: sticky;
  top: 12px;
  z-index: 2;
  float: right;
  width: 42px;
  height: 42px;
  margin: 12px 12px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(15, 15, 16, 0.86);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

#lightbox-image {
  width: 100%;
  background: #080808;
}

.lightbox-copy {
  padding: 22px 24px 26px;
}

.lightbox-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.35rem;
}

.lightbox-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.lightbox-file {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: #081008;
  background: var(--green);
  font-weight: 900;
}

.lightbox-file[hidden] {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .float-code {
    animation: none;
  }

  .hero-scatter-char,
  .hero-copy.is-scattering .route-label,
  .hero-copy.is-scattering p:not(.route-label),
  .hero-copy.is-scattering .command-row {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .cmd-button,
  .project-row,
  .reveal {
    transition: none;
  }

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

@media (max-width: 1080px) {
  .hero-copy h1 {
    font-size: 4.4rem;
  }

  .about-headline {
    font-size: 3.8rem;
  }

  .portrait-window {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, calc(100% - 40px));
    margin: 28px 0 0 auto;
  }

  .info-grid,
  .terminal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-card.large,
  .info-card.image-card {
    grid-column: span 2;
  }

  .project-row {
    grid-template-columns: 48px 1fr 150px;
  }

  .project-tags {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --rail: 0px;
    --top: 54px;
    --bottom: 56px;
  }

  .window-bar {
    grid-template-columns: 58px 1fr 78px;
  }

  .window-title {
    font-size: 0.95rem;
  }

  .window-controls {
    gap: 8px;
    padding-right: 12px;
  }

  .side-rail {
    display: none;
  }

  .workspace {
    padding-left: 0;
  }

  .scene {
    min-height: calc(100vh - var(--top));
  }

  .scroll-progress {
    top: calc(var(--top) + 8px);
    right: 6px;
    width: 4px;
    height: calc((100vh - var(--top) - 16px) * var(--progress, 0));
    max-height: calc(100vh - var(--top) - 16px);
  }

  .watermark {
    left: -12%;
    bottom: 24%;
    font-size: 7.8rem;
  }

  .float-one {
    top: 16%;
    left: 8%;
    width: 56px;
    height: 56px;
  }

  .float-two {
    right: 8%;
    bottom: 16%;
    width: 62px;
    height: 62px;
  }

  .float-three {
    display: none;
  }

  .float-four {
    top: 18%;
    right: 18%;
    width: 54px;
    height: 54px;
  }

  .hero-copy {
    width: calc(100% - 32px);
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .scatter-title {
    gap: 0.16em;
  }

  .hero-copy p:not(.route-label) {
    font-size: 0.98rem;
  }

  .section {
    width: calc(100% - 32px);
    padding: 76px 0;
  }

  .section-title h2,
  .contact-panel h2 {
    font-size: 2.15rem;
  }

  .about-stage {
    min-height: auto;
    padding: 72px 16px 82px;
  }

  .about-bg span {
    left: -18%;
    bottom: 18%;
    font-size: 9rem;
  }

  .about-headline {
    margin-bottom: 36px;
    font-size: 2.8rem;
    text-align: left;
  }

  .about-window,
  .place-window,
  .portrait-window {
    width: 100%;
    margin: 14px 0 0;
  }

  .desktop-window.draggable {
    cursor: default;
  }

  .window-head {
    min-height: 42px;
    padding: 0 14px;
  }

  .code-lines {
    padding: 18px 16px 20px;
  }

  .code-lines li {
    grid-template-columns: 22px 1fr;
    font-size: 0.96rem;
  }

  .portrait-window img {
    height: 330px;
  }

  .info-grid,
  .terminal-grid {
    grid-template-columns: 1fr;
  }

  .info-card.large,
  .info-card.image-card {
    grid-column: span 1;
  }

  .work-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .project-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .project-row img {
    grid-column: 1 / -1;
    width: 100%;
    height: 180px;
  }

  .project-copy strong {
    font-size: 1.1rem;
  }

  .contact-section {
    padding: 76px 16px 96px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-links {
    flex-direction: column;
  }

  .status-bar {
    grid-template-columns: 1fr;
    gap: 0;
    height: var(--bottom);
    padding: 0 12px;
  }

  .breadcrumb,
  .status-bar a {
    display: none;
  }

  .status-center {
    justify-content: space-between;
    width: 100%;
    font-size: 0.84rem;
  }
}
