:root {
  --bg: #f4f6f4;
  --bg-soft: #eef3f1;
  --graphite: #26302f;
  --graphite-2: #3a4543;
  --muted: #687573;
  --muted-2: #8c9693;
  --line: rgba(38, 48, 47, 0.12);
  --line-strong: rgba(38, 48, 47, 0.22);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --mist: #dcecea;
  --mist-2: #edf2ef;
  --red: #f01824;
  --red-dark: #c90f1a;
  --shadow: 0 24px 70px rgba(35, 45, 44, 0.12);
  --shadow-soft: 0 14px 42px rgba(35, 45, 44, 0.08);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--graphite);
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(38, 48, 47, 0.045) calc(100% - 1px)),
    linear-gradient(180deg, transparent calc(100% - 1px), rgba(38, 48, 47, 0.035) calc(100% - 1px)),
    var(--bg);
  background-size: 96px 96px;
  font-family: "Segoe UI", Aptos, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--red);
}

.site-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.omega-mark {
  position: fixed;
  top: -15vw;
  left: 50%;
  z-index: -4;
  transform: translateX(-50%);
  color: rgba(38, 48, 47, 0.035);
  font-size: min(64vw, 920px);
  font-weight: 800;
  line-height: 0.9;
  pointer-events: none;
}

.motion-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.plane,
.trace {
  position: absolute;
  display: block;
  border: 1px solid rgba(38, 48, 47, 0.07);
  background: rgba(220, 236, 234, 0.42);
  backdrop-filter: blur(10px);
}

.plane-a {
  width: 36vw;
  height: 19vw;
  left: 11vw;
  top: 48vh;
  border-radius: 18px;
  animation: drift-a 18s ease-in-out infinite alternate;
}

.plane-b {
  width: 20vw;
  height: 20vw;
  right: 12vw;
  top: 22vh;
  border-radius: 50%;
  opacity: 0.34;
  animation: drift-b 22s ease-in-out infinite alternate;
}

.plane-c {
  width: 18vw;
  height: 8vw;
  right: 22vw;
  bottom: 7vh;
  border-radius: 999px;
  opacity: 0.4;
  animation: drift-c 20s ease-in-out infinite alternate;
}

.trace {
  width: 1px;
  min-height: 280px;
  background: rgba(38, 48, 47, 0.11);
  border: 0;
}

.trace::before,
.trace::after {
  content: "";
  position: absolute;
  left: -2px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--graphite);
}

.trace::before {
  top: 28%;
}

.trace::after {
  top: 43%;
  background: rgba(38, 48, 47, 0.22);
}

.trace-a {
  top: 19vh;
  left: 17vw;
}

.trace-b {
  top: 14vh;
  right: 19vw;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 34px), var(--max));
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  padding: 0 12px 0 18px;
  border: 1px solid rgba(38, 48, 47, 0.1);
  border-radius: 999px;
  background: rgba(248, 250, 248, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(35, 45, 44, 0.08);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(38, 48, 47, 0.16);
  background: rgba(248, 250, 248, 0.9);
  box-shadow: 0 20px 54px rgba(35, 45, 44, 0.12);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.58);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 0;
  text-transform: uppercase;
  line-height: 1;
}

.brand-text strong,
.brand-text span {
  font-size: 13px;
  font-weight: 800;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
}

.signal-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 24, 36, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  transform: translateX(-50%) scale(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--graphite);
  background: rgba(38, 48, 47, 0.05);
}

.site-nav a.is-active::after {
  transform: translateX(-50%) scale(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.stage-rail {
  position: fixed;
  right: clamp(14px, 4vw, 62px);
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 11px;
  transform: translateY(-50%);
}

.stage-rail::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -44px;
  bottom: -44px;
  width: 1px;
  background: rgba(38, 48, 47, 0.12);
}

.stage-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 17px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.stage-link::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(38, 48, 47, 0.22);
  border-radius: 50%;
  background: var(--bg);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.stage-link.is-active {
  color: var(--graphite);
}

.stage-link.is-active::before {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(240, 24, 36, 0.08);
}

.hero,
.section-pad {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: calc(var(--header-h) + 72px) 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
}

.micro-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-number {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  background: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 850;
  line-height: 0.94;
}

.hero h1 {
  max-width: 820px;
}

.hero-lede {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--graphite-2);
  font-size: clamp(18px, 2.2vw, 27px);
  line-height: 1.35;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.36;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.button:hover::after {
  opacity: 1;
  transform: scale(1.16);
}

.button-primary {
  border-color: transparent;
  color: #fff;
  background: var(--graphite);
  box-shadow: 0 16px 30px rgba(38, 48, 47, 0.16);
}

.button-primary::after {
  background: var(--red);
  opacity: 1;
}

.button-primary:hover {
  background: #111716;
}

.button-quiet {
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.48);
}

.button-quiet:hover {
  border-color: rgba(240, 24, 36, 0.32);
  background: rgba(255, 255, 255, 0.76);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.soft-panel,
.contact-form,
.contact-card,
.service-doc {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--glass);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 0;
  top: 92px;
  z-index: 3;
  width: min(450px, 91%);
  padding: 34px;
  border-radius: var(--radius);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  max-width: 360px;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 850;
  line-height: 1;
}

.hero-card p {
  margin: 22px 0 0;
  color: var(--graphite-2);
  font-size: 15px;
}

.image-plane {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: 78%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.image-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(219, 236, 234, 0.38);
  mix-blend-mode: screen;
}

.image-plane img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.98) brightness(1.08);
}

.hero-status {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  gap: 11px;
}

.hero-status span {
  width: 72px;
  height: 30px;
  border-radius: 999px;
  background: rgba(38, 48, 47, 0.11);
}

.hero-status span:first-child {
  position: relative;
  background: var(--graphite);
}

.hero-status span:first-child::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 24, 36, 0.14);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(46px, 8vw, 96px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.hero-metrics div {
  min-height: 112px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-metrics strong {
  display: block;
  color: var(--graphite);
  font-size: clamp(22px, 2.5vw, 35px);
  font-weight: 850;
  line-height: 1.05;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section-pad {
  padding: clamp(76px, 12vw, 150px) 0;
}

section[id] {
  scroll-margin-top: 118px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading .micro-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(38px, 6vw, 78px);
}

.section-heading > p:not(.micro-label) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.studio-panel {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius);
}

.studio-panel::before,
.service-doc::before,
.contact-card::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

.studio-panel p {
  margin: 0;
  color: var(--graphite-2);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.studio-panel p + p {
  margin-top: 22px;
}

.value-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.value-cloud span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.studio-stack {
  position: relative;
}

.studio-stack::before,
.studio-stack::after {
  content: "";
  position: absolute;
  width: 108px;
  height: 108px;
  border-color: var(--line-strong);
  pointer-events: none;
}

.studio-stack::before {
  top: -18px;
  left: -18px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.studio-stack::after {
  right: -18px;
  bottom: -18px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.studio-image {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow-soft);
}

.studio-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.7) brightness(1.04);
}

.mini-readout {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 2;
  width: min(230px, 74%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.mini-readout span,
.work-copy span,
.stack-glass span,
.service-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-readout strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1;
}

.mini-readout a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 850;
}

.portfolio-scroll {
  position: relative;
  min-height: auto;
}

.portfolio-stage {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 0.92fr) minmax(112px, 0.18fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
}

.work-copy-panel {
  position: sticky;
  top: 112px;
  z-index: 4;
  min-height: clamp(460px, 58svh, 560px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  overflow: hidden;
}

.work-copy-panel::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(240, 24, 36, 0.08);
}

.work-copy-list {
  position: relative;
  flex: 1;
  min-height: 300px;
}

.work-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.work-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.work-copy span {
  color: var(--red-dark);
}

.work-copy h3 {
  max-width: 520px;
  margin: 16px 0;
  color: var(--graphite);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 850;
  line-height: 0.96;
}

.work-copy p {
  max-width: 470px;
  margin: 0;
  color: var(--graphite-2);
  font-size: clamp(17px, 1.7vw, 20px);
}

.work-stack {
  position: relative;
  display: grid;
  gap: 28px;
  min-height: auto;
  perspective: 1400px;
}

.stack-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) + 8px);
  background: var(--mist);
  box-shadow: 0 34px 100px rgba(35, 45, 44, 0.16);
  opacity: 0.72;
  transform-origin: 50% 70%;
  transition: transform 760ms cubic-bezier(0.2, 0.75, 0.18, 1), opacity 520ms ease, filter 520ms ease, box-shadow 520ms ease;
  will-change: transform, opacity;
}

.stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(244, 246, 244, 0.02), rgba(22, 28, 28, 0.34));
  pointer-events: none;
}

.stack-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
}

.stack-card.is-active {
  opacity: 1;
  filter: saturate(0.96) contrast(1);
  box-shadow: 0 40px 120px rgba(35, 45, 44, 0.2);
}

.stack-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(560px, 70svh, 680px);
  object-fit: cover;
  filter: saturate(0.76) contrast(0.98) brightness(1.03);
  transform: scale(1.08);
  clip-path: inset(0 0 0 0 round 34px);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.18, 1), filter 700ms ease, clip-path 700ms ease;
}

.stack-card.is-active img {
  transform: scale(1.01);
  filter: saturate(0.9) contrast(1.02) brightness(1.02);
}

.stack-card:hover {
  box-shadow: 0 40px 120px rgba(35, 45, 44, 0.2);
}

.stack-card:hover img {
  filter: saturate(0.96) contrast(1.03) brightness(1.04);
}

.stack-glass {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius-sm);
  color: #fff;
  background: rgba(18, 24, 24, 0.36);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  opacity: 0.88;
  transition: transform 420ms ease, opacity 420ms ease;
}

.stack-card.is-active .stack-glass,
.stack-card:hover .stack-glass {
  opacity: 1;
}

.stack-glass span {
  color: rgba(255, 255, 255, 0.68);
}

.stack-glass strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1;
}

.work-stage-nav {
  position: relative;
  position: sticky;
  top: 150px;
  display: grid;
  gap: 13px;
}

.work-stage-nav::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -28px;
  bottom: -28px;
  width: 1px;
  background: rgba(38, 48, 47, 0.14);
}

.work-stage-nav button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  color: var(--muted-2);
  background: transparent;
  padding: 0;
  font-size: 11px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.work-stage-nav button span {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(38, 48, 47, 0.22);
  border-radius: 50%;
  background: var(--bg);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.work-stage-nav button:hover,
.work-stage-nav button.is-active {
  color: var(--graphite);
}

.work-stage-nav button:hover {
  transform: translateX(2px);
}

.work-stage-nav button.is-active span {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(240, 24, 36, 0.08);
}

.signal-section {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 140px) 0;
}

.signal-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 7vw, 88px);
}

.signal-heading .micro-label {
  grid-column: 1 / -1;
  margin: 0;
}

.signal-heading h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 850;
  line-height: 0.93;
  text-transform: uppercase;
}

.signal-heading > p:not(.micro-label) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
}

.portfolio-lock-section {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto;
  padding: 0;
}

.portfolio-lock-inner {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.44fr) minmax(0, 1fr) minmax(92px, 0.12fr);
  grid-template-rows: auto minmax(240px, 1fr);
  align-items: end;
  gap: clamp(12px, 2.4svh, 24px) clamp(18px, 3vw, 42px);
  padding: clamp(82px, 9.5svh, 106px) 0 clamp(16px, 2.8svh, 28px);
}

.portfolio-lock-inner::before {
  content: "\03A9";
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: -1;
  transform: translate(-50%, -50%) translateY(var(--archive-shift, 0));
  color: rgba(38, 48, 47, 0.035);
  font-size: min(48vw, 660px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.portfolio-info-panel {
  position: relative;
  z-index: 4;
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(250px, 0.24fr) minmax(350px, 0.3fr);
  gap: clamp(14px, 3vw, 42px);
  align-items: end;
}

.portfolio-info-panel > .micro-label {
  grid-column: 1 / -1;
  margin: 0;
}

.portfolio-info-panel h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 850;
  line-height: 0.93;
  text-transform: uppercase;
}

.portfolio-intro {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
}

.portfolio-active-info {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto minmax(78px, auto) minmax(52px, auto) auto;
  align-content: start;
  gap: 8px;
  align-items: start;
  height: clamp(286px, 31svh, 318px);
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease;
}

.portfolio-active-info.is-updating {
  opacity: 0.58;
  transform: translateY(5px);
}

.portfolio-active-info > .micro-label {
  grid-column: 1 / -1;
  margin: 0;
}

.portfolio-active-info .signal-number {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
}

.portfolio-active-info h3 {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 850;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}

.portfolio-active-info > p:not(.micro-label) {
  grid-column: 1 / -1;
  grid-row: 4;
  margin: 0;
  color: var(--graphite-2);
  font-size: clamp(12px, 0.96vw, 14px);
  line-height: 1.42;
}

.portfolio-active-info dl {
  grid-column: 1 / -1;
  grid-row: 5;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.portfolio-active-info dl div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.portfolio-active-info dt {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-active-info dd {
  margin: 3px 0 0;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-row-viewport {
  position: relative;
  z-index: 2;
  grid-column: 1 / 3;
  width: 100%;
  overflow: hidden;
  align-self: stretch;
}

.portfolio-row-viewport::before,
.portfolio-row-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: clamp(58px, 9vw, 160px);
  pointer-events: none;
}

.portfolio-row-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), rgba(244, 246, 244, 0));
}

.portfolio-row-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), rgba(244, 246, 244, 0));
}

.portfolio-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(320px, 58vw, 720px);
  grid-template-rows: 1fr;
  gap: clamp(16px, 2.4vw, 32px);
  width: max-content;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card {
  position: relative;
  min-height: clamp(260px, 34svh, 360px);
  border: 1px solid rgba(38, 48, 47, 0.12);
  border-radius: calc(var(--radius) + 10px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 80px rgba(35, 45, 44, 0.12);
  cursor: pointer;
  opacity: 0.66;
  filter: saturate(0.72) contrast(0.96);
  transform: translateY(0) scale(0.965);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(240, 24, 36, 0);
  border-radius: inherit;
  pointer-events: none;
  box-shadow: none;
  transition: border-color 420ms ease, box-shadow 420ms ease;
}

.portfolio-card.is-active {
  opacity: 1;
  filter: none;
  transform: translateY(-10px) scale(1);
  box-shadow: 0 42px 130px rgba(35, 45, 44, 0.2);
}

.portfolio-card.is-active::after {
  border-color: rgba(240, 24, 36, 0.42);
  box-shadow:
    0 0 0 1px rgba(240, 24, 36, 0.12),
    0 22px 70px rgba(20, 20, 20, 0.12);
}

.portfolio-card.is-before {
  opacity: 0.34;
  filter: saturate(0.55) blur(0.4px);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 34svh, 360px);
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98) brightness(1.03);
  transform: scale(1.055);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.18, 1), filter 600ms ease;
}

.portfolio-card.is-active img,
.portfolio-card:hover img {
  transform: scale(1.015);
  filter: saturate(0.92) contrast(1.02) brightness(1.03);
}

.portfolio-card:hover {
  box-shadow: 0 48px 140px rgba(35, 45, 44, 0.22);
}

.portfolio-card.is-active .signal-card-dot,
.portfolio-card:hover .signal-card-dot {
  opacity: 1;
  animation: signal-pulse 720ms ease;
}

.portfolio-card .signal-card-frame {
  right: auto;
  max-width: calc(100% - 44px);
  padding: 12px 15px;
  border-radius: 999px;
}

.portfolio-card .signal-card-frame strong {
  display: none;
}

.portfolio-card .signal-card-frame span {
  margin: 0;
  white-space: nowrap;
}

.portfolio-lock-inner .signal-work-nav {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

.signal-archive {
  position: relative;
  min-height: calc(100svh - 118px);
}

.signal-archive::before {
  content: "\03A9";
  position: absolute;
  left: 50%;
  top: 16%;
  z-index: -1;
  transform: translateX(-50%) translateY(var(--archive-shift, 0));
  color: rgba(38, 48, 47, 0.035);
  font-size: min(48vw, 660px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.signal-pin {
  position: relative;
  top: auto;
  min-height: calc(100svh - 118px);
  display: grid;
  grid-template-columns: minmax(310px, 0.48fr) minmax(0, 1fr) minmax(106px, 0.16fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  isolation: isolate;
}

.signal-pin::before,
.signal-pin::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(38, 48, 47, 0.1);
  pointer-events: none;
}

.signal-pin::before {
  left: 30%;
  right: 8%;
  top: 17%;
  height: 1px;
  transform-origin: left center;
  animation: line-scan 8s ease-in-out infinite alternate;
}

.signal-pin::after {
  right: 10.6%;
  top: 14%;
  bottom: 17%;
  width: 1px;
  transform-origin: top center;
  animation: line-scan-y 9s ease-in-out infinite alternate;
}

.signal-info {
  position: relative;
  min-height: clamp(480px, 64svh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius);
  overflow: hidden;
}

.signal-info::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(240, 24, 36, 0.08);
}

.signal-copy-wrap {
  position: relative;
  flex: 1;
  min-height: 360px;
}

.signal-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(22px);
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.signal-copy.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.signal-number {
  display: block;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-copy h3 {
  margin: 16px 0 18px;
  color: var(--graphite);
  font-size: clamp(30px, 3.8vw, 56px);
  font-weight: 850;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.signal-copy p {
  max-width: 480px;
  margin: 0;
  color: var(--graphite-2);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.45;
}

.signal-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.signal-copy dl div {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.signal-copy dt {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-copy dd {
  margin: 3px 0 0;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-card-stage {
  position: relative;
  min-height: clamp(560px, 72svh, 720px);
  overflow: hidden;
  perspective: none;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 82%, transparent 100%);
}

.signal-card-stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 12%;
  top: 20px;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(38, 48, 47, 0.16), rgba(38, 48, 47, 0));
  pointer-events: none;
}

.signal-card {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(86%, 820px);
  height: 100%;
  border: 1px solid rgba(38, 48, 47, 0.12);
  border-radius: calc(var(--radius) + 10px);
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 80px rgba(35, 45, 44, 0.12);
  cursor: pointer;
  opacity: 0.24;
  transform-origin: 50% 54%;
  transition: transform 220ms ease-out, opacity 180ms ease, filter 220ms ease, box-shadow 420ms ease;
  will-change: transform, opacity;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(244, 246, 244, 0.03), rgba(18, 24, 24, 0.34)),
    rgba(220, 236, 234, 0.08);
  pointer-events: none;
}

.signal-card.is-active {
  opacity: 1;
  filter: none;
  box-shadow: 0 42px 130px rgba(35, 45, 44, 0.2);
}

.signal-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(560px, 72svh, 720px);
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98) brightness(1.03);
  transform: scale(1.06);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.18, 1), filter 600ms ease;
}

.signal-card.is-active img,
.signal-card:hover img {
  transform: scale(1.015);
  filter: saturate(0.92) contrast(1.02) brightness(1.03);
}

.signal-card:hover {
  box-shadow: 0 48px 140px rgba(35, 45, 44, 0.22);
}

.signal-card-dot {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 4;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.65;
  box-shadow: 0 0 0 6px rgba(240, 24, 36, 0.08);
}

.signal-card.is-active .signal-card-dot,
.signal-card:hover .signal-card-dot {
  opacity: 1;
  animation: signal-pulse 720ms ease;
}

.signal-card.is-pulsing .signal-card-dot {
  animation: signal-pulse 720ms ease both;
}

.signal-card:focus-visible,
.signal-work-nav button:focus-visible,
.case-back:focus-visible {
  outline: 2px solid rgba(240, 24, 36, 0.72);
  outline-offset: 5px;
}

.signal-card-frame {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-sm);
  background: rgba(18, 24, 24, 0.38);
  backdrop-filter: blur(18px);
}

.signal-card-frame span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.signal-card-frame strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 3.4vw, 46px);
  font-weight: 850;
  line-height: 0.96;
  text-transform: uppercase;
}

.signal-work-nav {
  position: relative;
  display: grid;
  gap: 13px;
}

.signal-work-nav::before {
  content: "";
  position: absolute;
  left: 6px;
  top: -34px;
  bottom: -34px;
  width: 1px;
  background: rgba(38, 48, 47, 0.14);
}

.signal-work-nav button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 0;
  padding: 0;
  color: var(--muted-2);
  background: transparent;
  font-size: 11px;
  font-weight: 850;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.signal-work-nav button span {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(38, 48, 47, 0.22);
  border-radius: 50%;
  background: var(--bg);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.signal-work-nav button:hover,
.signal-work-nav button.is-active {
  color: var(--graphite);
}

.signal-work-nav button:hover {
  transform: translateX(2px);
}

.signal-work-nav button.is-active span {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(240, 24, 36, 0.08);
}

.case-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.case-overlay[hidden] {
  display: none;
}

.case-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.case-scrim {
  position: absolute;
  inset: 0;
  background: rgba(244, 246, 244, 0.7);
  backdrop-filter: blur(16px);
}

.case-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(780px, calc(100svh - 36px));
  overflow: auto;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 245, 243, 0.7));
  backdrop-filter: blur(30px);
  box-shadow: 0 40px 150px rgba(35, 45, 44, 0.24);
  opacity: 0;
  transform: translateY(28px) scale(0.965);
  transition: opacity 360ms ease, transform 560ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.case-overlay.is-open .case-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.case-panel::before {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
  animation: signal-pulse 720ms ease both;
}

.case-back {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  cursor: pointer;
}

.case-back span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.case-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.case-lines span {
  position: absolute;
  background: rgba(38, 48, 47, 0.12);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.case-lines span:first-child {
  left: 0;
  top: 26%;
  width: 46%;
  height: 1px;
}

.case-lines span:nth-child(2) {
  right: 0;
  top: 66%;
  width: 36%;
  height: 1px;
  transform-origin: right center;
}

.case-lines span:nth-child(3) {
  left: 18%;
  top: 0;
  width: 1px;
  height: 36%;
  transform: scaleY(0);
  transform-origin: top center;
}

.case-overlay.is-open .case-lines span {
  transform: scaleX(1);
}

.case-overlay.is-open .case-lines span:nth-child(3) {
  transform: scaleY(1);
}

.case-panel h2 {
  max-width: 740px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(42px, 8vw, 94px);
  font-weight: 850;
  line-height: 0.92;
  text-transform: uppercase;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  max-width: 760px;
}

.case-meta div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.case-meta span {
  display: block;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--graphite);
  font-size: 12px;
  text-transform: uppercase;
}

.case-description {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--graphite-2);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.case-deliverables {
  margin-top: 42px;
  padding-bottom: 56px;
}

.case-deliverables > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-deliverables ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
  max-width: 700px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-deliverables li {
  color: var(--graphite);
  font-size: 16px;
  font-weight: 750;
}

.case-deliverables li::before {
  content: "/";
  margin-right: 8px;
  color: var(--red-dark);
}

[data-case-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.case-overlay.is-open [data-case-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.case-overlay.is-open [data-case-reveal]:nth-of-type(1) { transition-delay: 80ms; }
.case-overlay.is-open [data-case-reveal]:nth-of-type(2) { transition-delay: 140ms; }
.case-overlay.is-open [data-case-reveal]:nth-of-type(3) { transition-delay: 200ms; }

body.case-open {
  overflow: hidden;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 28px;
  padding: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.section-cta a:not(.button) {
  color: var(--red-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  appearance: none;
  text-align: left;
  color: var(--graphite);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 36px rgba(35, 45, 44, 0.06);
  cursor: pointer;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 54px;
  height: 1px;
  background: rgba(38, 48, 47, 0.18);
  transform: scaleX(0.3);
  transform-origin: right center;
  transition: transform 240ms ease, background 240ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(220, 236, 234, 0.18));
  opacity: 0;
  transition: opacity 240ms ease;
}

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

.service-card:hover,
.service-card.is-active,
.service-card[aria-expanded="true"] {
  transform: translateY(-5px);
  border-color: rgba(240, 24, 36, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(35, 45, 44, 0.1);
}

.service-card:hover::before,
.service-card.is-active::before,
.service-card[aria-expanded="true"]::before {
  opacity: 1;
}

.service-card:hover::after,
.service-card.is-active::after,
.service-card[aria-expanded="true"]::after {
  background: rgba(240, 24, 36, 0.38);
  transform: scaleX(1);
}

.service-card .service-dot {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover .service-dot,
.service-card.is-active .service-dot,
.service-card[aria-expanded="true"] .service-dot {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 6px rgba(240, 24, 36, 0.08);
}

.service-card.is-pulsing .service-dot {
  animation: signal-pulse 620ms ease;
}

.service-card h3 {
  margin: 0 0 22px;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.08;
}

.service-card small {
  display: block;
  max-width: 180px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.service-doc {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  padding: 26px;
  border-radius: var(--radius);
}

.service-doc .micro-label {
  margin-bottom: 7px;
}

.service-doc h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.service-doc .service-actions {
  margin-top: 0;
  padding-right: 34px;
}

.service-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.service-overlay[hidden] {
  display: none;
}

.service-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-scrim {
  position: absolute;
  inset: 0;
  background: rgba(244, 246, 244, 0.68);
  backdrop-filter: blur(14px);
}

.service-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(760px, calc(100svh - 36px));
  overflow: auto;
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) + 10px);
  color: var(--graphite);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 245, 243, 0.68)),
    rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(28px);
  box-shadow: 0 38px 140px rgba(35, 45, 44, 0.22);
  opacity: 0;
  transform: translateY(26px) scale(0.965);
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.service-overlay.is-open .service-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-panel::before {
  content: "";
  position: absolute;
  right: 34px;
  top: 34px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(240, 24, 36, 0.08);
  animation: signal-pulse 720ms ease both;
}

.service-close {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(38, 48, 47, 0.14);
  border-radius: 50%;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-close:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 24, 36, 0.32);
  background: rgba(255, 255, 255, 0.88);
}

.service-close span {
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.service-close span:first-child {
  transform: rotate(45deg);
}

.service-close span:last-child {
  transform: rotate(-45deg);
}

.service-panel-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.service-panel-lines span {
  position: absolute;
  background: rgba(38, 48, 47, 0.12);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.18, 1);
}

.service-panel-lines span:first-child {
  left: 0;
  top: 26%;
  width: 42%;
  height: 1px;
}

.service-panel-lines span:nth-child(2) {
  right: 0;
  top: 62%;
  width: 38%;
  height: 1px;
  transform-origin: right center;
}

.service-panel-lines span:nth-child(3) {
  left: 18%;
  top: 0;
  width: 1px;
  height: 38%;
  transform: scaleY(0);
  transform-origin: top center;
}

.service-overlay.is-open .service-panel-lines span {
  transform: scaleX(1);
}

.service-overlay.is-open .service-panel-lines span:nth-child(3) {
  transform: scaleY(1);
}

.service-panel h2 {
  max-width: 690px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(42px, 8vw, 94px);
  font-weight: 850;
  line-height: 0.92;
  text-transform: uppercase;
}

.service-panel-description {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--graphite-2);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.service-capability-block {
  margin-top: 42px;
}

.service-capability-block > span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-capability-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 22px;
  max-width: 650px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-capability-block li {
  color: var(--graphite);
  font-size: 16px;
  font-weight: 750;
}

.service-capability-block li::before {
  content: "/";
  margin-right: 8px;
  color: var(--red-dark);
}

.service-panel-cta {
  margin-top: 42px;
}

[data-service-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 460ms ease, transform 460ms ease;
}

.service-overlay.is-open [data-service-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.service-overlay.is-open [data-service-reveal]:nth-of-type(1) { transition-delay: 80ms; }
.service-overlay.is-open [data-service-reveal]:nth-of-type(2) { transition-delay: 140ms; }
.service-overlay.is-open [data-service-reveal]:nth-of-type(3) { transition-delay: 200ms; }

body.service-open {
  overflow: hidden;
}

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

.person-card {
  min-width: 0;
  padding: 10px 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.46);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.person-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 24, 36, 0.22);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.person-card figure {
  position: relative;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--mist);
  aspect-ratio: 1;
}

.person-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.person-bg {
  object-fit: cover;
  filter: saturate(0.62) brightness(1.05);
}

.person-fg {
  object-fit: contain;
  transform: scale(1.03);
  transition: transform 420ms ease;
}

.person-card:hover .person-fg {
  transform: scale(1.08) translateY(-2px);
}

.person-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.person-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.5fr);
  gap: 16px;
  align-items: stretch;
}

.contact-form,
.contact-card {
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 46px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(38, 48, 47, 0.24);
  outline: 0;
  color: var(--graphite);
  background: transparent;
  border-radius: 0;
  padding: 10px 2px 14px;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 9px 0 -8px rgba(240, 24, 36, 0.45);
}

.contact-form small {
  color: var(--muted-2);
  text-align: right;
  font-size: 12px;
}

.contact-form .button {
  width: fit-content;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
}

.contact-card::after {
  content: "Ω";
  position: absolute;
  right: -26px;
  top: -44px;
  color: rgba(38, 48, 47, 0.045);
  font-size: 250px;
  font-weight: 900;
  line-height: 1;
}

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

.contact-card h3 {
  max-width: 360px;
  margin: 0 0 42px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
}

.contact-card a {
  width: fit-content;
  margin-top: 12px;
  color: var(--graphite);
  font-weight: 850;
}

.contact-card a:hover {
  color: var(--red-dark);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-links a {
  margin: 0;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  width: min(calc(100% - 44px), var(--max));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-footer a {
  color: var(--graphite);
}

.not-found-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.not-found-card {
  width: min(720px, 100%);
  padding: clamp(34px, 7vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.not-found-card h1 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 850;
  line-height: 0.96;
}

.not-found-card p:not(.micro-label) {
  max-width: 520px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@keyframes drift-a {
  from { transform: translate3d(-2vw, -1vh, 0); }
  to { transform: translate3d(3vw, 2vh, 0); }
}

@keyframes drift-b {
  from { transform: translate3d(1vw, 0, 0) scale(1); }
  to { transform: translate3d(-3vw, 4vh, 0) scale(1.04); }
}

@keyframes drift-c {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(2vw, -3vh, 0); }
}

@keyframes line-scan {
  from { transform: scaleX(0.18); opacity: 0.22; }
  to { transform: scaleX(1); opacity: 0.46; }
}

@keyframes line-scan-y {
  from { transform: scaleY(0.22); opacity: 0.18; }
  to { transform: scaleY(1); opacity: 0.38; }
}

@keyframes signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 24, 36, 0.26); }
  68% { box-shadow: 0 0 0 16px rgba(240, 24, 36, 0); }
  100% { box-shadow: 0 0 0 6px rgba(240, 24, 36, 0.08); }
}

@media (max-width: 1320px) {
  .stage-rail {
    display: none;
  }
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    top: 14px;
    width: min(calc(100% - 22px), var(--max));
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(38, 48, 47, 0.1);
    border-radius: 24px;
    background: rgba(248, 250, 248, 0.94);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    text-align: center;
  }

  .hero,
  .section-pad,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-grid,
  .studio-layout,
  .section-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-card {
    top: 72px;
  }

  .image-plane {
    width: 88%;
  }

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

  .portfolio-scroll {
    min-height: auto;
  }

  .portfolio-stage {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .work-copy-panel {
    min-height: 410px;
  }

  .work-stack {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78%, 1fr);
    gap: 16px;
    min-height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 20px;
    scroll-snap-type: x mandatory;
    perspective: none;
  }

  .stack-card {
    position: relative;
    min-height: 480px;
    opacity: 1;
    transform: none !important;
    scroll-snap-align: center;
  }

  .stack-card img {
    min-height: 480px;
  }

  .work-stage-nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    padding: 2px 4px 12px;
  }

  .work-stage-nav::before {
    display: none;
  }

  .signal-section {
    width: min(calc(100% - 28px), var(--max));
    padding: 72px 0;
  }

  .signal-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .signal-heading .micro-label {
    grid-column: auto;
  }

  .portfolio-lock-section {
    width: min(calc(100% - 28px), var(--max));
    padding: 72px 0 0;
  }

  .portfolio-lock-inner {
    min-height: auto;
    height: auto;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    padding: 0;
  }

  .portfolio-lock-inner::before {
    top: 22%;
    font-size: min(96vw, 520px);
  }

  .portfolio-info-panel {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    order: 0;
  }

  .portfolio-info-panel h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .portfolio-active-info {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    min-height: 0;
    padding: 24px;
  }

  .portfolio-active-info .signal-number,
  .portfolio-active-info h3,
  .portfolio-active-info > p:not(.micro-label),
  .portfolio-active-info dl {
    grid-row: auto;
  }

  .portfolio-row-viewport {
    grid-column: auto;
    overflow-x: auto;
    overflow-y: hidden;
    align-self: auto;
    order: 1;
    padding: 10px 4px 24px;
    scroll-snap-type: x mandatory;
  }

  .portfolio-row {
    grid-auto-columns: clamp(280px, 82vw, 520px);
    gap: 16px;
    height: auto;
    transform: none !important;
    transition: none;
  }

  .portfolio-card {
    min-height: 480px;
    opacity: 0.94;
    transform: none;
    scroll-snap-align: center;
  }

  .portfolio-card.is-active {
    transform: none;
  }

  .portfolio-card img {
    min-height: 480px;
  }

  .portfolio-lock-inner .signal-work-nav {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    order: 2;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 4px 12px;
  }

  .portfolio-lock-inner .signal-work-nav::before {
    display: none;
  }

  .signal-archive {
    min-height: auto;
  }

  .signal-archive::before {
    top: 9%;
    font-size: min(96vw, 520px);
  }

  .signal-pin {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    overflow: visible;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .signal-pin::before,
  .signal-pin::after {
    display: none;
  }

  .signal-info {
    min-height: 420px;
    padding: 26px;
  }

  .signal-copy-wrap {
    min-height: 308px;
  }

  .signal-card-stage {
    display: grid;
    gap: 18px;
    min-height: auto;
    perspective: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .signal-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: min(78svh, 620px);
    opacity: 1;
    transform: none !important;
    filter: none !important;
    scroll-snap-align: center;
  }

  .signal-card:not(.is-active) {
    opacity: 0.92;
  }

  .signal-card img {
    min-height: min(78svh, 620px);
  }

  .signal-work-nav {
    order: -1;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 4px 12px;
  }

  .signal-work-nav::before {
    display: none;
  }

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

  .service-doc .service-actions {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  body {
    background-size: 72px 72px;
  }

  .brand-text strong,
  .brand-text span {
    font-size: 11px;
  }

  .brand-symbol {
    width: 31px;
    height: 31px;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-actions,
  .service-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-card {
    width: 96%;
    padding: 24px;
  }

  .image-plane {
    bottom: 20px;
    width: 96%;
  }

  .image-plane img {
    height: 270px;
  }

  .hero-status {
    display: none;
  }

  .hero-metrics,
  .service-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading h2 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .studio-panel::before,
  .service-doc::before,
  .contact-card::before {
    right: 18px;
    top: 18px;
  }

  .mini-readout {
    right: 12px;
    bottom: 12px;
  }

  .work-copy-panel {
    min-height: 360px;
    padding: 24px;
  }

  .work-copy h3 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .work-stack {
    grid-auto-columns: minmax(88%, 1fr);
  }

  .stack-card,
  .stack-card img {
    min-height: 420px;
  }

  .signal-section {
    padding: 58px 0;
  }

  .signal-heading h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .signal-info {
    min-height: 390px;
    padding: 24px;
  }

  .signal-copy-wrap {
    min-height: 286px;
  }

  .signal-copy {
    justify-content: flex-start;
    padding-top: 34px;
  }

  .signal-copy h3 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .signal-copy dl,
  .case-meta,
  .case-deliverables ul {
    grid-template-columns: 1fr;
  }

  .signal-card,
  .signal-card img {
    min-height: 520px;
  }

  .portfolio-lock-section {
    padding-top: 58px;
  }

  .portfolio-active-info dl {
    grid-template-columns: 1fr;
  }

  .portfolio-row {
    grid-auto-columns: clamp(280px, 86vw, 420px);
  }

  .portfolio-card,
  .portfolio-card img {
    min-height: 420px;
  }

  .signal-card-frame {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .case-panel {
    padding: 28px 22px;
  }

  .case-panel h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .case-back {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 26px;
  }

  .service-card {
    min-height: 150px;
  }

  .service-panel {
    padding: 28px 22px;
  }

  .service-panel h2 {
    font-size: clamp(38px, 14vw, 58px);
  }

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

  .person-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
    align-items: center;
    padding: 10px 14px 10px 10px;
  }

  .person-card figure {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .person-card h3,
  .person-card p {
    grid-column: 2;
  }

  .person-card h3 {
    align-self: end;
  }

  .person-card p {
    align-self: start;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .portfolio-scroll {
    min-height: auto;
  }

  .portfolio-stage {
    position: relative;
    top: auto;
  }

  .work-stack {
    display: grid;
    gap: 16px;
    min-height: auto;
  }

  .stack-card {
    position: relative;
    min-height: 420px;
    opacity: 1;
    transform: none !important;
  }

  .stack-card img {
    min-height: 420px;
  }

  .signal-archive {
    min-height: auto;
  }

  .signal-pin {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
  }

  .signal-card-stage {
    display: grid;
    gap: 16px;
    min-height: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .signal-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 420px;
    opacity: 1;
    transform: none !important;
    filter: none !important;
  }

  .signal-card img {
    min-height: 420px;
  }

  .portfolio-lock-section {
    padding: 58px 0 0;
  }

  .portfolio-lock-inner {
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .portfolio-row-viewport {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .portfolio-row {
    transform: none !important;
    transition: none;
  }

  .portfolio-card {
    opacity: 1;
    transform: none !important;
    filter: none !important;
  }

  [data-case-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-service-reveal] {
    opacity: 1;
    transform: none;
  }
}
