@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --coral: #e54865;
  --coral-dark: #c93651;
  --ink: #1b1516;
  --muted: #6d6260;
  --cream: #faf7f3;
  --cream-deep: #f1ebe6;
  --white: #fffdfb;
  --line: #ded5d0;
  --shadow-sm: 0 10px 30px rgba(39, 24, 27, 0.06);
  --shadow-lg: 0 24px 60px rgba(39, 24, 27, 0.11);
  --radius: 20px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 10% 8%,
      rgba(229, 72, 101, 0.05),
      transparent 25rem
    ),
    var(--cream);
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.shell {
  width: min(calc(100% - 56px), var(--shell));
  margin-inline: auto;
}

/* Navigation */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 213, 208, 0.82);
  background: rgba(250, 247, 243, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  min-width: 46px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--ink);
  background: transparent;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.13em;
  text-decoration: none;
}

.wordmark span {
  color: var(--coral);
}

.wordmark:hover {
  opacity: 0.78;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover,
nav a.active {
  color: var(--ink);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

/* Shared typography and controls */

.eyebrow,
.section-kicker,
.section-number,
.project-meta,
.project-index {
  margin: 0;
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.ribbon-label {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 7px 18px 7px 14px;
  color: white;
  background: var(--coral);
  clip-path: polygon(
    0 0,
    calc(100% - 9px) 0,
    100% 9px,
    100% 100%,
    9px 100%,
    0 calc(100% - 9px)
  );
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: 180ms ease;
}

.button-primary {
  color: white;
  border-color: var(--coral);
  background: var(--coral);
}

.button-primary:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  box-shadow: 0 9px 24px rgba(229, 72, 101, 0.23);
  transform: translateY(-2px);
}

.text-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 4px;
  color: var(--coral);
}

.text-link:hover {
  color: var(--coral);
}

/* Home hero */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 98px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.home-hero::after {
  content: "KW";
  position: absolute;
  right: -42px;
  bottom: -98px;
  z-index: -1;
  color: transparent;
  font-size: clamp(180px, 25vw, 390px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.12em;
  -webkit-text-stroke: 1px rgba(229, 72, 101, 0.1);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.75fr 0.7fr;
  column-gap: 88px;
  row-gap: 24px;
  align-items: end;
}

.hero-layout > .eyebrow {
  grid-column: 1 / -1;
}

.hero-statement h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(48px, 6vw, 74px);
  font-weight: 700;
  line-height: 1.015;
  letter-spacing: -0.062em;
}

.hero-statement h1 span {
  color: var(--coral);
}

.hero-summary {
  padding-bottom: 6px;
}

.hero-summary > p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Selected work */

.selected-work {
  padding: 84px 0 94px;
  scroll-margin-top: 72px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 6px 0 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading > a {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.section-heading > a:hover {
  color: var(--coral);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 18px;
}

.project-card {
  overflow: hidden;
  min-height: 0;
  display: flex;
  border: 1px solid rgba(222, 213, 208, 0.74);
  border-radius: var(--radius);
  color: inherit;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.project-card:hover {
  border-color: rgba(229, 72, 101, 0.45);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-card--feature {
  grid-row: 1 / 3;
  flex-direction: column;
}

.project-card--wide {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
}

.project-card--reverse {
  grid-template-columns: 0.88fr 1.12fr;
}

.project-card--reverse .project-visual {
  order: 2;
}

.project-card--reverse .project-copy {
  order: 1;
}

.project-visual {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #eee9e5;
}

.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(27, 21, 22, 0.035);
}

.project-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover .project-visual img {
  transform: scale(1.025);
}

.project-card--feature .project-visual {
  height: 472px;
  padding: 30px 30px 0;
  background:
    linear-gradient(
      150deg,
      #fff5dc 0%,
      #f2eee8 58%,
      #f8d9de 100%
    );
}

.project-card--feature .project-visual img {
  width: 78%;
  height: auto;
  margin: 0 auto;
  border: 7px solid #1d191a;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  object-fit: initial;
  box-shadow: 0 22px 42px rgba(28, 21, 22, 0.18);
}

.project-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
}

.project-card--wide .project-copy {
  padding: 23px 24px;
}

.project-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-index {
  color: var(--muted);
}

.project-copy h3 {
  max-width: 440px;
  margin: 22px 0 26px;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.project-card--wide h3 {
  margin: 20px 0 22px;
  font-size: 20px;
}

.project-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(222, 213, 208, 0.72);
}

.project-bottom strong {
  max-width: 190px;
  font-size: 12px;
  line-height: 1.5;
}

.project-bottom span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

/* Home about hook */

.about-hook {
  padding: 46px 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 88% 28%,
      rgba(229, 72, 101, 0.08),
      transparent 17rem
    ),
    var(--cream-deep);
  scroll-margin-top: 72px;
}

.hook-layout {
  display: grid;
  grid-template-columns: 170px 1fr 52px;
  gap: 34px;
  align-items: center;
}

.hook-copy {
  max-width: 770px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hook-copy strong {
  color: var(--ink);
}

.circle-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 72, 101, 0.42);
  border-radius: 50%;
  color: var(--coral);
  font-size: 19px;
  text-decoration: none;
  transition: 180ms ease;
}

.circle-link:hover {
  color: white;
  border-color: var(--coral);
  background: var(--coral);
}

/* Contact and footer */

.contact {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.42);
  scroll-margin-top: 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.contact-layout h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.contact-layout > div > p {
  max-width: 520px;
  margin: 4px 0 25px;
  color: var(--muted);
  font-size: 15px;
}

footer {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

/* Work */

.work-page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  border-bottom: 1px solid var(--line);
}

.work-page-hero::after {
  content: "WORK";
  position: absolute;
  right: -34px;
  bottom: -48px;
  z-index: -1;
  color: transparent;
  font-size: clamp(130px, 21vw, 300px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.09em;
  -webkit-text-stroke: 1px rgba(229, 72, 101, 0.09);
}

.work-hero-layout {
  display: grid;
  grid-template-columns: 1.42fr 0.58fr;
  gap: 82px;
  align-items: end;
}

.work-hero-layout h1 {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -0.062em;
}

.work-hero-layout h1 span {
  color: var(--coral);
}

.work-hero-copy {
  padding-bottom: 7px;
}

.work-hero-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.work-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.work-jump-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(229, 72, 101, 0.36);
  border-radius: 999px;
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 180ms ease;
}

.work-jump-links a:hover {
  color: white;
  border-color: var(--coral);
  background: var(--coral);
}

.work-cases-section {
  padding: 88px 0 100px;
  background: var(--white);
  scroll-margin-top: 72px;
}

.work-section-note {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
}

.work-case-list {
  display: grid;
  gap: 22px;
}

.work-case {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 92px;
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.work-case:hover {
  border-color: rgba(229, 72, 101, 0.45);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.work-case:hover .work-case-visual img {
  transform: scale(1.025);
}

.work-case--reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.work-case--reverse .work-case-visual {
  order: 2;
}

.work-case--reverse .work-case-copy {
  order: 1;
}

.work-case-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #ece6e2;
}

.work-case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(27, 21, 22, 0.035);
}

.work-case-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-case--keep {
  height: 560px;
  min-height: 560px;
}

.work-case--keep .work-case-visual {
  padding: 30px 46px 0;
  background:
    linear-gradient(
      145deg,
      #fff3d7 0%,
      #f1ebe6 56%,
      #f7d7dd 100%
    );
}

.work-case--keep .work-case-visual img {
  object-fit: contain;
  object-position: center bottom;
}

.work-case-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 42px 44px;
  background: var(--white);
}

.work-case-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-case-topline span:last-child {
  color: var(--muted);
}

.work-case-copy h3 {
  max-width: 610px;
  margin: 44px 0 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.work-case-copy > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.work-case-impact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: end;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.work-case-impact strong {
  color: var(--coral);
  font-size: 18px;
  line-height: 1.3;
}

.work-case-impact ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.work-case-impact li::before {
  content: "·";
  margin-right: 8px;
  color: var(--coral);
}

/* Work experience */

.work-experience-section {
  padding: 96px 0 104px;
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
  scroll-margin-top: 72px;
}

.work-editorial-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 84px;
  align-items: start;
}

.work-section-title h2 {
  margin: 14px 0 20px;
  font-size: 39px;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.work-section-title > p:last-child {
  max-width: 220px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-item {
  padding: 24px 28px;
  border: 1px solid #eae6df;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.experience-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.experience-header-copy {
  flex: 1;
  min-width: 0;
}

.experience-logo {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #eae6df;
  border-radius: 12px;
  background: #fff;
}

.experience-logo img {
  display: block;
  width: auto;
  max-width: 42px;
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.experience-logo--keep img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 11px;
  object-fit: cover;
}

.experience-logo--kuaishou img {
  width: 36px;
  height: 36px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: left center;
}

.experience-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.experience-heading h3 {
  margin: 0;
  color: #161616;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.experience-heading time {
  margin-left: auto;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  white-space: nowrap;
}

.experience-role {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
  align-items: baseline;
  color: #514c46;
  font-size: 14px;
  line-height: 1.5;
}

.experience-role strong {
  color: #161616;
  font-weight: 700;
}

.experience-role span::before {
  content: "·";
  margin: 0 8px;
}

.experience-achievements {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid #ece8e2;
  color: #3a3631;
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.experience-achievements li {
  position: relative;
  padding-left: 20px;
}

.experience-achievements li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c81e4c;
}

.experience-related {
  display: inline-block;
  margin-top: 16px;
  color: #c81e4c;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.experience-related:hover {
  color: var(--coral-dark);
}

/* About hero */

.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 96px;
  border-bottom: 1px solid var(--line);
}

.about-page-hero::after {
  content: "ABOUT";
  position: absolute;
  right: -28px;
  bottom: -30px;
  z-index: -1;
  color: transparent;
  font-size: clamp(110px, 18vw, 250px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(229, 72, 101, 0.09);
}

.about-page-hero-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 84px;
  align-items: center;
}

.portrait-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(229, 72, 101, 0.19);
  border-radius: var(--radius);
  background: #e8e0d8;
  box-shadow: var(--shadow-sm);
}

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

.portrait-frame {
  position: absolute;
  inset: 24px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 13px;
  pointer-events: none;
}

.identity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.identity-tag {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--coral);
  border-radius: 999px;
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.identity-tag--primary {
  color: white;
  background: var(--coral);
}

.about-intro h1 {
  max-width: 720px;
  margin: 18px 0 28px;
  font-size: clamp(48px, 5.7vw, 70px);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.about-intro h1 span {
  display: block;
  color: var(--coral);
}

.about-intro > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}

.about-intro .about-lead {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
}

/* About content */

.about-section {
  padding: 92px 0;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 84px;
  align-items: start;
}

.about-section-title .section-kicker {
  margin-top: 14px;
}

.about-section-title h2 {
  margin: 13px 0 0;
  font-size: 35px;
  line-height: 1.07;
  letter-spacing: -0.048em;
}

.throughline-section {
  background: rgba(255, 253, 251, 0.48);
}

.about-statement {
  max-width: 790px;
  margin: 0 0 42px;
  font-size: clamp(31px, 3.4vw, 45px);
  font-weight: 600;
  line-height: 1.17;
  letter-spacing: -0.045em;
}

.body-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.body-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* Education */

.education-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.education-list {
  display: grid;
  gap: 22px;
}

.education-item {
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.education-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.education-card-header time {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.education-brand {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
}

.education-logo {
  position: relative;
  overflow: hidden;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 1px solid rgba(222, 213, 208, 0.9);
  border-radius: 50%;
  background: white;
}

.education-wordmark {
  position: absolute;
  top: 50%;
  left: 0;
  width: auto;
  max-width: none;
  height: 66px;
  max-height: none;
  display: block;
  transform: translateY(-50%);
}

.education-logo--leiden .education-wordmark {
  height: 66px;
}

.education-logo--zhejiang .education-wordmark {
  height: 65px;
}

.education-logo--tianjin .education-wordmark {
  height: 69px;
}

.education-school {
  margin: 0;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.education-degree-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 9px;
  margin-top: 20px;
}

.education-degree {
  font-size: 17px;
  font-weight: 750;
  line-height: 1.4;
}

.education-program {
  color: var(--muted);
  font-size: 16px;
}

.education-program::before {
  content: "—";
  margin-right: 9px;
}

.education-location {
  margin: 0;
  color: #9a918c;
  font-size: 13px;
}

.education-research {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.education-research strong {
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.education-research p,
.education-foundation {
  margin: 0;
  color: #554e4b;
  font-size: 14px;
  line-height: 1.75;
}

.education-foundation {
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.education-publication {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 22px 23px;
  border: 0;
  border-radius: 15px;
  color: var(--ink);
  background: rgba(229, 72, 101, 0.075);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.education-publication:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.education-publication > span {
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.education-publication strong {
  max-width: 650px;
  font-size: 14px;
  line-height: 1.55;
}

.education-publication small {
  color: #918783;
  font-size: 11px;
}

.education-publication b {
  margin-left: 8px;
  color: var(--coral);
  font-size: 12px;
}

/* Identity cards */

.identity-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 98px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(229, 72, 101, 0.1),
      transparent 24rem
    ),
    var(--cream-deep);
}

.identity-heading {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 84px;
  align-items: end;
  margin-bottom: 48px;
}

.identity-heading .section-number,
.identity-heading .section-kicker {
  color: var(--coral);
}

.identity-heading .section-kicker.ribbon-label {
  color: white;
}

.identity-heading .section-kicker {
  margin-top: 14px;
}

.identity-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.lens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lens-card {
  min-height: 300px;
  padding: 30px 28px 32px;
  border: 1px solid rgba(222, 213, 208, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.78);
  box-shadow: var(--shadow-sm);
}

.lens-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lens-card h3 {
  margin: 82px 0 18px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.lens-card p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

/* Podcast and writing */

.publishing-section {
  background: var(--cream-deep);
}

.publication-stack {
  display: grid;
  gap: 16px;
}

.publication-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.publication-card--podcast {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
  min-height: 440px;
  padding: 18px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.publication-cover {
  align-self: center;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 13px;
}

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

.publication-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 40px;
}

.publication-copy > .ribbon-label {
  margin-bottom: 54px;
  color: white;
}

.publication-copy h3 {
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.publication-copy h3 em {
  color: var(--coral);
  font-size: 22px;
  font-weight: 600;
}

.publication-copy p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.76;
}

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.platform-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 9px;
  color: white;
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.platform-link:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.platform-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: currentColor;
}

.platform-link--spotify {
  background: #1db954;
}

.platform-link--apple {
  background: #fc3c44;
}

.platform-link--xiaoyuzhou {
  background: #0e1a2b;
}

.platform-link:focus-visible,
.education-publication:focus-visible,
.substack-strip:focus-visible {
  outline: 3px solid rgba(229, 72, 101, 0.28);
  outline-offset: 3px;
}

.substack-strip {
  min-height: 158px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.substack-strip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.substack-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: #ff6719;
}

.substack-mark svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.substack-copy > span {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.substack-copy h3 {
  max-width: 570px;
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.substack-copy p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.substack-strip > strong {
  color: var(--coral);
  font-size: 11px;
  white-space: nowrap;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-summary {
    max-width: 620px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--reverse {
    grid-template-columns: 1fr;
  }

  .project-card--reverse .project-visual,
  .project-card--reverse .project-copy {
    order: initial;
  }

  .project-card--wide {
    grid-template-columns: 1fr;
  }

  .project-card--wide .project-visual {
    min-height: 168px;
  }

  .project-card--wide h3 {
    font-size: 18px;
  }

  .work-hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-hero-copy {
    max-width: 720px;
  }

  .work-editorial-grid {
    grid-template-columns: 210px 1fr;
    gap: 44px;
  }

  .work-case-copy {
    padding: 34px 32px;
  }

  .work-case-copy h3 {
    margin-top: 32px;
  }

  .work-case-impact {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-page-hero-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 48px;
  }

  .about-editorial-grid,
  .identity-heading {
    grid-template-columns: 210px 1fr;
    gap: 44px;
  }

  .publication-card--podcast {
    grid-template-columns: 0.88fr 1.12fr;
    min-height: 400px;
  }

  .publication-copy {
    padding: 32px 26px 26px;
  }

  .publication-copy > .ribbon-label {
    margin-bottom: 34px;
  }

  .platform-link {
    padding-inline: 11px;
  }

  .substack-strip {
    grid-template-columns: 48px 1fr;
    gap: 16px 20px;
  }

  .substack-strip > strong {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav-wrap {
    height: 62px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 11px;
  }

  nav a::after {
    bottom: -6px;
  }

  .home-hero {
    padding: 64px 0 58px;
  }

  .hero-layout {
    row-gap: 18px;
  }

  .hero-statement h1 {
    font-size: 44px;
  }

  .hero-summary > p {
    margin-bottom: 22px;
  }

  .selected-work {
    padding: 58px 0 62px;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card--feature {
    grid-row: auto;
  }

  .project-card--feature .project-visual {
    height: 480px;
  }

  .project-card--wide {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 285px;
  }

  .project-card--wide .project-visual {
    min-height: 285px;
  }

  .hook-layout {
    grid-template-columns: 1fr 44px;
    gap: 18px;
  }

  .hook-layout .eyebrow {
    grid-column: 1 / -1;
  }

  .hook-copy {
    font-size: 14px;
  }

  .circle-link {
    width: 42px;
    height: 42px;
  }

  .contact {
    padding: 58px 0;
  }

  .contact-layout {
    gap: 24px;
  }

  .contact-layout h2 {
    font-size: 39px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 4px;
  }

  .work-page-hero {
    padding: 64px 0 66px;
  }

  .work-hero-layout h1 {
    font-size: 48px;
  }

  .work-cases-section {
    padding: 64px 0 70px;
  }

  .work-section-note {
    display: none;
  }

  .work-case,
  .work-case--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-case--keep {
    height: auto;
  }

  .work-case--reverse .work-case-visual,
  .work-case--reverse .work-case-copy {
    order: initial;
  }

  .work-case-visual {
    min-height: 300px;
  }

  .work-case--keep .work-case-visual {
    min-height: 410px;
  }

  .work-case-copy {
    min-height: 390px;
    padding: 32px 28px;
  }

  .work-case-copy h3 {
    margin-top: 34px;
  }

  .work-experience-section {
    padding: 68px 0 72px;
  }

  .work-editorial-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-section-title h2 br {
    display: none;
  }

  .work-section-title > p:last-child {
    max-width: 520px;
  }

  .about-page-hero {
    padding: 54px 0 66px;
  }

  .about-page-hero-grid,
  .about-editorial-grid,
  .identity-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portrait-photo {
    width: min(360px, 88%);
  }

  .about-intro h1 {
    font-size: 44px;
  }

  .about-section,
  .identity-section {
    padding: 64px 0;
  }

  .about-section-title h2 br {
    display: none;
  }

  .body-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .identity-heading {
    margin-bottom: 34px;
  }

  .lens-grid {
    grid-template-columns: 1fr;
  }

  .lens-card {
    min-height: auto;
    padding: 26px;
  }

  .lens-card h3 {
    margin: 38px 0 14px;
  }

  .publication-card--podcast {
    grid-template-columns: 0.88fr 1.12fr;
    grid-template-rows: 1fr;
  }

  .publication-copy h3 {
    font-size: 30px;
  }

  .publication-copy h3 em {
    font-size: 18px;
  }
}

@media (max-width: 430px) {
  .wordmark {
    width: auto;
    min-width: 38px;
    height: 32px;
    font-size: 21px;
  }

  nav {
    gap: 11px;
  }

  nav a {
    font-size: 10px;
  }

  .hero-statement h1 {
    font-size: 39px;
  }

  .actions {
    gap: 16px;
  }

  .project-card--feature .project-visual {
    height: 390px;
    padding: 24px 24px 0;
  }

  .project-card--feature .project-visual img {
    width: 84%;
  }

  .project-card--wide {
    grid-template-columns: 1fr;
  }

  .project-card--wide .project-visual {
    min-height: 210px;
  }

  .project-copy,
  .project-card--wide .project-copy {
    padding: 22px;
  }

  .project-copy h3,
  .project-card--wide h3 {
    font-size: 19px;
  }

  .project-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .work-hero-layout h1 {
    font-size: 40px;
  }

  .work-jump-links a {
    min-height: 33px;
    padding-inline: 12px;
    font-size: 8px;
  }

  .work-case-visual {
    min-height: 240px;
  }

  .work-case--keep .work-case-visual {
    min-height: 350px;
    padding-inline: 30px;
  }

  .work-case-copy {
    min-height: 0;
    padding: 25px 22px 27px;
  }

  .work-case-copy h3 {
    margin: 28px 0 15px;
    font-size: 27px;
  }

  .work-case-impact {
    margin-top: 28px;
  }

  .experience-item {
    padding: 20px 18px;
  }

  .experience-header {
    gap: 12px;
  }

  .experience-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 11px;
  }

  .experience-heading {
    gap: 8px;
  }

  .experience-heading h3 {
    font-size: 21px;
  }

  .experience-heading time {
    font-size: 10px;
  }

  .experience-role,
  .experience-achievements {
    font-size: 13px;
  }

  .identity-tags {
    gap: 7px;
    margin-top: 20px;
  }

  .identity-tag {
    min-height: 29px;
    padding-inline: 10px;
    font-size: 7px;
  }

  .portrait-photo {
    width: 92%;
  }

  .about-intro h1 {
    font-size: 39px;
  }

  .about-statement {
    font-size: 29px;
  }

  .education-list {
    gap: 16px;
  }

  .education-item {
    padding: 22px 20px 24px;
    border-radius: 17px;
  }

  .education-card-header {
    align-items: start;
    gap: 12px;
  }

  .education-brand {
    gap: 12px;
  }

  .education-logo {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .education-logo--leiden .education-wordmark {
    height: 58px;
  }

  .education-logo--zhejiang .education-wordmark {
    height: 57px;
  }

  .education-logo--tianjin .education-wordmark {
    height: 61px;
  }

  .education-school {
    font-size: 17px;
  }

  .education-card-header time {
    padding-top: 3px;
    font-size: 8px;
  }

  .education-degree-line {
    margin-top: 18px;
    gap-inline: 7px;
  }

  .education-degree {
    font-size: 15px;
  }

  .education-program {
    font-size: 14px;
  }

  .education-program::before {
    margin-right: 7px;
  }

  .education-location {
    font-size: 12px;
  }

  .education-research,
  .education-foundation,
  .education-publication {
    margin-top: 20px;
  }

  .education-research,
  .education-foundation {
    padding-top: 18px;
  }

  .education-publication {
    padding: 19px 18px;
  }

  .publication-card--podcast {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .publication-cover {
    aspect-ratio: 1;
  }

  .publication-copy {
    padding: 28px 10px 12px;
  }

  .publication-copy > .ribbon-label {
    margin-bottom: 28px;
  }

  .podcast-platforms {
    align-items: stretch;
    flex-direction: column;
  }

  .platform-link {
    width: 100%;
    justify-content: center;
  }

  .substack-strip {
    grid-template-columns: 44px 1fr;
    padding: 22px;
  }

  .substack-mark {
    width: 44px;
    height: 44px;
  }

  .substack-strip > strong {
    grid-column: 2;
    margin-top: 4px;
  }
}

/* identity-tag 可点击化 */

a.identity-tag {
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

a.identity-tag:hover {
  background: rgba(229, 72, 101, 0.1);
  transform: translateY(-1px);
}

a.identity-tag--primary:hover {
  color: white;
  background: var(--coral-dark);
}

.lens-hero .identity-tags {
  margin-top: 30px;
}

/* lens-card 改为链接 */

.lens-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  color: inherit;
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

a.lens-card:hover {
  border-color: rgba(229, 72, 101, 0.42);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.lens-cta {
  margin-top: auto;
  padding-top: 22px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
}

/* 身份落地页 */

.lens-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  border-bottom: 1px solid var(--line);
}

.lens-hero::after {
  content: attr(data-ghost);
  position: absolute;
  right: -30px;
  bottom: -46px;
  z-index: -1;
  color: transparent;
  font-size: clamp(120px, 19vw, 270px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(229, 72, 101, 0.09);
}

.lens-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 78px;
  align-items: end;
}

.lens-hero h1 {
  margin: 20px 0 0;
  font-size: clamp(58px, 7.5vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.lens-hero-lead {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.68;
  letter-spacing: -0.012em;
}

.lens-hero-lead + p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}

.lens-body {
  padding: 88px 0;
}

.lens-body + .lens-body {
  border-top: 1px solid var(--line);
}

.lens-body--tint {
  background: rgba(255, 253, 251, 0.5);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.note-card {
  padding: 28px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.note-card h3 {
  margin: 16px 0 12px;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.032em;
}

.note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.note-num {
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lens-next {
  padding: 0 0 88px;
}

.next-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.next-card:hover {
  border-color: rgba(229, 72, 101, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.next-card .nc-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.next-card h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.next-card p {
  max-width: 460px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.next-card > strong {
  color: var(--coral);
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .lens-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 700px) {
  .lens-hero {
    padding: 56px 0 52px;
  }

  .lens-hero h1 {
    font-size: 54px;
  }

  .lens-hero-lead {
    font-size: 17px;
  }

  .lens-body {
    padding: 60px 0;
  }

  .note-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lens-next {
    padding-bottom: 60px;
  }

  .next-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 24px;
  }
}

/* Identity page — hero stats */

.lens-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.lens-stat strong {
  display: block;
  color: var(--coral);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.lens-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Identity page — marquee strip */

.sport-marquee {
  overflow: hidden;
  padding: 15px 0;
  background: var(--coral);
}

.sport-marquee-track {
  display: flex;
  width: max-content;
  animation: sport-scroll 26s linear infinite;
}

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

.sport-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sport-marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

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

@media (prefers-reduced-motion: reduce) {
  .sport-marquee-track {
    animation: none;
  }
}

/* Identity page — timeline */

/* Identity page — timeline (ported from original design, 1:1) */

.timeline {
  position: relative;
}

.milestone {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 80px;
  position: relative;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.milestone.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--coral) 0%,
    rgba(229, 72, 101, 0.15) 100%
  );
  transform: translateX(-50%);
}

.milestone-dot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.milestone-dot-inner {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--coral);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.milestone:hover .milestone-dot-inner {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(229, 72, 101, 0.2);
}

.milestone-content {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 32px;
  position: relative;
  align-self: start;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.milestone:hover .milestone-content {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.milestone-content::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.milestone-photo {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  min-height: 0;
}

.milestone-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.milestone-photo.compact {
  max-width: 220px;
}

.milestone-photo.compact-md {
  max-width: 280px;
}

.milestone.right .milestone-photo.compact,
.milestone.right .milestone-photo.compact-md {
  margin-left: auto;
}

.milestone-year {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.year-num {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--coral);
  letter-spacing: -0.03em;
}

.year-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}

.milestone-sport {
  display: inline-block;
  margin-bottom: 16px;
  padding: 3px 12px;
  color: white;
  background: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(
    0 0,
    calc(100% - 6px) 0,
    100% 6px,
    100% 100%,
    6px 100%,
    0 calc(100% - 6px)
  );
}

.milestone-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.milestone-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* LEFT: text left, photo right */
.milestone.left .milestone-content {
  grid-column: 1;
  margin-right: 16px;
}

.milestone.left .milestone-content::after {
  right: -10px;
  border-left: 10px solid var(--white);
}

.milestone.left .milestone-dot {
  grid-column: 2;
}

.milestone.left .milestone-photo {
  grid-column: 3;
  margin-left: 16px;
}

/* RIGHT: photo left, text right */
.milestone.right .milestone-photo {
  grid-column: 1;
  margin-right: 16px;
}

.milestone.right .milestone-dot {
  grid-column: 2;
}

.milestone.right .milestone-content {
  grid-column: 3;
  margin-left: 16px;
}

.milestone.right .milestone-content::after {
  left: -10px;
  border-right: 10px solid var(--white);
}

.milestone-closing {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.milestone-closing strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.milestone-closing span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .milestone {
    grid-template-columns: 44px 1fr;
    margin-bottom: 40px;
  }

  .milestone .milestone-dot {
    grid-column: 1;
    grid-row: 1;
    padding-top: 6px;
  }

  .milestone .milestone-photo {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 16px;
    max-width: none;
  }

  .milestone .milestone-content {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }

  .milestone-content::after {
    display: none;
  }
}

/* Identity page — pull quote */

.lens-quote {
  padding: 92px 0 96px;
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
  text-align: center;
}

.lens-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.lens-quote blockquote em {
  display: block;
  color: var(--coral);
  font-style: normal;
}

.lens-quote p {
  margin: 24px 0 0;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Identity page — split narrative */

.lens-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: 72px;
  align-items: center;
}

.lens-split--reverse {
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
}

.lens-split--reverse .lens-split-copy {
  order: 2;
}

.lens-split h2 {
  margin: 16px 0 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.lens-split h2 em {
  color: var(--coral);
  font-style: normal;
}

.lens-split p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.lens-split p strong {
  color: var(--ink);
  font-weight: 700;
}

.lens-split-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}

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

/* Identity page — poster marquee */

.poster-marquee-wrap {
  overflow: hidden;
  position: relative;
  padding-bottom: 18px;
}

.poster-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: poster-scroll 60s linear infinite;
}

.poster-marquee-wrap:hover .poster-track {
  animation-play-state: paused;
}

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

@media (prefers-reduced-motion: reduce) {
  .poster-track {
    animation: none;
  }
}

.poster-card {
  position: relative;
  width: 180px;
  height: 260px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-deep);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.poster-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

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

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px 12px;
  background: linear-gradient(
    to top,
    rgba(229, 72, 101, 0.92) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.poster-card:hover .poster-overlay {
  opacity: 1;
}

.poster-title {
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Identity page — games by platform */

.games-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.games-platform-label {
  margin: 0 0 14px;
  color: var(--coral);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.game-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.game-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.game-card-media {
  display: flex;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  background: var(--cream-deep);
}

.game-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.game-card-title {
  color: rgba(229, 72, 101, 0.55);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.game-card-caption {
  display: block;
  padding: 10px 12px 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .lens-split,
  .lens-split--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }


  .lens-split--reverse .lens-split-copy {
    order: initial;
  }

  .lens-split-photo {
    max-width: 420px;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .lens-stats {
    gap: 26px;
  }

  .lens-stat strong {
    font-size: 34px;
  }

  .lens-quote {
    padding: 62px 0 66px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-card {
    width: 148px;
    height: 214px;
  }
}
