* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #050505;
  overflow-x: hidden;
  overflow-y: auto;
}

.corner-frame-link {
  position: fixed;
  left: 32px;
  bottom: 32px;
  width: 76px;
  aspect-ratio: 76 / 123;
  display: block;
  user-select: none;
  z-index: 10;
  opacity: 0;
  animation: site-title-fade-in 420ms ease forwards;
  animation-delay: 1.02s;
}

.corner-frame {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.corner-frame-chip {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 2px;
  background: #29a146;
  color: #ececec;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 4px));
  pointer-events: none;
}

a[href]::after,
button::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 0.5px solid transparent;
  pointer-events: none;
}

a[href]:hover::after,
a[href]:focus-visible::after,
button:hover::after,
button:focus-visible::after {
  border-color: #29a146;
  border-width: 1.5px;
}

.corner-frame-link:hover .corner-frame-chip,
.corner-frame-link:focus-visible .corner-frame-chip {
  opacity: 1;
}

.interactive-corner {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ececec;
  border: 0.5px solid #29a146;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
}

.interactive-corner-top-left {
  top: -6px;
  left: -6px;
}

.interactive-corner-top-right {
  top: -6px;
  right: -6px;
}

.interactive-corner-bottom-left {
  bottom: -6px;
  left: -6px;
}

.interactive-corner-bottom-right {
  right: -6px;
  bottom: -6px;
}

html,
body,
body *,
body *::before,
body *::after {
  cursor:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1' height='1' viewBox='0 0 1 1'%3E%3C/svg%3E")
      0 0,
    none !important;
}

.site-title {
  position: absolute;
  top: 32px;
  left: 32px;
  margin: 0;
  color: #ececec;
  font-family: "Jersey 15", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: site-title-fade-in 420ms ease forwards;
  animation-delay: 1.02s;
}

.site-title-link {
  display: inline-block;
  padding: 8px 16px;
  margin: -8px -16px;
  text-decoration: none;
}

.site-title-link::after {
  inset: 0;
}

.top-menu {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  z-index: 40;
  opacity: 0;
  animation: site-title-fade-in 420ms ease forwards;
  animation-delay: 1.02s;
}

.top-menu-toggle {
  display: none;
  position: fixed;
  top: 32px;
  right: 32px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  z-index: 45;
  opacity: 0;
  animation: site-title-fade-in 420ms ease forwards;
  animation-delay: 1.02s;
}

.top-menu-toggle span {
  position: absolute;
  left: 0;
  width: 20px;
  height: 1.5px;
  background: #ececec;
  transform-origin: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.top-menu-toggle span:nth-child(1) {
  top: 3px;
}

.top-menu-toggle span:nth-child(2) {
  top: 9px;
}

.top-menu-toggle span:nth-child(3) {
  top: 15px;
}

body.menu-open .top-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .top-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .top-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.top-menu-link {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  margin: -8px -16px;
  color: rgba(236, 236, 236, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.top-menu-link::after {
  inset: 0;
}

.top-menu-link:hover,
.top-menu-link:focus-visible {
  color: #ececec;
}

.top-menu-link.is-active {
  color: #ececec;
}

.page-shell {
  min-height: 100vh;
  padding: 100px 32px 48px 100px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.page-panel {
  width: min(100%, 1200px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.page-passion {
  position: relative;
}

.page-passion::before,
.page-passion::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(48px);
}

.page-passion::before {
  top: 120px;
  right: 6vw;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(210, 79, 41, 0.22) 0%, rgba(210, 79, 41, 0) 72%);
}

.page-passion::after {
  top: 520px;
  left: 4vw;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(41, 161, 70, 0.14) 0%, rgba(41, 161, 70, 0) 72%);
}

.page-panel-passion {
  position: relative;
  z-index: 1;
  gap: 32px;
}

.page-panel-passion::before {
  content: "";
  position: absolute;
  top: 112px;
  right: 0;
  width: min(48vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, rgba(236, 236, 236, 0), rgba(236, 236, 236, 0.18), rgba(236, 236, 236, 0));
  pointer-events: none;
}

.page-panel-passion .page-kicker {
  color: rgba(236, 236, 236, 0.62);
}

.page-panel-passion .page-heading {
  max-width: 1200px;
  white-space: nowrap;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.page-panel-passion .page-copy {
  max-width: 980px;
  color: rgba(236, 236, 236, 0.66);
}

.page-live {
  position: relative;
}

.page-live::before,
.page-live::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(48px);
}

.page-live::before {
  top: 120px;
  right: 8vw;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(41, 161, 70, 0.18) 0%, rgba(41, 161, 70, 0) 72%);
}

.page-live::after {
  top: 520px;
  left: 5vw;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(60, 118, 255, 0.14) 0%, rgba(60, 118, 255, 0) 72%);
}

.page-panel-live {
  position: relative;
  z-index: 1;
  gap: 32px;
}

.page-panel-live::before {
  content: "";
  position: absolute;
  top: 112px;
  right: 0;
  width: min(48vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, rgba(236, 236, 236, 0), rgba(236, 236, 236, 0.18), rgba(236, 236, 236, 0));
  pointer-events: none;
}

.page-panel-live .page-kicker {
  color: rgba(236, 236, 236, 0.62);
}

.page-panel-live .page-heading {
  max-width: 1200px;
  white-space: nowrap;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.page-panel-live .page-copy {
  max-width: 980px;
  color: rgba(236, 236, 236, 0.66);
}

.page-shell-centered {
  padding-inline: 32px;
  justify-content: center;
}

.page-panel-centered {
  width: 1080px;
  max-width: calc(100vw - 64px);
  align-items: flex-start;
  text-align: left;
}

.page-kicker {
  margin: 0;
  color: rgba(236, 236, 236, 0.54);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-heading {
  margin: 0;
  color: #ececec;
  font-family: "Jersey 15", sans-serif;
  font-size: clamp(72px, 12vw, 144px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  max-width: calc(100vw - 132px);
  white-space: normal;
}

.page-copy {
  margin: 0;
  max-width: 920px;
  color: rgba(236, 236, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 300;
  line-height: 1.5;
}

.passion-repo-callout {
  width: min(100%, 1080px);
  margin-top: 24px;
  padding: 28px 28px 28px 32px;
  border: 1px solid rgba(236, 236, 236, 0.14);
  background:
    linear-gradient(135deg, rgba(236, 236, 236, 0.05), rgba(236, 236, 236, 0.015)),
    linear-gradient(180deg, rgba(210, 79, 41, 0.08), rgba(210, 79, 41, 0)),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.passion-repo-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #ececec 0%, #29a146 100%);
  opacity: 0.8;
}

.passion-repo-callout::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(210, 79, 41, 0.18) 0%, rgba(210, 79, 41, 0) 70%);
  filter: blur(24px);
  pointer-events: none;
}

.passion-repo-callout-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.passion-repo-callout-kicker {
  margin: 0;
  color: rgba(236, 236, 236, 0.54);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.passion-repo-callout-text {
  margin: 0;
  color: rgba(236, 236, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.passion-repo-callout-link {
  flex: 0 0 auto;
  margin-top: 0;
  min-width: 196px;
  position: relative;
  z-index: 1;
}

.product-block {
  width: min(100%, 1080px);
  margin-top: 24px;
  padding: 32px 0 0;
  border-top: 1px solid rgba(236, 236, 236, 0.16);
}

.product-block-passion {
  margin-top: 0;
  padding: 32px;
  border-top: 0;
  border: 1px solid rgba(236, 236, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(236, 236, 236, 0.04), rgba(236, 236, 236, 0.015)),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.product-block-passion::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(210, 79, 41, 0.08), rgba(210, 79, 41, 0) 35%),
    radial-gradient(circle at 85% 18%, rgba(41, 161, 70, 0.08), rgba(41, 161, 70, 0) 26%);
  pointer-events: none;
}

.product-block-live {
  margin-top: 0;
  padding: 32px;
  border-top: 0;
  border: 1px solid rgba(236, 236, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(236, 236, 236, 0.04), rgba(236, 236, 236, 0.015)),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.product-block-live::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(41, 161, 70, 0.08), rgba(41, 161, 70, 0) 34%),
    radial-gradient(circle at 85% 18%, rgba(60, 118, 255, 0.08), rgba(60, 118, 255, 0) 26%);
  pointer-events: none;
}

.product-block-live > * {
  position: relative;
  z-index: 1;
}

.product-block-featured-live {
  padding: 40px;
  border-color: rgba(41, 161, 70, 0.34);
  background:
    linear-gradient(180deg, rgba(236, 236, 236, 0.06), rgba(236, 236, 236, 0.02)),
    linear-gradient(135deg, rgba(41, 161, 70, 0.14), rgba(41, 161, 70, 0) 42%),
    rgba(8, 8, 8, 0.98);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(236, 236, 236, 0.04);
}

.product-block-featured-live::before {
  background:
    linear-gradient(135deg, rgba(41, 161, 70, 0.14), rgba(41, 161, 70, 0) 32%),
    radial-gradient(circle at 82% 16%, rgba(60, 118, 255, 0.12), rgba(60, 118, 255, 0) 22%),
    radial-gradient(circle at 18% 84%, rgba(236, 236, 236, 0.05), rgba(236, 236, 236, 0) 18%);
}

.product-block-passion > * {
  position: relative;
  z-index: 1;
}

.product-block-featured-passion {
  padding: 40px;
  border-color: rgba(210, 79, 41, 0.34);
  background:
    linear-gradient(180deg, rgba(236, 236, 236, 0.06), rgba(236, 236, 236, 0.02)),
    linear-gradient(135deg, rgba(210, 79, 41, 0.16), rgba(210, 79, 41, 0) 42%),
    rgba(8, 8, 8, 0.98);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(236, 236, 236, 0.04);
}

.product-block-featured-passion::before {
  background:
    linear-gradient(135deg, rgba(210, 79, 41, 0.14), rgba(210, 79, 41, 0) 32%),
    radial-gradient(circle at 82% 16%, rgba(41, 161, 70, 0.12), rgba(41, 161, 70, 0) 22%),
    radial-gradient(circle at 18% 84%, rgba(236, 236, 236, 0.05), rgba(236, 236, 236, 0) 18%);
}

.product-feature-flag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ececec;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-feature-flag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #29a146;
  box-shadow: 0 0 18px rgba(41, 161, 70, 0.55);
}

.product-block-featured-passion::after {
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: rgba(236, 236, 236, 0.14);
}

.project-lock {
  position: relative;
  overflow: visible;
}

.project-lock-mount {
  min-height: 720px;
}

.project-lock-placeholder {
  min-height: 720px;
  border: 1px solid rgba(236, 236, 236, 0.08);
  background:
    linear-gradient(rgba(236, 236, 236, 0.02), rgba(236, 236, 236, 0.02)),
    #0a0a0a;
}

.project-lock-overlay {
  position: absolute;
  top: 0;
  right: -48px;
  bottom: 0;
  left: -48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(5, 5, 5, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 6;
}

.project-lock.is-locked .project-lock-overlay {
  opacity: 1;
  pointer-events: auto;
}

.project-lock-panel {
  width: min(100%, 520px);
  padding: 32px;
  border: 1px solid rgba(236, 236, 236, 0.16);
  background: rgba(5, 5, 5, 0.84);
}

.project-lock-eyebrow {
  margin: 0 0 16px;
  color: rgba(236, 236, 236, 0.54);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-lock-title {
  margin: 0;
  color: #ececec;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}

.project-lock-copy {
  margin: 16px 0 0;
  color: rgba(236, 236, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.project-lock-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 24px;
}

.project-lock-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.project-lock-input-wrap {
  position: relative;
}

.project-lock-input {
  min-width: 0;
  width: 100%;
  padding: 16px;
  padding-right: 52px;
  border: 1px solid rgba(236, 236, 236, 0.16);
  border-radius: 0;
  color: #ececec;
  background: rgba(236, 236, 236, 0.06);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  outline: none;
}

.project-lock-input::placeholder {
  color: rgba(236, 236, 236, 0.32);
}

.project-lock-input:focus {
  border-color: rgba(41, 161, 70, 0.9);
}

.project-lock-visibility {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: rgba(236, 236, 236, 0.72);
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.project-lock-visibility-icon {
  display: block;
}

.project-lock-visibility-slash {
  opacity: 1;
}

.project-lock-visibility[aria-pressed="true"] .project-lock-visibility-slash {
  opacity: 0;
}

.project-lock-button {
  padding: 16px 20px;
  border: 0;
  color: #050505;
  background: #ececec;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.project-lock-error {
  min-height: 18px;
  margin: 12px 0 0;
  color: #f07b9a;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.product-block-centered {
  width: 100%;
  margin-inline: auto;
}

.product-block-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: start;
}

.product-visual-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-block-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.product-header-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-block-header-centered {
  align-items: flex-start;
}

.product-context-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  width: 100%;
}

.product-block-kicker {
  margin: 0;
  color: rgba(236, 236, 236, 0.54);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-block-passion .product-block-kicker {
  color: rgba(236, 236, 236, 0.62);
}

.product-block-live .product-block-kicker {
  color: rgba(236, 236, 236, 0.62);
}

.product-sequence {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(236, 236, 236, 0.82);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-sequence-index {
  color: rgba(236, 236, 236, 0.88);
}

.product-sequence-divider {
  color: rgba(236, 236, 236, 0.46);
  letter-spacing: 0;
}

.product-sequence-label {
  color: rgba(236, 236, 236, 0.56);
  display: none;
}

.product-context-row .product-sequence {
  flex: 0 0 auto;
  margin-top: 0;
}

.product-context-row .product-block-kicker {
  margin: 0;
}

.product-block-featured-live .product-sequence {
  color: rgba(236, 236, 236, 0.76);
}

.product-block-featured-passion .product-sequence {
  color: rgba(236, 236, 236, 0.76);
}

.product-block-featured-live .product-sequence-index {
  color: #29a146;
}

.product-block-featured-live .product-sequence-divider {
  color: rgba(41, 161, 70, 0.54);
}

.product-block-featured-passion .product-sequence-index {
  color: #d24f29;
}

.product-block-featured-passion .product-sequence-divider {
  color: rgba(210, 79, 41, 0.54);
}

.product-block-featured-passion .product-block-title {
  font-size: 44px;
  font-weight: 600;
}

.product-block-featured-live .product-block-title {
  font-size: 44px;
  font-weight: 600;
}

.product-block-passion .product-block-title {
  line-height: 0.98;
}

.product-block-title {
  margin: 0;
  color: #ececec;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 0.95;
}

.product-block-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.case-study-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.case-study-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(41, 161, 70, 0.18);
  background:
    radial-gradient(circle at 18% 18%, rgba(41, 161, 70, 0.12), rgba(41, 161, 70, 0) 46%),
    linear-gradient(180deg, rgba(236, 236, 236, 0.03), rgba(236, 236, 236, 0.01)),
    rgba(5, 5, 5, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(236, 236, 236, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.4);
}

.case-study-section .product-block-kicker {
  color: rgba(41, 161, 70, 0.9);
  font-weight: 600;
  letter-spacing: 0.28em;
}

.case-study-section .product-body-copy {
  color: rgba(236, 236, 236, 0.9);
  font-size: 17px;
  line-height: 1.75;
}

.case-study-accent {
  color: #29a146;
  font-weight: 600;
}

.case-study-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(236, 236, 236, 0.88);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.case-study-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.case-study-gallery-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-study-figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(236, 236, 236, 0.12);
  background: rgba(5, 5, 5, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.case-study-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.case-study-figure figcaption {
  padding: 12px 14px;
  color: rgba(236, 236, 236, 0.64);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-block-meta-centered {
  align-items: flex-start;
  text-align: left;
}

.product-block-meta-row {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(236, 236, 236, 0.12);
}

.product-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-meta-label {
  color: rgba(236, 236, 236, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-meta-value {
  color: #ececec;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.product-block-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.product-block-body-centered {
  align-items: flex-start;
  text-align: left;
}

.product-visual-placeholder {
  width: 100%;
  margin: 0;
}

.product-visual-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 24px;
  border: 1px dashed rgba(236, 236, 236, 0.24);
  background:
    linear-gradient(rgba(236, 236, 236, 0.02), rgba(236, 236, 236, 0.02)),
    #0a0a0a;
}

.product-block-passion .product-visual-frame {
  border-style: solid;
  border-color: rgba(236, 236, 236, 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgba(210, 79, 41, 0.12), rgba(210, 79, 41, 0) 28%),
    linear-gradient(180deg, rgba(236, 236, 236, 0.035), rgba(236, 236, 236, 0.01)),
    #0a0a0a;
  box-shadow:
    inset 0 1px 0 rgba(236, 236, 236, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.22);
}

.product-block-live .product-visual-frame {
  border-style: solid;
  border-color: rgba(236, 236, 236, 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgba(41, 161, 70, 0.12), rgba(41, 161, 70, 0) 28%),
    linear-gradient(180deg, rgba(236, 236, 236, 0.035), rgba(236, 236, 236, 0.01)),
    #0a0a0a;
  box-shadow:
    inset 0 1px 0 rgba(236, 236, 236, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.22);
}

.product-block-featured-passion .product-visual-frame-media {
  border-color: rgba(236, 236, 236, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(236, 236, 236, 0.08),
    0 22px 56px rgba(0, 0, 0, 0.34);
}

.product-block-featured-live .product-visual-frame {
  border-color: rgba(41, 161, 70, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(236, 236, 236, 0.08),
    0 22px 56px rgba(0, 0, 0, 0.34);
}

.product-visual-frame-media {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border-style: solid;
  border-color: rgba(236, 236, 236, 0.12);
  background: #090909;
}

.product-block-passion .product-visual-frame-media {
  border-color: rgba(236, 236, 236, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(236, 236, 236, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.28);
}

.product-visual-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-visual-label {
  color: rgba(236, 236, 236, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-visual-placeholder-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 300px;
}

.product-visual-placeholder-title {
  margin: 0;
  color: #ececec;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.product-visual-placeholder-note {
  margin: 0;
  color: rgba(236, 236, 236, 0.54);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

.product-body-copy {
  margin: 0;
  max-width: 760px;
  color: rgba(236, 236, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.product-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-tag {
  padding: 8px 12px;
  border: 1px solid rgba(236, 236, 236, 0.16);
  color: rgba(236, 236, 236, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.product-block-passion .product-tag {
  background: rgba(236, 236, 236, 0.03);
}

.product-block-live .product-tag {
  background: rgba(236, 236, 236, 0.03);
}

.product-block-featured-passion .product-block-meta-row {
  margin-top: 40px;
  padding-top: 32px;
}

.product-block-featured-live .product-block-meta-row {
  margin-top: 40px;
  padding-top: 32px;
}

.product-block-passion .product-block-meta-row {
  margin-top: 36px;
  padding-top: 28px;
}

.product-block-live .product-block-meta-row {
  margin-top: 36px;
  padding-top: 28px;
}

.product-block-passion .product-meta-item {
  padding-top: 12px;
  border-top: 1px solid rgba(236, 236, 236, 0.06);
}

.product-block-live .product-meta-item {
  padding-top: 12px;
  border-top: 1px solid rgba(236, 236, 236, 0.06);
}

.product-block-passion .product-block-link {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.product-block-live .product-block-link {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.product-block-passion .product-block-link:hover,
.product-block-passion .product-block-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.product-block-live .product-block-link:hover,
.product-block-live .product-block-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.product-block-featured-passion .product-block-link {
  font-weight: 600;
}

.product-block-featured-live .product-block-link {
  font-weight: 600;
}

.product-block-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  justify-content: center;
  padding: 16px;
  color: #050505;
  background: #ececec;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 140ms ease, transform 140ms ease;
}

.product-block-link::after {
  display: none;
}

.product-block-link:hover,
.product-block-link:focus-visible {
  color: #050505;
  opacity: 0.92;
  transform: translateY(-1px);
}

.product-block-link[aria-disabled="true"] {
  pointer-events: none;
}

.product-block-link-full {
  display: flex;
  width: 100%;
}

.product-block-link-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.product-block-link-split {
  display: flex;
  width: 100%;
}

.product-block-link-row-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 4px;
}

.product-block-link-full-row {
  display: flex;
  grid-column: 1 / -1;
  width: 100%;
}

.hero-nameplate {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.drag-guide {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 20;
  overflow: visible;
}

.drag-guide-line {
  stroke: #f61254;
  stroke-width: 1px;
  stroke-dasharray: 5 5;
  opacity: 0;
}

.drag-guide-label {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  border-radius: 2px;
  background: rgba(246, 18, 84, 0.8);
  color: #ececec;
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.6;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 0;
  z-index: 25;
  white-space: nowrap;
}

.drag-guide-text {
  display: inline-block;
  white-space: pre;
}

.blank-selection-box {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 0.5px solid rgba(41, 161, 70, 0.24);
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0) scale(1);
  transform-origin: center;
  z-index: 26;
  transition: opacity 220ms ease, transform 220ms ease;
}

.blank-selection-box .interactive-corner {
  opacity: 1;
  background: rgba(236, 236, 236, 0.24);
  border-color: rgba(41, 161, 70, 0.24);
}

.blank-selection-box .interactive-corner-top-left {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.blank-selection-box .interactive-corner-top-right {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.blank-selection-box .interactive-corner-bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.blank-selection-box .interactive-corner-bottom-right {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}

.draggable-item {
  position: absolute;
  display: block;
  width: max-content;
  margin: 0;
  user-select: none;
  touch-action: none;
  pointer-events: auto;
  z-index: 30;
}

.name-layer {
  font-family: "Jersey 15", sans-serif;
  font-size: clamp(88px, 24vw, 192px);
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
  letter-spacing: 0;
}

.name-layer-mask {
  display: block;
  overflow: hidden;
}

.name-layer-text {
  display: block;
  transform: translateY(112%);
  animation: name-mask-slide-up 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.copy-layer {
  color: rgba(236, 236, 236, 0.54);
  font-family: "Inter", sans-serif;
  text-align: center;
  white-space: nowrap;
}

.role-layer {
  font-size: clamp(12px, 1.35vw, 16px);
  font-weight: 400;
  letter-spacing: 1em;
  line-height: clamp(15px, 1.6vw, 19px);
}

.caption-layer {
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 300;
  line-height: clamp(16px, 1.9vw, 20px);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.editable-text {
  display: block;
  text-align: center;
  margin-inline: auto;
}

.caption-layer-text {
  position: relative;
}

.caption-layer-text::after {
  content: "|";
  position: absolute;
  top: 0;
  left: calc(100% + 0.08em);
  opacity: 0;
  pointer-events: none;
}

.caption-layer.is-caret-visible .caption-layer-text::after {
  opacity: 1;
}

.editable-text[contenteditable="true"] {
  outline: none;
}

.repairable-title {
  position: relative;
  width: fit-content;
  user-select: none;
  touch-action: none;
}

.repairable-text-content {
  position: relative;
  display: inline-block;
  min-width: 1px;
  outline: none;
}

.repairable-text-content[contenteditable="true"] {
  outline: none;
}

.repairable-text-content::after {
  content: "|";
  position: absolute;
  top: 0;
  left: calc(100% + 0.08em);
  opacity: 0;
  pointer-events: none;
}

.repairable-title.is-caret-visible .repairable-text-content::after {
  opacity: 1;
}

.repairable-title::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(236, 236, 236, 0);
  background: rgba(236, 236, 236, 0);
  transition: border-color 120ms ease, background 120ms ease;
  pointer-events: none;
}

.repairable-title::before {
  content: "DRAG TO MOVE";
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 2px;
  background: #ececec;
  color: #050505;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.repairable-title .text-edit-corner {
  opacity: 0;
}

.repairable-title:hover::after {
  border-color: #ececec;
  background: rgba(236, 236, 236, 0.08);
}

.repairable-title.is-bot-hover::after {
  border-style: dashed;
  border-color: #ececec;
  background: rgba(236, 236, 236, 0.08);
}

.repairable-title.is-selected::after {
  border-style: dashed;
  border-color: rgba(236, 236, 236, 0.54);
  background: transparent;
}

.repairable-title.is-selected::before,
.repairable-title.is-dragging::before,
.repairable-title.is-bot-pressing::before {
  opacity: 1;
}

.repairable-title.is-dragging::after,
.repairable-title.is-bot-pressing::after {
  border-style: solid;
  border-color: #ececec;
  background: rgba(236, 236, 236, 0.08);
}

.repairable-title.is-text-editing::after {
  inset: -4px;
  border-color: #29a146;
  border-style: solid;
  border-width: 0.5px;
  background: transparent;
}

.repairable-title.is-text-editing::before {
  opacity: 0;
}

.repairable-title.is-text-editing .text-edit-corner {
  opacity: 1;
}

.draggable-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(236, 236, 236, 0);
  background: rgba(236, 236, 236, 0);
  transition: border-color 120ms ease, background 120ms ease;
  pointer-events: none;
}

.draggable-item::before {
  content: "DRAG TO MOVE";
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 2px;
  background: #ececec;
  color: #050505;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 16px;
  -webkit-text-stroke: 0 transparent;
  text-stroke: 0 transparent;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.draggable-item:hover::after {
  border-color: #ececec;
  background: rgba(236, 236, 236, 0.08);
}

.draggable-item.is-bot-hover::after {
  border-style: dashed;
  border-color: #ececec;
  background: rgba(236, 236, 236, 0.08);
}

.draggable-item.is-selected::after {
  border-style: dashed;
  border-color: rgba(236, 236, 236, 0.54);
  background: transparent;
}

.draggable-item.is-selected::before,
.draggable-item.is-dragging::before,
.draggable-item.is-bot-pressing::before {
  opacity: 1;
}

.draggable-item.is-text-editing::before {
  opacity: 0;
}

.draggable-item.is-dragging::after {
  border-style: solid;
  border-color: #ececec;
  background: rgba(236, 236, 236, 0.08);
}

.draggable-item.is-bot-pressing::after {
  border-style: solid;
  border-color: #ececec;
  background: rgba(236, 236, 236, 0.08);
}

.draggable-item.is-text-editing::after {
  inset: -4px;
  border-style: solid;
  border-width: 0.5px;
  border-color: #29a146;
  background: transparent;
}

.text-edit-corner {
  opacity: 0;
}

.draggable-item.is-text-editing .text-edit-corner {
  opacity: 1;
}

.name-layer-filled {
  color: #ececec;
}

.name-layer-outline {
  color: transparent;
}

.name-layer-filled .name-layer-text {
  color: #ececec;
}

.name-layer-outline .name-layer-text {
  color: transparent;
  -webkit-text-stroke: 1px #ececec;
  text-stroke: 1px #ececec;
  animation-delay: 120ms;
}

.personal-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 41px;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0);
  z-index: 999;
}

.return-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 41px;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0);
  opacity: 0;
  z-index: 998;
}

.personal-cursor svg {
  display: block;
  width: 22px;
  height: 22px;
}

.return-cursor svg {
  display: block;
  width: 22px;
  height: 22px;
}

.personal-cursor-label {
  position: absolute;
  top: 18px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 23px;
  padding: 5px 10px;
  border-radius: 2px;
  background: #ececec;
  color: #050505;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.return-cursor {
  width: 115px;
}

.return-cursor-label {
  top: 18px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #29a146;
  color: #ececec;
  padding: 5px 10px;
  border-radius: 2px;
}

.return-cursor-name {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.return-cursor-comment {
  display: none;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  color: #ececec;
  white-space: nowrap;
}

.return-cursor-prompt {
  display: none;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #ececec;
  white-space: nowrap;
}

.return-cursor.is-commenting {
  width: auto;
}

.return-cursor.is-commenting .return-cursor-label,
.return-cursor.is-prompting .return-cursor-label {
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2px;
  padding: 6px 16px 6px 11px;
  border-radius: 2px 20px 20px 20px;
}

.return-cursor.is-commenting .return-cursor-name,
.return-cursor.is-prompting .return-cursor-name {
  font-size: 11px;
  line-height: 15px;
  opacity: 0.8;
}

.return-cursor.is-commenting .return-cursor-comment {
  display: inline-block;
}

@keyframes name-mask-slide-up {
  from {
    transform: translateY(112%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes site-title-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.return-cursor.is-prompting {
  width: auto;
}

.return-cursor.is-prompting .return-cursor-prompt {
  display: inline-block;
}

@media (pointer: coarse) {
  html,
  body,
  body *,
  body *::before,
  body *::after {
    cursor: auto;
  }
}

@media (max-width: 640px) {
  .name-layer {
    font-size: clamp(72px, 22vw, 132px);
  }

  .role-layer {
    font-size: clamp(11px, 3.2vw, 14px);
    line-height: clamp(14px, 3.8vw, 18px);
    letter-spacing: 0.6em;
  }

  .caption-layer {
    max-width: calc(100vw - 64px);
    padding-inline: 32px;
    font-size: clamp(7px, 2vw, 10px);
    line-height: clamp(11px, 3vw, 14px);
    white-space: nowrap;
  }

  .corner-frame-link {
    left: 32px;
    bottom: 32px;
    width: min(76px, 24vw);
    transform: none;
  }

  .top-menu {
    display: none;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px;
    max-width: none;
    background: #050505;
    opacity: 1;
    animation: none;
    z-index: 44;
  }

  body.menu-open .top-menu {
    display: flex;
  }

  .top-menu-toggle {
    display: block;
  }

  .top-menu-link {
    font-size: 24px;
    line-height: 1;
    color: #ececec;
    text-align: center;
  }

  .page-shell {
    padding: 100px 32px 48px;
  }

  .page-copy {
    display: none;
  }

  .product-block {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    padding-top: 32px;
  }

  .passion-repo-callout {
    margin-top: 16px;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .passion-repo-callout-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .passion-repo-callout-link {
    width: 100%;
    min-width: 0;
  }

  .product-block-passion,
  .product-block-live,
  .product-block-featured-passion {
    padding: 24px;
  }

  .product-header-badges {
    gap: 8px;
  }

  .product-context-row {
    gap: 10px;
    align-items: flex-start;
  }

  .product-sequence {
    font-size: 14px;
  }

  .product-block-featured-passion .product-block-title {
    font-size: 36px;
  }

  .product-block-featured-live .product-block-title {
    font-size: 36px;
  }

  .case-study-layout {
    gap: 24px;
  }

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

  .case-study-section .product-body-copy {
    font-size: 16px;
    line-height: 1.7;
  }

  .case-study-section .product-block-kicker {
    letter-spacing: 0.24em;
  }

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

  .page-panel-passion .page-heading {
    white-space: normal;
  }

  .page-panel-live .page-heading {
    white-space: normal;
  }

  .product-block-top {
    display: contents;
  }

  .product-block-meta {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-block-header,
  .product-block-body,
  .product-visual-column {
    display: contents;
  }

  .product-visual-placeholder {
    order: 1;
  }

  .product-block-kicker {
    order: 2;
    margin-top: 8px;
  }

  .product-block-title {
    order: 3;
    margin-top: 8px;
  }

  .product-body-copy {
    order: 4;
    max-width: none;
    font-size: 16px;
    line-height: 1.7;
  }

  .product-body-copy + .product-body-copy {
    margin-top: 8px;
  }

  .product-tag-list {
    order: 5;
    margin-top: 8px;
    margin-bottom: 0;
    gap: 12px;
  }

  .product-block-meta-row {
    order: 6;
    margin-top: 16px;
    padding-top: 16px;
  }

  .product-block-link-full {
    order: 7;
    margin-top: 32px;
  }

  .product-block-link-row {
    order: 7;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .project-lock-overlay {
    right: -24px;
    left: -24px;
    padding: 24px;
  }

  .project-lock-mount,
  .project-lock-placeholder {
    min-height: 600px;
  }

  .project-lock-panel {
    padding: 24px;
  }

  .project-lock-title {
    font-size: 24px;
  }

  .project-lock-form {
    grid-template-columns: 1fr;
  }

  .project-lock-input-wrap {
    width: 100%;
  }

  .project-lock-button {
    width: 100%;
  }

  .product-visual-placeholder {
    width: 100%;
  }

  .product-visual-frame {
    min-height: 224px;
    margin-bottom: 8px;
  }

  .product-visual-frame-media {
    min-height: auto;
  }

  .product-visual-placeholder-title {
    font-size: 24px;
  }

  .product-visual-placeholder-note {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .name-layer {
    font-size: clamp(64px, 21vw, 108px);
  }

  .role-layer {
    letter-spacing: 0.45em;
  }

  .corner-frame-link {
    width: min(72px, 28vw);
    left: 32px;
    bottom: 32px;
  }

  .caption-layer {
    max-width: calc(100vw - 64px);
    padding-inline: 32px;
    font-size: clamp(6px, 1.6vw, 8px);
    line-height: clamp(10px, 2.4vw, 12px);
    white-space: nowrap;
  }

  .product-block-title {
    font-size: 40px;
  }

  .product-block-summary {
    font-size: 16px;
  }

  .product-body-copy,
  .product-meta-value {
    font-size: 15px;
  }

  .product-visual-frame {
    min-height: 180px;
    padding: 20px;
  }

  .product-body-copy {
    font-size: 15px;
  }
}
