:root {
  --paper: #ffffff;
  --ink: #27313d;
  --muted: #7a828c;
  --soft: #f7f7f4;
  --blue: #bfe6f7;
  --pink: #f7b8d3;
  --hero-pink: #f8c5dc;
  --cream: #fff0b8;
  --peach: #ffc9aa;
  --sheet: #fffdfb;
  --sheet-line: rgba(39, 49, 61, 0.045);
  --sheet-shadow: rgba(132, 105, 109, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei UI",
    "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  overflow-x: hidden;
}

body.panel-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
a,
button,
span,
dd {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

a {
  text-decoration: none;
}

img,
.case-image-button,
.credential-image-button,
.image-viewer figure {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

button {
  cursor: pointer;
}

section,
footer {
  scroll-margin-top: 92px;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background: #fff;
}

.site-shell::before,
.site-shell::after {
  position: fixed;
  z-index: -1;
  width: 190px;
  height: 86vh;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.62;
  will-change: transform;
}

.site-shell::before {
  top: 92px;
  left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='190' height='760' viewBox='0 0 190 760' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.72'%3E%3Ccircle cx='54' cy='72' r='8' fill='%23F7B8D3' fill-opacity='.5'/%3E%3Ccircle cx='126' cy='132' r='15' stroke='%23BFE6F7' stroke-opacity='.6' stroke-width='5'/%3E%3Crect x='38' y='208' width='42' height='42' rx='14' fill='%23FFF0B8' fill-opacity='.58' transform='rotate(-14 38 208)'/%3E%3Ccircle cx='128' cy='296' r='5' fill='%2327313D' fill-opacity='.18'/%3E%3Ccircle cx='62' cy='382' r='18' stroke='%23F7B8D3' stroke-opacity='.44' stroke-width='6'/%3E%3Crect x='112' y='470' width='50' height='34' rx='12' fill='%23BFE6F7' fill-opacity='.42' transform='rotate(12 112 470)'/%3E%3Ccircle cx='52' cy='566' r='6' fill='%2327313D' fill-opacity='.16'/%3E%3Ccircle cx='118' cy='650' r='13' fill='%23FFF0B8' fill-opacity='.5'/%3E%3C/g%3E%3C/svg%3E");
  animation: side-float-left 18s ease-in-out infinite;
}

.site-shell::after {
  top: 124px;
  right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='190' height='760' viewBox='0 0 190 760' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='.7'%3E%3Crect x='86' y='50' width='46' height='46' rx='16' fill='%23BFE6F7' fill-opacity='.45' transform='rotate(10 86 50)'/%3E%3Ccircle cx='54' cy='150' r='11' fill='%23FFF0B8' fill-opacity='.58'/%3E%3Ccircle cx='128' cy='238' r='18' stroke='%23F7B8D3' stroke-opacity='.48' stroke-width='6'/%3E%3Ccircle cx='70' cy='334' r='5' fill='%2327313D' fill-opacity='.16'/%3E%3Crect x='52' y='432' width='54' height='36' rx='13' fill='%23F7B8D3' fill-opacity='.38' transform='rotate(-12 52 432)'/%3E%3Ccircle cx='136' cy='536' r='7' fill='%2327313D' fill-opacity='.14'/%3E%3Ccircle cx='64' cy='634' r='17' stroke='%23BFE6F7' stroke-opacity='.56' stroke-width='6'/%3E%3Crect x='122' y='696' width='34' height='34' rx='12' fill='%23FFF0B8' fill-opacity='.44' transform='rotate(18 122 696)'/%3E%3C/g%3E%3C/svg%3E");
  animation: side-float-right 21s ease-in-out infinite;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

@keyframes side-float-left {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  35% {
    transform: translate3d(18px, -26px, 0) rotate(1.5deg);
  }

  50% {
    transform: translate3d(8px, 34px, 0) rotate(0.9deg);
  }

  75% {
    transform: translate3d(-16px, 18px, 0) rotate(-0.9deg);
  }
}

@keyframes side-float-right {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(1deg);
  }

  30% {
    transform: translate3d(-18px, 28px, 0) rotate(-1.3deg);
  }

  50% {
    transform: translate3d(-10px, -34px, 0) rotate(-0.9deg);
  }

  78% {
    transform: translate3d(16px, -14px, 0) rotate(1deg);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 clamp(18px, 3vw, 42px);
  border-bottom: 0;
  background: #f2a8cf;
  backdrop-filter: blur(18px);
}

.brand {
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.topbar nav {
  display: flex;
  gap: 6px;
}

.topbar nav a {
  padding: 7px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 700;
}

.topbar nav a:hover {
  background: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(420px, 0.46fr);
  width: min(1360px, calc(100% - 64px));
  min-height: 742px;
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  margin: 26px auto 96px;
  padding: 78px clamp(42px, 6vw, 82px) 64px;
  border: 1px solid rgba(154, 121, 124, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--sheet);
  background-image:
    linear-gradient(90deg, var(--sheet-line) 1px, transparent 1px),
    linear-gradient(0deg, var(--sheet-line) 1px, transparent 1px),
    radial-gradient(circle at 12px 10px, rgba(247, 184, 211, 0.08) 1px, transparent 1.7px);
  background-size: 22px 22px, 22px 22px, 18px 18px;
  box-shadow:
    0 10px 24px var(--sheet-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.hero-copy {
  width: min(1040px, 100%);
}

.hero h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(64px, 7.5vw, 104px);
  font-weight: 800;
  line-height: 0.95;
}

.hero h1.name-combo {
  display: flex;
  width: max-content;
  max-width: min(1040px, 100%);
  align-items: baseline;
  gap: 0.1em;
  white-space: nowrap;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 0.98;
}

.name-cn {
  font-size: 0.68em;
  letter-spacing: 0;
}

.name-slash {
  margin: 0 -0.02em;
}

.role {
  margin-bottom: 20px;
  color: #527f99;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 800;
}

.attitude {
  width: min(600px, 100%);
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 86px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button.primary {
  background: var(--blue);
  box-shadow: 7px 7px 0 rgba(255, 240, 184, 0.55);
}

.button.ghost {
  background: #fff9f0;
  box-shadow: 7px 7px 0 rgba(247, 184, 211, 0.48);
}

.button:hover {
  transform: translate(-2px, -2px);
}

.hero-orbit {
  position: relative;
  width: min(520px, 100%);
  height: 600px;
  justify-self: end;
}

.shape {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ink);
  border: 1.5px solid rgba(79, 89, 100, 0.76);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    scale 180ms ease;
}

.shape span {
  position: absolute;
  z-index: 2;
  padding: 7px 12px;
  border: 1px solid rgba(79, 89, 100, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 3px 3px 0 rgba(191, 230, 247, 0.34);
}

.shape:hover {
  scale: 1.03;
}

.shape-blue {
  top: 58px;
  right: 72px;
  width: 172px;
  height: 206px;
  border-radius: 44% 36% 42% 38%;
  background: rgba(191, 230, 247, 0.92);
  box-shadow: 8px 8px 0 rgba(255, 240, 184, 0.58);
  rotate: -8deg;
}

.shape-cream {
  right: 0;
  bottom: 198px;
  width: 252px;
  height: 98px;
  border-radius: 56% 42% 54% 46%;
  background: rgba(255, 240, 184, 0.9);
  box-shadow: 8px 8px 0 rgba(255, 201, 170, 0.5);
  rotate: -9deg;
}

.shape-pink {
  right: 226px;
  bottom: 78px;
  width: 176px;
  height: 150px;
  border-radius: 44% 56% 38% 48%;
  background: rgba(247, 184, 211, 0.88);
  box-shadow: 8px 8px 0 rgba(191, 230, 247, 0.52);
  rotate: 8deg;
}

.shape-index {
  right: 260px;
  top: 278px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 201, 170, 0.86);
  box-shadow: 7px 7px 0 rgba(247, 184, 211, 0.42);
  rotate: -5deg;
}

.shape::before {
  position: absolute;
  inset: 18% 16%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: inherit;
  content: "";
}

.shape::after {
  position: absolute;
  width: 54%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  content: "";
  transform: translateY(52px) rotate(-26deg);
}

.shape-index::after {
  width: 42%;
  transform: translateY(0) rotate(-22deg);
}

.shape-line {
  position: absolute;
  border: 1.5px solid rgba(79, 89, 100, 0.16);
  border-right: 0;
  border-bottom: 0;
  border-radius: 999px 0 0 0;
  background: transparent;
  pointer-events: none;
}

.line-works {
  top: 252px;
  right: 198px;
  width: 82px;
  height: 42px;
  rotate: -12deg;
}

.line-contact {
  right: 128px;
  bottom: 170px;
  width: 118px;
  height: 48px;
  rotate: 8deg;
}

.line-about {
  right: 338px;
  bottom: 196px;
  width: 84px;
  height: 50px;
  rotate: -24deg;
}

.panel-section {
  position: relative;
  width: min(1360px, calc(100% - 64px));
  min-height: auto;
  margin: 0 auto 96px;
  padding: 82px clamp(32px, 5vw, 54px);
  border: 1px solid rgba(154, 121, 124, 0.16);
  border-radius: 14px;
  background-color: var(--sheet);
  background-image:
    linear-gradient(90deg, var(--sheet-line) 1px, transparent 1px),
    linear-gradient(0deg, var(--sheet-line) 1px, transparent 1px),
    radial-gradient(circle at 12px 10px, rgba(247, 184, 211, 0.08) 1px, transparent 1.7px);
  background-size: 22px 22px, 22px 22px, 18px 18px;
  box-shadow:
    0 10px 24px var(--sheet-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

.section-intro {
  max-width: 1240px;
  margin: 0 auto 48px;
}

.works-intro {
  display: block;
  max-width: 1240px;
}

.section-intro h2,
.about-intro h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.15;
}

.works-intro h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-intro > p:last-child,
.about-intro > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.works-board {
  display: grid;
  max-width: 1240px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 4vw, 64px) clamp(40px, 4vw, 58px);
  margin: 58px auto 0;
  padding: 0 12px 12px 0;
}

.works-section::after {
  position: absolute;
  top: -38px;
  right: -22px;
  width: 116px;
  height: 174px;
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(39, 49, 61, 0.82) 0 3px, transparent 3.8px)
      0 0 / 18px 18px,
    rgba(239, 230, 200, 0.74);
  box-shadow: 8px 8px 0 rgba(247, 184, 211, 0.28);
  content: "";
  opacity: 0.9;
  transform: rotate(-34deg);
}

.work-tile {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border: 1.5px solid #4f5964;
  border-radius: 32px;
  background: var(--tile);
  color: var(--tile-text);
  text-align: left;
  box-shadow: 7px 7px 0 color-mix(in srgb, var(--tile-shadow) 80%, transparent);
  rotate: var(--tile-rotate);
  transition:
    border-radius 180ms ease,
    rotate 180ms ease,
    transform 180ms ease;
}

.work-tile:nth-child(1),
.work-tile:nth-child(4) {
  min-height: 360px;
}

.work-tile:hover {
  border-radius: 44px;
  rotate: 0deg;
  transform: translate(-2px, -2px);
}

.work-tile::before,
.work-tile::after,
.tile-number::after {
  position: absolute;
  content: "";
}

.work-tile::before {
  right: -32px;
  bottom: -32px;
  width: 148px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.work-tile::after {
  right: 30px;
  bottom: 54px;
  width: 106px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.34);
  rotate: -16deg;
}

.tile-number,
.tile-meta {
  position: relative;
  z-index: 1;
  color: #58616c;
  font-size: 16px;
  font-weight: 800;
}

.tile-number::after {
  top: 12px;
  left: 58px;
  width: 76px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  rotate: -8deg;
}

.tile-preview {
  position: absolute;
  right: clamp(28px, 4vw, 48px);
  top: clamp(32px, 5vw, 54px);
  z-index: 0;
  display: block;
  width: min(32%, 230px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1.5px solid rgba(79, 89, 100, 0.62);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 26px rgba(39, 49, 61, 0.14),
    inset 0 0 0 2px rgba(255, 255, 255, 0.72);
  opacity: 0.76;
  pointer-events: none;
  rotate: 0deg;
  transform: translateZ(0);
}

.tile-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
}

.tile-title {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: auto;
  font-size: clamp(30px, 3.3vw, 38px);
  font-weight: 800;
  line-height: 1.08;
}

.tile-summary {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: 12px;
  color: #58616c;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.about-me-section {
  min-height: 790px;
}

.about-me-section::before {
  position: absolute;
  top: 28px;
  right: 42px;
  width: 126px;
  height: 46px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), transparent),
    rgba(255, 240, 184, 0.72);
  box-shadow: 7px 7px 0 rgba(247, 184, 211, 0.34);
  content: "";
  transform: rotate(8deg);
}

.about-me-intro h2 {
  max-width: 820px;
}

.about-me-board {
  display: grid;
  max-width: 1240px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  margin: 58px auto 0;
}

.profile-card,
.experience-card,
.award-card,
.certificate-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid #4f5964;
  border-radius: 32px;
  color: var(--ink);
}

.profile-card {
  min-height: 430px;
  padding: 42px;
  background: var(--pink);
  box-shadow: 8px 8px 0 rgba(191, 230, 247, 0.72);
}

.profile-card::after {
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.23);
  content: "";
}

.experience-card {
  min-height: 430px;
  padding: 42px;
  background: var(--blue);
  box-shadow: 8px 8px 0 rgba(255, 240, 184, 0.78);
}

.award-card {
  min-height: 250px;
  padding: 34px;
  background: var(--cream);
  box-shadow: 8px 8px 0 rgba(247, 184, 211, 0.62);
}

.certificate-card {
  min-height: 250px;
  padding: 34px;
  background: var(--peach);
  box-shadow: 8px 8px 0 rgba(191, 230, 247, 0.72);
}

.card-kicker {
  margin-bottom: 30px;
  color: #68727e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.profile-card h3 {
  max-width: 460px;
  margin: 0 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.profile-card p:last-child {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin-bottom: 0;
  color: #4f5964;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.experience-card ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-card li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  color: #4f5964;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.6;
}

.experience-card li span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.note-list,
.certificate-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.note-list span,
.certificate-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(79, 89, 100, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: #4f5964;
  font-size: 15px;
  font-weight: 850;
}

.note-list span {
  padding: 0 18px;
}

.certificate-grid span {
  padding: 0 16px;
}

.about-four-grid {
  display: grid;
  max-width: 1240px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin: 58px auto 0;
}

.about-info-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 280px;
  padding: 34px;
  border: 1.5px solid rgba(79, 89, 100, 0.86);
  border-radius: 30px;
  color: var(--ink);
  overflow: hidden;
}

.about-info-card::after {
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  content: "";
  pointer-events: none;
}

.profile-block {
  display: grid;
  grid-template-columns: minmax(250px, 0.86fr) minmax(0, 1.26fr);
  gap: clamp(26px, 4.2vw, 58px);
  align-items: center;
  width: min(1040px, 88%);
  min-height: 560px;
  padding: clamp(26px, 3.4vw, 42px);
  background: rgba(247, 184, 211, 0.72);
  box-shadow: 8px 8px 0 rgba(191, 230, 247, 0.7);
}

.profile-left {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.profile-avatar {
  width: 220px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: -20px -18px 0 rgba(191, 230, 247, 0.78);
}

.profile-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.profile-facts {
  display: grid;
  gap: 12px;
  width: min(330px, 100%);
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-facts li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  width: max-content;
  max-width: 100%;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.88);
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.15;
}

.profile-facts strong {
  flex: 0 0 auto;
}

.profile-facts span {
  min-width: 0;
}

.profile-right {
  display: grid;
  gap: 18px;
}

.profile-greeting,
.profile-story {
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(191, 230, 247, 0.7);
  font-weight: 820;
  line-height: 1.65;
}

.profile-greeting {
  padding: 20px 30px;
  border-radius: 22px;
  background: var(--cream);
  font-size: 20px;
}

.profile-story {
  padding: 32px 38px;
  border-radius: 30px;
  background: rgba(255, 253, 251, 0.95);
  font-size: 22px;
}

.profile-story p:not(.card-kicker) {
  max-width: none;
  margin: 0 0 24px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.profile-story p:last-child {
  margin-bottom: 0;
}

.activity-block {
  width: min(860px, 86%);
  min-height: 280px;
  background: rgba(255, 253, 251, 0.92);
  box-shadow: 8px 8px 0 rgba(255, 240, 184, 0.8);
}

.activity-block .about-list {
  gap: 14px;
}

.activity-block .about-list li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  padding: 8px 14px;
  border: 1px solid rgba(105, 116, 126, 0.22);
  border-radius: 22px;
  background: rgba(255, 250, 235, 0.54);
  box-shadow: 5px 5px 0 rgba(191, 230, 247, 0.52);
  font-size: 14px;
  line-height: 1.32;
}

.activity-block .about-list li > div {
  min-width: 0;
  max-width: none;
}

.activity-block .about-list span {
  display: inline-flex;
  width: 100%;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff0b8;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.activity-block .about-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.activity-block .about-list li p {
  margin: 0;
  color: #5e6873;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.awards-block {
  gap: 12px;
  background: rgba(255, 240, 184, 0.82);
  box-shadow: 8px 8px 0 rgba(247, 184, 211, 0.54);
}

.awards-block .desk-ticket {
  min-height: 46px;
  padding-block: 6px;
  font-size: 13px;
}

.certificate-block {
  grid-template-rows: auto repeat(3, 1fr);
  background: rgba(191, 230, 247, 0.76);
  box-shadow: 8px 8px 0 rgba(255, 201, 170, 0.56);
}

.certificate-block .desk-ticket {
  min-height: 58px;
  align-self: stretch;
}

.about-info-card h3 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.08;
}

.about-info-card p:not(.card-kicker) {
  max-width: 540px;
  margin: 0;
  color: #4f5964;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.72;
}

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

.about-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #4f5964;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.about-list span {
  flex: 0 0 54px;
  color: var(--ink);
  font-weight: 900;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.tool-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #4f5964;
  font-size: 13px;
  font-weight: 900;
}

.about-carousel {
  position: relative;
  display: block;
  max-width: 1240px;
  margin: 58px auto 0;
}

.about-carousel-stage {
  position: relative;
  height: 660px;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 78%);
  min-height: 430px;
  cursor: pointer;
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  filter: blur(0.8px);
  transition:
    opacity 360ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 360ms ease,
    box-shadow 360ms ease;
}

.about-slide.profile-block {
  width: min(1080px, 90%);
  min-height: 560px;
}

.about-slide.is-active {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: none;
}

.about-slide.is-prev {
  z-index: 2;
  transform: translate(-118%, -50%) scale(0.76);
  opacity: 0.34;
  filter: saturate(0.78) blur(0.6px);
}

.about-slide.is-next {
  z-index: 2;
  transform: translate(18%, -50%) scale(0.76);
  opacity: 0.34;
  filter: saturate(0.78) blur(0.6px);
}

.about-slide.is-hidden {
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.66);
  opacity: 0;
  pointer-events: none;
}

.about-slide:not(.is-active) .desk-ticket {
  pointer-events: none;
}

.about-slide:not(.is-active) > * {
  opacity: 0.28;
}

.about-slide:not(.is-active) .about-list,
.about-slide:not(.is-active) .tool-row,
.about-slide:not(.is-active) .profile-tags {
  opacity: 0.12;
}

.about-slide.is-active::before {
  position: absolute;
  inset: auto 34px -16px 34px;
  height: 28px;
  border-radius: 999px;
  background: rgba(39, 49, 61, 0.1);
  content: "";
  filter: blur(16px);
}

.carousel-arrow {
  position: relative;
  z-index: 4;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1.5px solid rgba(79, 89, 100, 0.8);
  border-radius: 999px;
  background: #fffdfb;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 6px 6px 0 rgba(191, 230, 247, 0.62);
}

.carousel-arrow:hover {
  background: var(--cream);
}

.desktop-board {
  position: relative;
  display: grid;
  max-width: 1240px;
  min-height: 680px;
  grid-template-columns: 1fr 0.82fr 0.86fr;
  grid-template-rows: 215px 170px 180px;
  gap: 26px;
  margin: 58px auto 0;
}

.desktop-board::before {
  position: absolute;
  inset: 34px 24px auto auto;
  width: 160px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 240, 184, 0.52);
  box-shadow: 5px 5px 0 rgba(247, 184, 211, 0.24);
  content: "";
  transform: rotate(8deg);
}

.resume-paper,
.photo-slip,
.activity-note,
.ticket-stack,
.tool-stickers {
  position: relative;
  border: 1.5px solid rgba(79, 89, 100, 0.86);
  color: var(--ink);
}

.resume-paper {
  grid-row: 1 / 3;
  padding: 42px;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(39, 49, 61, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(39, 49, 61, 0.045) 1px, transparent 1px),
    #fffdfb;
  background-size: 22px 22px;
  box-shadow: 9px 9px 0 rgba(191, 230, 247, 0.66);
  transform: rotate(-1.2deg);
}

.resume-paper h3 {
  max-width: 460px;
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.08;
}

.resume-paper p:not(.card-kicker) {
  max-width: 500px;
  color: #4f5964;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.75;
}

.profile-tags,
.tool-stickers div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-tags span,
.tool-stickers span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(191, 230, 247, 0.76);
  color: #4f5964;
  font-size: 13px;
  font-weight: 900;
}

.photo-slip {
  grid-column: 2;
  grid-row: 1;
  padding: 20px;
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 8px 8px 0 rgba(247, 184, 211, 0.5);
  transform: rotate(2.2deg);
}

.photo-placeholder {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1.5px dashed rgba(79, 89, 100, 0.52);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 35%, rgba(247, 184, 211, 0.55) 0 26px, transparent 27px),
    radial-gradient(circle at 70% 65%, rgba(191, 230, 247, 0.8) 0 38px, transparent 39px),
    rgba(255, 255, 255, 0.38);
}

.photo-placeholder span,
.photo-slip p:last-child {
  color: #6b7480;
  font-size: 13px;
  font-weight: 850;
}

.photo-slip p:last-child {
  margin: 14px 0 0;
  line-height: 1.45;
}

.activity-note {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 7px 7px 0 rgba(191, 230, 247, 0.42);
}

.activity-note span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #4f5964;
  font-size: 13px;
  font-weight: 900;
}

.activity-note p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.6;
}

.note-a {
  grid-column: 2;
  grid-row: 2;
  background: rgba(247, 184, 211, 0.72);
  transform: rotate(-2deg);
}

.note-b {
  grid-column: 3;
  grid-row: 1;
  background: rgba(191, 230, 247, 0.78);
  transform: rotate(-1deg);
}

.note-c {
  grid-column: 3;
  grid-row: 2;
  background: rgba(255, 240, 184, 0.82);
  transform: rotate(1.5deg);
}

.ticket-stack {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 253, 251, 0.9);
  box-shadow: 8px 8px 0 rgba(247, 184, 211, 0.36);
}

.awards-stack {
  grid-column: 1 / 2;
  grid-row: 3;
  transform: rotate(1deg);
}

.certificate-stack {
  grid-column: 2;
  grid-row: 3;
  transform: rotate(-1.4deg);
}

.desk-ticket {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 16px;
  border: 1.5px solid rgba(79, 89, 100, 0.72);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.32;
  text-align: left;
  box-shadow: 5px 5px 0 rgba(191, 230, 247, 0.46);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.desk-ticket:hover {
  box-shadow: 7px 7px 0 rgba(247, 184, 211, 0.5);
}

.tool-stickers {
  grid-column: 3;
  grid-row: 3;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 201, 170, 0.72);
  box-shadow: 8px 8px 0 rgba(191, 230, 247, 0.52);
  transform: rotate(1deg);
}

.about-section {
  display: grid;
  min-height: 720px;
  align-content: center;
  gap: 40px;
}

.about-section::after {
  position: absolute;
  top: -24px;
  right: 46px;
  width: 62px;
  height: 62px;
  background:
    url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg transform='rotate(22 48 48)'%3E%3Cpath d='M44 14h8l4 38H40l4-38Z' fill='%2327313D'/%3E%3Ccircle cx='48' cy='20' r='14' fill='%230F151C'/%3E%3Cpath d='M48 51l-11 34h22L48 51Z' fill='%230F151C'/%3E%3Cpath d='M39 26h18' stroke='%23F7B8D3' stroke-width='3' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E")
      center / contain no-repeat;
  content: "";
  filter: drop-shadow(5px 6px 0 rgba(191, 230, 247, 0.45));
  transform: rotate(-7deg);
}

.about-intro,
.about-panel {
  width: min(1176px, 100%);
  margin: 0 auto;
}

.about-intro h2 {
  max-width: 960px;
  margin-bottom: 18px;
}

.about-intro > p:last-child {
  max-width: 580px;
}

.about-panel {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 122px);
  align-items: start;
}

.about-tabs {
  display: grid;
  gap: 28px;
}

.about-tabs button {
  min-height: 61px;
  padding: 0 25px;
  border: 0;
  border-radius: 31px;
  background: var(--soft);
  color: var(--ink);
  text-align: left;
  font-size: 18px;
  font-weight: 800;
}

.about-tabs button.active {
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--peach);
}

.about-content {
  min-width: 0;
}

.about-text {
  display: flex;
  min-height: 288px;
  align-items: center;
  margin: 0 0 36px;
  padding: clamp(36px, 5vw, 70px);
  border-radius: 38px;
  border: 18px solid transparent;
  background:
    linear-gradient(var(--paper), var(--paper)) padding-box,
    repeating-linear-gradient(
        90deg,
        var(--blue) 0 18px,
        #fff 18px 36px
      )
      border-box;
  box-shadow: 8px 8px 0 rgba(247, 184, 211, 0.45);
  font-size: clamp(26px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.3;
}

.about-text.is-tool-tab {
  display: block;
  min-height: 420px;
  margin: 0 0 36px;
  padding: clamp(34px, 4vw, 52px);
  font-size: 20px;
}

.tool-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
  align-content: center;
  min-height: 300px;
  margin: 0;
}

.tool-icon-card {
  display: grid;
  place-items: center;
  padding: 0;
}

.tool-icon-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.82),
    5px 5px 0 rgba(191, 230, 247, 0.38);
}

.tool-icon-card span {
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.tool-text {
  max-width: 860px;
  margin: 0;
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 800;
  line-height: 1.35;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.about-meta span,
.about-meta a {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.panel-section .about-meta {
  display: none;
}

.footer {
  min-height: 414px;
  padding: 85px clamp(32px, 5vw, 72px);
  background: var(--blue);
  color: var(--ink);
}

.footer .eyebrow {
  color: #6d7d87;
}

.footer h2 {
  width: min(820px, 100%);
  margin-bottom: 40px;
  font-size: clamp(38px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer .button.primary {
  min-width: 300px;
  min-height: 64px;
  background: var(--cream);
  box-shadow: 7px 7px 0 rgba(247, 184, 211, 0.55);
}

.contact-copy {
  border: 0;
}

.copy-toast {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin: 24px 0 0;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #4f5964;
  font-size: 15px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.case-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(980px, calc(100% - 88px));
  height: 100vh;
  padding: 92px clamp(24px, 4.8vw, 72px) 48px;
  overflow: auto;
  background: var(--paper);
  box-shadow: -12px 0 0 rgba(247, 184, 211, 0.58);
  transform: translateX(104%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-panel[aria-hidden="false"] {
  transform: translateX(0);
}

.panel-scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(39, 49, 61, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.panel-scrim[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.panel-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  font-weight: 800;
}

.case-panel h2 {
  margin-bottom: 20px;
  max-width: 100%;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  white-space: nowrap;
}

.case-summary {
  max-width: 760px;
  color: #33332e;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  line-height: 1.55;
}

.case-hero {
  margin-bottom: 34px;
}

.case-prototype-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 24px;
  border: 1.5px solid rgba(39, 49, 61, 0.72);
  border-radius: 999px;
  background: #fff0b8;
  box-shadow: 8px 8px 0 rgba(247, 184, 211, 0.76);
  color: #27313d;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.case-visual {
  position: relative;
  min-height: 280px;
  margin: 34px 0;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: var(--tile);
  color: var(--tile-text);
}

.case-visual span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: color-mix(in srgb, currentColor 18%, transparent);
}

.case-visual span:nth-child(1) {
  top: 28px;
  left: 28px;
  width: 36%;
  height: 36%;
  border-radius: 999px;
}

.case-visual span:nth-child(2) {
  right: 34px;
  bottom: 42px;
  width: 44%;
  height: 24%;
  transform: rotate(-12deg);
}

.case-visual span:nth-child(3) {
  top: 42%;
  left: 42%;
  width: 22%;
  height: 42%;
  border-radius: 999px;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.case-facts div {
  padding: 20px;
  border-radius: 22px;
  background: #f8f8f5;
}

.case-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.case-facts dd {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.case-gallery {
  display: grid;
  gap: 24px;
}

.case-image-frame {
  margin: 0;
}

.case-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1.5px solid rgba(79, 89, 100, 0.26);
  border-radius: 28px;
  background: #fff;
  box-shadow:
    10px 10px 0 rgba(191, 230, 247, 0.75),
    0 18px 46px rgba(39, 49, 61, 0.08);
  cursor: zoom-in;
}

.case-link-card {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.case-link-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #27313d;
  font-size: 12px;
  font-weight: 900;
  content: "OPEN";
}

.case-image-button img {
  display: block;
  width: 100%;
  height: auto;
}

.case-image-button span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 240, 184, 0.92);
  color: #27313d;
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.case-image-button:hover span {
  opacity: 1;
  transform: translateY(0);
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(39, 49, 61, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-viewer[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.image-viewer figure {
  display: grid;
  gap: 14px;
  width: min(1320px, calc(100vw - 150px));
  max-height: calc(100vh - 64px);
  margin: 0;
}

.image-viewer img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 118px);
  margin: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    12px 12px 0 rgba(247, 184, 211, 0.62),
    0 26px 90px rgba(0, 0, 0, 0.24);
}

.image-viewer figcaption {
  justify-self: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #27313d;
  font-size: 14px;
  font-weight: 850;
}

.viewer-close,
.viewer-nav {
  position: absolute;
  border: 1.5px solid rgba(39, 49, 61, 0.62);
  color: #27313d;
  font: inherit;
  font-weight: 900;
  background: #bfe6f7;
  box-shadow: 7px 7px 0 rgba(255, 240, 184, 0.82);
  cursor: pointer;
}

.viewer-close {
  top: 22px;
  right: 22px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
}

.viewer-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.viewer-prev {
  left: 24px;
}

.viewer-next {
  right: 24px;
}

.credential-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 45;
  width: min(620px, calc(100% - 36px));
  max-height: min(780px, calc(100vh - 48px));
  padding: 52px clamp(24px, 5vw, 46px) 36px;
  overflow: auto;
  border: 1.5px solid rgba(79, 89, 100, 0.86);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(39, 49, 61, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(39, 49, 61, 0.04) 1px, transparent 1px),
    #fffdfb;
  background-size: 22px 22px;
  box-shadow:
    12px 12px 0 rgba(247, 184, 211, 0.58),
    0 22px 80px rgba(39, 49, 61, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) rotate(-1deg) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.credential-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(-1deg) scale(1);
}

.credential-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.credential-preview {
  display: grid;
  gap: 22px;
}

.credential-preview h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.08;
}

.credential-preview p {
  margin-bottom: 0;
  color: #56606c;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.7;
}

.credential-image {
  position: relative;
  display: grid;
  min-height: 270px;
  place-items: center;
  overflow: hidden;
  border: 1.5px dashed rgba(79, 89, 100, 0.52);
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 240, 184, 0.9) 0 42px, transparent 43px),
    radial-gradient(circle at 72% 64%, rgba(191, 230, 247, 0.86) 0 62px, transparent 63px),
    linear-gradient(135deg, rgba(247, 184, 211, 0.42), rgba(255, 255, 255, 0.42));
}

.credential-image-button {
  width: 100%;
  padding: 0;
  border-style: solid;
  background: #fff;
  cursor: zoom-in;
}

.credential-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
}

.credential-image span {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #4f5964;
  font-size: 14px;
  font-weight: 900;
}

.credential-image-button span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 240, 184, 0.94);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  transform: translate(-100px, -100px);
}

.cursor-dot {
  display: none;
}

.cursor-ring {
  display: grid;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  place-items: center;
  border: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 8L57.6 32.9L84 28.6L65.7 48L84 67.4L57.6 63.1L48 88L38.4 63.1L12 67.4L30.3 48L12 28.6L38.4 32.9L48 8Z' fill='%23FFF7CF' stroke='%234B5563' stroke-width='5' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition:
    width 180ms ease,
    height 180ms ease,
    margin 180ms ease,
    filter 180ms ease;
}

.cursor-ring span {
  color: #4b5563;
  font-size: 10px;
  font-weight: 800;
}

.cursor-ring.is-active {
  width: 82px;
  height: 82px;
  margin: -41px 0 0 -41px;
  filter: drop-shadow(7px 7px 0 rgba(247, 184, 211, 0.68));
}

@media (max-width: 980px) {
  .site-shell::before,
  .site-shell::after {
    display: none;
  }

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

  .hero-orbit {
    width: min(560px, 100%);
    height: 420px;
    justify-self: start;
  }

  .shape-blue {
    top: 20px;
    left: 42px;
    right: auto;
  }

  .shape-cream {
    right: 20px;
    bottom: 146px;
  }

  .shape-pink {
    left: 150px;
    right: auto;
    bottom: 22px;
  }

  .shape-index {
    left: 286px;
    right: auto;
    top: 184px;
  }

  .works-intro,
  .about-me-board,
  .desktop-board,
  .about-four-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .desktop-board {
    min-height: auto;
    grid-template-rows: none;
  }

  .resume-paper,
  .photo-slip,
  .activity-note,
  .ticket-stack,
  .tool-stickers {
    grid-column: auto;
    grid-row: auto;
  }

  .case-panel {
    width: min(860px, calc(100% - 28px));
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .image-viewer figure {
    width: min(100%, calc(100vw - 96px));
  }
}

@media (max-width: 720px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .topbar {
    min-height: 64px;
    padding: 0 16px;
  }

  .topbar nav a {
    padding: 8px 7px;
    font-size: 12px;
  }

  .hero,
  .panel-section,
  .footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .case-panel {
    width: 100%;
    padding: 82px 18px 36px;
    box-shadow: -8px 0 0 rgba(247, 184, 211, 0.58);
  }

  .case-panel h2 {
    font-size: 34px;
  }

  .case-summary {
    font-size: 17px;
  }

  .case-image-button {
    border-radius: 18px;
    box-shadow:
      6px 6px 0 rgba(191, 230, 247, 0.75),
      0 12px 30px rgba(39, 49, 61, 0.08);
  }

  .case-image-button span {
    opacity: 1;
    transform: none;
  }

  .image-viewer {
    padding: 64px 14px 82px;
  }

  .image-viewer figure {
    width: 100%;
    max-height: calc(100vh - 130px);
  }

  .image-viewer img {
    max-height: calc(100vh - 180px);
    border-radius: 14px;
  }

  .viewer-close {
    top: 14px;
    right: 14px;
  }

  .viewer-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .viewer-prev {
    left: calc(50% - 72px);
  }

  .viewer-next {
    right: calc(50% - 72px);
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 88px);
  }

  .hero h1.name-combo {
    font-size: clamp(28px, 8.6vw, 48px);
  }

  .attitude {
    font-size: 24px;
  }

  .hero-actions {
    margin-top: 48px;
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    gap: 14px;
  }

  .hero-orbit {
    height: 330px;
  }

  .shape {
    font-size: 12px;
  }

  .shape-blue {
    width: 118px;
    height: 142px;
  }

  .shape-cream {
    width: 172px;
    height: 78px;
  }

  .shape-pink {
    left: 104px;
    width: 138px;
    height: 110px;
  }

  .shape-index {
    left: 232px;
    top: 154px;
    width: 78px;
    height: 78px;
  }

  .works-board {
    grid-template-columns: 1fr;
  }

  .about-me-board {
    gap: 22px;
    margin-top: 38px;
  }

  .about-four-grid {
    gap: 22px;
    margin-top: 38px;
  }

  .about-carousel {
    margin-top: 38px;
  }

  .about-carousel-stage {
    height: 820px;
  }

  .about-slide {
    width: 90%;
  }

  .profile-card,
  .experience-card,
  .award-card,
  .certificate-card,
  .resume-paper,
  .photo-slip,
  .activity-note,
  .ticket-stack,
  .tool-stickers {
    min-height: auto;
    padding: 28px;
    rotate: 0deg;
    transform: none;
  }

  .experience-card li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-info-card {
    min-height: auto;
    padding: 28px;
  }

  .profile-block {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .profile-avatar {
    width: 150px;
    box-shadow: -12px -10px 0 rgba(191, 230, 247, 0.78);
  }

  .profile-facts li {
    width: 100%;
    font-size: 16px;
  }

  .profile-greeting {
    padding: 18px;
    font-size: 16px;
  }

  .profile-story {
    padding: 22px;
    font-size: 16px;
  }

  .about-text.is-tool-tab {
    min-height: auto;
    padding: 28px;
  }

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

  .tool-icon-card img {
    width: 58px;
    height: 58px;
  }

  .about-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .activity-block .about-list li {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 10px;
  }

  .work-tile,
  .work-tile:nth-child(1),
  .work-tile:nth-child(4) {
    min-height: 300px;
    rotate: 0deg;
  }

  .tile-title {
    font-size: 30px;
  }

  .tile-preview {
    right: 20px;
    top: 42px;
    width: min(30%, 150px);
    border-radius: 14px;
    opacity: 0.58;
  }

  .about-tabs {
    gap: 12px;
  }

  .about-text {
    min-height: 240px;
    padding: 28px;
    font-size: 24px;
  }
}

.quick-editor {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: none;
  gap: 10px;
  justify-items: end;
  max-width: min(300px, calc(100vw - 32px));
  pointer-events: none;
}

.quick-editor button,
.quick-editor p {
  pointer-events: auto;
}

.editor-toggle,
.editor-save,
.editor-cancel,
.editor-reset {
  border: 1.5px solid rgba(39, 49, 61, 0.72);
  border-radius: 999px;
  padding: 13px 18px;
  color: #27313d;
  font: inherit;
  font-weight: 800;
  background: #fff0b8;
  box-shadow: 9px 9px 0 #f2b7d1;
  cursor: pointer;
}

.editor-toggle {
  background: #bfe6f7;
  box-shadow: 9px 9px 0 #fff0b8;
}

.editor-actions {
  display: none;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(39, 49, 61, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(39, 49, 61, 0.12);
  backdrop-filter: blur(14px);
}

.editor-actions[aria-hidden="false"] {
  display: flex;
}

.editor-save {
  background: #f7b8d3;
  box-shadow: none;
}

.editor-cancel,
.editor-reset {
  background: #fffdf7;
  box-shadow: none;
}

.editor-hint {
  max-width: 260px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 16px;
  color: rgba(39, 49, 61, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(39, 49, 61, 0.1);
}

.inline-editing [contenteditable="true"] {
  outline: 2px dashed rgba(247, 184, 211, 0.9);
  outline-offset: 6px;
  border-radius: 10px;
  cursor: text;
}

.inline-editing [contenteditable="true"]:focus {
  outline-style: solid;
  background: rgba(255, 255, 255, 0.68);
}

.inline-editing .about-slide:not(.is-active) {
  opacity: 0;
  pointer-events: none;
}

.inline-editing .about-slide:not(.is-active) > *,
.inline-editing .about-slide:not(.is-active) .about-list,
.inline-editing .about-slide:not(.is-active) .tool-row,
.inline-editing .about-slide:not(.is-active) .profile-tags {
  opacity: 0;
  visibility: hidden;
}

.inline-editing .magnetic {
  transform: none !important;
}

.mobile-tip {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 253, 247, 0.72);
  backdrop-filter: blur(14px);
}

.mobile-tip.is-visible {
  display: flex;
}

.mobile-tip-card {
  width: min(420px, 100%);
  padding: 30px 26px 26px;
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: var(--blue);
  box-shadow: 12px 12px 0 rgba(255, 240, 184, 0.9);
  color: var(--ink);
  text-align: left;
}

.mobile-tip-card .eyebrow {
  margin-bottom: 14px;
  color: rgba(39, 49, 61, 0.62);
}

.mobile-tip-card h2 {
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.08;
}

.mobile-tip-card p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(39, 49, 61, 0.78);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.55;
}

.mobile-tip-card .button {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .site-shell::before,
  .site-shell::after {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
