:root {
  --page: #ffffff;
  --surface: #f5f5f7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --purple: #7b61ff;
  --green: #2f9e68;
  --warm: #c66a1f;
  --card-radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(210, 210, 215, 0.52);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav-shell {
  width: min(100% - 36px, var(--max));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 12px;
  color: rgba(29, 29, 31, 0.78);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.section-pad {
  padding: 96px 0;
}

.section-pad.compact {
  padding: 72px 0;
}

.content-shell {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero.hero--background {
  min-height: calc(100vh - 48px);
  padding: 0;
  color: #fff;
  background: #080a0e;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("assets/images/hero-sunset-portrait.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 10, 14, 0.34) 0%,
      rgba(8, 10, 14, 0.24) 28%,
      rgba(8, 10, 14, 0.1) 55%,
      rgba(8, 10, 14, 0.03) 78%,
      rgba(8, 10, 14, 0) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 680px);
  max-width: 680px;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-copy {
  max-width: min(620px, 52vw);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(72px, 6vw, 88px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text);
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #cfcfcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(72px, 6vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 750;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.hero .eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.text-blue {
  color: var(--blue);
}

.text-muted {
  color: var(--muted);
}

.text-purple {
  color: var(--purple);
}

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

.text-warm {
  color: var(--warm);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 650;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-subtitle {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.65;
  font-weight: 400;
}

.hero-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 0 0 34px;
}

.hero-capabilities article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(245, 245, 247, 0.72);
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.hero-capabilities strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
}

.hero-capabilities span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #0071e3;
  color: #fff;
}

.button-primary:hover {
  background: #0077ed;
  box-shadow: 0 10px 28px rgba(0, 113, 227, 0.2);
}

.button-secondary {
  min-height: auto;
  padding: 8px 2px;
  border: 0;
  color: #0071e3;
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  color: #0077ed;
  box-shadow: none;
}

.hero .button-secondary::after {
  content: " ＞";
  padding-left: 2px;
}

.hero--background .text-blue {
  color: transparent;
  background: linear-gradient(180deg, #3b9cff 0%, #0071e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 12px rgba(59, 156, 255, 0.24), 0 4px 16px rgba(0, 113, 227, 0.16);
}

.hero--background .button-primary {
  color: #111;
  background: #fff;
}

.hero--background .button-primary:hover {
  color: #111;
  background: #f2f2f2;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.16);
}

.hero--background .button-secondary {
  color: rgba(255, 255, 255, 0.86);
}

.hero--background .button-secondary:hover {
  color: #fff;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
}

.value-strip {
  background: var(--surface);
}

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

.reason-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.055);
}

.reason-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
}

.reason-blue {
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
}

.reason-green {
  color: var(--green);
  background: rgba(47, 158, 104, 0.1);
}

.reason-purple {
  color: var(--purple);
  background: rgba(123, 97, 255, 0.1);
}

.reason-warm {
  color: var(--warm);
  background: rgba(198, 106, 31, 0.1);
}

.reason-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.reason-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.55;
}

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

.project-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.project-showcase .project-card {
  min-height: 620px;
}

.project-card-large {
  grid-column: auto;
}

.project-card-medium {
  grid-column: auto;
}

.project-scene-card {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  padding: 36px;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background: #101014;
  border: 1px solid rgba(210, 210, 215, 0.2);
}

.project-scene-card::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -46%;
  width: 62%;
  height: 110%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.32), rgba(16, 16, 20, 0) 66%);
  pointer-events: none;
}

.project-scene-card .eyebrow,
.project-scene-card h3 {
  position: relative;
  z-index: 1;
}

.project-scene-card h3 {
  max-width: 560px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.scene-token-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.scene-token-row span {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 600;
}

.core-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.core-project-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.core-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.28);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.075);
}

.core-project-card .project-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.core-project-card .project-copy h3 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.12;
}

.core-project-card .project-copy > p:not(.project-kicker) {
  margin-bottom: 18px;
  font-size: 16px;
}

.core-project-card .project-actions {
  margin-top: auto;
}

.project-evidence {
  margin: 4px 0 22px;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text);
  background: rgba(0, 113, 227, 0.06);
  border: 1px solid rgba(0, 113, 227, 0.12);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.72);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.07);
}

.project-card-boss {
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.project-card-sourcing {
  background:
    radial-gradient(circle at 72% 18%, rgba(123, 97, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f6ff 0%, #ffffff 100%);
}

.project-card-feishu {
  background:
    radial-gradient(circle at 72% 20%, rgba(47, 158, 104, 0.1), transparent 32%),
    linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%);
}

.project-card-study {
  background:
    radial-gradient(circle at 74% 18%, rgba(198, 106, 31, 0.12), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
}

.project-media {
  display: block;
  overflow: hidden;
}

.project-cover {
  height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  transition: transform 260ms ease;
}

.project-cover::before {
  content: "";
  position: absolute;
  inset: auto -16% -34% auto;
  width: 62%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.11), rgba(245, 245, 247, 0) 68%);
  pointer-events: none;
}

.cover-boss {
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.cover-sourcing {
  background:
    radial-gradient(circle at 72% 18%, rgba(123, 97, 255, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f6ff 0%, #ffffff 100%);
}

.cover-feishu {
  background:
    radial-gradient(circle at 72% 20%, rgba(47, 158, 104, 0.1), transparent 32%),
    linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%);
}

.cover-study {
  background:
    radial-gradient(circle at 74% 18%, rgba(198, 106, 31, 0.12), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
}

.project-card:hover .project-cover {
  transform: scale(1.018);
}

.cover-mini {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 32px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.045);
}

.cover-mini span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.cover-mini strong {
  color: var(--text);
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
}

.cover-mini p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.4;
}

.cover-mini b {
  width: fit-content;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.16);
}

.mini-lines {
  display: grid;
  gap: 8px;
  width: min(100%, 260px);
}

.mini-lines i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #e5e5e5;
}

.mini-lines i:first-child {
  width: 72%;
}

.mini-lines i:nth-child(2) {
  width: 54%;
}

.mini-lines i:last-child {
  width: 64%;
}

.search-box {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.82);
  font-size: 15px;
}

.prompt-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-row span,
.tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.linkedin-wordmark {
  color: #0a66c2;
  font-size: 34px;
  font-weight: 750;
  line-height: 1;
}

.brand-cross {
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
}

.brand-lockup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.feishu-preview-card {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.045);
}

.feishu-avatar-frame {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  overflow: hidden;
  border-radius: 22px;
  background: #d8eefc;
}

.feishu-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.feishu-preview-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.feishu-preview-copy > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.feishu-preview-copy strong {
  max-width: 230px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
}

.cover-mini-study {
  width: min(100%, 360px);
}

.cover-mini-study strong {
  font-size: 38px;
}

.study-input {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 14px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid #d2d2d7;
  font-size: 14px;
}

.screenshot-placeholder {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
  color: var(--text);
  background: #fff;
  transition: transform 260ms ease;
  position: relative;
}

.project-card:hover .screenshot-placeholder {
  transform: scale(1.02);
}

.screenshot-placeholder span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.screenshot-placeholder strong {
  max-width: 280px;
  text-align: center;
  font-size: 34px;
  line-height: 1.12;
}

.screenshot-placeholder::before {
  content: "";
  width: min(78%, 360px);
  height: 112px;
  margin-bottom: 22px;
  border-radius: 8px;
  border: 1px solid rgba(210, 210, 215, 0.82);
  background: #f5f5f7;
}

.project-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 30px 32px;
}

.project-kicker {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 650;
  text-transform: uppercase;
}

.project-copy p {
  margin-bottom: 18px;
  font-size: 17px;
}

.project-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.project-copy .text-link {
  width: fit-content;
  margin-top: auto;
}

.project-card {
  position: relative;
  min-height: 620px;
  justify-content: space-between;
  padding: 42px;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 520ms ease, transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.075);
  border-color: rgba(0, 113, 227, 0.22);
}

.project-card-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.project-card h3 {
  max-width: 520px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.project-card .project-desc {
  max-width: 480px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.42;
}

.project-card-copy .project-actions {
  margin-top: 0;
  position: relative;
  z-index: 4;
  pointer-events: auto;
}

.project-card-copy,
.project-visual,
.project-actions {
  position: relative;
}

.project-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  pointer-events: none;
}

.project-visual::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  filter: blur(26px);
  pointer-events: none;
}

.project-visual > * {
  position: relative;
  z-index: 1;
}

.project-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 32px;
}

.project-card-link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -8px;
}

.project-script {
  font-family: "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.project-card-boss {
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 113, 227, 0.14), transparent 32%),
    linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
}

.project-card.center-top .project-card-copy {
  text-align: center;
  align-items: center;
}

.project-card.center-top h3,
.project-card.center-top .project-desc {
  margin-left: auto;
  margin-right: auto;
}

.project-card.center-top .project-actions {
  justify-content: center;
}

.project-card.center-top .project-visual {
  margin-top: 34px;
}

.project-card-sourcing {
  background:
    radial-gradient(circle at 72% 18%, rgba(123, 97, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #f7f6ff 0%, #ffffff 100%);
}

.project-card-feishu {
  justify-content: center;
  min-height: 560px;
  background:
    radial-gradient(circle at 72% 20%, rgba(47, 158, 104, 0.12), transparent 32%),
    linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%);
}

.project-card-disabled {
  cursor: default;
  color: rgba(29, 29, 31, 0.62);
  background:
    radial-gradient(circle at 72% 20%, rgba(142, 142, 147, 0.08), transparent 32%),
    linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
  border-color: rgba(210, 210, 215, 0.72);
}

.project-card-disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(210, 210, 215, 0.72);
}

.project-card-disabled h3 {
  color: rgba(29, 29, 31, 0.72);
}

.project-card-disabled .project-desc {
  color: rgba(110, 110, 115, 0.78);
}

.project-status-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(86, 86, 91, 0.86);
  background: rgba(142, 142, 147, 0.14);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.project-pill-disabled {
  cursor: not-allowed;
  color: rgba(86, 86, 91, 0.78);
  background: rgba(142, 142, 147, 0.12);
  border-color: rgba(142, 142, 147, 0.18);
}

.project-card-disabled .project-visual {
  opacity: 0.58;
  filter: grayscale(0.35) saturate(0.7);
}

.project-card-disabled .feishu-agent-preview {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.035);
}

.project-card-feishu .project-card-copy {
  margin-bottom: 36px;
}

.project-card-feishu .project-visual {
  flex: 0 0 auto;
  min-height: auto;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.project-card-feishu .feishu-agent-preview {
  margin: 0 auto;
}

.project-card-study {
  background:
    radial-gradient(circle at 74% 18%, rgba(198, 106, 31, 0.13), transparent 32%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
}

.project-card.text-bottom .project-card-copy {
  order: 2;
  text-align: center;
  align-items: center;
}

.project-card.text-bottom .project-desc {
  margin-left: auto;
  margin-right: auto;
}

.project-card.text-bottom .project-actions {
  justify-content: center;
}

.project-card.text-bottom .project-visual {
  order: 1;
  margin-top: 0;
  margin-bottom: 24px;
}

.feishu-agent-preview {
  width: min(100%, 560px);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(210, 210, 215, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.055);
}

.feishu-agent-preview .feishu-avatar-frame {
  flex: 0 0 118px;
  width: 118px;
  height: 118px;
  overflow: hidden;
  border-radius: 26px;
  background: #d8eefc;
}

.feishu-agent-preview .feishu-avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.feishu-agent-preview .feishu-preview-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.feishu-agent-preview .feishu-preview-copy strong {
  max-width: 320px;
  color: var(--text);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
  font-weight: 700;
}

.feishu-agent-preview .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feishu-agent-preview .tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 13px;
  font-weight: 650;
}

.sourcing-console,
.flow-preview,
.study-phone {
  width: min(100%, 520px);
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(210, 210, 215, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.055);
}

.sourcing-console {
  display: grid;
  gap: 14px;
}

.sourcing-head,
.flow-preview-head {
  display: grid;
  gap: 6px;
}

.sourcing-head span,
.flow-preview-head span,
.study-phone > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}

.sourcing-head strong,
.flow-preview-head strong {
  color: var(--text);
  font-size: 34px;
  line-height: 1.12;
}

.candidate-lines {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.candidate-lines i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(123, 97, 255, 0.13);
}

.candidate-lines i:first-child {
  width: 78%;
}

.candidate-lines i:nth-child(2) {
  width: 58%;
}

.candidate-lines i:last-child {
  width: 68%;
}

.flow-preview {
  display: grid;
  gap: 18px;
}

.flow-task-list {
  display: grid;
  gap: 10px;
}

.flow-task-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(245, 251, 248, 0.88);
  border: 1px solid rgba(47, 158, 104, 0.12);
}

.flow-task-list span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(47, 158, 104, 0.1);
  font-size: 12px;
  font-weight: 700;
}

.flow-task-list strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.study-phone {
  width: min(100%, 430px);
  display: grid;
  gap: 14px;
  border-radius: 30px;
}

.study-phone strong {
  color: var(--text);
  font-size: 42px;
  line-height: 1.08;
}

.study-phone b {
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.16);
}

.study-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.study-chip-row span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--warm);
  background: rgba(198, 106, 31, 0.1);
  font-size: 12px;
  font-weight: 650;
}

.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease var(--reveal-delay, 0ms),
    transform 520ms ease var(--reveal-delay, 0ms),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

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

.reveal-card.is-visible:not(.is-fading-out):hover {
  transform: translateY(-4px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.project-card[data-reveal-sync] {
  filter: blur(2px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.project-card[data-reveal-sync].is-visible {
  filter: blur(0);
}

.project-card.is-fading-out {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.project-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-pill:hover {
  transform: translateY(-1px);
}

.project-pill-primary {
  color: #fff;
  background: var(--blue);
}

.project-pill-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 22px rgba(0, 113, 227, 0.16);
}

.project-pill-secondary {
  color: var(--blue);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.project-pill-secondary:hover {
  border-color: var(--blue);
}

.text-link {
  color: var(--blue);
  font-size: 17px;
  font-weight: 500;
}

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

.text-link::after {
  content: " ›";
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.split-band p {
  margin-bottom: 0;
}

.detail-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

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

.plain-list li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.campus {
  background: var(--surface);
}

.experience-accordion,
.campus-accordion {
  display: grid;
  gap: 14px;
}

.experience-drawer,
.campus-drawer {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 210, 215, 0.78);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.experience-drawer {
  position: relative;
  background: rgba(255, 255, 255, 0.86);
  border-top: 3px solid var(--brand-primary, rgba(210, 210, 215, 0.78));
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    transform 250ms ease;
}

.experience-drawer:hover {
  border-color: rgba(210, 210, 215, 0.78);
  border-top-color: var(--brand-primary, var(--blue));
  box-shadow: 0 18px 50px var(--brand-soft, rgba(0, 0, 0, 0.055));
  transform: translateY(-4px);
}

.campus-drawer:hover {
  border-color: rgba(0, 113, 227, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.045);
}

.experience-laiye {
  --brand-primary: #f5d600;
  --brand-secondary: #111111;
  --brand-soft: rgba(245, 214, 0, 0.14);
}

.experience-zhilian {
  --brand-primary: #145bff;
  --brand-secondary: #ffd21e;
  --brand-soft: rgba(20, 91, 255, 0.12);
}

.experience-cntc {
  --brand-primary: #009b8f;
  --brand-secondary: #111111;
  --brand-soft: rgba(0, 155, 143, 0.12);
}

.experience-drawer-trigger,
.campus-drawer-trigger {
  width: 100%;
  display: grid;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  background: transparent;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.experience-drawer-trigger {
  grid-template-columns: minmax(300px, 0.95fr) minmax(260px, 1fr) 36px;
  padding: 72px 64px 44px;
}

.campus-drawer-trigger {
  grid-template-columns: 170px minmax(0, 1fr) 36px;
}

.experience-drawer-time,
.campus-drawer-time {
  color: var(--brand-primary, var(--blue));
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.company-header {
  display: block;
  min-width: 0;
}

.company-logo-mark {
  position: absolute;
  top: 28px;
  left: 32px;
  width: auto;
  max-width: 120px;
  height: auto;
  max-height: 26px;
  object-fit: contain;
  object-position: left center;
}

.experience-cntc .company-logo-mark {
  max-width: 150px;
  max-height: 24px;
}

.company-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.company-copy strong {
  color: var(--text);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
}

.company-copy em {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-style: normal;
}

.experience-drawer-main,
.campus-drawer-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.experience-drawer-main strong,
.campus-drawer-main strong {
  color: var(--text);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
}

.experience-drawer-main em,
.campus-drawer-main em {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-style: normal;
}

.campus-drawer-main em {
  font-size: 16px;
}

.experience-drawer-summary {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.experience-drawer-icon,
.campus-drawer-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-primary, var(--blue));
  background: var(--brand-soft, rgba(0, 113, 227, 0.08));
  font-size: 22px;
  line-height: 1;
  transition: transform 220ms ease;
}

.experience-drawer.is-open .experience-drawer-icon,
.campus-drawer.is-open .campus-drawer-icon {
  transform: rotate(45deg);
}

.experience-drawer-panel,
.campus-drawer-panel {
  display: none;
  padding: 0 30px 30px;
}

.experience-drawer.is-open .experience-drawer-panel,
.campus-drawer.is-open .campus-drawer-panel {
  display: block;
  animation: drawerFadeIn 220ms ease both;
}

.experience-detail-grid,
.campus-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 6px;
}

.experience-detail-card,
.campus-detail-card {
  padding: 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.62);
}

.experience-detail-card h4,
.campus-detail-card h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.experience-detail-card p,
.campus-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.experience-tags,
.campus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.experience-tags span,
.campus-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand-primary, var(--blue));
  background: var(--brand-soft, rgba(0, 113, 227, 0.08));
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.campus-showcase {
  position: relative;
  overflow: visible;
}

.campus-showcase::before,
.campus-showcase::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 12px;
  z-index: 2;
  width: 42px;
  pointer-events: none;
}

.campus-showcase::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), rgba(245, 245, 247, 0));
}

.campus-showcase::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), rgba(245, 245, 247, 0));
}

.campus-carousel-controls {
  position: absolute;
  top: -72px;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.campus-carousel-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(210, 210, 215, 0.72);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.campus-carousel-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.campus-scroll-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 4px 2px 16px;
  scroll-snap-type: x proximity;
  scroll-padding-left: 2px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(134, 134, 139, 0.32) transparent;
}

.campus-scroll-track::-webkit-scrollbar {
  height: 8px;
}

.campus-scroll-track::-webkit-scrollbar-track {
  background: transparent;
}

.campus-scroll-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(134, 134, 139, 0.28);
}

.campus-card {
  flex: 0 0 clamp(340px, 31vw, 420px);
  aspect-ratio: 4 / 5;
  height: auto;
  min-width: 0;
  scroll-snap-align: start;
}

.campus-feature-card,
.campus-side-card {
  min-width: 0;
}

.campus-showcase-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  overflow: hidden;
  padding: 28px;
  border-radius: 32px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.045);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.campus-showcase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.07);
}

.campus-showcase-card-featured {
  color: #fff;
  padding: 34px;
}

.campus-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.campus-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.74) 100%);
  pointer-events: none;
}

.campus-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(0.96) brightness(0.94);
  transition: transform 320ms ease;
}

.campus-showcase-card-featured:hover .campus-cover img {
  transform: scale(1.025);
}

.campus-side-academic .campus-showcase-card {
  color: #fff;
  background: #1d1d1f;
}

.campus-cover-academic::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.campus-cover-academic img {
  object-position: center 30%;
  filter: brightness(1.04) contrast(1.04) saturate(1.02);
}

.campus-side-academic .campus-card-meta,
.campus-side-academic .campus-card-label {
  color: rgba(255, 255, 255, 0.84);
}

.campus-side-academic .campus-card-label {
  background: rgba(255, 255, 255, 0.16);
}

.campus-side-academic .campus-card-copy > span:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.campus-side-academic .campus-open-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.campus-side-growth .campus-showcase-card {
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(198, 106, 31, 0.11), transparent 34%),
    linear-gradient(180deg, #fff8ef 0%, #ffffff 100%);
}

.campus-cover-growth::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.72) 100%);
}

.campus-cover-growth img {
  object-position: center 24%;
  filter: brightness(1.02) contrast(1.02) saturate(0.98);
}

.campus-side-growth .campus-card-meta,
.campus-side-growth .campus-card-label {
  color: rgba(255, 255, 255, 0.84);
}

.campus-side-growth .campus-card-label {
  background: rgba(255, 255, 255, 0.16);
}

.campus-side-growth .campus-card-copy > span:last-child {
  color: rgba(255, 255, 255, 0.84);
}

.campus-side-growth .campus-open-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.campus-side-other .campus-showcase-card {
  color: #fff;
  background: #111318;
}

.campus-cover-city::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.78) 100%);
}

.campus-cover-city img {
  object-position: center 38%;
  filter: saturate(0.94) contrast(0.98) brightness(0.9);
}

.campus-side-other .campus-card-meta,
.campus-side-other .campus-card-label {
  color: rgba(255, 255, 255, 0.82);
}

.campus-side-other .campus-card-label {
  background: rgba(255, 255, 255, 0.15);
}

.campus-side-other .campus-card-copy > span:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.campus-side-other .campus-open-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.24);
}

.campus-showcase-card-placeholder {
  cursor: default;
}

.campus-showcase-card-placeholder:hover {
  transform: none;
  border-color: rgba(210, 210, 215, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.045);
}

.campus-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 560px;
}

.campus-card-meta,
.campus-card-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.campus-card-meta {
  color: var(--blue);
}

.campus-showcase-card-featured .campus-card-meta,
.campus-showcase-card-featured .campus-card-label {
  color: rgba(255, 255, 255, 0.84);
}

.campus-card-label {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
}

.campus-showcase-card-featured .campus-card-label {
  background: rgba(255, 255, 255, 0.16);
}

.campus-card-copy strong {
  display: block;
  max-width: 360px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.campus-side-card .campus-card-copy strong {
  max-width: 360px;
}

.campus-card-copy > span:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.campus-showcase-card-featured .campus-card-copy > span:last-child {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.campus-showcase-card-featured .campus-feature-summary {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.55;
}

.campus-open-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(210, 210, 215, 0.52);
  font-size: 23px;
  line-height: 1;
}

.campus-showcase-card-featured .campus-open-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.campus-showcase-card:hover .campus-open-icon {
  background: rgba(255, 255, 255, 0.92);
}

.campus-showcase-card-featured:hover .campus-open-icon,
.campus-side-academic .campus-showcase-card:hover .campus-open-icon,
.campus-side-other .campus-showcase-card:hover .campus-open-icon {
  background: rgba(255, 255, 255, 0.24);
}

body.modal-open {
  overflow: hidden;
}

.experience-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0ms linear 220ms;
}

.experience-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease;
}

.experience-modal {
  position: relative;
  width: min(100%, 1160px);
  max-height: 86vh;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
  transform: translateY(16px) scale(0.98);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-modal:focus {
  outline: none;
}

.experience-modal-backdrop.is-open .experience-modal {
  transform: translateY(0) scale(1);
}

.experience-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: rgba(245, 245, 247, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.experience-modal-close:hover {
  background: #fff;
}

.experience-modal-content {
  max-height: 86vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 58px;
}

.campus-modal-intro {
  display: block;
  max-width: 900px;
}

.campus-modal-intro-copy {
  min-width: 0;
}

.campus-modal-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.campus-modal-content h3 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.campus-modal-lede {
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.campus-modal-section {
  margin-top: 42px;
}

.campus-modal-section h4 {
  margin: 0 0 16px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.campus-section-lede {
  max-width: 920px;
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.campus-iteration-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: start;
  padding: 18px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.64);
}

.campus-iteration-figure {
  margin: 0;
}

.campus-detail-image-stack {
  display: grid;
  gap: 22px;
}

.campus-iteration-image {
  display: block;
  height: 300px;
  overflow: hidden;
  border-radius: 22px;
  background: #e8e8ed;
}

.campus-iteration-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.88) contrast(0.96) brightness(0.96);
}

.campus-iteration-figure figcaption {
  max-width: 760px;
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.campus-iteration-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 0;
}

.campus-iteration-copy article {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.64);
}

.campus-iteration-copy h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
}

.campus-iteration-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

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

.campus-modal-grid.three,
.campus-stat-grid.three,
.campus-proof-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campus-stat-grid.six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.campus-modal-grid article,
.campus-stat-grid article,
.campus-proof-grid span,
.campus-proof-grid article {
  min-width: 0;
  padding: 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.64);
}

.campus-modal-grid h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
}

.campus-modal-grid p,
.campus-proof-grid p,
.campus-stat-grid p,
.campus-text-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.campus-modal-grid article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.campus-modal-grid article > span {
  width: fit-content;
  margin-top: auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.campus-proof-grid h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
}

.campus-text-card {
  max-width: 980px;
  padding: 24px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.64);
}

.campus-stat-grid p {
  margin-top: 10px;
}

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

.campus-recruit-grid article {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.64);
}

.campus-recruit-grid h5 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.22;
}

.campus-recruit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.campus-recruit-grid span {
  width: fit-content;
  margin-top: auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.campus-other-section {
  scroll-margin-top: 24px;
}

.campus-keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 18px;
}

.campus-keyword-row span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

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

.other-photo-card {
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.56);
}

.other-photo-card.is-wide {
  grid-column: span 6;
  aspect-ratio: 16 / 7;
}

.other-photo-card.is-tall {
  grid-column: span 3;
  aspect-ratio: 4 / 5;
}

.other-photo-card.is-landscape {
  grid-column: span 3;
  aspect-ratio: 16 / 10;
}

.other-photo-card img,
.other-sport-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.other-photo-card img {
  filter: saturate(0.96) contrast(0.98);
}

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

.other-sport-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.64);
}

.other-sport-media {
  height: 260px;
  margin: 0;
  overflow: hidden;
  background: #e8e8ed;
}

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

.other-volunteer-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.64);
}

.other-volunteer-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px 10px 0;
}

.other-volunteer-media.is-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.other-volunteer-media img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  background: #e8e8ed;
}

.other-volunteer-media.is-pair img {
  height: 190px;
}

.other-sport-card > div {
  padding: 20px;
}

.other-sport-card h5,
.other-volunteer-card h5,
.other-placeholder-card h5 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.other-sport-card p,
.other-volunteer-card p,
.other-placeholder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.other-volunteer-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px 20px;
}

.other-volunteer-copy span {
  width: fit-content;
  margin-top: auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.other-placeholder-card {
  max-width: 760px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #f5f5f7, #ffffff);
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.other-placeholder-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #6e6e73;
  background: rgba(110, 110, 115, 0.1);
  font-size: 13px;
  font-weight: 750;
}

.campus-stat-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.campus-stat-grid span,
.campus-proof-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

@media (prefers-reduced-motion: reduce) {
  .campus-showcase-card,
  .campus-cover img,
  .experience-modal,
  .experience-modal-backdrop {
    animation: none;
    transition: none;
  }
}

@keyframes drawerFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.contact.section-pad.compact {
  padding-bottom: 48px;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 86px 48px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 113, 227, 0.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(123, 97, 255, 0.14), transparent 32%),
    radial-gradient(circle at 78% 88%, rgba(47, 158, 104, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(210, 210, 215, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 31px;
  background: rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
  white-space: normal;
}

.contact-panel p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 30px;
}

.contact-info-item {
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 210, 215, 0.72);
  text-align: left;
}

.contact-info-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.contact-info-item strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 650;
}

.centered-actions {
  justify-content: center;
  margin-top: 0;
}

.project-hero {
  padding: 84px 0 72px;
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: stretch;
}

.project-stage {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  position: relative;
  padding: 38px;
  border-radius: 30px;
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.project-stage::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -32%;
  width: 64%;
  height: 72%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.13), rgba(245, 245, 247, 0) 70%);
  pointer-events: none;
}

.stage-panel {
  display: none;
  position: relative;
  z-index: 1;
}

.stage-panel.is-active {
  display: block;
  animation: stageIn 260ms ease both;
}

.stage-visual {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.055);
}

.stage-label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 13px;
  font-weight: 650;
}

.stage-visual h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 64px);
}

.stage-visual p {
  max-width: 600px;
  margin-bottom: 0;
  font-size: 18px;
}

.stage-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.stage-flow span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.stage-note {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stage-note span {
  padding: 16px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 210, 215, 0.58);
  font-size: 14px;
  line-height: 1.45;
}

.project-config {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}

.project-config h1 {
  white-space: normal;
  font-size: clamp(42px, 4.8vw, 64px);
}

.project-config .hero-subtitle {
  margin-bottom: 0;
  font-size: 20px;
}

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

.project-option {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.78);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.project-option:hover,
.project-option.is-active {
  transform: translateY(-1px);
  border-color: rgba(0, 113, 227, 0.32);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.project-option.is-active {
  background: #f7fbff;
}

.project-option span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.project-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.08);
  font-size: 12px;
  font-weight: 650;
}

@keyframes stageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-cover {
  width: min(100% - 40px, 960px);
  margin: 48px auto 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(210, 210, 215, 0.72);
  background: var(--surface);
}

.detail-cover .screenshot-placeholder {
  min-height: 420px;
}

.detail-section {
  padding: 78px 0;
}

.detail-section.alt {
  background: var(--surface);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

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

.detail-card {
  padding: 28px;
  border-radius: var(--card-radius);
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.detail-section:not(.alt) .detail-card {
  background: var(--surface);
}

.detail-card h3 {
  font-size: 21px;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.detail-card p:last-child {
  margin-bottom: 0;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.evidence-card {
  padding: 26px;
  border-radius: var(--card-radius);
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.evidence-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.evidence-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

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

.compare-card {
  padding: 30px;
  border-radius: var(--card-radius);
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.compare-card.after {
  border-color: rgba(0, 113, 227, 0.28);
}

.compare-card h3 {
  font-size: 28px;
}

.process-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.process-node {
  min-height: 126px;
  padding: 18px;
  border-radius: var(--card-radius);
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.process-node span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
}

.process-node p {
  margin-bottom: 0;
  font-size: 14px;
}

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

.detail-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
}

.detail-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.flow-step {
  min-height: 168px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(210, 210, 215, 0.72);
}

.flow-step span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}

.flow-step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.flow-step p {
  margin-bottom: 0;
  font-size: 14px;
}

.project-demo-section {
  width: 100%;
  max-width: 1080px;
  margin: 80px auto;
}

.project-demo-card {
  padding: 64px 48px;
  border-radius: 32px;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.project-demo-card h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.project-demo-card p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #6e6e73;
  font-size: 18px;
  line-height: 1.6;
}

.project-demo-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  background: #0071e3;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .project-demo-section {
    margin: 56px auto;
  }

  .project-demo-card {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .project-demo-card p {
    font-size: 16px;
  }
}

.bottom-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 12px;
}

@media (max-width: 980px) {
  .split-band,
  .project-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-capabilities,
  .core-project-grid {
    grid-template-columns: 1fr;
  }

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

  .project-stage {
    min-height: auto;
  }

  .project-config {
    padding: 0;
  }

  .hero {
    min-height: 92vh;
    padding-top: 0;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(8, 10, 14, 0.3) 0%,
        rgba(8, 10, 14, 0.22) 34%,
        rgba(8, 10, 14, 0.14) 68%,
        rgba(8, 10, 14, 0.1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(8, 10, 14, 0.28) 0%,
        rgba(8, 10, 14, 0.12) 62%,
        rgba(8, 10, 14, 0.02) 100%
      );
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    max-width: min(100% - 28px, var(--max));
    margin-left: auto;
    margin-right: auto;
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .hero-copy {
    max-width: 92vw;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(42px, 8vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    white-space: normal;
  }

  .hero-subtitle {
    max-width: min(620px, 92vw);
    font-size: clamp(17px, 3.4vw, 20px);
    line-height: 1.65;
  }

  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid,
  .detail-grid.two,
  .detail-grid.four,
  .evidence-grid,
  .process-map {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .nav-shell {
    width: min(100% - 28px, var(--max));
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links {
    width: 100%;
    gap: 0;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding-right: 18px;
  }

  .section-pad,
  .detail-section {
    padding: 64px 0;
  }

  .content-shell {
    width: min(100% - 28px, var(--max));
  }

  .hero h1 {
    max-width: 92vw;
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subtitle {
    max-width: 92vw;
    font-size: clamp(17px, 4vw, 20px);
    line-height: 1.65;
  }

  .hero-capabilities {
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-capabilities article {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-actions,
  .bottom-nav {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .button {
    flex: 1 1 150px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero .button {
    flex: 0 0 auto;
    width: auto;
  }

  .hero .button-primary {
    padding-left: 26px;
    padding-right: 26px;
  }

  .hero .button-secondary {
    padding-left: 2px;
    padding-right: 2px;
  }

  .hero-bg {
    background-position: 66% center;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 64px;
  }

  .project-grid,
  .project-showcase,
  .flow-list,
  .compare-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .experience-drawer-trigger,
  .campus-drawer-trigger {
    grid-template-columns: 1fr 34px;
    gap: 12px;
    padding: 22px;
  }

  .experience-drawer-trigger {
    padding: 64px 24px 32px;
  }

  .experience-drawer-time,
  .company-header,
  .experience-drawer-summary,
  .campus-drawer-time,
  .campus-drawer-main {
    grid-column: 1 / 2;
  }

  .experience-drawer-icon,
  .campus-drawer-icon {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
  }

  .experience-drawer-panel,
  .campus-drawer-panel {
    padding: 0 22px 24px;
  }

  .company-logo-mark {
    top: 24px;
    left: 24px;
    max-width: 116px;
    max-height: 22px;
  }

  .experience-cntc .company-logo-mark {
    max-width: 150px;
    max-height: 22px;
  }

  .company-copy strong {
    font-size: 22px;
  }

  .experience-detail-grid,
  .campus-detail-grid {
    grid-template-columns: 1fr;
  }

  .experience-drawer-main strong,
  .campus-drawer-main strong {
    font-size: 22px;
  }

  .experience-drawer-summary,
  .campus-drawer-main em {
    font-size: 15px;
  }

  .campus-showcase {
    overflow: visible;
  }

  .campus-showcase::before,
  .campus-showcase::after {
    width: 24px;
  }

  .campus-carousel-controls {
    position: static;
    justify-content: flex-end;
    margin: -10px 0 14px;
  }

  .campus-carousel-button {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .campus-scroll-track {
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .campus-scroll-track::-webkit-scrollbar {
    display: none;
  }

  .campus-card {
    flex: 0 0 84vw;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .campus-showcase-card {
    padding: 24px;
    border-radius: 24px;
  }

  .campus-showcase-card-featured {
    padding: 26px;
  }

  .campus-cover img {
    object-position: center top;
  }

  .campus-cover-academic img {
    object-position: center 28%;
  }

  .campus-cover-city img {
    object-position: center 34%;
  }

  .campus-card-copy strong {
    font-size: 28px;
    line-height: 1.12;
  }

  .experience-modal-backdrop {
    padding: 16px;
  }

  .experience-modal {
    width: min(96vw, 100%);
    max-height: 88vh;
    border-radius: 26px;
  }

  .experience-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .experience-modal-content {
    max-height: 88vh;
    padding: 44px 20px 24px;
  }

  .campus-modal-intro {
    max-width: none;
  }

  .campus-modal-intro-city {
    max-width: none;
  }

  .campus-modal-content h3 {
    font-size: 34px;
  }

  .campus-iteration-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
    border-radius: 22px;
  }

  .campus-detail-image-stack {
    gap: 16px;
  }

  .campus-iteration-image {
    height: 220px;
    border-radius: 18px;
  }

  .campus-iteration-copy {
    grid-template-columns: 1fr;
  }

  .campus-modal-grid,
  .campus-modal-grid.three,
  .campus-stat-grid,
  .campus-stat-grid.three,
  .campus-stat-grid.six,
  .campus-recruit-grid,
  .campus-proof-grid,
  .campus-proof-grid.three,
  .other-photo-grid,
  .other-sport-grid,
  .other-volunteer-grid {
    grid-template-columns: 1fr;
  }

  .campus-keyword-row {
    margin-bottom: 16px;
  }

  .other-photo-card,
  .other-photo-card.is-wide,
  .other-photo-card.is-tall,
  .other-photo-card.is-landscape {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .other-photo-card.is-tall {
    aspect-ratio: 4 / 5;
  }

  .other-sport-card,
  .other-volunteer-card,
  .other-placeholder-card {
    border-radius: 20px;
  }

  .other-sport-media {
    height: 220px;
  }

  .other-volunteer-media,
  .other-volunteer-media.is-pair {
    grid-template-columns: 1fr;
  }

  .other-volunteer-media img,
  .other-volunteer-media.is-pair img {
    height: 220px;
    border-radius: 16px;
  }

  .other-placeholder-card {
    max-width: none;
    padding: 22px;
  }

  .reason-card {
    min-height: 176px;
    border-radius: 20px;
  }

  .project-scene-card {
    min-height: 240px;
    padding: 26px;
    border-radius: 22px;
  }

  .project-scene-card h3 {
    font-size: 34px;
  }

  .project-showcase .project-card {
    min-height: 500px;
    padding: 24px;
    border-radius: 24px;
  }

  .project-card.text-bottom .project-card-copy {
    order: 0;
    text-align: left;
    align-items: flex-start;
  }

  .project-card.text-bottom .project-desc {
    margin-left: 0;
    margin-right: 0;
  }

  .project-card.text-bottom .project-actions {
    justify-content: flex-start;
  }

  .project-card.text-bottom .project-visual {
    margin-top: 24px;
    margin-bottom: 0;
  }

  .project-card-feishu {
    min-height: 500px;
  }

  .project-card-feishu .project-card-copy {
    margin-bottom: 20px;
  }

  .project-card-feishu .project-visual {
    min-height: auto;
    margin-top: 0;
  }

  .project-card h3 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.1;
  }

  .project-card .project-desc {
    font-size: 17px;
    line-height: 1.5;
  }

  .project-card-copy .project-actions {
    margin-top: 18px;
  }

  .project-visual {
    min-height: 240px;
    margin: 24px 0 18px;
  }

  .cover-mini {
    min-height: 190px;
    padding: 20px;
    border-radius: 18px;
  }

  .cover-mini strong {
    font-size: 30px;
  }

  .sourcing-console,
  .flow-preview,
  .study-phone {
    padding: 18px;
    border-radius: 20px;
  }

  .feishu-agent-preview {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 22px;
  }

  .feishu-agent-preview .feishu-avatar-frame {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
    border-radius: 20px;
  }

  .feishu-agent-preview .feishu-preview-copy strong {
    max-width: 100%;
    font-size: 24px;
  }

  .sourcing-head strong,
  .flow-preview-head strong,
  .study-phone strong {
    font-size: 28px;
  }

  .core-project-card {
    min-height: auto;
    border-radius: 22px;
  }

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

  .core-project-card .project-copy h3 {
    font-size: 25px;
  }

  .project-evidence {
    border-radius: 14px;
    font-size: 13px;
  }

  .project-stage {
    padding: 18px;
    border-radius: 22px;
  }

  .stage-visual {
    min-height: 280px;
    padding: 22px;
    border-radius: 18px;
  }

  .stage-visual h2 {
    font-size: 31px;
  }

  .stage-visual p {
    font-size: 16px;
  }

  .stage-note {
    grid-template-columns: 1fr;
  }

  .project-config h1 {
    font-size: 40px;
  }

  .project-option {
    min-height: 58px;
    padding: 14px 16px;
  }

  .screenshot-placeholder,
  .detail-cover .screenshot-placeholder {
    min-height: 260px;
  }

  .screenshot-placeholder strong {
    font-size: 28px;
  }

  .project-copy,
  .detail-card {
    padding: 24px;
  }

  .project-cover {
    height: 220px;
    padding: 18px;
    border-radius: 20px;
  }

  .cover-mini {
    min-height: 164px;
    gap: 10px;
    padding: 18px;
    border-radius: 14px;
  }

  .cover-mini strong,
  .cover-mini-study strong {
    font-size: 25px;
  }

  .cover-mini p,
  .search-box,
  .study-input {
    font-size: 13px;
  }

  .cover-mini b {
    padding: 8px 14px;
    font-size: 13px;
  }

  .search-box,
  .study-input {
    min-height: 40px;
  }

  .linkedin-wordmark {
    font-size: 26px;
  }

  .brand-cross {
    font-size: 16px;
  }

  .brand-lockup img {
    width: 42px;
    height: 42px;
  }

  .feishu-preview-card {
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
  }

  .feishu-avatar-frame {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .feishu-preview-copy {
    gap: 8px;
  }

  .feishu-preview-copy > span {
    font-size: 12px;
  }

  .feishu-preview-copy strong {
    max-width: 190px;
    font-size: 18px;
  }

  .tag-row span,
  .prompt-row span {
    padding: 6px 8px;
    font-size: 11px;
  }

  .contact-panel {
    padding: 52px 22px;
    border-radius: 28px;
  }

  .contact-title {
    font-size: clamp(38px, 10vw, 44px);
    line-height: 1.15;
    white-space: normal;
  }

  .contact-info {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-info-item {
    min-width: 0;
    width: 100%;
  }

}
