:root {
  --blue-50: #f4faff;
  --blue-100: #eaf6ff;
  --blue-200: #cfe7ff;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --ink: #071849;
  --muted: #496385;
  --line: rgba(37, 99, 235, 0.88);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --shadow: 0 18px 45px rgba(37, 99, 235, 0.12);
  --map-design-width: 2400px;
  --map-design-height: 1200px;
  --map-scale: 1;
  --map-content-scale: 1;
  --map-viewport-width: var(--map-design-width);
  --map-viewport-height: var(--map-design-height);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-family:
    Inter,
    "MiSans",
    "PingFang SC",
    "Microsoft YaHei",
    system-ui,
    sans-serif;
  background:
    radial-gradient(circle at 82% 10%, rgba(37, 99, 235, 0.22), transparent 28%),
    linear-gradient(180deg, #2388d1 0%, #58afe5 30%, #9fd3f3 58%, #5fb3e3 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -35vh -70vw;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background-image: url("./assets/cloud-layer.svg");
  background-repeat: repeat-x;
  background-size: 3200px 900px;
  background-position: -520px 50%;
  filter: saturate(1.04);
  opacity: 0.88;
  animation: cloud-image-drift-left 82s linear infinite;
}

body::after {
  background-image: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: 0 0;
  opacity: 0;
}

.cloud-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.92;
}

.canvas-clouds-ready::before {
  opacity: 0;
  animation: none;
}

.load-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 2px;
  contain: layout paint style;
  pointer-events: none;
  background: rgba(219, 234, 254, 0.32);
  opacity: 1;
  transition: opacity 420ms ease;
}

.load-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.18);
  transform-origin: left center;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, #60a5fa, #2563eb 58%, #ec4899);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.42);
  transition: transform 520ms ease;
  animation: load-progress-pulse 1100ms ease-in-out infinite;
}

.load-progress[data-load-state="content"] span {
  transform: scaleX(0.68);
}

.load-progress[data-load-state="complete"] {
  opacity: 0;
}

.load-progress[data-load-state="complete"] span {
  transform: scaleX(1);
}

.load-message {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  z-index: 30;
  width: max-content;
  max-width: min(420px, calc(100vw - 32px));
  transform: translateX(-50%);
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 999px;
  background: rgba(244, 250, 255, 0.94);
  box-shadow: 0 16px 34px rgba(7, 24, 73, 0.16);
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(12px);
}

.load-message[hidden] {
  display: none;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px;
}

.map-viewport {
  position: relative;
  width: var(--map-viewport-width);
  height: var(--map-viewport-height);
  overflow: visible;
}

.map-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 4.08fr) minmax(250px, 1fr);
  grid-template-rows: minmax(0, 2.78fr) minmax(178px, 1fr);
  width: var(--map-design-width);
  height: var(--map-design-height);
  min-height: 0;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 22px;
  background: rgba(244, 250, 255, 0.18);
  box-shadow:
    0 28px 65px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: scale(var(--map-scale));
  transform-origin: top left;
  will-change: transform;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.13) 1px, transparent 1.5px);
  background-position: 22px 20px;
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent 0, #000 24%, #000 88%, transparent 100%);
  opacity: 0.45;
}

.panel {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 0;
  padding: 58px;
}

.background-lab .panel > * {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.background-lab .map-frame {
  background: rgba(244, 250, 255, 0.06);
}

.background-lab .map-frame::before {
  opacity: 0.16;
}

.panel-projects {
  padding-top: 34px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.panel-todos,
.panel-social {
  border-left: 2px solid var(--line);
}

.panel-thoughts,
.panel-social {
  border-top: 2px solid var(--line);
}

.section-title {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: calc(16px * var(--map-content-scale));
  margin: 0;
  color: var(--ink);
  font-size: calc(54px * var(--map-content-scale));
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

.section-title::after {
  content: "";
  position: absolute;
  left: calc(60px * var(--map-content-scale));
  bottom: calc(-18px * var(--map-content-scale));
  width: calc(42px * var(--map-content-scale));
  height: calc(3px * var(--map-content-scale));
  border-radius: 999px;
  background: var(--blue-500);
  box-shadow: 1px 1px 2px rgba(37, 99, 235, 0.18);
}

.section-title-small {
  gap: calc(12px * var(--map-content-scale));
  font-size: calc(30px * var(--map-content-scale));
}

.section-title-small::after {
  left: calc(42px * var(--map-content-scale));
  bottom: calc(-12px * var(--map-content-scale));
  width: calc(34px * var(--map-content-scale));
  height: calc(2px * var(--map-content-scale));
}

.title-icon {
  display: inline-grid;
  width: calc(52px * var(--map-content-scale));
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue-500);
}

.section-title-small .title-icon {
  width: calc(34px * var(--map-content-scale));
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.projects-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(200px, 0.94fr) minmax(200px, 0.94fr) minmax(300px, 1.4fr);
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 34px;
  height: min(82%, calc(100% - 78px));
  margin-top: 54px;
}

.project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 255, 0.76)),
    rgba(255, 255, 255, 0.74);
  border: 1.5px solid rgba(96, 165, 250, 0.44);
  border-radius: 24px;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 22%, rgba(96, 165, 250, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 52%);
  opacity: 0.78;
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-card:hover {
  border-color: rgba(37, 99, 235, 0.72);
  box-shadow:
    0 20px 48px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-2px);
}

.project-card-large {
  grid-row: span 3;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  width: calc(100% - 12px);
  align-content: center;
  align-items: center;
  justify-self: center;
  justify-items: center;
  gap: calc(16px * var(--map-content-scale));
  padding: calc(34px * var(--map-content-scale));
  text-align: center;
}

.project-card-large .project-name {
  margin-top: calc(5px * var(--map-content-scale));
  margin-bottom: calc(9px * var(--map-content-scale));
}

.project-card-large .project-illustration {
  transform: translateY(calc(8px * var(--map-content-scale)));
}

.project-card-large .project-name,
.project-card-large .project-copy,
.project-card-large .project-link,
.project-card-large .status {
  transform: translateY(calc(9px * var(--map-content-scale)));
}

.project-card-large .project-copy {
  font-size: calc(17px * var(--map-content-scale));
}

.project-card-wide {
  display: grid;
  grid-template-columns: calc(76px * var(--map-content-scale)) minmax(0, 1fr) auto;
  align-items: center;
  align-self: center;
  height: calc(100% - 10px);
  width: calc(100% - 12px);
  justify-self: center;
  gap: calc(26px * var(--map-content-scale));
  padding: calc(20px * var(--map-content-scale)) calc(26px * var(--map-content-scale));
}

.card-index {
  position: absolute;
  z-index: 3;
  top: calc(18px * var(--map-content-scale));
  left: calc(18px * var(--map-content-scale));
  display: inline-grid;
  min-width: calc(34px * var(--map-content-scale));
  height: calc(34px * var(--map-content-scale));
  place-items: center;
  border-radius: calc(9px * var(--map-content-scale));
  color: #fff;
  font-size: calc(15px * var(--map-content-scale));
  font-weight: 800;
  background: linear-gradient(145deg, #60a5fa, #2563eb);
  box-shadow: 2px 3px 7px rgba(37, 99, 235, 0.2);
}

.project-illustration {
  display: grid;
  width: calc(128px * var(--map-content-scale));
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: calc(10px * var(--map-content-scale));
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: calc(28px * var(--map-content-scale));
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), transparent 42%),
    rgba(239, 248, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 34px rgba(37, 99, 235, 0.11);
  color: var(--blue-500);
  filter: drop-shadow(1px 2px 2px rgba(37, 99, 235, 0.12));
}

.project-illustration svg {
  width: 66%;
  height: 66%;
}

.wide-icon {
  display: grid;
  width: calc(76px * var(--map-content-scale));
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(147, 197, 253, 0.32);
  border-radius: calc(18px * var(--map-content-scale));
  background: rgba(239, 248, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 22px rgba(37, 99, 235, 0.08);
  color: var(--blue-500);
}

.wide-icon svg {
  width: 68%;
  height: 68%;
}

.wide-content {
  display: grid;
  gap: calc(7px * var(--map-content-scale));
}

.project-name {
  display: block;
  font-size: calc(34px * var(--map-content-scale));
  font-weight: 850;
  line-height: 1.12;
}

.project-card-wide .project-name {
  font-size: calc(24px * var(--map-content-scale));
}

.project-copy {
  display: block;
  max-width: 19em;
  color: var(--muted);
  font-size: calc(19px * var(--map-content-scale));
  font-weight: 600;
  line-height: 1.58;
}

.project-card-wide .project-copy {
  max-width: none;
  font-size: calc(16px * var(--map-content-scale));
  line-height: 1.45;
}

.status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: calc(32px * var(--map-content-scale));
  padding: calc(5px * var(--map-content-scale)) calc(15px * var(--map-content-scale));
  border-radius: 999px;
  font-size: calc(16px * var(--map-content-scale));
  font-weight: 800;
}

.project-card-large .status {
  margin-top: calc(16px * var(--map-content-scale));
}

.status-live {
  color: #15803d;
  background: rgba(187, 247, 208, 0.76);
}

.status-building {
  color: #b45309;
  background: rgba(254, 215, 170, 0.74);
}

.status-plan {
  color: #1d4ed8;
  background: rgba(191, 219, 254, 0.78);
}

.status-quiet {
  color: #475569;
  background: rgba(226, 232, 240, 0.86);
}

.project-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  width: min(72%, 267px);
  min-height: calc(50px * var(--map-content-scale));
  margin-top: calc(10px * var(--map-content-scale));
  padding: 0 calc(14px * var(--map-content-scale));
  border: 1.5px solid rgba(59, 130, 246, 0.46);
  border-radius: 999px;
  color: var(--blue-600);
  font-size: calc(21px * var(--map-content-scale));
  font-weight: 750;
  background: rgba(255, 255, 255, 0.42);
}

.project-link span:first-child {
  grid-column: 1;
  text-align: center;
}

.round-arrow {
  display: inline-grid;
  width: calc(38px * var(--map-content-scale));
  height: calc(38px * var(--map-content-scale));
  place-items: center;
  border-radius: 999px;
  color: var(--blue-600);
  font-size: calc(34px * var(--map-content-scale));
  line-height: 1;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(96, 165, 250, 0.24);
  box-shadow: 2px 3px 8px rgba(37, 99, 235, 0.09);
}

.panel-todos {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 50px;
  overflow: hidden;
  padding: 38px 58px 60px;
}

.todo-list {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.panel-todos .todo-list {
  min-height: 0;
  max-height: 100%;
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  scrollbar-color: rgba(37, 99, 235, 0.54) rgba(239, 248, 255, 0.28);
  scrollbar-width: thin;
}

.panel-todos .todo-list::-webkit-scrollbar {
  width: 7px;
}

.panel-todos .todo-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(239, 248, 255, 0.28);
}

.panel-todos .todo-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.54);
}

.todo-row,
.social-list a {
  display: grid;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(147, 197, 253, 0.28);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.09);
  backdrop-filter: blur(14px);
}

.todo-row {
  grid-template-columns: calc(14px * var(--map-content-scale)) minmax(0, 1fr);
  gap: calc(13px * var(--map-content-scale));
  min-height: calc(60px * var(--map-content-scale));
  padding: calc(13px * var(--map-content-scale)) calc(16px * var(--map-content-scale));
  border-radius: calc(14px * var(--map-content-scale));
}

.todo-dot {
  width: calc(13px * var(--map-content-scale));
  height: calc(13px * var(--map-content-scale));
  border-radius: 999px;
  box-shadow: 1px 2px 5px rgba(15, 23, 42, 0.14);
}

.todo-tone-green {
  color: #22c55e;
}

.todo-green {
  background: #22c55e;
}

.todo-tone-orange {
  color: #f59e0b;
}

.todo-orange {
  background: #f59e0b;
}

.todo-tone-blue {
  color: #3b82f6;
}

.todo-blue {
  background: #3b82f6;
}

.todo-tone-purple {
  color: #8b5cf6;
}

.todo-purple {
  background: #8b5cf6;
}

.todo-tone-pink {
  color: #ec4899;
}

.todo-pink {
  background: #ec4899;
}

.todo-tone-red {
  color: #ff0000;
}

.todo-red {
  background: #ff0000;
}

.todo-tone-yellow {
  color: #facc15;
}

.todo-yellow {
  background: #facc15;
}

.todo-tone-cyan {
  color: #06b6d4;
}

.todo-cyan {
  background: #06b6d4;
}

.todo-tone-black {
  color: #050505;
}

.todo-black {
  background: #050505;
}

.todo-tone-white {
  color: #ffffff;
}

.todo-white {
  border: 1px solid rgba(15, 23, 42, 0.28);
  background: #ffffff;
}

.todo-text {
  min-width: 0;
  color: var(--ink);
  font-size: calc(18px * var(--map-content-scale));
  font-weight: 760;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.todo-track {
  grid-column: 2;
  height: calc(4px * var(--map-content-scale));
  overflow: hidden;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.25);
}

.todo-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: currentColor;
}

.panel-thoughts {
  overflow: hidden;
  padding: 48px;
}

.panel-thoughts .section-title-small {
  z-index: 5;
  transform: translateY(-18px);
}

.panel-thoughts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.thought-space {
  position: absolute;
  z-index: 4;
  inset: -20px 40px -20px 64px;
  overflow: hidden;
  border-radius: 20px;
  pointer-events: none;
}

.site-signature {
  position: absolute;
  z-index: 5;
  left: 58px;
  bottom: 38px;
  display: grid;
  gap: calc(8px * var(--map-content-scale));
  margin: 0;
  color: var(--blue-500);
  text-shadow: 1px 1.4px 2px rgba(37, 99, 235, 0.18);
}

.site-signature span {
  font-size: calc(42px * var(--map-content-scale));
  font-weight: 850;
  line-height: 1;
}

.site-signature small {
  max-width: 18em;
  color: var(--muted);
  font-size: calc(15px * var(--map-content-scale));
  font-weight: 650;
  line-height: 1.35;
}

.thought-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: calc(38px * var(--map-content-scale));
  padding: 0 calc(22px * var(--map-content-scale));
  border-radius: 999px;
  font-size: calc(16px * var(--map-content-scale));
  font-weight: 780;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.11);
  backdrop-filter: blur(12px);
  transform-origin: center;
  user-select: none;
}

.thought-space .thought-pill {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: max-content;
  opacity: 0;
  white-space: nowrap;
  will-change: transform, opacity;
  transition:
    opacity 720ms ease,
    box-shadow 240ms ease;
}

.thought-space .thought-pill.is-visible {
  opacity: 1;
}

.thought-space .thought-pill.is-hidden {
  opacity: 0;
}

.pill-green {
  color: #16a34a;
}

.pill-blue {
  color: #2563eb;
}

.pill-purple {
  color: #7c3aed;
}

.pill-orange {
  color: #d97706;
}

.pill-pink {
  color: #db2777;
}

.pill-red {
  color: #ff0000;
}

.pill-yellow {
  color: #ca8a04;
}

.pill-cyan {
  color: #0891b2;
}

.pill-black {
  color: #050505;
}

.pill-white {
  color: #334155;
}

.panel-social {
  padding: 34px 58px;
}

.social-list {
  display: grid;
  gap: calc(8px * var(--map-content-scale));
  margin-top: 0;
  padding-right: 8px;
}

.social-list a {
  grid-template-columns: calc(12px * var(--map-content-scale)) minmax(0, 1fr) auto;
  gap: calc(12px * var(--map-content-scale));
  min-height: calc(42px * var(--map-content-scale));
  padding: calc(6px * var(--map-content-scale)) calc(14px * var(--map-content-scale));
  border-radius: calc(13px * var(--map-content-scale));
  color: var(--ink);
  text-decoration: none;
  font-size: calc(18px * var(--map-content-scale));
  font-weight: 740;
}

.social-list a span:nth-child(2) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-mark {
  display: inline-grid;
  width: calc(12px * var(--map-content-scale));
  height: calc(12px * var(--map-content-scale));
  border-radius: 999px;
  box-shadow: 1px 2px 5px rgba(15, 23, 42, 0.12);
}

.social-green {
  background: linear-gradient(145deg, #4ade80, #22c55e);
}

.social-blue {
  background: linear-gradient(145deg, #60a5fa, #2563eb);
}

.social-orange {
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
}

.social-purple {
  background: linear-gradient(145deg, #a78bfa, #8b5cf6);
}

.social-red {
  background: linear-gradient(145deg, #ff3b3b, #ff0000);
}

.social-pink {
  background: linear-gradient(145deg, #f472b6, #ec4899);
}

.social-yellow {
  background: linear-gradient(145deg, #fde047, #facc15);
}

.social-cyan {
  background: linear-gradient(145deg, #67e8f9, #06b6d4);
}

.social-black {
  background: linear-gradient(145deg, #404040, #050505);
}

.social-white {
  border: 1px solid rgba(15, 23, 42, 0.24);
  background: linear-gradient(145deg, #ffffff, #f8fafc);
}

@media (max-width: 760px) {
  html,
  body {
    min-height: 100%;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
    background:
      radial-gradient(circle at 86% 4%, rgba(37, 99, 235, 0.2), transparent 32%),
      linear-gradient(180deg, #268fd6 0%, #69bce9 28%, #b8ddf5 62%, #68b8e4 100%);
  }

  body::before {
    inset: -18vh -120vw;
    background-image: none;
    animation: none;
    opacity: 0;
  }

  .page {
    width: 100%;
    height: auto;
    min-height: 100svh;
    display: block;
    overflow: visible;
    padding: 18px 14px 34px;
  }

  .map-viewport {
    width: min(100%, 430px);
    height: auto;
    margin: 0 auto;
    overflow: visible;
  }

  .map-frame {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    overflow: visible;
    border-width: 1.5px;
    border-radius: 20px;
    background: rgba(244, 250, 255, 0.22);
    box-shadow:
      0 18px 48px rgba(37, 99, 235, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
    transform: none;
    transform-origin: center;
  }

  .map-frame::before {
    opacity: 0.2;
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, #000 0, #000 88%, transparent 100%);
  }

  .panel {
    min-height: auto;
    padding: 24px 18px;
  }

  .panel-projects {
    order: 1;
    padding: 24px 18px 22px;
  }

  .panel-todos {
    order: 2;
    display: block;
    overflow: visible;
    padding: 24px 18px;
  }

  .panel-thoughts {
    order: 3;
    overflow: visible;
    padding: 24px 18px 20px;
  }

  .panel-social {
    order: 4;
    padding: 22px 18px 24px;
  }

  .panel-todos,
  .panel-social {
    border-left: 0;
  }

  .panel-todos,
  .panel-thoughts,
  .panel-social {
    border-top: 1.5px solid rgba(37, 99, 235, 0.62);
  }

  .section-title {
    gap: 10px;
    font-size: 28px;
  }

  .section-title::after {
    left: 38px;
    bottom: -10px;
    width: 30px;
    height: 2px;
  }

  .section-title-small {
    gap: 9px;
    font-size: 22px;
  }

  .section-title-small::after {
    left: 33px;
    bottom: -9px;
    width: 28px;
  }

  .title-icon {
    width: 30px;
  }

  .section-title-small .title-icon {
    width: 26px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    height: auto;
    margin-top: 30px;
  }

  .project-card {
    border-radius: 18px;
  }

  .project-card-large {
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "name"
      "copy"
      "link";
    width: 100%;
    min-height: 136px;
    align-content: center;
    align-items: center;
    justify-items: start;
    gap: 5px;
    padding: 20px 18px 16px 58px;
    text-align: left;
  }

  .project-card-large .project-name,
  .project-card-large .project-copy,
  .project-card-large .project-link,
  .project-card-large .status {
    transform: none;
  }

  .project-card-large .project-illustration {
    display: none;
  }

  .card-index {
    top: 12px;
    left: 12px;
    min-width: 28px;
    height: 28px;
    border-radius: 8px;
    font-size: 12px;
  }

  .project-illustration {
    width: 64px;
    margin-bottom: 4px;
    border-radius: 16px;
  }

  .project-name {
    font-size: 24px;
  }

  .project-card-large .project-name {
    grid-area: name;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 84px;
    font-size: 28px;
    line-height: 1.15;
  }

  .project-copy,
  .project-card-large .project-copy {
    max-width: 21em;
    font-size: 14px;
    line-height: 1.5;
  }

  .project-card-large .project-copy {
    grid-area: copy;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.42;
  }

  .project-link {
    width: min(72%, 220px);
    min-height: 38px;
    margin-top: 6px;
    padding: 0 12px;
    font-size: 15px;
  }

  .project-card-large .project-link {
    grid-area: link;
    justify-self: start;
    width: min(100%, 240px);
    min-height: 36px;
    margin-top: 3px;
  }

  .status {
    min-height: 28px;
    padding: 4px 12px;
    font-size: 12px;
  }

  .project-card-large .status {
    position: absolute;
    top: 20px;
    right: 22px;
    margin-top: 0;
  }

  .project-card-wide {
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    min-height: 136px;
    align-content: center;
    align-items: center;
    justify-items: start;
    gap: 0;
    padding: 20px 18px 16px 58px;
    text-align: left;
  }

  .project-card-wide .wide-icon,
  .project-card-wide .round-arrow {
    display: none;
  }

  .project-card-wide .wide-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "name status"
      "copy status";
    width: 100%;
    align-items: start;
    gap: 5px 12px;
  }

  .project-card-wide .project-name {
    grid-area: name;
    font-size: 22px;
    line-height: 1.15;
  }

  .project-card-wide .project-copy {
    grid-area: copy;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.4;
  }

  .project-card-wide .status {
    grid-area: status;
    justify-self: end;
    align-self: start;
    margin-top: 0;
  }

  .panel-todos .todo-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .todo-list {
    gap: 10px;
    margin-top: 28px;
  }

  .todo-row {
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 10px;
    min-height: 54px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .todo-dot {
    width: 12px;
    height: 12px;
  }

  .todo-text {
    font-size: 15px;
  }

  .todo-track {
    height: 4px;
  }

  .panel-thoughts .section-title-small {
    transform: none;
  }

  .site-signature {
    position: static;
    order: 0;
    gap: 6px;
    margin: 0;
    padding: 24px 18px 4px;
    color: #dbeafe;
  }

  .site-signature span {
    font-size: 42px;
  }

  .site-signature small {
    font-size: 16px;
  }

  .thought-space {
    position: relative;
    inset: auto;
    width: calc(100% + 24px);
    height: 520px;
    margin-top: 18px;
    margin-right: -12px;
    margin-left: -12px;
    border: 1px solid rgba(96, 165, 250, 0.32);
    border-radius: 18px;
    background: rgba(239, 248, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .thought-pill {
    min-height: 32px;
    padding: 0 16px;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.1);
  }

  .thought-space .thought-pill {
    max-width: min(70vw, calc(100% - 48px));
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .panel-social .visually-hidden {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .social-list {
    gap: 10px;
    margin-top: 28px;
    padding-right: 0;
  }

  .social-list a {
    grid-template-columns: 12px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 15px;
    font-size: 15px;
  }

  .social-mark {
    width: 12px;
    height: 12px;
  }
}

@keyframes cloud-image-drift-left {
  0% {
    background-position: -520px 50%;
  }
  100% {
    background-position: -3720px 50%;
  }
}

@keyframes load-progress-pulse {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  body::before {
    transform: none;
  }
}

