:root {
  --black: #111111;
  --white: #ffffff;
  --ink: #191919;
  --muted: #747474;
  --line: rgba(17, 17, 17, 0.12);
  --warm: #f5e9e9;
  --green: #f5f8f1;
  --teal: #4ba1a7;
  --coral: #f0756c;
  --paper: #fbfaf7;
  --shadow: 0 26px 80px rgba(17, 17, 17, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(240, 117, 108, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(75, 161, 167, 0.18), transparent 26rem),
    var(--paper);
  font-family: "Work Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1460px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
}

.nav-links a,
.header-email {
  color: rgba(17, 17, 17, 0.68);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.header-email:hover {
  color: var(--black);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  min-width: 54px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.section-shell {
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding-top: 34px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 36px;
  min-height: 690px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(112deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.72) 39%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(135deg, rgba(240, 117, 108, 0.42), rgba(75, 161, 167, 0.26)),
    var(--black);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.34;
  background:
    linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 42% 43%, transparent 43%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 90px);
  pointer-events: none;
}

.hero-signal-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 3;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 790px;
  padding: clamp(38px, 6vw, 86px);
  color: var(--white);
}

.eyebrow,
.section-kicker,
.case-meta,
.timeline time {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

html[lang="zh-CN"] .hero h1 {
  font-size: clamp(56px, 7.2vw, 108px);
  line-height: 0.98;
  text-transform: none;
}

.hero-subtitle {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.btn-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 54px 54px 54px 0;
}

.portrait-orbit {
  position: relative;
  width: min(92%, 500px);
  aspect-ratio: 1;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.portrait-orbit img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.floating-tag {
  position: absolute;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 900;
  padding: 12px 18px;
}

.tag-one {
  top: 21%;
  right: 14%;
}

.tag-two {
  bottom: 24%;
  left: 2%;
}

.tag-three {
  right: 7%;
  bottom: 28%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.proof-strip div {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.18), transparent 12rem),
    var(--black);
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.12);
}

.proof-strip strong {
  display: block;
  overflow-wrap: normal;
  margin-top: 2px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.05;
  white-space: normal;
}

.proof-strip span {
  display: block;
  order: -1;
  min-height: 18px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-strip p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.capabilities,
.work,
.timeline-section,
.belief,
.method,
.about,
.contact {
  padding-top: clamp(72px, 9vw, 128px);
}

.timeline-section,
.belief {
  padding-bottom: clamp(42px, 5vw, 82px);
}

.capabilities {
  position: relative;
  padding-bottom: clamp(92px, 8vw, 140px);
}

.capabilities::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: clamp(20px, 3vw, 42px);
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 17, 17, 0.08), transparent);
  pointer-events: none;
}

.timeline-section,
.belief,
.contact {
  margin-top: clamp(22px, 3vw, 48px);
}

.timeline-section,
.belief {
  border-top: 1px solid rgba(17, 17, 17, 0.045);
}

.capabilities h2,
.section-heading h2,
.belief h2,
.method h2,
.about h2,
.contact h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(36px, 5vw, 78px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.95;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(300px, auto));
  gap: 18px;
  margin-top: 34px;
}

.capability-bento {
  align-items: stretch;
}

.capability-card,
.about-card,
.education-card {
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

.capability-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.capability-card-large {
  grid-row: auto;
  min-height: 300px;
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    radial-gradient(circle at 88% 14%, rgba(75, 161, 167, 0.2), transparent 13rem),
    linear-gradient(135deg, rgba(240, 117, 108, 0.1), transparent 42%);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.capability-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(17, 17, 17, 0.16) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(17, 17, 17, 0.16) 48% 52%, transparent 52%);
  pointer-events: none;
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.11);
}

.capability-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.28), transparent 17rem),
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.88));
}

.capability-card-dark::before {
  opacity: 0.58;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.72) 48%, rgba(17, 17, 17, 0.94) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 88% 10%, rgba(75, 161, 167, 0.34), transparent 14rem),
    radial-gradient(circle at 0% 100%, rgba(240, 117, 108, 0.28), transparent 13rem);
}

.capability-card-dark::after {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.22) 48% 52%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.22) 48% 52%, transparent 52%);
}

.signal-mark {
  position: relative;
  z-index: 1;
  color: rgba(17, 17, 17, 0.12);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 950;
  line-height: 0.75;
}

.capability-card-dark .signal-mark {
  color: rgba(255, 255, 255, 0.16);
}

.capability-signal {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  min-height: 34px;
  align-items: center;
  margin-top: auto;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--warm);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.capability-card:nth-child(2) .capability-signal {
  background: var(--green);
}

.capability-card:nth-child(3) .capability-signal {
  background: rgba(75, 161, 167, 0.16);
}

.capability-card-market::before {
  opacity: 0.36;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.76) 52%, rgba(255, 255, 255, 0.96) 100%),
    url("../assets/fiverr-market.jpeg") right bottom / 112% auto no-repeat,
    radial-gradient(circle at 88% 14%, rgba(75, 161, 167, 0.16), transparent 13rem),
    linear-gradient(135deg, rgba(240, 117, 108, 0.1), transparent 42%);
}

.capability-card-commerce .capability-signal {
  background: rgba(75, 161, 167, 0.16);
}

.capability-card-commerce::before {
  opacity: 0.32;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.96) 100%),
    url("../assets/wegic-pricing.jpeg") right bottom / 118% auto no-repeat,
    radial-gradient(circle at 88% 14%, rgba(75, 161, 167, 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(240, 117, 108, 0.08), transparent 42%);
}

.capability-card-dark .capability-signal {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.capability-card h3,
.work-panel h3,
.timeline h3,
.education-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.05;
}

.capability-card h3,
.capability-card p,
.capability-proof,
.capability-evidence {
  position: relative;
  z-index: 1;
}

.capability-card h3 {
  margin-top: 22px;
}

.capability-card p,
.work-panel p,
.section-heading p,
.timeline p,
.about p,
.contact p,
.education-card span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.capability-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.capability-proof {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.capability-card-dark .capability-proof {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
}

.capability-evidence {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
}

.capability-evidence strong {
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 950;
  line-height: 0.9;
}

.capability-evidence span {
  color: rgba(17, 17, 17, 0.58);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.45;
}

.capability-card-dark .capability-evidence {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(10px);
}

.capability-card-dark .capability-evidence span {
  color: rgba(255, 255, 255, 0.66);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 430px;
  margin: 0;
}

.work-showcase {
  --work-card-radius: 36px;
  --work-card-width: min(1400px, calc(100% - 48px));
  --work-card-height: 100%;
  position: relative;
  width: 100%;
  margin: clamp(16px, 2.4vw, 38px) 0 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 117, 108, 0.18), transparent 26rem),
    radial-gradient(circle at 92% 10%, rgba(75, 161, 167, 0.2), transparent 32rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 250, 247, 0) 36%),
    var(--paper);
}

.work-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: clamp(86px, 10vw, 150px);
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(251, 250, 247, 0.5) 46%, transparent),
    radial-gradient(ellipse at 18% 0%, rgba(240, 117, 108, 0.14), transparent 48%),
    radial-gradient(ellipse at 86% 0%, rgba(75, 161, 167, 0.14), transparent 54%);
  pointer-events: none;
}

.work-pin {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: transparent;
}

.work-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  padding: clamp(14px, 1.8vw, 24px) 0 clamp(14px, 1.8vh, 24px);
}

.deck-hud {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: clamp(10px, 1.4vh, 14px) auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.deck-hud::before {
  display: none;
}

.deck-hud-kicker {
  display: inline-flex;
  color: rgba(17, 17, 17, 0.42);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.deck-hud-main {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.deck-hud-main [data-deck-label] {
  max-width: min(300px, 28vw);
  overflow: hidden;
  text-overflow: ellipsis;
}

.deck-hud-main [data-deck-current] {
  color: var(--black);
  font-size: 15px;
  letter-spacing: 0;
}

.deck-hud-bar {
  position: relative;
  flex: 0 0 clamp(88px, 10vw, 136px);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
}

.deck-hud-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), rgba(75, 161, 167, 0.92));
}

.mobile-stack-indicator {
  display: grid;
  grid-template-columns: auto minmax(64px, 92px) auto;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 14px auto 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(17, 17, 17, 0.66);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(14px);
}

.mobile-stack-count,
.mobile-stack-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-stack-count [data-mobile-current] {
  color: var(--black);
}

.mobile-stack-progress {
  position: relative;
  display: block;
  width: 88px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.13);
}

.mobile-stack-progress span {
  display: block;
  width: 6%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), rgba(75, 161, 167, 0.9));
  transition: width 180ms ease;
}

.work-heading {
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto clamp(8px, 1vw, 12px);
}

.work-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 0.94;
}

.case-track {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: var(--work-card-width);
  height: clamp(560px, 66vh, 700px);
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  transform: none !important;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.case-track::-webkit-scrollbar {
  display: none;
}

.work-panel {
  --accent: rgba(75, 161, 167, 0.78);
  --next-peek: 0;
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(620px, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--work-card-radius);
  padding: clamp(24px, 2.8vw, 46px);
  opacity: 1;
  transform-origin: center center;
  transition: border-color 260ms ease;
  background:
    radial-gradient(circle at 82% 18%, rgba(75, 161, 167, 0.2), transparent 26rem),
    radial-gradient(circle at 12% 86%, rgba(240, 117, 108, 0.16), transparent 24rem),
    #101211;
  box-shadow: none;
  will-change: transform, opacity, filter;
}

.work-panel::before {
  content: "";
  position: absolute;
  left: clamp(28px, 4vw, 66px);
  right: clamp(28px, 4vw, 66px);
  bottom: -13px;
  z-index: -1;
  height: 24px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(90deg, rgba(240, 117, 108, 0.3), rgba(75, 161, 167, 0.32));
  filter: blur(2px);
  opacity: var(--next-peek);
  transform: translateY(calc(10px * (1 - var(--next-peek))));
  transition: none;
  pointer-events: none;
}

.work-panel.is-active {
  border-color: rgba(255, 255, 255, 0.2);
}

.work-panel.is-active:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.work-showcase.is-resizing-work .work-panel,
.work-showcase.is-resizing-work .panel-media,
.work-showcase.is-resizing-work .panel-media img {
  transition: none !important;
}

.work-panel:nth-child(1) {
  --accent: rgba(240, 117, 108, 0.86);
  grid-template-columns: minmax(250px, 0.38fr) minmax(640px, 1fr);
  gap: clamp(24px, 3.4vw, 52px);
  padding: clamp(24px, 2.8vw, 46px);
}

.work-panel:nth-child(2) {
  --accent: rgba(75, 161, 167, 0.78);
  background:
    radial-gradient(circle at 92% 12%, rgba(75, 161, 167, 0.34), transparent 28rem),
    linear-gradient(135deg, #0f1212, #1d2b2b);
}

.work-panel:nth-child(3) {
  --accent: rgba(240, 117, 108, 0.78);
  background:
    radial-gradient(circle at 14% 12%, rgba(240, 117, 108, 0.22), transparent 28rem),
    linear-gradient(135deg, #111111, #202726);
}

.work-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

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

.work-panel.is-active {
  --panel-active: 1;
}

.panel-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-top: 16px;
  transform: none;
  transition: transform 360ms ease;
}

.panel-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--accent));
}

.work-panel h3 {
  max-width: 460px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.work-panel:nth-child(1) h3 {
  font-size: clamp(30px, 3.5vw, 54px);
}

.panel-summary {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.5;
}

.work-panel .case-links a {
  color: rgba(255, 255, 255, 0.9);
}

.work-panel .chips span {
  color: var(--black);
  background: rgba(245, 248, 241, 0.9);
}

.panel-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #101211;
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.24);
  transform: none;
  transition: transform 360ms ease;
}

.panel-media::before,
.panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.panel-media::before {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 9, 9, 0.08), rgba(8, 9, 9, 0.12)),
    var(--media-image) center / cover no-repeat;
  filter: blur(24px) saturate(0.86) brightness(0.62) contrast(0.95);
  opacity: 0.52;
  transform: scale(1.08);
}

.panel-media::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, 0.08), transparent 16%, transparent 84%, rgba(8, 9, 9, 0.08)),
    linear-gradient(180deg, rgba(8, 9, 9, 0.08), transparent 22%, transparent 78%, rgba(8, 9, 9, 0.08));
}

.work-panel:not(:nth-child(1)) .panel-media {
  order: 0;
  min-height: 310px;
}

.panel-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 600ms ease, opacity 300ms ease;
}

.work-panel:nth-child(1) .panel-media img {
  object-fit: contain;
  object-position: center;
  padding: 0;
  background: transparent;
}

.work-panel.is-active .panel-media img,
.work-panel:hover .panel-media img {
  opacity: 1;
  transform: scale(1.012);
}

.work-showcase:not(.is-mobile-stack) .panel-media {
  align-self: center;
  justify-self: end;
  width: 100%;
  height: clamp(460px, 72%, 600px);
  min-height: 0;
  aspect-ratio: auto;
}

.work-showcase:not(.is-mobile-stack) .panel-media img,
.work-showcase:not(.is-mobile-stack) .work-panel:nth-child(1) .panel-media img,
.work-showcase:not(.is-mobile-stack) .work-panel:not(:nth-child(1)) .panel-media img {
  object-fit: cover;
  object-position: center;
}

.work-showcase:not(.is-mobile-stack) .work-panel:nth-child(1) .panel-media img {
  object-position: center 48%;
}

.work-showcase:not(.is-mobile-stack) .work-panel:nth-child(2) .panel-media img {
  object-position: center 50%;
}

.work-showcase:not(.is-mobile-stack) .work-panel:nth-child(3) .panel-media img {
  object-position: center 50%;
}

.work-showcase.is-static-deck {
  padding: clamp(88px, 8vw, 128px) 0 clamp(82px, 8vw, 118px);
}

.work-showcase.is-static-deck .work-pin,
.work-showcase.is-static-deck .work-stage {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.work-showcase.is-static-deck .work-stage {
  display: block;
  padding: 0;
}

.work-showcase.is-static-deck .work-heading {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.work-showcase.is-static-deck .case-track {
  display: grid;
  gap: clamp(18px, 2.6vw, 34px);
  height: auto;
  min-height: 0;
  perspective: none;
}

.work-showcase.is-static-deck .work-panel {
  position: relative;
  inset: auto;
  height: auto;
  min-height: clamp(520px, 68vh, 720px);
}

.work-showcase.is-static-deck .deck-hud {
  display: none;
}

.chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--black);
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.case-links {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 0;
}

.case-links a {
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}


.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 6px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 239px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.2) 10%, rgba(17, 17, 17, 0.2) 90%, transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
  position: sticky;
  top: 104px;
  display: flex;
  justify-content: flex-end;
  min-height: 42px;
  padding-top: 14px;
}

.timeline-dot {
  position: absolute;
  top: 22px;
  right: -28px;
  z-index: 2;
  width: 19px;
  height: 19px;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.1), 0 12px 28px rgba(240, 117, 108, 0.36);
}

.timeline time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.timeline-card {
  position: relative;
  overflow: hidden;
  min-height: 166px;
  padding: 24px 26px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.07);
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -70% 52%;
  height: 150px;
  border-radius: 50%;
  background: rgba(75, 161, 167, 0.14);
  filter: blur(24px);
  pointer-events: none;
}

.timeline-item.is-featured .timeline-card {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.34), transparent 21rem),
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.86));
  border-color: rgba(255, 255, 255, 0.14);
}

.timeline-item.is-brief {
  opacity: 1;
}

.timeline-item.is-brief .timeline-card {
  min-height: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.045);
}

.timeline-item.is-brief .timeline-dot {
  background: rgba(17, 17, 17, 0.34);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.06);
}

.timeline-item.is-brief .role-pill {
  color: rgba(17, 17, 17, 0.56);
  background: rgba(17, 17, 17, 0.055);
}

.timeline-item.is-brief .timeline-card-top {
  margin-bottom: 10px;
}

.timeline-item.is-brief .role-index {
  font-size: 36px;
  color: rgba(17, 17, 17, 0.07);
}

.timeline-item.is-brief h3 {
  font-size: clamp(19px, 1.8vw, 26px);
  margin-bottom: 6px;
}

.timeline-item.is-brief p {
  max-width: 720px;
  font-size: 14px;
  line-height: 1.5;
}

.timeline-item.is-status {
  gap: 38px;
  margin-bottom: -2px;
}

.timeline-item.is-status .timeline-marker {
  min-height: 26px;
  padding-top: 4px;
}

.timeline-item.is-status .timeline-dot {
  top: 13px;
  right: -24px;
  width: 11px;
  height: 11px;
  border-width: 3px;
  background: rgba(17, 17, 17, 0.18);
  box-shadow: none;
}

.timeline-item.is-status time {
  min-height: 28px;
  padding: 0 10px;
  color: rgba(17, 17, 17, 0.36);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  font-size: 11px;
}

.timeline-status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  max-width: 760px;
  padding: 0 2px;
  color: rgba(17, 17, 17, 0.46);
}

.timeline-status-line span {
  color: rgba(17, 17, 17, 0.42);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.timeline-status-line p {
  margin: 0;
  color: rgba(17, 17, 17, 0.46);
  font-size: 13px;
  line-height: 1.45;
}

.timeline-item.is-featured .timeline-dot {
  background: var(--teal);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.1), 0 12px 28px rgba(75, 161, 167, 0.36);
}

.timeline-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.role-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--black);
  background: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item.is-featured .role-pill {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.role-index {
  color: rgba(17, 17, 17, 0.12);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 950;
  line-height: 0.8;
}

.timeline-item.is-featured .role-index {
  color: rgba(255, 255, 255, 0.14);
}

.timeline h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: clamp(22px, 2.3vw, 34px);
}

.timeline p {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0;
}

.timeline-item.is-featured p {
  color: rgba(255, 255, 255, 0.68);
}

.belief {
  overflow: hidden;
}

.belief-pin {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(18px, 2.4vw, 28px);
  perspective: 1400px;
  transform-style: preserve-3d;
}

.belief-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.belief-heading h2 {
  max-width: 1180px;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 0.98;
}

.belief-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(158px, auto);
  gap: 14px;
  min-height: 0;
  height: auto;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(240, 117, 108, 0.2), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(75, 161, 167, 0.24), transparent 26rem),
    linear-gradient(135deg, #171412 0%, #111819 55%, #0c0c0b 100%);
  background-size: 86px 86px, 86px 86px, auto, auto;
  box-shadow: none;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.belief-board::before,
.belief-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.belief-board::before {
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 84px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.2));
  mix-blend-mode: screen;
}

.belief-board::after {
  inset: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, transparent 42%, rgba(0, 0, 0, 0.24) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 5px);
  opacity: 0.52;
}

.belief-tile {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(20px, 2.3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 241, 239, 0.82)),
    radial-gradient(circle at 88% 10%, rgba(75, 161, 167, 0.22), transparent 12rem);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
  transform-origin: center center;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    box-shadow 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
  will-change: transform, opacity, filter;
}

.belief-tile:hover {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
  transform: translate3d(0, -4px, 0) rotateX(0) rotateY(0) scale(1.006);
}

.belief-board.is-forming-belief .belief-tile,
.belief-board.is-forming-belief .belief-tile:hover {
  box-shadow: none;
}

.belief-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(75, 161, 167, 0.2), transparent 12rem),
    linear-gradient(135deg, rgba(240, 117, 108, 0.12), transparent 48%);
  pointer-events: none;
}

.belief-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 35%, transparent 42%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.2;
  pointer-events: none;
}

.belief-meta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.belief-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(17, 17, 17, 0.82);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
}

.belief-tile span,
.belief-tile h3,
.belief-tile p,
.belief-copy,
.belief-tile small {
  position: relative;
  z-index: 1;
}

.belief-tile span {
  color: rgba(17, 17, 17, 0.46);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.belief-tile p {
  margin: 0;
  color: rgba(17, 17, 17, 0.74);
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 950;
  line-height: 1.05;
}

.belief-copy {
  display: grid;
  gap: 10px;
}

.belief-tile:not(.belief-tile-hero):not(.belief-tile-education) h3 {
  margin: 0;
  color: rgba(17, 17, 17, 0.86);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 950;
  line-height: 1.02;
}

.belief-tile:not(.belief-tile-hero):not(.belief-tile-education) p {
  max-width: 21em;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 760;
  line-height: 1.48;
}

.belief-tile-hero {
  grid-column: 1 / span 6;
  grid-row: 1 / span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 4%, rgba(75, 161, 167, 0.34), transparent 24rem),
    radial-gradient(circle at 0% 100%, rgba(240, 117, 108, 0.26), transparent 22rem),
    linear-gradient(135deg, #2d211f 0%, #121818 48%, #070807 100%);
}

.belief-tile-hero::before,
.belief-tile-dark::before {
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.belief-tile-hero h3 {
  max-width: 820px;
  margin: auto 0 16px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
}

.belief-tile-hero p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 750;
  line-height: 1.46;
}

.belief-tile-hero span,
.belief-tile-dark span {
  color: rgba(255, 255, 255, 0.52);
}

.belief-tile-hero .belief-icon,
.belief-tile-dark .belief-icon {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.belief-tile-wide {
  grid-column: 7 / span 3;
  grid-row: 1;
}

.belief-tile-accent {
  grid-column: 10 / span 3;
  grid-row: 1;
  background:
    radial-gradient(circle at 86% 16%, rgba(240, 117, 108, 0.28), transparent 13rem),
    linear-gradient(135deg, rgba(255, 235, 231, 0.94), rgba(231, 240, 238, 0.86));
}

.belief-tile-ship {
  grid-column: 7 / span 3;
  grid-row: 2;
}

.belief-tile-dark {
  grid-column: 10 / span 3;
  grid-row: 2;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.28), transparent 18rem),
    linear-gradient(135deg, #0c0d0c 0%, #101918 58%, #070807 100%);
}

.belief-tile-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.belief-tile-dark h3 {
  color: var(--white);
}

.belief-tile.belief-tile-dark h3 {
  color: rgba(255, 255, 255, 0.96);
}

.belief-tile.belief-tile-dark p {
  color: rgba(255, 255, 255, 0.66);
}

.belief-tile-education {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  background:
    radial-gradient(circle at 84% 4%, rgba(75, 161, 167, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 235, 231, 0.92), rgba(247, 241, 236, 0.84));
}

.belief-tile-education p {
  display: grid;
  gap: 7px;
  font-size: 18px;
  line-height: 1.25;
}

.belief-tile-education strong {
  font-size: clamp(22px, 2.2vw, 34px);
}

.belief-tile-education small {
  color: rgba(17, 17, 17, 0.56);
  font-size: 14px;
  font-weight: 800;
}

.method-card,
.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  padding: clamp(34px, 6vw, 74px);
}

.method-card .section-kicker,
.contact-card .section-kicker {
  color: var(--teal);
}

.manifesto {
  display: grid;
  gap: 14px;
}

.manifesto p {
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(21px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.about-card,
.education-card {
  padding: clamp(30px, 4vw, 54px);
}

.about p {
  max-width: 820px;
}

.education-card {
  background: var(--warm);
}

.education-card p {
  display: grid;
  gap: 7px;
  margin: 26px 0 0;
}

.education-card strong {
  font-size: 22px;
}

.contact {
  padding-top: clamp(84px, 10vw, 150px);
  padding-bottom: 86px;
}

.contact-heading {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(26px, 4vw, 54px);
}

.contact-heading .section-kicker {
  grid-column: auto;
}

.contact-heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--black);
  font-size: clamp(48px, 6.8vw, 112px);
  line-height: 0.9;
}

.contact-note {
  max-width: 760px;
  margin: 0;
  padding: 0 0 clamp(20px, 2.4vw, 34px) 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 760;
  line-height: 1.58;
}

.contact-outro {
  position: relative;
  display: grid;
  gap: clamp(42px, 6vw, 86px);
  overflow: hidden;
  min-height: 0;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(240, 117, 108, 0.26), transparent 30rem),
    radial-gradient(circle at 86% 12%, rgba(75, 161, 167, 0.28), transparent 34rem),
    linear-gradient(135deg, #17100f 0%, #101817 52%, #070807 100%);
  background-size: 84px 84px, 84px 84px, auto, auto, auto;
  box-shadow: 0 42px 120px rgba(17, 17, 17, 0.18);
}

.contact-outro::before,
.contact-outro::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-outro::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 38%, rgba(0, 0, 0, 0.24) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 5px);
  opacity: 0.55;
}

.contact-outro::after {
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 58px);
  width: clamp(120px, 14vw, 220px);
  height: clamp(120px, 14vw, 220px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.28fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
}

.contact-menu {
  display: grid;
  align-content: start;
}

.contact-menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 34px);
  align-items: center;
  overflow: hidden;
  min-height: clamp(78px, 8.6vh, 108px);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  isolation: isolate;
}

.contact-menu-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 50%, rgba(240, 117, 108, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0;
  transform: translateX(-12%);
  transition: opacity 260ms ease, transform 360ms ease;
}

.contact-menu-item:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.contact-menu-index {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.contact-menu-track {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  width: max-content;
  min-width: 100%;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(32px, 4.9vw, 74px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  white-space: nowrap;
  transform: translateX(0);
}

.contact-menu-track span {
  display: block;
  min-width: max-content;
  padding-right: clamp(28px, 4vw, 64px);
}

.contact-menu-item:hover .contact-menu-track {
  animation: contact-marquee 5.4s linear infinite;
}

.contact-menu-item.is-primary .contact-menu-track {
  color: #ffe5df;
}

@keyframes contact-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(14px, 2vw, 32px)));
  }
}

.contact-pass {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 430px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(75, 161, 167, 0.28), transparent 17rem),
    rgba(255, 255, 255, 0.045);
  background-size: 38px 100%, auto, auto;
  backdrop-filter: blur(14px);
}

.contact-pass span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.contact-pass img {
  width: min(210px, 86%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 9px solid rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

.contact-pass p {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  text-align: center;
}

.contact-pass strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1460px, calc(100% - 40px));
  margin: 0 auto 34px;
  color: var(--muted);
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(10px);
}

.wechat-modal[hidden] {
  display: none;
}

.wechat-panel {
  position: relative;
  width: min(460px, 100%);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
}

.wechat-panel h2 {
  margin: 4px 0 18px;
  font-size: 34px;
}

.wechat-panel img {
  width: min(100%, 340px);
  border-radius: 18px;
}

.wechat-panel p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  transform: translateX(-50%);
  border-radius: 999px;
  color: var(--white);
  background: var(--black);
  box-shadow: var(--shadow);
  padding: 12px 18px;
  font-weight: 800;
}

.toast[hidden] {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero-card,
  .method-card,
  .contact-card,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-outro {
    min-height: auto;
  }

  .contact-pass {
    min-height: 360px;
  }

  .belief-pin {
    min-height: auto;
    justify-content: start;
  }

  .belief-heading h2 {
    font-size: clamp(46px, 9vw, 82px);
  }

  .belief-board {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    height: auto;
    min-height: 0;
  }

  .belief-tile,
  .belief-tile-hero,
  .belief-tile-wide,
  .belief-tile-accent,
  .belief-tile-dark,
  .belief-tile-education {
    grid-column: auto;
    grid-row: auto;
  }

  .belief-tile-hero {
    grid-column: 1 / -1;
    min-height: 520px;
  }

  .belief-tile-education {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .belief-tile-education span {
    grid-column: 1 / -1;
  }

  .hero-visual {
    min-height: auto;
    padding: 0 34px 50px;
  }

  .portrait-orbit {
    width: min(520px, 90%);
  }

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

  .case-track {
    width: min(100% - 40px, 980px);
    padding-bottom: 0;
  }

  .work-panel,
  .work-panel:nth-child(2),
  .work-panel:nth-child(3) {
    position: relative;
    top: auto;
    width: 100%;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .work-panel:nth-child(1) {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
  }

  .panel-media {
    min-height: 360px;
  }

  .work-panel:not(:nth-child(1)) .panel-media {
    order: -1;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .case-track {
    position: relative;
    display: block;
    width: min(100% - 40px, 980px);
    height: clamp(540px, 64vh, 660px);
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    perspective: 1200px;
    transform-style: preserve-3d;
  }

  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .work-panel,
  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .work-panel:nth-child(1),
  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .work-panel:nth-child(2),
  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .work-panel:nth-child(3) {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(230px, 0.36fr) minmax(0, 0.64fr);
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    gap: clamp(18px, 3vw, 34px);
    padding: clamp(22px, 2.8vw, 34px);
  }

  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .panel-media {
    order: 0;
    min-height: 0;
    align-self: center;
    height: clamp(390px, 72%, 500px);
    aspect-ratio: auto;
  }
}

@media (min-width: 1081px) and (max-width: 1280px) {
  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .case-track {
    height: clamp(560px, 65vh, 690px);
  }

  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .panel-media {
    height: clamp(430px, 72%, 540px);
  }
}

@media (min-width: 1281px) {
  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .case-track {
    height: clamp(580px, 66vh, 700px);
  }

  .work-showcase:not(.is-static-deck):not(.is-mobile-stack) .panel-media {
    height: clamp(450px, 72%, 560px);
  }
}


@media (min-width: 821px) and (max-width: 1180px) {
  .work-showcase.is-static-deck {
    padding: 0;
  }

  .work-showcase.is-mobile-stack {
    height: var(--mobile-stack-height, 290svh) !important;
    min-height: var(--mobile-stack-height, 290svh);
    padding: 0;
    overflow: visible;
  }

  .work-showcase.is-mobile-stack .work-pin {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: block;
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .work-showcase.is-mobile-stack.is-mobile-pinned .work-pin {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 4;
  }

  .work-showcase.is-mobile-stack.is-mobile-released .work-pin {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .work-showcase.is-mobile-stack .work-stage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100svh;
    min-height: 100svh;
    padding: clamp(20px, 2.6vw, 34px) 0 clamp(22px, 3vw, 38px);
  }

  .work-showcase.is-mobile-stack .work-heading {
    width: min(100% - 56px, 1040px);
    margin: 0 auto clamp(14px, 2vw, 22px);
  }

  .work-showcase.is-mobile-stack .work-heading h2 {
    font-size: clamp(46px, 7.2vw, 76px);
    line-height: 0.96;
  }

  .work-showcase.is-mobile-stack .case-track {
    position: relative;
    display: block;
    width: min(100% - 56px, 1040px);
    height: clamp(520px, calc(100svh - 176px), 660px);
    min-height: 0;
    margin: 0 auto;
    overflow: visible;
    perspective: 1100px;
    transform: none !important;
  }

  .work-showcase.is-mobile-stack .work-panel,
  .work-showcase.is-mobile-stack .work-panel:nth-child(1),
  .work-showcase.is-mobile-stack .work-panel:nth-child(2),
  .work-showcase.is-mobile-stack .work-panel:nth-child(3) {
    position: absolute;
    inset: 0 auto auto 50%;
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
    gap: clamp(18px, 2.4vw, 30px);
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: clamp(20px, 2.8vw, 32px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    color: var(--white);
    background:
      radial-gradient(circle at 82% 18%, rgba(75, 161, 167, 0.22), transparent 24rem),
      radial-gradient(circle at 10% 92%, rgba(240, 117, 108, 0.18), transparent 22rem),
      #101211;
    box-shadow: 0 28px 80px rgba(17, 17, 17, 0.18);
    transform: translateX(-50%);
    transform-origin: center center;
    transition:
      transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 220ms ease,
      filter 220ms ease;
    will-change: transform, opacity, filter;
  }

  .work-showcase.is-mobile-stack .panel-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: none;
    min-height: 0;
    padding: 0;
  }

  .work-showcase.is-mobile-stack .panel-copy::before {
    top: 0;
    width: 44px;
    height: 3px;
  }

  .work-showcase.is-mobile-stack .case-meta {
    color: rgba(255, 255, 255, 0.46);
    font-size: clamp(10px, 1.25vw, 12px);
  }

  .work-showcase.is-mobile-stack .work-panel h3,
  .work-showcase.is-mobile-stack .work-panel:nth-child(1) h3 {
    max-width: 7.8em;
    color: var(--white);
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1;
  }

  .work-showcase.is-mobile-stack .panel-summary {
    display: -webkit-box;
    max-width: 24em;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }

  .work-showcase.is-mobile-stack .chips {
    gap: 8px;
    margin-top: 16px;
  }

  .work-showcase.is-mobile-stack .chips span {
    color: var(--black);
    background: rgba(245, 248, 241, 0.92);
  }

  .work-showcase.is-mobile-stack .case-links {
    margin-top: 18px;
  }

  .work-showcase.is-mobile-stack .case-links a {
    color: rgba(255, 255, 255, 0.92);
  }

  .work-showcase.is-mobile-stack .panel-media {
    align-self: stretch;
    order: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  }

  .work-showcase.is-mobile-stack .panel-media img,
  .work-showcase.is-mobile-stack .work-panel:nth-child(1) .panel-media img,
  .work-showcase.is-mobile-stack .work-panel:not(:nth-child(1)) .panel-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transform: none !important;
  }

  .work-showcase.is-mobile-stack .deck-hud {
    display: none;
  }

  .work-showcase.is-mobile-stack .mobile-stack-indicator {
    margin-top: clamp(12px, 1.8vw, 18px);
  }
}

@media (max-width: 820px) {
  .header-email {
    display: none;
  }

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

  .hero h1 {
    font-size: clamp(58px, 19vw, 92px);
  }

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

  .proof-strip {
    position: relative;
    display: block;
    margin-top: 18px;
    padding: 6px 0 4px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  }

  .proof-strip::before {
    content: "";
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 14px;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(17, 17, 17, 0),
      rgba(17, 17, 17, 0.18),
      rgba(17, 17, 17, 0)
    );
  }

  .proof-strip div {
    position: relative;
    display: block;
    min-height: 0;
    padding: 18px 0 18px 42px;
    border: 0;
    border-radius: 0;
    color: var(--black);
    background: none;
    box-shadow: none;
    opacity: 0.38;
    transform: translateY(10px);
    transition:
      opacity 0.38s ease,
      transform 0.38s ease;
  }

  .proof-strip div::before {
    content: "";
    position: absolute;
    top: 27px;
    left: 9px;
    width: 11px;
    height: 11px;
    border: 1px solid rgba(17, 17, 17, 0.22);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.06);
    box-shadow: 0 0 0 7px rgba(17, 17, 17, 0.035);
    transition:
      border-color 0.38s ease,
      background 0.38s ease,
      box-shadow 0.38s ease;
  }

  .proof-strip div::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 42px;
    height: 1px;
    background: rgba(17, 17, 17, 0.06);
  }

  .proof-strip div:last-child::after {
    display: none;
  }

  .proof-strip div.is-active {
    opacity: 1;
    transform: translateY(0);
  }

  .proof-strip div.is-active::before {
    border-color: rgba(239, 117, 109, 0.96);
    background: linear-gradient(135deg, #ef756d, #77bec0);
    box-shadow: 0 0 0 8px rgba(239, 117, 109, 0.12);
  }

  .proof-strip strong {
    max-width: 9em;
    margin: 0;
    color: var(--black);
    font-size: clamp(28px, 8vw, 38px);
    line-height: 0.98;
  }

  .proof-strip span {
    min-height: 0;
    margin: 0 0 10px;
    color: rgba(17, 17, 17, 0.46);
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .proof-strip p {
    max-width: 28em;
    margin: 12px 0 0;
    color: rgba(17, 17, 17, 0.52);
    font-size: 14px;
    line-height: 1.55;
  }

  .proof-strip div.is-active p {
    color: rgba(17, 17, 17, 0.72);
  }

  .work-showcase {
    height: auto !important;
    padding: 72px 0 50px;
    overflow: hidden;
  }

  .work-pin {
    position: relative;
    display: block;
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .work-stage {
    display: block;
    height: auto;
    padding: 0;
  }

  .work-heading {
    position: relative;
    top: auto;
    left: auto;
    width: min(100% - 40px, 620px);
    margin: 0 auto;
    margin-bottom: 20px;
    transform: none;
    pointer-events: auto;
  }

  .work-showcase.is-static-deck .case-track,
  .case-track {
    display: grid;
    gap: 14px;
    width: min(100% - 40px, 620px);
    margin: 0 auto;
    padding: 0;
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
    transform: none !important;
  }

  .work-showcase.is-static-deck .work-panel,
  .work-panel,
  .work-panel:nth-child(1),
  .work-panel:nth-child(2),
  .work-panel:nth-child(3) {
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    scroll-snap-align: center;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.12);
    padding: 8px;
    color: var(--black);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 245, 241, 0.88)),
      var(--paper);
  }

  .work-showcase.is-mobile-stack .case-track {
    position: relative;
    display: block;
    width: min(100% - 34px, 390px);
    height: clamp(450px, calc(100svh - 210px), 560px);
    min-height: 0;
    max-height: none;
    padding: 0;
    overflow: visible;
    perspective: 1000px;
    perspective-origin: center 60%;
    touch-action: pan-y;
  }

  .work-showcase.is-mobile-stack {
    height: var(--mobile-stack-height, 325svh) !important;
    min-height: var(--mobile-stack-height, 325svh);
    padding: 0;
    overflow: visible;
  }

  .work-showcase.is-mobile-stack .work-pin {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: block;
    min-height: 100svh;
    height: 100svh;
    overflow: hidden;
  }

  .work-showcase.is-mobile-stack.is-mobile-pinned .work-pin {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
  }

  .work-showcase.is-mobile-stack.is-mobile-released .work-pin {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .work-showcase.is-mobile-stack .work-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    height: 100svh;
    padding: 22px 0 24px;
  }

  .work-showcase.is-mobile-stack .work-panel,
  .work-showcase.is-mobile-stack .work-panel:nth-child(1),
  .work-showcase.is-mobile-stack .work-panel:nth-child(2),
  .work-showcase.is-mobile-stack .work-panel:nth-child(3) {
    position: absolute;
    inset: 0 auto auto 50%;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 26px;
    padding: 8px;
    transform: translateX(-50%);
    transform-origin: center center;
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease,
      filter 180ms ease,
      border-color 220ms ease;
    will-change: transform, opacity, filter;
  }

  .work-showcase.is-mobile-stack .work-panel.is-active {
    border-color: rgba(17, 17, 17, 0.16);
  }

  .work-panel::before,
  .work-panel::after {
    display: none;
  }

  .work-showcase.is-static-deck .panel-media,
  .panel-media {
    min-height: 0;
    aspect-ratio: 16 / 10.5;
    order: -1;
    margin: 0;
    border: 0;
    border-radius: 18px;
    box-shadow: none;
    background: rgba(17, 17, 17, 0.06);
  }

  .work-showcase.is-mobile-stack .panel-media {
    flex: 0 0 42%;
    width: 100%;
    aspect-ratio: auto;
  }

  .work-showcase.is-static-deck .panel-media img,
  .panel-media img {
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    transform: none !important;
  }

  .work-panel:nth-child(1) .panel-media img,
  .work-panel:not(:nth-child(1)) .panel-media img {
    object-fit: cover;
    object-position: center;
  }

  .panel-copy {
    display: grid;
    max-width: none;
    min-height: 252px;
    padding: 18px 10px 10px;
  }

  .work-showcase.is-mobile-stack .panel-copy {
    flex: 1 1 auto;
    min-height: 0;
    padding: 16px 12px 12px;
  }

  .panel-copy::before {
    top: 8px;
    width: 34px;
    height: 3px;
  }

  .case-meta {
    color: rgba(17, 17, 17, 0.46);
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .work-panel h3,
  .work-panel:nth-child(1) h3 {
    max-width: none;
    color: var(--black);
    font-size: clamp(24px, 8.2vw, 34px);
    line-height: 0.98;
  }

  .panel-summary {
    display: none;
    margin-top: 10px;
    color: rgba(17, 17, 17, 0.58);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .work-panel .chips {
    gap: 7px;
    margin-top: 12px;
  }

  .work-panel .chips span {
    color: var(--black);
    background: rgba(17, 17, 17, 0.06);
  }

  .work-panel .chips span:nth-child(n + 3) {
    display: inline-flex;
  }

  .work-panel .case-links {
    align-self: end;
    margin-top: 16px;
  }

  .work-panel .case-links a {
    color: var(--black);
  }

  .work-panel .case-links a:nth-child(n + 2) {
    display: none;
  }

  .deck-hud {
    display: none;
  }

  .mobile-stack-dots {
    display: none;
  }

  .mobile-stack-indicator {
    display: grid;
    grid-template-columns: auto minmax(64px, 92px) auto;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: calc(100% - 40px);
    margin: 14px auto 0;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    padding: 9px 13px;
    color: rgba(17, 17, 17, 0.66);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(14px);
  }

  .mobile-stack-count,
  .mobile-stack-hint {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-stack-count [data-mobile-current] {
    color: var(--black);
  }

  .mobile-stack-progress {
    position: relative;
    display: block;
    width: 88px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.13);
  }

  .mobile-stack-progress span {
    display: block;
    width: 33.333%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--coral), rgba(75, 161, 167, 0.9));
    transition: width 180ms ease;
  }

  .capability-grid {
    grid-template-rows: none;
  }

  .belief-heading h2 {
    max-width: 9em;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .belief-board {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 28px;
    background:
      radial-gradient(circle at 0% 0%, rgba(240, 117, 108, 0.16), transparent 18rem),
      radial-gradient(circle at 100% 10%, rgba(75, 161, 167, 0.2), transparent 18rem),
      linear-gradient(145deg, #171412 0%, #111918 54%, #080908 100%);
    background-size: auto;
  }

  .belief-tile,
  .belief-tile-hero,
  .belief-tile-education {
    min-height: 0;
    grid-column: 1;
    padding: 18px;
    border-radius: 20px;
  }

  .belief-tile-hero {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 22px 20px 20px;
    border-color: rgba(255, 255, 255, 0.14);
  }

  .belief-tile-hero h3 {
    margin: 28px 0 0;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.04;
  }

  .belief-tile-hero p {
    max-width: none;
    font-size: 13px;
    line-height: 1.48;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 16px 17px;
    border-color: rgba(255, 255, 255, 0.11);
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education)::after {
    opacity: 0.08;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) span {
    display: grid;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.055);
    font-size: 10px;
    line-height: 1.15;
    letter-spacing: 0.1em;
    text-align: center;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 5.6vw, 22px);
    line-height: 1.12;
  }

  .belief-tile-education {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    border-color: rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(135deg, rgba(255, 235, 231, 0.12), rgba(75, 161, 167, 0.08)),
      rgba(255, 255, 255, 0.045);
  }

  .belief-tile-education p {
    gap: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
  }

  .belief-tile-education strong {
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
  }

  .belief-tile-education small {
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
  }

  .capability-card-large {
    grid-row: auto;
    min-height: 330px;
  }

  .proof-strip {
    margin-top: 16px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 36px;
  }

  .timeline-item.is-status {
    gap: 4px;
    margin-bottom: 2px;
  }

  .timeline-marker {
    position: relative;
    top: auto;
    justify-content: flex-start;
    padding-top: 0;
  }

  .timeline-dot {
    left: -30px;
    right: auto;
    top: 12px;
  }

  .timeline-item.is-status .timeline-dot {
    left: -26px;
    right: auto;
    top: 9px;
  }

  .timeline-status-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    min-height: 0;
  }

  .timeline-card {
    min-height: 0;
  }

  .footer {
    display: block;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section-shell,
  .footer {
    width: min(100% - 24px, 1460px);
  }

  .site-header {
    margin-top: 12px;
    padding: 12px;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .hero-copy {
    padding: 34px 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-tag {
    display: none;
  }

  .work-panel {
    width: 100%;
  }

  .panel-media,
  .panel-media img {
    height: 220px;
    min-height: 220px;
  }

  .work-showcase.is-mobile-stack .panel-media {
    height: auto;
    min-height: 0;
  }

  .work-showcase.is-mobile-stack .panel-media img {
    height: 100%;
    min-height: 0;
  }

  .capabilities h2,
  .section-heading h2,
  .belief h2,
  .method h2,
  .about h2,
  .contact h2 {
    font-size: clamp(33px, 13vw, 56px);
  }

  .belief-heading h2 {
    max-width: 9em;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .belief-tile-hero {
    display: grid;
    gap: 12px;
    padding: 22px 20px 20px;
  }

  .belief-tile-hero h3 {
    margin: 28px 0 0;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.04;
  }

  .belief-tile-hero p {
    font-size: 13px;
    line-height: 1.48;
  }

  .contact-outro {
    gap: 18px;
    padding: 18px;
    border-radius: 30px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
      linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      radial-gradient(circle at 0% 14%, rgba(240, 117, 108, 0.34), transparent 20rem),
      radial-gradient(circle at 98% 0%, rgba(75, 161, 167, 0.34), transparent 22rem),
      linear-gradient(145deg, #1b1110 0%, #111a19 48%, #060706 100%);
    background-size: 48px 48px, 48px 48px, auto, auto, auto;
    box-shadow: 0 28px 80px rgba(17, 17, 17, 0.24);
  }

  .contact-grid {
    gap: 20px;
  }

  .contact-note {
    padding: 4px 2px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-menu-item {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 12px 12px 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
      rgba(255, 255, 255, 0.038);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 12px 28px rgba(0, 0, 0, 0.14);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  }

  .contact-menu-item::after {
    content: "›";
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.68);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: 24px;
    font-weight: 760;
    line-height: 1;
    transform: none;
    justify-self: end;
  }

  .contact-menu-item::before {
    background:
      radial-gradient(circle at 14% 48%, rgba(255, 224, 217, 0.22), transparent 12rem),
      linear-gradient(100deg, rgba(240, 117, 108, 0.16), rgba(75, 161, 167, 0.12));
  }

  .contact-menu-item.is-primary {
    grid-column: 1 / -1;
    min-height: 96px;
    border-color: rgba(255, 229, 223, 0.28);
    border-radius: 24px;
    background:
      radial-gradient(circle at 8% 0%, rgba(255, 205, 195, 0.32), transparent 12rem),
      radial-gradient(circle at 92% 15%, rgba(75, 161, 167, 0.28), transparent 13rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      0 18px 44px rgba(0, 0, 0, 0.2);
  }

  .contact-menu-item.is-primary .contact-menu-track {
    font-size: clamp(24px, 6.6vw, 29px);
  }

  .contact-menu-item:active,
  .contact-menu-item:focus-visible {
    border-color: rgba(255, 229, 223, 0.42);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 10px 24px rgba(0, 0, 0, 0.14);
    transform: translateY(1px) scale(0.992);
  }

  .contact-menu-item:active::before,
  .contact-menu-item:focus-visible::before {
    opacity: 1;
    transform: translateX(0);
  }

  .contact-menu-index {
    position: static;
    display: inline-grid;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .contact-menu-track {
    display: block;
    width: auto;
    max-width: 100%;
    min-width: 0;
    color: rgba(255, 255, 255, 0.9);
    padding-top: 0;
    font-size: clamp(19px, 5.6vw, 23px);
    line-height: 1.06;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-menu-track span {
    min-width: 0;
    max-width: 100%;
    padding-right: 0;
  }

  .contact-action-label,
  .contact-action-value {
    display: block;
  }

  .contact-action-label {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78em;
    line-height: 1.05;
  }

  .contact-action-value {
    margin-top: 2px;
    color: #ffe2dc;
    font-size: 1em;
    line-height: 0.98;
  }

  .contact-menu-track span[aria-hidden="true"] {
    display: none;
  }

  .contact-menu-item[href^="mailto:"] .contact-menu-track {
    padding-top: 0;
    font-size: clamp(15px, 4.5vw, 18px);
    line-height: 1.14;
  }

  .contact-menu-item[href^="mailto:"] {
    grid-column: 1 / -1;
    min-height: 64px;
    padding-left: 14px;
  }

  .contact-menu-item[href="assets/resume.pdf"] {
    background:
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.22), transparent 10rem),
      linear-gradient(115deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.028));
  }

  .contact-menu-item:hover .contact-menu-track {
    animation: none;
  }

  .contact-menu-item:hover::before {
    opacity: 0;
    transform: translateX(-12%);
  }

  .contact-menu-item:active::before,
  .contact-menu-item:focus-visible::before {
    opacity: 1;
    transform: translateX(0);
  }

  .contact-pass {
    min-height: 0;
    gap: 12px;
    padding: 16px;
    border-radius: 24px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
      radial-gradient(circle at 50% 0%, rgba(75, 161, 167, 0.34), transparent 14rem),
      rgba(255, 255, 255, 0.055);
    background-size: 32px 100%, auto, auto;
  }

  .contact-pass img {
    width: min(150px, 64vw);
    border-width: 7px;
    border-radius: 16px;
  }

  .contact-pass p {
    margin: 0;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .belief-pin {
    gap: 14px;
  }

  .belief-heading {
    gap: 10px;
  }

  .belief-heading h2 {
    max-width: 9em;
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.04;
  }

  .belief-board {
    gap: 10px;
    padding: 14px;
  }

  .belief-tile,
  .belief-tile-hero,
  .belief-tile-wide,
  .belief-tile-accent,
  .belief-tile-ship,
  .belief-tile-dark,
  .belief-tile-education {
    min-height: 0;
  }

  .belief-tile-hero {
    display: grid;
    gap: 12px;
    min-height: 0;
    padding: 22px 20px 20px;
  }

  .belief-tile-hero h3 {
    margin: 28px 0 0;
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.04;
  }

  .belief-tile-hero p {
    font-size: 13px;
    line-height: 1.48;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 84px;
    padding: 15px;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) span {
    width: 52px;
    height: 52px;
    font-size: 9px;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) p {
    font-size: clamp(17px, 5vw, 20px);
    line-height: 1.12;
  }
}

@media (max-width: 820px) {
  .belief-heading {
    gap: 12px;
  }

  .belief-heading h2 {
    line-height: 1.02;
  }

  .belief-tile-hero {
    align-content: start;
    gap: 17px;
    padding: 24px 20px 22px;
  }

  .belief-tile-hero h3 {
    max-width: 8.6em;
    margin: clamp(32px, 10vw, 48px) 0 0;
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.02;
  }

  .belief-tile-hero p {
    position: relative;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: clamp(12px, 3.35vw, 13px);
    line-height: 1.64;
  }

  .belief-tile-hero p::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--mint));
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) .belief-copy {
    gap: 7px;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) h3 {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.06;
  }

  .belief-tile:not(.belief-tile-hero):not(.belief-tile-education) p {
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(12px, 3.35vw, 13px);
    font-weight: 720;
    line-height: 1.5;
  }
}

.belief-board .belief-tile.belief-tile-dark:not(.belief-tile-hero):not(.belief-tile-education) h3 {
  color: rgba(255, 255, 255, 0.96);
}

.belief-board .belief-tile.belief-tile-dark:not(.belief-tile-hero):not(.belief-tile-education) p {
  color: rgba(255, 255, 255, 0.68);
}

/* 2026-06-11 Product Design polish layer: scoped, reversible visual refinements. */
@media (min-width: 821px) {
  .hero {
    padding-bottom: clamp(34px, 4vw, 62px);
  }

  .hero-card {
    box-shadow:
      0 32px 110px rgba(17, 17, 17, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .hero .proof-strip {
    position: relative;
    z-index: 3;
    width: min(1320px, calc(100% - clamp(36px, 5vw, 92px)));
    margin: clamp(-54px, -3.2vw, -34px) auto 0;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background:
      radial-gradient(circle at 0% 0%, rgba(240, 117, 108, 0.18), transparent 18rem),
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.2), transparent 20rem),
      #0d0f0e;
    box-shadow:
      0 28px 80px rgba(17, 17, 17, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero .proof-strip div {
    min-height: 132px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero .proof-strip div:last-child {
    border-right: 0;
  }

  .hero .proof-strip strong {
    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.08;
  }

  .hero .proof-strip span {
    margin-bottom: 18px;
  }
}

.capabilities {
  border-top: 0;
}

.capabilities h2 {
  max-width: 680px;
}

.capability-grid {
  gap: clamp(14px, 1.6vw, 22px);
}

.capability-card {
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow:
    0 22px 70px rgba(17, 17, 17, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.capability-card:not(.capability-card-dark) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 243, 0.78));
  backdrop-filter: blur(12px);
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 34px 86px rgba(17, 17, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.capability-card-market::before,
.capability-card-commerce::before {
  opacity: 0.62;
  filter: saturate(0.9) contrast(1.04);
}

.capability-card-market::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.22) 100%),
    linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.86) 100%),
    url("../assets/fiverr-market.jpeg") right bottom / 108% auto no-repeat;
}

.capability-card-commerce::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, transparent 42%, rgba(255, 255, 255, 0.88) 100%),
    url("../assets/wegic-pricing.jpeg") right bottom / 112% auto no-repeat;
}

.capability-proof {
  display: inline-flex;
  align-self: flex-start;
  max-width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.055);
  line-height: 1.2;
}

.capability-card-dark .capability-proof {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

@media (min-width: 821px) {
  .belief-board {
    gap: 16px;
    padding: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .belief-tile-dark {
    border-color: rgba(255, 255, 255, 0.18);
    background:
      radial-gradient(circle at 90% 0%, rgba(75, 161, 167, 0.34), transparent 18rem),
      linear-gradient(135deg, rgba(22, 28, 27, 0.98), rgba(7, 8, 7, 0.94));
  }

  .belief-board .belief-tile.belief-tile-dark:not(.belief-tile-hero):not(.belief-tile-education) h3 {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  }

  .belief-board .belief-tile.belief-tile-dark:not(.belief-tile-hero):not(.belief-tile-education) p {
    color: rgba(255, 255, 255, 0.72);
  }

  .belief-tile-education {
    border-color: rgba(255, 255, 255, 0.28);
    background:
      radial-gradient(circle at 84% 4%, rgba(75, 161, 167, 0.12), transparent 18rem),
      linear-gradient(135deg, rgba(255, 238, 235, 0.94), rgba(239, 244, 241, 0.86));
  }
}

@media (min-width: 821px) {
  .contact-outro {
    padding: clamp(34px, 4.8vw, 72px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
      0 44px 130px rgba(17, 17, 17, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.28fr);
    gap: clamp(34px, 5vw, 78px);
  }

  .contact-note {
    width: min(720px, 100%);
    margin: 0 0 clamp(24px, 2.8vw, 42px) 72px;
    padding: 0 0 clamp(22px, 2.3vw, 34px);
    color: rgba(255, 255, 255, 0.76);
  }

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

  .contact-menu-item {
    min-height: clamp(82px, 8vw, 116px);
    padding-right: clamp(16px, 2vw, 34px);
  }

  .contact-menu-track {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 0.96;
  }

  .contact-menu-track span {
    min-width: 0;
    max-width: 100%;
    padding-right: 0;
    overflow: hidden;
    text-overflow: clip;
  }

  .contact-menu-track span[aria-hidden="true"] {
    display: none;
  }

  .contact-menu-item:hover .contact-menu-track {
    animation: none;
  }

  .contact-menu-item[href^="mailto:"] .contact-menu-track {
    font-size: clamp(28px, 3.35vw, 52px);
  }

  .contact-menu-item[href="assets/resume.pdf"] .contact-menu-track {
    font-size: clamp(36px, 4.4vw, 68px);
  }

  .contact-pass {
    min-height: 100%;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 24px 70px rgba(0, 0, 0, 0.22);
  }
}

@media (max-width: 820px) {
  .hero {
    padding-bottom: 0;
  }

  .hero .proof-strip {
    width: auto;
    margin-top: 18px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .capability-card {
    min-height: 260px;
  }

  .capability-proof {
    border-radius: 18px;
    white-space: normal;
  }
}

/* 2026-06-12 Hero focus pass: make the first viewport feel calmer and more decisive. */
@media (min-width: 821px) {
  .hero {
    padding-top: clamp(24px, 3vw, 42px);
    padding-bottom: clamp(44px, 5vw, 76px);
  }

  .hero-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
    gap: clamp(22px, 3vw, 46px);
    min-height: clamp(570px, 58vw, 660px);
    border-radius: clamp(24px, 2.4vw, 34px);
    background:
      radial-gradient(circle at 78% 76%, rgba(75, 161, 167, 0.28), transparent 24rem),
      radial-gradient(circle at 7% 16%, rgba(240, 117, 108, 0.2), transparent 20rem),
      linear-gradient(112deg, rgba(14, 14, 14, 0.96) 0%, rgba(24, 18, 18, 0.9) 43%, rgba(42, 47, 45, 0.88) 100%),
      var(--black);
  }

  .hero-card::before {
    z-index: 0;
    opacity: 0.24;
    background:
      linear-gradient(90deg, transparent 0 42%, rgba(255, 255, 255, 0.1) 42% 42.6%, transparent 42.6%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 86px);
  }

  .hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.34;
    background:
      linear-gradient(135deg, transparent 0 54%, rgba(255, 255, 255, 0.09) 54% 54.2%, transparent 54.2%),
      linear-gradient(30deg, transparent 0 63%, rgba(255, 255, 255, 0.075) 63% 63.18%, transparent 63.18%),
      radial-gradient(circle at 58% 64%, transparent 0 112px, rgba(255, 255, 255, 0.08) 113px 114px, transparent 115px),
      radial-gradient(circle at 84% 24%, transparent 0 68px, rgba(255, 255, 255, 0.08) 69px 70px, transparent 71px);
    pointer-events: none;
  }

  .hero-copy {
    max-width: 780px;
    padding: clamp(46px, 6.2vw, 82px);
  }

  .hero .eyebrow {
    max-width: 560px;
    margin-bottom: clamp(18px, 2vw, 26px);
    color: rgba(255, 147, 139, 0.95);
    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .hero h1,
  html[lang="zh-CN"] .hero h1 {
    max-width: 740px;
    font-size: clamp(58px, 6.05vw, 104px);
    line-height: 0.94;
    text-wrap: balance;
  }

  .hero-title-join {
    display: inline;
  }

  .hero-subtitle {
    max-width: 580px;
    margin-top: clamp(22px, 2.4vw, 30px);
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.58;
  }

  .hero-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-tags span {
    min-height: 32px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: clamp(26px, 3vw, 36px);
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 0 20px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  }

  .hero-actions .btn-dark {
    color: #101211;
    border-color: transparent;
    background: linear-gradient(135deg, #f07c73 0%, #f4dfdc 47%, #8ccace 100%);
  }

  .hero-actions .btn-light {
    color: rgba(17, 17, 17, 0.92);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.72);
  }

  .hero-actions .btn-ghost {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
  }

  .hero-visual {
    min-height: auto;
    padding: clamp(42px, 5vw, 66px) clamp(38px, 5vw, 70px) clamp(70px, 7vw, 92px) 0;
  }

  .portrait-orbit {
    width: min(88%, 430px);
    padding: 12px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    box-shadow:
      0 28px 74px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }

  .floating-tag {
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(17, 17, 17, 0.48);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
    font-size: 12px;
  }

  .tag-one {
    top: 22%;
    right: 11%;
  }

  .tag-two {
    bottom: 34%;
    left: 5%;
  }

  .tag-three {
    right: 10%;
    bottom: 17%;
  }

  .hero .proof-strip {
    width: min(1260px, calc(100% - clamp(44px, 6vw, 110px)));
    margin-top: clamp(-38px, -2.4vw, -24px);
    border-radius: 24px;
    background:
      linear-gradient(90deg, rgba(15, 16, 15, 0.98), rgba(12, 17, 16, 0.96)),
      #0c0e0d;
  }

  .hero .proof-strip div {
    min-height: 104px;
    padding: 18px 20px 20px;
    transition: background 180ms ease, color 180ms ease;
  }

  .hero .proof-strip div.is-active {
    background:
      radial-gradient(circle at 0 0, rgba(240, 117, 108, 0.14), transparent 12rem),
      rgba(255, 255, 255, 0.025);
  }

  .hero .proof-strip strong {
    max-width: 13em;
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1.12;
  }

  .hero .proof-strip span {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .hero-copy .proof-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 100%);
    margin: 24px 0 0;
    gap: 10px;
    overflow: visible;
    border: 0;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
  }

  .hero-copy .proof-strip div,
  .hero-copy .proof-strip div.is-active {
    position: relative;
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 16px 18px 17px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    background:
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.13), transparent 9rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.036));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 16px 42px rgba(0, 0, 0, 0.12);
  }

  .hero-copy .proof-strip strong {
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(19px, 1.45vw, 25px);
    line-height: 1.06;
    white-space: normal;
  }

  .hero-copy .proof-strip span {
    display: block;
    order: -1;
    margin: 0 0 9px;
    color: rgba(255, 147, 139, 0.82);
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-copy .proof-strip p {
    display: block;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.42;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    min-height: 560px;
  }

  .hero-copy {
    padding: 48px;
  }

  .hero h1,
  html[lang="zh-CN"] .hero h1 {
    font-size: clamp(52px, 5.45vw, 64px);
  }

  .hero-visual {
    padding-right: 32px;
  }

  .portrait-orbit {
    width: min(90%, 360px);
  }

  .hero .proof-strip strong {
    font-size: 17px;
  }
}

@media (max-width: 820px) {
  .hero-copy .proof-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    border: 0;
  }

  .hero-copy .proof-strip::before {
    display: none;
  }

  .hero-copy .proof-strip div,
  .hero-copy .proof-strip div.is-active {
    display: flex;
    align-items: flex-start;
    width: auto;
    min-height: 74px;
    padding: 12px 12px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.86);
    background:
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.12), transparent 7rem),
      rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    opacity: 1;
    transform: none;
  }

  .hero-copy .proof-strip div::before,
  .hero-copy .proof-strip div::after {
    display: none;
  }

  .hero-copy .proof-strip strong {
    max-width: none;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
  }

  .hero-copy .proof-strip span {
    display: block;
    margin: 0;
    color: rgba(255, 147, 139, 0.78);
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero-copy .proof-strip p {
    display: none;
  }

  .hero-title-join {
    display: block;
    white-space: nowrap;
  }

  .hero h1 br {
    display: none;
  }

  .hero h1,
  html[lang="zh-CN"] .hero h1 {
    font-size: clamp(44px, 12.4vw, 56px);
    line-height: 1.03;
  }

  .hero-subtitle {
    max-width: 22em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 2026-06-12 Hero motion reel: make representative results part of the hero stage. */
@media (min-width: 821px) {
  .hero-card {
    isolation: isolate;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    min-height: clamp(720px, 61vw, 790px);
  }

  .hero-copy {
    padding-bottom: clamp(190px, 17vw, 230px);
  }

  .hero-visual {
    padding-bottom: clamp(150px, 14vw, 190px);
  }

  .hero .proof-strip {
    position: absolute;
    right: clamp(34px, 4.8vw, 76px);
    bottom: clamp(30px, 3.2vw, 48px);
    left: clamp(34px, 4.8vw, 76px);
    z-index: 5;
    display: grid;
    width: auto;
    grid-template-columns: minmax(260px, 1.18fr) repeat(3, minmax(210px, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
      linear-gradient(90deg, rgba(7, 8, 8, 0.98), rgba(11, 20, 19, 0.92)),
      #090b0a;
    box-shadow:
      0 34px 86px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero .proof-strip::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 24px;
    left: 24px;
    height: 1px;
    opacity: 0.72;
    background:
      linear-gradient(90deg, rgba(240, 117, 108, 0.9), rgba(240, 117, 108, 0.28) 11%, transparent 11% 42%, rgba(75, 161, 167, 0.42) 42% 58%, transparent 58% 100%);
    pointer-events: none;
  }

  .hero .proof-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.28;
    background:
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 92px),
      linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 49%, transparent 50% 100%);
    mix-blend-mode: screen;
    pointer-events: none;
    animation: heroReelSweep 8s ease-in-out infinite;
  }

  .hero .proof-strip .proof-item {
    --lift: 0px;
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 142px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 24px 24px;
    overflow: hidden;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.12), transparent 11rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01));
    box-shadow: none;
    transform: translateY(var(--lift));
    animation: heroProofIn 760ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
    transition: transform 260ms ease, background 260ms ease, filter 260ms ease;
  }

  .hero .proof-strip .proof-item:nth-child(1) {
    --lift: -20px;
    border-left: 0;
    border-radius: 28px 0 0 28px;
    background:
      radial-gradient(circle at 0% 100%, rgba(240, 117, 108, 0.2), transparent 14rem),
      radial-gradient(circle at 90% 0%, rgba(75, 161, 167, 0.16), transparent 13rem),
      rgba(255, 255, 255, 0.04);
    animation-delay: 80ms;
  }

  .hero .proof-strip .proof-item:nth-child(2) {
    --lift: -6px;
    animation-delay: 150ms;
  }

  .hero .proof-strip .proof-item:nth-child(3) {
    --lift: -14px;
    animation-delay: 220ms;
  }

  .hero .proof-strip .proof-item:nth-child(4) {
    --lift: -2px;
    border-radius: 0 28px 28px 0;
    animation-delay: 290ms;
  }

  .hero .proof-strip .proof-item::before {
    content: "";
    position: absolute;
    top: 17px;
    left: 24px;
    z-index: 1;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(240, 117, 108, 0.96), rgba(75, 161, 167, 0.72));
  }

  .hero .proof-strip .proof-item::after {
    content: "0" counter(hero-result);
    position: absolute;
    right: 12px;
    bottom: -30px;
    opacity: 0.08;
    color: #fff;
    font-size: clamp(74px, 7vw, 118px);
    font-weight: 950;
    line-height: 1;
    pointer-events: none;
  }

  .hero .proof-strip {
    counter-reset: hero-result;
  }

  .hero .proof-strip .proof-item {
    counter-increment: hero-result;
  }

  .hero .proof-strip .proof-item:hover {
    transform: translateY(calc(var(--lift) - 6px));
    filter: saturate(1.08);
    background:
      radial-gradient(circle at 18% 0%, rgba(240, 117, 108, 0.18), transparent 13rem),
      radial-gradient(circle at 100% 100%, rgba(75, 161, 167, 0.14), transparent 12rem),
      rgba(255, 255, 255, 0.05);
  }

  .hero .proof-strip .proof-item strong {
    position: relative;
    z-index: 1;
    max-width: 13em;
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(22px, 1.55vw, 30px);
    line-height: 1.06;
  }

  .hero .proof-strip .proof-item span {
    position: relative;
    z-index: 1;
    order: -1;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .hero .proof-strip .proof-item p {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 22em;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(12px, 0.92vw, 15px);
    font-weight: 800;
    line-height: 1.45;
  }

  .hero .proof-strip .proof-item:nth-child(1) strong {
    font-size: clamp(26px, 2vw, 36px);
  }
}

@keyframes heroProofIn {
  from {
    opacity: 0;
    transform: translateY(calc(var(--lift) + 24px)) rotateX(8deg);
  }

  to {
    opacity: 1;
    transform: translateY(var(--lift)) rotateX(0);
  }
}

@keyframes heroReelSweep {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-1.5%);
  }

  50% {
    opacity: 0.34;
    transform: translateX(1.5%);
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
    min-height: 720px;
  }

  .hero .proof-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero .proof-strip .proof-item {
    min-height: 132px;
    padding: 28px 18px 22px;
  }

  .hero .proof-strip .proof-item strong,
  .hero .proof-strip .proof-item:nth-child(1) strong {
    font-size: clamp(18px, 2vw, 23px);
  }

  .hero .proof-strip .proof-item p {
    font-size: 11px;
  }
}

@media (max-width: 820px) {
  .hero-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
    padding-bottom: 22px;
  }

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

  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
  }

  .hero .proof-strip {
    order: 2;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    display: grid;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 clamp(20px, 5vw, 30px) clamp(24px, 6vw, 34px);
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-visual {
    order: 3;
    padding-top: 6px;
    padding-bottom: 28px;
  }

  .portrait-orbit {
    width: min(270px, 70vw);
  }

  .hero .proof-strip::before,
  .hero .proof-strip::after {
    display: none;
  }

  .hero .proof-strip .proof-item,
  .hero .proof-strip .proof-item.is-active {
    position: relative;
    display: flex;
    min-height: 84px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 14px 14px 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background:
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.13), transparent 8rem),
      rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 1;
    transform: none;
  }

  .hero .proof-strip .proof-item::before,
  .hero .proof-strip .proof-item::after {
    display: none;
  }

  .hero .proof-strip .proof-item span {
    order: -1;
    margin: 0 0 7px;
    color: rgba(255, 147, 139, 0.8);
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero .proof-strip .proof-item strong {
    max-width: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.16;
  }

  .hero .proof-strip .proof-item p {
    display: none;
  }
}

/* 2026-06-12 Hero reel cleanup: keep the fashion layer, remove visual noise. */
@media (min-width: 821px) {
  .tag-two {
    bottom: 38%;
    left: 5%;
  }

  .hero .proof-strip {
    bottom: clamp(32px, 3.6vw, 54px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 26px;
    background:
      linear-gradient(90deg, rgba(8, 10, 10, 0.96), rgba(10, 18, 17, 0.94)),
      #0a0d0c;
  }

  .hero .proof-strip::before {
    top: 18px;
    right: 22px;
    left: 22px;
    height: 1px;
    opacity: 0.5;
    background: linear-gradient(90deg, rgba(240, 117, 108, 0.85), rgba(75, 161, 167, 0.7) 4.6rem, transparent 4.6rem 100%);
  }

  .hero .proof-strip::after {
    opacity: 0.16;
  }

  .hero .proof-strip .proof-item,
  .hero .proof-strip .proof-item:nth-child(1),
  .hero .proof-strip .proof-item:nth-child(2),
  .hero .proof-strip .proof-item:nth-child(3),
  .hero .proof-strip .proof-item:nth-child(4) {
    --lift: 0px;
    min-height: 156px;
    padding: 32px 24px 24px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.1), transparent 12rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014));
    transform: none;
  }

  .hero .proof-strip .proof-item + .proof-item {
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.1);
  }

  .hero .proof-strip .proof-item:nth-child(1) {
    border-radius: 26px 0 0 26px;
    background:
      radial-gradient(circle at 0% 100%, rgba(240, 117, 108, 0.14), transparent 14rem),
      radial-gradient(circle at 100% 0%, rgba(75, 161, 167, 0.11), transparent 12rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016));
  }

  .hero .proof-strip .proof-item:nth-child(4) {
    border-radius: 0 26px 26px 0;
  }

  .hero .proof-strip .proof-item::before {
    top: 17px;
    left: 24px;
    width: 34px;
    height: 3px;
    opacity: 0.92;
  }

  .hero .proof-strip .proof-item::after {
    display: none;
  }

  .hero .proof-strip .proof-item:hover {
    transform: translateY(-4px);
  }

  .hero .proof-strip .proof-item strong,
  .hero .proof-strip .proof-item:nth-child(1) strong {
    max-width: 12em;
    font-size: clamp(20px, 1.38vw, 27px);
    line-height: 1.08;
  }

  .hero .proof-strip .proof-item span {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.55);
  }

  .hero .proof-strip .proof-item p {
    max-width: 24em;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.58);
    font-size: clamp(12px, 0.86vw, 14px);
  }
}

/* 2026-06-12 AI signal-field memory layer. */
@media (min-width: 821px) {
  .tag-three {
    right: clamp(34px, 6vw, 82px);
    bottom: 35%;
  }

  .hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.34;
    background:
      radial-gradient(circle at var(--signal-x, 74%) var(--signal-y, 34%), rgba(75, 161, 167, 0.18), transparent 20rem),
      linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 47%, transparent 49% 100%);
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 260ms ease;
  }

  .hero-card.is-signal-active::after {
    opacity: 0.5;
  }

  .hero-card.is-signal-active .proof-strip .proof-item {
    animation-name: heroProofIn, heroSignalNode;
    animation-duration: 760ms, 7.2s;
    animation-timing-function: cubic-bezier(0.2, 0.85, 0.2, 1), ease-in-out;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: both, none;
  }

  .hero-card.is-signal-active .proof-strip .proof-item:nth-child(1) {
    animation-delay: 80ms, 0s;
  }

  .hero-card.is-signal-active .proof-strip .proof-item:nth-child(2) {
    animation-delay: 150ms, 1.35s;
  }

  .hero-card.is-signal-active .proof-strip .proof-item:nth-child(3) {
    animation-delay: 220ms, 2.7s;
  }

  .hero-card.is-signal-active .proof-strip .proof-item:nth-child(4) {
    animation-delay: 290ms, 4.05s;
  }
}

@keyframes heroSignalNode {
  0%,
  100% {
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.1),
      inset 0 0 0 0 rgba(75, 161, 167, 0);
  }

  12% {
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(75, 161, 167, 0.22),
      0 0 34px rgba(75, 161, 167, 0.1);
  }

  24% {
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.1),
      inset 0 0 0 0 rgba(75, 161, 167, 0);
  }
}

@media (max-width: 820px) {
  .hero-signal-canvas {
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-signal-canvas {
    opacity: 0.28;
  }

  .hero-card.is-signal-active .proof-strip .proof-item {
    animation: none !important;
  }
}

/* 2026-06-13 memory motion layer: reusable signal fields and product glyphs. */
.capabilities,
.belief,
.contact {
  position: relative;
  isolation: isolate;
}

.capabilities > :not(.section-signal-canvas),
.belief > :not(.section-signal-canvas),
.contact > :not(.section-signal-canvas) {
  position: relative;
  z-index: 1;
}

.section-signal-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.34;
  pointer-events: none;
}

.capabilities .section-signal-canvas {
  opacity: 0.4;
  mix-blend-mode: multiply;
}

.belief .section-signal-canvas,
.contact .section-signal-canvas {
  opacity: 0.18;
  mix-blend-mode: screen;
}

.motion-glyph {
  display: none !important;
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 1;
  width: clamp(82px, 9vw, 132px);
  height: clamp(58px, 6.4vw, 92px);
  color: rgba(17, 17, 17, 0.42);
  opacity: 0.48;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition: opacity 220ms ease, transform 260ms ease;
}

.capability-card-dark .motion-glyph {
  color: rgba(255, 255, 255, 0.56);
  opacity: 0.36;
  mix-blend-mode: screen;
}

.capability-card:hover .motion-glyph {
  opacity: 0.72;
  transform: translate3d(0, -3px, 0);
}

.motion-glyph svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.motion-glyph path,
.motion-glyph line,
.motion-glyph polyline,
.motion-glyph rect,
.motion-glyph circle {
  vector-effect: non-scaling-stroke;
}

.motion-glyph .glyph-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.motion-glyph .glyph-faint {
  opacity: 0.32;
}

.motion-glyph .glyph-fill {
  fill: currentColor;
  opacity: 0.14;
}

.motion-glyph .glyph-draw {
  stroke-dasharray: 170;
  stroke-dashoffset: 170;
  animation: glyph-draw 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.motion-glyph .glyph-pulse {
  animation: glyph-pulse 3.9s ease-in-out infinite;
  transform-origin: center;
}

.motion-glyph-business .glyph-draw {
  animation-delay: 700ms;
}

.motion-glyph-agent .glyph-pulse {
  animation-delay: 520ms;
}

@keyframes glyph-draw {
  0%,
  18% {
    stroke-dashoffset: 170;
    opacity: 0;
  }

  36%,
  78% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: -170;
    opacity: 0;
  }
}

@keyframes glyph-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.94);
  }

  48% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

.belief-board,
.contact-panel,
.hero-card {
  --memory-sheen: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 48%, transparent 56% 100%);
}

.belief-board {
  background:
    var(--memory-sheen),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 12% 10%, rgba(240, 117, 108, 0.2), transparent 22rem),
    radial-gradient(circle at 88% 8%, rgba(75, 161, 167, 0.24), transparent 26rem),
    linear-gradient(135deg, #171412 0%, #111819 55%, #0c0c0b 100%);
  background-size: auto, 86px 86px, 86px 86px, auto, auto, auto;
}

.belief-tile-education {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 18% 110%, rgba(240, 117, 108, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 0%, rgba(75, 161, 167, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(8, 12, 12, 0.9);
  background-size: 92px 100%, auto, auto, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 42px rgba(0, 0, 0, 0.08);
}

.belief-tile-education::before {
  opacity: 0.34;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, 0.1) 50%, transparent 58% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 86px);
}

.belief-tile-education::after {
  opacity: 0.22;
  background:
    radial-gradient(circle at 56% 38%, transparent 0 44%, rgba(0, 0, 0, 0.24) 100%);
}

.belief-tile-education span {
  align-self: center;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.belief-tile-education p {
  position: relative;
  min-height: clamp(82px, 6.6vw, 108px);
  align-content: center;
  margin: 0;
  padding-left: clamp(22px, 2.2vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.belief-tile-education p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1px;
  width: 2px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--mint));
  transform: translateY(-50%);
}

.belief-tile-education strong {
  color: rgba(255, 255, 255, 0.95);
}

.belief-tile-education small {
  color: rgba(255, 255, 255, 0.58);
}

.contact-pass {
  position: relative;
  overflow: hidden;
}

.contact-pass::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  opacity: 0.65;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 4rem),
    linear-gradient(115deg, transparent 0 44%, rgba(75, 161, 167, 0.1) 52%, transparent 60% 100%);
  pointer-events: none;
}

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

@media (max-width: 820px) {
  .section-signal-canvas {
    opacity: 0.18;
  }

  .motion-glyph {
    top: 14px;
    right: 14px;
    width: 76px;
    height: 54px;
    opacity: 0.3;
  }

  .capability-card:hover .motion-glyph {
    transform: none;
  }

  .belief-tile-education {
    gap: 10px;
  }

  .belief-tile-education p {
    min-height: 78px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-glyph .glyph-draw,
  .motion-glyph .glyph-pulse {
    animation: none !important;
  }
}

/* 2026-06-18 layout fallback: keep the education row full-width across responsive widths. */
@media (min-width: 821px) {
  .belief-board[data-grid-fourth-v2] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: stretch;
  }

  .belief-board[data-grid-fourth-v2] > .belief-tile-education,
  .belief-board[data-grid-fourth-v2] > .belief-border-glow-card.is-education {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }

  .belief-board[data-grid-fourth-v2] > .belief-border-glow-card.is-education {
    display: grid;
  }

  .belief-border-glow-card.is-education .border-glow-inner,
  .belief-border-glow-card.is-education .belief-tile,
  .belief-border-glow-card.is-education .belief-tile-education {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .belief-board[data-grid-fourth-v2] > .belief-tile-education,
  .belief-border-glow-card.is-education .belief-tile-education {
    grid-template-columns: minmax(128px, 0.42fr) repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 44px);
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .belief-board[data-grid-fourth-v2] > .belief-tile-education,
  .belief-border-glow-card.is-education .belief-tile-education {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .belief-board[data-grid-fourth-v2] > .belief-tile-education > span,
  .belief-border-glow-card.is-education .belief-tile-education > span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .belief-board[data-grid-fourth-v2] > .belief-tile-education,
  .belief-border-glow-card.is-education .belief-tile-education {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: 1fr;
  }

  .belief-tile-education p {
    min-width: 0;
    max-width: 100%;
  }
}
