:root {
  color-scheme: light;
  --ink: #101722;
  --muted: #6a7483;
  --paper: #f4f7fb;
  --paper-strong: #e9f1f8;
  --panel: #ffffff;
  --line: #dbe4ef;
  --navy: #071120;
  --blue: #0068ff;
  --cyan: #20c8ff;
  --accent: #ff3f5f;
  --green: #36aa64;
  --red: #ef2d45;
  --silver: #eef4fb;
  --shadow: 0 24px 70px rgba(10, 21, 38, 0.14);
  --shadow-soft: 0 18px 50px rgba(10, 21, 38, 0.1);
  --shadow-hover: 0 30px 90px rgba(0, 34, 90, 0.18);
  --page-gutter: clamp(18px, 3vw, 48px);
  --wide: 1760px;
  --rail: min(var(--wide), calc(100vw - (2 * var(--page-gutter))));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 104, 255, 0.1), transparent 30rem),
    radial-gradient(circle at 15% 48%, rgba(32, 200, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #eef4fb 0, #f8fafc 680px, #f0f5fa 100%),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial,
    sans-serif;
  line-height: 1.62;
}

.scroll-progress {
  position: fixed;
  z-index: 180;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0078ff, #20c8ff 52%, #8af3ff);
  box-shadow: 0 0 18px rgba(32, 200, 255, 0.35);
}

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

img {
  max-width: 100%;
}

main {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

::selection {
  color: #fff;
  background: rgba(0, 104, 255, 0.86);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: var(--rail);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 14, 30, 0.82), rgba(7, 20, 38, 0.62)),
    rgba(6, 16, 32, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 8, 20, 0.28);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.site-header:hover {
  border-color: rgba(32, 200, 255, 0.34);
  background:
    linear-gradient(90deg, rgba(4, 14, 30, 0.9), rgba(7, 28, 58, 0.68)),
    rgba(6, 16, 32, 0.66);
  box-shadow:
    0 20px 54px rgba(0, 8, 20, 0.34),
    0 0 0 1px rgba(32, 200, 255, 0.1) inset;
}

.brand {
  display: inline-grid;
  gap: 1px;
  line-height: 1;
}

.brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
}

.brand strong {
  font-size: 20px;
  font-weight: 950;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2.8vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(105deg, transparent 0%, transparent 42%, rgba(32, 200, 255, 0.12) 49%, transparent 57%, transparent 100%);
  transform: translateX(-42%);
  animation: heroSweep 9s ease-in-out infinite;
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 10, 22, 0.9), rgba(5, 18, 40, 0.62) 45%, rgba(3, 10, 22, 0.22)),
    linear-gradient(0deg, rgba(3, 10, 22, 0.86), rgba(3, 10, 22, 0.08) 52%);
}

.hero-grid {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  animation: gridFloat 22s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--rail);
  min-height: 82vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: end;
  padding: 104px 0 22px;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(1180px, 72vw);
  max-width: 100%;
  padding-left: clamp(22px, 2.2vw, 34px);
  padding-bottom: clamp(10px, 3vh, 28px);
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: clamp(10px, 3vh, 28px);
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), rgba(0, 104, 255, 0.08));
  box-shadow: 0 0 22px rgba(32, 200, 255, 0.34);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(32, 200, 255, 0.32);
  border-radius: 999px;
  padding: 7px 14px;
  color: #c9f3ff;
  background: rgba(5, 18, 40, 0.42);
  box-shadow:
    0 12px 34px rgba(0, 8, 20, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

h1,
h2,
h3,
p,
strong,
em,
span {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 1160px;
  font-size: clamp(48px, 4.35vw, 74px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-content h1 {
  position: relative;
  max-width: 1160px;
  padding-bottom: 20px;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 8, 20, 0.44);
}

.hero-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(760px, 62vw);
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--cyan), rgba(0, 104, 255, 0.58), transparent);
  box-shadow: 0 0 24px rgba(32, 200, 255, 0.26);
}

.hero-name {
  display: grid;
  gap: 5px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(20px, 1.45rem, 24px);
  font-weight: 950;
}

.hero-name > span {
  color: rgba(32, 200, 255, 0.92);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.hero-name > strong {
  line-height: 1.2;
}

.hero-copy {
  max-width: min(980px, 100%);
  margin: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.6vw, 18px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 950;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
.nav-links a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(32, 200, 255, 0.72);
  outline-offset: 4px;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), #00a8ff);
  color: #fff;
  box-shadow: 0 16px 34px rgba(0, 104, 255, 0.35);
}

.button.primary:hover {
  box-shadow: 0 20px 44px rgba(0, 104, 255, 0.42);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button.dark:hover {
  border-color: rgba(32, 200, 255, 0.42);
  background: rgba(32, 200, 255, 0.12);
}

.hero-metrics {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(820px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-height: 82px;
  padding: 16px 18px;
  background: rgba(7, 17, 32, 0.48);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.hero-metrics div:hover {
  background: rgba(0, 104, 255, 0.2);
  transform: translateY(-2px);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.08;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.hero-note {
  display: none;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 17, 32, 0.44);
  backdrop-filter: blur(16px);
}

.hero-note span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-note p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.section {
  position: relative;
  width: var(--rail);
  max-width: none;
  margin: 0 auto;
  padding: 76px 0;
}

.thesis {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: none;
  width: 100%;
  padding: 58px 0 46px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(32, 200, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, #f7fafc 0%, #edf4fa 100%);
}

.section-label {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.thesis h2,
.section-header h2,
.archive-heading h2,
.case-content h2,
.contact h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.thesis h2 {
  max-width: 980px;
  font-size: clamp(30px, 3.25vw, 46px);
}

.thesis p,
.section-header > p,
.archive-heading p,
.case-content p,
.work-body p,
.capability-grid p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.thesis p {
  max-width: 760px;
  margin-top: 0;
}

.thesis-copy {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.95fr);
  grid-template-areas:
    "label text"
    "title text";
  gap: 18px clamp(36px, 5vw, 86px);
  align-items: center;
  border-radius: 8px;
  padding: clamp(28px, 3.5vw, 38px) clamp(30px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.94));
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.thesis-copy:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.thesis-copy .section-label {
  grid-area: label;
  align-self: end;
}

.thesis-copy h2 {
  grid-area: title;
  max-width: none;
  font-size: clamp(28px, 2.65vw, 40px);
}

.thesis-copy > p:not(.section-label) {
  grid-area: text;
  align-self: center;
  border-left: 1px solid rgba(0, 104, 255, 0.16);
  padding-left: clamp(22px, 3vw, 34px);
  font-size: 16px;
  line-height: 1.8;
}

.thesis-copy,
.thesis-points {
  width: var(--rail);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.thesis-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.thesis-points > div {
  display: grid;
  grid-template-rows: 22px minmax(34px, auto) 1fr;
  gap: 10px;
  align-content: start;
  min-height: 150px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.96));
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 220ms ease,
    box-shadow 260ms ease;
}

.thesis-points > div:hover {
  z-index: 1;
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--shadow-hover);
}

.thesis-points span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.thesis-points strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
}

.thesis-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.method-section {
  width: var(--rail);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 auto;
  padding: 18px 0 54px;
}

.method-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(145deg, #ffffff, #f7fbff);
  box-shadow: var(--shadow-soft);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease;
}

.method-copy:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.method-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.1;
}

.method-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
}

.method-steps span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.method-steps span:hover {
  border-color: rgba(0, 104, 255, 0.35);
  color: var(--blue);
  background: rgba(0, 104, 255, 0.06);
  transform: translateY(-2px);
}

.method-visual {
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.method-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.method-visual:hover img {
  transform: scale(1.035);
}

.case-section {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(420px, 0.72fr);
  width: var(--rail);
  max-width: none;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 40px) 0;
  gap: 0;
}

.case-media {
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  background: #061020;
  box-shadow: var(--shadow);
}

.case-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  max-height: 500px;
  object-fit: contain;
  padding: 10px;
  background:
    radial-gradient(circle at 70% 45%, rgba(0, 104, 255, 0.22), transparent 34%),
    #061020;
  transition: transform 600ms ease;
}

.case-media:hover img {
  transform: scale(1.015);
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  padding: clamp(28px, 3.4vw, 48px);
  background:
    linear-gradient(145deg, rgba(7, 17, 32, 0.98), rgba(10, 29, 58, 0.96)),
    var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.case-content p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.case-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  color: var(--cyan);
  font-weight: 950;
}

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

.text-link {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.text-link:hover {
  transform: translateX(4px);
}

.cta-link {
  position: relative;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(32, 200, 255, 0.36);
  border-radius: 999px;
  padding: 11px 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 104, 255, 0.95), rgba(0, 184, 255, 0.72));
  box-shadow:
    0 14px 32px rgba(0, 104, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: ctaPulse 2.8s ease-in-out infinite;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.cta-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 68%);
  translate: -120% 0;
  transition: translate 520ms ease;
}

.cta-link::after {
  content: "→";
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease;
}

.cta-link:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(0, 104, 255, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.cta-link:hover::before {
  translate: 120% 0;
}

.cta-link:hover::after {
  transform: translateX(4px);
}

.cta-link.dark-link {
  border-color: rgba(0, 104, 255, 0.26);
  color: #fff;
  background:
    linear-gradient(135deg, var(--blue), #00a8ff);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(24px, 7vw, 86px);
  align-items: end;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(126, 154, 190, 0.24);
}

.work-section {
  padding-top: 82px;
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 104, 255, 0.1), transparent 28rem),
    linear-gradient(180deg, #f6f9fc, #eef4fa);
  box-shadow: 0 0 0 100vmax #f3f7fb;
  clip-path: inset(0 -100vmax);
}

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

.work-card {
  grid-column: span 6;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 280ms ease,
    filter 220ms ease;
}

.work-card:hover {
  border-color: rgba(0, 104, 255, 0.28);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.work-card.wide {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
}

.work-card.tall {
  grid-column: span 5;
}

.work-card.featured-plan {
  grid-column: span 7;
  border-color: rgba(0, 104, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.98));
  box-shadow:
    0 34px 92px rgba(0, 55, 135, 0.18),
    0 0 0 1px rgba(32, 200, 255, 0.16) inset;
}

.work-card.wide.featured-plan {
  grid-column: span 12;
}

.work-card.product-feature {
  grid-column: span 7;
}

.work-card.expo-feature {
  grid-column: span 5;
}

.work-card.featured-plan::before {
  content: "重点商务物料";
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(0, 104, 255, 0.88);
  box-shadow: 0 12px 28px rgba(0, 104, 255, 0.28);
  font-size: 12px;
  font-weight: 950;
}

.work-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 16px;
  background:
    linear-gradient(135deg, #edf4fb, #ffffff);
  transition: transform 520ms ease;
}

.work-card:hover img {
  transform: scale(1.024);
}

.work-card.wide img {
  height: 100%;
  min-height: 360px;
  padding: 18px;
}

.work-card.tall img {
  aspect-ratio: 16 / 10;
}

.work-card.featured-plan img {
  aspect-ratio: 16 / 9;
  padding: 10px;
  background:
    radial-gradient(circle at 72% 42%, rgba(32, 200, 255, 0.18), transparent 35%),
    #061020;
}

.work-card.featured-plan .work-body {
  min-height: 230px;
  padding: 32px;
}

.work-card.featured-plan .work-body h3 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.work-card.launch-feature {
  grid-column: span 12;
  border-color: rgba(0, 104, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.98));
  box-shadow:
    0 34px 92px rgba(0, 55, 135, 0.18),
    0 0 0 1px rgba(32, 200, 255, 0.16) inset;
}

.work-card.launch-feature::before {
  content: "重点活动传播";
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(0, 104, 255, 0.88);
  box-shadow: 0 12px 28px rgba(0, 104, 255, 0.28);
  font-size: 12px;
  font-weight: 950;
}

.work-card.launch-feature img {
  aspect-ratio: 16 / 9;
  padding: 10px;
  background:
    radial-gradient(circle at 72% 42%, rgba(32, 200, 255, 0.18), transparent 35%),
    #061020;
}

.work-card.launch-feature .work-body {
  min-height: 230px;
  padding: 32px;
}

.work-card.launch-feature .work-body h3 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.work-card.product-feature img {
  aspect-ratio: 16 / 9;
  padding: 10px;
  background:
    radial-gradient(circle at 70% 45%, rgba(32, 200, 255, 0.16), transparent 34%),
    #061020;
}

.work-card.product-feature .work-body {
  justify-content: flex-start;
  min-height: 230px;
  padding-top: clamp(30px, 3.2vw, 46px);
}

.work-card.product-feature .work-body h3 {
  margin-top: 40px;
}

.work-card.expo-feature img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 10px;
  background:
    radial-gradient(circle at 58% 48%, rgba(32, 200, 255, 0.16), transparent 38%),
    #061020;
}

.work-card.expo-feature .work-body {
  min-height: 280px;
}

.work-card.expo-feature .work-body h3 {
  font-size: clamp(25px, 2.7vw, 36px);
}

.product-visual {
  position: relative;
  overflow: hidden;
  background: #061020;
}

.product-visual img {
  display: block;
  filter: saturate(1.04) contrast(1.03);
}

.work-card.product-showcase {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(260px, 0.26fr) minmax(640px, 1fr);
  gap: 10px;
  border-color: rgba(0, 104, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 104, 255, 0.16), rgba(32, 200, 255, 0.1)),
    var(--line);
}

.product-showcase-copy {
  display: flex;
  min-height: clamp(280px, 20vw, 340px);
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.3vw, 32px);
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 200, 255, 0.2), transparent 18rem),
    linear-gradient(145deg, #ffffff, #e8f4ff);
}

.product-showcase-copy span {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-showcase-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.12;
}

.product-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 18px);
  overflow: hidden;
  padding: clamp(10px, 1vw, 16px);
  background:
    radial-gradient(circle at 50% 50%, rgba(32, 200, 255, 0.09), transparent 42%),
    #061020;
}

.product-shot {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 20vw, 340px);
  border: 1px solid rgba(84, 175, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(32, 200, 255, 0.08), transparent 56%),
    #030812;
  box-shadow:
    0 18px 34px rgba(0, 8, 22, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.product-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(0deg, rgba(0, 8, 20, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 360ms ease;
}

.product-showcase-grid img {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 20vw, 340px);
  aspect-ratio: auto;
  object-fit: contain;
  padding: clamp(8px, 0.8vw, 14px);
  background: #030812;
  filter: saturate(1.04) contrast(1.03);
  transition:
    transform 620ms ease,
    filter 620ms ease;
}

.product-shot:first-child {
  grid-row: auto;
  min-height: clamp(280px, 20vw, 340px);
}

.product-shot:nth-child(1) img {
  object-position: center bottom;
}

.product-shot:nth-child(2) img {
  object-position: center bottom;
}

.product-shot:nth-child(3) img {
  object-position: center bottom;
}

.product-shot:nth-child(4) img {
  object-position: center bottom;
}

.product-shot:hover::after {
  opacity: 1;
}

.product-shot:hover img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.08);
}

.logo-card img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 34px;
}

.identity-card {
  grid-column: span 12;
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(520px, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff, #f2f7fd);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.identity-card:hover {
  border-color: rgba(0, 104, 255, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 28px 86px rgba(10, 21, 38, 0.18);
}

.identity-copy {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
}

.identity-copy span {
  margin-bottom: clamp(38px, 5.5vw, 72px);
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.identity-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.identity-copy p {
  margin: 0;
  color: var(--muted);
}

.identity-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.identity-logos img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: contain;
  padding: 30px;
  background: #fff;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.identity-logos img:hover {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.content-section {
  padding-top: 0;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 18% 0%, rgba(32, 200, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #eef4fa, #f8fbfd);
  box-shadow: 0 0 0 100vmax #f5f8fb;
  clip-path: inset(0 -100vmax);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(330px, 1.05fr) repeat(2, minmax(280px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.content-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, #ffffff, #f2f7fd);
  box-shadow: var(--shadow);
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 280ms ease;
}

.content-card.primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(7, 17, 32, 0.98), rgba(8, 40, 82, 0.96)),
    var(--navy);
}

.content-card:hover {
  border-color: rgba(0, 104, 255, 0.28);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.content-card.primary:hover {
  border-color: rgba(32, 200, 255, 0.32);
  box-shadow: 0 30px 80px rgba(0, 54, 120, 0.24);
}

.content-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.content-card.primary span {
  color: var(--cyan);
}

.content-card h3 {
  margin: 0 0 16px;
  font-size: clamp(25px, 2.45vw, 34px);
  line-height: 1.12;
}

.content-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.content-card.primary p {
  color: rgba(255, 255, 255, 0.7);
}

.content-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.content-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.content-card.primary li {
  color: rgba(255, 255, 255, 0.84);
}

.content-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}

.content-card.primary li::before {
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(32, 200, 255, 0.52);
}

.work-body {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.work-body span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.work-body h3 {
  margin: 42px 0 12px;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.14;
}

.archive {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(32, 200, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 24%, rgba(255, 63, 95, 0.12), transparent 24rem),
    linear-gradient(180deg, #071120 0%, #0b1d36 54%, #081425 100%),
    var(--navy);
  color: #fff;
}

.archive::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.archive-inner {
  position: relative;
  z-index: 1;
  width: var(--rail);
  max-width: none;
  margin: 0 auto;
  padding: 86px 0 82px;
}

.archive-heading {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(460px, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(40px, 8vw, 120px);
  row-gap: 10px;
  align-items: center;
  margin-bottom: 38px;
}

.archive-heading .section-kicker {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.archive-heading h2 {
  grid-column: 1;
  grid-row: 2;
}

.archive-heading p {
  grid-column: 2;
  grid-row: 1 / 3;
  color: rgba(255, 255, 255, 0.68);
}

.archive-heading p.section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.doc-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.doc-list a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 280ms ease,
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.doc-list a:hover {
  border-color: rgba(32, 200, 255, 0.42);
  background: rgba(0, 104, 255, 0.22);
  box-shadow: 0 24px 64px rgba(0, 8, 20, 0.28);
  transform: translateY(-6px);
}

.doc-list span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
}

.doc-list strong {
  display: block;
  font-size: 24px;
  line-height: 1.18;
}

.doc-list em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

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

.capability {
  padding-top: 86px;
  padding-bottom: 86px;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 104, 255, 0.1), transparent 26rem),
    linear-gradient(180deg, #eef5fb 0%, #f7fafc 100%);
  box-shadow: 0 0 0 100vmax #f4f8fb;
  clip-path: inset(0 -100vmax);
}

.capability-grid > div {
  min-height: 300px;
  display: grid;
  grid-template-rows: 28px minmax(82px, auto) 1fr;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transition:
    transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 220ms ease,
    box-shadow 280ms ease;
}

.capability-grid > div:hover {
  border-color: rgba(0, 104, 255, 0.26);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.capability-grid span {
  color: var(--blue);
  font-weight: 950;
}

.capability-grid h3 {
  display: flex;
  align-items: end;
  min-height: 82px;
  margin: 0;
  font-size: clamp(21px, 1.6vw, 25px);
  line-height: 1.18;
}

.capability-grid p {
  margin: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: var(--rail);
  max-width: none;
  margin: 0 auto 72px;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 36%, rgba(32, 200, 255, 0.28), transparent 26rem),
    radial-gradient(circle at 18% 18%, rgba(255, 63, 95, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(7, 17, 32, 0.98), rgba(12, 34, 62, 0.98)),
    var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 28%, transparent 72%, rgba(32, 200, 255, 0.14));
  opacity: 0.7;
}

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

.contact p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
  margin-top: 0;
}

.interactive-surface {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --image-x: 0px;
  --image-y: 0px;
  --lift: 0px;
  position: relative;
  isolation: isolate;
  transform: perspective(1200px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.interactive-surface:hover {
  --lift: -5px;
}

.interactive-surface::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, transparent, rgba(32, 200, 255, 0.07), transparent 58%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 260ms ease;
}

.interactive-surface:hover::after {
  opacity: 0.72;
}

.case-media img,
.method-visual img,
.work-card > img,
.product-visual img,
.product-shot img {
  transform: translate3d(var(--image-x, 0px), var(--image-y, 0px), 0) scale(var(--image-scale, 1));
  transition:
    transform 520ms ease,
    filter 520ms ease;
}

.case-section:hover,
.method-visual:hover,
.work-card:hover,
.product-shot:hover {
  --image-scale: 1.035;
}

.motion-ready .reveal {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 620ms ease,
    translate 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-1.2%, 0, 0);
  }
}

@keyframes heroSweep {
  0%,
  42% {
    transform: translateX(-48%);
  }

  68%,
  100% {
    transform: translateX(48%);
  }
}

@keyframes gridFloat {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 14px 32px rgba(0, 104, 255, 0.24),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }

  50% {
    box-shadow:
      0 18px 42px rgba(32, 200, 255, 0.36),
      0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  }
}

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

@media (max-width: 980px) {
  .hero-inner,
  .thesis,
  .method-section,
  .case-section,
  .section-header,
  .archive-heading,
  .work-card.wide,
  .work-card.product-showcase,
  .identity-card {
    grid-template-columns: 1fr;
  }

  .archive-heading .section-kicker,
  .archive-heading h2,
  .archive-heading p {
    grid-column: 1;
    grid-row: auto;
  }

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

  .content-card {
    min-height: auto;
  }

  .thesis-points > div {
    min-height: 150px;
  }

  .hero-metrics {
    grid-column: 1;
  }

  .hero-note {
    grid-column: 1;
  }

  .case-section {
    padding-top: 20px;
  }

  .case-media {
    border-radius: 8px 8px 0 0;
  }

  .case-media img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .case-content {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 8px 8px;
  }

  .work-card,
  .work-card.wide,
  .work-card.tall,
  .work-card.featured-plan,
  .work-card.product-feature,
  .work-card.expo-feature,
  .work-card.product-showcase,
  .identity-card {
    grid-column: span 12;
  }

  .product-showcase-copy {
    min-height: 220px;
  }

  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
  }

  .product-shot:first-child {
    grid-row: auto;
    grid-column: auto;
    min-height: 190px;
  }

  .product-shot,
  .product-showcase-grid img {
    min-height: 190px;
  }

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

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    top: 10px;
    width: calc(100vw - 20px);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-image {
    object-position: 52% center;
  }

  .hero-inner {
    min-height: 100vh;
    padding-top: 142px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-badges {
    gap: 7px;
  }

  .hero-metrics,
  .doc-list,
  .identity-logos,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    min-height: 88px;
  }

  .button,
  .contact-actions {
    width: 100%;
  }

  .section,
  .archive-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .thesis {
    padding: 56px 0 38px;
  }

  .thesis-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "text";
    gap: 18px;
  }

  .thesis-copy > p:not(.section-label) {
    border-left: 0;
    padding-left: 0;
  }

  .thesis-points {
    grid-template-columns: 1fr;
  }

  .thesis-points > div {
    grid-template-rows: auto;
    gap: 8px;
    min-height: auto;
  }

  .method-section {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .method-copy,
  .method-visual img {
    min-height: auto;
  }

  .product-showcase-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .product-shot,
  .product-shot:first-child {
    grid-column: auto;
    min-height: 210px;
  }

  .product-showcase-grid img {
    min-height: 210px;
  }

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

  .contact-actions {
    justify-content: stretch;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
    padding-bottom: 14px;
  }

  .hero-content .eyebrow {
    min-height: 32px;
    padding: 6px 11px;
  }

  .hero-name {
    font-size: 20px;
  }

  .hero-badges span {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero-inner {
    width: calc(100vw - 36px);
  }

  .hero-copy,
  .thesis p,
  .section-header > p,
  .archive-heading p {
    font-size: 16px;
  }

  .thesis-copy {
    padding: 24px;
  }

  .work-body,
  .product-showcase-copy,
  .doc-list a,
  .capability-grid > div,
  .identity-copy {
    padding: 22px;
  }

  .logo-card img,
  .identity-logos img {
    padding: 22px;
  }
}
